If both interrupts are set in the current implementation only the 1st will be handled and the 2nd will be skipped due to the "if else" condition. Fix this by using the same approach as done for QCA955x just below it. Fixes: fce5cc6e0ddc ("MIPS: ath79: add IRQ handling code for AR934X") Signed-off-by: Koen Vandeputte <koen.vandeputte@xxxxxxxxxxxx> CC: Felix Fietkau <nbd@xxxxxxxx> CC: Gabor Juhos <juhosg@xxxxxxxxxxx> CC: James Hogan <jhogan@xxxxxxxxxx> CC: Paul Burton <paul.burton@xxxxxxxx> CC: Ralf Baechle <ralf@xxxxxxxxxxxxxx> CC: stable@xxxxxxxxxxxxxxx # v3.2+ --- NOTE! The file irq.c got deleted in commit 51fa4f8912c0 ("MIPS: ath79: drop legacy IRQ code") which was included in 5.0-RC2. Therefore, the patch below was crafted on tree: linux-stable branch: linux-4.19.y V2: - fix copy/paste error in code due to rebasing arch/mips/ath79/irq.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/arch/mips/ath79/irq.c b/arch/mips/ath79/irq.c index 2dfff1f19004..a03a6bcaf6fd 100644 --- a/arch/mips/ath79/irq.c +++ b/arch/mips/ath79/irq.c @@ -32,15 +32,21 @@ static void ar934x_ip2_irq_dispatch(struct irq_desc *desc) u32 status; status = ath79_reset_rr(AR934X_RESET_REG_PCIE_WMAC_INT_STATUS); + status &= AR934X_PCIE_WMAC_INT_PCIE_ALL | AR934X_PCIE_WMAC_INT_WMAC_ALL; + + if (status == 0) { + spurious_interrupt(); + return; + } if (status & AR934X_PCIE_WMAC_INT_PCIE_ALL) { ath79_ddr_wb_flush(3); generic_handle_irq(ATH79_IP2_IRQ(0)); - } else if (status & AR934X_PCIE_WMAC_INT_WMAC_ALL) { + } + + if (status & AR934X_PCIE_WMAC_INT_WMAC_ALL) { ath79_ddr_wb_flush(4); generic_handle_irq(ATH79_IP2_IRQ(1)); - } else { - spurious_interrupt(); } } -- 2.17.1