blob: 1117fab197334d464d6563c6e1361168947aad2c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IRQ vector handles
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1995, 1996, 1997, 2003 by Ralf Baechle
9 */
10#include <linux/kernel.h>
11#include <linux/init.h>
12#include <linux/irq.h>
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000013#include <linux/interrupt.h>
14#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <asm/i8259.h>
17#include <asm/irq_cpu.h>
18#include <asm/gt64120.h>
19#include <asm/ptrace.h>
20
Ralf Baechle11ed6d52006-01-18 23:26:43 +000021#include <asm/mach-cobalt/cobalt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * We have two types of interrupts that we handle, ones that come in through
25 * the CPU interrupt lines, and ones that come in on the via chip. The CPU
26 * mappings are:
27 *
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000028 * 16 - Software interrupt 0 (unused) IE_SW0
29 * 17 - Software interrupt 1 (unused) IE_SW1
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * 18 - Galileo chip (timer) IE_IRQ0
31 * 19 - Tulip 0 + NCR SCSI IE_IRQ1
32 * 20 - Tulip 1 IE_IRQ2
33 * 21 - 16550 UART IE_IRQ3
34 * 22 - VIA southbridge PIC IE_IRQ4
35 * 23 - unused IE_IRQ5
36 *
37 * The VIA chip is a master/slave 8259 setup and has the following interrupts:
38 *
39 * 8 - RTC
40 * 9 - PCI
41 * 14 - IDE0
42 * 15 - IDE1
43 */
44
Ralf Baechle937a8012006-10-07 19:44:33 +010045static inline void galileo_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000047 unsigned int mask, pending, devfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000049 mask = GALILEO_INL(GT_INTRMASK_OFS);
50 pending = GALILEO_INL(GT_INTRCAUSE_OFS) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000052 if (pending & GALILEO_INTR_T0EXP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000054 GALILEO_OUTL(~GALILEO_INTR_T0EXP, GT_INTRCAUSE_OFS);
Ralf Baechle937a8012006-10-07 19:44:33 +010055 do_IRQ(COBALT_GALILEO_IRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000057 } else if (pending & GALILEO_INTR_RETRY_CTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000059 devfn = GALILEO_INL(GT_PCI0_CFGADDR_OFS) >> 8;
60 GALILEO_OUTL(~GALILEO_INTR_RETRY_CTR, GT_INTRCAUSE_OFS);
61 printk(KERN_WARNING "Galileo: PCI retry count exceeded (%02x.%u)\n",
62 PCI_SLOT(devfn), PCI_FUNC(devfn));
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000064 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000066 GALILEO_OUTL(mask & ~pending, GT_INTRMASK_OFS);
67 printk(KERN_WARNING "Galileo: masking unexpected interrupt %08x\n", pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 }
69}
70
Ralf Baechle937a8012006-10-07 19:44:33 +010071static inline void via_pic_irq(void)
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000072{
73 int irq;
74
75 irq = i8259_irq();
76 if (irq >= 0)
Ralf Baechle937a8012006-10-07 19:44:33 +010077 do_IRQ(irq);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000078}
79
Ralf Baechle937a8012006-10-07 19:44:33 +010080asmlinkage void plat_irq_dispatch(void)
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000081{
Ralf Baechle937a8012006-10-07 19:44:33 +010082 unsigned pending = read_c0_status() & read_c0_cause();
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000083
Ralf Baechle937a8012006-10-07 19:44:33 +010084 if (pending & CAUSEF_IP2) /* COBALT_GALILEO_IRQ (18) */
85 galileo_irq();
86 else if (pending & CAUSEF_IP6) /* COBALT_VIA_IRQ (22) */
87 via_pic_irq();
88 else if (pending & CAUSEF_IP3) /* COBALT_ETH0_IRQ (19) */
89 do_IRQ(COBALT_CPU_IRQ + 3);
90 else if (pending & CAUSEF_IP4) /* COBALT_ETH1_IRQ (20) */
91 do_IRQ(COBALT_CPU_IRQ + 4);
92 else if (pending & CAUSEF_IP5) /* COBALT_SERIAL_IRQ (21) */
93 do_IRQ(COBALT_CPU_IRQ + 5);
94 else if (pending & CAUSEF_IP7) /* IRQ 23 */
95 do_IRQ(COBALT_CPU_IRQ + 7);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000096}
97
98static struct irqaction irq_via = {
99 no_action, 0, { { 0, } }, "cascade", NULL, NULL
100};
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102void __init arch_init_irq(void)
103{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000104 /*
105 * Mask all Galileo interrupts. The Galileo
106 * handler is set in cobalt_timer_setup()
107 */
108 GALILEO_OUTL(0, GT_INTRMASK_OFS);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 init_i8259_irqs(); /* 0 ... 15 */
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000111 mips_cpu_irq_init(COBALT_CPU_IRQ); /* 16 ... 23 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 /*
114 * Mask all cpu interrupts
115 * (except IE4, we already masked those at VIA level)
116 */
117 change_c0_status(ST0_IM, IE_IRQ4);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000118
119 setup_irq(COBALT_VIA_IRQ, &irq_via);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}