Lines Matching refs:int_grp
39 int int_grp, int_off; in arm_gic_irq_enable() local
41 int_grp = irq / 32; in arm_gic_irq_enable()
44 sys_write32((1 << int_off), (GICD_ISENABLERn + int_grp * 4)); in arm_gic_irq_enable()
49 int int_grp, int_off; in arm_gic_irq_disable() local
51 int_grp = irq / 32; in arm_gic_irq_disable()
54 sys_write32((1 << int_off), (GICD_ICENABLERn + int_grp * 4)); in arm_gic_irq_disable()
59 int int_grp, int_off; in arm_gic_irq_is_enabled() local
62 int_grp = irq / 32; in arm_gic_irq_is_enabled()
65 enabler = sys_read32(GICD_ISENABLERn + int_grp * 4); in arm_gic_irq_is_enabled()
72 int int_grp, int_off; in arm_gic_irq_is_pending() local
75 int_grp = irq / 32; in arm_gic_irq_is_pending()
78 enabler = sys_read32(GICD_ISPENDRn + int_grp * 4); in arm_gic_irq_is_pending()
85 int int_grp, int_off; in arm_gic_irq_set_pending() local
87 int_grp = irq / 32; in arm_gic_irq_set_pending()
90 sys_write32((1 << int_off), (GICD_ISPENDRn + int_grp * 4)); in arm_gic_irq_set_pending()
95 int int_grp, int_off; in arm_gic_irq_clear_pending() local
97 int_grp = irq / 32; in arm_gic_irq_clear_pending()
100 sys_write32((1 << int_off), (GICD_ICPENDRn + int_grp * 4)); in arm_gic_irq_clear_pending()
106 int int_grp, int_off; in arm_gic_irq_set_priority() local
113 int_grp = (irq / 16) * 4; in arm_gic_irq_set_priority()
117 if (int_grp != 0) { in arm_gic_irq_set_priority()
118 val = sys_read32(GICD_ICFGRn + int_grp); in arm_gic_irq_set_priority()
124 sys_write32(val, GICD_ICFGRn + int_grp); in arm_gic_irq_set_priority()