sdlamain.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:39k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. * sdlamain.c WANPIPE(tm) Multiprotocol WAN Link Driver.  Main module.
  3. *
  4. * Author: Nenad Corbic <ncorbic@sangoma.com>
  5. * Gideon Hack
  6. *
  7. * Copyright: (c) 1995-2000 Sangoma Technologies Inc.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. * ============================================================================
  14. * Dec 22, 2000  Nenad Corbic Updated for 2.4.X kernels.
  15. *  Removed the polling routine.
  16. * Nov 13, 2000  Nenad Corbic Added hw probing on module load and dynamic
  17. *  device allocation. 
  18. * Nov 7,  2000  Nenad Corbic Fixed the Multi-Port PPP for kernels
  19. *                               2.2.16 and above.
  20. * Aug 2,  2000  Nenad Corbic Block the Multi-Port PPP from running on
  21. *           kernels 2.2.16 or greater.  The SyncPPP 
  22. *           has changed.
  23. * Jul 25, 2000  Nenad Corbic Updated the Piggiback support for MultPPPP.
  24. * Jul 13, 2000 Nenad Corbic Added Multi-PPP support.
  25. * Feb 02, 2000  Nenad Corbic    Fixed up piggyback probing and selection.
  26. * Sep 23, 1999  Nenad Corbic    Added support for SMP
  27. * Sep 13, 1999  Nenad Corbic Each port is treated as a separate device.
  28. * Jun 02, 1999  Gideon Hack     Added support for the S514 adapter.
  29. * Updates for Linux 2.2.X kernels.
  30. * Sep 17, 1998 Jaspreet Singh Updated for 2.1.121+ kernel
  31. * Nov 28, 1997 Jaspreet Singh Changed DRV_RELEASE to 1
  32. * Nov 10, 1997 Jaspreet Singh Changed sti() to restore_flags();
  33. * Nov 06, 1997  Jaspreet Singh Changed DRV_VERSION to 4 and DRV_RELEASE to 0
  34. * Oct 20, 1997  Jaspreet Singh Modified sdla_isr routine so that card->in_isr
  35. * assignments are taken out and placed in the
  36. * sdla_ppp.c, sdla_fr.c and sdla_x25.c isr
  37. * routines. Took out 'wandev->tx_int_enabled' and
  38. * replaced it with 'wandev->enable_tx_int'. 
  39. * May 29, 1997 Jaspreet Singh Flow Control Problem
  40. * added "wandev->tx_int_enabled=1" line in the
  41. * init module. This line intializes the flag for 
  42. * preventing Interrupt disabled with device set to
  43. * busy
  44. * Jan 15, 1997 Gene Kozin Version 3.1.0
  45. *  o added UDP management stuff
  46. * Jan 02, 1997 Gene Kozin Initial version.
  47. *****************************************************************************/
  48. #include <linux/version.h>
  49. #include <linux/config.h> /* OS configuration options */
  50. #include <linux/stddef.h> /* offsetof(), etc. */
  51. #include <linux/errno.h> /* return codes */
  52. #include <linux/string.h> /* inline memset(), etc. */
  53. #include <linux/slab.h> /* kmalloc(), kfree() */
  54. #include <linux/kernel.h> /* printk(), and other useful stuff */
  55. #include <linux/module.h> /* support for loadable modules */
  56. #include <linux/ioport.h> /* request_region(), release_region() */
  57. #include <linux/wanrouter.h> /* WAN router definitions */
  58. #include <linux/wanpipe.h> /* WANPIPE common user API definitions */
  59. #include <linux/in.h>
  60. #include <asm/io.h> /* phys_to_virt() */
  61. #include <linux/pci.h>
  62. #include <linux/sdlapci.h>
  63. #include <linux/if_wanpipe_common.h>
  64. #if defined(LINUX_2_4)
  65.  #include <asm/uaccess.h> /* kernel <-> user copy */
  66.  #include <linux/inetdevice.h>
  67.  #define netdevice_t struct net_device 
  68. #elif defined(LINUX_2_1)
  69.  #include <asm/uaccess.h> /* kernel <-> user copy */
  70.  #include <linux/inetdevice.h>
  71.  #define netdevice_t struct device 
  72. #else
  73.  #include <asm/segment.h>
  74.  #define devinet_ioctl(x,y) dev_ioctl(x,y)
  75.  #define netdevice_t struct device 
  76.  #define test_and_set_bit set_bit
  77.  typedef unsigned long mm_segment_t; 
  78. #endif
  79. #include <linux/ip.h>
  80. #include <net/route.h>
  81.  
  82. #define KMEM_SAFETYZONE 8
  83. #ifndef CONFIG_WANPIPE_FR
  84.   #define wpf_init(a,b) (-EPROTONOSUPPORT) 
  85. #endif
  86. #ifndef CONFIG_WANPIPE_CHDLC
  87.  #define wpc_init(a,b) (-EPROTONOSUPPORT) 
  88. #endif
  89. #ifndef CONFIG_WANPIPE_X25
  90.  #define wpx_init(a,b) (-EPROTONOSUPPORT) 
  91. #endif
  92.  
  93. #ifndef CONFIG_WANPIPE_PPP
  94.  #define wpp_init(a,b) (-EPROTONOSUPPORT) 
  95. #endif
  96. #ifndef CONFIG_WANPIPE_MULTPPP 
  97.  #define wsppp_init(a,b) (-EPROTONOSUPPORT) 
  98. #endif
  99.  
  100.  
  101. /***********FOR DEBUGGING PURPOSES*********************************************
  102. static void * dbg_kmalloc(unsigned int size, int prio, int line) {
  103. int i = 0;
  104. void * v = kmalloc(size+sizeof(unsigned int)+2*KMEM_SAFETYZONE*8,prio);
  105. char * c1 = v;
  106. c1 += sizeof(unsigned int);
  107. *((unsigned int *)v) = size;
  108. for (i = 0; i < KMEM_SAFETYZONE; i++) {
  109. c1[0] = 'D'; c1[1] = 'E'; c1[2] = 'A'; c1[3] = 'D';
  110. c1[4] = 'B'; c1[5] = 'E'; c1[6] = 'E'; c1[7] = 'F';
  111. c1 += 8;
  112. }
  113. c1 += size;
  114. for (i = 0; i < KMEM_SAFETYZONE; i++) {
  115. c1[0] = 'M'; c1[1] = 'U'; c1[2] = 'N'; c1[3] = 'G';
  116. c1[4] = 'W'; c1[5] = 'A'; c1[6] = 'L'; c1[7] = 'L';
  117. c1 += 8;
  118. }
  119. v = ((char *)v) + sizeof(unsigned int) + KMEM_SAFETYZONE*8;
  120. printk(KERN_INFO "line %d  kmalloc(%d,%d) = %pn",line,size,prio,v);
  121. return v;
  122. }
  123. static void dbg_kfree(void * v, int line) {
  124. unsigned int * sp = (unsigned int *)(((char *)v) - (sizeof(unsigned int) + KMEM_SAFETYZONE*8));
  125. unsigned int size = *sp;
  126. char * c1 = ((char *)v) - KMEM_SAFETYZONE*8;
  127. int i = 0;
  128. for (i = 0; i < KMEM_SAFETYZONE; i++) {
  129. if (   c1[0] != 'D' || c1[1] != 'E' || c1[2] != 'A' || c1[3] != 'D'
  130.     || c1[4] != 'B' || c1[5] != 'E' || c1[6] != 'E' || c1[7] != 'F') {
  131. printk(KERN_INFO "kmalloced block at %p has been corrupted (underrun)!n",v);
  132. printk(KERN_INFO " %4x: %2x %2x %2x %2x %2x %2x %2x %2xn", i*8,
  133.                 c1[0],c1[1],c1[2],c1[3],c1[4],c1[5],c1[6],c1[7] );
  134. }
  135. c1 += 8;
  136. }
  137. c1 += size;
  138. for (i = 0; i < KMEM_SAFETYZONE; i++) {
  139. if (   c1[0] != 'M' || c1[1] != 'U' || c1[2] != 'N' || c1[3] != 'G'
  140.     || c1[4] != 'W' || c1[5] != 'A' || c1[6] != 'L' || c1[7] != 'L'
  141.    ) {
  142. printk(KERN_INFO "kmalloced block at %p has been corrupted (overrun):n",v);
  143. printk(KERN_INFO " %4x: %2x %2x %2x %2x %2x %2x %2x %2xn", i*8,
  144.                 c1[0],c1[1],c1[2],c1[3],c1[4],c1[5],c1[6],c1[7] );
  145. }
  146. c1 += 8;
  147. }
  148. printk(KERN_INFO "line %d  kfree(%p)n",line,v);
  149. v = ((char *)v) - (sizeof(unsigned int) + KMEM_SAFETYZONE*8);
  150. kfree(v);
  151. }
  152. #define kmalloc(x,y) dbg_kmalloc(x,y,__LINE__)
  153. #define kfree(x) dbg_kfree(x,__LINE__)
  154. ******************************************************************************/
  155. /****** Defines & Macros ****************************************************/
  156. #ifdef _DEBUG_
  157. #define STATIC
  158. #else
  159. #define STATIC static
  160. #endif
  161. #define DRV_VERSION 5 /* version number */
  162. #define DRV_RELEASE 0 /* release (minor version) number */
  163. #define MAX_CARDS 16 /* max number of adapters */
  164. #ifndef CONFIG_WANPIPE_CARDS /* configurable option */
  165. #define CONFIG_WANPIPE_CARDS 1
  166. #endif
  167. #define CMD_OK 0 /* normal firmware return code */
  168. #define CMD_TIMEOUT 0xFF /* firmware command timed out */
  169. #define MAX_CMD_RETRY 10 /* max number of firmware retries */
  170. /****** Function Prototypes *************************************************/
  171. extern void disable_irq(unsigned int);
  172. extern void enable_irq(unsigned int);
  173.  
  174. /* Module entry points */
  175. int init_module (void);
  176. void cleanup_module (void);
  177. /* WAN link driver entry points */
  178. static int setup    (wan_device_t* wandev, wandev_conf_t* conf);
  179. static int shutdown (wan_device_t* wandev);
  180. static int ioctl    (wan_device_t* wandev, unsigned cmd, unsigned long arg);
  181. /* IOCTL handlers */
  182. static int ioctl_dump (sdla_t* card, sdla_dump_t* u_dump);
  183. static int ioctl_exec (sdla_t* card, sdla_exec_t* u_exec, int);
  184. /* Miscellaneous functions */
  185. STATIC void sdla_isr (int irq, void* dev_id, struct pt_regs *regs);
  186. static void release_hw  (sdla_t *card);
  187. static void run_wanpipe_tq (unsigned long);
  188. static int check_s508_conflicts (sdla_t* card,wandev_conf_t* conf, int*);
  189. static int check_s514_conflicts (sdla_t* card,wandev_conf_t* conf, int*);
  190. /****** Global Data **********************************************************
  191.  * Note: All data must be explicitly initialized!!!
  192.  */
  193. /* private data */
  194. static char drvname[] = "wanpipe";
  195. static char fullname[] = "WANPIPE(tm) Multiprotocol Driver";
  196. static char copyright[] = "(c) 1995-2000 Sangoma Technologies Inc.";
  197. static int ncards = 0; 
  198. static sdla_t* card_array = NULL; /* adapter data space */
  199. /* Wanpipe's own task queue, used for all API's.
  200.  * All protocol specific tasks will be instered
  201.  * into "wanpipe_tq_custom" task_queue. 
  202.  * On each rx_interrupt, the whole task queue
  203.  * (wanpipe_tq_custom) will be queued into 
  204.  * IMMEDIATE_BH via wanpipe_mark_bh() call. 
  205.  
  206.  * The IMMEDIATE_BH will execute run_wanpipe_tq() 
  207.  * function, which will execute all pending,
  208.  * tasks in wanpipe_tq_custom queue */
  209. #ifdef LINUX_2_4
  210. DECLARE_TASK_QUEUE(wanpipe_tq_custom);
  211. static struct tq_struct wanpipe_tq_task = 
  212. {
  213. routine: (void (*)(void *)) run_wanpipe_tq,
  214. data: &wanpipe_tq_custom
  215. };
  216. #else
  217. static struct tq_struct *wanpipe_tq_custom = NULL;
  218. static struct tq_struct wanpipe_tq_task = 
  219. {
  220. NULL,
  221. 0,
  222. (void *)(void *) run_wanpipe_tq,
  223. &wanpipe_tq_custom
  224. };
  225. #endif
  226. static int wanpipe_bh_critical=0;
  227. /******* Kernel Loadable Module Entry Points ********************************/
  228. /*============================================================================
  229.  * Module 'insert' entry point.
  230.  * o print announcement
  231.  * o allocate adapter data space
  232.  * o initialize static data
  233.  * o register all cards with WAN router
  234.  * o calibrate SDLA shared memory access delay.
  235.  *
  236.  * Return: 0 Ok
  237.  * < 0 error.
  238.  * Context: process
  239.  */
  240.  
  241. #ifdef MODULE
  242. int init_module (void)
  243. #else
  244. int wanpipe_init(void)
  245. #endif
  246. {
  247. int cnt, err = 0;
  248. printk(KERN_INFO "%s v%u.%u %sn",
  249. fullname, DRV_VERSION, DRV_RELEASE, copyright);
  250. /* Probe for wanpipe cards and return the number found */
  251. printk(KERN_INFO "wanpipe: Probing for WANPIPE hardware.n");
  252. ncards = wanpipe_hw_probe();
  253. if (ncards){
  254. printk(KERN_INFO "wanpipe: Allocating maximum %i devices: wanpipe%i - wanpipe%i.n",ncards,1,ncards);
  255. }else{
  256. printk(KERN_INFO "wanpipe: No S514/S508 cards found, unloading modules!n");
  257. return -ENODEV;
  258. }
  259. /* Verify number of cards and allocate adapter data space */
  260. card_array = kmalloc(sizeof(sdla_t) * ncards, GFP_KERNEL);
  261. if (card_array == NULL)
  262. return -ENOMEM;
  263. memset(card_array, 0, sizeof(sdla_t) * ncards);
  264. /* Register adapters with WAN router */
  265. for (cnt = 0; cnt < ncards; ++ cnt) {
  266. sdla_t* card = &card_array[cnt];
  267. wan_device_t* wandev = &card->wandev;
  268. card->next = NULL;
  269. sprintf(card->devname, "%s%d", drvname, cnt + 1);
  270. wandev->magic    = ROUTER_MAGIC;
  271. wandev->name     = card->devname;
  272. wandev->private  = card;
  273. wandev->enable_tx_int = 0;
  274. wandev->setup    = &setup;
  275. wandev->shutdown = &shutdown;
  276. wandev->ioctl    = &ioctl;
  277. err = register_wan_device(wandev);
  278. if (err) {
  279. printk(KERN_INFO
  280. "%s: %s registration failed with error %d!n",
  281. drvname, card->devname, err);
  282. break;
  283. }
  284. }
  285. if (cnt){
  286. ncards = cnt; /* adjust actual number of cards */
  287. }else {
  288. kfree(card_array);
  289. printk(KERN_INFO "IN Init Module: NO Cards registeredn");
  290. err = -ENODEV;
  291. }
  292. return err;
  293. }
  294. #ifdef MODULE
  295. /*============================================================================
  296.  * Module 'remove' entry point.
  297.  * o unregister all adapters from the WAN router
  298.  * o release all remaining system resources
  299.  */
  300. void cleanup_module (void)
  301. {
  302. int i;
  303. if (!ncards)
  304. return;
  305. for (i = 0; i < ncards; ++i) {
  306. sdla_t* card = &card_array[i];
  307. unregister_wan_device(card->devname);
  308. }
  309. kfree(card_array);
  310. printk(KERN_INFO "nwanpipe: WANPIPE Modules Unloaded.n");
  311. }
  312. #endif
  313. /******* WAN Device Driver Entry Points *************************************/
  314. /*============================================================================
  315.  * Setup/configure WAN link driver.
  316.  * o check adapter state
  317.  * o make sure firmware is present in configuration
  318.  * o make sure I/O port and IRQ are specified
  319.  * o make sure I/O region is available
  320.  * o allocate interrupt vector
  321.  * o setup SDLA hardware
  322.  * o call appropriate routine to perform protocol-specific initialization
  323.  * o mark I/O region as used
  324.  * o if this is the first active card, then schedule background task
  325.  *
  326.  * This function is called when router handles ROUTER_SETUP IOCTL. The
  327.  * configuration structure is in kernel memory (including extended data, if
  328.  * any).
  329.  */
  330.  
  331. static int setup (wan_device_t* wandev, wandev_conf_t* conf)
  332. {
  333. sdla_t* card;
  334. int err = 0;
  335. int irq=0;
  336. /* Sanity checks */
  337. if ((wandev == NULL) || (wandev->private == NULL) || (conf == NULL)){
  338. printk(KERN_INFO 
  339.       "%s: Failed Sdlamain Setup wandev %u, card %u, conf %u !n",
  340.       wandev->name,
  341.       (unsigned int)wandev,(unsigned int)wandev->private,
  342.       (unsigned int)conf); 
  343. return -EFAULT;
  344. }
  345. printk(KERN_INFO "%s: Starting WAN Setupn", wandev->name);
  346. card = wandev->private;
  347. if (wandev->state != WAN_UNCONFIGURED){
  348. printk(KERN_INFO "%s: failed sdlamain setup, busy!n",
  349. wandev->name);
  350. return -EBUSY; /* already configured */
  351. }
  352. printk(KERN_INFO "nProcessing WAN device %s...n", wandev->name);
  353. /* Initialize the counters for each wandev 
  354.  * Used for counting number of times new_if and 
  355.          * del_if get called.
  356.  */
  357. wandev->del_if_cnt = 0;
  358. wandev->new_if_cnt = 0;
  359. wandev->config_id  = conf->config_id;
  360. if (!conf->data_size || (conf->data == NULL)) {
  361. printk(KERN_INFO
  362. "%s: firmware not found in configuration data!n",
  363. wandev->name);
  364. return -EINVAL;
  365. }
  366. /* Check for resource conflicts and setup the
  367.  * card for piggibacking if necessary */
  368. if(!conf->S514_CPU_no[0]) {
  369. if ((err=check_s508_conflicts(card,conf,&irq)) != 0){
  370. return err;
  371. }
  372. }else {
  373. if ((err=check_s514_conflicts(card,conf,&irq)) != 0){
  374. return err;
  375. }
  376. }
  377. /* If the current card has already been configured
  378.          * or its a piggyback card, do not try to allocate
  379.          * resources.
  380.  */
  381. if (!card->wandev.piggyback && !card->configured){
  382. /* Configure hardware, load firmware, etc. */
  383. memset(&card->hw, 0, sizeof(sdlahw_t));
  384. /* for an S514 adapter, pass the CPU number and the slot number read */
  385. /* from 'router.conf' to the 'sdla_setup()' function via the 'port' */
  386. /* parameter */
  387. if (conf->S514_CPU_no[0]){
  388. card->hw.S514_cpu_no[0] = conf->S514_CPU_no[0];
  389. card->hw.S514_slot_no = conf->PCI_slot_no;
  390. card->hw.auto_pci_cfg = conf->auto_pci_cfg;
  391. if (card->hw.auto_pci_cfg == WANOPT_YES){
  392. printk(KERN_INFO "%s: Setting CPU to %c and Slot to Auton",
  393. card->devname, card->hw.S514_cpu_no[0]);
  394. }else{
  395. printk(KERN_INFO "%s: Setting CPU to %c and Slot to %in",
  396. card->devname, card->hw.S514_cpu_no[0], card->hw.S514_slot_no);
  397. }
  398. }else{
  399. /* 508 Card io port and irq initialization */
  400. card->hw.port = conf->ioport;
  401. card->hw.irq = (conf->irq == 9) ? 2 : conf->irq;
  402. }
  403. /* Compute the virtual address of the card in kernel space */
  404. if(conf->maddr){
  405. card->hw.dpmbase = phys_to_virt(conf->maddr);
  406. }else{
  407. card->hw.dpmbase = (void *)conf->maddr;
  408. }
  409. card->hw.dpmsize = SDLA_WINDOWSIZE;
  410. /* set the adapter type if using an S514 adapter */
  411. card->hw.type = (conf->S514_CPU_no[0]) ? SDLA_S514 : conf->hw_opt[0]; 
  412. card->hw.pclk = conf->hw_opt[1];
  413. err = sdla_setup(&card->hw, conf->data, conf->data_size);
  414. if (err){
  415. printk(KERN_INFO "%s: Hardware setup Failed %in",
  416. card->devname,err);
  417. return err;
  418. }
  419.         if(card->hw.type != SDLA_S514)
  420. irq = (conf->irq == 2) ? 9 : conf->irq; /* IRQ2 -> IRQ9 */
  421. else
  422. irq = card->hw.irq;
  423. /* request an interrupt vector - note that interrupts may be shared */
  424. /* when using the S514 PCI adapter */
  425.         if(request_irq(irq, sdla_isr, 
  426.       (card->hw.type == SDLA_S514) ? SA_SHIRQ : 0, 
  427.        wandev->name, card)){
  428. printk(KERN_INFO "%s: Can't reserve IRQ %d!n", wandev->name, irq);
  429. return -EINVAL;
  430. }
  431. }else{
  432. printk(KERN_INFO "%s: Card Configured %i or Piggybacking %i!n",
  433. wandev->name,card->configured,card->wandev.piggyback);
  434. if (!card->configured){
  435. /* Initialize the Spin lock */
  436. #if defined(__SMP__) || defined(LINUX_2_4) 
  437. printk(KERN_INFO "%s: Initializing for SMPn",wandev->name);
  438. #endif
  439. /* Piggyback spin lock has already been initialized,
  440.  * in check_s514/s508_conflicts() */
  441. if (!card->wandev.piggyback){
  442. spin_lock_init(&card->wandev.lock);
  443. }
  444. /* Intialize WAN device data space */
  445. wandev->irq       = irq;
  446. wandev->dma       = 0;
  447. if(card->hw.type != SDLA_S514){ 
  448. wandev->ioport = card->hw.port;
  449. }else{
  450. wandev->S514_cpu_no[0] = card->hw.S514_cpu_no[0];
  451. wandev->S514_slot_no = card->hw.S514_slot_no;
  452. }
  453. wandev->maddr     = (unsigned long)card->hw.dpmbase;
  454. wandev->msize     = card->hw.dpmsize;
  455. wandev->hw_opt[0] = card->hw.type;
  456. wandev->hw_opt[1] = card->hw.pclk;
  457. wandev->hw_opt[2] = card->hw.memory;
  458. wandev->hw_opt[3] = card->hw.fwid;
  459. }
  460. /* Protocol-specific initialization */
  461. switch (card->hw.fwid) {
  462. case SFID_X25_502:
  463. case SFID_X25_508:
  464. printk(KERN_INFO "%s: Starting X.25 Protocol Init.n",
  465. card->devname);
  466. err = wpx_init(card, conf);
  467. break;
  468. case SFID_FR502:
  469. case SFID_FR508:
  470. printk(KERN_INFO "%s: Starting Frame Relay Protocol Init.n",
  471. card->devname);
  472. err = wpf_init(card, conf);
  473. break;
  474. case SFID_PPP502:
  475. case SFID_PPP508:
  476. printk(KERN_INFO "%s: Starting PPP Protocol Init.n",
  477. card->devname);
  478. err = wpp_init(card, conf);
  479. break;
  480. case SFID_CHDLC508:
  481. case SFID_CHDLC514:
  482. if (conf->ft1){
  483. printk(KERN_INFO "%s: Starting FT1 CSU/DSU Config Driver.n",
  484. card->devname);
  485. err = wpft1_init(card, conf);
  486. break;
  487. }else if (conf->config_id == WANCONFIG_MPPP){
  488. printk(KERN_INFO "%s: Starting Multi-Port PPP Protocol Init.n",
  489. card->devname);
  490. err = wsppp_init(card,conf);
  491. break;
  492. }else{
  493. printk(KERN_INFO "%s: Starting CHDLC Protocol Init.n",
  494. card->devname);
  495. err = wpc_init(card, conf);
  496. break;
  497. }
  498. default:
  499. printk(KERN_INFO "%s: Error, Firmware is not supported %X %X!n",
  500. wandev->name,card->hw.fwid,SFID_CHDLC508);
  501. err = -EPROTONOSUPPORT;
  502. }
  503. if (err != 0){
  504. if (err == -EPROTONOSUPPORT){
  505. printk(KERN_INFO 
  506. "%s: Error, Protocol selected has not been compiled!n",
  507. card->devname);
  508. printk(KERN_INFO 
  509. "%s:        Re-configure the kernel and re-build the modules!n",
  510. card->devname);
  511. }
  512. release_hw(card);
  513. wandev->state = WAN_UNCONFIGURED;
  514. return err;
  515. }
  516.    /* Reserve I/O region and schedule background task */
  517.         if(card->hw.type != SDLA_S514 && !card->wandev.piggyback)
  518.                 request_region(card->hw.port, card->hw.io_range, wandev->name);
  519. /* Only use the polling routine for the X25 protocol */
  520. card->wandev.critical=0;
  521. return 0;
  522. }
  523. /*================================================================== 
  524.  * configure_s508_card
  525.  * 
  526.  * For a S508 adapter, check for a possible configuration error in that
  527.  * we are loading an adapter in the same IO port as a previously loaded S508
  528.  * card.
  529.  */ 
  530. static int check_s508_conflicts (sdla_t* card,wandev_conf_t* conf, int *irq)
  531. {
  532. unsigned long smp_flags;
  533. int i;
  534. if (conf->ioport <= 0) {
  535. printk(KERN_INFO
  536. "%s: can't configure without I/O port address!n",
  537. card->wandev.name);
  538. return -EINVAL;
  539. }
  540. if (conf->irq <= 0) {
  541. printk(KERN_INFO "%s: can't configure without IRQ!n",
  542. card->wandev.name);
  543. return -EINVAL;
  544. }
  545. if (test_bit(0,&card->configured))
  546. return 0;
  547. /* Check for already loaded card with the same IO port and IRQ 
  548.  * If found, copy its hardware configuration and use its
  549.  * resources (i.e. piggybacking)
  550.  */
  551. for (i = 0; i < ncards; i++) {
  552. sdla_t *nxt_card = &card_array[i];
  553. /* Skip the current card ptr */
  554. if (nxt_card == card)
  555. continue;
  556. /* Find a card that is already configured with the
  557.  * same IO Port */
  558. if ((nxt_card->hw.type == SDLA_S508) &&
  559.     (nxt_card->hw.port == conf->ioport) && 
  560.     (nxt_card->next == NULL)){
  561. /* We found a card the card that has same configuration
  562.  * as us. This means, that we must setup this card in 
  563.  * piggibacking mode. However, only CHDLC and MPPP protocol
  564.  * support this setup */
  565. if ((conf->config_id == WANCONFIG_CHDLC || 
  566.      conf->config_id == WANCONFIG_MPPP) &&
  567.     (nxt_card->wandev.config_id == WANCONFIG_CHDLC || 
  568.      nxt_card->wandev.config_id == WANCONFIG_MPPP)){ 
  569. *irq = nxt_card->hw.irq;
  570. memcpy(&card->hw, &nxt_card->hw, sizeof(sdlahw_t));
  571. /* The master could already be running, we must
  572.  * set this as a critical area */
  573. lock_adapter_irq(&nxt_card->wandev.lock, &smp_flags);
  574. nxt_card->next = card;
  575. card->next = nxt_card;
  576. card->wandev.piggyback = WANOPT_YES;
  577. /* We must initialise the piggiback spin lock here
  578.  * since isr will try to lock card->next if it
  579.  * exists */
  580. spin_lock_init(&card->wandev.lock);
  581. unlock_adapter_irq(&nxt_card->wandev.lock, &smp_flags);
  582. break;
  583. }else{
  584. /* Trying to run piggibacking with a wrong protocol */
  585. printk(KERN_INFO "%s: ERROR: Resource busy, ioport: 0x%xn"
  586.  "%s:        This protocol doesn't supportn"
  587.  "%s:        multi-port operation!n",
  588.  card->devname,nxt_card->hw.port,
  589.  card->devname,card->devname);
  590. return -EEXIST;
  591. }
  592. }
  593. }
  594. /* Make sure I/O port region is available only if we are the
  595.  * master device.  If we are running in piggibacking mode, 
  596.  * we will use the resources of the master card */
  597. if (check_region(conf->ioport, SDLA_MAXIORANGE) && 
  598.     !card->wandev.piggyback) {
  599. printk(KERN_INFO
  600. "%s: I/O region 0x%X - 0x%X is in use!n",
  601. card->wandev.name, conf->ioport,
  602. conf->ioport + SDLA_MAXIORANGE);
  603. return -EINVAL;
  604. }
  605. return 0;
  606. }
  607. /*================================================================== 
  608.  * configure_s514_card
  609.  * 
  610.  * For a S514 adapter, check for a possible configuration error in that
  611.  * we are loading an adapter in the same slot as a previously loaded S514
  612.  * card.
  613.  */ 
  614. static int check_s514_conflicts(sdla_t* card,wandev_conf_t* conf, int *irq)
  615. {
  616. unsigned long smp_flags;
  617. int i;
  618. if (test_bit(0,&card->configured))
  619. return 0;
  620. /* Check for already loaded card with the same IO port and IRQ 
  621.  * If found, copy its hardware configuration and use its
  622.  * resources (i.e. piggybacking)
  623.  */
  624. for (i = 0; i < ncards; i ++) {
  625. sdla_t* nxt_card = &card_array[i];
  626. if(nxt_card == card)
  627. continue;
  628. if((nxt_card->hw.type == SDLA_S514) &&
  629.    (nxt_card->hw.S514_slot_no == conf->PCI_slot_no) &&
  630.    (nxt_card->hw.S514_cpu_no[0] == conf->S514_CPU_no[0])&&
  631.    (nxt_card->next == NULL)){
  632. if ((conf->config_id == WANCONFIG_CHDLC || 
  633.      conf->config_id == WANCONFIG_MPPP) &&
  634.     (nxt_card->wandev.config_id == WANCONFIG_CHDLC || 
  635.      nxt_card->wandev.config_id == WANCONFIG_MPPP)){ 
  636. *irq = nxt_card->hw.irq;
  637. memcpy(&card->hw, &nxt_card->hw, sizeof(sdlahw_t));
  638. /* The master could already be running, we must
  639.  * set this as a critical area */
  640. lock_adapter_irq(&nxt_card->wandev.lock,&smp_flags);
  641. nxt_card->next = card;
  642. card->next = nxt_card;
  643. card->wandev.piggyback = WANOPT_YES;
  644. /* We must initialise the piggiback spin lock here
  645.  * since isr will try to lock card->next if it
  646.  * exists */
  647. spin_lock_init(&card->wandev.lock);
  648. unlock_adapter_irq(&nxt_card->wandev.lock,&smp_flags);
  649. }else{
  650. /* Trying to run piggibacking with a wrong protocol */
  651. printk(KERN_INFO "%s: ERROR: Resource busy: CPU %c PCISLOT %in"
  652.  "%s:        This protocol doesn't supportn"
  653.  "%s:        multi-port operation!n",
  654.  card->devname,
  655.  conf->S514_CPU_no[0],conf->PCI_slot_no,
  656.  card->devname,card->devname);
  657. return -EEXIST;
  658. }
  659. }
  660. }
  661. return 0;
  662. }
  663. /*============================================================================
  664.  * Shut down WAN link driver. 
  665.  * o shut down adapter hardware
  666.  * o release system resources.
  667.  *
  668.  * This function is called by the router when device is being unregistered or
  669.  * when it handles ROUTER_DOWN IOCTL.
  670.  */
  671. static int shutdown (wan_device_t* wandev)
  672. {
  673. sdla_t *card;
  674. int err=0;
  675. /* sanity checks */
  676. if ((wandev == NULL) || (wandev->private == NULL)){
  677. return -EFAULT;
  678. }
  679. if (wandev->state == WAN_UNCONFIGURED){
  680. return 0;
  681. }
  682. card = wandev->private;
  683. if (card->tty_opt){
  684. if (card->tty_open){
  685. printk(KERN_INFO 
  686. "%s: Shutdown Failed: TTY is still openn",
  687.   card->devname);
  688. return -EBUSY;
  689. }
  690. }
  691. wandev->state = WAN_UNCONFIGURED;
  692. set_bit(PERI_CRIT,(void*)&wandev->critical);
  693. /* In case of piggibacking, make sure that 
  694.          * we never try to shutdown both devices at the same
  695.          * time, because they depend on one another */
  696. if (card->disable_comm){
  697. card->disable_comm(card);
  698. }
  699. /* Release Resources */
  700. release_hw(card);
  701.         /* only free the allocated I/O range if not an S514 adapter */
  702. if (wandev->hw_opt[0] != SDLA_S514 && !card->configured){
  703.                release_region(card->hw.port, card->hw.io_range);
  704. }
  705. if (!card->configured){
  706. memset(&card->hw, 0, sizeof(sdlahw_t));
  707.        if (card->next){
  708. memset(&card->next->hw, 0, sizeof(sdlahw_t));
  709. }
  710. }
  711. clear_bit(PERI_CRIT,(void*)&wandev->critical);
  712. return err;
  713. }
  714. static void release_hw (sdla_t *card)
  715. {
  716. sdla_t *nxt_card;
  717. /* Check if next device exists */
  718. if (card->next){
  719. nxt_card = card->next;
  720. /* If next device is down then release resources */
  721. if (nxt_card->wandev.state == WAN_UNCONFIGURED){
  722. if (card->wandev.piggyback){
  723. /* If this device is piggyback then use
  724.                                  * information of the master device 
  725.  */
  726. printk(KERN_INFO "%s: Piggyback shutting downn",card->devname);
  727. sdla_down(&card->next->hw);
  728.         free_irq(card->wandev.irq, card->next);
  729. card->configured = 0;
  730. card->next->configured = 0;
  731. card->wandev.piggyback = 0;
  732. }else{
  733. /* Master device shutting down */
  734. printk(KERN_INFO "%s: Master shutting downn",card->devname);
  735. sdla_down(&card->hw);
  736. free_irq(card->wandev.irq, card);
  737. card->configured = 0;
  738. card->next->configured = 0;
  739. }
  740. }else{
  741. printk(KERN_INFO "%s: Device still running %in",
  742. nxt_card->devname,nxt_card->wandev.state);
  743. card->configured = 1;
  744. }
  745. }else{
  746. printk(KERN_INFO "%s: Master shutting downn",card->devname);
  747. sdla_down(&card->hw);
  748.         free_irq(card->wandev.irq, card);
  749. card->configured = 0;
  750. }
  751. return;
  752. }
  753. /*============================================================================
  754.  * Driver I/O control. 
  755.  * o verify arguments
  756.  * o perform requested action
  757.  *
  758.  * This function is called when router handles one of the reserved user
  759.  * IOCTLs.  Note that 'arg' stil points to user address space.
  760.  */
  761. static int ioctl (wan_device_t* wandev, unsigned cmd, unsigned long arg)
  762. {
  763. sdla_t* card;
  764. int err;
  765. /* sanity checks */
  766. if ((wandev == NULL) || (wandev->private == NULL))
  767. return -EFAULT;
  768. if (wandev->state == WAN_UNCONFIGURED)
  769. return -ENODEV;
  770. card = wandev->private;
  771. if(card->hw.type != SDLA_S514){
  772. disable_irq(card->hw.irq);
  773. }
  774. if (test_bit(SEND_CRIT, (void*)&wandev->critical)) {
  775. return -EAGAIN;
  776. }
  777. switch (cmd) {
  778. case WANPIPE_DUMP:
  779. err = ioctl_dump(wandev->private, (void*)arg);
  780. break;
  781. case WANPIPE_EXEC:
  782. err = ioctl_exec(wandev->private, (void*)arg, cmd);
  783. break;
  784. default:
  785. err = -EINVAL;
  786. }
  787.  
  788. return err;
  789. }
  790. /****** Driver IOCTL Handlers ***********************************************/
  791. /*============================================================================
  792.  * Dump adapter memory to user buffer.
  793.  * o verify request structure
  794.  * o copy request structure to kernel data space
  795.  * o verify length/offset
  796.  * o verify user buffer
  797.  * o copy adapter memory image to user buffer
  798.  *
  799.  * Note: when dumping memory, this routine switches curent dual-port memory
  800.  *  vector, so care must be taken to avoid racing conditions.
  801.  */
  802. static int ioctl_dump (sdla_t* card, sdla_dump_t* u_dump)
  803. {
  804. sdla_dump_t dump;
  805. unsigned winsize;
  806. unsigned long oldvec; /* DPM window vector */
  807. unsigned long smp_flags;
  808. int err = 0;
  809.       #if defined(LINUX_2_1) || defined(LINUX_2_4)
  810. if(copy_from_user((void*)&dump, (void*)u_dump, sizeof(sdla_dump_t)))
  811. return -EFAULT;
  812.       #else
  813.         if ((u_dump == NULL) ||
  814.             verify_area(VERIFY_READ, u_dump, sizeof(sdla_dump_t)))
  815.                 return -EFAULT;
  816.         memcpy_fromfs((void*)&dump, (void*)u_dump, sizeof(sdla_dump_t));
  817.       #endif
  818. if ((dump.magic != WANPIPE_MAGIC) ||
  819.     (dump.offset + dump.length > card->hw.memory))
  820. return -EINVAL;
  821.       #ifdef LINUX_2_0
  822.         if ((dump.ptr == NULL) ||
  823.             verify_area(VERIFY_WRITE, dump.ptr, dump.length))
  824.                 return -EFAULT;
  825.       #endif
  826. winsize = card->hw.dpmsize;
  827. if(card->hw.type != SDLA_S514) {
  828. lock_adapter_irq(&card->wandev.lock, &smp_flags);
  829.                 oldvec = card->hw.vector;
  830.                 while (dump.length) {
  831. /* current offset */
  832.                         unsigned pos = dump.offset % winsize;
  833. /* current vector */
  834.                         unsigned long vec = dump.offset - pos;
  835.                         unsigned len = (dump.length > (winsize - pos)) ?
  836.                          (winsize - pos) : dump.length;
  837. /* relocate window */
  838.                         if (sdla_mapmem(&card->hw, vec) != 0) {
  839.                                 err = -EIO;
  840.                                 break;
  841.                         }
  842.                       #if defined(LINUX_2_1) || defined(LINUX_2_4)
  843.                         if(copy_to_user((void *)dump.ptr,
  844.                                 (u8 *)card->hw.dpmbase + pos, len)){ 
  845. unlock_adapter_irq(&card->wandev.lock, &smp_flags);
  846. return -EFAULT;
  847. }
  848.                       #else
  849. memcpy_tofs((void*)(dump.ptr),
  850.                          (void*)(card->hw.dpmbase + pos), len);
  851.                       #endif
  852.                         dump.length     -= len;
  853.                         dump.offset     += len;
  854.                         (char*)dump.ptr += len;
  855.                 }
  856.                 sdla_mapmem(&card->hw, oldvec);/* restore DPM window position */
  857. unlock_adapter_irq(&card->wandev.lock, &smp_flags);
  858.         
  859. }else {
  860.      #if defined(LINUX_2_1) || defined(LINUX_2_4) 
  861.                if(copy_to_user((void *)dump.ptr,
  862.        (u8 *)card->hw.dpmbase + dump.offset, dump.length)){
  863. return -EFAULT;
  864. }
  865.              #else
  866.                 memcpy_tofs((void*)(dump.ptr),
  867.                 (void*)(card->hw.dpmbase + dump.offset), dump.length);
  868.              #endif
  869. }
  870. return err;
  871. }
  872. /*============================================================================
  873.  * Execute adapter firmware command.
  874.  * o verify request structure
  875.  * o copy request structure to kernel data space
  876.  * o call protocol-specific 'exec' function
  877.  */
  878. static int ioctl_exec (sdla_t* card, sdla_exec_t* u_exec, int cmd)
  879. {
  880. sdla_exec_t exec;
  881. int err=0;
  882. if (card->exec == NULL && cmd == WANPIPE_EXEC){
  883. return -ENODEV;
  884. }
  885.       #if defined(LINUX_2_1) || defined(LINUX_2_4)
  886. if(copy_from_user((void*)&exec, (void*)u_exec, sizeof(sdla_exec_t)))
  887. return -EFAULT;
  888.       #else
  889.         if ((u_exec == NULL) ||
  890.             verify_area(VERIFY_READ, u_exec, sizeof(sdla_exec_t)))
  891.                 return -EFAULT;
  892.         memcpy_fromfs((void*)&exec, (void*)u_exec, sizeof(sdla_exec_t));
  893.       #endif
  894. if ((exec.magic != WANPIPE_MAGIC) || (exec.cmd == NULL))
  895. return -EINVAL;
  896. switch (cmd) {
  897. case WANPIPE_EXEC:
  898. err = card->exec(card, exec.cmd, exec.data);
  899. break;
  900. }
  901. return err;
  902. }
  903. /******* Miscellaneous ******************************************************/
  904. /*============================================================================
  905.  * SDLA Interrupt Service Routine.
  906.  * o acknowledge SDLA hardware interrupt.
  907.  * o call protocol-specific interrupt service routine, if any.
  908.  */
  909. STATIC void sdla_isr (int irq, void* dev_id, struct pt_regs *regs)
  910. {
  911. #define card ((sdla_t*)dev_id)
  912. if(card->hw.type == SDLA_S514) { /* handle interrrupt on S514 */
  913.                 u32 int_status;
  914.                 unsigned char CPU_no = card->hw.S514_cpu_no[0];
  915.                 unsigned char card_found_for_IRQ;
  916. u8 IRQ_count = 0;
  917. for(;;) {
  918. read_S514_int_stat(&card->hw, &int_status);
  919. /* check if the interrupt is for this device */
  920.   if(!((unsigned char)int_status &
  921. (IRQ_CPU_A | IRQ_CPU_B)))
  922.                          return;
  923. /* if the IRQ is for both CPUs on the same adapter, */
  924. /* then alter the interrupt status so as to handle */
  925. /* one CPU at a time */
  926. if(((unsigned char)int_status & (IRQ_CPU_A | IRQ_CPU_B))
  927. == (IRQ_CPU_A | IRQ_CPU_B)) {
  928. int_status &= (CPU_no == S514_CPU_A) ?
  929. ~IRQ_CPU_B : ~IRQ_CPU_A;
  930. }
  931.  
  932. card_found_for_IRQ = 0;
  933.               /* check to see that the CPU number for this device */
  934. /* corresponds to the interrupt status read */
  935.                  switch (CPU_no) {
  936.                          case S514_CPU_A:
  937.                                  if((unsigned char)int_status &
  938. IRQ_CPU_A)
  939.                                         card_found_for_IRQ = 1;
  940.                                 break;
  941.                         case S514_CPU_B:
  942.                                  if((unsigned char)int_status &
  943. IRQ_CPU_B)
  944.                                         card_found_for_IRQ = 1;
  945.                                 break;
  946.                  }
  947. /* exit if the interrupt is for another CPU on the */
  948. /* same IRQ */
  949. if(!card_found_for_IRQ)
  950. return;
  951.           if (!card || 
  952.    (card->wandev.state == WAN_UNCONFIGURED && !card->configured)){
  953. printk(KERN_INFO
  954. "Received IRQ %d for CPU #%cn",
  955. irq, CPU_no);
  956. printk(KERN_INFO
  957. "IRQ for unconfigured adaptern");
  958. S514_intack(&card->hw, int_status);
  959. return;
  960.         }
  961.          if (card->in_isr) {
  962.                  printk(KERN_INFO
  963. "%s: interrupt re-entrancy on IRQ %dn",
  964.                         card->devname, card->wandev.irq);
  965. S514_intack(&card->hw, int_status);
  966.   return;
  967.         }
  968. spin_lock(&card->wandev.lock);
  969. if (card->next){
  970. spin_lock(&card->next->wandev.lock);
  971. }
  972.                 S514_intack(&card->hw, int_status);
  973.         if (card->isr)
  974. card->isr(card);
  975. if (card->next){
  976. spin_unlock(&card->next->wandev.lock);
  977. }
  978. spin_unlock(&card->wandev.lock);
  979. /* handle a maximum of two interrupts (one for each */
  980. /* CPU on the adapter) before returning */  
  981. if((++ IRQ_count) == 2)
  982. return;
  983. }
  984. }
  985. else { /* handle interrupt on S508 adapter */
  986. if (!card || ((card->wandev.state == WAN_UNCONFIGURED) && !card->configured))
  987. return;
  988. if (card->in_isr) {
  989. printk(KERN_INFO
  990. "%s: interrupt re-entrancy on IRQ %d!n",
  991. card->devname, card->wandev.irq);
  992. return;
  993. }
  994. spin_lock(&card->wandev.lock);
  995. if (card->next){
  996. spin_lock(&card->next->wandev.lock);
  997. }
  998. sdla_intack(&card->hw);
  999. if (card->isr)
  1000. card->isr(card);
  1001. if (card->next){
  1002. spin_unlock(&card->next->wandev.lock);
  1003. }
  1004. spin_unlock(&card->wandev.lock);
  1005. }
  1006.                 
  1007. #undef card
  1008. }
  1009. /*============================================================================
  1010.  * This routine is called by the protocol-specific modules when network
  1011.  * interface is being open.  The only reason we need this, is because we
  1012.  * have to call MOD_INC_USE_COUNT, but cannot include 'module.h' where it's
  1013.  * defined more than once into the same kernel module.
  1014.  */
  1015. void wanpipe_open (sdla_t* card)
  1016. {
  1017. ++card->open_cnt;
  1018. MOD_INC_USE_COUNT;
  1019. }
  1020. /*============================================================================
  1021.  * This routine is called by the protocol-specific modules when network
  1022.  * interface is being closed.  The only reason we need this, is because we
  1023.  * have to call MOD_DEC_USE_COUNT, but cannot include 'module.h' where it's
  1024.  * defined more than once into the same kernel module.
  1025.  */
  1026. void wanpipe_close (sdla_t* card)
  1027. {
  1028. --card->open_cnt;
  1029. MOD_DEC_USE_COUNT;
  1030. }
  1031. /*============================================================================
  1032.  * Set WAN device state.
  1033.  */
  1034. void wanpipe_set_state (sdla_t* card, int state)
  1035. {
  1036. if (card->wandev.state != state) {
  1037. switch (state) {
  1038. case WAN_CONNECTED:
  1039. printk (KERN_INFO "%s: link connected!n",
  1040. card->devname);
  1041. break;
  1042. case WAN_CONNECTING:
  1043. printk (KERN_INFO "%s: link connecting...n",
  1044. card->devname);
  1045. break;
  1046. case WAN_DISCONNECTED:
  1047. printk (KERN_INFO "%s: link disconnected!n",
  1048. card->devname);
  1049. break;
  1050. }
  1051. card->wandev.state = state;
  1052. }
  1053. card->state_tick = jiffies;
  1054. }
  1055. sdla_t * wanpipe_find_card (char *name)
  1056. {
  1057. int cnt;
  1058. for (cnt = 0; cnt < ncards; ++ cnt) {
  1059. sdla_t* card = &card_array[cnt];
  1060. if (!strcmp(card->devname,name))
  1061. return card;
  1062. }
  1063. return NULL;
  1064. }
  1065. sdla_t * wanpipe_find_card_num (int num)
  1066. {
  1067. if (num < 1 || num > ncards)
  1068. return NULL;
  1069. num--;
  1070. return &card_array[num];
  1071. }
  1072. static void run_wanpipe_tq (unsigned long data)
  1073. {
  1074. task_queue *tq_queue = (task_queue *)data;
  1075. if (test_and_set_bit(2,(void*)&wanpipe_bh_critical))
  1076. printk(KERN_INFO "CRITICAL IN RUNNING TASK QUEUEn");
  1077. run_task_queue (tq_queue);
  1078. clear_bit(2,(void*)&wanpipe_bh_critical);
  1079. }
  1080. void wanpipe_queue_tq (struct tq_struct *bh_pointer)
  1081. {
  1082. if (test_and_set_bit(1,(void*)&wanpipe_bh_critical))
  1083. printk(KERN_INFO "CRITICAL IN QUEUING TASKn");
  1084. queue_task(bh_pointer,&wanpipe_tq_custom);
  1085. clear_bit(1,(void*)&wanpipe_bh_critical);
  1086. }
  1087. void wanpipe_mark_bh (void)
  1088. {
  1089. if (!test_and_set_bit(0,(void*)&wanpipe_bh_critical)){
  1090. queue_task(&wanpipe_tq_task,&tq_immediate);
  1091. mark_bh(IMMEDIATE_BH);
  1092. clear_bit(0,(void*)&wanpipe_bh_critical);
  1093. }
  1094. void wakeup_sk_bh (netdevice_t *dev)
  1095. {
  1096. wanpipe_common_t *chan = dev->priv;
  1097. if (test_bit(0,&chan->common_critical))
  1098. return;
  1099. if (chan->sk && chan->tx_timer){
  1100. chan->tx_timer->expires=jiffies+1;
  1101. add_timer(chan->tx_timer);
  1102. }
  1103. }
  1104. int change_dev_flags (netdevice_t *dev, unsigned flags)
  1105. {
  1106. struct ifreq if_info;
  1107. mm_segment_t fs = get_fs();
  1108. int err;
  1109. memset(&if_info, 0, sizeof(if_info));
  1110. strcpy(if_info.ifr_name, dev->name);
  1111. if_info.ifr_flags = flags;
  1112. set_fs(get_ds());     /* get user space block */ 
  1113. err = devinet_ioctl(SIOCSIFFLAGS, &if_info);
  1114. set_fs(fs);
  1115. return err;
  1116. }
  1117. unsigned long get_ip_address (netdevice_t *dev, int option)
  1118. {
  1119.       #ifdef LINUX_2_4
  1120. struct in_ifaddr *ifaddr;
  1121. struct in_device *in_dev;
  1122. if ((in_dev = __in_dev_get(dev)) == NULL){
  1123. return 0;
  1124. }
  1125.       #elif defined(LINUX_2_1)
  1126. struct in_ifaddr *ifaddr;
  1127. struct in_device *in_dev;
  1128. if ((in_dev = dev->ip_ptr) == NULL){
  1129. return 0;
  1130. }
  1131.       #endif
  1132.       #if defined(LINUX_2_1) || defined(LINUX_2_4)
  1133. if ((ifaddr = in_dev->ifa_list)== NULL ){
  1134. return 0;
  1135. }
  1136.       #endif
  1137. switch (option){
  1138. case WAN_LOCAL_IP:
  1139.       #ifdef LINUX_2_0
  1140. return dev->pa_addr;
  1141.       #else
  1142. return ifaddr->ifa_local;
  1143.       #endif
  1144. break;
  1145. case WAN_POINTOPOINT_IP:
  1146.       #ifdef LINUX_2_0
  1147. return dev->pa_dstaddr;
  1148.       #else
  1149. return ifaddr->ifa_address;
  1150.       #endif
  1151. break;
  1152. case WAN_NETMASK_IP:
  1153.       #ifdef LINUX_2_0
  1154. return dev->pa_mask;
  1155.       #else
  1156. return ifaddr->ifa_mask;
  1157.       #endif
  1158. break;
  1159. case WAN_BROADCAST_IP:
  1160.       #ifdef LINUX_2_0
  1161. return dev->pa_brdaddr;
  1162.       #else
  1163. return ifaddr->ifa_broadcast;
  1164.       #endif
  1165. break;
  1166. default:
  1167. return 0;
  1168. }
  1169. return 0;
  1170. }
  1171. void add_gateway(sdla_t *card, netdevice_t *dev)
  1172. {
  1173. mm_segment_t oldfs;
  1174. struct rtentry route;
  1175. int res;
  1176. memset((char*)&route,0,sizeof(struct rtentry));
  1177. ((struct sockaddr_in *)
  1178. &(route.rt_dst))->sin_addr.s_addr = 0;
  1179. ((struct sockaddr_in *)
  1180. &(route.rt_dst))->sin_family = AF_INET;
  1181. ((struct sockaddr_in *)
  1182. &(route.rt_genmask))->sin_addr.s_addr = 0;
  1183. ((struct sockaddr_in *) 
  1184. &(route.rt_genmask)) ->sin_family = AF_INET;
  1185. route.rt_flags = 0;  
  1186. route.rt_dev = dev->name;
  1187. oldfs = get_fs();
  1188. set_fs(get_ds());
  1189.       #if defined(LINUX_2_1) || defined(LINUX_2_4)
  1190. res = ip_rt_ioctl(SIOCADDRT,&route);
  1191.       #else
  1192. res = ip_rt_new(&route);
  1193.       #endif
  1194. set_fs(oldfs);
  1195. if (res == 0){
  1196. printk(KERN_INFO "%s: Gateway added for %sn",
  1197. card->devname,dev->name);
  1198. }
  1199. return;
  1200. }
  1201. MODULE_LICENSE("GPL");
  1202. /****** End *********************************************************/