diff options
author | Chris Dearman <chris@mips.com> | 2007-05-08 09:05:39 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-05-11 09:28:31 -0400 |
commit | d725cf3818b12a17d78b87a2de19e8eec17126ae (patch) | |
tree | 9d200020488b886201771bd6516c63ef43397baa /arch/mips/mips-boards | |
parent | ef300e42234eac066b193c871714203d999b481c (diff) |
[MIPS] MT: Reenable EIC support and add support for SOCit SC.
Signed-off-by: Chris Dearman <chris@mips.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mips-boards')
-rw-r--r-- | arch/mips/mips-boards/malta/malta_int.c | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/arch/mips/mips-boards/malta/malta_int.c b/arch/mips/mips-boards/malta/malta_int.c index 83d76025d61d..1cd830e3d933 100644 --- a/arch/mips/mips-boards/malta/malta_int.c +++ b/arch/mips/mips-boards/malta/malta_int.c | |||
@@ -311,16 +311,21 @@ void __init arch_init_irq(void) | |||
311 | if (!cpu_has_veic) | 311 | if (!cpu_has_veic) |
312 | mips_cpu_irq_init(); | 312 | mips_cpu_irq_init(); |
313 | 313 | ||
314 | switch(mips_revision_corid) { | 314 | switch(mips_revision_sconid) { |
315 | case MIPS_REVISION_CORID_CORE_MSC: | 315 | case MIPS_REVISION_SCON_SOCIT: |
316 | case MIPS_REVISION_CORID_CORE_FPGA2: | 316 | case MIPS_REVISION_SCON_ROCIT: |
317 | case MIPS_REVISION_CORID_CORE_FPGA3: | 317 | if (cpu_has_veic) |
318 | case MIPS_REVISION_CORID_CORE_24K: | 318 | init_msc_irqs (MIPS_MSC01_IC_REG_BASE, MSC01E_INT_BASE, msc_eicirqmap, msc_nr_eicirqs); |
319 | case MIPS_REVISION_CORID_CORE_EMUL_MSC: | 319 | else |
320 | init_msc_irqs (MIPS_MSC01_IC_REG_BASE, MSC01C_INT_BASE, msc_irqmap, msc_nr_irqs); | ||
321 | break; | ||
322 | |||
323 | case MIPS_REVISION_SCON_SOCITSC: | ||
324 | case MIPS_REVISION_SCON_SOCITSCP: | ||
320 | if (cpu_has_veic) | 325 | if (cpu_has_veic) |
321 | init_msc_irqs (MSC01E_INT_BASE, msc_eicirqmap, msc_nr_eicirqs); | 326 | init_msc_irqs (MIPS_SOCITSC_IC_REG_BASE, MSC01E_INT_BASE, msc_eicirqmap, msc_nr_eicirqs); |
322 | else | 327 | else |
323 | init_msc_irqs (MSC01C_INT_BASE, msc_irqmap, msc_nr_irqs); | 328 | init_msc_irqs (MIPS_SOCITSC_IC_REG_BASE, MSC01C_INT_BASE, msc_irqmap, msc_nr_irqs); |
324 | } | 329 | } |
325 | 330 | ||
326 | if (cpu_has_veic) { | 331 | if (cpu_has_veic) { |