diff options
Diffstat (limited to 'arch/mips/cobalt/irq.c')
| -rw-r--r-- | arch/mips/cobalt/irq.c | 111 |
1 files changed, 73 insertions, 38 deletions
diff --git a/arch/mips/cobalt/irq.c b/arch/mips/cobalt/irq.c index 6d2a81581397..0d90851f925e 100644 --- a/arch/mips/cobalt/irq.c +++ b/arch/mips/cobalt/irq.c | |||
| @@ -10,6 +10,8 @@ | |||
| 10 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
| 11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
| 12 | #include <linux/irq.h> | 12 | #include <linux/irq.h> |
| 13 | #include <linux/interrupt.h> | ||
| 14 | #include <linux/pci.h> | ||
| 13 | 15 | ||
| 14 | #include <asm/i8259.h> | 16 | #include <asm/i8259.h> |
| 15 | #include <asm/irq_cpu.h> | 17 | #include <asm/irq_cpu.h> |
| @@ -25,8 +27,8 @@ extern void cobalt_handle_int(void); | |||
| 25 | * the CPU interrupt lines, and ones that come in on the via chip. The CPU | 27 | * the CPU interrupt lines, and ones that come in on the via chip. The CPU |
| 26 | * mappings are: | 28 | * mappings are: |
| 27 | * | 29 | * |
| 28 | * 16, - Software interrupt 0 (unused) IE_SW0 | 30 | * 16 - Software interrupt 0 (unused) IE_SW0 |
| 29 | * 17 - Software interrupt 1 (unused) IE_SW0 | 31 | * 17 - Software interrupt 1 (unused) IE_SW1 |
| 30 | * 18 - Galileo chip (timer) IE_IRQ0 | 32 | * 18 - Galileo chip (timer) IE_IRQ0 |
| 31 | * 19 - Tulip 0 + NCR SCSI IE_IRQ1 | 33 | * 19 - Tulip 0 + NCR SCSI IE_IRQ1 |
| 32 | * 20 - Tulip 1 IE_IRQ2 | 34 | * 20 - Tulip 1 IE_IRQ2 |
| @@ -42,61 +44,94 @@ extern void cobalt_handle_int(void); | |||
| 42 | * 15 - IDE1 | 44 | * 15 - IDE1 |
| 43 | */ | 45 | */ |
| 44 | 46 | ||
| 45 | asmlinkage void cobalt_irq(struct pt_regs *regs) | 47 | static inline void galileo_irq(struct pt_regs *regs) |
| 46 | { | 48 | { |
| 47 | unsigned int pending = read_c0_status() & read_c0_cause(); | 49 | unsigned int mask, pending, devfn; |
| 48 | |||
| 49 | if (pending & CAUSEF_IP2) { /* int 18 */ | ||
| 50 | unsigned long irq_src = GALILEO_INL(GT_INTRCAUSE_OFS); | ||
| 51 | |||
| 52 | /* Check for timer irq ... */ | ||
| 53 | if (irq_src & GALILEO_T0EXP) { | ||
| 54 | /* Clear the int line */ | ||
| 55 | GALILEO_OUTL(0, GT_INTRCAUSE_OFS); | ||
| 56 | do_IRQ(COBALT_TIMER_IRQ, regs); | ||
| 57 | } | ||
| 58 | return; | ||
| 59 | } | ||
| 60 | 50 | ||
| 61 | if (pending & CAUSEF_IP6) { /* int 22 */ | 51 | mask = GALILEO_INL(GT_INTRMASK_OFS); |
| 62 | int irq = i8259_irq(); | 52 | pending = GALILEO_INL(GT_INTRCAUSE_OFS) & mask; |
| 63 | 53 | ||
| 64 | if (irq >= 0) | 54 | if (pending & GALILEO_INTR_T0EXP) { |
| 65 | do_IRQ(irq, regs); | ||
| 66 | return; | ||
| 67 | } | ||
| 68 | 55 | ||
| 69 | if (pending & CAUSEF_IP3) { /* int 19 */ | 56 | GALILEO_OUTL(~GALILEO_INTR_T0EXP, GT_INTRCAUSE_OFS); |
| 70 | do_IRQ(COBALT_ETH0_IRQ, regs); | 57 | do_IRQ(COBALT_GALILEO_IRQ, regs); |
| 71 | return; | ||
| 72 | } | ||
| 73 | 58 | ||
| 74 | if (pending & CAUSEF_IP4) { /* int 20 */ | 59 | } else if (pending & GALILEO_INTR_RETRY_CTR) { |
| 75 | do_IRQ(COBALT_ETH1_IRQ, regs); | ||
| 76 | return; | ||
| 77 | } | ||
| 78 | 60 | ||
| 79 | if (pending & CAUSEF_IP5) { /* int 21 */ | 61 | devfn = GALILEO_INL(GT_PCI0_CFGADDR_OFS) >> 8; |
| 80 | do_IRQ(COBALT_SERIAL_IRQ, regs); | 62 | GALILEO_OUTL(~GALILEO_INTR_RETRY_CTR, GT_INTRCAUSE_OFS); |
| 81 | return; | 63 | printk(KERN_WARNING "Galileo: PCI retry count exceeded (%02x.%u)\n", |
| 82 | } | 64 | PCI_SLOT(devfn), PCI_FUNC(devfn)); |
| 65 | |||
| 66 | } else { | ||
| 83 | 67 | ||
| 84 | if (pending & CAUSEF_IP7) { /* int 23 */ | 68 | GALILEO_OUTL(mask & ~pending, GT_INTRMASK_OFS); |
| 85 | do_IRQ(COBALT_QUBE_SLOT_IRQ, regs); | 69 | printk(KERN_WARNING "Galileo: masking unexpected interrupt %08x\n", pending); |
| 86 | return; | ||
| 87 | } | 70 | } |
| 88 | } | 71 | } |
| 89 | 72 | ||
| 73 | static inline void via_pic_irq(struct pt_regs *regs) | ||
| 74 | { | ||
| 75 | int irq; | ||
| 76 | |||
| 77 | irq = i8259_irq(); | ||
| 78 | if (irq >= 0) | ||
| 79 | do_IRQ(irq, regs); | ||
| 80 | } | ||
| 81 | |||
| 82 | asmlinkage void cobalt_irq(struct pt_regs *regs) | ||
| 83 | { | ||
| 84 | unsigned pending; | ||
| 85 | |||
| 86 | pending = read_c0_status() & read_c0_cause(); | ||
| 87 | |||
| 88 | if (pending & CAUSEF_IP2) /* COBALT_GALILEO_IRQ (18) */ | ||
| 89 | |||
| 90 | galileo_irq(regs); | ||
| 91 | |||
| 92 | else if (pending & CAUSEF_IP6) /* COBALT_VIA_IRQ (22) */ | ||
| 93 | |||
| 94 | via_pic_irq(regs); | ||
| 95 | |||
| 96 | else if (pending & CAUSEF_IP3) /* COBALT_ETH0_IRQ (19) */ | ||
| 97 | |||
| 98 | do_IRQ(COBALT_CPU_IRQ + 3, regs); | ||
| 99 | |||
| 100 | else if (pending & CAUSEF_IP4) /* COBALT_ETH1_IRQ (20) */ | ||
| 101 | |||
| 102 | do_IRQ(COBALT_CPU_IRQ + 4, regs); | ||
| 103 | |||
| 104 | else if (pending & CAUSEF_IP5) /* COBALT_SERIAL_IRQ (21) */ | ||
| 105 | |||
| 106 | do_IRQ(COBALT_CPU_IRQ + 5, regs); | ||
| 107 | |||
| 108 | else if (pending & CAUSEF_IP7) /* IRQ 23 */ | ||
| 109 | |||
| 110 | do_IRQ(COBALT_CPU_IRQ + 7, regs); | ||
| 111 | } | ||
| 112 | |||
| 113 | static struct irqaction irq_via = { | ||
| 114 | no_action, 0, { { 0, } }, "cascade", NULL, NULL | ||
| 115 | }; | ||
| 116 | |||
| 90 | void __init arch_init_irq(void) | 117 | void __init arch_init_irq(void) |
| 91 | { | 118 | { |
| 119 | /* | ||
| 120 | * Mask all Galileo interrupts. The Galileo | ||
| 121 | * handler is set in cobalt_timer_setup() | ||
| 122 | */ | ||
| 123 | GALILEO_OUTL(0, GT_INTRMASK_OFS); | ||
| 124 | |||
| 92 | set_except_vector(0, cobalt_handle_int); | 125 | set_except_vector(0, cobalt_handle_int); |
| 93 | 126 | ||
| 94 | init_i8259_irqs(); /* 0 ... 15 */ | 127 | init_i8259_irqs(); /* 0 ... 15 */ |
| 95 | mips_cpu_irq_init(16); /* 16 ... 23 */ | 128 | mips_cpu_irq_init(COBALT_CPU_IRQ); /* 16 ... 23 */ |
| 96 | 129 | ||
| 97 | /* | 130 | /* |
| 98 | * Mask all cpu interrupts | 131 | * Mask all cpu interrupts |
| 99 | * (except IE4, we already masked those at VIA level) | 132 | * (except IE4, we already masked those at VIA level) |
| 100 | */ | 133 | */ |
| 101 | change_c0_status(ST0_IM, IE_IRQ4); | 134 | change_c0_status(ST0_IM, IE_IRQ4); |
| 135 | |||
| 136 | setup_irq(COBALT_VIA_IRQ, &irq_via); | ||
| 102 | } | 137 | } |
