Loading...
1#include <linux/linkage.h>
2#include <linux/errno.h>
3#include <linux/signal.h>
4#include <linux/sched.h>
5#include <linux/ioport.h>
6#include <linux/interrupt.h>
7#include <linux/timex.h>
8#include <linux/random.h>
9#include <linux/init.h>
10#include <linux/kernel_stat.h>
11#include <linux/syscore_ops.h>
12#include <linux/bitops.h>
13#include <linux/acpi.h>
14#include <linux/io.h>
15#include <linux/delay.h>
16
17#include <linux/atomic.h>
18#include <asm/timer.h>
19#include <asm/hw_irq.h>
20#include <asm/pgtable.h>
21#include <asm/desc.h>
22#include <asm/apic.h>
23#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 */
31static void init_8259A(int auto_eoi);
32
33static int i8259A_auto_eoi;
34DEFINE_RAW_SPINLOCK(i8259A_lock);
35
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
56static void mask_8259A_irq(unsigned int irq)
57{
58 unsigned int mask = 1 << irq;
59 unsigned long flags;
60
61 raw_spin_lock_irqsave(&i8259A_lock, flags);
62 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);
67 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
68}
69
70static 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)
76{
77 unsigned int mask = ~(1 << irq);
78 unsigned long flags;
79
80 raw_spin_lock_irqsave(&i8259A_lock, flags);
81 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);
86 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
87}
88
89static void enable_8259A_irq(struct irq_data *data)
90{
91 unmask_8259A_irq(data->irq);
92}
93
94static int i8259A_irq_pending(unsigned int irq)
95{
96 unsigned int mask = 1<<irq;
97 unsigned long flags;
98 int ret;
99
100 raw_spin_lock_irqsave(&i8259A_lock, flags);
101 if (irq < 8)
102 ret = inb(PIC_MASTER_CMD) & mask;
103 else
104 ret = inb(PIC_SLAVE_CMD) & (mask >> 8);
105 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
106
107 return ret;
108}
109
110static void make_8259A_irq(unsigned int irq)
111{
112 disable_irq_nosync(irq);
113 io_apic_irqs &= ~(1<<irq);
114 irq_set_chip_and_handler(irq, &i8259A_chip, handle_level_irq);
115 enable_irq(irq);
116}
117
118/*
119 * This function assumes to be called rarely. Switching between
120 * 8259A registers is slow.
121 * This has to be protected by the irq controller spinlock
122 * before being called.
123 */
124static inline int i8259A_irq_real(unsigned int irq)
125{
126 int value;
127 int irqmask = 1<<irq;
128
129 if (irq < 8) {
130 outb(0x0B, PIC_MASTER_CMD); /* ISR register */
131 value = inb(PIC_MASTER_CMD) & irqmask;
132 outb(0x0A, PIC_MASTER_CMD); /* back to the IRR register */
133 return value;
134 }
135 outb(0x0B, PIC_SLAVE_CMD); /* ISR register */
136 value = inb(PIC_SLAVE_CMD) & (irqmask >> 8);
137 outb(0x0A, PIC_SLAVE_CMD); /* back to the IRR register */
138 return value;
139}
140
141/*
142 * Careful! The 8259A is a fragile beast, it pretty
143 * much _has_ to be done exactly like this (mask it
144 * first, _then_ send the EOI, and the order of EOI
145 * to the two 8259s is important!
146 */
147static void mask_and_ack_8259A(struct irq_data *data)
148{
149 unsigned int irq = data->irq;
150 unsigned int irqmask = 1 << irq;
151 unsigned long flags;
152
153 raw_spin_lock_irqsave(&i8259A_lock, flags);
154 /*
155 * Lightweight spurious IRQ detection. We do not want
156 * to overdo spurious IRQ handling - it's usually a sign
157 * of hardware problems, so we only do the checks we can
158 * do without slowing down good hardware unnecessarily.
159 *
160 * Note that IRQ7 and IRQ15 (the two spurious IRQs
161 * usually resulting from the 8259A-1|2 PICs) occur
162 * even if the IRQ is masked in the 8259A. Thus we
163 * can check spurious 8259A IRQs without doing the
164 * quite slow i8259A_irq_real() call for every IRQ.
165 * This does not cover 100% of spurious interrupts,
166 * but should be enough to warn the user that there
167 * is something bad going on ...
168 */
169 if (cached_irq_mask & irqmask)
170 goto spurious_8259A_irq;
171 cached_irq_mask |= irqmask;
172
173handle_real_irq:
174 if (irq & 8) {
175 inb(PIC_SLAVE_IMR); /* DUMMY - (do we need this?) */
176 outb(cached_slave_mask, PIC_SLAVE_IMR);
177 /* 'Specific EOI' to slave */
178 outb(0x60+(irq&7), PIC_SLAVE_CMD);
179 /* 'Specific EOI' to master-IRQ2 */
180 outb(0x60+PIC_CASCADE_IR, PIC_MASTER_CMD);
181 } else {
182 inb(PIC_MASTER_IMR); /* DUMMY - (do we need this?) */
183 outb(cached_master_mask, PIC_MASTER_IMR);
184 outb(0x60+irq, PIC_MASTER_CMD); /* 'Specific EOI to master */
185 }
186 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
187 return;
188
189spurious_8259A_irq:
190 /*
191 * this is the slow path - should happen rarely.
192 */
193 if (i8259A_irq_real(irq))
194 /*
195 * oops, the IRQ _is_ in service according to the
196 * 8259A - not spurious, go handle it.
197 */
198 goto handle_real_irq;
199
200 {
201 static int spurious_irq_mask;
202 /*
203 * At this point we can be sure the IRQ is spurious,
204 * lets ACK and report it. [once per IRQ]
205 */
206 if (!(spurious_irq_mask & irqmask)) {
207 printk(KERN_DEBUG
208 "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
221struct irq_chip i8259A_chip = {
222 .name = "XT-PIC",
223 .irq_mask = disable_8259A_irq,
224 .irq_disable = disable_8259A_irq,
225 .irq_unmask = enable_8259A_irq,
226 .irq_mask_ack = mask_and_ack_8259A,
227};
228
229static char irq_trigger[2];
230/**
231 * ELCR registers (0x4d0, 0x4d1) control edge/level of IRQ
232 */
233static void restore_ELCR(char *trigger)
234{
235 outb(trigger[0], 0x4d0);
236 outb(trigger[1], 0x4d1);
237}
238
239static void save_ELCR(char *trigger)
240{
241 /* IRQ 0,1,2,8,13 are marked as reserved */
242 trigger[0] = inb(0x4d0) & 0xF8;
243 trigger[1] = inb(0x4d1) & 0xDE;
244}
245
246static void i8259A_resume(void)
247{
248 init_8259A(i8259A_auto_eoi);
249 restore_ELCR(irq_trigger);
250}
251
252static int i8259A_suspend(void)
253{
254 save_ELCR(irq_trigger);
255 return 0;
256}
257
258static void i8259A_shutdown(void)
259{
260 /* Put the i8259A into a quiescent state that
261 * the kernel initialization code can get it
262 * out of.
263 */
264 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
265 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
266}
267
268static struct syscore_ops i8259_syscore_ops = {
269 .suspend = i8259A_suspend,
270 .resume = i8259A_resume,
271 .shutdown = i8259A_shutdown,
272};
273
274static void mask_8259A(void)
275{
276 unsigned long flags;
277
278 raw_spin_lock_irqsave(&i8259A_lock, flags);
279
280 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
281 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
282
283 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
284}
285
286static void unmask_8259A(void)
287{
288 unsigned long flags;
289
290 raw_spin_lock_irqsave(&i8259A_lock, flags);
291
292 outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
293 outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
294
295 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
296}
297
298static int probe_8259A(void)
299{
300 unsigned long flags;
301 unsigned char probe_val = ~(1 << PIC_CASCADE_IR);
302 unsigned char new_val;
303 /*
304 * Check to see if we have a PIC.
305 * Mask all except the cascade and read
306 * back the value we just wrote. If we don't
307 * have a PIC, we will read 0xff as opposed to the
308 * value we wrote.
309 */
310 raw_spin_lock_irqsave(&i8259A_lock, flags);
311
312 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
313 outb(probe_val, PIC_MASTER_IMR);
314 new_val = inb(PIC_MASTER_IMR);
315 if (new_val != probe_val) {
316 printk(KERN_INFO "Using NULL legacy PIC\n");
317 legacy_pic = &null_legacy_pic;
318 }
319
320 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
321 return nr_legacy_irqs();
322}
323
324static void init_8259A(int auto_eoi)
325{
326 unsigned long flags;
327
328 i8259A_auto_eoi = auto_eoi;
329
330 raw_spin_lock_irqsave(&i8259A_lock, flags);
331
332 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
333
334 /*
335 * outb_pic - this has to work on a wide range of PC hardware.
336 */
337 outb_pic(0x11, PIC_MASTER_CMD); /* ICW1: select 8259A-1 init */
338
339 /* ICW2: 8259A-1 IR0-7 mapped to ISA_IRQ_VECTOR(0) */
340 outb_pic(ISA_IRQ_VECTOR(0), PIC_MASTER_IMR);
341
342 /* 8259A-1 (the master) has a slave on IR2 */
343 outb_pic(1U << PIC_CASCADE_IR, PIC_MASTER_IMR);
344
345 if (auto_eoi) /* master does Auto EOI */
346 outb_pic(MASTER_ICW4_DEFAULT | PIC_ICW4_AEOI, PIC_MASTER_IMR);
347 else /* master expects normal EOI */
348 outb_pic(MASTER_ICW4_DEFAULT, PIC_MASTER_IMR);
349
350 outb_pic(0x11, PIC_SLAVE_CMD); /* ICW1: select 8259A-2 init */
351
352 /* ICW2: 8259A-2 IR0-7 mapped to ISA_IRQ_VECTOR(8) */
353 outb_pic(ISA_IRQ_VECTOR(8), PIC_SLAVE_IMR);
354 /* 8259A-2 is a slave on master's IR2 */
355 outb_pic(PIC_CASCADE_IR, PIC_SLAVE_IMR);
356 /* (slave's support for AEOI in flat mode is to be investigated) */
357 outb_pic(SLAVE_ICW4_DEFAULT, PIC_SLAVE_IMR);
358
359 if (auto_eoi)
360 /*
361 * In AEOI mode we just have to mask the interrupt
362 * when acking.
363 */
364 i8259A_chip.irq_mask_ack = disable_8259A_irq;
365 else
366 i8259A_chip.irq_mask_ack = mask_and_ack_8259A;
367
368 udelay(100); /* wait for 8259A to initialize */
369
370 outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
371 outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
372
373 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
374}
375
376/*
377 * make i8259 a driver so that we can select pic functions at run time. the goal
378 * is to make x86 binary compatible among pc compatible and non-pc compatible
379 * platforms, such as x86 MID.
380 */
381
382static void legacy_pic_noop(void) { };
383static void legacy_pic_uint_noop(unsigned int unused) { };
384static void legacy_pic_int_noop(int unused) { };
385static int legacy_pic_irq_pending_noop(unsigned int irq)
386{
387 return 0;
388}
389static int legacy_pic_probe(void)
390{
391 return 0;
392}
393
394struct legacy_pic null_legacy_pic = {
395 .nr_legacy_irqs = 0,
396 .chip = &dummy_irq_chip,
397 .mask = legacy_pic_uint_noop,
398 .unmask = legacy_pic_uint_noop,
399 .mask_all = legacy_pic_noop,
400 .restore_mask = legacy_pic_noop,
401 .init = legacy_pic_int_noop,
402 .probe = legacy_pic_probe,
403 .irq_pending = legacy_pic_irq_pending_noop,
404 .make_irq = legacy_pic_uint_noop,
405};
406
407struct legacy_pic default_legacy_pic = {
408 .nr_legacy_irqs = NR_IRQS_LEGACY,
409 .chip = &i8259A_chip,
410 .mask = mask_8259A_irq,
411 .unmask = unmask_8259A_irq,
412 .mask_all = mask_8259A,
413 .restore_mask = unmask_8259A,
414 .init = init_8259A,
415 .probe = probe_8259A,
416 .irq_pending = i8259A_irq_pending,
417 .make_irq = make_8259A_irq,
418};
419
420struct legacy_pic *legacy_pic = &default_legacy_pic;
421
422static int __init i8259A_init_ops(void)
423{
424 if (legacy_pic == &default_legacy_pic)
425 register_syscore_ops(&i8259_syscore_ops);
426
427 return 0;
428}
429
430device_initcall(i8259A_init_ops);
1// SPDX-License-Identifier: GPL-2.0
2#include <linux/linkage.h>
3#include <linux/errno.h>
4#include <linux/signal.h>
5#include <linux/sched.h>
6#include <linux/ioport.h>
7#include <linux/interrupt.h>
8#include <linux/irq.h>
9#include <linux/timex.h>
10#include <linux/random.h>
11#include <linux/init.h>
12#include <linux/kernel_stat.h>
13#include <linux/syscore_ops.h>
14#include <linux/bitops.h>
15#include <linux/acpi.h>
16#include <linux/io.h>
17#include <linux/delay.h>
18#include <linux/pgtable.h>
19
20#include <linux/atomic.h>
21#include <asm/timer.h>
22#include <asm/hw_irq.h>
23#include <asm/desc.h>
24#include <asm/apic.h>
25#include <asm/i8259.h>
26
27/*
28 * This is the 'legacy' 8259A Programmable Interrupt Controller,
29 * present in the majority of PC/AT boxes.
30 * plus some generic x86 specific things if generic specifics makes
31 * any sense at all.
32 */
33static void init_8259A(int auto_eoi);
34
35static int i8259A_auto_eoi;
36DEFINE_RAW_SPINLOCK(i8259A_lock);
37
38/*
39 * 8259A PIC functions to handle ISA devices:
40 */
41
42/*
43 * This contains the irq mask for both 8259A irq controllers,
44 */
45unsigned int cached_irq_mask = 0xffff;
46
47/*
48 * Not all IRQs can be routed through the IO-APIC, eg. on certain (older)
49 * boards the timer interrupt is not really connected to any IO-APIC pin,
50 * it's fed to the master 8259A's IR0 line only.
51 *
52 * Any '1' bit in this mask means the IRQ is routed through the IO-APIC.
53 * this 'mixed mode' IRQ handling costs nothing because it's only used
54 * at IRQ setup time.
55 */
56unsigned long io_apic_irqs;
57
58static void mask_8259A_irq(unsigned int irq)
59{
60 unsigned int mask = 1 << irq;
61 unsigned long flags;
62
63 raw_spin_lock_irqsave(&i8259A_lock, flags);
64 cached_irq_mask |= mask;
65 if (irq & 8)
66 outb(cached_slave_mask, PIC_SLAVE_IMR);
67 else
68 outb(cached_master_mask, PIC_MASTER_IMR);
69 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
70}
71
72static void disable_8259A_irq(struct irq_data *data)
73{
74 mask_8259A_irq(data->irq);
75}
76
77static void unmask_8259A_irq(unsigned int irq)
78{
79 unsigned int mask = ~(1 << irq);
80 unsigned long flags;
81
82 raw_spin_lock_irqsave(&i8259A_lock, flags);
83 cached_irq_mask &= mask;
84 if (irq & 8)
85 outb(cached_slave_mask, PIC_SLAVE_IMR);
86 else
87 outb(cached_master_mask, PIC_MASTER_IMR);
88 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
89}
90
91static void enable_8259A_irq(struct irq_data *data)
92{
93 unmask_8259A_irq(data->irq);
94}
95
96static int i8259A_irq_pending(unsigned int irq)
97{
98 unsigned int mask = 1<<irq;
99 unsigned long flags;
100 int ret;
101
102 raw_spin_lock_irqsave(&i8259A_lock, flags);
103 if (irq < 8)
104 ret = inb(PIC_MASTER_CMD) & mask;
105 else
106 ret = inb(PIC_SLAVE_CMD) & (mask >> 8);
107 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
108
109 return ret;
110}
111
112static void make_8259A_irq(unsigned int irq)
113{
114 disable_irq_nosync(irq);
115 io_apic_irqs &= ~(1<<irq);
116 irq_set_chip_and_handler(irq, &i8259A_chip, handle_level_irq);
117 irq_set_status_flags(irq, IRQ_LEVEL);
118 enable_irq(irq);
119 lapic_assign_legacy_vector(irq, true);
120}
121
122/*
123 * This function assumes to be called rarely. Switching between
124 * 8259A registers is slow.
125 * This has to be protected by the irq controller spinlock
126 * before being called.
127 */
128static inline int i8259A_irq_real(unsigned int irq)
129{
130 int value;
131 int irqmask = 1<<irq;
132
133 if (irq < 8) {
134 outb(0x0B, PIC_MASTER_CMD); /* ISR register */
135 value = inb(PIC_MASTER_CMD) & irqmask;
136 outb(0x0A, PIC_MASTER_CMD); /* back to the IRR register */
137 return value;
138 }
139 outb(0x0B, PIC_SLAVE_CMD); /* ISR register */
140 value = inb(PIC_SLAVE_CMD) & (irqmask >> 8);
141 outb(0x0A, PIC_SLAVE_CMD); /* back to the IRR register */
142 return value;
143}
144
145/*
146 * Careful! The 8259A is a fragile beast, it pretty
147 * much _has_ to be done exactly like this (mask it
148 * first, _then_ send the EOI, and the order of EOI
149 * to the two 8259s is important!
150 */
151static void mask_and_ack_8259A(struct irq_data *data)
152{
153 unsigned int irq = data->irq;
154 unsigned int irqmask = 1 << irq;
155 unsigned long flags;
156
157 raw_spin_lock_irqsave(&i8259A_lock, flags);
158 /*
159 * Lightweight spurious IRQ detection. We do not want
160 * to overdo spurious IRQ handling - it's usually a sign
161 * of hardware problems, so we only do the checks we can
162 * do without slowing down good hardware unnecessarily.
163 *
164 * Note that IRQ7 and IRQ15 (the two spurious IRQs
165 * usually resulting from the 8259A-1|2 PICs) occur
166 * even if the IRQ is masked in the 8259A. Thus we
167 * can check spurious 8259A IRQs without doing the
168 * quite slow i8259A_irq_real() call for every IRQ.
169 * This does not cover 100% of spurious interrupts,
170 * but should be enough to warn the user that there
171 * is something bad going on ...
172 */
173 if (cached_irq_mask & irqmask)
174 goto spurious_8259A_irq;
175 cached_irq_mask |= irqmask;
176
177handle_real_irq:
178 if (irq & 8) {
179 inb(PIC_SLAVE_IMR); /* DUMMY - (do we need this?) */
180 outb(cached_slave_mask, PIC_SLAVE_IMR);
181 /* 'Specific EOI' to slave */
182 outb(0x60+(irq&7), PIC_SLAVE_CMD);
183 /* 'Specific EOI' to master-IRQ2 */
184 outb(0x60+PIC_CASCADE_IR, PIC_MASTER_CMD);
185 } else {
186 inb(PIC_MASTER_IMR); /* DUMMY - (do we need this?) */
187 outb(cached_master_mask, PIC_MASTER_IMR);
188 outb(0x60+irq, PIC_MASTER_CMD); /* 'Specific EOI to master */
189 }
190 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
191 return;
192
193spurious_8259A_irq:
194 /*
195 * this is the slow path - should happen rarely.
196 */
197 if (i8259A_irq_real(irq))
198 /*
199 * oops, the IRQ _is_ in service according to the
200 * 8259A - not spurious, go handle it.
201 */
202 goto handle_real_irq;
203
204 {
205 static int spurious_irq_mask;
206 /*
207 * At this point we can be sure the IRQ is spurious,
208 * lets ACK and report it. [once per IRQ]
209 */
210 if (!(spurious_irq_mask & irqmask)) {
211 printk_deferred(KERN_DEBUG
212 "spurious 8259A interrupt: IRQ%d.\n", irq);
213 spurious_irq_mask |= irqmask;
214 }
215 atomic_inc(&irq_err_count);
216 /*
217 * Theoretically we do not have to handle this IRQ,
218 * but in Linux this does not cause problems and is
219 * simpler for us.
220 */
221 goto handle_real_irq;
222 }
223}
224
225struct irq_chip i8259A_chip = {
226 .name = "XT-PIC",
227 .irq_mask = disable_8259A_irq,
228 .irq_disable = disable_8259A_irq,
229 .irq_unmask = enable_8259A_irq,
230 .irq_mask_ack = mask_and_ack_8259A,
231};
232
233static char irq_trigger[2];
234/**
235 * ELCR registers (0x4d0, 0x4d1) control edge/level of IRQ
236 */
237static void restore_ELCR(char *trigger)
238{
239 outb(trigger[0], PIC_ELCR1);
240 outb(trigger[1], PIC_ELCR2);
241}
242
243static void save_ELCR(char *trigger)
244{
245 /* IRQ 0,1,2,8,13 are marked as reserved */
246 trigger[0] = inb(PIC_ELCR1) & 0xF8;
247 trigger[1] = inb(PIC_ELCR2) & 0xDE;
248}
249
250static void i8259A_resume(void)
251{
252 init_8259A(i8259A_auto_eoi);
253 restore_ELCR(irq_trigger);
254}
255
256static int i8259A_suspend(void)
257{
258 save_ELCR(irq_trigger);
259 return 0;
260}
261
262static void i8259A_shutdown(void)
263{
264 /* Put the i8259A into a quiescent state that
265 * the kernel initialization code can get it
266 * out of.
267 */
268 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
269 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
270}
271
272static struct syscore_ops i8259_syscore_ops = {
273 .suspend = i8259A_suspend,
274 .resume = i8259A_resume,
275 .shutdown = i8259A_shutdown,
276};
277
278static void mask_8259A(void)
279{
280 unsigned long flags;
281
282 raw_spin_lock_irqsave(&i8259A_lock, flags);
283
284 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
285 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
286
287 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
288}
289
290static void unmask_8259A(void)
291{
292 unsigned long flags;
293
294 raw_spin_lock_irqsave(&i8259A_lock, flags);
295
296 outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
297 outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
298
299 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
300}
301
302static int probe_8259A(void)
303{
304 unsigned long flags;
305 unsigned char probe_val = ~(1 << PIC_CASCADE_IR);
306 unsigned char new_val;
307 /*
308 * Check to see if we have a PIC.
309 * Mask all except the cascade and read
310 * back the value we just wrote. If we don't
311 * have a PIC, we will read 0xff as opposed to the
312 * value we wrote.
313 */
314 raw_spin_lock_irqsave(&i8259A_lock, flags);
315
316 outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-2 */
317 outb(probe_val, PIC_MASTER_IMR);
318 new_val = inb(PIC_MASTER_IMR);
319 if (new_val != probe_val) {
320 printk(KERN_INFO "Using NULL legacy PIC\n");
321 legacy_pic = &null_legacy_pic;
322 }
323
324 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
325 return nr_legacy_irqs();
326}
327
328static void init_8259A(int auto_eoi)
329{
330 unsigned long flags;
331
332 i8259A_auto_eoi = auto_eoi;
333
334 raw_spin_lock_irqsave(&i8259A_lock, flags);
335
336 outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */
337
338 /*
339 * outb_pic - this has to work on a wide range of PC hardware.
340 */
341 outb_pic(0x11, PIC_MASTER_CMD); /* ICW1: select 8259A-1 init */
342
343 /* ICW2: 8259A-1 IR0-7 mapped to ISA_IRQ_VECTOR(0) */
344 outb_pic(ISA_IRQ_VECTOR(0), PIC_MASTER_IMR);
345
346 /* 8259A-1 (the master) has a slave on IR2 */
347 outb_pic(1U << PIC_CASCADE_IR, PIC_MASTER_IMR);
348
349 if (auto_eoi) /* master does Auto EOI */
350 outb_pic(MASTER_ICW4_DEFAULT | PIC_ICW4_AEOI, PIC_MASTER_IMR);
351 else /* master expects normal EOI */
352 outb_pic(MASTER_ICW4_DEFAULT, PIC_MASTER_IMR);
353
354 outb_pic(0x11, PIC_SLAVE_CMD); /* ICW1: select 8259A-2 init */
355
356 /* ICW2: 8259A-2 IR0-7 mapped to ISA_IRQ_VECTOR(8) */
357 outb_pic(ISA_IRQ_VECTOR(8), PIC_SLAVE_IMR);
358 /* 8259A-2 is a slave on master's IR2 */
359 outb_pic(PIC_CASCADE_IR, PIC_SLAVE_IMR);
360 /* (slave's support for AEOI in flat mode is to be investigated) */
361 outb_pic(SLAVE_ICW4_DEFAULT, PIC_SLAVE_IMR);
362
363 if (auto_eoi)
364 /*
365 * In AEOI mode we just have to mask the interrupt
366 * when acking.
367 */
368 i8259A_chip.irq_mask_ack = disable_8259A_irq;
369 else
370 i8259A_chip.irq_mask_ack = mask_and_ack_8259A;
371
372 udelay(100); /* wait for 8259A to initialize */
373
374 outb(cached_master_mask, PIC_MASTER_IMR); /* restore master IRQ mask */
375 outb(cached_slave_mask, PIC_SLAVE_IMR); /* restore slave IRQ mask */
376
377 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
378}
379
380/*
381 * make i8259 a driver so that we can select pic functions at run time. the goal
382 * is to make x86 binary compatible among pc compatible and non-pc compatible
383 * platforms, such as x86 MID.
384 */
385
386static void legacy_pic_noop(void) { };
387static void legacy_pic_uint_noop(unsigned int unused) { };
388static void legacy_pic_int_noop(int unused) { };
389static int legacy_pic_irq_pending_noop(unsigned int irq)
390{
391 return 0;
392}
393static int legacy_pic_probe(void)
394{
395 return 0;
396}
397
398struct legacy_pic null_legacy_pic = {
399 .nr_legacy_irqs = 0,
400 .chip = &dummy_irq_chip,
401 .mask = legacy_pic_uint_noop,
402 .unmask = legacy_pic_uint_noop,
403 .mask_all = legacy_pic_noop,
404 .restore_mask = legacy_pic_noop,
405 .init = legacy_pic_int_noop,
406 .probe = legacy_pic_probe,
407 .irq_pending = legacy_pic_irq_pending_noop,
408 .make_irq = legacy_pic_uint_noop,
409};
410
411static struct legacy_pic default_legacy_pic = {
412 .nr_legacy_irqs = NR_IRQS_LEGACY,
413 .chip = &i8259A_chip,
414 .mask = mask_8259A_irq,
415 .unmask = unmask_8259A_irq,
416 .mask_all = mask_8259A,
417 .restore_mask = unmask_8259A,
418 .init = init_8259A,
419 .probe = probe_8259A,
420 .irq_pending = i8259A_irq_pending,
421 .make_irq = make_8259A_irq,
422};
423
424struct legacy_pic *legacy_pic = &default_legacy_pic;
425EXPORT_SYMBOL(legacy_pic);
426
427static int __init i8259A_init_ops(void)
428{
429 if (legacy_pic == &default_legacy_pic)
430 register_syscore_ops(&i8259_syscore_ops);
431
432 return 0;
433}
434
435device_initcall(i8259A_init_ops);