blob: c58176cc796baa0c03d6d86597ab5252478f4e65 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Code to handle x86 style IRQs plus some generic interrupt stuff.
7 *
8 * Copyright (C) 1992 Linus Torvalds
9 * Copyright (C) 1994 - 2000 Ralf Baechle
10 */
11#include <linux/delay.h>
12#include <linux/init.h>
13#include <linux/ioport.h>
14#include <linux/interrupt.h>
15#include <linux/kernel.h>
16#include <linux/spinlock.h>
17#include <linux/sysdev.h>
David Howellsca4d3e672010-10-07 14:08:54 +010018#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/i8259.h>
21#include <asm/io.h>
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * This is the 'legacy' 8259A Programmable Interrupt Controller,
25 * present in the majority of PC/AT boxes.
26 * plus some generic x86 specific things if generic specifics makes
27 * any sense at all.
28 * this file should become arch/i386/kernel/irq.c when the old irq.c
29 * moves to arch independent land
30 */
31
Atsushi Nemotoa0be2f72007-02-20 20:08:45 +090032static int i8259A_auto_eoi = -1;
Ralf Baechle89650872010-02-27 12:53:38 +010033DEFINE_RAW_SPINLOCK(i8259A_lock);
Yoichi Yuasad80c1c02007-09-13 11:04:04 +090034static void disable_8259A_irq(unsigned int irq);
35static void enable_8259A_irq(unsigned int irq);
36static void mask_and_ack_8259A(unsigned int irq);
37static void init_8259A(int auto_eoi);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Atsushi Nemoto2cafe972006-12-07 02:04:17 +090039static struct irq_chip i8259A_chip = {
40 .name = "XT-PIC",
41 .mask = disable_8259A_irq,
Kyungmin Parkd77a2832007-08-10 14:00:21 -070042 .disable = disable_8259A_irq,
Atsushi Nemoto2cafe972006-12-07 02:04:17 +090043 .unmask = enable_8259A_irq,
44 .mask_ack = mask_and_ack_8259A,
Kevin D. Kissellf571eff2007-08-03 19:38:03 +020045#ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
46 .set_affinity = plat_set_irq_affinity,
47#endif /* CONFIG_MIPS_MT_SMTC_IRQAFF */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50/*
51 * 8259A PIC functions to handle ISA devices:
52 */
53
54/*
55 * This contains the irq mask for both 8259A irq controllers,
56 */
57static unsigned int cached_irq_mask = 0xffff;
58
Atsushi Nemoto2cafe972006-12-07 02:04:17 +090059#define cached_master_mask (cached_irq_mask)
60#define cached_slave_mask (cached_irq_mask >> 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Yoichi Yuasad80c1c02007-09-13 11:04:04 +090062static void disable_8259A_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Atsushi Nemoto2fa79372007-01-14 23:41:42 +090064 unsigned int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 unsigned long flags;
66
Atsushi Nemoto2fa79372007-01-14 23:41:42 +090067 irq -= I8259A_IRQ_BASE;
68 mask = 1 << irq;
Ralf Baechle89650872010-02-27 12:53:38 +010069 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 cached_irq_mask |= mask;
71 if (irq & 8)
Atsushi Nemoto2cafe972006-12-07 02:04:17 +090072 outb(cached_slave_mask, PIC_SLAVE_IMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 else
Atsushi Nemoto2cafe972006-12-07 02:04:17 +090074 outb(cached_master_mask, PIC_MASTER_IMR);
Ralf Baechle89650872010-02-27 12:53:38 +010075 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Yoichi Yuasad80c1c02007-09-13 11:04:04 +090078static void enable_8259A_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Atsushi Nemoto2fa79372007-01-14 23:41:42 +090080 unsigned int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned long flags;
82
Atsushi Nemoto2fa79372007-01-14 23:41:42 +090083 irq -= I8259A_IRQ_BASE;
84 mask = ~(1 << irq);
Ralf Baechle89650872010-02-27 12:53:38 +010085 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 cached_irq_mask &= mask;
87 if (irq & 8)
Atsushi Nemoto2cafe972006-12-07 02:04:17 +090088 outb(cached_slave_mask, PIC_SLAVE_IMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 else
Atsushi Nemoto2cafe972006-12-07 02:04:17 +090090 outb(cached_master_mask, PIC_MASTER_IMR);
Ralf Baechle89650872010-02-27 12:53:38 +010091 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94int i8259A_irq_pending(unsigned int irq)
95{
Atsushi Nemoto2fa79372007-01-14 23:41:42 +090096 unsigned int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 unsigned long flags;
98 int ret;
99
Atsushi Nemoto2fa79372007-01-14 23:41:42 +0900100 irq -= I8259A_IRQ_BASE;
101 mask = 1 << irq;
Ralf Baechle89650872010-02-27 12:53:38 +0100102 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (irq < 8)
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900104 ret = inb(PIC_MASTER_CMD) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 else
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900106 ret = inb(PIC_SLAVE_CMD) & (mask >> 8);
Ralf Baechle89650872010-02-27 12:53:38 +0100107 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 return ret;
110}
111
112void make_8259A_irq(unsigned int irq)
113{
114 disable_irq_nosync(irq);
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900115 set_irq_chip_and_handler(irq, &i8259A_chip, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 enable_irq(irq);
117}
118
119/*
120 * This function assumes to be called rarely. Switching between
121 * 8259A registers is slow.
122 * This has to be protected by the irq controller spinlock
123 * before being called.
124 */
125static inline int i8259A_irq_real(unsigned int irq)
126{
127 int value;
128 int irqmask = 1 << irq;
129
130 if (irq < 8) {
Ralf Baechle21a151d2007-10-11 23:46:15 +0100131 outb(0x0B, PIC_MASTER_CMD); /* ISR register */
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900132 value = inb(PIC_MASTER_CMD) & irqmask;
Ralf Baechle21a151d2007-10-11 23:46:15 +0100133 outb(0x0A, PIC_MASTER_CMD); /* back to the IRR register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return value;
135 }
Ralf Baechle21a151d2007-10-11 23:46:15 +0100136 outb(0x0B, PIC_SLAVE_CMD); /* ISR register */
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900137 value = inb(PIC_SLAVE_CMD) & (irqmask >> 8);
Ralf Baechle21a151d2007-10-11 23:46:15 +0100138 outb(0x0A, PIC_SLAVE_CMD); /* back to the IRR register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return value;
140}
141
142/*
143 * Careful! The 8259A is a fragile beast, it pretty
144 * much _has_ to be done exactly like this (mask it
145 * first, _then_ send the EOI, and the order of EOI
146 * to the two 8259s is important!
147 */
Yoichi Yuasad80c1c02007-09-13 11:04:04 +0900148static void mask_and_ack_8259A(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Atsushi Nemoto2fa79372007-01-14 23:41:42 +0900150 unsigned int irqmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 unsigned long flags;
152
Atsushi Nemoto2fa79372007-01-14 23:41:42 +0900153 irq -= I8259A_IRQ_BASE;
154 irqmask = 1 << irq;
Ralf Baechle89650872010-02-27 12:53:38 +0100155 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /*
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900157 * Lightweight spurious IRQ detection. We do not want
158 * to overdo spurious IRQ handling - it's usually a sign
159 * of hardware problems, so we only do the checks we can
160 * do without slowing down good hardware unnecessarily.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900162 * Note that IRQ7 and IRQ15 (the two spurious IRQs
163 * usually resulting from the 8259A-1|2 PICs) occur
164 * even if the IRQ is masked in the 8259A. Thus we
165 * can check spurious 8259A IRQs without doing the
166 * quite slow i8259A_irq_real() call for every IRQ.
167 * This does not cover 100% of spurious interrupts,
168 * but should be enough to warn the user that there
169 * is something bad going on ...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
171 if (cached_irq_mask & irqmask)
172 goto spurious_8259A_irq;
173 cached_irq_mask |= irqmask;
174
175handle_real_irq:
176 if (irq & 8) {
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900177 inb(PIC_SLAVE_IMR); /* DUMMY - (do we need this?) */
178 outb(cached_slave_mask, PIC_SLAVE_IMR);
Ralf Baechle21a151d2007-10-11 23:46:15 +0100179 outb(0x60+(irq&7), PIC_SLAVE_CMD);/* 'Specific EOI' to slave */
180 outb(0x60+PIC_CASCADE_IR, PIC_MASTER_CMD); /* 'Specific EOI' to master-IRQ2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 } else {
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900182 inb(PIC_MASTER_IMR); /* DUMMY - (do we need this?) */
183 outb(cached_master_mask, PIC_MASTER_IMR);
Ralf Baechle21a151d2007-10-11 23:46:15 +0100184 outb(0x60+irq, PIC_MASTER_CMD); /* 'Specific EOI to master */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Ralf Baechle1146fe32007-09-21 17:13:55 +0100186 smtc_im_ack_irq(irq);
Ralf Baechle89650872010-02-27 12:53:38 +0100187 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return;
189
190spurious_8259A_irq:
191 /*
192 * this is the slow path - should happen rarely.
193 */
194 if (i8259A_irq_real(irq))
195 /*
196 * oops, the IRQ _is_ in service according to the
197 * 8259A - not spurious, go handle it.
198 */
199 goto handle_real_irq;
200
201 {
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900202 static int spurious_irq_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /*
204 * At this point we can be sure the IRQ is spurious,
205 * lets ACK and report it. [once per IRQ]
206 */
207 if (!(spurious_irq_mask & irqmask)) {
208 printk(KERN_DEBUG "spurious 8259A interrupt: IRQ%d.\n", irq);
209 spurious_irq_mask |= irqmask;
210 }
211 atomic_inc(&irq_err_count);
212 /*
213 * Theoretically we do not have to handle this IRQ,
214 * but in Linux this does not cause problems and is
215 * simpler for us.
216 */
217 goto handle_real_irq;
218 }
219}
220
221static int i8259A_resume(struct sys_device *dev)
222{
Atsushi Nemotoa0be2f72007-02-20 20:08:45 +0900223 if (i8259A_auto_eoi >= 0)
224 init_8259A(i8259A_auto_eoi);
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900225 return 0;
226}
227
228static int i8259A_shutdown(struct sys_device *dev)
229{
230 /* Put the i8259A into a quiescent state that
231 * the kernel initialization code can get it
232 * out of.
233 */
Atsushi Nemotoa0be2f72007-02-20 20:08:45 +0900234 if (i8259A_auto_eoi >= 0) {
235 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
236 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-1 */
237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
239}
240
241static struct sysdev_class i8259_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100242 .name = "i8259",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .resume = i8259A_resume,
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900244 .shutdown = i8259A_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245};
246
247static struct sys_device device_i8259A = {
248 .id = 0,
249 .cls = &i8259_sysdev_class,
250};
251
252static int __init i8259A_init_sysfs(void)
253{
254 int error = sysdev_class_register(&i8259_sysdev_class);
255 if (!error)
256 error = sysdev_register(&device_i8259A);
257 return error;
258}
259
260device_initcall(i8259A_init_sysfs);
261
Yoichi Yuasad80c1c02007-09-13 11:04:04 +0900262static void init_8259A(int auto_eoi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 unsigned long flags;
265
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900266 i8259A_auto_eoi = auto_eoi;
267
Ralf Baechle89650872010-02-27 12:53:38 +0100268 raw_spin_lock_irqsave(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900270 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
271 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /*
274 * outb_p - this has to work on a wide range of PC hardware.
275 */
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900276 outb_p(0x11, PIC_MASTER_CMD); /* ICW1: select 8259A-1 init */
277 outb_p(I8259A_IRQ_BASE + 0, PIC_MASTER_IMR); /* ICW2: 8259A-1 IR0 mapped to I8259A_IRQ_BASE + 0x00 */
278 outb_p(1U << PIC_CASCADE_IR, PIC_MASTER_IMR); /* 8259A-1 (the master) has a slave on IR2 */
279 if (auto_eoi) /* master does Auto EOI */
280 outb_p(MASTER_ICW4_DEFAULT | PIC_ICW4_AEOI, PIC_MASTER_IMR);
281 else /* master expects normal EOI */
282 outb_p(MASTER_ICW4_DEFAULT, PIC_MASTER_IMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900284 outb_p(0x11, PIC_SLAVE_CMD); /* ICW1: select 8259A-2 init */
285 outb_p(I8259A_IRQ_BASE + 8, PIC_SLAVE_IMR); /* ICW2: 8259A-2 IR0 mapped to I8259A_IRQ_BASE + 0x08 */
286 outb_p(PIC_CASCADE_IR, PIC_SLAVE_IMR); /* 8259A-2 is a slave on master's IR2 */
287 outb_p(SLAVE_ICW4_DEFAULT, PIC_SLAVE_IMR); /* (slave's support for AEOI in flat mode is to be investigated) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (auto_eoi)
289 /*
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900290 * In AEOI mode we just have to mask the interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * when acking.
292 */
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900293 i8259A_chip.mask_ack = disable_8259A_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 else
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900295 i8259A_chip.mask_ack = mask_and_ack_8259A;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 udelay(100); /* wait for 8259A to initialize */
298
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900299 outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
300 outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Ralf Baechle89650872010-02-27 12:53:38 +0100302 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305/*
306 * IRQ2 is cascade interrupt to second interrupt controller
307 */
308static struct irqaction irq2 = {
Thomas Gleixner4e451712007-08-28 09:03:01 +0000309 .handler = no_action,
Thomas Gleixner4e451712007-08-28 09:03:01 +0000310 .name = "cascade",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
313static struct resource pic1_io_resource = {
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900314 .name = "pic1",
315 .start = PIC_MASTER_CMD,
316 .end = PIC_MASTER_IMR,
317 .flags = IORESOURCE_BUSY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318};
319
320static struct resource pic2_io_resource = {
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900321 .name = "pic2",
322 .start = PIC_SLAVE_CMD,
323 .end = PIC_SLAVE_IMR,
324 .flags = IORESOURCE_BUSY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325};
326
327/*
328 * On systems with i8259-style interrupt controllers we assume for
Ralf Baechle28a78792005-08-16 15:46:05 +0000329 * driver compatibility reasons interrupts 0 - 15 to be the i8259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * interrupts even if the hardware uses a different interrupt numbering.
331 */
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100332void __init init_i8259_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 int i;
335
Thomas Bogendoerfer639702b2007-04-08 13:28:44 +0200336 insert_resource(&ioport_resource, &pic1_io_resource);
337 insert_resource(&ioport_resource, &pic2_io_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 init_8259A(0);
340
Ralf Baechle24649c02008-02-08 04:22:02 -0800341 for (i = I8259A_IRQ_BASE; i < I8259A_IRQ_BASE + 16; i++) {
Atsushi Nemoto2cafe972006-12-07 02:04:17 +0900342 set_irq_chip_and_handler(i, &i8259A_chip, handle_level_irq);
Ralf Baechle24649c02008-02-08 04:22:02 -0800343 set_irq_probe(i);
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Atsushi Nemoto2fa79372007-01-14 23:41:42 +0900346 setup_irq(I8259A_IRQ_BASE + PIC_CASCADE_IR, &irq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}