[TG3]: Set minimal hw interrupt mitigation.
[linux-2.6/verdex.git] / drivers / isdn / sc / init.c
blobefefedea37b9a8dddf085fcb7c287c9014c3497a
1 /*
2 * This software may be used and distributed according to the terms
3 * of the GNU General Public License, incorporated herein by reference.
5 */
7 #include <linux/module.h>
8 #include <linux/init.h>
9 #include <linux/interrupt.h>
10 #include <linux/delay.h>
11 #include "includes.h"
12 #include "hardware.h"
13 #include "card.h"
15 MODULE_DESCRIPTION("ISDN4Linux: Driver for Spellcaster card");
16 MODULE_AUTHOR("Spellcaster Telecommunications Inc.");
17 MODULE_LICENSE("GPL");
19 board *sc_adapter[MAX_CARDS];
20 int cinst;
22 static char devname[] = "scX";
23 const char version[] = "2.0b1";
25 const char *boardname[] = { "DataCommute/BRI", "DataCommute/PRI", "TeleCommute/BRI" };
27 /* insmod set parameters */
28 static unsigned int io[] = {0,0,0,0};
29 static unsigned char irq[] = {0,0,0,0};
30 static unsigned long ram[] = {0,0,0,0};
31 static int do_reset = 0;
33 module_param_array(io, int, NULL, 0);
34 module_param_array(irq, int, NULL, 0);
35 module_param_array(ram, int, NULL, 0);
36 module_param(do_reset, bool, 0);
38 static int sup_irq[] = { 11, 10, 9, 5, 12, 14, 7, 3, 4, 6 };
39 #define MAX_IRQS 10
41 extern irqreturn_t interrupt_handler(int, void *, struct pt_regs *);
42 extern int sndpkt(int, int, int, struct sk_buff *);
43 extern int command(isdn_ctrl *);
44 extern int indicate_status(int, int, ulong, char*);
45 extern int reset(int);
47 int identify_board(unsigned long, unsigned int);
49 int irq_supported(int irq_x)
51 int i;
52 for(i=0 ; i < MAX_IRQS ; i++) {
53 if(sup_irq[i] == irq_x)
54 return 1;
56 return 0;
59 static int __init sc_init(void)
61 int b = -1;
62 int i, j;
63 int status = -ENODEV;
65 unsigned long memsize = 0;
66 unsigned long features = 0;
67 isdn_if *interface;
68 unsigned char channels;
69 unsigned char pgport;
70 unsigned long magic;
71 int model;
72 int last_base = IOBASE_MIN;
73 int probe_exhasted = 0;
75 #ifdef MODULE
76 pr_info("SpellCaster ISA ISDN Adapter Driver rev. %s Loaded\n", version);
77 #else
78 pr_info("SpellCaster ISA ISDN Adapter Driver rev. %s\n", version);
79 #endif
80 pr_info("Copyright (C) 1996 SpellCaster Telecommunications Inc.\n");
82 while(b++ < MAX_CARDS - 1) {
83 pr_debug("Probing for adapter #%d\n", b);
85 * Initialize reusable variables
87 model = -1;
88 magic = 0;
89 channels = 0;
90 pgport = 0;
92 /*
93 * See if we should probe for IO base
95 pr_debug("I/O Base for board %d is 0x%x, %s probe\n", b, io[b],
96 io[b] == 0 ? "will" : "won't");
97 if(io[b]) {
99 * No, I/O Base has been provided
101 for (i = 0 ; i < MAX_IO_REGS - 1 ; i++) {
102 if(!request_region(io[b] + i * 0x400, 1, "sc test")) {
103 pr_debug("check_region for 0x%x failed\n", io[b] + i * 0x400);
104 io[b] = 0;
105 break;
106 } else
107 release_region(io[b] + i * 0x400, 1);
111 * Confirm the I/O Address with a test
113 if(io[b] == 0) {
114 pr_debug("I/O Address 0x%x is in use.\n");
115 continue;
118 outb(0x18, io[b] + 0x400 * EXP_PAGE0);
119 if(inb(io[b] + 0x400 * EXP_PAGE0) != 0x18) {
120 pr_debug("I/O Base 0x%x fails test\n");
121 continue;
124 else {
126 * Yes, probe for I/O Base
128 if(probe_exhasted) {
129 pr_debug("All probe addresses exhasted, skipping\n");
130 continue;
132 pr_debug("Probing for I/O...\n");
133 for (i = last_base ; i <= IOBASE_MAX ; i += IOBASE_OFFSET) {
134 int found_io = 1;
135 if (i == IOBASE_MAX) {
136 probe_exhasted = 1; /* No more addresses to probe */
137 pr_debug("End of Probes\n");
139 last_base = i + IOBASE_OFFSET;
140 pr_debug(" checking 0x%x...", i);
141 for ( j = 0 ; j < MAX_IO_REGS - 1 ; j++) {
142 if(!request_region(i + j * 0x400, 1, "sc test")) {
143 pr_debug("Failed\n");
144 found_io = 0;
145 break;
146 } else
147 release_region(i + j * 0x400, 1);
150 if(found_io) {
151 io[b] = i;
152 outb(0x18, io[b] + 0x400 * EXP_PAGE0);
153 if(inb(io[b] + 0x400 * EXP_PAGE0) != 0x18) {
154 pr_debug("Failed by test\n");
155 continue;
157 pr_debug("Passed\n");
158 break;
161 if(probe_exhasted) {
162 continue;
167 * See if we should probe for shared RAM
169 if(do_reset) {
170 pr_debug("Doing a SAFE probe reset\n");
171 outb(0xFF, io[b] + RESET_OFFSET);
172 msleep_interruptible(10000);
174 pr_debug("RAM Base for board %d is 0x%x, %s probe\n", b, ram[b],
175 ram[b] == 0 ? "will" : "won't");
177 if(ram[b]) {
179 * No, the RAM base has been provided
180 * Just look for a signature and ID the
181 * board model
183 if(request_region(ram[b], SRAM_PAGESIZE, "sc test")) {
184 pr_debug("request_region for RAM base 0x%x succeeded\n", ram[b]);
185 model = identify_board(ram[b], io[b]);
186 release_region(ram[b], SRAM_PAGESIZE);
189 else {
191 * Yes, probe for free RAM and look for
192 * a signature and id the board model
194 for (i = SRAM_MIN ; i < SRAM_MAX ; i += SRAM_PAGESIZE) {
195 pr_debug("Checking RAM address 0x%x...\n", i);
196 if(request_region(i, SRAM_PAGESIZE, "sc test")) {
197 pr_debug(" check_region succeeded\n");
198 model = identify_board(i, io[b]);
199 release_region(i, SRAM_PAGESIZE);
200 if (model >= 0) {
201 pr_debug(" Identified a %s\n",
202 boardname[model]);
203 ram[b] = i;
204 break;
206 pr_debug(" Unidentifed or inaccessible\n");
207 continue;
209 pr_debug(" request failed\n");
213 * See if we found free RAM and the board model
215 if(!ram[b] || model < 0) {
217 * Nope, there was no place in RAM for the
218 * board, or it couldn't be identified
220 pr_debug("Failed to find an adapter at 0x%x\n", ram[b]);
221 continue;
225 * Set the board's magic number, memory size and page register
227 switch(model) {
228 case PRI_BOARD:
229 channels = 23;
230 magic = 0x20000;
231 memsize = 0x100000;
232 features = PRI_FEATURES;
233 break;
235 case BRI_BOARD:
236 case POTS_BOARD:
237 channels = 2;
238 magic = 0x60000;
239 memsize = 0x10000;
240 features = BRI_FEATURES;
241 break;
243 switch(ram[b] >> 12 & 0x0F) {
244 case 0x0:
245 pr_debug("RAM Page register set to EXP_PAGE0\n");
246 pgport = EXP_PAGE0;
247 break;
249 case 0x4:
250 pr_debug("RAM Page register set to EXP_PAGE1\n");
251 pgport = EXP_PAGE1;
252 break;
254 case 0x8:
255 pr_debug("RAM Page register set to EXP_PAGE2\n");
256 pgport = EXP_PAGE2;
257 break;
259 case 0xC:
260 pr_debug("RAM Page register set to EXP_PAGE3\n");
261 pgport = EXP_PAGE3;
262 break;
264 default:
265 pr_debug("RAM base address doesn't fall on 16K boundary\n");
266 continue;
269 pr_debug("current IRQ: %d b: %d\n",irq[b],b);
272 * Make sure we got an IRQ
274 if(!irq[b]) {
276 * No interrupt could be used
278 pr_debug("Failed to acquire an IRQ line\n");
279 continue;
283 * Horray! We found a board, Make sure we can register
284 * it with ISDN4Linux
286 interface = kmalloc(sizeof(isdn_if), GFP_KERNEL);
287 if (interface == NULL) {
289 * Oops, can't malloc isdn_if
291 continue;
293 memset(interface, 0, sizeof(isdn_if));
295 interface->owner = THIS_MODULE;
296 interface->hl_hdrlen = 0;
297 interface->channels = channels;
298 interface->maxbufsize = BUFFER_SIZE;
299 interface->features = features;
300 interface->writebuf_skb = sndpkt;
301 interface->writecmd = NULL;
302 interface->command = command;
303 strcpy(interface->id, devname);
304 interface->id[2] = '0' + cinst;
307 * Allocate the board structure
309 sc_adapter[cinst] = kmalloc(sizeof(board), GFP_KERNEL);
310 if (sc_adapter[cinst] == NULL) {
312 * Oops, can't alloc memory for the board
314 kfree(interface);
315 continue;
317 memset(sc_adapter[cinst], 0, sizeof(board));
318 spin_lock_init(&sc_adapter[cinst]->lock);
320 if(!register_isdn(interface)) {
322 * Oops, couldn't register for some reason
324 kfree(interface);
325 kfree(sc_adapter[cinst]);
326 continue;
329 sc_adapter[cinst]->card = interface;
330 sc_adapter[cinst]->driverId = interface->channels;
331 strcpy(sc_adapter[cinst]->devicename, interface->id);
332 sc_adapter[cinst]->nChannels = channels;
333 sc_adapter[cinst]->ramsize = memsize;
334 sc_adapter[cinst]->shmem_magic = magic;
335 sc_adapter[cinst]->shmem_pgport = pgport;
336 sc_adapter[cinst]->StartOnReset = 1;
339 * Allocate channels status structures
341 sc_adapter[cinst]->channel = kmalloc(sizeof(bchan) * channels, GFP_KERNEL);
342 if (sc_adapter[cinst]->channel == NULL) {
344 * Oops, can't alloc memory for the channels
346 indicate_status(cinst, ISDN_STAT_UNLOAD, 0, NULL); /* Fix me */
347 kfree(interface);
348 kfree(sc_adapter[cinst]);
349 continue;
351 memset(sc_adapter[cinst]->channel, 0, sizeof(bchan) * channels);
354 * Lock down the hardware resources
356 sc_adapter[cinst]->interrupt = irq[b];
357 if (request_irq(sc_adapter[cinst]->interrupt, interrupt_handler,
358 SA_INTERRUPT, interface->id, NULL))
360 kfree(sc_adapter[cinst]->channel);
361 indicate_status(cinst, ISDN_STAT_UNLOAD, 0, NULL); /* Fix me */
362 kfree(interface);
363 kfree(sc_adapter[cinst]);
364 continue;
367 sc_adapter[cinst]->iobase = io[b];
368 for(i = 0 ; i < MAX_IO_REGS - 1 ; i++) {
369 sc_adapter[cinst]->ioport[i] = io[b] + i * 0x400;
370 request_region(sc_adapter[cinst]->ioport[i], 1,
371 interface->id);
372 pr_debug("Requesting I/O Port %#x\n",
373 sc_adapter[cinst]->ioport[i]);
375 sc_adapter[cinst]->ioport[IRQ_SELECT] = io[b] + 0x2;
376 request_region(sc_adapter[cinst]->ioport[IRQ_SELECT], 1,
377 interface->id);
378 pr_debug("Requesting I/O Port %#x\n",
379 sc_adapter[cinst]->ioport[IRQ_SELECT]);
380 sc_adapter[cinst]->rambase = ram[b];
381 request_region(sc_adapter[cinst]->rambase, SRAM_PAGESIZE,
382 interface->id);
384 pr_info(" %s (%d) - %s %d channels IRQ %d, I/O Base 0x%x, RAM Base 0x%lx\n",
385 sc_adapter[cinst]->devicename,
386 sc_adapter[cinst]->driverId,
387 boardname[model], channels, irq[b], io[b], ram[b]);
390 * reset the adapter to put things in motion
392 reset(cinst);
394 cinst++;
395 status = 0;
397 if (status)
398 pr_info("Failed to find any adapters, driver unloaded\n");
399 return status;
402 static void __exit sc_exit(void)
404 int i, j;
406 for(i = 0 ; i < cinst ; i++) {
407 pr_debug("Cleaning up after adapter %d\n", i);
409 * kill the timers
411 del_timer(&(sc_adapter[i]->reset_timer));
412 del_timer(&(sc_adapter[i]->stat_timer));
415 * Tell I4L we're toast
417 indicate_status(i, ISDN_STAT_STOP, 0, NULL);
418 indicate_status(i, ISDN_STAT_UNLOAD, 0, NULL);
421 * Release shared RAM
423 release_region(sc_adapter[i]->rambase, SRAM_PAGESIZE);
426 * Release the IRQ
428 FREE_IRQ(sc_adapter[i]->interrupt, NULL);
431 * Reset for a clean start
433 outb(0xFF, sc_adapter[i]->ioport[SFT_RESET]);
436 * Release the I/O Port regions
438 for(j = 0 ; j < MAX_IO_REGS - 1; j++) {
439 release_region(sc_adapter[i]->ioport[j], 1);
440 pr_debug("Releasing I/O Port %#x\n",
441 sc_adapter[i]->ioport[j]);
443 release_region(sc_adapter[i]->ioport[IRQ_SELECT], 1);
444 pr_debug("Releasing I/O Port %#x\n",
445 sc_adapter[i]->ioport[IRQ_SELECT]);
448 * Release any memory we alloced
450 kfree(sc_adapter[i]->channel);
451 kfree(sc_adapter[i]->card);
452 kfree(sc_adapter[i]);
454 pr_info("SpellCaster ISA ISDN Adapter Driver Unloaded.\n");
457 int identify_board(unsigned long rambase, unsigned int iobase)
459 unsigned int pgport;
460 unsigned long sig;
461 DualPortMemory *dpm;
462 RspMessage rcvmsg;
463 ReqMessage sndmsg;
464 HWConfig_pl hwci;
465 int x;
467 pr_debug("Attempting to identify adapter @ 0x%x io 0x%x\n",
468 rambase, iobase);
471 * Enable the base pointer
473 outb(rambase >> 12, iobase + 0x2c00);
475 switch(rambase >> 12 & 0x0F) {
476 case 0x0:
477 pgport = iobase + PG0_OFFSET;
478 pr_debug("Page Register offset is 0x%x\n", PG0_OFFSET);
479 break;
481 case 0x4:
482 pgport = iobase + PG1_OFFSET;
483 pr_debug("Page Register offset is 0x%x\n", PG1_OFFSET);
484 break;
486 case 0x8:
487 pgport = iobase + PG2_OFFSET;
488 pr_debug("Page Register offset is 0x%x\n", PG2_OFFSET);
489 break;
491 case 0xC:
492 pgport = iobase + PG3_OFFSET;
493 pr_debug("Page Register offset is 0x%x\n", PG3_OFFSET);
494 break;
495 default:
496 pr_debug("Invalid rambase 0x%lx\n", rambase);
497 return -1;
501 * Try to identify a PRI card
503 outb(PRI_BASEPG_VAL, pgport);
504 msleep_interruptible(1000);
505 sig = readl(rambase + SIG_OFFSET);
506 pr_debug("Looking for a signature, got 0x%x\n", sig);
507 if(sig == SIGNATURE)
508 return PRI_BOARD;
511 * Try to identify a PRI card
513 outb(BRI_BASEPG_VAL, pgport);
514 msleep_interruptible(1000);
515 sig = readl(rambase + SIG_OFFSET);
516 pr_debug("Looking for a signature, got 0x%x\n", sig);
517 if(sig == SIGNATURE)
518 return BRI_BOARD;
520 return -1;
523 * Try to spot a card
525 sig = readl(rambase + SIG_OFFSET);
526 pr_debug("Looking for a signature, got 0x%x\n", sig);
527 if(sig != SIGNATURE)
528 return -1;
530 dpm = (DualPortMemory *) rambase;
532 memset(&sndmsg, 0, MSG_LEN);
533 sndmsg.msg_byte_cnt = 3;
534 sndmsg.type = cmReqType1;
535 sndmsg.class = cmReqClass0;
536 sndmsg.code = cmReqHWConfig;
537 memcpy_toio(&(dpm->req_queue[dpm->req_head++]), &sndmsg, MSG_LEN);
538 outb(0, iobase + 0x400);
539 pr_debug("Sent HWConfig message\n");
541 * Wait for the response
543 x = 0;
544 while((inb(iobase + FIFOSTAT_OFFSET) & RF_HAS_DATA) && x < 100) {
545 set_current_state(TASK_INTERRUPTIBLE);
546 schedule_timeout(1);
547 x++;
549 if(x == 100) {
550 pr_debug("Timeout waiting for response\n");
551 return -1;
554 memcpy_fromio(&rcvmsg, &(dpm->rsp_queue[dpm->rsp_tail]), MSG_LEN);
555 pr_debug("Got HWConfig response, status = 0x%x\n", rcvmsg.rsp_status);
556 memcpy(&hwci, &(rcvmsg.msg_data.HWCresponse), sizeof(HWConfig_pl));
557 pr_debug("Hardware Config: Interface: %s, RAM Size: %d, Serial: %s\n"
558 " Part: %s, Rev: %s\n",
559 hwci.st_u_sense ? "S/T" : "U", hwci.ram_size,
560 hwci.serial_no, hwci.part_no, hwci.rev_no);
562 if(!strncmp(PRI_PARTNO, hwci.part_no, 6))
563 return PRI_BOARD;
564 if(!strncmp(BRI_PARTNO, hwci.part_no, 6))
565 return BRI_BOARD;
567 return -1;
570 module_init(sc_init);
571 module_exit(sc_exit);