summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-04-07 13:25:38 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-04-07 13:25:38 +0000
commit017aabe29225fc1f96a0b744ebe9be9582c3c012 (patch)
tree8d5a18f3a0cd6379a62c907cc8ba7fcf4dbb31e8 /target
parent811f7f9f2d2fc219e6f30ebb9f62d6878ed43ba0 (diff)
downloadmaster-31e0f0ae-017aabe29225fc1f96a0b744ebe9be9582c3c012.tar.gz
master-31e0f0ae-017aabe29225fc1f96a0b744ebe9be9582c3c012.tar.bz2
master-31e0f0ae-017aabe29225fc1f96a0b744ebe9be9582c3c012.zip
ramips: handle PCI interrupts in plat_irq_dispatch
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36245
Diffstat (limited to 'target')
-rw-r--r--target/linux/ramips/patches-3.8/0122-MIPS-ralink-handle-PCI-interrupts-as-well.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-3.8/0122-MIPS-ralink-handle-PCI-interrupts-as-well.patch b/target/linux/ramips/patches-3.8/0122-MIPS-ralink-handle-PCI-interrupts-as-well.patch
new file mode 100644
index 0000000000..b898a0a53f
--- /dev/null
+++ b/target/linux/ramips/patches-3.8/0122-MIPS-ralink-handle-PCI-interrupts-as-well.patch
@@ -0,0 +1,30 @@
+From e0fbc01d33265d32fe7f5f34269cb88be2a13c24 Mon Sep 17 00:00:00 2001
+From: Gabor Juhos <juhosg@openwrt.org>
+Date: Sun, 31 Mar 2013 10:17:26 +0200
+Subject: [PATCH] MIPS: ralink: handle PCI interrupts as well
+
+Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
+---
+ arch/mips/ralink/irq.c | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+--- a/arch/mips/ralink/irq.c
++++ b/arch/mips/ralink/irq.c
+@@ -31,6 +31,7 @@
+ #define INTC_INT_GLOBAL BIT(31)
+
+ #define RALINK_CPU_IRQ_INTC (MIPS_CPU_IRQ_BASE + 2)
++#define RALINK_CPU_IRQ_PCI (MIPS_CPU_IRQ_BASE + 4)
+ #define RALINK_CPU_IRQ_FE (MIPS_CPU_IRQ_BASE + 5)
+ #define RALINK_CPU_IRQ_WIFI (MIPS_CPU_IRQ_BASE + 6)
+ #define RALINK_CPU_IRQ_COUNTER (MIPS_CPU_IRQ_BASE + 7)
+@@ -104,6 +105,9 @@ asmlinkage void plat_irq_dispatch(void)
+ else if (pending & STATUSF_IP6)
+ do_IRQ(RALINK_CPU_IRQ_WIFI);
+
++ else if (pending & STATUSF_IP4)
++ do_IRQ(RALINK_CPU_IRQ_PCI);
++
+ else if (pending & STATUSF_IP2)
+ do_IRQ(RALINK_CPU_IRQ_INTC);
+