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/ioport.h>
12 #include <linux/interrupt.h>
13 #include <linux/kernel.h>
14 #include <linux/delay.h>
16 #include <asm/i8259.h>
19 static volatile void __iomem
*pci_intack
; /* RO, gives us the irq vector */
21 static unsigned char cached_8259
[2] = { 0xff, 0xff };
22 #define cached_A1 (cached_8259[0])
23 #define cached_21 (cached_8259[1])
25 static DEFINE_RAW_SPINLOCK(i8259_lock
);
27 static struct irq_domain
*i8259_host
;
30 * Acknowledge the IRQ using either the PCI host bridge's interrupt
31 * acknowledge feature or poll. How i8259_init() is called determines
32 * which is called. It should be noted that polling is broken on some
33 * IBM and Motorola PReP boxes so we must use the int-ack feature on them.
35 unsigned int i8259_irq(void)
40 /* Either int-ack or poll for the IRQ */
42 irq
= readb(pci_intack
);
44 raw_spin_lock(&i8259_lock
);
47 /* Perform an interrupt acknowledge cycle on controller 1. */
48 outb(0x0C, 0x20); /* prepare for poll */
52 * Interrupt is cascaded so perform interrupt
53 * acknowledge on controller 2.
55 outb(0x0C, 0xA0); /* prepare for poll */
56 irq
= (inb(0xA0) & 7) + 8;
62 * This may be a spurious interrupt.
64 * Read the interrupt status register (ISR). If the most
65 * significant bit is not set then there is no valid
69 outb(0x0B, 0x20); /* ISR register */
72 } else if (irq
== 0xff)
76 raw_spin_unlock(&i8259_lock
);
80 static void i8259_mask_and_ack_irq(struct irq_data
*d
)
84 raw_spin_lock_irqsave(&i8259_lock
, flags
);
86 cached_A1
|= 1 << (d
->irq
-8);
87 inb(0xA1); /* DUMMY */
88 outb(cached_A1
, 0xA1);
89 outb(0x20, 0xA0); /* Non-specific EOI */
90 outb(0x20, 0x20); /* Non-specific EOI to cascade */
92 cached_21
|= 1 << d
->irq
;
93 inb(0x21); /* DUMMY */
94 outb(cached_21
, 0x21);
95 outb(0x20, 0x20); /* Non-specific EOI */
97 raw_spin_unlock_irqrestore(&i8259_lock
, flags
);
100 static void i8259_set_irq_mask(int irq_nr
)
102 outb(cached_A1
,0xA1);
103 outb(cached_21
,0x21);
106 static void i8259_mask_irq(struct irq_data
*d
)
110 pr_debug("i8259_mask_irq(%d)\n", d
->irq
);
112 raw_spin_lock_irqsave(&i8259_lock
, flags
);
114 cached_21
|= 1 << d
->irq
;
116 cached_A1
|= 1 << (d
->irq
-8);
117 i8259_set_irq_mask(d
->irq
);
118 raw_spin_unlock_irqrestore(&i8259_lock
, flags
);
121 static void i8259_unmask_irq(struct irq_data
*d
)
125 pr_debug("i8259_unmask_irq(%d)\n", d
->irq
);
127 raw_spin_lock_irqsave(&i8259_lock
, flags
);
129 cached_21
&= ~(1 << d
->irq
);
131 cached_A1
&= ~(1 << (d
->irq
-8));
132 i8259_set_irq_mask(d
->irq
);
133 raw_spin_unlock_irqrestore(&i8259_lock
, flags
);
136 static struct irq_chip i8259_pic
= {
138 .irq_mask
= i8259_mask_irq
,
139 .irq_disable
= i8259_mask_irq
,
140 .irq_unmask
= i8259_unmask_irq
,
141 .irq_mask_ack
= i8259_mask_and_ack_irq
,
144 static struct resource pic1_iores
= {
145 .name
= "8259 (master)",
148 .flags
= IORESOURCE_BUSY
,
151 static struct resource pic2_iores
= {
152 .name
= "8259 (slave)",
155 .flags
= IORESOURCE_BUSY
,
158 static struct resource pic_edgectrl_iores
= {
159 .name
= "8259 edge control",
162 .flags
= IORESOURCE_BUSY
,
165 static int i8259_host_match(struct irq_domain
*h
, struct device_node
*node
,
166 enum irq_domain_bus_token bus_token
)
168 struct device_node
*of_node
= irq_domain_get_of_node(h
);
169 return of_node
== NULL
|| of_node
== node
;
172 static int i8259_host_map(struct irq_domain
*h
, unsigned int virq
,
175 pr_debug("i8259_host_map(%d, 0x%lx)\n", virq
, hw
);
177 /* We block the internal cascade */
179 irq_set_status_flags(virq
, IRQ_NOREQUEST
);
181 /* We use the level handler only for now, we might want to
182 * be more cautious here but that works for now
184 irq_set_status_flags(virq
, IRQ_LEVEL
);
185 irq_set_chip_and_handler(virq
, &i8259_pic
, handle_level_irq
);
189 static int i8259_host_xlate(struct irq_domain
*h
, struct device_node
*ct
,
190 const u32
*intspec
, unsigned int intsize
,
191 irq_hw_number_t
*out_hwirq
, unsigned int *out_flags
)
193 static unsigned char map_isa_senses
[4] = {
196 IRQ_TYPE_EDGE_FALLING
,
197 IRQ_TYPE_EDGE_RISING
,
200 *out_hwirq
= intspec
[0];
201 if (intsize
> 1 && intspec
[1] < 4)
202 *out_flags
= map_isa_senses
[intspec
[1]];
204 *out_flags
= IRQ_TYPE_NONE
;
209 static const struct irq_domain_ops i8259_host_ops
= {
210 .match
= i8259_host_match
,
211 .map
= i8259_host_map
,
212 .xlate
= i8259_host_xlate
,
215 struct irq_domain
*i8259_get_host(void)
221 * i8259_init - Initialize the legacy controller
222 * @node: device node of the legacy PIC (can be NULL, but then, it will match
223 * all interrupts, so beware)
224 * @intack_addr: PCI interrupt acknowledge (real) address which will return
225 * the active irq from the 8259
227 void i8259_init(struct device_node
*node
, unsigned long intack_addr
)
231 /* initialize the controller */
232 raw_spin_lock_irqsave(&i8259_lock
, flags
);
238 /* init master interrupt controller */
239 outb(0x11, 0x20); /* Start init sequence */
240 outb(0x00, 0x21); /* Vector base */
241 outb(0x04, 0x21); /* edge triggered, Cascade (slave) on IRQ2 */
242 outb(0x01, 0x21); /* Select 8086 mode */
244 /* init slave interrupt controller */
245 outb(0x11, 0xA0); /* Start init sequence */
246 outb(0x08, 0xA1); /* Vector base */
247 outb(0x02, 0xA1); /* edge triggered, Cascade (slave) on IRQ2 */
248 outb(0x01, 0xA1); /* Select 8086 mode */
250 /* That thing is slow */
253 /* always read ISR */
257 /* Unmask the internal cascade */
258 cached_21
&= ~(1 << 2);
260 /* Set interrupt masks */
261 outb(cached_A1
, 0xA1);
262 outb(cached_21
, 0x21);
264 raw_spin_unlock_irqrestore(&i8259_lock
, flags
);
266 /* create a legacy host */
267 i8259_host
= irq_domain_add_legacy_isa(node
, &i8259_host_ops
, NULL
);
268 if (i8259_host
== NULL
) {
269 printk(KERN_ERR
"i8259: failed to allocate irq host !\n");
273 /* reserve our resources */
274 /* XXX should we continue doing that ? it seems to cause problems
275 * with further requesting of PCI IO resources for that range...
276 * need to look into it.
278 request_resource(&ioport_resource
, &pic1_iores
);
279 request_resource(&ioport_resource
, &pic2_iores
);
280 request_resource(&ioport_resource
, &pic_edgectrl_iores
);
282 if (intack_addr
!= 0)
283 pci_intack
= ioremap(intack_addr
, 1);
285 printk(KERN_INFO
"i8259 legacy interrupt controller initialized\n");