2 * linux/arch/alpha/kernel/irq_i8259.c
4 * This is the 'legacy' 8259A Programmable Interrupt Controller,
5 * present in the majority of PC/AT boxes.
7 * Started hacking from linux-2.3.30pre6/arch/i386/kernel/i8259.c.
10 #include <linux/config.h>
11 #include <linux/init.h>
12 #include <linux/cache.h>
13 #include <linux/sched.h>
14 #include <linux/irq.h>
15 #include <linux/interrupt.h>
23 /* Note mask bit is true for DISABLED irqs. */
24 static unsigned int cached_irq_mask = 0xffff;
25 static DEFINE_SPINLOCK(i8259_irq_lock);
28 i8259_update_irq_hw(unsigned int irq, unsigned long mask)
31 if (irq & 8) mask >>= 8;
32 if (irq & 8) port = 0xA1;
37 i8259a_enable_irq(unsigned int irq)
39 spin_lock(&i8259_irq_lock);
40 i8259_update_irq_hw(irq, cached_irq_mask &= ~(1 << irq));
41 spin_unlock(&i8259_irq_lock);
45 __i8259a_disable_irq(unsigned int irq)
47 i8259_update_irq_hw(irq, cached_irq_mask |= 1 << irq);
51 i8259a_disable_irq(unsigned int irq)
53 spin_lock(&i8259_irq_lock);
54 __i8259a_disable_irq(irq);
55 spin_unlock(&i8259_irq_lock);
59 i8259a_mask_and_ack_irq(unsigned int irq)
61 spin_lock(&i8259_irq_lock);
62 __i8259a_disable_irq(irq);
64 /* Ack the interrupt making it the lowest priority. */
66 outb(0xE0 | (irq - 8), 0xa0); /* ack the slave */
69 outb(0xE0 | irq, 0x20); /* ack the master */
70 spin_unlock(&i8259_irq_lock);
74 i8259a_startup_irq(unsigned int irq)
76 i8259a_enable_irq(irq);
77 return 0; /* never anything pending */
81 i8259a_end_irq(unsigned int irq)
83 if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
84 i8259a_enable_irq(irq);
87 struct hw_interrupt_type i8259a_irq_type = {
89 .startup = i8259a_startup_irq,
90 .shutdown = i8259a_disable_irq,
91 .enable = i8259a_enable_irq,
92 .disable = i8259a_disable_irq,
93 .ack = i8259a_mask_and_ack_irq,
94 .end = i8259a_end_irq,
98 init_i8259a_irqs(void)
100 static struct irqaction cascade = {
101 .handler = no_action,
107 outb(0xff, 0x21); /* mask all of 8259A-1 */
108 outb(0xff, 0xA1); /* mask all of 8259A-2 */
110 for (i = 0; i < 16; i++) {
111 irq_desc[i].status = IRQ_DISABLED;
112 irq_desc[i].handler = &i8259a_irq_type;
115 setup_irq(2, &cascade);
119 #if defined(CONFIG_ALPHA_GENERIC)
120 # define IACK_SC alpha_mv.iack_sc
121 #elif defined(CONFIG_ALPHA_APECS)
122 # define IACK_SC APECS_IACK_SC
123 #elif defined(CONFIG_ALPHA_LCA)
124 # define IACK_SC LCA_IACK_SC
125 #elif defined(CONFIG_ALPHA_CIA)
126 # define IACK_SC CIA_IACK_SC
127 #elif defined(CONFIG_ALPHA_PYXIS)
128 # define IACK_SC PYXIS_IACK_SC
129 #elif defined(CONFIG_ALPHA_TITAN)
130 # define IACK_SC TITAN_IACK_SC
131 #elif defined(CONFIG_ALPHA_TSUNAMI)
132 # define IACK_SC TSUNAMI_IACK_SC
133 #elif defined(CONFIG_ALPHA_IRONGATE)
134 # define IACK_SC IRONGATE_IACK_SC
136 /* Note that CONFIG_ALPHA_POLARIS is intentionally left out here, since
137 sys_rx164 wants to use isa_no_iack_sc_device_interrupt for some reason. */
141 isa_device_interrupt(unsigned long vector, struct pt_regs *regs)
144 * Generate a PCI interrupt acknowledge cycle. The PIC will
145 * respond with the interrupt vector of the highest priority
146 * interrupt that is pending. The PALcode sets up the
147 * interrupts vectors such that irq level L generates vector L.
149 int j = *(vuip) IACK_SC;
155 #if defined(CONFIG_ALPHA_GENERIC) || !defined(IACK_SC)
157 isa_no_iack_sc_device_interrupt(unsigned long vector, struct pt_regs *regs)
162 * It seems to me that the probability of two or more *device*
163 * interrupts occurring at almost exactly the same time is
164 * pretty low. So why pay the price of checking for
165 * additional interrupts here if the common case can be
166 * handled so much easier?
169 * The first read of gives you *all* interrupting lines.
170 * Therefore, read the mask register and and out those lines
171 * not enabled. Note that some documentation has 21 and a1
172 * write only. This is not true.
174 pic = inb(0x20) | (inb(0xA0) << 8); /* read isr */
175 pic &= 0xFFFB; /* mask out cascade & hibits */