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()
596 pr_err_ratelimited("Uncore PMC FIQ fired. Masking.\n"); in aic_handle_fiq()
608 .name = "AIC-FIQ",
635 int fiq = FIELD_GET(AIC_EVENT_NUM, hw); in aic_irq_domain_map() local
637 switch (fiq) { in aic_irq_domain_map()
640 irq_set_percpu_devid_partition(irq, &ic->fiq_aff[fiq]->aff); in aic_irq_domain_map()
827 /* Mask all hard-wired per-CPU IRQ/FIQ sources */ in aic_init_cpu()
847 /* PMC FIQ */ in aic_init_cpu()
851 /* Uncore PMC FIQ */ in aic_init_cpu()
897 u32 fiq; in build_fiq_affinity() local
899 if (of_property_read_u32(aff, "apple,fiq-index", &fiq) || in build_fiq_affinity()
900 WARN_ON(fiq >= AIC_NR_FIQ) || ic->fiq_aff[fiq]) in build_fiq_affinity()
907 ic->fiq_aff[fiq] = kzalloc(sizeof(*ic->fiq_aff[fiq]), GFP_KERNEL); in build_fiq_affinity()
908 if (!ic->fiq_aff[fiq]) in build_fiq_affinity()
928 cpumask_set_cpu(cpu, &ic->fiq_aff[fiq]->aff); in build_fiq_affinity()