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
472 * FIQ irqchip
541 * the FIQ source state without having to peek down into sources... in aic_handle_fiq()
550 * Since not dealing with any of these results in a FIQ storm, in aic_handle_fiq()
595 pr_err_ratelimited("Uncore PMC FIQ fired. Masking.\n"); in aic_handle_fiq()
607 .name = "AIC-FIQ",
634 int fiq = FIELD_GET(AIC_EVENT_NUM, hw); in aic_irq_domain_map() local
636 switch (fiq) { in aic_irq_domain_map()
639 irq_set_percpu_devid_partition(irq, &ic->fiq_aff[fiq]->aff); in aic_irq_domain_map()
826 /* Mask all hard-wired per-CPU IRQ/FIQ sources */ in aic_init_cpu()
846 /* PMC FIQ */ in aic_init_cpu()
850 /* Uncore PMC FIQ */ in aic_init_cpu()
896 u32 fiq; in build_fiq_affinity() local
898 if (of_property_read_u32(aff, "apple,fiq-index", &fiq) || in build_fiq_affinity()
899 WARN_ON(fiq >= AIC_NR_FIQ) || ic->fiq_aff[fiq]) in build_fiq_affinity()
906 ic->fiq_aff[fiq] = kzalloc(sizeof(*ic->fiq_aff[fiq]), GFP_KERNEL); in build_fiq_affinity()
907 if (!ic->fiq_aff[fiq]) in build_fiq_affinity()
927 cpumask_set_cpu(cpu, &ic->fiq_aff[fiq]->aff); in build_fiq_affinity()