init.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:14k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This software may be used and distributed according to the terms
  3.  * of the GNU General Public License, incorporated herein by reference.
  4.  *
  5.  */
  6. #include <linux/module.h>
  7. #include <linux/init.h>
  8. #include "includes.h"
  9. #include "hardware.h"
  10. #include "card.h"
  11. MODULE_DESCRIPTION("ISDN4Linux: Driver for Spellcaster card");
  12. MODULE_AUTHOR("Spellcaster Telecommunications Inc.");
  13. MODULE_LICENSE("GPL");
  14. MODULE_PARM( io, "1-" __MODULE_STRING(MAX_CARDS) "i");
  15. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_CARDS) "i");
  16. MODULE_PARM(ram, "1-" __MODULE_STRING(MAX_CARDS) "i");
  17. MODULE_PARM(do_reset, "i");
  18. board *adapter[MAX_CARDS];
  19. int cinst;
  20. static char devname[] = "scX";
  21. const char version[] = "2.0b1";
  22. const char *boardname[] = { "DataCommute/BRI", "DataCommute/PRI", "TeleCommute/BRI" };
  23. /* insmod set parameters */
  24. static unsigned int io[] = {0,0,0,0};
  25. static unsigned char irq[] = {0,0,0,0};
  26. static unsigned long ram[] = {0,0,0,0};
  27. static int do_reset = 0;
  28. static int sup_irq[] = { 11, 10, 9, 5, 12, 14, 7, 3, 4, 6 };
  29. #define MAX_IRQS 10
  30. extern void interrupt_handler(int, void *, struct pt_regs *);
  31. extern int sndpkt(int, int, int, struct sk_buff *);
  32. extern int command(isdn_ctrl *);
  33. extern int indicate_status(int, int, ulong, char*);
  34. extern int reset(int);
  35. int identify_board(unsigned long, unsigned int);
  36. int irq_supported(int irq_x)
  37. {
  38. int i;
  39. for(i=0 ; i < MAX_IRQS ; i++) {
  40. if(sup_irq[i] == irq_x)
  41. return 1;
  42. }
  43. return 0;
  44. }
  45. static int __init sc_init(void)
  46. {
  47. int b = -1;
  48. int i, j;
  49. int status = -ENODEV;
  50. unsigned long memsize = 0;
  51. unsigned long features = 0;
  52. isdn_if *interface;
  53. unsigned char channels;
  54. unsigned char pgport;
  55. unsigned long magic;
  56. int model;
  57. int last_base = IOBASE_MIN;
  58. int probe_exhasted = 0;
  59. #ifdef MODULE
  60. pr_info("SpellCaster ISA ISDN Adapter Driver rev. %s Loadedn", version);
  61. #else
  62. pr_info("SpellCaster ISA ISDN Adapter Driver rev. %sn", version);
  63. #endif
  64. pr_info("Copyright (C) 1996 SpellCaster Telecommunications Inc.n");
  65. while(b++ < MAX_CARDS - 1) {
  66. pr_debug("Probing for adapter #%dn", b);
  67. /*
  68.  * Initialize reusable variables
  69.  */
  70. model = -1;
  71. magic = 0;
  72. channels = 0;
  73. pgport = 0;
  74. /* 
  75.  * See if we should probe for IO base 
  76.  */
  77. pr_debug("I/O Base for board %d is 0x%x, %s proben", b, io[b],
  78. io[b] == 0 ? "will" : "won't");
  79. if(io[b]) {
  80. /*
  81.  * No, I/O Base has been provided
  82.  */
  83. for (i = 0 ; i < MAX_IO_REGS - 1 ; i++) {
  84. if(check_region(io[b] + i * 0x400, 1)) {
  85. pr_debug("check_region for 0x%x failedn", io[b] + i * 0x400);
  86. io[b] = 0;
  87. break;
  88. }
  89. }
  90. /*
  91.  * Confirm the I/O Address with a test
  92.  */
  93. if(io[b] == 0) {
  94. pr_debug("I/O Address 0x%x is in use.n");
  95. continue;
  96. }
  97. outb(0x18, io[b] + 0x400 * EXP_PAGE0);
  98. if(inb(io[b] + 0x400 * EXP_PAGE0) != 0x18) {
  99. pr_debug("I/O Base 0x%x fails testn");
  100. continue;
  101. }
  102. }
  103. else {
  104. /*
  105.  * Yes, probe for I/O Base
  106.  */
  107. if(probe_exhasted) {
  108. pr_debug("All probe addresses exhasted, skippingn");
  109. continue;
  110. }
  111. pr_debug("Probing for I/O...n");
  112. for (i = last_base ; i <= IOBASE_MAX ; i += IOBASE_OFFSET) {
  113. int found_io = 1;
  114. if (i == IOBASE_MAX) {
  115. probe_exhasted = 1; /* No more addresses to probe */
  116. pr_debug("End of Probesn");
  117. }
  118. last_base = i + IOBASE_OFFSET;
  119. pr_debug("  checking 0x%x...", i);
  120. for ( j = 0 ; j < MAX_IO_REGS - 1 ; j++) {
  121. if(check_region(i + j * 0x400, 1)) {
  122. pr_debug("Failedn");
  123. found_io = 0;
  124. break;
  125. }
  126. }
  127. if(found_io) {
  128. io[b] = i;
  129. outb(0x18, io[b] + 0x400 * EXP_PAGE0);
  130. if(inb(io[b] + 0x400 * EXP_PAGE0) != 0x18) { 
  131. pr_debug("Failed by testn");
  132. continue;
  133. }
  134. pr_debug("Passedn");
  135. break;
  136. }
  137. }
  138. if(probe_exhasted) {
  139. continue;
  140. }
  141. }
  142. /*
  143.  * See if we should probe for shared RAM
  144.  */
  145. if(do_reset) {
  146. pr_debug("Doing a SAFE probe resetn");
  147. outb(0xFF, io[b] + RESET_OFFSET);
  148. set_current_state(TASK_INTERRUPTIBLE);
  149. schedule_timeout(milliseconds(10000));
  150. }
  151. pr_debug("RAM Base for board %d is 0x%x, %s proben", b, ram[b],
  152. ram[b] == 0 ? "will" : "won't");
  153. if(ram[b]) {
  154. /*
  155.  * No, the RAM base has been provided
  156.  * Just look for a signature and ID the
  157.  * board model
  158.  */
  159. if(!check_region(ram[b], SRAM_PAGESIZE)) {
  160. pr_debug("check_region for RAM base 0x%x succeededn", ram[b]);
  161.   model = identify_board(ram[b], io[b]);
  162. }
  163. }
  164. else {
  165. /*
  166.  * Yes, probe for free RAM and look for
  167.  * a signature and id the board model
  168.  */
  169. for (i = SRAM_MIN ; i < SRAM_MAX ; i += SRAM_PAGESIZE) {
  170. pr_debug("Checking RAM address 0x%x...n", i);
  171. if(!check_region(i, SRAM_PAGESIZE)) {
  172. pr_debug("  check_region succeededn");
  173. model = identify_board(i, io[b]);
  174. if (model >= 0) {
  175. pr_debug("  Identified a %sn",
  176. boardname[model]);
  177. ram[b] = i;
  178. break;
  179. }
  180. pr_debug("  Unidentifed or inaccessiblen");
  181. continue;
  182. }
  183. pr_debug("  check_region failedn");
  184. }
  185. }
  186. /*
  187.  * See if we found free RAM and the board model
  188.  */
  189. if(!ram[b] || model < 0) {
  190. /*
  191.  * Nope, there was no place in RAM for the
  192.  * board, or it couldn't be identified
  193.  */
  194.  pr_debug("Failed to find an adapter at 0x%xn", ram[b]);
  195.  continue;
  196. }
  197. /*
  198.  * Set the board's magic number, memory size and page register
  199.  */
  200. switch(model) {
  201. case PRI_BOARD:
  202. channels = 23;
  203. magic = 0x20000;
  204. memsize = 0x100000;
  205. features = PRI_FEATURES;
  206. break;
  207. case BRI_BOARD:
  208. case POTS_BOARD:
  209. channels = 2;
  210. magic = 0x60000;
  211. memsize = 0x10000;
  212. features = BRI_FEATURES;
  213. break;
  214. }
  215. switch(ram[b] >> 12 & 0x0F) {
  216. case 0x0:
  217. pr_debug("RAM Page register set to EXP_PAGE0n");
  218. pgport = EXP_PAGE0;
  219. break;
  220. case 0x4:
  221. pr_debug("RAM Page register set to EXP_PAGE1n");
  222. pgport = EXP_PAGE1;
  223. break;
  224. case 0x8:
  225. pr_debug("RAM Page register set to EXP_PAGE2n");
  226. pgport = EXP_PAGE2;
  227. break;
  228. case 0xC:
  229. pr_debug("RAM Page register set to EXP_PAGE3n");
  230. pgport = EXP_PAGE3;
  231. break;
  232. default:
  233. pr_debug("RAM base address doesn't fall on 16K boundaryn");
  234. continue;
  235. }
  236. pr_debug("current IRQ: %d  b: %dn",irq[b],b);
  237. /*
  238.  * See if we should probe for an irq
  239.  */
  240. if(irq[b]) {
  241. /*
  242.  * No we were given one
  243.  * See that it is supported and free
  244.  */
  245. pr_debug("Trying for IRQ: %dn",irq[b]);
  246. if (irq_supported(irq[b])) {
  247. if(REQUEST_IRQ(irq[b], interrupt_handler, 
  248. SA_PROBE, "sc_probe", NULL)) {
  249. pr_debug("IRQ %d is already in usen", 
  250. irq[b]);
  251. continue;
  252. }
  253. FREE_IRQ(irq[b], NULL);
  254. }
  255. }
  256. else {
  257. /*
  258.  * Yes, we need to probe for an IRQ
  259.  */
  260. pr_debug("Probing for IRQ...n");
  261. for (i = 0; i < MAX_IRQS ; i++) {
  262. if(!REQUEST_IRQ(sup_irq[i], interrupt_handler, SA_PROBE, "sc_probe", NULL)) {
  263. pr_debug("Probed for and found IRQ %dn", sup_irq[i]);
  264. FREE_IRQ(sup_irq[i], NULL);
  265. irq[b] = sup_irq[i];
  266. break;
  267. }
  268. }
  269. }
  270. /*
  271.  * Make sure we got an IRQ
  272.  */
  273. if(!irq[b]) {
  274. /*
  275.  * No interrupt could be used
  276.  */
  277. pr_debug("Failed to acquire an IRQ linen");
  278. continue;
  279. }
  280. /*
  281.  * Horray! We found a board, Make sure we can register
  282.  * it with ISDN4Linux
  283.  */
  284. interface = kmalloc(sizeof(isdn_if), GFP_KERNEL);
  285. if (interface == NULL) {
  286. /*
  287.  * Oops, can't malloc isdn_if
  288.  */
  289. continue;
  290. }
  291. memset(interface, 0, sizeof(isdn_if));
  292. interface->hl_hdrlen = 0;
  293. interface->channels = channels;
  294. interface->maxbufsize = BUFFER_SIZE;
  295. interface->features = features;
  296. interface->writebuf_skb = sndpkt;
  297. interface->writecmd = NULL;
  298. interface->command = command;
  299. strcpy(interface->id, devname);
  300. interface->id[2] = '0' + cinst;
  301. /*
  302.  * Allocate the board structure
  303.  */
  304. adapter[cinst] = kmalloc(sizeof(board), GFP_KERNEL);
  305. if (adapter[cinst] == NULL) {
  306. /*
  307.  * Oops, can't alloc memory for the board
  308.  */
  309. kfree(interface);
  310. continue;
  311. }
  312. memset(adapter[cinst], 0, sizeof(board));
  313. if(!register_isdn(interface)) {
  314. /*
  315.  * Oops, couldn't register for some reason
  316.  */
  317. kfree(interface);
  318. kfree(adapter[cinst]);
  319. continue;
  320. }
  321. adapter[cinst]->card = interface;
  322. adapter[cinst]->driverId = interface->channels;
  323. strcpy(adapter[cinst]->devicename, interface->id);
  324. adapter[cinst]->nChannels = channels;
  325. adapter[cinst]->ramsize = memsize;
  326. adapter[cinst]->shmem_magic = magic;
  327. adapter[cinst]->shmem_pgport = pgport;
  328. adapter[cinst]->StartOnReset = 1;
  329. /*
  330.  * Allocate channels status structures
  331.  */
  332. adapter[cinst]->channel = kmalloc(sizeof(bchan) * channels, GFP_KERNEL);
  333. if (adapter[cinst]->channel == NULL) {
  334. /*
  335.  * Oops, can't alloc memory for the channels
  336.  */
  337. indicate_status(cinst, ISDN_STAT_UNLOAD, 0, NULL); /* Fix me */
  338. kfree(interface);
  339. kfree(adapter[cinst]);
  340. continue;
  341. }
  342. memset(adapter[cinst]->channel, 0, sizeof(bchan) * channels);
  343. /*
  344.  * Lock down the hardware resources
  345.  */
  346. adapter[cinst]->interrupt = irq[b];
  347. REQUEST_IRQ(adapter[cinst]->interrupt, interrupt_handler, SA_INTERRUPT, 
  348. interface->id, NULL);
  349. adapter[cinst]->iobase = io[b];
  350. for(i = 0 ; i < MAX_IO_REGS - 1 ; i++) {
  351. adapter[cinst]->ioport[i] = io[b] + i * 0x400;
  352. request_region(adapter[cinst]->ioport[i], 1, interface->id);
  353. pr_debug("Requesting I/O Port %#xn", adapter[cinst]->ioport[i]);
  354. }
  355. adapter[cinst]->ioport[IRQ_SELECT] = io[b] + 0x2;
  356. request_region(adapter[cinst]->ioport[IRQ_SELECT], 1, interface->id);
  357. pr_debug("Requesting I/O Port %#xn", adapter[cinst]->ioport[IRQ_SELECT]);
  358. adapter[cinst]->rambase = ram[b];
  359. request_region(adapter[cinst]->rambase, SRAM_PAGESIZE, interface->id);
  360. pr_info("  %s (%d) - %s %d channels IRQ %d, I/O Base 0x%x, RAM Base 0x%lxn", 
  361. adapter[cinst]->devicename, adapter[cinst]->driverId, 
  362. boardname[model], channels, irq[b], io[b], ram[b]);
  363. /*
  364.  * reset the adapter to put things in motion
  365.  */
  366. reset(cinst);
  367. cinst++;
  368. status = 0;
  369. }
  370. if (status) 
  371. pr_info("Failed to find any adapters, driver unloadedn");
  372. return status;
  373. }
  374. static void __exit sc_exit(void)
  375. {
  376. int i, j;
  377. for(i = 0 ; i < cinst ; i++) {
  378. pr_debug("Cleaning up after adapter %dn", i);
  379. /*
  380.  * kill the timers
  381.  */
  382. del_timer(&(adapter[i]->reset_timer));
  383. del_timer(&(adapter[i]->stat_timer));
  384. /*
  385.  * Tell I4L we're toast
  386.  */
  387. indicate_status(i, ISDN_STAT_STOP, 0, NULL);
  388. indicate_status(i, ISDN_STAT_UNLOAD, 0, NULL);
  389. /*
  390.  * Release shared RAM
  391.  */
  392. release_region(adapter[i]->rambase, SRAM_PAGESIZE);
  393. /*
  394.  * Release the IRQ
  395.  */
  396. FREE_IRQ(adapter[i]->interrupt, NULL);
  397. /*
  398.  * Reset for a clean start
  399.  */
  400. outb(0xFF, adapter[i]->ioport[SFT_RESET]);
  401. /*
  402.  * Release the I/O Port regions
  403.  */
  404. for(j = 0 ; j < MAX_IO_REGS - 1; j++) {
  405. release_region(adapter[i]->ioport[j], 1);
  406. pr_debug("Releasing I/O Port %#xn", adapter[i]->ioport[j]);
  407. }
  408. release_region(adapter[i]->ioport[IRQ_SELECT], 1);
  409. pr_debug("Releasing I/O Port %#xn", adapter[i]->ioport[IRQ_SELECT]);
  410. /*
  411.  * Release any memory we alloced
  412.  */
  413. kfree(adapter[i]->channel);
  414. kfree(adapter[i]->card);
  415. kfree(adapter[i]);
  416. }
  417. pr_info("SpellCaster ISA ISDN Adapter Driver Unloaded.n");
  418. }
  419. int identify_board(unsigned long rambase, unsigned int iobase) 
  420. {
  421. unsigned int pgport;
  422. unsigned long sig;
  423. DualPortMemory *dpm;
  424. RspMessage rcvmsg;
  425. ReqMessage sndmsg;
  426. HWConfig_pl hwci;
  427. int x;
  428. pr_debug("Attempting to identify adapter @ 0x%x io 0x%xn",
  429. rambase, iobase);
  430. /*
  431.  * Enable the base pointer
  432.  */
  433. outb(rambase >> 12, iobase + 0x2c00);
  434. switch(rambase >> 12 & 0x0F) {
  435. case 0x0:
  436. pgport = iobase + PG0_OFFSET;
  437. pr_debug("Page Register offset is 0x%xn", PG0_OFFSET);
  438. break;
  439. case 0x4:
  440. pgport = iobase + PG1_OFFSET;
  441. pr_debug("Page Register offset is 0x%xn", PG1_OFFSET);
  442. break;
  443. case 0x8:
  444. pgport = iobase + PG2_OFFSET;
  445. pr_debug("Page Register offset is 0x%xn", PG2_OFFSET);
  446. break;
  447. case 0xC:
  448. pgport = iobase + PG3_OFFSET;
  449. pr_debug("Page Register offset is 0x%xn", PG3_OFFSET);
  450. break;
  451. default:
  452. pr_debug("Invalid rambase 0x%lxn", rambase);
  453. return -1;
  454. }
  455. /*
  456.  * Try to identify a PRI card
  457.  */
  458. outb(PRI_BASEPG_VAL, pgport);
  459. set_current_state(TASK_INTERRUPTIBLE);
  460. schedule_timeout(HZ);
  461. sig = readl(rambase + SIG_OFFSET);
  462. pr_debug("Looking for a signature, got 0x%xn", sig);
  463. if(sig == SIGNATURE)
  464. return PRI_BOARD;
  465. /*
  466.  * Try to identify a PRI card
  467.  */
  468. outb(BRI_BASEPG_VAL, pgport);
  469. set_current_state(TASK_INTERRUPTIBLE);
  470. schedule_timeout(HZ);
  471. sig = readl(rambase + SIG_OFFSET);
  472. pr_debug("Looking for a signature, got 0x%xn", sig);
  473. if(sig == SIGNATURE)
  474. return BRI_BOARD;
  475. return -1;
  476. /*
  477.  * Try to spot a card
  478.  */
  479. sig = readl(rambase + SIG_OFFSET);
  480. pr_debug("Looking for a signature, got 0x%xn", sig);
  481. if(sig != SIGNATURE)
  482. return -1;
  483. dpm = (DualPortMemory *) rambase;
  484. memset(&sndmsg, 0, MSG_LEN);
  485. sndmsg.msg_byte_cnt = 3;
  486. sndmsg.type = cmReqType1;
  487. sndmsg.class = cmReqClass0;
  488. sndmsg.code = cmReqHWConfig;
  489. memcpy_toio(&(dpm->req_queue[dpm->req_head++]), &sndmsg, MSG_LEN);
  490. outb(0, iobase + 0x400);
  491. pr_debug("Sent HWConfig messagen");
  492. /*
  493.  * Wait for the response
  494.  */
  495. x = 0;
  496. while((inb(iobase + FIFOSTAT_OFFSET) & RF_HAS_DATA) && x < 100) {
  497. set_current_state(TASK_INTERRUPTIBLE);
  498. schedule_timeout(1);
  499. x++;
  500. }
  501. if(x == 100) {
  502. pr_debug("Timeout waiting for responsen");
  503. return -1;
  504. }
  505. memcpy_fromio(&rcvmsg, &(dpm->rsp_queue[dpm->rsp_tail]), MSG_LEN);
  506. pr_debug("Got HWConfig response, status = 0x%xn", rcvmsg.rsp_status);
  507. memcpy(&hwci, &(rcvmsg.msg_data.HWCresponse), sizeof(HWConfig_pl));
  508. pr_debug("Hardware Config: Interface: %s, RAM Size: %d, Serial: %sn"
  509.  "                 Part: %s, Rev: %sn",
  510.  hwci.st_u_sense ? "S/T" : "U", hwci.ram_size,
  511.  hwci.serial_no, hwci.part_no, hwci.rev_no);
  512. if(!strncmp(PRI_PARTNO, hwci.part_no, 6))
  513. return PRI_BOARD;
  514. if(!strncmp(BRI_PARTNO, hwci.part_no, 6))
  515. return BRI_BOARD;
  516. return -1;
  517. }
  518. module_init(sc_init);
  519. module_exit(sc_exit);