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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      w83977af_ir.c
  4.  * Version:       1.0
  5.  * Description:   FIR driver for the Winbond W83977AF Super I/O chip
  6.  * Status:        Experimental.
  7.  * Author:        Paul VanderSpek
  8.  * Created at:    Wed Nov  4 11:46:16 1998
  9.  * Modified at:   Fri Jan 28 12:10:59 2000
  10.  * Modified by:   Dag Brattli <dagb@cs.uit.no>
  11.  * 
  12.  *     Copyright (c) 1998-2000 Dag Brattli <dagb@cs.uit.no>
  13.  *     Copyright (c) 1998-1999 Rebel.com
  14.  *      
  15.  *     This program is free software; you can redistribute it and/or 
  16.  *     modify it under the terms of the GNU General Public License as 
  17.  *     published by the Free Software Foundation; either version 2 of 
  18.  *     the License, or (at your option) any later version.
  19.  *  
  20.  *     Neither Paul VanderSpek nor Rebel.com admit liability nor provide
  21.  *     warranty for any of this software. This material is provided "AS-IS"
  22.  *     and at no charge.
  23.  *     
  24.  *     If you find bugs in this file, its very likely that the same bug
  25.  *     will also be in pc87108.c since the implementations are quite
  26.  *     similar.
  27.  *
  28.  *     Notice that all functions that needs to access the chip in _any_
  29.  *     way, must save BSR register on entry, and restore it on exit. 
  30.  *     It is _very_ important to follow this policy!
  31.  *
  32.  *         __u8 bank;
  33.  *     
  34.  *         bank = inb( iobase+BSR);
  35.  *  
  36.  *         do_your_stuff_here();
  37.  *
  38.  *         outb( bank, iobase+BSR);
  39.  *
  40.  ********************************************************************/
  41. #include <linux/module.h>
  42. #include <linux/config.h> 
  43. #include <linux/kernel.h>
  44. #include <linux/types.h>
  45. #include <linux/skbuff.h>
  46. #include <linux/netdevice.h>
  47. #include <linux/ioport.h>
  48. #include <linux/delay.h>
  49. #include <linux/slab.h>
  50. #include <linux/init.h>
  51. #include <linux/rtnetlink.h>
  52. #include <asm/io.h>
  53. #include <asm/dma.h>
  54. #include <asm/byteorder.h>
  55. #include <net/irda/irda.h>
  56. #include <net/irda/irmod.h>
  57. #include <net/irda/wrapper.h>
  58. #include <net/irda/irda_device.h>
  59. #include <net/irda/w83977af.h>
  60. #include <net/irda/w83977af_ir.h>
  61. #ifdef  CONFIG_ARCH_NETWINDER            /* Adjust to NetWinder differences */
  62. #undef  CONFIG_NETWINDER_TX_DMA_PROBLEMS /* Not needed */
  63. #define CONFIG_NETWINDER_RX_DMA_PROBLEMS /* Must have this one! */
  64. #endif
  65. #undef  CONFIG_USE_INTERNAL_TIMER  /* Just cannot make that timer work */
  66. #define CONFIG_USE_W977_PNP        /* Currently needed */
  67. #define PIO_MAX_SPEED       115200 
  68. static char *driver_name = "w83977af_ir";
  69. static int  qos_mtt_bits = 0x07;   /* 1 ms or more */
  70. #define CHIP_IO_EXTENT 8
  71. static unsigned int io[] = { 0x180, ~0, ~0, ~0 };
  72. #ifdef CONFIG_ARCH_NETWINDER             /* Adjust to NetWinder differences */
  73. static unsigned int irq[] = { 6, 0, 0, 0 };
  74. #else
  75. static unsigned int irq[] = { 11, 0, 0, 0 };
  76. #endif
  77. static unsigned int dma[] = { 1, 0, 0, 0 };
  78. static unsigned int efbase[] = { W977_EFIO_BASE, W977_EFIO2_BASE };
  79. static unsigned int efio = W977_EFIO_BASE;
  80. static struct w83977af_ir *dev_self[] = { NULL, NULL, NULL, NULL};
  81. /* Some prototypes */
  82. static int  w83977af_open(int i, unsigned int iobase, unsigned int irq, 
  83.                           unsigned int dma);
  84. static int  w83977af_close(struct w83977af_ir *self);
  85. static int  w83977af_probe(int iobase, int irq, int dma);
  86. static int  w83977af_dma_receive(struct w83977af_ir *self); 
  87. static int  w83977af_dma_receive_complete(struct w83977af_ir *self);
  88. static int  w83977af_hard_xmit(struct sk_buff *skb, struct net_device *dev);
  89. static int  w83977af_pio_write(int iobase, __u8 *buf, int len, int fifo_size);
  90. static void w83977af_dma_write(struct w83977af_ir *self, int iobase);
  91. static void w83977af_change_speed(struct w83977af_ir *self, __u32 speed);
  92. static void w83977af_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  93. static int  w83977af_is_receiving(struct w83977af_ir *self);
  94. static int  w83977af_net_init(struct net_device *dev);
  95. static int  w83977af_net_open(struct net_device *dev);
  96. static int  w83977af_net_close(struct net_device *dev);
  97. static int  w83977af_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  98. static struct net_device_stats *w83977af_net_get_stats(struct net_device *dev);
  99. /*
  100.  * Function w83977af_init ()
  101.  *
  102.  *    Initialize chip. Just try to find out how many chips we are dealing with
  103.  *    and where they are
  104.  */
  105. int __init w83977af_init(void)
  106. {
  107.         int i;
  108. IRDA_DEBUG(0, __FUNCTION__ "()n");
  109. for (i=0; (io[i] < 2000) && (i < 4); i++) { 
  110. int ioaddr = io[i];
  111. if (check_region(ioaddr, CHIP_IO_EXTENT) < 0)
  112. continue;
  113. if (w83977af_open(i, io[i], irq[i], dma[i]) == 0)
  114. return 0;
  115. }
  116. return -ENODEV;
  117. }
  118. /*
  119.  * Function w83977af_cleanup ()
  120.  *
  121.  *    Close all configured chips
  122.  *
  123.  */
  124. #ifdef MODULE
  125. void w83977af_cleanup(void)
  126. {
  127. int i;
  128.         IRDA_DEBUG(4, __FUNCTION__ "()n");
  129. for (i=0; i < 4; i++) {
  130. if (dev_self[i])
  131. w83977af_close(dev_self[i]);
  132. }
  133. }
  134. #endif /* MODULE */
  135. /*
  136.  * Function w83977af_open (iobase, irq)
  137.  *
  138.  *    Open driver instance
  139.  *
  140.  */
  141. int w83977af_open(int i, unsigned int iobase, unsigned int irq, 
  142.   unsigned int dma)
  143. {
  144. struct net_device *dev;
  145.         struct w83977af_ir *self;
  146. void *ret;
  147. int err;
  148. IRDA_DEBUG(0, __FUNCTION__ "()n");
  149. if (w83977af_probe(iobase, irq, dma) == -1)
  150. return -1;
  151. /*
  152.  *  Allocate new instance of the driver
  153.  */
  154. self = kmalloc(sizeof(struct w83977af_ir), GFP_KERNEL);
  155. if (self == NULL) {
  156. printk( KERN_ERR "IrDA: Can't allocate memory for "
  157. "IrDA control block!n");
  158. return -ENOMEM;
  159. }
  160. memset(self, 0, sizeof(struct w83977af_ir));
  161.    
  162. /* Need to store self somewhere */
  163. dev_self[i] = self;
  164. /* Initialize IO */
  165. self->io.fir_base   = iobase;
  166.         self->io.irq       = irq;
  167.         self->io.fir_ext   = CHIP_IO_EXTENT;
  168.         self->io.dma       = dma;
  169.         self->io.fifo_size = 32;
  170. /* Lock the port that we need */
  171. ret = request_region(self->io.fir_base, self->io.fir_ext, driver_name);
  172. if (!ret) { 
  173. IRDA_DEBUG(0, __FUNCTION__ "(), can't get iobase of 0x%03xn",
  174.       self->io.fir_base);
  175. /* w83977af_cleanup( self);  */
  176. return -ENODEV;
  177. }
  178. /* Initialize QoS for this device */
  179. irda_init_max_qos_capabilies(&self->qos);
  180. /* The only value we must override it the baudrate */
  181. /* FIXME: The HP HDLS-1100 does not support 1152000! */
  182. self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
  183. IR_115200/*|IR_576000|IR_1152000|(IR_4000000 << 8)*/;
  184. /* The HP HDLS-1100 needs 1 ms according to the specs */
  185. self->qos.min_turn_time.bits = qos_mtt_bits;
  186. irda_qos_bits_to_value(&self->qos);
  187. self->flags = IFF_FIR|IFF_MIR|IFF_SIR|IFF_DMA|IFF_PIO;
  188. /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
  189. self->rx_buff.truesize = 14384; 
  190. self->tx_buff.truesize = 4000;
  191. /* Allocate memory if needed */
  192. self->rx_buff.head = (__u8 *) kmalloc(self->rx_buff.truesize,
  193.       GFP_KERNEL|GFP_DMA);
  194. if (self->rx_buff.head == NULL)
  195. return -ENOMEM;
  196. memset(self->rx_buff.head, 0, self->rx_buff.truesize);
  197. self->tx_buff.head = (__u8 *) kmalloc(self->tx_buff.truesize, 
  198.       GFP_KERNEL|GFP_DMA);
  199. if (self->tx_buff.head == NULL) {
  200. kfree(self->rx_buff.head);
  201. return -ENOMEM;
  202. }
  203. memset(self->tx_buff.head, 0, self->tx_buff.truesize);
  204. self->rx_buff.in_frame = FALSE;
  205. self->rx_buff.state = OUTSIDE_FRAME;
  206. self->tx_buff.data = self->tx_buff.head;
  207. self->rx_buff.data = self->rx_buff.head;
  208. if (!(dev = dev_alloc("irda%d", &err))) {
  209. ERROR(__FUNCTION__ "(), dev_alloc() failed!n");
  210. return -ENOMEM;
  211. }
  212. dev->priv = (void *) self;
  213. self->netdev = dev;
  214. /* Override the network functions we need to use */
  215. dev->init            = w83977af_net_init;
  216. dev->hard_start_xmit = w83977af_hard_xmit;
  217. dev->open            = w83977af_net_open;
  218. dev->stop            = w83977af_net_close;
  219. dev->do_ioctl        = w83977af_net_ioctl;
  220. dev->get_stats      = w83977af_net_get_stats;
  221. rtnl_lock();
  222. err = register_netdevice(dev);
  223. rtnl_unlock();
  224. if (err) {
  225. ERROR(__FUNCTION__ "(), register_netdevice() failed!n");
  226. return -1;
  227. }
  228. MESSAGE("IrDA: Registered device %sn", dev->name);
  229. return 0;
  230. }
  231. /*
  232.  * Function w83977af_close (self)
  233.  *
  234.  *    Close driver instance
  235.  *
  236.  */
  237. static int w83977af_close(struct w83977af_ir *self)
  238. {
  239. int iobase;
  240. IRDA_DEBUG(0, __FUNCTION__ "()n");
  241.         iobase = self->io.fir_base;
  242. #ifdef CONFIG_USE_W977_PNP
  243. /* enter PnP configuration mode */
  244. w977_efm_enter(efio);
  245. w977_select_device(W977_DEVICE_IR, efio);
  246. /* Deactivate device */
  247. w977_write_reg(0x30, 0x00, efio);
  248. w977_efm_exit(efio);
  249. #endif /* CONFIG_USE_W977_PNP */
  250. /* Remove netdevice */
  251. if (self->netdev) {
  252. rtnl_lock();
  253. unregister_netdevice(self->netdev);
  254. rtnl_unlock();
  255. }
  256. /* Release the PORT that this driver is using */
  257. IRDA_DEBUG(0 , __FUNCTION__ "(), Releasing Region %03xn", 
  258.       self->io.fir_base);
  259. release_region(self->io.fir_base, self->io.fir_ext);
  260. if (self->tx_buff.head)
  261. kfree(self->tx_buff.head);
  262. if (self->rx_buff.head)
  263. kfree(self->rx_buff.head);
  264. kfree(self);
  265. return 0;
  266. }
  267. int w83977af_probe( int iobase, int irq, int dma)
  268. {
  269.    int version;
  270. int i;
  271.   
  272.   for (i=0; i < 2; i++) {
  273.   IRDA_DEBUG( 0, __FUNCTION__ "()n");
  274. #ifdef CONFIG_USE_W977_PNP
  275.   /* Enter PnP configuration mode */
  276. w977_efm_enter(efbase[i]);
  277.   
  278.   w977_select_device(W977_DEVICE_IR, efbase[i]);
  279.   
  280.   /* Configure PnP port, IRQ, and DMA channel */
  281.   w977_write_reg(0x60, (iobase >> 8) & 0xff, efbase[i]);
  282.   w977_write_reg(0x61, (iobase) & 0xff, efbase[i]);
  283.   
  284.   w977_write_reg(0x70, irq, efbase[i]);
  285. #ifdef CONFIG_ARCH_NETWINDER
  286. /* Netwinder uses 1 higher than Linux */
  287.   w977_write_reg(0x74, dma+1, efbase[i]);
  288. #else
  289.   w977_write_reg(0x74, dma, efbase[i]);   
  290. #endif /*CONFIG_ARCH_NETWINDER */
  291.   w977_write_reg(0x75, 0x04, efbase[i]);  /* Disable Tx DMA */
  292.   
  293.   /* Set append hardware CRC, enable IR bank selection */
  294.   w977_write_reg(0xf0, APEDCRC|ENBNKSEL, efbase[i]);
  295.   
  296.   /* Activate device */
  297.   w977_write_reg(0x30, 0x01, efbase[i]);
  298.   
  299.   w977_efm_exit(efbase[i]);
  300. #endif /* CONFIG_USE_W977_PNP */
  301.    /* Disable Advanced mode */
  302.    switch_bank(iobase, SET2);
  303.    outb(iobase+2, 0x00);  
  304.  
  305.   /* Turn on UART (global) interrupts */
  306.   switch_bank(iobase, SET0);
  307.    outb(HCR_EN_IRQ, iobase+HCR);
  308.   
  309.    /* Switch to advanced mode */
  310.    switch_bank(iobase, SET2);
  311.    outb(inb(iobase+ADCR1) | ADCR1_ADV_SL, iobase+ADCR1);
  312.   
  313.    /* Set default IR-mode */
  314.    switch_bank(iobase, SET0);
  315.    outb(HCR_SIR, iobase+HCR);
  316.   
  317.    /* Read the Advanced IR ID */
  318.    switch_bank(iobase, SET3);
  319.    version = inb(iobase+AUID);
  320.   
  321.    /* Should be 0x1? */
  322.    if (0x10 == (version & 0xf0)) {
  323.   efio = efbase[i];
  324.  
  325.   /* Set FIFO size to 32 */
  326.   switch_bank(iobase, SET2);
  327.   outb(ADCR2_RXFS32|ADCR2_TXFS32, iobase+ADCR2);
  328.  
  329.   /* Set FIFO threshold to TX17, RX16 */
  330.   switch_bank(iobase, SET0);
  331.   outb(UFR_RXTL|UFR_TXTL|UFR_TXF_RST|UFR_RXF_RST|
  332.      UFR_EN_FIFO,iobase+UFR);
  333.  
  334.   /* Receiver frame length */
  335.   switch_bank(iobase, SET4);
  336. outb(2048 & 0xff, iobase+6);
  337. outb((2048 >> 8) & 0x1f, iobase+7);
  338. /* 
  339.  * Init HP HSDL-1100 transceiver. 
  340.  * 
  341.  * Set IRX_MSL since we have 2 * receive paths IRRX, 
  342.  * and IRRXH. Clear IRSL0D since we want IRSL0 * to 
  343.  * be a input pin used for IRRXH 
  344.  *
  345.  *   IRRX  pin 37 connected to receiver 
  346.  *   IRTX  pin 38 connected to transmitter
  347.  *   FIRRX pin 39 connected to receiver      (IRSL0) 
  348.  *   CIRRX pin 40 connected to pin 37
  349.  */
  350. switch_bank(iobase, SET7);
  351. outb(0x40, iobase+7);
  352. MESSAGE("W83977AF (IR) driver loaded. "
  353. "Version: 0x%02xn", version);
  354. return 0;
  355. } else {
  356. /* Try next extented function register address */
  357. IRDA_DEBUG( 0, __FUNCTION__ "(), Wrong chip version");
  358. }
  359.    }   
  360. return -1;
  361. }
  362. void w83977af_change_speed(struct w83977af_ir *self, __u32 speed)
  363. {
  364. int ir_mode = HCR_SIR;
  365. int iobase; 
  366. __u8 set;
  367. iobase = self->io.fir_base;
  368. /* Update accounting for new speed */
  369. self->io.speed = speed;
  370. /* Save current bank */
  371. set = inb(iobase+SSR);
  372. /* Disable interrupts */
  373. switch_bank(iobase, SET0);
  374. outb(0, iobase+ICR);
  375. /* Select Set 2 */
  376. switch_bank(iobase, SET2);
  377. outb(0x00, iobase+ABHL);
  378. switch (speed) {
  379. case 9600:   outb(0x0c, iobase+ABLL); break;
  380. case 19200:  outb(0x06, iobase+ABLL); break;
  381. case 38400:  outb(0x03, iobase+ABLL); break;
  382. case 57600:  outb(0x02, iobase+ABLL); break;
  383. case 115200: outb(0x01, iobase+ABLL); break;
  384. case 576000:
  385. ir_mode = HCR_MIR_576;
  386. IRDA_DEBUG(0, __FUNCTION__ "(), handling baud of 576000n");
  387. break;
  388. case 1152000:
  389. ir_mode = HCR_MIR_1152;
  390. IRDA_DEBUG(0, __FUNCTION__ "(), handling baud of 1152000n");
  391. break;
  392. case 4000000:
  393. ir_mode = HCR_FIR;
  394. IRDA_DEBUG(0, __FUNCTION__ "(), handling baud of 4000000n");
  395. break;
  396. default:
  397. ir_mode = HCR_FIR;
  398. IRDA_DEBUG(0, __FUNCTION__ "(), unknown baud rate of %dn", speed);
  399. break;
  400. }
  401. /* Set speed mode */
  402. switch_bank(iobase, SET0);
  403. outb(ir_mode, iobase+HCR);
  404. /* set FIFO size to 32 */
  405. switch_bank(iobase, SET2);
  406. outb(ADCR2_RXFS32|ADCR2_TXFS32, iobase+ADCR2);
  407. /* set FIFO threshold to TX17, RX16 */
  408. switch_bank(iobase, SET0);
  409. outb(0x00, iobase+UFR);        /* Reset */
  410. outb(UFR_EN_FIFO, iobase+UFR); /* First we must enable FIFO */
  411. outb(0xa7, iobase+UFR);
  412. netif_wake_queue(self->netdev);
  413. /* Enable some interrupts so we can receive frames */
  414. switch_bank(iobase, SET0);
  415. if (speed > PIO_MAX_SPEED) {
  416. outb(ICR_EFSFI, iobase+ICR);
  417. w83977af_dma_receive(self);
  418. } else
  419. outb(ICR_ERBRI, iobase+ICR);
  420.     
  421. /* Restore SSR */
  422. outb(set, iobase+SSR);
  423. }
  424. /*
  425.  * Function w83977af_hard_xmit (skb, dev)
  426.  *
  427.  *    Sets up a DMA transfer to send the current frame.
  428.  *
  429.  */
  430. int w83977af_hard_xmit(struct sk_buff *skb, struct net_device *dev)
  431. {
  432. struct w83977af_ir *self;
  433. __s32 speed;
  434. int iobase;
  435. __u8 set;
  436. int mtt;
  437. self = (struct w83977af_ir *) dev->priv;
  438. iobase = self->io.fir_base;
  439. IRDA_DEBUG(4, __FUNCTION__ "(%ld), skb->len=%dn", jiffies, 
  440.    (int) skb->len);
  441. /* Lock transmit buffer */
  442. netif_stop_queue(dev);
  443. /* Check if we need to change the speed */
  444. speed = irda_get_next_speed(skb);
  445. if ((speed != self->io.speed) && (speed != -1)) {
  446. /* Check for empty frame */
  447. if (!skb->len) {
  448. w83977af_change_speed(self, speed); 
  449. dev_kfree_skb(skb);
  450. return 0;
  451. } else
  452. self->new_speed = speed;
  453. }
  454. /* Save current set */
  455. set = inb(iobase+SSR);
  456. /* Decide if we should use PIO or DMA transfer */
  457. if (self->io.speed > PIO_MAX_SPEED) {
  458. self->tx_buff.data = self->tx_buff.head;
  459. memcpy(self->tx_buff.data, skb->data, skb->len);
  460. self->tx_buff.len = skb->len;
  461. mtt = irda_get_mtt(skb);
  462. #ifdef CONFIG_USE_INTERNAL_TIMER
  463.         if (mtt > 50) {
  464. /* Adjust for timer resolution */
  465. mtt /= 1000+1;
  466. /* Setup timer */
  467. switch_bank(iobase, SET4);
  468. outb(mtt & 0xff, iobase+TMRL);
  469. outb((mtt >> 8) & 0x0f, iobase+TMRH);
  470. /* Start timer */
  471. outb(IR_MSL_EN_TMR, iobase+IR_MSL);
  472. self->io.direction = IO_XMIT;
  473. /* Enable timer interrupt */
  474. switch_bank(iobase, SET0);
  475. outb(ICR_ETMRI, iobase+ICR);
  476. } else {
  477. #endif
  478. IRDA_DEBUG(4,__FUNCTION__ "(%ld), mtt=%dn", jiffies, mtt);
  479. if (mtt)
  480. udelay(mtt);
  481. /* Enable DMA interrupt */
  482. switch_bank(iobase, SET0);
  483.   outb(ICR_EDMAI, iobase+ICR);
  484.       w83977af_dma_write(self, iobase);
  485. #ifdef CONFIG_USE_INTERNAL_TIMER
  486. }
  487. #endif
  488. } else {
  489. self->tx_buff.data = self->tx_buff.head;
  490. self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data, 
  491.    self->tx_buff.truesize);
  492. /* Add interrupt on tx low level (will fire immediately) */
  493. switch_bank(iobase, SET0);
  494. outb(ICR_ETXTHI, iobase+ICR);
  495. }
  496. dev_kfree_skb(skb);
  497. /* Restore set register */
  498. outb(set, iobase+SSR);
  499. return 0;
  500. }
  501. /*
  502.  * Function w83977af_dma_write (self, iobase)
  503.  *
  504.  *    Send frame using DMA
  505.  *
  506.  */
  507. static void w83977af_dma_write(struct w83977af_ir *self, int iobase)
  508. {
  509. __u8 set;
  510. #ifdef CONFIG_NETWINDER_TX_DMA_PROBLEMS
  511. unsigned long flags;
  512. __u8 hcr;
  513. #endif
  514.         IRDA_DEBUG(4, __FUNCTION__ "(), len=%dn", self->tx_buff.len);
  515. /* Save current set */
  516. set = inb(iobase+SSR);
  517. /* Disable DMA */
  518. switch_bank(iobase, SET0);
  519. outb(inb(iobase+HCR) & ~HCR_EN_DMA, iobase+HCR);
  520. /* Choose transmit DMA channel  */ 
  521. switch_bank(iobase, SET2);
  522. outb(ADCR1_D_CHSW|/*ADCR1_DMA_F|*/ADCR1_ADV_SL, iobase+ADCR1);
  523. #ifdef CONFIG_NETWINDER_TX_DMA_PROBLEMS
  524. save_flags(flags);
  525. cli();
  526. disable_dma(self->io.dma);
  527. clear_dma_ff(self->io.dma);
  528. set_dma_mode(self->io.dma, DMA_MODE_READ);
  529. set_dma_addr(self->io.dma, virt_to_bus(self->tx_buff.data));
  530. set_dma_count(self->io.dma, self->tx_buff.len);
  531. #else
  532. setup_dma(self->io.dma, self->tx_buff.data, self->tx_buff.len, 
  533.   DMA_MODE_WRITE);
  534. #endif
  535. self->io.direction = IO_XMIT;
  536. /* Enable DMA */
  537.   switch_bank(iobase, SET0);
  538. #ifdef CONFIG_NETWINDER_TX_DMA_PROBLEMS
  539. hcr = inb(iobase+HCR);
  540. outb(hcr | HCR_EN_DMA, iobase+HCR);
  541. enable_dma(self->io.dma);
  542. restore_flags(flags);
  543. #else
  544. outb(inb(iobase+HCR) | HCR_EN_DMA | HCR_TX_WT, iobase+HCR);
  545. #endif
  546. /* Restore set register */
  547. outb(set, iobase+SSR);
  548. }
  549. /*
  550.  * Function w83977af_pio_write (iobase, buf, len, fifo_size)
  551.  *
  552.  *    
  553.  *
  554.  */
  555. static int w83977af_pio_write(int iobase, __u8 *buf, int len, int fifo_size)
  556. {
  557. int actual = 0;
  558. __u8 set;
  559. IRDA_DEBUG(4, __FUNCTION__ "()n");
  560. /* Save current bank */
  561. set = inb(iobase+SSR);
  562. switch_bank(iobase, SET0);
  563. if (!(inb_p(iobase+USR) & USR_TSRE)) {
  564. IRDA_DEBUG(4, __FUNCTION__ 
  565.    "(), warning, FIFO not empty yet!n");
  566. fifo_size -= 17;
  567. IRDA_DEBUG(4, __FUNCTION__ "%d bytes left in tx fifon", 
  568.    fifo_size);
  569. }
  570. /* Fill FIFO with current frame */
  571. while ((fifo_size-- > 0) && (actual < len)) {
  572. /* Transmit next byte */
  573. outb(buf[actual++], iobase+TBR);
  574. }
  575.         
  576. IRDA_DEBUG(4, __FUNCTION__ "(), fifo_size %d ; %d sent of %dn", 
  577.    fifo_size, actual, len);
  578. /* Restore bank */
  579. outb(set, iobase+SSR);
  580. return actual;
  581. }
  582. /*
  583.  * Function w83977af_dma_xmit_complete (self)
  584.  *
  585.  *    The transfer of a frame in finished. So do the necessary things
  586.  *
  587.  *    
  588.  */
  589. void w83977af_dma_xmit_complete(struct w83977af_ir *self)
  590. {
  591. int iobase;
  592. __u8 set;
  593. IRDA_DEBUG(4, __FUNCTION__ "(%ld)n", jiffies);
  594. ASSERT(self != NULL, return;);
  595. iobase = self->io.fir_base;
  596. /* Save current set */
  597. set = inb(iobase+SSR);
  598. /* Disable DMA */
  599. switch_bank(iobase, SET0);
  600. outb(inb(iobase+HCR) & ~HCR_EN_DMA, iobase+HCR);
  601. /* Check for underrrun! */
  602. if (inb(iobase+AUDR) & AUDR_UNDR) {
  603. IRDA_DEBUG(0, __FUNCTION__ "(), Transmit underrun!n");
  604. self->stats.tx_errors++;
  605. self->stats.tx_fifo_errors++;
  606. /* Clear bit, by writing 1 to it */
  607. outb(AUDR_UNDR, iobase+AUDR);
  608. } else
  609. self->stats.tx_packets++;
  610. if (self->new_speed) {
  611. w83977af_change_speed(self, self->new_speed);
  612. self->new_speed = 0;
  613. }
  614. /* Unlock tx_buff and request another frame */
  615. /* Tell the network layer, that we want more frames */
  616. netif_wake_queue(self->netdev);
  617. /* Restore set */
  618. outb(set, iobase+SSR);
  619. }
  620. /*
  621.  * Function w83977af_dma_receive (self)
  622.  *
  623.  *    Get ready for receiving a frame. The device will initiate a DMA
  624.  *    if it starts to receive a frame.
  625.  *
  626.  */
  627. int w83977af_dma_receive(struct w83977af_ir *self) 
  628. {
  629. int iobase;
  630. __u8 set;
  631. #ifdef CONFIG_NETWINDER_RX_DMA_PROBLEMS
  632. unsigned long flags;
  633. __u8 hcr;
  634. #endif
  635. ASSERT(self != NULL, return -1;);
  636. IRDA_DEBUG(4, __FUNCTION__ "n");
  637. iobase= self->io.fir_base;
  638. /* Save current set */
  639. set = inb(iobase+SSR);
  640. /* Disable DMA */
  641. switch_bank(iobase, SET0);
  642. outb(inb(iobase+HCR) & ~HCR_EN_DMA, iobase+HCR);
  643. /* Choose DMA Rx, DMA Fairness, and Advanced mode */
  644. switch_bank(iobase, SET2);
  645. outb((inb(iobase+ADCR1) & ~ADCR1_D_CHSW)/*|ADCR1_DMA_F*/|ADCR1_ADV_SL,
  646.      iobase+ADCR1);
  647. self->io.direction = IO_RECV;
  648. self->rx_buff.data = self->rx_buff.head;
  649. #ifdef CONFIG_NETWINDER_RX_DMA_PROBLEMS
  650. save_flags(flags);
  651. cli();
  652. disable_dma(self->io.dma);
  653. clear_dma_ff(self->io.dma);
  654. set_dma_mode(self->io.dma, DMA_MODE_READ);
  655. set_dma_addr(self->io.dma, virt_to_bus(self->rx_buff.data));
  656. set_dma_count(self->io.dma, self->rx_buff.truesize);
  657. #else
  658. setup_dma(self->io.dma, self->rx_buff.data, self->rx_buff.truesize, 
  659.   DMA_MODE_READ);
  660. #endif
  661. /* 
  662.  * Reset Rx FIFO. This will also flush the ST_FIFO, it's very 
  663.  * important that we don't reset the Tx FIFO since it might not
  664.  * be finished transmitting yet
  665.  */
  666. switch_bank(iobase, SET0);
  667. outb(UFR_RXTL|UFR_TXTL|UFR_RXF_RST|UFR_EN_FIFO, iobase+UFR);
  668. self->st_fifo.len = self->st_fifo.tail = self->st_fifo.head = 0;
  669. /* Enable DMA */
  670. switch_bank(iobase, SET0);
  671. #ifdef CONFIG_NETWINDER_RX_DMA_PROBLEMS
  672. hcr = inb(iobase+HCR);
  673. outb(hcr | HCR_EN_DMA, iobase+HCR);
  674. enable_dma(self->io.dma);
  675. restore_flags(flags);
  676. #else
  677. outb(inb(iobase+HCR) | HCR_EN_DMA, iobase+HCR);
  678. #endif
  679. /* Restore set */
  680. outb(set, iobase+SSR);
  681. return 0;
  682. }
  683. /*
  684.  * Function w83977af_receive_complete (self)
  685.  *
  686.  *    Finished with receiving a frame
  687.  *
  688.  */
  689. int w83977af_dma_receive_complete(struct w83977af_ir *self)
  690. {
  691. struct sk_buff *skb;
  692. struct st_fifo *st_fifo;
  693. int len;
  694. int iobase;
  695. __u8 set;
  696. __u8 status;
  697. IRDA_DEBUG(4, __FUNCTION__ "n");
  698. st_fifo = &self->st_fifo;
  699. iobase = self->io.fir_base;
  700. /* Save current set */
  701. set = inb(iobase+SSR);
  702. iobase = self->io.fir_base;
  703. /* Read status FIFO */
  704. switch_bank(iobase, SET5);
  705. while ((status = inb(iobase+FS_FO)) & FS_FO_FSFDR) {
  706. st_fifo->entries[st_fifo->tail].status = status;
  707. st_fifo->entries[st_fifo->tail].len  = inb(iobase+RFLFL);
  708. st_fifo->entries[st_fifo->tail].len |= inb(iobase+RFLFH) << 8;
  709. st_fifo->tail++;
  710. st_fifo->len++;
  711. }
  712. while (st_fifo->len) {
  713. /* Get first entry */
  714. status = st_fifo->entries[st_fifo->head].status;
  715. len    = st_fifo->entries[st_fifo->head].len;
  716. st_fifo->head++;
  717. st_fifo->len--;
  718. /* Check for errors */
  719. if (status & FS_FO_ERR_MSK) {
  720. if (status & FS_FO_LST_FR) {
  721. /* Add number of lost frames to stats */
  722. self->stats.rx_errors += len;
  723. } else {
  724. /* Skip frame */
  725. self->stats.rx_errors++;
  726. self->rx_buff.data += len;
  727. if (status & FS_FO_MX_LEX)
  728. self->stats.rx_length_errors++;
  729. if (status & FS_FO_PHY_ERR) 
  730. self->stats.rx_frame_errors++;
  731. if (status & FS_FO_CRC_ERR) 
  732. self->stats.rx_crc_errors++;
  733. }
  734. /* The errors below can be reported in both cases */
  735. if (status & FS_FO_RX_OV)
  736. self->stats.rx_fifo_errors++;
  737. if (status & FS_FO_FSF_OV)
  738. self->stats.rx_fifo_errors++;
  739. } else {
  740. /* Check if we have transferred all data to memory */
  741. switch_bank(iobase, SET0);
  742. if (inb(iobase+USR) & USR_RDR) {
  743. #ifdef CONFIG_USE_INTERNAL_TIMER
  744. /* Put this entry back in fifo */
  745. st_fifo->head--;
  746. st_fifo->len++;
  747. st_fifo->entries[st_fifo->head].status = status;
  748. st_fifo->entries[st_fifo->head].len = len;
  749. /* Restore set register */
  750. outb(set, iobase+SSR);
  751. return FALSE;  /* I'll be back! */
  752. #else
  753. udelay(80); /* Should be enough!? */
  754. #endif
  755. }
  756. skb = dev_alloc_skb(len+1);
  757. if (skb == NULL)  {
  758. printk(KERN_INFO __FUNCTION__ 
  759.        "(), memory squeeze, dropping frame.n");
  760. /* Restore set register */
  761. outb(set, iobase+SSR);
  762. return FALSE;
  763. }
  764. /*  Align to 20 bytes */
  765. skb_reserve(skb, 1); 
  766. /* Copy frame without CRC */
  767. if (self->io.speed < 4000000) {
  768. skb_put(skb, len-2);
  769. memcpy(skb->data, self->rx_buff.data, len-2);
  770. } else {
  771. skb_put(skb, len-4);
  772. memcpy(skb->data, self->rx_buff.data, len-4);
  773. }
  774. /* Move to next frame */
  775. self->rx_buff.data += len;
  776. self->stats.rx_packets++;
  777. skb->dev = self->netdev;
  778. skb->mac.raw  = skb->data;
  779. skb->protocol = htons(ETH_P_IRDA);
  780. netif_rx(skb);
  781. }
  782. }
  783. /* Restore set register */
  784. outb(set, iobase+SSR);
  785. return TRUE;
  786. }
  787. /*
  788.  * Function pc87108_pio_receive (self)
  789.  *
  790.  *    Receive all data in receiver FIFO
  791.  *
  792.  */
  793. static void w83977af_pio_receive(struct w83977af_ir *self) 
  794. {
  795. __u8 byte = 0x00;
  796. int iobase;
  797. IRDA_DEBUG(4, __FUNCTION__ "()n");
  798. ASSERT(self != NULL, return;);
  799. iobase = self->io.fir_base;
  800. /*  Receive all characters in Rx FIFO */
  801. do {
  802. byte = inb(iobase+RBR);
  803. async_unwrap_char(self->netdev, &self->stats, &self->rx_buff, 
  804.   byte);
  805. } while (inb(iobase+USR) & USR_RDR); /* Data available */
  806. }
  807. /*
  808.  * Function w83977af_sir_interrupt (self, eir)
  809.  *
  810.  *    Handle SIR interrupt
  811.  *
  812.  */
  813. static __u8 w83977af_sir_interrupt(struct w83977af_ir *self, int isr)
  814. {
  815. int actual;
  816. __u8 new_icr = 0;
  817. __u8 set;
  818. int iobase;
  819. IRDA_DEBUG(4, __FUNCTION__ "(), isr=%#xn", isr);
  820. iobase = self->io.fir_base;
  821. /* Transmit FIFO low on data */
  822. if (isr & ISR_TXTH_I) {
  823. /* Write data left in transmit buffer */
  824. actual = w83977af_pio_write(self->io.fir_base, 
  825.     self->tx_buff.data, 
  826.     self->tx_buff.len, 
  827.     self->io.fifo_size);
  828. self->tx_buff.data += actual;
  829. self->tx_buff.len  -= actual;
  830. self->io.direction = IO_XMIT;
  831. /* Check if finished */
  832. if (self->tx_buff.len > 0) {
  833. new_icr |= ICR_ETXTHI;
  834. } else {
  835. set = inb(iobase+SSR);
  836. switch_bank(iobase, SET0);
  837. outb(AUDR_SFEND, iobase+AUDR);
  838. outb(set, iobase+SSR); 
  839. self->stats.tx_packets++;
  840. /* Feed me more packets */
  841. netif_wake_queue(self->netdev);
  842. new_icr |= ICR_ETBREI;
  843. }
  844. }
  845. /* Check if transmission has completed */
  846. if (isr & ISR_TXEMP_I) {
  847. /* Check if we need to change the speed? */
  848. if (self->new_speed) {
  849. IRDA_DEBUG(2, __FUNCTION__ 
  850.    "(), Changing speed!n");
  851. w83977af_change_speed(self, self->new_speed);
  852. self->new_speed = 0;
  853. }
  854. /* Turn around and get ready to receive some data */
  855. self->io.direction = IO_RECV;
  856. new_icr |= ICR_ERBRI;
  857. }
  858. /* Rx FIFO threshold or timeout */
  859. if (isr & ISR_RXTH_I) {
  860. w83977af_pio_receive(self);
  861. /* Keep receiving */
  862. new_icr |= ICR_ERBRI;
  863. }
  864. return new_icr;
  865. }
  866. /*
  867.  * Function pc87108_fir_interrupt (self, eir)
  868.  *
  869.  *    Handle MIR/FIR interrupt
  870.  *
  871.  */
  872. static __u8 w83977af_fir_interrupt(struct w83977af_ir *self, int isr)
  873. {
  874. __u8 new_icr = 0;
  875. __u8 set;
  876. int iobase;
  877. iobase = self->io.fir_base;
  878. set = inb(iobase+SSR);
  879. /* End of frame detected in FIFO */
  880. if (isr & (ISR_FEND_I|ISR_FSF_I)) {
  881. if (w83977af_dma_receive_complete(self)) {
  882. /* Wait for next status FIFO interrupt */
  883. new_icr |= ICR_EFSFI;
  884. } else {
  885. /* DMA not finished yet */
  886. /* Set timer value, resolution 1 ms */
  887. switch_bank(iobase, SET4);
  888. outb(0x01, iobase+TMRL); /* 1 ms */
  889. outb(0x00, iobase+TMRH);
  890. /* Start timer */
  891. outb(IR_MSL_EN_TMR, iobase+IR_MSL);
  892. new_icr |= ICR_ETMRI;
  893. }
  894. }
  895. /* Timer finished */
  896. if (isr & ISR_TMR_I) {
  897. /* Disable timer */
  898. switch_bank(iobase, SET4);
  899. outb(0, iobase+IR_MSL);
  900. /* Clear timer event */
  901. /* switch_bank(iobase, SET0); */
  902. /*  outb(ASCR_CTE, iobase+ASCR); */
  903. /* Check if this is a TX timer interrupt */
  904. if (self->io.direction == IO_XMIT) {
  905. w83977af_dma_write(self, iobase);
  906. new_icr |= ICR_EDMAI;
  907. } else {
  908. /* Check if DMA has now finished */
  909. w83977af_dma_receive_complete(self);
  910. new_icr |= ICR_EFSFI;
  911. }
  912. }
  913. /* Finished with DMA */
  914. if (isr & ISR_DMA_I) {
  915. w83977af_dma_xmit_complete(self);
  916. /* Check if there are more frames to be transmitted */
  917. /* if (irda_device_txqueue_empty(self)) { */
  918. /* Prepare for receive 
  919.  * 
  920.  * ** Netwinder Tx DMA likes that we do this anyway **
  921.  */
  922. w83977af_dma_receive(self);
  923. new_icr = ICR_EFSFI;
  924.        /* } */
  925. }
  926. /* Restore set */
  927. outb(set, iobase+SSR);
  928. return new_icr;
  929. }
  930. /*
  931.  * Function w83977af_interrupt (irq, dev_id, regs)
  932.  *
  933.  *    An interrupt from the chip has arrived. Time to do some work
  934.  *
  935.  */
  936. static void w83977af_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  937. {
  938. struct net_device *dev = (struct net_device *) dev_id;
  939. struct w83977af_ir *self;
  940. __u8 set, icr, isr;
  941. int iobase;
  942. if (!dev) {
  943. printk(KERN_WARNING "%s: irq %d for unknown device.n", 
  944. driver_name, irq);
  945. return;
  946. }
  947. self = (struct w83977af_ir *) dev->priv;
  948. iobase = self->io.fir_base;
  949. /* Save current bank */
  950. set = inb(iobase+SSR);
  951. switch_bank(iobase, SET0);
  952. icr = inb(iobase+ICR); 
  953. isr = inb(iobase+ISR) & icr; /* Mask out the interesting ones */ 
  954. outb(0, iobase+ICR); /* Disable interrupts */
  955. if (isr) {
  956. /* Dispatch interrupt handler for the current speed */
  957. if (self->io.speed > PIO_MAX_SPEED )
  958. icr = w83977af_fir_interrupt(self, isr);
  959. else
  960. icr = w83977af_sir_interrupt(self, isr);
  961. }
  962. outb(icr, iobase+ICR);    /* Restore (new) interrupts */
  963. outb(set, iobase+SSR);    /* Restore bank register */
  964. }
  965. /*
  966.  * Function w83977af_is_receiving (self)
  967.  *
  968.  *    Return TRUE is we are currently receiving a frame
  969.  *
  970.  */
  971. static int w83977af_is_receiving(struct w83977af_ir *self)
  972. {
  973. int status = FALSE;
  974. int iobase;
  975. __u8 set;
  976. ASSERT(self != NULL, return FALSE;);
  977. if (self->io.speed > 115200) {
  978. iobase = self->io.fir_base;
  979. /* Check if rx FIFO is not empty */
  980. set = inb(iobase+SSR);
  981. switch_bank(iobase, SET2);
  982. if ((inb(iobase+RXFDTH) & 0x3f) != 0) {
  983. /* We are receiving something */
  984. status =  TRUE;
  985. }
  986. outb(set, iobase+SSR);
  987. } else 
  988. status = (self->rx_buff.state != OUTSIDE_FRAME);
  989. return status;
  990. }
  991. /*
  992.  * Function w83977af_net_init (dev)
  993.  *
  994.  *    
  995.  *
  996.  */
  997. static int w83977af_net_init(struct net_device *dev)
  998. {
  999. IRDA_DEBUG(0, __FUNCTION__ "()n");
  1000. /* Set up to be a normal IrDA network device driver */
  1001. irda_device_setup(dev);
  1002. /* Insert overrides below this line! */
  1003. return 0;
  1004. }
  1005. /*
  1006.  * Function w83977af_net_open (dev)
  1007.  *
  1008.  *    Start the device
  1009.  *
  1010.  */
  1011. static int w83977af_net_open(struct net_device *dev)
  1012. {
  1013. struct w83977af_ir *self;
  1014. int iobase;
  1015. char hwname[32];
  1016. __u8 set;
  1017. IRDA_DEBUG(0, __FUNCTION__ "()n");
  1018. ASSERT(dev != NULL, return -1;);
  1019. self = (struct w83977af_ir *) dev->priv;
  1020. ASSERT(self != NULL, return 0;);
  1021. iobase = self->io.fir_base;
  1022. if (request_irq(self->io.irq, w83977af_interrupt, 0, dev->name, 
  1023. (void *) dev)) {
  1024. return -EAGAIN;
  1025. }
  1026. /*
  1027.  * Always allocate the DMA channel after the IRQ,
  1028.  * and clean up on failure.
  1029.  */
  1030. if (request_dma(self->io.dma, dev->name)) {
  1031. free_irq(self->io.irq, self);
  1032. return -EAGAIN;
  1033. }
  1034. /* Save current set */
  1035. set = inb(iobase+SSR);
  1036.   /* Enable some interrupts so we can receive frames again */
  1037.   switch_bank(iobase, SET0);
  1038.   if (self->io.speed > 115200) {
  1039.   outb(ICR_EFSFI, iobase+ICR);
  1040.   w83977af_dma_receive(self);
  1041.   } else
  1042.   outb(ICR_ERBRI, iobase+ICR);
  1043. /* Restore bank register */
  1044. outb(set, iobase+SSR);
  1045. /* Ready to play! */
  1046. netif_start_queue(dev);
  1047. /* Give self a hardware name */
  1048. sprintf(hwname, "w83977af @ 0x%03x", self->io.fir_base);
  1049. /* 
  1050.  * Open new IrLAP layer instance, now that everything should be
  1051.  * initialized properly 
  1052.  */
  1053. self->irlap = irlap_open(dev, &self->qos, hwname);
  1054. MOD_INC_USE_COUNT;
  1055. return 0;
  1056. }
  1057. /*
  1058.  * Function w83977af_net_close (dev)
  1059.  *
  1060.  *    Stop the device
  1061.  *
  1062.  */
  1063. static int w83977af_net_close(struct net_device *dev)
  1064. {
  1065. struct w83977af_ir *self;
  1066. int iobase;
  1067. __u8 set;
  1068. IRDA_DEBUG(0, __FUNCTION__ "()n");
  1069. ASSERT(dev != NULL, return -1;);
  1070. self = (struct w83977af_ir *) dev->priv;
  1071. ASSERT(self != NULL, return 0;);
  1072. iobase = self->io.fir_base;
  1073. /* Stop device */
  1074. netif_stop_queue(dev);
  1075. /* Stop and remove instance of IrLAP */
  1076. if (self->irlap)
  1077. irlap_close(self->irlap);
  1078. self->irlap = NULL;
  1079. disable_dma(self->io.dma);
  1080. /* Save current set */
  1081. set = inb(iobase+SSR);
  1082. /* Disable interrupts */
  1083. switch_bank(iobase, SET0);
  1084. outb(0, iobase+ICR); 
  1085. free_irq(self->io.irq, dev);
  1086. free_dma(self->io.dma);
  1087. /* Restore bank register */
  1088. outb(set, iobase+SSR);
  1089. MOD_DEC_USE_COUNT;
  1090. return 0;
  1091. }
  1092. /*
  1093.  * Function w83977af_net_ioctl (dev, rq, cmd)
  1094.  *
  1095.  *    Process IOCTL commands for this device
  1096.  *
  1097.  */
  1098. static int w83977af_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1099. {
  1100. struct if_irda_req *irq = (struct if_irda_req *) rq;
  1101. struct w83977af_ir *self;
  1102. unsigned long flags;
  1103. int ret = 0;
  1104. ASSERT(dev != NULL, return -1;);
  1105. self = dev->priv;
  1106. ASSERT(self != NULL, return -1;);
  1107. IRDA_DEBUG(2, __FUNCTION__ "(), %s, (cmd=0x%X)n", dev->name, cmd);
  1108. /* Disable interrupts & save flags */
  1109. save_flags(flags);
  1110. cli();
  1111. switch (cmd) {
  1112. case SIOCSBANDWIDTH: /* Set bandwidth */
  1113. if (!capable(CAP_NET_ADMIN)) {
  1114. ret = -EPERM;
  1115. break;
  1116. }
  1117. w83977af_change_speed(self, irq->ifr_baudrate);
  1118. break;
  1119. case SIOCSMEDIABUSY: /* Set media busy */
  1120. if (!capable(CAP_NET_ADMIN)) {
  1121. ret = -EPERM;
  1122. goto out;
  1123. }
  1124. irda_device_set_media_busy(self->netdev, TRUE);
  1125. break;
  1126. case SIOCGRECEIVING: /* Check if we are receiving right now */
  1127. irq->ifr_receiving = w83977af_is_receiving(self);
  1128. break;
  1129. default:
  1130. ret = -EOPNOTSUPP;
  1131. }
  1132. out:
  1133. restore_flags(flags);
  1134. return ret;
  1135. }
  1136. static struct net_device_stats *w83977af_net_get_stats(struct net_device *dev)
  1137. {
  1138. struct w83977af_ir *self = (struct w83977af_ir *) dev->priv;
  1139. return &self->stats;
  1140. }
  1141. #ifdef MODULE
  1142. MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
  1143. MODULE_DESCRIPTION("Winbond W83977AF IrDA Device Driver");
  1144. MODULE_LICENSE("GPL");
  1145. MODULE_PARM(qos_mtt_bits, "i");
  1146. MODULE_PARM_DESC(qos_mtt_bits, "Mimimum Turn Time");
  1147. MODULE_PARM(io, "1-4i");
  1148. MODULE_PARM_DESC(io, "Base I/O addresses");
  1149. MODULE_PARM(irq, "1-4i");
  1150. MODULE_PARM_DESC(irq, "IRQ lines");
  1151. /*
  1152.  * Function init_module (void)
  1153.  *
  1154.  *    
  1155.  *
  1156.  */
  1157. int init_module(void)
  1158. {
  1159. return w83977af_init();
  1160. }
  1161. /*
  1162.  * Function cleanup_module (void)
  1163.  *
  1164.  *    
  1165.  *
  1166.  */
  1167. void cleanup_module(void)
  1168. {
  1169. w83977af_cleanup();
  1170. }
  1171. #endif /* MODULE */