Lines Matching refs:event
17 * - Automatic masking on event delivery (auto-ack)
21 * - Automatic prioritization (single event/ack register per CPU, lower IRQs =
148 * This is followed by a set of event registers, each 16K page aligned.
149 * The first one is the AP event register we will use. Unfortunately,
151 * capability registers, so we have to explicitly specify the event
243 u32 event;
260 .event = AIC_EVENT,
267 .event = AIC_EVENT,
299 void __iomem *event;
368 u32 event, type, irq;
375 event = readl(ic->event + ic->info.event);
376 type = FIELD_GET(AIC_EVENT_TYPE, event);
377 irq = FIELD_GET(AIC_EVENT_NUM, event);
380 generic_handle_domain_irq(aic_irqc->hw_domain, event);
383 else if (event != 0)
384 pr_err_ratelimited("Unknown IRQ event %d, %d\n", type, irq);
385 } while (event);
765 * Ack the IPI. We need to order this after the AIC event read, but
954 irqc->event = irqc->base;
972 irqc->event = of_iomap(node, 1);
973 if (WARN_ON(!irqc->event))
1073 if (irqc->event && irqc->event != irqc->base)
1074 iounmap(irqc->event);