diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-06-06 13:48:36 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-06-06 13:48:36 +0000 |
commit | 455c6f7c88f337e38b55dbc27548dec68551b17f (patch) | |
tree | b8543ca9d04407dd654acd36694851dc925b125f /target/linux | |
parent | 9658891c8a64cb1f6da5738152f7389edc174feb (diff) | |
download | master-187ad058-455c6f7c88f337e38b55dbc27548dec68551b17f.tar.gz master-187ad058-455c6f7c88f337e38b55dbc27548dec68551b17f.tar.bz2 master-187ad058-455c6f7c88f337e38b55dbc27548dec68551b17f.zip |
[ar71xx] handle PCI_CORE interrupt as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16358 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/irq.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/irq.c b/target/linux/ar71xx/files/arch/mips/ar71xx/irq.c index 0d5af43d7c..c3ba7ec437 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/irq.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/irq.c @@ -1,7 +1,7 @@ /* * Atheros AR71xx SoC specific interrupt handling * - * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org> + * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org> * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> * * Parts of this file are based on Atheros' 2.6.15 BSP @@ -27,7 +27,7 @@ static void ar71xx_pci_irq_dispatch(void) u32 pending; pending = ar71xx_reset_rr(AR71XX_RESET_REG_PCI_INT_STATUS) & - ar71xx_reset_rr(AR71XX_RESET_REG_PCI_INT_ENABLE); + ar71xx_reset_rr(AR71XX_RESET_REG_PCI_INT_ENABLE); if (pending & PCI_INT_DEV0) do_IRQ(AR71XX_PCI_IRQ_DEV0); @@ -38,6 +38,9 @@ static void ar71xx_pci_irq_dispatch(void) else if (pending & PCI_INT_DEV2) do_IRQ(AR71XX_PCI_IRQ_DEV2); + else if (pending & PCI_INT_CORE) + do_IRQ(AR71XX_PCI_IRQ_CORE); + else spurious_interrupt(); } |