Home | History | Annotate | Download | only in imx

Lines Matching defs:group

171 	const size_t group = irq_base / 32;
173 KASSERT((irq_mask & tzic->sc_enabled_mask[group]) == 0);
175 tzic->sc_enabled_mask[group] |= irq_mask;
176 INTC_WRITE(tzic, TZIC_ENSET(group), irq_mask);
183 const size_t group = irq_base / 32;
185 tzic->sc_enabled_mask[group] &= ~irq_mask;
187 INTC_WRITE(tzic, TZIC_ENCLEAR(group), irq_mask);
194 find_pending_irqs(struct tzic_softc *tzic, size_t group)
198 KASSERT( group <= 3 );
200 pending = INTC_READ(tzic, TZIC_PND(group));
202 KASSERT((tzic->sc_enabled_mask[group] & pending) == pending);
207 return pic_mark_pending_sources(&tzic->sc_pic, group * 32, pending);