blob: 950ad1e8be444d7b68528102145bc45e68e8ce15 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Yoichi Yuasacc50b672007-03-06 21:34:44 +090020#include <cobalt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
23 * We have two types of interrupts that we handle, ones that come in through
24 * the CPU interrupt lines, and ones that come in on the via chip. The CPU
25 * mappings are:
26 *
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000027 * 16 - Software interrupt 0 (unused) IE_SW0
28 * 17 - Software interrupt 1 (unused) IE_SW1
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * 18 - Galileo chip (timer) IE_IRQ0
30 * 19 - Tulip 0 + NCR SCSI IE_IRQ1
31 * 20 - Tulip 1 IE_IRQ2
32 * 21 - 16550 UART IE_IRQ3
33 * 22 - VIA southbridge PIC IE_IRQ4
34 * 23 - unused IE_IRQ5
35 *
36 * The VIA chip is a master/slave 8259 setup and has the following interrupts:
37 *
38 * 8 - RTC
39 * 9 - PCI
40 * 14 - IDE0
41 * 15 - IDE1
42 */
43
Ralf Baechle937a8012006-10-07 19:44:33 +010044static inline void galileo_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000046 unsigned int mask, pending, devfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Yoichi Yuasa56ae5832006-10-14 00:25:04 +090048 mask = GT_READ(GT_INTRMASK_OFS);
49 pending = GT_READ(GT_INTRCAUSE_OFS) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Yoichi Yuasa56ae5832006-10-14 00:25:04 +090051 if (pending & GT_INTR_T0EXP_MSK) {
52 GT_WRITE(GT_INTRCAUSE_OFS, ~GT_INTR_T0EXP_MSK);
Ralf Baechle937a8012006-10-07 19:44:33 +010053 do_IRQ(COBALT_GALILEO_IRQ);
Yoichi Yuasa56ae5832006-10-14 00:25:04 +090054 } else if (pending & GT_INTR_RETRYCTR0_MSK) {
55 devfn = GT_READ(GT_PCI0_CFGADDR_OFS) >> 8;
56 GT_WRITE(GT_INTRCAUSE_OFS, ~GT_INTR_RETRYCTR0_MSK);
57 printk(KERN_WARNING
58 "Galileo: PCI retry count exceeded (%02x.%u)\n",
59 PCI_SLOT(devfn), PCI_FUNC(devfn));
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000060 } else {
Yoichi Yuasa56ae5832006-10-14 00:25:04 +090061 GT_WRITE(GT_INTRMASK_OFS, mask & ~pending);
62 printk(KERN_WARNING
63 "Galileo: masking unexpected interrupt %08x\n", pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65}
66
Ralf Baechle937a8012006-10-07 19:44:33 +010067static inline void via_pic_irq(void)
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000068{
69 int irq;
70
71 irq = i8259_irq();
72 if (irq >= 0)
Ralf Baechle937a8012006-10-07 19:44:33 +010073 do_IRQ(irq);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000074}
75
Ralf Baechle937a8012006-10-07 19:44:33 +010076asmlinkage void plat_irq_dispatch(void)
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000077{
Ralf Baechle937a8012006-10-07 19:44:33 +010078 unsigned pending = read_c0_status() & read_c0_cause();
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000079
Ralf Baechle937a8012006-10-07 19:44:33 +010080 if (pending & CAUSEF_IP2) /* COBALT_GALILEO_IRQ (18) */
81 galileo_irq();
82 else if (pending & CAUSEF_IP6) /* COBALT_VIA_IRQ (22) */
83 via_pic_irq();
84 else if (pending & CAUSEF_IP3) /* COBALT_ETH0_IRQ (19) */
85 do_IRQ(COBALT_CPU_IRQ + 3);
86 else if (pending & CAUSEF_IP4) /* COBALT_ETH1_IRQ (20) */
87 do_IRQ(COBALT_CPU_IRQ + 4);
88 else if (pending & CAUSEF_IP5) /* COBALT_SERIAL_IRQ (21) */
89 do_IRQ(COBALT_CPU_IRQ + 5);
90 else if (pending & CAUSEF_IP7) /* IRQ 23 */
91 do_IRQ(COBALT_CPU_IRQ + 7);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000092}
93
94static struct irqaction irq_via = {
95 no_action, 0, { { 0, } }, "cascade", NULL, NULL
96};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void __init arch_init_irq(void)
99{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000100 /*
101 * Mask all Galileo interrupts. The Galileo
102 * handler is set in cobalt_timer_setup()
103 */
Yoichi Yuasa56ae5832006-10-14 00:25:04 +0900104 GT_WRITE(GT_INTRMASK_OFS, 0);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 init_i8259_irqs(); /* 0 ... 15 */
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900107 mips_cpu_irq_init(); /* 16 ... 23 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 /*
110 * Mask all cpu interrupts
111 * (except IE4, we already masked those at VIA level)
112 */
113 change_c0_status(ST0_IM, IE_IRQ4);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000114
115 setup_irq(COBALT_VIA_IRQ, &irq_via);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}