allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-mips / i8259.h
blobe88a01607feab6ae9b9fbfa0d109dae1dae04d9d
1 /*
2 * include/asm-mips/i8259.h
4 * i8259A interrupt definitions.
6 * Copyright (C) 2003 Maciej W. Rozycki
7 * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
14 #ifndef _ASM_I8259_H
15 #define _ASM_I8259_H
17 #include <linux/compiler.h>
18 #include <linux/spinlock.h>
20 #include <asm/io.h>
21 #include <irq.h>
23 /* i8259A PIC registers */
24 #define PIC_MASTER_CMD 0x20
25 #define PIC_MASTER_IMR 0x21
26 #define PIC_MASTER_ISR PIC_MASTER_CMD
27 #define PIC_MASTER_POLL PIC_MASTER_ISR
28 #define PIC_MASTER_OCW3 PIC_MASTER_ISR
29 #define PIC_SLAVE_CMD 0xa0
30 #define PIC_SLAVE_IMR 0xa1
32 /* i8259A PIC related value */
33 #define PIC_CASCADE_IR 2
34 #define MASTER_ICW4_DEFAULT 0x01
35 #define SLAVE_ICW4_DEFAULT 0x01
36 #define PIC_ICW4_AEOI 2
38 extern spinlock_t i8259A_lock;
40 extern void init_8259A(int auto_eoi);
41 extern void enable_8259A_irq(unsigned int irq);
42 extern void disable_8259A_irq(unsigned int irq);
44 extern void init_i8259_irqs(void);
47 * Do the traditional i8259 interrupt polling thing. This is for the few
48 * cases where no better interrupt acknowledge method is available and we
49 * absolutely must touch the i8259.
51 static inline int i8259_irq(void)
53 int irq;
55 spin_lock(&i8259A_lock);
57 /* Perform an interrupt acknowledge cycle on controller 1. */
58 outb(0x0C, PIC_MASTER_CMD); /* prepare for poll */
59 irq = inb(PIC_MASTER_CMD) & 7;
60 if (irq == PIC_CASCADE_IR) {
62 * Interrupt is cascaded so perform interrupt
63 * acknowledge on controller 2.
65 outb(0x0C, PIC_SLAVE_CMD); /* prepare for poll */
66 irq = (inb(PIC_SLAVE_CMD) & 7) + 8;
69 if (unlikely(irq == 7)) {
71 * This may be a spurious interrupt.
73 * Read the interrupt status register (ISR). If the most
74 * significant bit is not set then there is no valid
75 * interrupt.
77 outb(0x0B, PIC_MASTER_ISR); /* ISR register */
78 if(~inb(PIC_MASTER_ISR) & 0x80)
79 irq = -1;
82 spin_unlock(&i8259A_lock);
84 return likely(irq >= 0) ? irq + I8259A_IRQ_BASE : irq;
87 #endif /* _ASM_I8259_H */