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.
9 #include <linux/init.h>
10 #include <linux/ioport.h>
11 #include <linux/interrupt.h>
13 #include <asm/i8259.h>
15 static volatile void __iomem
*pci_intack
; /* RO, gives us the irq vector */
17 static unsigned char cached_8259
[2] = { 0xff, 0xff };
18 #define cached_A1 (cached_8259[0])
19 #define cached_21 (cached_8259[1])
21 static DEFINE_SPINLOCK(i8259_lock
);
23 static int i8259_pic_irq_offset
;
26 * Acknowledge the IRQ using either the PCI host bridge's interrupt
27 * acknowledge feature or poll. How i8259_init() is called determines
28 * which is called. It should be noted that polling is broken on some
29 * IBM and Motorola PReP boxes so we must use the int-ack feature on them.
35 spin_lock(&i8259_lock
);
37 /* Either int-ack or poll for the IRQ */
39 irq
= readb(pci_intack
);
41 /* Perform an interrupt acknowledge cycle on controller 1. */
42 outb(0x0C, 0x20); /* prepare for poll */
46 * Interrupt is cascaded so perform interrupt
47 * acknowledge on controller 2.
49 outb(0x0C, 0xA0); /* prepare for poll */
50 irq
= (inb(0xA0) & 7) + 8;
56 * This may be a spurious interrupt.
58 * Read the interrupt status register (ISR). If the most
59 * significant bit is not set then there is no valid
63 outb(0x0B, 0x20); /* ISR register */
68 spin_unlock(&i8259_lock
);
69 return irq
+ i8259_pic_irq_offset
;
72 static void i8259_mask_and_ack_irq(unsigned int irq_nr
)
76 spin_lock_irqsave(&i8259_lock
, flags
);
77 irq_nr
-= i8259_pic_irq_offset
;
79 cached_A1
|= 1 << (irq_nr
-8);
80 inb(0xA1); /* DUMMY */
81 outb(cached_A1
, 0xA1);
82 outb(0x20, 0xA0); /* Non-specific EOI */
83 outb(0x20, 0x20); /* Non-specific EOI to cascade */
85 cached_21
|= 1 << irq_nr
;
86 inb(0x21); /* DUMMY */
87 outb(cached_21
, 0x21);
88 outb(0x20, 0x20); /* Non-specific EOI */
90 spin_unlock_irqrestore(&i8259_lock
, flags
);
93 static void i8259_set_irq_mask(int irq_nr
)
99 static void i8259_mask_irq(unsigned int irq_nr
)
103 spin_lock_irqsave(&i8259_lock
, flags
);
104 irq_nr
-= i8259_pic_irq_offset
;
106 cached_21
|= 1 << irq_nr
;
108 cached_A1
|= 1 << (irq_nr
-8);
109 i8259_set_irq_mask(irq_nr
);
110 spin_unlock_irqrestore(&i8259_lock
, flags
);
113 static void i8259_unmask_irq(unsigned int irq_nr
)
117 spin_lock_irqsave(&i8259_lock
, flags
);
118 irq_nr
-= i8259_pic_irq_offset
;
120 cached_21
&= ~(1 << irq_nr
);
122 cached_A1
&= ~(1 << (irq_nr
-8));
123 i8259_set_irq_mask(irq_nr
);
124 spin_unlock_irqrestore(&i8259_lock
, flags
);
127 static struct irq_chip i8259_pic
= {
128 .typename
= " i8259 ",
129 .mask
= i8259_mask_irq
,
130 .unmask
= i8259_unmask_irq
,
131 .mask_ack
= i8259_mask_and_ack_irq
,
134 static struct resource pic1_iores
= {
135 .name
= "8259 (master)",
138 .flags
= IORESOURCE_BUSY
,
141 static struct resource pic2_iores
= {
142 .name
= "8259 (slave)",
145 .flags
= IORESOURCE_BUSY
,
148 static struct resource pic_edgectrl_iores
= {
149 .name
= "8259 edge control",
152 .flags
= IORESOURCE_BUSY
,
155 static struct irqaction i8259_irqaction
= {
156 .handler
= no_action
,
157 .flags
= IRQF_DISABLED
,
158 .mask
= CPU_MASK_NONE
,
159 .name
= "82c59 secondary cascade",
164 * intack_addr - PCI interrupt acknowledge (real) address which will return
165 * the active irq from the 8259
167 void __init
i8259_init(unsigned long intack_addr
, int offset
)
172 spin_lock_irqsave(&i8259_lock
, flags
);
173 i8259_pic_irq_offset
= offset
;
175 /* init master interrupt controller */
176 outb(0x11, 0x20); /* Start init sequence */
177 outb(0x00, 0x21); /* Vector base */
178 outb(0x04, 0x21); /* edge tiggered, Cascade (slave) on IRQ2 */
179 outb(0x01, 0x21); /* Select 8086 mode */
181 /* init slave interrupt controller */
182 outb(0x11, 0xA0); /* Start init sequence */
183 outb(0x08, 0xA1); /* Vector base */
184 outb(0x02, 0xA1); /* edge triggered, Cascade (slave) on IRQ2 */
185 outb(0x01, 0xA1); /* Select 8086 mode */
187 /* always read ISR */
191 /* Mask all interrupts */
192 outb(cached_A1
, 0xA1);
193 outb(cached_21
, 0x21);
195 spin_unlock_irqrestore(&i8259_lock
, flags
);
197 for (i
= 0; i
< NUM_ISA_INTERRUPTS
; ++i
) {
198 set_irq_chip_and_handler(offset
+ i
, &i8259_pic
,
200 irq_desc
[offset
+ i
].status
|= IRQ_LEVEL
;
203 /* reserve our resources */
204 setup_irq(offset
+ 2, &i8259_irqaction
);
205 request_resource(&ioport_resource
, &pic1_iores
);
206 request_resource(&ioport_resource
, &pic2_iores
);
207 request_resource(&ioport_resource
, &pic_edgectrl_iores
);
209 if (intack_addr
!= 0)
210 pci_intack
= ioremap(intack_addr
, 1);