vserver 1.9.5.x5
[linux-2.6.git] / drivers / parisc / eisa.c
1 /*
2  * eisa.c - provide support for EISA adapters in PA-RISC machines
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version
7  * 2 of the License, or (at your option) any later version.
8  *
9  * Copyright (c) 2001 Matthew Wilcox for Hewlett Packard
10  * Copyright (c) 2001 Daniel Engstrom <5116@telia.com>
11  *
12  * There are two distinct EISA adapters.  Mongoose is found in machines
13  * before the 712; then the Wax ASIC is used.  To complicate matters, the
14  * Wax ASIC also includes a PS/2 and RS-232 controller, but those are
15  * dealt with elsewhere; this file is concerned only with the EISA portions
16  * of Wax.
17  * 
18  * 
19  * HINT:
20  * -----
21  * To allow an ISA card to work properly in the EISA slot you need to
22  * set an edge trigger level. This may be done on the palo command line 
23  * by adding the kernel parameter "eisa_irq_edge=n,n2,[...]]", with 
24  * n and n2 as the irq levels you want to use.
25  * 
26  * Example: "eisa_irq_edge=10,11" allows ISA cards to operate at 
27  * irq levels 10 and 11.
28  */
29
30 #include <linux/init.h>
31 #include <linux/ioport.h>
32 #include <linux/interrupt.h>
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/pci.h>
36 #include <linux/sched.h>
37 #include <linux/spinlock.h>
38 #include <linux/eisa.h>
39
40 #include <asm/byteorder.h>
41 #include <asm/io.h>
42 #include <asm/hardware.h>
43 #include <asm/processor.h>
44 #include <asm/parisc-device.h>
45 #include <asm/delay.h>
46 #include <asm/eisa_bus.h>
47
48 #if 0
49 #define EISA_DBG(msg, arg... ) printk(KERN_DEBUG "eisa: " msg , ## arg )
50 #else
51 #define EISA_DBG(msg, arg... )  
52 #endif
53
54 #define SNAKES_EEPROM_BASE_ADDR 0xF0810400
55 #define MIRAGE_EEPROM_BASE_ADDR 0xF00C0400
56
57 static DEFINE_SPINLOCK(eisa_irq_lock);
58
59 /* We can only have one EISA adapter in the system because neither
60  * implementation can be flexed.
61  */
62 static struct eisa_ba {
63         struct pci_hba_data     hba;
64         unsigned long eeprom_addr;
65         struct eisa_root_device root;
66 } eisa_dev;
67
68 /* Port ops */
69
70 static inline unsigned long eisa_permute(unsigned short port)
71 {
72         if (port & 0x300) {
73                 return 0xfc000000 | ((port & 0xfc00) >> 6)
74                         | ((port & 0x3f8) << 9) | (port & 7);
75         } else {
76                 return 0xfc000000 | port;
77         }
78 }
79
80 unsigned char eisa_in8(unsigned short port)
81 {
82         if (EISA_bus)
83                 return gsc_readb(eisa_permute(port));
84         return 0xff;
85 }
86
87 unsigned short eisa_in16(unsigned short port)
88 {
89         if (EISA_bus)
90                 return le16_to_cpu(gsc_readw(eisa_permute(port)));
91         return 0xffff;
92 }
93
94 unsigned int eisa_in32(unsigned short port)
95 {
96         if (EISA_bus)
97                 return le32_to_cpu(gsc_readl(eisa_permute(port)));
98         return 0xffffffff;
99 }
100
101 void eisa_out8(unsigned char data, unsigned short port)
102 {
103         if (EISA_bus)
104                 gsc_writeb(data, eisa_permute(port));
105 }
106
107 void eisa_out16(unsigned short data, unsigned short port)
108 {
109         if (EISA_bus)   
110                 gsc_writew(cpu_to_le16(data), eisa_permute(port));
111 }
112
113 void eisa_out32(unsigned int data, unsigned short port)
114 {
115         if (EISA_bus)
116                 gsc_writel(cpu_to_le32(data), eisa_permute(port));
117 }
118
119 #ifndef CONFIG_PCI
120 /* We call these directly without PCI.  See asm/io.h. */
121 EXPORT_SYMBOL(eisa_in8);
122 EXPORT_SYMBOL(eisa_in16);
123 EXPORT_SYMBOL(eisa_in32);
124 EXPORT_SYMBOL(eisa_out8);
125 EXPORT_SYMBOL(eisa_out16);
126 EXPORT_SYMBOL(eisa_out32);
127 #endif
128
129 /* Interrupt handling */
130
131 /* cached interrupt mask registers */
132 static int master_mask;
133 static int slave_mask;
134
135 /* the trig level can be set with the
136  * eisa_irq_edge=n,n,n commandline parameter 
137  * We should really read this from the EEPROM 
138  * in the furure. 
139  */
140 /* irq 13,8,2,1,0 must be edge */
141 static unsigned int eisa_irq_level; /* default to edge triggered */
142
143
144 /* called by free irq */
145 static void eisa_disable_irq(unsigned int irq)
146 {
147         unsigned long flags;
148
149         EISA_DBG("disable irq %d\n", irq);
150         /* just mask for now */
151         spin_lock_irqsave(&eisa_irq_lock, flags);
152         if (irq & 8) {
153                 slave_mask |= (1 << (irq&7));
154                 eisa_out8(slave_mask, 0xa1);
155         } else {
156                 master_mask |= (1 << (irq&7));
157                 eisa_out8(master_mask, 0x21);
158         }
159         spin_unlock_irqrestore(&eisa_irq_lock, flags);
160         EISA_DBG("pic0 mask %02x\n", eisa_in8(0x21));
161         EISA_DBG("pic1 mask %02x\n", eisa_in8(0xa1));
162 }
163
164 /* called by request irq */
165 static void eisa_enable_irq(unsigned int irq)
166 {
167         unsigned long flags;
168         EISA_DBG("enable irq %d\n", irq);
169                 
170         spin_lock_irqsave(&eisa_irq_lock, flags);
171         if (irq & 8) {
172                 slave_mask &= ~(1 << (irq&7));
173                 eisa_out8(slave_mask, 0xa1);
174         } else {
175                 master_mask &= ~(1 << (irq&7));
176                 eisa_out8(master_mask, 0x21);
177         }
178         spin_unlock_irqrestore(&eisa_irq_lock, flags);
179         EISA_DBG("pic0 mask %02x\n", eisa_in8(0x21));
180         EISA_DBG("pic1 mask %02x\n", eisa_in8(0xa1));
181 }
182
183 static unsigned int eisa_startup_irq(unsigned int irq)
184 {
185         eisa_enable_irq(irq);
186         return 0;
187 }
188
189 static struct hw_interrupt_type eisa_interrupt_type = {
190         .typename =     "EISA",
191         .startup =      eisa_startup_irq,
192         .shutdown =     eisa_disable_irq,
193         .enable =       eisa_enable_irq,
194         .disable =      eisa_disable_irq,
195         .ack =          no_ack_irq,
196         .end =          no_end_irq,
197 };
198
199 static irqreturn_t eisa_irq(int wax_irq, void *intr_dev, struct pt_regs *regs)
200 {
201         int irq = gsc_readb(0xfc01f000); /* EISA supports 16 irqs */
202         unsigned long flags;
203         
204         spin_lock_irqsave(&eisa_irq_lock, flags);
205         /* read IRR command */
206         eisa_out8(0x0a, 0x20);
207         eisa_out8(0x0a, 0xa0);
208
209         EISA_DBG("irq IAR %02x 8259-1 irr %02x 8259-2 irr %02x\n",
210                    irq, eisa_in8(0x20), eisa_in8(0xa0));
211    
212         /* read ISR command */
213         eisa_out8(0x0a, 0x20);
214         eisa_out8(0x0a, 0xa0);
215         EISA_DBG("irq 8259-1 isr %02x imr %02x 8259-2 isr %02x imr %02x\n",
216                  eisa_in8(0x20), eisa_in8(0x21), eisa_in8(0xa0), eisa_in8(0xa1));
217         
218         irq &= 0xf;
219         
220         /* mask irq and write eoi */
221         if (irq & 8) {
222                 slave_mask |= (1 << (irq&7));
223                 eisa_out8(slave_mask, 0xa1);
224                 eisa_out8(0x60 | (irq&7),0xa0);/* 'Specific EOI' to slave */
225                 eisa_out8(0x62,0x20);   /* 'Specific EOI' to master-IRQ2 */
226                 
227         } else {
228                 master_mask |= (1 << (irq&7));
229                 eisa_out8(master_mask, 0x21);
230                 eisa_out8(0x60|irq,0x20);       /* 'Specific EOI' to master */
231         }
232         spin_unlock_irqrestore(&eisa_irq_lock, flags);
233
234         __do_IRQ(irq, regs);
235    
236         spin_lock_irqsave(&eisa_irq_lock, flags);
237         /* unmask */
238         if (irq & 8) {
239                 slave_mask &= ~(1 << (irq&7));
240                 eisa_out8(slave_mask, 0xa1);
241         } else {
242                 master_mask &= ~(1 << (irq&7));
243                 eisa_out8(master_mask, 0x21);
244         }
245         spin_unlock_irqrestore(&eisa_irq_lock, flags);
246         return IRQ_HANDLED;
247 }
248
249 static irqreturn_t dummy_irq2_handler(int _, void *dev, struct pt_regs *regs)
250 {
251         printk(KERN_ALERT "eisa: uhh, irq2?\n");
252         return IRQ_HANDLED;
253 }
254
255 static struct irqaction irq2_action = {
256         .handler = dummy_irq2_handler,
257         .name = "cascade",
258 };
259
260 static void init_eisa_pic(void)
261 {
262         unsigned long flags;
263         
264         spin_lock_irqsave(&eisa_irq_lock, flags);
265
266         eisa_out8(0xff, 0x21); /* mask during init */
267         eisa_out8(0xff, 0xa1); /* mask during init */
268         
269         /* master pic */
270         eisa_out8(0x11,0x20); /* ICW1 */   
271         eisa_out8(0x00,0x21); /* ICW2 */   
272         eisa_out8(0x04,0x21); /* ICW3 */   
273         eisa_out8(0x01,0x21); /* ICW4 */   
274         eisa_out8(0x40,0x20); /* OCW2 */   
275         
276         /* slave pic */
277         eisa_out8(0x11,0xa0); /* ICW1 */   
278         eisa_out8(0x08,0xa1); /* ICW2 */   
279         eisa_out8(0x02,0xa1); /* ICW3 */   
280         eisa_out8(0x01,0xa1); /* ICW4 */   
281         eisa_out8(0x40,0xa0); /* OCW2 */   
282         
283         udelay(100);
284         
285         slave_mask = 0xff; 
286         master_mask = 0xfb; 
287         eisa_out8(slave_mask, 0xa1); /* OCW1 */
288         eisa_out8(master_mask, 0x21); /* OCW1 */
289         
290         /* setup trig level */
291         EISA_DBG("EISA edge/level %04x\n", eisa_irq_level);
292         
293         eisa_out8(eisa_irq_level&0xff, 0x4d0); /* Set all irq's to edge  */
294         eisa_out8((eisa_irq_level >> 8) & 0xff, 0x4d1); 
295         
296         EISA_DBG("pic0 mask %02x\n", eisa_in8(0x21));
297         EISA_DBG("pic1 mask %02x\n", eisa_in8(0xa1));
298         EISA_DBG("pic0 edge/level %02x\n", eisa_in8(0x4d0));
299         EISA_DBG("pic1 edge/level %02x\n", eisa_in8(0x4d1));
300         
301         spin_unlock_irqrestore(&eisa_irq_lock, flags);
302 }
303
304 /* Device initialisation */
305
306 #define is_mongoose(dev) (dev->id.sversion == 0x00076)
307
308 static int __devinit eisa_probe(struct parisc_device *dev)
309 {
310         int i, result;
311
312         char *name = is_mongoose(dev) ? "Mongoose" : "Wax";
313
314         printk(KERN_INFO "%s EISA Adapter found at 0x%08lx\n", 
315                 name, dev->hpa);
316
317         eisa_dev.hba.dev = dev;
318         eisa_dev.hba.iommu = ccio_get_iommu(dev);
319
320         eisa_dev.hba.lmmio_space.name = "EISA";
321         eisa_dev.hba.lmmio_space.start = F_EXTEND(0xfc000000);
322         eisa_dev.hba.lmmio_space.end = F_EXTEND(0xffbfffff);
323         eisa_dev.hba.lmmio_space.flags = IORESOURCE_MEM;
324         result = ccio_request_resource(dev, &eisa_dev.hba.lmmio_space);
325         if (result < 0) {
326                 printk(KERN_ERR "EISA: failed to claim EISA Bus address space!\n");
327                 return result;
328         }
329         eisa_dev.hba.io_space.name = "EISA";
330         eisa_dev.hba.io_space.start = 0;
331         eisa_dev.hba.io_space.end = 0xffff;
332         eisa_dev.hba.lmmio_space.flags = IORESOURCE_IO;
333         result = request_resource(&ioport_resource, &eisa_dev.hba.io_space);
334         if (result < 0) {
335                 printk(KERN_ERR "EISA: failed to claim EISA Bus port space!\n");
336                 return result;
337         }
338         pcibios_register_hba(&eisa_dev.hba);
339
340         result = request_irq(dev->irq, eisa_irq, SA_SHIRQ, "EISA", &eisa_dev);
341         if (result) {
342                 printk(KERN_ERR "EISA: request_irq failed!\n");
343                 return result;
344         }
345         
346         /* Reserve IRQ2 */
347         irq_desc[2].action = &irq2_action;
348         
349         for (i = 0; i < 16; i++) {
350                 irq_desc[i].handler = &eisa_interrupt_type;
351         }
352         
353         EISA_bus = 1;
354         if (dev->num_addrs) {
355                 /* newer firmware hand out the eeprom address */
356                 eisa_dev.eeprom_addr = dev->addr[0];
357         } else {
358                 /* old firmware, need to figure out the box */
359                 if (is_mongoose(dev)) {
360                         eisa_dev.eeprom_addr = SNAKES_EEPROM_BASE_ADDR;
361                 } else {
362                         eisa_dev.eeprom_addr = MIRAGE_EEPROM_BASE_ADDR;
363                 }
364         }
365         eisa_eeprom_init(eisa_dev.eeprom_addr);
366         result = eisa_enumerator(eisa_dev.eeprom_addr, &eisa_dev.hba.io_space, &eisa_dev.hba.lmmio_space);
367         init_eisa_pic();
368
369         if (result >= 0) {
370                 /* FIXME : Don't enumerate the bus twice. */
371                 eisa_dev.root.dev = &dev->dev;
372                 dev->dev.driver_data = &eisa_dev.root;
373                 eisa_dev.root.bus_base_addr = 0;
374                 eisa_dev.root.res = &eisa_dev.hba.io_space;
375                 eisa_dev.root.slots = result;
376                 eisa_dev.root.dma_mask = 0xffffffff; /* wild guess */
377                 if (eisa_root_register (&eisa_dev.root)) {
378                         printk(KERN_ERR "EISA: Failed to register EISA root\n");
379                         return -1;
380                 }
381         }
382         
383         return 0;
384 }
385
386 static struct parisc_device_id eisa_tbl[] = {
387         { HPHW_BA, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00076 }, /* Mongoose */
388         { HPHW_BA, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00090 }, /* Wax EISA */
389         { 0, }
390 };
391
392 MODULE_DEVICE_TABLE(parisc, eisa_tbl);
393
394 static struct parisc_driver eisa_driver = {
395         .name =         "EISA Bus Adapter",
396         .id_table =     eisa_tbl,
397         .probe =        eisa_probe,
398 };
399
400 void __init eisa_init(void)
401 {
402         register_parisc_driver(&eisa_driver);
403 }
404
405
406 static unsigned int eisa_irq_configured;
407 void eisa_make_irq_level(int num)
408 {
409         if (eisa_irq_configured& (1<<num)) {
410                 printk(KERN_WARNING
411                        "IRQ %d polarity configured twice (last to level)\n", 
412                        num);
413         }
414         eisa_irq_level |= (1<<num); /* set the corresponding bit */
415         eisa_irq_configured |= (1<<num); /* set the corresponding bit */
416 }
417
418 void eisa_make_irq_edge(int num)
419 {
420         if (eisa_irq_configured& (1<<num)) {
421                 printk(KERN_WARNING 
422                        "IRQ %d polarity configured twice (last to edge)\n",
423                        num);
424         }
425         eisa_irq_level &= ~(1<<num); /* clear the corresponding bit */
426         eisa_irq_configured |= (1<<num); /* set the corresponding bit */
427 }
428
429 static int __init eisa_irq_setup(char *str)
430 {
431         char *cur = str;
432         int val;
433
434         EISA_DBG("IRQ setup\n");
435         while (cur != NULL) {
436                 char *pe;
437                 
438                 val = (int) simple_strtoul(cur, &pe, 0);
439                 if (val > 15 || val < 0) {
440                         printk(KERN_ERR "eisa: EISA irq value are 0-15\n");
441                         continue;
442                 }
443                 if (val == 2) { 
444                         val = 9;
445                 }
446                 eisa_make_irq_edge(val); /* clear the corresponding bit */
447                 EISA_DBG("setting IRQ %d to edge-triggered mode\n", val);
448                 
449                 if ((cur = strchr(cur, ','))) {
450                         cur++;
451                 } else {
452                         break;
453                 }
454         }
455         return 1;
456 }
457
458 __setup("eisa_irq_edge=", eisa_irq_setup);
459