Home | History | Annotate | Download | only in xscale

Lines Matching defs:iq

192 	struct intrq *iq;
199 iq = &intrq[irq];
201 for (ih = TAILQ_FIRST(&iq->iq_list); ih != NULL;
204 iq->iq_levels = levels;
248 iq = &intrq[irq];
249 if (TAILQ_FIRST(&iq->iq_list) != NULL)
251 for (ih = TAILQ_FIRST(&iq->iq_list); ih != NULL;
254 iq->iq_mask = irqs;
301 struct intrq *iq;
307 iq = &intrq[i];
308 TAILQ_INIT(&iq->iq_list);
310 snprintf(iq->iq_name, sizeof(iq->iq_name), "irq %d", i);
322 struct intrq *iq;
326 iq = &intrq[i];
327 evcnt_attach_dynamic(&iq->iq_ev, EVCNT_TYPE_INTR,
328 NULL, "ixp425", iq->iq_name);
335 struct intrq *iq;
352 iq = &intrq[irq];
355 iq->iq_ist = IST_LEVEL; /* XXX */
359 TAILQ_INSERT_TAIL(&iq->iq_list, ih, ih_list);
372 struct intrq *iq = &intrq[ih->ih_irq];
377 TAILQ_REMOVE(&iq->iq_list, ih, ih_list);
387 struct intrq *iq;
420 iq = &intrq[irq];
421 iq->iq_ev.ev_count++;
425 if ((ibit & IXP425_INT_GPIOMASK) && iq->iq_ist != IST_LEVEL) {
430 TAILQ_FOREACH(ih, &iq->iq_list, ih_list) {
438 if ((ibit & IXP425_INT_GPIOMASK) && iq->iq_ist == IST_LEVEL) {