GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / isdn / sc / init.c
blobca710ab278ec49788a50a483375c7de08b340a1b
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 <linux/sched.h>
12 #include <linux/slab.h>
13 #include "includes.h"
14 #include "hardware.h"
15 #include "card.h"
17 MODULE_DESCRIPTION("ISDN4Linux: Driver for Spellcaster card");
18 MODULE_AUTHOR("Spellcaster Telecommunications Inc.");
19 MODULE_LICENSE("GPL");
21 board *sc_adapter[MAX_CARDS];
22 int cinst;
24 static char devname[] = "scX";
25 static const char version[] = "2.0b1";
27 static const char *boardname[] = { "DataCommute/BRI", "DataCommute/PRI", "TeleCommute/BRI" };
29 /* insmod set parameters */
30 static unsigned int io[] = {0,0,0,0};
31 static unsigned char irq[] = {0,0,0,0};
32 static unsigned long ram[] = {0,0,0,0};
33 static int do_reset = 0;
35 module_param_array(io, int, NULL, 0);
36 module_param_array(irq, int, NULL, 0);
37 module_param_array(ram, int, NULL, 0);
38 module_param(do_reset, bool, 0);
40 static int identify_board(unsigned long, unsigned int);
42 static int __init sc_init(void)
44 int b = -1;
45 int i, j;
46 int status = -ENODEV;
48 unsigned long memsize = 0;
49 unsigned long features = 0;
50 isdn_if *interface;
51 unsigned char channels;
52 unsigned char pgport;
53 unsigned long magic;
54 int model;
55 int last_base = IOBASE_MIN;
56 int probe_exhasted = 0;
58 #ifdef MODULE
59 pr_info("SpellCaster ISA ISDN Adapter Driver rev. %s Loaded\n", version);
60 #else
61 pr_info("SpellCaster ISA ISDN Adapter Driver rev. %s\n", version);
62 #endif
63 pr_info("Copyright (C) 1996 SpellCaster Telecommunications Inc.\n");
65 while(b++ < MAX_CARDS - 1) {
66 pr_debug("Probing for adapter #%d\n", b);
68 * Initialize reusable variables
70 model = -1;
71 magic = 0;
72 channels = 0;
73 pgport = 0;
75 /*
76 * See if we should probe for IO base
78 pr_debug("I/O Base for board %d is 0x%x, %s probe\n", b, io[b],
79 io[b] == 0 ? "will" : "won't");
80 if(io[b]) {
82 * No, I/O Base has been provided
84 for (i = 0 ; i < MAX_IO_REGS - 1 ; i++) {
85 if(!request_region(io[b] + i * 0x400, 1, "sc test")) {
86 pr_debug("request_region for 0x%x failed\n", io[b] + i * 0x400);
87 io[b] = 0;
88 break;
89 } else
90 release_region(io[b] + i * 0x400, 1);
94 * Confirm the I/O Address with a test
96 if(io[b] == 0) {
97 pr_debug("I/O Address invalid.\n");
98 continue;
101 outb(0x18, io[b] + 0x400 * EXP_PAGE0);
102 if(inb(io[b] + 0x400 * EXP_PAGE0) != 0x18) {
103 pr_debug("I/O Base 0x%x fails test\n",
104 io[b] + 0x400 * EXP_PAGE0);
105 continue;
108 else {
110 * Yes, probe for I/O Base
112 if(probe_exhasted) {
113 pr_debug("All probe addresses exhasted, skipping\n");
114 continue;
116 pr_debug("Probing for I/O...\n");
117 for (i = last_base ; i <= IOBASE_MAX ; i += IOBASE_OFFSET) {
118 int found_io = 1;
119 if (i == IOBASE_MAX) {
120 probe_exhasted = 1; /* No more addresses to probe */
121 pr_debug("End of Probes\n");
123 last_base = i + IOBASE_OFFSET;
124 pr_debug(" checking 0x%x...", i);
125 for ( j = 0 ; j < MAX_IO_REGS - 1 ; j++) {
126 if(!request_region(i + j * 0x400, 1, "sc test")) {
127 pr_debug("Failed\n");
128 found_io = 0;
129 break;
130 } else
131 release_region(i + j * 0x400, 1);
134 if(found_io) {
135 io[b] = i;
136 outb(0x18, io[b] + 0x400 * EXP_PAGE0);
137 if(inb(io[b] + 0x400 * EXP_PAGE0) != 0x18) {
138 pr_debug("Failed by test\n");
139 continue;
141 pr_debug("Passed\n");
142 break;
145 if(probe_exhasted) {
146 continue;
151 * See if we should probe for shared RAM
153 if(do_reset) {
154 pr_debug("Doing a SAFE probe reset\n");
155 outb(0xFF, io[b] + RESET_OFFSET);
156 msleep_interruptible(10000);
158 pr_debug("RAM Base for board %d is 0x%lx, %s probe\n", b,
159 ram[b], ram[b] == 0 ? "will" : "won't");
161 if(ram[b]) {
163 * No, the RAM base has been provided
164 * Just look for a signature and ID the
165 * board model
167 if(request_region(ram[b], SRAM_PAGESIZE, "sc test")) {
168 pr_debug("request_region for RAM base 0x%lx succeeded\n", ram[b]);
169 model = identify_board(ram[b], io[b]);
170 release_region(ram[b], SRAM_PAGESIZE);
173 else {
175 * Yes, probe for free RAM and look for
176 * a signature and id the board model
178 for (i = SRAM_MIN ; i < SRAM_MAX ; i += SRAM_PAGESIZE) {
179 pr_debug("Checking RAM address 0x%x...\n", i);
180 if(request_region(i, SRAM_PAGESIZE, "sc test")) {
181 pr_debug(" request_region succeeded\n");
182 model = identify_board(i, io[b]);
183 release_region(i, SRAM_PAGESIZE);
184 if (model >= 0) {
185 pr_debug(" Identified a %s\n",
186 boardname[model]);
187 ram[b] = i;
188 break;
190 pr_debug(" Unidentifed or inaccessible\n");
191 continue;
193 pr_debug(" request failed\n");
197 * See if we found free RAM and the board model
199 if(!ram[b] || model < 0) {
201 * Nope, there was no place in RAM for the
202 * board, or it couldn't be identified
204 pr_debug("Failed to find an adapter at 0x%lx\n", ram[b]);
205 continue;
209 * Set the board's magic number, memory size and page register
211 switch(model) {
212 case PRI_BOARD:
213 channels = 23;
214 magic = 0x20000;
215 memsize = 0x100000;
216 features = PRI_FEATURES;
217 break;
219 case BRI_BOARD:
220 case POTS_BOARD:
221 channels = 2;
222 magic = 0x60000;
223 memsize = 0x10000;
224 features = BRI_FEATURES;
225 break;
227 switch(ram[b] >> 12 & 0x0F) {
228 case 0x0:
229 pr_debug("RAM Page register set to EXP_PAGE0\n");
230 pgport = EXP_PAGE0;
231 break;
233 case 0x4:
234 pr_debug("RAM Page register set to EXP_PAGE1\n");
235 pgport = EXP_PAGE1;
236 break;
238 case 0x8:
239 pr_debug("RAM Page register set to EXP_PAGE2\n");
240 pgport = EXP_PAGE2;
241 break;
243 case 0xC:
244 pr_debug("RAM Page register set to EXP_PAGE3\n");
245 pgport = EXP_PAGE3;
246 break;
248 default:
249 pr_debug("RAM base address doesn't fall on 16K boundary\n");
250 continue;
253 pr_debug("current IRQ: %d b: %d\n",irq[b],b);
256 * Make sure we got an IRQ
258 if(!irq[b]) {
260 * No interrupt could be used
262 pr_debug("Failed to acquire an IRQ line\n");
263 continue;
267 * Horray! We found a board, Make sure we can register
268 * it with ISDN4Linux
270 interface = kzalloc(sizeof(isdn_if), GFP_KERNEL);
271 if (interface == NULL) {
273 * Oops, can't malloc isdn_if
275 continue;
278 interface->owner = THIS_MODULE;
279 interface->hl_hdrlen = 0;
280 interface->channels = channels;
281 interface->maxbufsize = BUFFER_SIZE;
282 interface->features = features;
283 interface->writebuf_skb = sndpkt;
284 interface->writecmd = NULL;
285 interface->command = command;
286 strcpy(interface->id, devname);
287 interface->id[2] = '0' + cinst;
290 * Allocate the board structure
292 sc_adapter[cinst] = kzalloc(sizeof(board), GFP_KERNEL);
293 if (sc_adapter[cinst] == NULL) {
295 * Oops, can't alloc memory for the board
297 kfree(interface);
298 continue;
300 spin_lock_init(&sc_adapter[cinst]->lock);
302 if(!register_isdn(interface)) {
304 * Oops, couldn't register for some reason
306 kfree(interface);
307 kfree(sc_adapter[cinst]);
308 continue;
311 sc_adapter[cinst]->card = interface;
312 sc_adapter[cinst]->driverId = interface->channels;
313 strcpy(sc_adapter[cinst]->devicename, interface->id);
314 sc_adapter[cinst]->nChannels = channels;
315 sc_adapter[cinst]->ramsize = memsize;
316 sc_adapter[cinst]->shmem_magic = magic;
317 sc_adapter[cinst]->shmem_pgport = pgport;
318 sc_adapter[cinst]->StartOnReset = 1;
321 * Allocate channels status structures
323 sc_adapter[cinst]->channel = kzalloc(sizeof(bchan) * channels, GFP_KERNEL);
324 if (sc_adapter[cinst]->channel == NULL) {
326 * Oops, can't alloc memory for the channels
328 indicate_status(cinst, ISDN_STAT_UNLOAD, 0, NULL); /* Fix me */
329 kfree(interface);
330 kfree(sc_adapter[cinst]);
331 continue;
335 * Lock down the hardware resources
337 sc_adapter[cinst]->interrupt = irq[b];
338 if (request_irq(sc_adapter[cinst]->interrupt, interrupt_handler,
339 IRQF_DISABLED, interface->id,
340 (void *)(unsigned long) cinst))
342 kfree(sc_adapter[cinst]->channel);
343 indicate_status(cinst, ISDN_STAT_UNLOAD, 0, NULL); /* Fix me */
344 kfree(interface);
345 kfree(sc_adapter[cinst]);
346 continue;
349 sc_adapter[cinst]->iobase = io[b];
350 for(i = 0 ; i < MAX_IO_REGS - 1 ; i++) {
351 sc_adapter[cinst]->ioport[i] = io[b] + i * 0x400;
352 request_region(sc_adapter[cinst]->ioport[i], 1,
353 interface->id);
354 pr_debug("Requesting I/O Port %#x\n",
355 sc_adapter[cinst]->ioport[i]);
357 sc_adapter[cinst]->ioport[IRQ_SELECT] = io[b] + 0x2;
358 request_region(sc_adapter[cinst]->ioport[IRQ_SELECT], 1,
359 interface->id);
360 pr_debug("Requesting I/O Port %#x\n",
361 sc_adapter[cinst]->ioport[IRQ_SELECT]);
362 sc_adapter[cinst]->rambase = ram[b];
363 request_region(sc_adapter[cinst]->rambase, SRAM_PAGESIZE,
364 interface->id);
366 pr_info(" %s (%d) - %s %d channels IRQ %d, I/O Base 0x%x, RAM Base 0x%lx\n",
367 sc_adapter[cinst]->devicename,
368 sc_adapter[cinst]->driverId,
369 boardname[model], channels, irq[b], io[b], ram[b]);
372 * reset the adapter to put things in motion
374 reset(cinst);
376 cinst++;
377 status = 0;
379 if (status)
380 pr_info("Failed to find any adapters, driver unloaded\n");
381 return status;
384 static void __exit sc_exit(void)
386 int i, j;
388 for(i = 0 ; i < cinst ; i++) {
389 pr_debug("Cleaning up after adapter %d\n", i);
391 * kill the timers
393 del_timer(&(sc_adapter[i]->reset_timer));
394 del_timer(&(sc_adapter[i]->stat_timer));
397 * Tell I4L we're toast
399 indicate_status(i, ISDN_STAT_STOP, 0, NULL);
400 indicate_status(i, ISDN_STAT_UNLOAD, 0, NULL);
403 * Release shared RAM
405 release_region(sc_adapter[i]->rambase, SRAM_PAGESIZE);
408 * Release the IRQ
410 free_irq(sc_adapter[i]->interrupt, NULL);
413 * Reset for a clean start
415 outb(0xFF, sc_adapter[i]->ioport[SFT_RESET]);
418 * Release the I/O Port regions
420 for(j = 0 ; j < MAX_IO_REGS - 1; j++) {
421 release_region(sc_adapter[i]->ioport[j], 1);
422 pr_debug("Releasing I/O Port %#x\n",
423 sc_adapter[i]->ioport[j]);
425 release_region(sc_adapter[i]->ioport[IRQ_SELECT], 1);
426 pr_debug("Releasing I/O Port %#x\n",
427 sc_adapter[i]->ioport[IRQ_SELECT]);
430 * Release any memory we alloced
432 kfree(sc_adapter[i]->channel);
433 kfree(sc_adapter[i]->card);
434 kfree(sc_adapter[i]);
436 pr_info("SpellCaster ISA ISDN Adapter Driver Unloaded.\n");
439 static int identify_board(unsigned long rambase, unsigned int iobase)
441 unsigned int pgport;
442 unsigned long sig;
443 DualPortMemory *dpm;
444 RspMessage rcvmsg;
445 ReqMessage sndmsg;
446 HWConfig_pl hwci;
447 int x;
449 pr_debug("Attempting to identify adapter @ 0x%lx io 0x%x\n",
450 rambase, iobase);
453 * Enable the base pointer
455 outb(rambase >> 12, iobase + 0x2c00);
457 switch(rambase >> 12 & 0x0F) {
458 case 0x0:
459 pgport = iobase + PG0_OFFSET;
460 pr_debug("Page Register offset is 0x%x\n", PG0_OFFSET);
461 break;
463 case 0x4:
464 pgport = iobase + PG1_OFFSET;
465 pr_debug("Page Register offset is 0x%x\n", PG1_OFFSET);
466 break;
468 case 0x8:
469 pgport = iobase + PG2_OFFSET;
470 pr_debug("Page Register offset is 0x%x\n", PG2_OFFSET);
471 break;
473 case 0xC:
474 pgport = iobase + PG3_OFFSET;
475 pr_debug("Page Register offset is 0x%x\n", PG3_OFFSET);
476 break;
477 default:
478 pr_debug("Invalid rambase 0x%lx\n", rambase);
479 return -1;
483 * Try to identify a PRI card
485 outb(PRI_BASEPG_VAL, pgport);
486 msleep_interruptible(1000);
487 sig = readl(rambase + SIG_OFFSET);
488 pr_debug("Looking for a signature, got 0x%lx\n", sig);
489 if(sig == SIGNATURE)
490 return PRI_BOARD;
493 * Try to identify a PRI card
495 outb(BRI_BASEPG_VAL, pgport);
496 msleep_interruptible(1000);
497 sig = readl(rambase + SIG_OFFSET);
498 pr_debug("Looking for a signature, got 0x%lx\n", sig);
499 if(sig == SIGNATURE)
500 return BRI_BOARD;
502 return -1;
505 * Try to spot a card
507 sig = readl(rambase + SIG_OFFSET);
508 pr_debug("Looking for a signature, got 0x%lx\n", sig);
509 if(sig != SIGNATURE)
510 return -1;
512 dpm = (DualPortMemory *) rambase;
514 memset(&sndmsg, 0, MSG_LEN);
515 sndmsg.msg_byte_cnt = 3;
516 sndmsg.type = cmReqType1;
517 sndmsg.class = cmReqClass0;
518 sndmsg.code = cmReqHWConfig;
519 memcpy_toio(&(dpm->req_queue[dpm->req_head++]), &sndmsg, MSG_LEN);
520 outb(0, iobase + 0x400);
521 pr_debug("Sent HWConfig message\n");
523 * Wait for the response
525 x = 0;
526 while((inb(iobase + FIFOSTAT_OFFSET) & RF_HAS_DATA) && x < 100) {
527 schedule_timeout_interruptible(1);
528 x++;
530 if(x == 100) {
531 pr_debug("Timeout waiting for response\n");
532 return -1;
535 memcpy_fromio(&rcvmsg, &(dpm->rsp_queue[dpm->rsp_tail]), MSG_LEN);
536 pr_debug("Got HWConfig response, status = 0x%x\n", rcvmsg.rsp_status);
537 memcpy(&hwci, &(rcvmsg.msg_data.HWCresponse), sizeof(HWConfig_pl));
538 pr_debug("Hardware Config: Interface: %s, RAM Size: %ld, Serial: %s\n"
539 " Part: %s, Rev: %s\n",
540 hwci.st_u_sense ? "S/T" : "U", hwci.ram_size,
541 hwci.serial_no, hwci.part_no, hwci.rev_no);
543 if(!strncmp(PRI_PARTNO, hwci.part_no, 6))
544 return PRI_BOARD;
545 if(!strncmp(BRI_PARTNO, hwci.part_no, 6))
546 return BRI_BOARD;
548 return -1;
551 module_init(sc_init);
552 module_exit(sc_exit);