diff options
Diffstat (limited to 'arch/mips/momentum/ocelot_g/irq.c')
| -rw-r--r-- | arch/mips/momentum/ocelot_g/irq.c | 38 |
1 files changed, 35 insertions, 3 deletions
diff --git a/arch/mips/momentum/ocelot_g/irq.c b/arch/mips/momentum/ocelot_g/irq.c index 5eb85b164205..7a4a419804f1 100644 --- a/arch/mips/momentum/ocelot_g/irq.c +++ b/arch/mips/momentum/ocelot_g/irq.c | |||
| @@ -48,7 +48,41 @@ | |||
| 48 | #include <asm/mipsregs.h> | 48 | #include <asm/mipsregs.h> |
| 49 | #include <asm/system.h> | 49 | #include <asm/system.h> |
| 50 | 50 | ||
| 51 | extern asmlinkage void ocelot_handle_int(void); | 51 | asmlinkage void plat_irq_dispatch(struct pt_regs *regs) |
| 52 | { | ||
| 53 | unsigned int pending = read_c0_cause() & read_c0_status(); | ||
| 54 | |||
| 55 | if (pending & STATUSF_IP2) | ||
| 56 | do_IRQ(2, regs); | ||
| 57 | else if (pending & STATUSF_IP3) | ||
| 58 | do_IRQ(3, regs); | ||
| 59 | else if (pending & STATUSF_IP4) | ||
| 60 | do_IRQ(4, regs); | ||
| 61 | else if (pending & STATUSF_IP5) | ||
| 62 | do_IRQ(5, regs); | ||
| 63 | else if (pending & STATUSF_IP6) | ||
| 64 | do_IRQ(6, regs); | ||
| 65 | else if (pending & STATUSF_IP7) | ||
| 66 | do_IRQ(7, regs); | ||
| 67 | else { | ||
| 68 | /* | ||
| 69 | * Now look at the extended interrupts | ||
| 70 | */ | ||
| 71 | pending = (read_c0_cause() & (read_c0_intcontrol() << 8)) >> 16; | ||
| 72 | |||
| 73 | if (pending & STATUSF_IP8) | ||
| 74 | do_IRQ(8, regs); | ||
| 75 | else if (pending & STATUSF_IP9) | ||
| 76 | do_IRQ(9, regs); | ||
| 77 | else if (pending & STATUSF_IP10) | ||
| 78 | do_IRQ(10, regs); | ||
| 79 | else if (pending & STATUSF_IP11) | ||
| 80 | do_IRQ(11, regs); | ||
| 81 | else | ||
| 82 | spurious_interrupt(regs); | ||
| 83 | } | ||
| 84 | } | ||
| 85 | |||
| 52 | extern void gt64240_irq_init(void); | 86 | extern void gt64240_irq_init(void); |
| 53 | 87 | ||
| 54 | void __init arch_init_irq(void) | 88 | void __init arch_init_irq(void) |
| @@ -60,8 +94,6 @@ void __init arch_init_irq(void) | |||
| 60 | clear_c0_status(ST0_IM); | 94 | clear_c0_status(ST0_IM); |
| 61 | local_irq_disable(); | 95 | local_irq_disable(); |
| 62 | 96 | ||
| 63 | /* Sets the first-level interrupt dispatcher. */ | ||
| 64 | set_except_vector(0, ocelot_handle_int); | ||
| 65 | mips_cpu_irq_init(0); | 97 | mips_cpu_irq_init(0); |
| 66 | rm7k_cpu_irq_init(8); | 98 | rm7k_cpu_irq_init(8); |
| 67 | 99 | ||
