You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
12 years ago
|
From ca19f83f8551e6dd19073f04ad91639e98d6e22e Mon Sep 17 00:00:00 2001
|
||
12 years ago
|
From: Gabor Juhos <juhosg@openwrt.org>
|
||
12 years ago
|
Date: Wed, 10 Apr 2013 09:07:27 +0200
|
||
12 years ago
|
Subject: [PATCH 101/164] MIPS: ralink: add PCI IRQ handling
|
||
12 years ago
|
|
||
12 years ago
|
The Ralink IRQ code was not handling the PCI IRQ yet. Add this functionaility
|
||
|
to make PCI work on rt3883.
|
||
|
|
||
|
Signed-off-by: John Crispin <blogic@openwrt.org>
|
||
12 years ago
|
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
||
12 years ago
|
Patchwork: http://patchwork.linux-mips.org/patch/5165/
|
||
12 years ago
|
---
|
||
|
arch/mips/ralink/irq.c | 4 ++++
|
||
|
1 file changed, 4 insertions(+)
|
||
|
|
||
12 years ago
|
diff --git a/arch/mips/ralink/irq.c b/arch/mips/ralink/irq.c
|
||
|
index 6d054c5..d9807d0 100644
|
||
12 years ago
|
--- 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);
|
||
|
|
||
12 years ago
|
--
|
||
|
1.7.10.4
|
||
|
|