blob: 9a5c460404dca563a1e5ac32aeeb90ba2cdaafbf [file] [log] [blame]
Pavel Machek21fd5132008-05-21 11:44:02 +02001#include <linux/linkage.h>
Pavel Machek21fd5132008-05-21 11:44:02 +02002#include <linux/errno.h>
3#include <linux/signal.h>
4#include <linux/sched.h>
5#include <linux/ioport.h>
6#include <linux/interrupt.h>
Pavel Machek21fd5132008-05-21 11:44:02 +02007#include <linux/timex.h>
Pavel Machek21fd5132008-05-21 11:44:02 +02008#include <linux/random.h>
9#include <linux/init.h>
10#include <linux/kernel_stat.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010011#include <linux/syscore_ops.h>
Pavel Machek21fd5132008-05-21 11:44:02 +020012#include <linux/bitops.h>
Jaswinder Singh Rajput7bafaf32009-01-04 16:33:52 +053013#include <linux/acpi.h>
14#include <linux/io.h>
15#include <linux/delay.h>
Pavel Machek21fd5132008-05-21 11:44:02 +020016
Arun Sharma600634972011-07-26 16:09:06 -070017#include <linux/atomic.h>
Pavel Machek21fd5132008-05-21 11:44:02 +020018#include <asm/timer.h>
Pavel Machek21fd5132008-05-21 11:44:02 +020019#include <asm/hw_irq.h>
Pavel Machek21fd5132008-05-21 11:44:02 +020020#include <asm/pgtable.h>
Pavel Machek21fd5132008-05-21 11:44:02 +020021#include <asm/desc.h>
22#include <asm/apic.h>
Pavel Machek21fd5132008-05-21 11:44:02 +020023#include <asm/i8259.h>
24
25/*
26 * This is the 'legacy' 8259A Programmable Interrupt Controller,
27 * present in the majority of PC/AT boxes.
28 * plus some generic x86 specific things if generic specifics makes
29 * any sense at all.
30 */
Thomas Gleixner4305df92010-09-28 15:01:33 +020031static void init_8259A(int auto_eoi);
Pavel Machek21fd5132008-05-21 11:44:02 +020032
33static int i8259A_auto_eoi;
Thomas Gleixner5619c282009-07-25 18:35:11 +020034DEFINE_RAW_SPINLOCK(i8259A_lock);
Pavel Machek21fd5132008-05-21 11:44:02 +020035
36/*
37 * 8259A PIC functions to handle ISA devices:
38 */
39
40/*
41 * This contains the irq mask for both 8259A irq controllers,
42 */
43unsigned int cached_irq_mask = 0xffff;
44
45/*
46 * Not all IRQs can be routed through the IO-APIC, eg. on certain (older)
47 * boards the timer interrupt is not really connected to any IO-APIC pin,
48 * it's fed to the master 8259A's IR0 line only.
49 *
50 * Any '1' bit in this mask means the IRQ is routed through the IO-APIC.
51 * this 'mixed mode' IRQ handling costs nothing because it's only used
52 * at IRQ setup time.
53 */
54unsigned long io_apic_irqs;
55
Thomas Gleixner4305df92010-09-28 15:01:33 +020056static void mask_8259A_irq(unsigned int irq)
Pavel Machek21fd5132008-05-21 11:44:02 +020057{
58 unsigned int mask = 1 << irq;
59 unsigned long flags;
60
Thomas Gleixner5619c282009-07-25 18:35:11 +020061 raw_spin_lock_irqsave(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +020062 cached_irq_mask |= mask;
63 if (irq & 8)
64 outb(cached_slave_mask, PIC_SLAVE_IMR);
65 else
66 outb(cached_master_mask, PIC_MASTER_IMR);
Thomas Gleixner5619c282009-07-25 18:35:11 +020067 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +020068}
69
Thomas Gleixner4305df92010-09-28 15:01:33 +020070static void disable_8259A_irq(struct irq_data *data)
71{
72 mask_8259A_irq(data->irq);
73}
74
75static void unmask_8259A_irq(unsigned int irq)
Pavel Machek21fd5132008-05-21 11:44:02 +020076{
77 unsigned int mask = ~(1 << irq);
78 unsigned long flags;
79
Thomas Gleixner5619c282009-07-25 18:35:11 +020080 raw_spin_lock_irqsave(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +020081 cached_irq_mask &= mask;
82 if (irq & 8)
83 outb(cached_slave_mask, PIC_SLAVE_IMR);
84 else
85 outb(cached_master_mask, PIC_MASTER_IMR);
Thomas Gleixner5619c282009-07-25 18:35:11 +020086 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +020087}
88
Thomas Gleixner4305df92010-09-28 15:01:33 +020089static void enable_8259A_irq(struct irq_data *data)
90{
91 unmask_8259A_irq(data->irq);
92}
93
Jacob Panb81bb372009-11-09 11:27:04 -080094static int i8259A_irq_pending(unsigned int irq)
Pavel Machek21fd5132008-05-21 11:44:02 +020095{
96 unsigned int mask = 1<<irq;
97 unsigned long flags;
98 int ret;
99
Thomas Gleixner5619c282009-07-25 18:35:11 +0200100 raw_spin_lock_irqsave(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +0200101 if (irq < 8)
102 ret = inb(PIC_MASTER_CMD) & mask;
103 else
104 ret = inb(PIC_SLAVE_CMD) & (mask >> 8);
Thomas Gleixner5619c282009-07-25 18:35:11 +0200105 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +0200106
107 return ret;
108}
109
Jacob Panb81bb372009-11-09 11:27:04 -0800110static void make_8259A_irq(unsigned int irq)
Pavel Machek21fd5132008-05-21 11:44:02 +0200111{
112 disable_irq_nosync(irq);
113 io_apic_irqs &= ~(1<<irq);
Thomas Gleixner2c778652011-03-12 12:20:43 +0100114 irq_set_chip_and_handler_name(irq, &i8259A_chip, handle_level_irq,
Thomas Gleixner4305df92010-09-28 15:01:33 +0200115 i8259A_chip.name);
Pavel Machek21fd5132008-05-21 11:44:02 +0200116 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) {
Pavel Machek680afbf2008-05-21 11:57:52 +0200131 outb(0x0B, PIC_MASTER_CMD); /* ISR register */
Pavel Machek21fd5132008-05-21 11:44:02 +0200132 value = inb(PIC_MASTER_CMD) & irqmask;
Pavel Machek680afbf2008-05-21 11:57:52 +0200133 outb(0x0A, PIC_MASTER_CMD); /* back to the IRR register */
Pavel Machek21fd5132008-05-21 11:44:02 +0200134 return value;
135 }
Pavel Machek680afbf2008-05-21 11:57:52 +0200136 outb(0x0B, PIC_SLAVE_CMD); /* ISR register */
Pavel Machek21fd5132008-05-21 11:44:02 +0200137 value = inb(PIC_SLAVE_CMD) & (irqmask >> 8);
Pavel Machek680afbf2008-05-21 11:57:52 +0200138 outb(0x0A, PIC_SLAVE_CMD); /* back to the IRR register */
Pavel Machek21fd5132008-05-21 11:44:02 +0200139 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 */
Thomas Gleixner4305df92010-09-28 15:01:33 +0200148static void mask_and_ack_8259A(struct irq_data *data)
Pavel Machek21fd5132008-05-21 11:44:02 +0200149{
Thomas Gleixner4305df92010-09-28 15:01:33 +0200150 unsigned int irq = data->irq;
Pavel Machek21fd5132008-05-21 11:44:02 +0200151 unsigned int irqmask = 1 << irq;
152 unsigned long flags;
153
Thomas Gleixner5619c282009-07-25 18:35:11 +0200154 raw_spin_lock_irqsave(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +0200155 /*
156 * Lightweight spurious IRQ detection. We do not want
157 * to overdo spurious IRQ handling - it's usually a sign
158 * of hardware problems, so we only do the checks we can
159 * do without slowing down good hardware unnecessarily.
160 *
161 * Note that IRQ7 and IRQ15 (the two spurious IRQs
162 * usually resulting from the 8259A-1|2 PICs) occur
163 * even if the IRQ is masked in the 8259A. Thus we
164 * can check spurious 8259A IRQs without doing the
165 * quite slow i8259A_irq_real() call for every IRQ.
166 * This does not cover 100% of spurious interrupts,
167 * but should be enough to warn the user that there
168 * is something bad going on ...
169 */
170 if (cached_irq_mask & irqmask)
171 goto spurious_8259A_irq;
172 cached_irq_mask |= irqmask;
173
174handle_real_irq:
175 if (irq & 8) {
176 inb(PIC_SLAVE_IMR); /* DUMMY - (do we need this?) */
177 outb(cached_slave_mask, PIC_SLAVE_IMR);
Pavel Machek21fd5132008-05-21 11:44:02 +0200178 /* 'Specific EOI' to slave */
Pavel Machek3e8631d2008-05-21 11:52:52 +0200179 outb(0x60+(irq&7), PIC_SLAVE_CMD);
Pavel Machek21fd5132008-05-21 11:44:02 +0200180 /* 'Specific EOI' to master-IRQ2 */
Pavel Machek3e8631d2008-05-21 11:52:52 +0200181 outb(0x60+PIC_CASCADE_IR, PIC_MASTER_CMD);
Pavel Machek21fd5132008-05-21 11:44:02 +0200182 } else {
183 inb(PIC_MASTER_IMR); /* DUMMY - (do we need this?) */
184 outb(cached_master_mask, PIC_MASTER_IMR);
Pavel Machek3e8631d2008-05-21 11:52:52 +0200185 outb(0x60+irq, PIC_MASTER_CMD); /* 'Specific EOI to master */
Pavel Machek21fd5132008-05-21 11:44:02 +0200186 }
Thomas Gleixner5619c282009-07-25 18:35:11 +0200187 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +0200188 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 {
202 static int spurious_irq_mask;
203 /*
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)) {
Pavel Machek21fd5132008-05-21 11:44:02 +0200208 printk(KERN_DEBUG
209 "spurious 8259A interrupt: IRQ%d.\n", irq);
Pavel Machek21fd5132008-05-21 11:44:02 +0200210 spurious_irq_mask |= irqmask;
211 }
212 atomic_inc(&irq_err_count);
213 /*
214 * Theoretically we do not have to handle this IRQ,
215 * but in Linux this does not cause problems and is
216 * simpler for us.
217 */
218 goto handle_real_irq;
219 }
220}
221
Thomas Gleixner4305df92010-09-28 15:01:33 +0200222struct irq_chip i8259A_chip = {
223 .name = "XT-PIC",
224 .irq_mask = disable_8259A_irq,
225 .irq_disable = disable_8259A_irq,
226 .irq_unmask = enable_8259A_irq,
227 .irq_mask_ack = mask_and_ack_8259A,
228};
229
Pavel Machek21fd5132008-05-21 11:44:02 +0200230static char irq_trigger[2];
231/**
232 * ELCR registers (0x4d0, 0x4d1) control edge/level of IRQ
233 */
234static void restore_ELCR(char *trigger)
235{
236 outb(trigger[0], 0x4d0);
237 outb(trigger[1], 0x4d1);
238}
239
240static void save_ELCR(char *trigger)
241{
242 /* IRQ 0,1,2,8,13 are marked as reserved */
243 trigger[0] = inb(0x4d0) & 0xF8;
244 trigger[1] = inb(0x4d1) & 0xDE;
245}
246
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100247static void i8259A_resume(void)
Pavel Machek21fd5132008-05-21 11:44:02 +0200248{
249 init_8259A(i8259A_auto_eoi);
250 restore_ELCR(irq_trigger);
Pavel Machek21fd5132008-05-21 11:44:02 +0200251}
252
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100253static int i8259A_suspend(void)
Pavel Machek21fd5132008-05-21 11:44:02 +0200254{
255 save_ELCR(irq_trigger);
256 return 0;
257}
258
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100259static void i8259A_shutdown(void)
Pavel Machek21fd5132008-05-21 11:44:02 +0200260{
261 /* Put the i8259A into a quiescent state that
262 * the kernel initialization code can get it
263 * out of.
264 */
265 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
Yuanhan Liud3a80092012-08-06 22:13:00 +0800266 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
Pavel Machek21fd5132008-05-21 11:44:02 +0200267}
268
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100269static struct syscore_ops i8259_syscore_ops = {
Pavel Machek21fd5132008-05-21 11:44:02 +0200270 .suspend = i8259A_suspend,
271 .resume = i8259A_resume,
272 .shutdown = i8259A_shutdown,
273};
274
Jacob Panb81bb372009-11-09 11:27:04 -0800275static void mask_8259A(void)
Suresh Siddhad94d93ca2008-07-10 11:16:46 -0700276{
277 unsigned long flags;
278
Thomas Gleixner5619c282009-07-25 18:35:11 +0200279 raw_spin_lock_irqsave(&i8259A_lock, flags);
Suresh Siddhad94d93ca2008-07-10 11:16:46 -0700280
281 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
282 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
283
Thomas Gleixner5619c282009-07-25 18:35:11 +0200284 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Suresh Siddhad94d93ca2008-07-10 11:16:46 -0700285}
286
Jacob Panb81bb372009-11-09 11:27:04 -0800287static void unmask_8259A(void)
Suresh Siddhad94d93ca2008-07-10 11:16:46 -0700288{
289 unsigned long flags;
290
Thomas Gleixner5619c282009-07-25 18:35:11 +0200291 raw_spin_lock_irqsave(&i8259A_lock, flags);
Suresh Siddhad94d93ca2008-07-10 11:16:46 -0700292
293 outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
294 outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
295
Thomas Gleixner5619c282009-07-25 18:35:11 +0200296 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Suresh Siddhad94d93ca2008-07-10 11:16:46 -0700297}
298
Jacob Panb81bb372009-11-09 11:27:04 -0800299static void init_8259A(int auto_eoi)
Pavel Machek21fd5132008-05-21 11:44:02 +0200300{
301 unsigned long flags;
302
303 i8259A_auto_eoi = auto_eoi;
304
Thomas Gleixner5619c282009-07-25 18:35:11 +0200305 raw_spin_lock_irqsave(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +0200306
307 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
308 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
309
310 /*
311 * outb_pic - this has to work on a wide range of PC hardware.
312 */
313 outb_pic(0x11, PIC_MASTER_CMD); /* ICW1: select 8259A-1 init */
Pavel Machekc46e62f2008-05-28 12:42:57 +0200314
315 /* ICW2: 8259A-1 IR0-7 mapped to 0x30-0x37 on x86-64,
Jaswinder Singh Rajput7bafaf32009-01-04 16:33:52 +0530316 to 0x20-0x27 on i386 */
Pavel Machek21fd5132008-05-21 11:44:02 +0200317 outb_pic(IRQ0_VECTOR, PIC_MASTER_IMR);
Pavel Machekc46e62f2008-05-28 12:42:57 +0200318
Pavel Machek21fd5132008-05-21 11:44:02 +0200319 /* 8259A-1 (the master) has a slave on IR2 */
Pavel Machekc46e62f2008-05-28 12:42:57 +0200320 outb_pic(1U << PIC_CASCADE_IR, PIC_MASTER_IMR);
321
Pavel Machek21fd5132008-05-21 11:44:02 +0200322 if (auto_eoi) /* master does Auto EOI */
323 outb_pic(MASTER_ICW4_DEFAULT | PIC_ICW4_AEOI, PIC_MASTER_IMR);
324 else /* master expects normal EOI */
325 outb_pic(MASTER_ICW4_DEFAULT, PIC_MASTER_IMR);
326
327 outb_pic(0x11, PIC_SLAVE_CMD); /* ICW1: select 8259A-2 init */
Pavel Machekc46e62f2008-05-28 12:42:57 +0200328
329 /* ICW2: 8259A-2 IR0-7 mapped to IRQ8_VECTOR */
Pavel Machek21fd5132008-05-21 11:44:02 +0200330 outb_pic(IRQ8_VECTOR, PIC_SLAVE_IMR);
331 /* 8259A-2 is a slave on master's IR2 */
332 outb_pic(PIC_CASCADE_IR, PIC_SLAVE_IMR);
333 /* (slave's support for AEOI in flat mode is to be investigated) */
334 outb_pic(SLAVE_ICW4_DEFAULT, PIC_SLAVE_IMR);
335
Pavel Machek21fd5132008-05-21 11:44:02 +0200336 if (auto_eoi)
337 /*
338 * In AEOI mode we just have to mask the interrupt
339 * when acking.
340 */
Thomas Gleixner4305df92010-09-28 15:01:33 +0200341 i8259A_chip.irq_mask_ack = disable_8259A_irq;
Pavel Machek21fd5132008-05-21 11:44:02 +0200342 else
Thomas Gleixner4305df92010-09-28 15:01:33 +0200343 i8259A_chip.irq_mask_ack = mask_and_ack_8259A;
Pavel Machek21fd5132008-05-21 11:44:02 +0200344
345 udelay(100); /* wait for 8259A to initialize */
346
347 outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
348 outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
349
Thomas Gleixner5619c282009-07-25 18:35:11 +0200350 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
Pavel Machek21fd5132008-05-21 11:44:02 +0200351}
Jacob Panb81bb372009-11-09 11:27:04 -0800352
Jacob Panef354862009-11-09 11:24:14 -0800353/*
354 * make i8259 a driver so that we can select pic functions at run time. the goal
355 * is to make x86 binary compatible among pc compatible and non-pc compatible
356 * platforms, such as x86 MID.
357 */
358
Jacob Pan28a3c932010-02-23 02:03:31 -0800359static void legacy_pic_noop(void) { };
360static void legacy_pic_uint_noop(unsigned int unused) { };
361static void legacy_pic_int_noop(int unused) { };
Jacob Panef354862009-11-09 11:24:14 -0800362static int legacy_pic_irq_pending_noop(unsigned int irq)
363{
364 return 0;
365}
366
367struct legacy_pic null_legacy_pic = {
368 .nr_legacy_irqs = 0,
Thomas Gleixner4305df92010-09-28 15:01:33 +0200369 .chip = &dummy_irq_chip,
370 .mask = legacy_pic_uint_noop,
371 .unmask = legacy_pic_uint_noop,
Jacob Panef354862009-11-09 11:24:14 -0800372 .mask_all = legacy_pic_noop,
373 .restore_mask = legacy_pic_noop,
374 .init = legacy_pic_int_noop,
375 .irq_pending = legacy_pic_irq_pending_noop,
376 .make_irq = legacy_pic_uint_noop,
377};
378
379struct legacy_pic default_legacy_pic = {
380 .nr_legacy_irqs = NR_IRQS_LEGACY,
381 .chip = &i8259A_chip,
Thomas Gleixner4305df92010-09-28 15:01:33 +0200382 .mask = mask_8259A_irq,
383 .unmask = unmask_8259A_irq,
384 .mask_all = mask_8259A,
Jacob Panef354862009-11-09 11:24:14 -0800385 .restore_mask = unmask_8259A,
386 .init = init_8259A,
387 .irq_pending = i8259A_irq_pending,
388 .make_irq = make_8259A_irq,
389};
390
391struct legacy_pic *legacy_pic = &default_legacy_pic;
Adam Lackorzynski087b2552010-07-20 15:18:19 -0700392
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100393static int __init i8259A_init_ops(void)
Adam Lackorzynski087b2552010-07-20 15:18:19 -0700394{
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100395 if (legacy_pic == &default_legacy_pic)
396 register_syscore_ops(&i8259_syscore_ops);
Adam Lackorzynski087b2552010-07-20 15:18:19 -0700397
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100398 return 0;
Adam Lackorzynski087b2552010-07-20 15:18:19 -0700399}
400
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +0100401device_initcall(i8259A_init_ops);