"The effects of reading ICC_IAR0_EL1 and ICC_IAR1_EL1 on the state of a
returned INTID are not guaranteed to be visible until after the execution
of a DSB".
Because of the GIC is an external component, a dsb sy is required.
Without it the sysreg read may not have been made visible on the
redistributor.
Signed-off-by: Julien Grall <julien.grall@arm.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
static unsigned int gicv3_read_irq(void)
{
- return READ_SYSREG32(ICC_IAR1_EL1);
+ unsigned int irq = READ_SYSREG32(ICC_IAR1_EL1);
+
+ dsb(sy);
+
+ return irq;
}
static inline uint64_t gicv3_mpidr_to_affinity(int cpu)