Lines Matching full:fiq
36 * - FIQ hwirq numbers are assigned after true hwirqs, and are per-cpu.
39 * - <1 nr flags> - FIQ #nr
163 * IMP-DEF sysregs that control FIQ sources
182 /* Guest timer FIQ enable register */
216 * FIQ hwirq index definitions: FIQ sources use the DT binding defines
453 * FIQ irqchip
522 * the FIQ source state without having to peek down into sources... in aic_handle_fiq()
531 * Since not dealing with any of these results in a FIQ storm, in aic_handle_fiq()
580 pr_err_ratelimited("Uncore PMC FIQ fired. Masking.\n"); in aic_handle_fiq()
592 .name = "AIC-FIQ",
619 int fiq = FIELD_GET(AIC_EVENT_NUM, hw); in aic_irq_domain_map() local
621 switch (fiq) { in aic_irq_domain_map()
624 irq_set_percpu_devid_partition(irq, &ic->fiq_aff[fiq]->aff); in aic_irq_domain_map()
811 /* Mask all hard-wired per-CPU IRQ/FIQ sources */ in aic_init_cpu()
830 /* PMC FIQ */ in aic_init_cpu()
834 /* Uncore PMC FIQ */ in aic_init_cpu()
878 u32 fiq; in build_fiq_affinity() local
880 if (of_property_read_u32(aff, "apple,fiq-index", &fiq) || in build_fiq_affinity()
881 WARN_ON(fiq >= AIC_NR_FIQ) || ic->fiq_aff[fiq]) in build_fiq_affinity()
888 ic->fiq_aff[fiq] = kzalloc(sizeof(*ic->fiq_aff[fiq]), GFP_KERNEL); in build_fiq_affinity()
889 if (!ic->fiq_aff[fiq]) in build_fiq_affinity()
909 cpumask_set_cpu(cpu, &ic->fiq_aff[fiq]->aff); in build_fiq_affinity()