2 * linux/arch/arm/mach-footbridge/irq.c
4 * Copyright (C) 1996-2000 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 * 22-Aug-1998 RMK Restructured IRQ routines
12 * 03-Sep-1998 PJB Merged CATS support
13 * 20-Jan-1998 RMK Started merge of EBSA286, CATS and NetWinder
14 * 26-Jan-1999 PJB Don't use IACK on CATS
15 * 16-Mar-1999 RMK Added autodetect of ISA PICs
17 #include <linux/ioport.h>
18 #include <linux/interrupt.h>
19 #include <linux/list.h>
20 #include <linux/init.h>
22 #include <linux/spinlock.h>
24 #include <asm/mach/irq.h>
26 #include <mach/hardware.h>
27 #include <asm/hardware/dec21285.h>
29 #include <asm/mach-types.h>
33 static void isa_mask_pic_lo_irq(struct irq_data
*d
)
35 unsigned int mask
= 1 << (d
->irq
& 7);
37 outb(inb(PIC_MASK_LO
) | mask
, PIC_MASK_LO
);
40 static void isa_ack_pic_lo_irq(struct irq_data
*d
)
42 unsigned int mask
= 1 << (d
->irq
& 7);
44 outb(inb(PIC_MASK_LO
) | mask
, PIC_MASK_LO
);
48 static void isa_unmask_pic_lo_irq(struct irq_data
*d
)
50 unsigned int mask
= 1 << (d
->irq
& 7);
52 outb(inb(PIC_MASK_LO
) & ~mask
, PIC_MASK_LO
);
55 static struct irq_chip isa_lo_chip
= {
56 .irq_ack
= isa_ack_pic_lo_irq
,
57 .irq_mask
= isa_mask_pic_lo_irq
,
58 .irq_unmask
= isa_unmask_pic_lo_irq
,
61 static void isa_mask_pic_hi_irq(struct irq_data
*d
)
63 unsigned int mask
= 1 << (d
->irq
& 7);
65 outb(inb(PIC_MASK_HI
) | mask
, PIC_MASK_HI
);
68 static void isa_ack_pic_hi_irq(struct irq_data
*d
)
70 unsigned int mask
= 1 << (d
->irq
& 7);
72 outb(inb(PIC_MASK_HI
) | mask
, PIC_MASK_HI
);
77 static void isa_unmask_pic_hi_irq(struct irq_data
*d
)
79 unsigned int mask
= 1 << (d
->irq
& 7);
81 outb(inb(PIC_MASK_HI
) & ~mask
, PIC_MASK_HI
);
84 static struct irq_chip isa_hi_chip
= {
85 .irq_ack
= isa_ack_pic_hi_irq
,
86 .irq_mask
= isa_mask_pic_hi_irq
,
87 .irq_unmask
= isa_unmask_pic_hi_irq
,
90 static void isa_irq_handler(struct irq_desc
*desc
)
92 unsigned int isa_irq
= *(unsigned char *)PCIIACK_BASE
;
94 if (isa_irq
< _ISA_IRQ(0) || isa_irq
>= _ISA_IRQ(16)) {
99 generic_handle_irq(isa_irq
);
102 static struct irqaction irq_cascade
= {
103 .handler
= no_action
,
107 static struct resource pic1_resource
= {
113 static struct resource pic2_resource
= {
119 void __init
isa_init_irq(unsigned int host_irq
)
124 * Setup, and then probe for an ISA PIC
125 * If the PIC is not there, then we
129 outb(_ISA_IRQ(0), PIC_MASK_LO
); /* IRQ number */
130 outb(0x04, PIC_MASK_LO
); /* Slave on Ch2 */
131 outb(0x01, PIC_MASK_LO
); /* x86 */
132 outb(0xf5, PIC_MASK_LO
); /* pattern: 11110101 */
135 outb(_ISA_IRQ(8), PIC_MASK_HI
); /* IRQ number */
136 outb(0x02, PIC_MASK_HI
); /* Slave on Ch1 */
137 outb(0x01, PIC_MASK_HI
); /* x86 */
138 outb(0xfa, PIC_MASK_HI
); /* pattern: 11111010 */
143 if (inb(PIC_MASK_LO
) == 0xf5 && inb(PIC_MASK_HI
) == 0xfa) {
144 outb(0xff, PIC_MASK_LO
);/* mask all IRQs */
145 outb(0xff, PIC_MASK_HI
);/* mask all IRQs */
147 printk(KERN_INFO
"IRQ: ISA PIC not found\n");
148 host_irq
= (unsigned int)-1;
151 if (host_irq
!= (unsigned int)-1) {
152 for (irq
= _ISA_IRQ(0); irq
< _ISA_IRQ(8); irq
++) {
153 irq_set_chip_and_handler(irq
, &isa_lo_chip
,
155 irq_clear_status_flags(irq
, IRQ_NOREQUEST
| IRQ_NOPROBE
);
158 for (irq
= _ISA_IRQ(8); irq
< _ISA_IRQ(16); irq
++) {
159 irq_set_chip_and_handler(irq
, &isa_hi_chip
,
161 irq_clear_status_flags(irq
, IRQ_NOREQUEST
| IRQ_NOPROBE
);
164 request_resource(&ioport_resource
, &pic1_resource
);
165 request_resource(&ioport_resource
, &pic2_resource
);
166 setup_irq(IRQ_ISA_CASCADE
, &irq_cascade
);
168 irq_set_chained_handler(host_irq
, isa_irq_handler
);
171 * On the NetWinder, don't automatically
172 * enable ISA IRQ11 when it is requested.
173 * There appears to be a missing pull-up
174 * resistor on this line.
176 if (machine_is_netwinder())
177 irq_modify_status(_ISA_IRQ(11),
178 IRQ_NOREQUEST
| IRQ_NOPROBE
, IRQ_NOAUTOEN
);