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/slab.h>
9 #include <linux/random.h>
10 #include <linux/smp_lock.h>
11 #include <linux/init.h>
12 #include <linux/kernel_stat.h>
13 #include <linux/sysdev.h>
14 #include <linux/bitops.h>
17 #include <asm/atomic.h>
18 #include <asm/system.h>
20 #include <asm/hw_irq.h>
21 #include <asm/pgtable.h>
22 #include <asm/delay.h>
27 * Common place to define all x86 IRQ vectors
29 * This builds up the IRQ handler stubs using some ugly macros in irq.h
31 * These macros create the low-level assembly IRQ routines that save
32 * register context and call do_IRQ(). do_IRQ() then does all the
33 * operations that are needed to keep the AT (or SMP IOAPIC)
34 * interrupt-controller happy.
40 #define BUILD_16_IRQS(x) \
41 BI(x,0) BI(x,1) BI(x,2) BI(x,3) \
42 BI(x,4) BI(x,5) BI(x,6) BI(x,7) \
43 BI(x,8) BI(x,9) BI(x,a) BI(x,b) \
44 BI(x,c) BI(x,d) BI(x,e) BI(x,f)
46 #define BUILD_15_IRQS(x) \
47 BI(x,0) BI(x,1) BI(x,2) BI(x,3) \
48 BI(x,4) BI(x,5) BI(x,6) BI(x,7) \
49 BI(x,8) BI(x,9) BI(x,a) BI(x,b) \
50 BI(x,c) BI(x,d) BI(x,e)
53 * ISA PIC or low IO-APIC triggered (INTA-cycle or APIC) interrupts:
54 * (these are usually mapped to vectors 0x20-0x2f)
58 #ifdef CONFIG_X86_LOCAL_APIC
60 * The IO-APIC gives us many more interrupt sources. Most of these
61 * are unused but an SMP system is supposed to have enough memory ...
62 * sometimes (mostly wrt. hw bugs) we get corrupted vectors all
63 * across the spectrum, so we really want to be prepared to get all
64 * of these. Plus, more powerful systems might have more than 64
67 * (these are usually mapped into the 0x30-0xff vector range)
69 BUILD_16_IRQS(0x1) BUILD_16_IRQS(0x2) BUILD_16_IRQS(0x3)
70 BUILD_16_IRQS(0x4) BUILD_16_IRQS(0x5) BUILD_16_IRQS(0x6) BUILD_16_IRQS(0x7)
71 BUILD_16_IRQS(0x8) BUILD_16_IRQS(0x9) BUILD_16_IRQS(0xa) BUILD_16_IRQS(0xb)
72 BUILD_16_IRQS(0xc) BUILD_16_IRQS(0xd)
88 #define IRQLIST_16(x) \
89 IRQ(x,0), IRQ(x,1), IRQ(x,2), IRQ(x,3), \
90 IRQ(x,4), IRQ(x,5), IRQ(x,6), IRQ(x,7), \
91 IRQ(x,8), IRQ(x,9), IRQ(x,a), IRQ(x,b), \
92 IRQ(x,c), IRQ(x,d), IRQ(x,e), IRQ(x,f)
94 #define IRQLIST_15(x) \
95 IRQ(x,0), IRQ(x,1), IRQ(x,2), IRQ(x,3), \
96 IRQ(x,4), IRQ(x,5), IRQ(x,6), IRQ(x,7), \
97 IRQ(x,8), IRQ(x,9), IRQ(x,a), IRQ(x,b), \
98 IRQ(x,c), IRQ(x,d), IRQ(x,e)
100 void (*interrupt
[NR_IRQS
])(void) = {
103 #ifdef CONFIG_X86_IO_APIC
104 IRQLIST_16(0x1), IRQLIST_16(0x2), IRQLIST_16(0x3),
105 IRQLIST_16(0x4), IRQLIST_16(0x5), IRQLIST_16(0x6), IRQLIST_16(0x7),
106 IRQLIST_16(0x8), IRQLIST_16(0x9), IRQLIST_16(0xa), IRQLIST_16(0xb),
107 IRQLIST_16(0xc), IRQLIST_16(0xd)
109 #ifdef CONFIG_PCI_MSI
121 * This is the 'legacy' 8259A Programmable Interrupt Controller,
122 * present in the majority of PC/AT boxes.
123 * plus some generic x86 specific things if generic specifics makes
125 * this file should become arch/i386/kernel/irq.c when the old irq.c
126 * moves to arch independent land
129 DEFINE_SPINLOCK(i8259A_lock
);
131 static void end_8259A_irq (unsigned int irq
)
135 printk("return %p stack %p ti %p\n", __builtin_return_address(0), &var
, task_thread_info(current
));
140 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
|IRQ_INPROGRESS
)) &&
141 irq_desc
[irq
].action
)
142 enable_8259A_irq(irq
);
145 #define shutdown_8259A_irq disable_8259A_irq
147 static void mask_and_ack_8259A(unsigned int);
149 static unsigned int startup_8259A_irq(unsigned int irq
)
151 enable_8259A_irq(irq
);
152 return 0; /* never anything pending */
155 static struct hw_interrupt_type i8259A_irq_type
= {
156 .typename
= "XT-PIC",
157 .startup
= startup_8259A_irq
,
158 .shutdown
= shutdown_8259A_irq
,
159 .enable
= enable_8259A_irq
,
160 .disable
= disable_8259A_irq
,
161 .ack
= mask_and_ack_8259A
,
162 .end
= end_8259A_irq
,
166 * 8259A PIC functions to handle ISA devices:
170 * This contains the irq mask for both 8259A irq controllers,
172 static unsigned int cached_irq_mask
= 0xffff;
174 #define __byte(x,y) (((unsigned char *)&(y))[x])
175 #define cached_21 (__byte(0,cached_irq_mask))
176 #define cached_A1 (__byte(1,cached_irq_mask))
179 * Not all IRQs can be routed through the IO-APIC, eg. on certain (older)
180 * boards the timer interrupt is not really connected to any IO-APIC pin,
181 * it's fed to the master 8259A's IR0 line only.
183 * Any '1' bit in this mask means the IRQ is routed through the IO-APIC.
184 * this 'mixed mode' IRQ handling costs nothing because it's only used
187 unsigned long io_apic_irqs
;
189 void disable_8259A_irq(unsigned int irq
)
191 unsigned int mask
= 1 << irq
;
194 spin_lock_irqsave(&i8259A_lock
, flags
);
195 cached_irq_mask
|= mask
;
197 outb(cached_A1
,0xA1);
199 outb(cached_21
,0x21);
200 spin_unlock_irqrestore(&i8259A_lock
, flags
);
203 void enable_8259A_irq(unsigned int irq
)
205 unsigned int mask
= ~(1 << irq
);
208 spin_lock_irqsave(&i8259A_lock
, flags
);
209 cached_irq_mask
&= mask
;
211 outb(cached_A1
,0xA1);
213 outb(cached_21
,0x21);
214 spin_unlock_irqrestore(&i8259A_lock
, flags
);
217 int i8259A_irq_pending(unsigned int irq
)
219 unsigned int mask
= 1<<irq
;
223 spin_lock_irqsave(&i8259A_lock
, flags
);
225 ret
= inb(0x20) & mask
;
227 ret
= inb(0xA0) & (mask
>> 8);
228 spin_unlock_irqrestore(&i8259A_lock
, flags
);
233 void make_8259A_irq(unsigned int irq
)
235 disable_irq_nosync(irq
);
236 io_apic_irqs
&= ~(1<<irq
);
237 irq_desc
[irq
].chip
= &i8259A_irq_type
;
242 * This function assumes to be called rarely. Switching between
243 * 8259A registers is slow.
244 * This has to be protected by the irq controller spinlock
245 * before being called.
247 static inline int i8259A_irq_real(unsigned int irq
)
250 int irqmask
= 1<<irq
;
253 outb(0x0B,0x20); /* ISR register */
254 value
= inb(0x20) & irqmask
;
255 outb(0x0A,0x20); /* back to the IRR register */
258 outb(0x0B,0xA0); /* ISR register */
259 value
= inb(0xA0) & (irqmask
>> 8);
260 outb(0x0A,0xA0); /* back to the IRR register */
265 * Careful! The 8259A is a fragile beast, it pretty
266 * much _has_ to be done exactly like this (mask it
267 * first, _then_ send the EOI, and the order of EOI
268 * to the two 8259s is important!
270 static void mask_and_ack_8259A(unsigned int irq
)
272 unsigned int irqmask
= 1 << irq
;
275 spin_lock_irqsave(&i8259A_lock
, flags
);
277 * Lightweight spurious IRQ detection. We do not want
278 * to overdo spurious IRQ handling - it's usually a sign
279 * of hardware problems, so we only do the checks we can
280 * do without slowing down good hardware unnecessarily.
282 * Note that IRQ7 and IRQ15 (the two spurious IRQs
283 * usually resulting from the 8259A-1|2 PICs) occur
284 * even if the IRQ is masked in the 8259A. Thus we
285 * can check spurious 8259A IRQs without doing the
286 * quite slow i8259A_irq_real() call for every IRQ.
287 * This does not cover 100% of spurious interrupts,
288 * but should be enough to warn the user that there
289 * is something bad going on ...
291 if (cached_irq_mask
& irqmask
)
292 goto spurious_8259A_irq
;
293 cached_irq_mask
|= irqmask
;
297 inb(0xA1); /* DUMMY - (do we need this?) */
298 outb(cached_A1
,0xA1);
299 outb(0x60+(irq
&7),0xA0);/* 'Specific EOI' to slave */
300 outb(0x62,0x20); /* 'Specific EOI' to master-IRQ2 */
302 inb(0x21); /* DUMMY - (do we need this?) */
303 outb(cached_21
,0x21);
304 outb(0x60+irq
,0x20); /* 'Specific EOI' to master */
306 spin_unlock_irqrestore(&i8259A_lock
, flags
);
311 * this is the slow path - should happen rarely.
313 if (i8259A_irq_real(irq
))
315 * oops, the IRQ _is_ in service according to the
316 * 8259A - not spurious, go handle it.
318 goto handle_real_irq
;
321 static int spurious_irq_mask
;
323 * At this point we can be sure the IRQ is spurious,
324 * lets ACK and report it. [once per IRQ]
326 if (!(spurious_irq_mask
& irqmask
)) {
327 printk(KERN_DEBUG
"spurious 8259A interrupt: IRQ%d.\n", irq
);
328 spurious_irq_mask
|= irqmask
;
330 atomic_inc(&irq_err_count
);
332 * Theoretically we do not have to handle this IRQ,
333 * but in Linux this does not cause problems and is
336 goto handle_real_irq
;
340 void init_8259A(int auto_eoi
)
344 spin_lock_irqsave(&i8259A_lock
, flags
);
346 outb(0xff, 0x21); /* mask all of 8259A-1 */
347 outb(0xff, 0xA1); /* mask all of 8259A-2 */
350 * outb_p - this has to work on a wide range of PC hardware.
352 outb_p(0x11, 0x20); /* ICW1: select 8259A-1 init */
353 outb_p(0x20 + 0, 0x21); /* ICW2: 8259A-1 IR0-7 mapped to 0x20-0x27 */
354 outb_p(0x04, 0x21); /* 8259A-1 (the master) has a slave on IR2 */
356 outb_p(0x03, 0x21); /* master does Auto EOI */
358 outb_p(0x01, 0x21); /* master expects normal EOI */
360 outb_p(0x11, 0xA0); /* ICW1: select 8259A-2 init */
361 outb_p(0x20 + 8, 0xA1); /* ICW2: 8259A-2 IR0-7 mapped to 0x28-0x2f */
362 outb_p(0x02, 0xA1); /* 8259A-2 is a slave on master's IR2 */
363 outb_p(0x01, 0xA1); /* (slave's support for AEOI in flat mode
364 is to be investigated) */
368 * in AEOI mode we just have to mask the interrupt
371 i8259A_irq_type
.ack
= disable_8259A_irq
;
373 i8259A_irq_type
.ack
= mask_and_ack_8259A
;
375 udelay(100); /* wait for 8259A to initialize */
377 outb(cached_21
, 0x21); /* restore master IRQ mask */
378 outb(cached_A1
, 0xA1); /* restore slave IRQ mask */
380 spin_unlock_irqrestore(&i8259A_lock
, flags
);
383 static char irq_trigger
[2];
385 * ELCR registers (0x4d0, 0x4d1) control edge/level of IRQ
387 static void restore_ELCR(char *trigger
)
389 outb(trigger
[0], 0x4d0);
390 outb(trigger
[1], 0x4d1);
393 static void save_ELCR(char *trigger
)
395 /* IRQ 0,1,2,8,13 are marked as reserved */
396 trigger
[0] = inb(0x4d0) & 0xF8;
397 trigger
[1] = inb(0x4d1) & 0xDE;
400 static int i8259A_resume(struct sys_device
*dev
)
403 restore_ELCR(irq_trigger
);
407 static int i8259A_suspend(struct sys_device
*dev
, pm_message_t state
)
409 save_ELCR(irq_trigger
);
413 static int i8259A_shutdown(struct sys_device
*dev
)
415 /* Put the i8259A into a quiescent state that
416 * the kernel initialization code can get it
419 outb(0xff, 0x21); /* mask all of 8259A-1 */
420 outb(0xff, 0xA1); /* mask all of 8259A-1 */
424 static struct sysdev_class i8259_sysdev_class
= {
425 set_kset_name("i8259"),
426 .suspend
= i8259A_suspend
,
427 .resume
= i8259A_resume
,
428 .shutdown
= i8259A_shutdown
,
431 static struct sys_device device_i8259A
= {
433 .cls
= &i8259_sysdev_class
,
436 static int __init
i8259A_init_sysfs(void)
438 int error
= sysdev_class_register(&i8259_sysdev_class
);
440 error
= sysdev_register(&device_i8259A
);
444 device_initcall(i8259A_init_sysfs
);
447 * IRQ2 is cascade interrupt to second interrupt controller
450 static struct irqaction irq2
= { no_action
, 0, CPU_MASK_NONE
, "cascade", NULL
, NULL
};
452 void __init
init_ISA_irqs (void)
456 #ifdef CONFIG_X86_LOCAL_APIC
461 for (i
= 0; i
< NR_IRQS
; i
++) {
462 irq_desc
[i
].status
= IRQ_DISABLED
;
463 irq_desc
[i
].action
= NULL
;
464 irq_desc
[i
].depth
= 1;
468 * 16 old-style INTA-cycle interrupts:
470 irq_desc
[i
].chip
= &i8259A_irq_type
;
473 * 'high' PCI IRQs filled in on demand
475 irq_desc
[i
].chip
= &no_irq_type
;
480 void apic_timer_interrupt(void);
481 void spurious_interrupt(void);
482 void error_interrupt(void);
483 void reschedule_interrupt(void);
484 void call_function_interrupt(void);
485 void invalidate_interrupt0(void);
486 void invalidate_interrupt1(void);
487 void invalidate_interrupt2(void);
488 void invalidate_interrupt3(void);
489 void invalidate_interrupt4(void);
490 void invalidate_interrupt5(void);
491 void invalidate_interrupt6(void);
492 void invalidate_interrupt7(void);
493 void thermal_interrupt(void);
494 void threshold_interrupt(void);
495 void i8254_timer_resume(void);
497 static void setup_timer_hardware(void)
499 outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */
501 outb_p(LATCH
& 0xff , 0x40); /* LSB */
503 outb(LATCH
>> 8 , 0x40); /* MSB */
506 static int timer_resume(struct sys_device
*dev
)
508 setup_timer_hardware();
512 void i8254_timer_resume(void)
514 setup_timer_hardware();
517 static struct sysdev_class timer_sysclass
= {
518 set_kset_name("timer_pit"),
519 .resume
= timer_resume
,
522 static struct sys_device device_timer
= {
524 .cls
= &timer_sysclass
,
527 static int __init
init_timer_sysfs(void)
529 int error
= sysdev_class_register(&timer_sysclass
);
531 error
= sysdev_register(&device_timer
);
535 device_initcall(init_timer_sysfs
);
537 void __init
init_IRQ(void)
543 * Cover the whole vector space, no vector can escape
544 * us. (some of these will be overridden and become
545 * 'special' SMP interrupts)
547 for (i
= 0; i
< (NR_VECTORS
- FIRST_EXTERNAL_VECTOR
); i
++) {
548 int vector
= FIRST_EXTERNAL_VECTOR
+ i
;
551 if (vector
!= IA32_SYSCALL_VECTOR
)
552 set_intr_gate(vector
, interrupt
[i
]);
557 * IRQ0 must be given a fixed assignment and initialized,
558 * because it's used before the IO-APIC is set up.
560 set_intr_gate(FIRST_DEVICE_VECTOR
, interrupt
[0]);
563 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
564 * IPI, driven by wakeup.
566 set_intr_gate(RESCHEDULE_VECTOR
, reschedule_interrupt
);
568 /* IPIs for invalidation */
569 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+0, invalidate_interrupt0
);
570 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+1, invalidate_interrupt1
);
571 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+2, invalidate_interrupt2
);
572 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+3, invalidate_interrupt3
);
573 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+4, invalidate_interrupt4
);
574 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+5, invalidate_interrupt5
);
575 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+6, invalidate_interrupt6
);
576 set_intr_gate(INVALIDATE_TLB_VECTOR_START
+7, invalidate_interrupt7
);
578 /* IPI for generic function call */
579 set_intr_gate(CALL_FUNCTION_VECTOR
, call_function_interrupt
);
581 set_intr_gate(THERMAL_APIC_VECTOR
, thermal_interrupt
);
582 set_intr_gate(THRESHOLD_APIC_VECTOR
, threshold_interrupt
);
584 #ifdef CONFIG_X86_LOCAL_APIC
585 /* self generated IPI for local APIC timer */
586 set_intr_gate(LOCAL_TIMER_VECTOR
, apic_timer_interrupt
);
588 /* IPI vectors for APIC spurious and error interrupts */
589 set_intr_gate(SPURIOUS_APIC_VECTOR
, spurious_interrupt
);
590 set_intr_gate(ERROR_APIC_VECTOR
, error_interrupt
);
594 * Set the clock to HZ Hz, we already have a valid
597 setup_timer_hardware();