0005-irq-bcm2836-Prevent-spurious-interrupts-and-trap-the.patch 1004 B

123456789101112131415161718192021222324252627282930
  1. From 71609ab22785edd13b385920b1b0c6de24adc901 Mon Sep 17 00:00:00 2001
  2. From: Phil Elwell <[email protected]>
  3. Date: Fri, 4 Dec 2015 17:41:50 +0000
  4. Subject: [PATCH] irq-bcm2836: Prevent spurious interrupts, and trap them early
  5. The old arch-specific IRQ macros included a dsb to ensure the
  6. write to clear the mailbox interrupt completed before returning
  7. from the interrupt. The BCM2836 irqchip driver needs the same
  8. precaution to avoid spurious interrupts.
  9. Spurious interrupts are still possible for other reasons,
  10. though, so trap them early.
  11. ---
  12. drivers/irqchip/irq-bcm2836.c | 3 ++-
  13. 1 file changed, 2 insertions(+), 1 deletion(-)
  14. --- a/drivers/irqchip/irq-bcm2836.c
  15. +++ b/drivers/irqchip/irq-bcm2836.c
  16. @@ -170,9 +170,10 @@ __exception_irq_entry bcm2836_arm_irqchi
  17. u32 ipi = ffs(mbox_val) - 1;
  18. writel(1 << ipi, mailbox0);
  19. + dsb();
  20. handle_IPI(ipi, regs);
  21. #endif
  22. - } else {
  23. + } else if (stat) {
  24. u32 hwirq = ffs(stat) - 1;
  25. handle_IRQ(irq_linear_revmap(intc.domain, hwirq), regs);