2 * Basic EISA bus support for the SGI Indigo-2.
4 * (C) 2002 Pascal Dameme <netinet@freesurf.fr>
5 * and Marc Zyngier <mzyngier@freesurf.fr>
7 * This code is released under both the GPL version 2 and BSD
8 * licenses. Either license may be used.
10 * This code offers a very basic support for this EISA bus present in
11 * the SGI Indigo-2. It currently only supports PIO (forget about DMA
12 * for the time being). This is enough for a low-end ethernet card,
13 * but forget about your favorite SCSI card...
18 * - Add DMA (yeah, right...).
22 #include <linux/config.h>
23 #include <linux/eisa.h>
24 #include <linux/types.h>
25 #include <linux/init.h>
26 #include <linux/irq.h>
27 #include <linux/kernel_stat.h>
28 #include <linux/signal.h>
29 #include <linux/sched.h>
30 #include <linux/interrupt.h>
31 #include <linux/delay.h>
34 #include <asm/mipsregs.h>
35 #include <asm/addrspace.h>
36 #include <asm/processor.h>
37 #include <asm/sgi/ioc.h>
38 #include <asm/sgi/mc.h>
39 #include <asm/sgi/ip22.h>
41 /* I2 has four EISA slots. */
42 #define IP22_EISA_MAX_SLOTS 4
43 #define EISA_MAX_IRQ 16
45 #define EIU_MODE_REG 0x0001ffc0
46 #define EIU_STAT_REG 0x0001ffc4
47 #define EIU_PREMPT_REG 0x0001ffc8
48 #define EIU_QUIET_REG 0x0001ffcc
49 #define EIU_INTRPT_ACK 0x00010004
51 static char __init
*decode_eisa_sig(unsigned long addr
)
53 static char sig_str
[EISA_SIG_LEN
];
58 for (i
= 0; i
< 4; i
++) {
59 sig
[i
] = inb (addr
+ i
);
61 if (!i
&& (sig
[0] & 0x80))
65 sig_str
[0] = ((sig
[0] >> 2) & 0x1f) + ('A' - 1);
66 sig_str
[1] = (((sig
[0] & 3) << 3) | (sig
[1] >> 5)) + ('A' - 1);
67 sig_str
[2] = (sig
[1] & 0x1f) + ('A' - 1);
68 rev
= (sig
[2] << 8) | sig
[3];
69 sprintf(sig_str
+ 3, "%04X", rev
);
74 static irqreturn_t
ip22_eisa_intr(int irq
, void *dev_id
, struct pt_regs
*regs
)
79 eisa_irq
= inb(EIU_INTRPT_ACK
);
80 dma1
= inb(EISA_DMA1_STATUS
);
81 dma2
= inb(EISA_DMA2_STATUS
);
83 if (eisa_irq
< EISA_MAX_IRQ
) {
84 do_IRQ(eisa_irq
, regs
);
88 /* Oops, Bad Stuff Happened... */
89 printk(KERN_ERR
"eisa_irq %d out of bound\n", eisa_irq
);
91 outb(0x20, EISA_INT2_CTRL
);
92 outb(0x20, EISA_INT1_CTRL
);
96 static void enable_eisa1_irq(unsigned int irq
)
101 local_irq_save(flags
);
103 mask
= inb(EISA_INT1_MASK
);
104 mask
&= ~((u8
) (1 << irq
));
105 outb(mask
, EISA_INT1_MASK
);
107 local_irq_restore(flags
);
110 static unsigned int startup_eisa1_irq(unsigned int irq
)
114 /* Only use edge interrupts for EISA */
116 edge
= inb(EISA_INT1_EDGE_LEVEL
);
117 edge
&= ~((u8
) (1 << irq
));
118 outb(edge
, EISA_INT1_EDGE_LEVEL
);
120 enable_eisa1_irq(irq
);
124 static void disable_eisa1_irq(unsigned int irq
)
128 mask
= inb(EISA_INT1_MASK
);
129 mask
|= ((u8
) (1 << irq
));
130 outb(mask
, EISA_INT1_MASK
);
133 #define shutdown_eisa1_irq disable_eisa1_irq
135 static void mask_and_ack_eisa1_irq(unsigned int irq
)
137 disable_eisa1_irq(irq
);
139 outb(0x20, EISA_INT1_CTRL
);
142 static void end_eisa1_irq(unsigned int irq
)
144 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
| IRQ_INPROGRESS
)))
145 enable_eisa1_irq(irq
);
148 static struct hw_interrupt_type ip22_eisa1_irq_type
= {
149 .typename
= "IP22 EISA",
150 .startup
= startup_eisa1_irq
,
151 .shutdown
= shutdown_eisa1_irq
,
152 .enable
= enable_eisa1_irq
,
153 .disable
= disable_eisa1_irq
,
154 .ack
= mask_and_ack_eisa1_irq
,
155 .end
= end_eisa1_irq
,
158 static void enable_eisa2_irq(unsigned int irq
)
163 local_irq_save(flags
);
165 mask
= inb(EISA_INT2_MASK
);
166 mask
&= ~((u8
) (1 << (irq
- 8)));
167 outb(mask
, EISA_INT2_MASK
);
169 local_irq_restore(flags
);
172 static unsigned int startup_eisa2_irq(unsigned int irq
)
176 /* Only use edge interrupts for EISA */
178 edge
= inb(EISA_INT2_EDGE_LEVEL
);
179 edge
&= ~((u8
) (1 << (irq
- 8)));
180 outb(edge
, EISA_INT2_EDGE_LEVEL
);
182 enable_eisa2_irq(irq
);
186 static void disable_eisa2_irq(unsigned int irq
)
190 mask
= inb(EISA_INT2_MASK
);
191 mask
|= ((u8
) (1 << (irq
- 8)));
192 outb(mask
, EISA_INT2_MASK
);
195 #define shutdown_eisa2_irq disable_eisa2_irq
197 static void mask_and_ack_eisa2_irq(unsigned int irq
)
199 disable_eisa2_irq(irq
);
201 outb(0x20, EISA_INT2_CTRL
);
204 static void end_eisa2_irq(unsigned int irq
)
206 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
| IRQ_INPROGRESS
)))
207 enable_eisa2_irq(irq
);
210 static struct hw_interrupt_type ip22_eisa2_irq_type
= {
211 .typename
= "IP22 EISA",
212 .startup
= startup_eisa2_irq
,
213 .shutdown
= shutdown_eisa2_irq
,
214 .enable
= enable_eisa2_irq
,
215 .disable
= disable_eisa2_irq
,
216 .ack
= mask_and_ack_eisa2_irq
,
217 .end
= end_eisa2_irq
,
220 static struct irqaction eisa_action
= {
221 .handler
= ip22_eisa_intr
,
225 static struct irqaction cascade_action
= {
226 .handler
= no_action
,
227 .name
= "EISA cascade",
230 int __init
ip22_eisa_init(void)
235 if (!(sgimc
->systemid
& SGIMC_SYSID_EPRESENT
)) {
236 printk(KERN_INFO
"EISA: bus not present.\n");
240 printk(KERN_INFO
"EISA: Probing bus...\n");
241 for (c
= 0, i
= 1; i
<= IP22_EISA_MAX_SLOTS
; i
++) {
242 if ((str
= decode_eisa_sig(0x1000 * i
+ EISA_VENDOR_ID_OFFSET
))) {
243 printk(KERN_INFO
"EISA: slot %d : %s detected.\n",
248 printk(KERN_INFO
"EISA: Detected %d card%s.\n", c
, c
< 2 ? "" : "s");
250 printk(KERN_INFO
"ISA support compiled in.\n");
253 /* Warning : BlackMagicAhead(tm).
254 Please wave your favorite dead chicken over the busses */
256 /* First say hello to the EIU */
257 outl(0x0000FFFF, EIU_PREMPT_REG
);
258 outl(1, EIU_QUIET_REG
);
259 outl(0x40f3c07F, EIU_MODE_REG
);
261 /* Now be nice to the EISA chipset */
262 outb(1, EISA_EXT_NMI_RESET_CTRL
);
263 udelay(50); /* Wait long enough for the dust to settle */
264 outb(0, EISA_EXT_NMI_RESET_CTRL
);
265 outb(0x11, EISA_INT1_CTRL
);
266 outb(0x11, EISA_INT2_CTRL
);
267 outb(0, EISA_INT1_MASK
);
268 outb(8, EISA_INT2_MASK
);
269 outb(4, EISA_INT1_MASK
);
270 outb(2, EISA_INT2_MASK
);
271 outb(1, EISA_INT1_MASK
);
272 outb(1, EISA_INT2_MASK
);
273 outb(0xfb, EISA_INT1_MASK
);
274 outb(0xff, EISA_INT2_MASK
);
275 outb(0, EISA_DMA2_WRITE_SINGLE
);
277 for (i
= SGINT_EISA
; i
< (SGINT_EISA
+ EISA_MAX_IRQ
); i
++) {
278 irq_desc
[i
].status
= IRQ_DISABLED
;
279 irq_desc
[i
].action
= 0;
280 irq_desc
[i
].depth
= 1;
281 if (i
< (SGINT_EISA
+ 8))
282 irq_desc
[i
].handler
= &ip22_eisa1_irq_type
;
284 irq_desc
[i
].handler
= &ip22_eisa2_irq_type
;
287 /* Cannot use request_irq because of kmalloc not being ready at such
288 * an early stage. Yes, I've been bitten... */
289 setup_irq(SGI_EISA_IRQ
, &eisa_action
);
290 setup_irq(SGINT_EISA
+ 2, &cascade_action
);