2 * linux/arch/i386/mach_visws/visws_apic.c
4 * Copyright (C) 1999 Bent Hagemark, Ingo Molnar
6 * SGI Visual Workstation interrupt controller
8 * The Cobalt system ASIC in the Visual Workstation contains a "Cobalt" APIC
9 * which serves as the main interrupt controller in the system. Non-legacy
10 * hardware in the system uses this controller directly. Legacy devices
11 * are connected to the PIIX4 which in turn has its 8259(s) connected to
12 * a of the Cobalt APIC entry.
14 * 09/02/2000 - Updated for 2.4 by jbarnes@sgi.com
16 * 25/11/2002 - Updated for 2.5 by Andrey Panin <pazke@orbita1.ru>
19 #include <linux/config.h>
20 #include <linux/kernel_stat.h>
21 #include <linux/interrupt.h>
22 #include <linux/irq.h>
23 #include <linux/smp_lock.h>
24 #include <linux/init.h>
28 #include <asm/i8259.h>
31 #include "irq_vectors.h"
34 static DEFINE_SPINLOCK(cobalt_lock
);
37 * Set the given Cobalt APIC Redirection Table entry to point
38 * to the given IDT vector/index.
40 static inline void co_apic_set(int entry
, int irq
)
42 co_apic_write(CO_APIC_LO(entry
), CO_APIC_LEVEL
| (irq
+ FIRST_EXTERNAL_VECTOR
));
43 co_apic_write(CO_APIC_HI(entry
), 0);
47 * Cobalt (IO)-APIC functions to handle PCI devices.
49 static inline int co_apic_ide0_hack(void)
51 extern char visws_board_type
;
52 extern char visws_board_rev
;
54 if (visws_board_type
== VISWS_320
&& visws_board_rev
== 5)
59 static int is_co_apic(unsigned int irq
)
65 case 0: return CO_APIC_CPU
;
66 case CO_IRQ_IDE0
: return co_apic_ide0_hack();
67 case CO_IRQ_IDE1
: return CO_APIC_IDE1
;
74 * This is the SGI Cobalt (IO-)APIC:
77 static void enable_cobalt_irq(unsigned int irq
)
79 co_apic_set(is_co_apic(irq
), irq
);
82 static void disable_cobalt_irq(unsigned int irq
)
84 int entry
= is_co_apic(irq
);
86 co_apic_write(CO_APIC_LO(entry
), CO_APIC_MASK
);
87 co_apic_read(CO_APIC_LO(entry
));
91 * "irq" really just serves to identify the device. Here is where we
92 * map this to the Cobalt APIC entry where it's physically wired.
93 * This is called via request_irq -> setup_irq -> irq_desc->startup()
95 static unsigned int startup_cobalt_irq(unsigned int irq
)
99 spin_lock_irqsave(&cobalt_lock
, flags
);
100 if ((irq_desc
[irq
].status
& (IRQ_DISABLED
| IRQ_INPROGRESS
| IRQ_WAITING
)))
101 irq_desc
[irq
].status
&= ~(IRQ_DISABLED
| IRQ_INPROGRESS
| IRQ_WAITING
);
102 enable_cobalt_irq(irq
);
103 spin_unlock_irqrestore(&cobalt_lock
, flags
);
107 static void ack_cobalt_irq(unsigned int irq
)
111 spin_lock_irqsave(&cobalt_lock
, flags
);
112 disable_cobalt_irq(irq
);
113 apic_write(APIC_EOI
, APIC_EIO_ACK
);
114 spin_unlock_irqrestore(&cobalt_lock
, flags
);
117 static void end_cobalt_irq(unsigned int irq
)
121 spin_lock_irqsave(&cobalt_lock
, flags
);
122 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
| IRQ_INPROGRESS
)))
123 enable_cobalt_irq(irq
);
124 spin_unlock_irqrestore(&cobalt_lock
, flags
);
127 static struct hw_interrupt_type cobalt_irq_type
= {
128 .typename
= "Cobalt-APIC",
129 .startup
= startup_cobalt_irq
,
130 .shutdown
= disable_cobalt_irq
,
131 .enable
= enable_cobalt_irq
,
132 .disable
= disable_cobalt_irq
,
133 .ack
= ack_cobalt_irq
,
134 .end
= end_cobalt_irq
,
139 * This is the PIIX4-based 8259 that is wired up indirectly to Cobalt
140 * -- not the manner expected by the code in i8259.c.
142 * there is a 'master' physical interrupt source that gets sent to
143 * the CPU. But in the chipset there are various 'virtual' interrupts
144 * waiting to be handled. We represent this to Linux through a 'master'
145 * interrupt controller type, and through a special virtual interrupt-
146 * controller. Device drivers only see the virtual interrupt sources.
148 static unsigned int startup_piix4_master_irq(unsigned int irq
)
152 return startup_cobalt_irq(irq
);
155 static void end_piix4_master_irq(unsigned int irq
)
159 spin_lock_irqsave(&cobalt_lock
, flags
);
160 enable_cobalt_irq(irq
);
161 spin_unlock_irqrestore(&cobalt_lock
, flags
);
164 static struct hw_interrupt_type piix4_master_irq_type
= {
165 .typename
= "PIIX4-master",
166 .startup
= startup_piix4_master_irq
,
167 .ack
= ack_cobalt_irq
,
168 .end
= end_piix4_master_irq
,
172 static struct hw_interrupt_type piix4_virtual_irq_type
= {
173 .typename
= "PIIX4-virtual",
174 .startup
= startup_8259A_irq
,
175 .shutdown
= disable_8259A_irq
,
176 .enable
= enable_8259A_irq
,
177 .disable
= disable_8259A_irq
,
182 * PIIX4-8259 master/virtual functions to handle interrupt requests
183 * from legacy devices: floppy, parallel, serial, rtc.
185 * None of these get Cobalt APIC entries, neither do they have IDT
186 * entries. These interrupts are purely virtual and distributed from
187 * the 'master' interrupt source: CO_IRQ_8259.
189 * When the 8259 interrupts its handler figures out which of these
190 * devices is interrupting and dispatches to its handler.
192 * CAREFUL: devices see the 'virtual' interrupt only. Thus disable/
193 * enable_irq gets the right irq. This 'master' irq is never directly
194 * manipulated by any driver.
196 static irqreturn_t
piix4_master_intr(int irq
, void *dev_id
, struct pt_regs
* regs
)
202 spin_lock_irqsave(&i8259A_lock
, flags
);
204 /* Find out what's interrupting in the PIIX4 master 8259 */
205 outb(0x0c, 0x20); /* OCW3 Poll command */
209 * Bit 7 == 0 means invalid/spurious
211 if (unlikely(!(realirq
& 0x80)))
216 if (unlikely(realirq
== 2)) {
220 if (unlikely(!(realirq
& 0x80)))
223 realirq
= (realirq
& 7) + 8;
226 /* mask and ack interrupt */
227 cached_irq_mask
|= 1 << realirq
;
228 if (unlikely(realirq
> 7)) {
230 outb(cached_slave_mask
, 0xa1);
231 outb(0x60 + (realirq
& 7), 0xa0);
232 outb(0x60 + 2, 0x20);
235 outb(cached_master_mask
, 0x21);
236 outb(0x60 + realirq
, 0x20);
239 spin_unlock_irqrestore(&i8259A_lock
, flags
);
241 desc
= irq_desc
+ realirq
;
244 * handle this 'virtual interrupt' as a Cobalt one now.
246 kstat_cpu(smp_processor_id()).irqs
[realirq
]++;
248 if (likely(desc
->action
!= NULL
))
249 handle_IRQ_event(realirq
, regs
, desc
->action
);
251 if (!(desc
->status
& IRQ_DISABLED
))
252 enable_8259A_irq(realirq
);
257 spin_unlock_irqrestore(&i8259A_lock
, flags
);
261 static struct irqaction master_action
= {
262 .handler
= piix4_master_intr
,
263 .name
= "PIIX4-8259",
266 static struct irqaction cascade_action
= {
267 .handler
= no_action
,
272 void init_VISWS_APIC_irqs(void)
276 for (i
= 0; i
< CO_IRQ_APIC0
+ CO_APIC_LAST
+ 1; i
++) {
277 irq_desc
[i
].status
= IRQ_DISABLED
;
278 irq_desc
[i
].action
= 0;
279 irq_desc
[i
].depth
= 1;
282 irq_desc
[i
].handler
= &cobalt_irq_type
;
284 else if (i
== CO_IRQ_IDE0
) {
285 irq_desc
[i
].handler
= &cobalt_irq_type
;
287 else if (i
== CO_IRQ_IDE1
) {
288 irq_desc
[i
].handler
= &cobalt_irq_type
;
290 else if (i
== CO_IRQ_8259
) {
291 irq_desc
[i
].handler
= &piix4_master_irq_type
;
293 else if (i
< CO_IRQ_APIC0
) {
294 irq_desc
[i
].handler
= &piix4_virtual_irq_type
;
296 else if (IS_CO_APIC(i
)) {
297 irq_desc
[i
].handler
= &cobalt_irq_type
;
301 setup_irq(CO_IRQ_8259
, &master_action
);
302 setup_irq(2, &cascade_action
);