Commit 0e8120e0 authored by Sergei Shtylyov's avatar Sergei Shtylyov Committed by Ralf Baechle

[MIPS] Alchemy: fix IRQ bases

Do what the commits commits f3e8d1da and
9d360ab4 failed to achieve -- actually
convert the Alchemy code to irq_cpu.
Signed-off-by: default avatarSergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 4b366732
...@@ -464,7 +464,7 @@ static void intc0_req0_irqdispatch(void) ...@@ -464,7 +464,7 @@ static void intc0_req0_irqdispatch(void)
#endif #endif
bit = __ffs(intc0_req0); bit = __ffs(intc0_req0);
intc0_req0 &= ~(1 << bit); intc0_req0 &= ~(1 << bit);
do_IRQ(MIPS_CPU_IRQ_BASE + bit); do_IRQ(AU1000_INTC0_INT_BASE + bit);
} }
...@@ -480,7 +480,7 @@ static void intc0_req1_irqdispatch(void) ...@@ -480,7 +480,7 @@ static void intc0_req1_irqdispatch(void)
bit = __ffs(intc0_req1); bit = __ffs(intc0_req1);
intc0_req1 &= ~(1 << bit); intc0_req1 &= ~(1 << bit);
do_IRQ(bit); do_IRQ(AU1000_INTC0_INT_BASE + bit);
} }
...@@ -500,7 +500,7 @@ static void intc1_req0_irqdispatch(void) ...@@ -500,7 +500,7 @@ static void intc1_req0_irqdispatch(void)
bit = __ffs(intc1_req0); bit = __ffs(intc1_req0);
intc1_req0 &= ~(1 << bit); intc1_req0 &= ~(1 << bit);
do_IRQ(MIPS_CPU_IRQ_BASE + 32 + bit); do_IRQ(AU1000_INTC1_INT_BASE + bit);
} }
...@@ -516,7 +516,7 @@ static void intc1_req1_irqdispatch(void) ...@@ -516,7 +516,7 @@ static void intc1_req1_irqdispatch(void)
bit = __ffs(intc1_req1); bit = __ffs(intc1_req1);
intc1_req1 &= ~(1 << bit); intc1_req1 &= ~(1 << bit);
do_IRQ(MIPS_CPU_IRQ_BASE + 32 + bit); do_IRQ(AU1000_INTC1_INT_BASE + bit);
} }
asmlinkage void plat_irq_dispatch(void) asmlinkage void plat_irq_dispatch(void)
......
...@@ -526,7 +526,7 @@ extern struct au1xxx_irqmap au1xxx_irq_map[]; ...@@ -526,7 +526,7 @@ extern struct au1xxx_irqmap au1xxx_irq_map[];
/* Au1000 */ /* Au1000 */
#ifdef CONFIG_SOC_AU1000 #ifdef CONFIG_SOC_AU1000
enum soc_au1000_ints { enum soc_au1000_ints {
AU1000_FIRST_INT = MIPS_CPU_IRQ_BASE, AU1000_FIRST_INT = MIPS_CPU_IRQ_BASE + 8,
AU1000_UART0_INT = AU1000_FIRST_INT, AU1000_UART0_INT = AU1000_FIRST_INT,
AU1000_UART1_INT, /* au1000 */ AU1000_UART1_INT, /* au1000 */
AU1000_UART2_INT, /* au1000 */ AU1000_UART2_INT, /* au1000 */
...@@ -605,7 +605,7 @@ enum soc_au1000_ints { ...@@ -605,7 +605,7 @@ enum soc_au1000_ints {
/* Au1500 */ /* Au1500 */
#ifdef CONFIG_SOC_AU1500 #ifdef CONFIG_SOC_AU1500
enum soc_au1500_ints { enum soc_au1500_ints {
AU1500_FIRST_INT = MIPS_CPU_IRQ_BASE, AU1500_FIRST_INT = MIPS_CPU_IRQ_BASE + 8,
AU1500_UART0_INT = AU1500_FIRST_INT, AU1500_UART0_INT = AU1500_FIRST_INT,
AU1000_PCI_INTA, /* au1500 */ AU1000_PCI_INTA, /* au1500 */
AU1000_PCI_INTB, /* au1500 */ AU1000_PCI_INTB, /* au1500 */
...@@ -686,7 +686,7 @@ enum soc_au1500_ints { ...@@ -686,7 +686,7 @@ enum soc_au1500_ints {
/* Au1100 */ /* Au1100 */
#ifdef CONFIG_SOC_AU1100 #ifdef CONFIG_SOC_AU1100
enum soc_au1100_ints { enum soc_au1100_ints {
AU1100_FIRST_INT = MIPS_CPU_IRQ_BASE, AU1100_FIRST_INT = MIPS_CPU_IRQ_BASE + 8,
AU1100_UART0_INT, AU1100_UART0_INT,
AU1100_UART1_INT, AU1100_UART1_INT,
AU1100_SD_INT, AU1100_SD_INT,
...@@ -761,7 +761,7 @@ enum soc_au1100_ints { ...@@ -761,7 +761,7 @@ enum soc_au1100_ints {
#ifdef CONFIG_SOC_AU1550 #ifdef CONFIG_SOC_AU1550
enum soc_au1550_ints { enum soc_au1550_ints {
AU1550_FIRST_INT = MIPS_CPU_IRQ_BASE, AU1550_FIRST_INT = MIPS_CPU_IRQ_BASE + 8,
AU1550_UART0_INT = AU1550_FIRST_INT, AU1550_UART0_INT = AU1550_FIRST_INT,
AU1550_PCI_INTA, AU1550_PCI_INTA,
AU1550_PCI_INTB, AU1550_PCI_INTB,
...@@ -851,7 +851,7 @@ enum soc_au1550_ints { ...@@ -851,7 +851,7 @@ enum soc_au1550_ints {
#ifdef CONFIG_SOC_AU1200 #ifdef CONFIG_SOC_AU1200
enum soc_au1200_ints { enum soc_au1200_ints {
AU1200_FIRST_INT = MIPS_CPU_IRQ_BASE, AU1200_FIRST_INT = MIPS_CPU_IRQ_BASE + 8,
AU1200_UART0_INT = AU1200_FIRST_INT, AU1200_UART0_INT = AU1200_FIRST_INT,
AU1200_SWT_INT, AU1200_SWT_INT,
AU1200_SD_INT, AU1200_SD_INT,
...@@ -948,11 +948,12 @@ enum soc_au1200_ints { ...@@ -948,11 +948,12 @@ enum soc_au1200_ints {
#endif /* CONFIG_SOC_AU1200 */ #endif /* CONFIG_SOC_AU1200 */
#define AU1000_INTC0_INT_BASE (MIPS_CPU_IRQ_BASE + 0) #define AU1000_INTC0_INT_BASE (MIPS_CPU_IRQ_BASE + 8)
#define AU1000_INTC0_INT_LAST (MIPS_CPU_IRQ_BASE + 31) #define AU1000_INTC0_INT_LAST (AU1000_INTC0_INT_BASE + 31)
#define AU1000_INTC1_INT_BASE (MIPS_CPU_IRQ_BASE + 32) #define AU1000_INTC1_INT_BASE (AU1000_INTC0_INT_BASE + 32)
#define AU1000_INTC1_INT_LAST (MIPS_CPU_IRQ_BASE + 63) #define AU1000_INTC1_INT_LAST (AU1000_INTC1_INT_BASE + 31)
#define AU1000_MAX_INTR (MIPS_CPU_IRQ_BASE + 63)
#define AU1000_MAX_INTR AU1000_INTC1_INT_LAST
#define INTX 0xFF /* not valid */ #define INTX 0xFF /* not valid */
/* Programmable Counters 0 and 1 */ /* Programmable Counters 0 and 1 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment