2 * i8259 interrupt controller driver.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
11 #include <linux/init.h>
12 #include <linux/ioport.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/delay.h>
17 #include <asm/i8259.h>
20 static volatile void __iomem
*pci_intack
; /* RO, gives us the irq vector */
22 static unsigned char cached_8259
[2] = { 0xff, 0xff };
23 #define cached_A1 (cached_8259[0])
24 #define cached_21 (cached_8259[1])
26 static DEFINE_SPINLOCK(i8259_lock
);
28 static struct irq_host
*i8259_host
;
31 * Acknowledge the IRQ using either the PCI host bridge's interrupt
32 * acknowledge feature or poll. How i8259_init() is called determines
33 * which is called. It should be noted that polling is broken on some
34 * IBM and Motorola PReP boxes so we must use the int-ack feature on them.
36 unsigned int i8259_irq(void)
41 /* Either int-ack or poll for the IRQ */
43 irq
= readb(pci_intack
);
45 spin_lock(&i8259_lock
);
48 /* Perform an interrupt acknowledge cycle on controller 1. */
49 outb(0x0C, 0x20); /* prepare for poll */
53 * Interrupt is cascaded so perform interrupt
54 * acknowledge on controller 2.
56 outb(0x0C, 0xA0); /* prepare for poll */
57 irq
= (inb(0xA0) & 7) + 8;
63 * This may be a spurious interrupt.
65 * Read the interrupt status register (ISR). If the most
66 * significant bit is not set then there is no valid
70 outb(0x0B, 0x20); /* ISR register */
73 } else if (irq
== 0xff)
77 spin_unlock(&i8259_lock
);
81 static void i8259_mask_and_ack_irq(unsigned int irq_nr
)
85 spin_lock_irqsave(&i8259_lock
, flags
);
87 cached_A1
|= 1 << (irq_nr
-8);
88 inb(0xA1); /* DUMMY */
89 outb(cached_A1
, 0xA1);
90 outb(0x20, 0xA0); /* Non-specific EOI */
91 outb(0x20, 0x20); /* Non-specific EOI to cascade */
93 cached_21
|= 1 << irq_nr
;
94 inb(0x21); /* DUMMY */
95 outb(cached_21
, 0x21);
96 outb(0x20, 0x20); /* Non-specific EOI */
98 spin_unlock_irqrestore(&i8259_lock
, flags
);
101 static void i8259_set_irq_mask(int irq_nr
)
103 outb(cached_A1
,0xA1);
104 outb(cached_21
,0x21);
107 static void i8259_mask_irq(unsigned int irq_nr
)
111 pr_debug("i8259_mask_irq(%d)\n", irq_nr
);
113 spin_lock_irqsave(&i8259_lock
, flags
);
115 cached_21
|= 1 << irq_nr
;
117 cached_A1
|= 1 << (irq_nr
-8);
118 i8259_set_irq_mask(irq_nr
);
119 spin_unlock_irqrestore(&i8259_lock
, flags
);
122 static void i8259_unmask_irq(unsigned int irq_nr
)
126 pr_debug("i8259_unmask_irq(%d)\n", irq_nr
);
128 spin_lock_irqsave(&i8259_lock
, flags
);
130 cached_21
&= ~(1 << irq_nr
);
132 cached_A1
&= ~(1 << (irq_nr
-8));
133 i8259_set_irq_mask(irq_nr
);
134 spin_unlock_irqrestore(&i8259_lock
, flags
);
137 static struct irq_chip i8259_pic
= {
138 .typename
= " i8259 ",
139 .mask
= i8259_mask_irq
,
140 .disable
= i8259_mask_irq
,
141 .unmask
= i8259_unmask_irq
,
142 .mask_ack
= i8259_mask_and_ack_irq
,
145 static struct resource pic1_iores
= {
146 .name
= "8259 (master)",
149 .flags
= IORESOURCE_BUSY
,
152 static struct resource pic2_iores
= {
153 .name
= "8259 (slave)",
156 .flags
= IORESOURCE_BUSY
,
159 static struct resource pic_edgectrl_iores
= {
160 .name
= "8259 edge control",
163 .flags
= IORESOURCE_BUSY
,
166 static int i8259_host_match(struct irq_host
*h
, struct device_node
*node
)
168 return h
->of_node
== NULL
|| h
->of_node
== node
;
171 static int i8259_host_map(struct irq_host
*h
, unsigned int virq
,
174 pr_debug("i8259_host_map(%d, 0x%lx)\n", virq
, hw
);
176 /* We block the internal cascade */
178 get_irq_desc(virq
)->status
|= IRQ_NOREQUEST
;
180 /* We use the level handler only for now, we might want to
181 * be more cautious here but that works for now
183 get_irq_desc(virq
)->status
|= IRQ_LEVEL
;
184 set_irq_chip_and_handler(virq
, &i8259_pic
, handle_level_irq
);
188 static void i8259_host_unmap(struct irq_host
*h
, unsigned int virq
)
190 /* Make sure irq is masked in hardware */
191 i8259_mask_irq(virq
);
193 /* remove chip and handler */
194 set_irq_chip_and_handler(virq
, NULL
, NULL
);
196 /* Make sure it's completed */
197 synchronize_irq(virq
);
200 static int i8259_host_xlate(struct irq_host
*h
, struct device_node
*ct
,
201 u32
*intspec
, unsigned int intsize
,
202 irq_hw_number_t
*out_hwirq
, unsigned int *out_flags
)
204 static unsigned char map_isa_senses
[4] = {
207 IRQ_TYPE_EDGE_FALLING
,
208 IRQ_TYPE_EDGE_RISING
,
211 *out_hwirq
= intspec
[0];
212 if (intsize
> 1 && intspec
[1] < 4)
213 *out_flags
= map_isa_senses
[intspec
[1]];
215 *out_flags
= IRQ_TYPE_NONE
;
220 static struct irq_host_ops i8259_host_ops
= {
221 .match
= i8259_host_match
,
222 .map
= i8259_host_map
,
223 .unmap
= i8259_host_unmap
,
224 .xlate
= i8259_host_xlate
,
227 struct irq_host
*i8259_get_host(void)
233 * i8259_init - Initialize the legacy controller
234 * @node: device node of the legacy PIC (can be NULL, but then, it will match
235 * all interrupts, so beware)
236 * @intack_addr: PCI interrupt acknowledge (real) address which will return
237 * the active irq from the 8259
239 void i8259_init(struct device_node
*node
, unsigned long intack_addr
)
243 /* initialize the controller */
244 spin_lock_irqsave(&i8259_lock
, flags
);
250 /* init master interrupt controller */
251 outb(0x11, 0x20); /* Start init sequence */
252 outb(0x00, 0x21); /* Vector base */
253 outb(0x04, 0x21); /* edge tiggered, Cascade (slave) on IRQ2 */
254 outb(0x01, 0x21); /* Select 8086 mode */
256 /* init slave interrupt controller */
257 outb(0x11, 0xA0); /* Start init sequence */
258 outb(0x08, 0xA1); /* Vector base */
259 outb(0x02, 0xA1); /* edge triggered, Cascade (slave) on IRQ2 */
260 outb(0x01, 0xA1); /* Select 8086 mode */
262 /* That thing is slow */
265 /* always read ISR */
269 /* Unmask the internal cascade */
270 cached_21
&= ~(1 << 2);
272 /* Set interrupt masks */
273 outb(cached_A1
, 0xA1);
274 outb(cached_21
, 0x21);
276 spin_unlock_irqrestore(&i8259_lock
, flags
);
278 /* create a legacy host */
279 i8259_host
= irq_alloc_host(node
, IRQ_HOST_MAP_LEGACY
,
280 0, &i8259_host_ops
, 0);
281 if (i8259_host
== NULL
) {
282 printk(KERN_ERR
"i8259: failed to allocate irq host !\n");
286 /* reserve our resources */
287 /* XXX should we continue doing that ? it seems to cause problems
288 * with further requesting of PCI IO resources for that range...
289 * need to look into it.
291 request_resource(&ioport_resource
, &pic1_iores
);
292 request_resource(&ioport_resource
, &pic2_iores
);
293 request_resource(&ioport_resource
, &pic_edgectrl_iores
);
295 if (intack_addr
!= 0)
296 pci_intack
= ioremap(intack_addr
, 1);
298 printk(KERN_INFO
"i8259 legacy interrupt controller initialized\n");