> +/*
> + * Fully acknowledge (both ack and eoi) any outstanding FIQ-based IPI,
> + * otherwise do nothing.
> + */
> +void gic_handle_fiq_ipi(void)
> +{
> +     struct gic_chip_data *gic = &gic_data[0];
> +     void __iomem *cpu_base = gic_data_cpu_base(gic);
> +     unsigned long irqstat, irqnr;
> +
> +     if (WARN_ON(!in_nmi()))
> +             return;
> +
> +     while ((1u << readl_relaxed(cpu_base + GIC_CPU_HIGHPRI)) &
> +            SMP_IPI_FIQ_MASK) {
> +             irqstat = readl_relaxed(cpu_base + GIC_CPU_INTACK);
> +             writel_relaxed(irqstat, cpu_base + GIC_CPU_EOI);
> +
> +             irqnr = irqstat & GICC_IAR_INT_ID_MASK;
> +             WARN_RATELIMIT(irqnr > 16,
> +                            "Unexpected irqnr %lu (bad prioritization?)\n",

Help more if s/Unexpected/Unexpected FIQ/ ?

> +                            irqnr);
> +     }
> +}
> +

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to