diff options
author | Maxime Bizon <mbizon@freebox.fr> | 2012-07-13 03:46:03 -0400 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-08-24 14:09:00 -0400 |
commit | 64eaea4a84a14f0299b5c0bc400fa92c10512d07 (patch) | |
tree | daf049c332d3222a2aab3c1ee40ea80d0f3938f2 /arch/mips/bcm63xx | |
parent | 6b52c00f2b4931c12117dc32a7cf6d5ee59f14ea (diff) |
MIPS: BCM63XX: add external irq support for BCM6345
Add the missing definitions for BCM6345.
Signed-off-by: Maxime Bizon <mbizon@freebox.fr>
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Patchwork: http://patchwork.linux-mips.org/patch/4091/
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'arch/mips/bcm63xx')
-rw-r--r-- | arch/mips/bcm63xx/irq.c | 8 | ||||
-rw-r--r-- | arch/mips/bcm63xx/setup.c | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/arch/mips/bcm63xx/irq.c b/arch/mips/bcm63xx/irq.c index 18e051ad18a5..d40169f83259 100644 --- a/arch/mips/bcm63xx/irq.c +++ b/arch/mips/bcm63xx/irq.c | |||
@@ -56,8 +56,8 @@ static void __internal_irq_unmask_64(unsigned int irq) __maybe_unused; | |||
56 | #define is_ext_irq_cascaded 0 | 56 | #define is_ext_irq_cascaded 0 |
57 | #define ext_irq_start 0 | 57 | #define ext_irq_start 0 |
58 | #define ext_irq_end 0 | 58 | #define ext_irq_end 0 |
59 | #define ext_irq_count 0 | 59 | #define ext_irq_count 4 |
60 | #define ext_irq_cfg_reg1 0 | 60 | #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6345 |
61 | #define ext_irq_cfg_reg2 0 | 61 | #define ext_irq_cfg_reg2 0 |
62 | #endif | 62 | #endif |
63 | #ifdef CONFIG_BCM63XX_CPU_6348 | 63 | #ifdef CONFIG_BCM63XX_CPU_6348 |
@@ -143,11 +143,15 @@ static void bcm63xx_init_irq(void) | |||
143 | irq_stat_addr += PERF_IRQSTAT_6338_REG; | 143 | irq_stat_addr += PERF_IRQSTAT_6338_REG; |
144 | irq_mask_addr += PERF_IRQMASK_6338_REG; | 144 | irq_mask_addr += PERF_IRQMASK_6338_REG; |
145 | irq_bits = 32; | 145 | irq_bits = 32; |
146 | ext_irq_count = 4; | ||
147 | ext_irq_cfg_reg1 = PERF_EXTIRQ_CFG_REG_6338; | ||
146 | break; | 148 | break; |
147 | case BCM6345_CPU_ID: | 149 | case BCM6345_CPU_ID: |
148 | irq_stat_addr += PERF_IRQSTAT_6345_REG; | 150 | irq_stat_addr += PERF_IRQSTAT_6345_REG; |
149 | irq_mask_addr += PERF_IRQMASK_6345_REG; | 151 | irq_mask_addr += PERF_IRQMASK_6345_REG; |
150 | irq_bits = 32; | 152 | irq_bits = 32; |
153 | ext_irq_count = 4; | ||
154 | ext_irq_cfg_reg1 = PERF_EXTIRQ_CFG_REG_6345; | ||
151 | break; | 155 | break; |
152 | case BCM6348_CPU_ID: | 156 | case BCM6348_CPU_ID: |
153 | irq_stat_addr += PERF_IRQSTAT_6348_REG; | 157 | irq_stat_addr += PERF_IRQSTAT_6348_REG; |
diff --git a/arch/mips/bcm63xx/setup.c b/arch/mips/bcm63xx/setup.c index 0e74a13639cd..bd83836fa15e 100644 --- a/arch/mips/bcm63xx/setup.c +++ b/arch/mips/bcm63xx/setup.c | |||
@@ -74,6 +74,9 @@ void bcm63xx_machine_reboot(void) | |||
74 | case BCM6338_CPU_ID: | 74 | case BCM6338_CPU_ID: |
75 | perf_regs[0] = PERF_EXTIRQ_CFG_REG_6338; | 75 | perf_regs[0] = PERF_EXTIRQ_CFG_REG_6338; |
76 | break; | 76 | break; |
77 | case BCM6345_CPU_ID: | ||
78 | perf_regs[0] = PERF_EXTIRQ_CFG_REG_6345; | ||
79 | break; | ||
77 | case BCM6348_CPU_ID: | 80 | case BCM6348_CPU_ID: |
78 | perf_regs[0] = PERF_EXTIRQ_CFG_REG_6348; | 81 | perf_regs[0] = PERF_EXTIRQ_CFG_REG_6348; |
79 | break; | 82 | break; |