2 * Copyright (C) 1999 Bent Hagemark, Ingo Molnar
4 * SGI Visual Workstation interrupt controller
6 * The Cobalt system ASIC in the Visual Workstation contains a "Cobalt" APIC
7 * which serves as the main interrupt controller in the system. Non-legacy
8 * hardware in the system uses this controller directly. Legacy devices
9 * are connected to the PIIX4 which in turn has its 8259(s) connected to
10 * a of the Cobalt APIC entry.
12 * 09/02/2000 - Updated for 2.4 by jbarnes@sgi.com
14 * 25/11/2002 - Updated for 2.5 by Andrey Panin <pazke@orbita1.ru>
17 #include <linux/kernel_stat.h>
18 #include <linux/interrupt.h>
19 #include <linux/init.h>
23 #include <asm/i8259.h>
26 #include "irq_vectors.h"
29 static DEFINE_SPINLOCK(cobalt_lock);
32 * Set the given Cobalt APIC Redirection Table entry to point
33 * to the given IDT vector/index.
35 static inline void co_apic_set(int entry, int irq)
37 co_apic_write(CO_APIC_LO(entry), CO_APIC_LEVEL | (irq + FIRST_EXTERNAL_VECTOR));
38 co_apic_write(CO_APIC_HI(entry), 0);
42 * Cobalt (IO)-APIC functions to handle PCI devices.
44 static inline int co_apic_ide0_hack(void)
46 extern char visws_board_type;
47 extern char visws_board_rev;
49 if (visws_board_type == VISWS_320 && visws_board_rev == 5)
54 static int is_co_apic(unsigned int irq)
60 case 0: return CO_APIC_CPU;
61 case CO_IRQ_IDE0: return co_apic_ide0_hack();
62 case CO_IRQ_IDE1: return CO_APIC_IDE1;
69 * This is the SGI Cobalt (IO-)APIC:
72 static void enable_cobalt_irq(unsigned int irq)
74 co_apic_set(is_co_apic(irq), irq);
77 static void disable_cobalt_irq(unsigned int irq)
79 int entry = is_co_apic(irq);
81 co_apic_write(CO_APIC_LO(entry), CO_APIC_MASK);
82 co_apic_read(CO_APIC_LO(entry));
86 * "irq" really just serves to identify the device. Here is where we
87 * map this to the Cobalt APIC entry where it's physically wired.
88 * This is called via request_irq -> setup_irq -> irq_desc->startup()
90 static unsigned int startup_cobalt_irq(unsigned int irq)
94 spin_lock_irqsave(&cobalt_lock, flags);
95 if ((irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS | IRQ_WAITING)))
96 irq_desc[irq].status &= ~(IRQ_DISABLED | IRQ_INPROGRESS | IRQ_WAITING);
97 enable_cobalt_irq(irq);
98 spin_unlock_irqrestore(&cobalt_lock, flags);
102 static void ack_cobalt_irq(unsigned int irq)
106 spin_lock_irqsave(&cobalt_lock, flags);
107 disable_cobalt_irq(irq);
108 apic_write(APIC_EOI, APIC_EIO_ACK);
109 spin_unlock_irqrestore(&cobalt_lock, flags);
112 static void end_cobalt_irq(unsigned int irq)
116 spin_lock_irqsave(&cobalt_lock, flags);
117 if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS)))
118 enable_cobalt_irq(irq);
119 spin_unlock_irqrestore(&cobalt_lock, flags);
122 static struct irq_chip cobalt_irq_type = {
123 .typename = "Cobalt-APIC",
124 .startup = startup_cobalt_irq,
125 .shutdown = disable_cobalt_irq,
126 .enable = enable_cobalt_irq,
127 .disable = disable_cobalt_irq,
128 .ack = ack_cobalt_irq,
129 .end = end_cobalt_irq,
134 * This is the PIIX4-based 8259 that is wired up indirectly to Cobalt
135 * -- not the manner expected by the code in i8259.c.
137 * there is a 'master' physical interrupt source that gets sent to
138 * the CPU. But in the chipset there are various 'virtual' interrupts
139 * waiting to be handled. We represent this to Linux through a 'master'
140 * interrupt controller type, and through a special virtual interrupt-
141 * controller. Device drivers only see the virtual interrupt sources.
143 static unsigned int startup_piix4_master_irq(unsigned int irq)
147 return startup_cobalt_irq(irq);
150 static void end_piix4_master_irq(unsigned int irq)
154 spin_lock_irqsave(&cobalt_lock, flags);
155 enable_cobalt_irq(irq);
156 spin_unlock_irqrestore(&cobalt_lock, flags);
159 static struct irq_chip piix4_master_irq_type = {
160 .typename = "PIIX4-master",
161 .startup = startup_piix4_master_irq,
162 .ack = ack_cobalt_irq,
163 .end = end_piix4_master_irq,
167 static struct irq_chip piix4_virtual_irq_type = {
168 .typename = "PIIX4-virtual",
169 .shutdown = disable_8259A_irq,
170 .enable = enable_8259A_irq,
171 .disable = disable_8259A_irq,
176 * PIIX4-8259 master/virtual functions to handle interrupt requests
177 * from legacy devices: floppy, parallel, serial, rtc.
179 * None of these get Cobalt APIC entries, neither do they have IDT
180 * entries. These interrupts are purely virtual and distributed from
181 * the 'master' interrupt source: CO_IRQ_8259.
183 * When the 8259 interrupts its handler figures out which of these
184 * devices is interrupting and dispatches to its handler.
186 * CAREFUL: devices see the 'virtual' interrupt only. Thus disable/
187 * enable_irq gets the right irq. This 'master' irq is never directly
188 * manipulated by any driver.
190 static irqreturn_t piix4_master_intr(int irq, void *dev_id)
196 spin_lock_irqsave(&i8259A_lock, flags);
198 /* Find out what's interrupting in the PIIX4 master 8259 */
199 outb(0x0c, 0x20); /* OCW3 Poll command */
203 * Bit 7 == 0 means invalid/spurious
205 if (unlikely(!(realirq & 0x80)))
210 if (unlikely(realirq == 2)) {
214 if (unlikely(!(realirq & 0x80)))
217 realirq = (realirq & 7) + 8;
220 /* mask and ack interrupt */
221 cached_irq_mask |= 1 << realirq;
222 if (unlikely(realirq > 7)) {
224 outb(cached_slave_mask, 0xa1);
225 outb(0x60 + (realirq & 7), 0xa0);
226 outb(0x60 + 2, 0x20);
229 outb(cached_master_mask, 0x21);
230 outb(0x60 + realirq, 0x20);
233 spin_unlock_irqrestore(&i8259A_lock, flags);
235 desc = irq_desc + realirq;
238 * handle this 'virtual interrupt' as a Cobalt one now.
240 kstat_cpu(smp_processor_id()).irqs[realirq]++;
242 if (likely(desc->action != NULL))
243 handle_IRQ_event(realirq, desc->action);
245 if (!(desc->status & IRQ_DISABLED))
246 enable_8259A_irq(realirq);
251 spin_unlock_irqrestore(&i8259A_lock, flags);
255 static struct irqaction master_action = {
256 .handler = piix4_master_intr,
257 .name = "PIIX4-8259",
260 static struct irqaction cascade_action = {
261 .handler = no_action,
266 void init_VISWS_APIC_irqs(void)
270 for (i = 0; i < CO_IRQ_APIC0 + CO_APIC_LAST + 1; i++) {
271 irq_desc[i].status = IRQ_DISABLED;
272 irq_desc[i].action = 0;
273 irq_desc[i].depth = 1;
276 irq_desc[i].chip = &cobalt_irq_type;
278 else if (i == CO_IRQ_IDE0) {
279 irq_desc[i].chip = &cobalt_irq_type;
281 else if (i == CO_IRQ_IDE1) {
282 irq_desc[i].chip = &cobalt_irq_type;
284 else if (i == CO_IRQ_8259) {
285 irq_desc[i].chip = &piix4_master_irq_type;
287 else if (i < CO_IRQ_APIC0) {
288 irq_desc[i].chip = &piix4_virtual_irq_type;
290 else if (IS_CO_APIC(i)) {
291 irq_desc[i].chip = &cobalt_irq_type;
295 setup_irq(CO_IRQ_8259, &master_action);
296 setup_irq(2, &cascade_action);