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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      ali-ircc.h
  4.  * Version:       0.5
  5.  * Description:   Driver for the ALI M1535D and M1543C FIR Controller
  6.  * Status:        Experimental.
  7.  * Author:        Benjamin Kong <benjamin_kong@ali.com.tw>
  8.  * Created at:    2000/10/16 03:46PM
  9.  * Modified at:   2001/1/3 02:55PM
  10.  * Modified by:   Benjamin Kong <benjamin_kong@ali.com.tw>
  11.  * 
  12.  *     Copyright (c) 2000 Benjamin Kong <benjamin_kong@ali.com.tw>
  13.  *     All Rights Reserved
  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.  ********************************************************************/
  21. #include <linux/module.h>
  22. #include <linux/kernel.h>
  23. #include <linux/types.h>
  24. #include <linux/skbuff.h>
  25. #include <linux/netdevice.h>
  26. #include <linux/ioport.h>
  27. #include <linux/delay.h>
  28. #include <linux/slab.h>
  29. #include <linux/init.h>
  30. #include <linux/rtnetlink.h>
  31. #include <linux/serial_reg.h>
  32. #include <asm/io.h>
  33. #include <asm/dma.h>
  34. #include <asm/byteorder.h>
  35. #include <linux/pm.h>
  36. #include <net/irda/wrapper.h>
  37. #include <net/irda/irda.h>
  38. #include <net/irda/irmod.h>
  39. #include <net/irda/irlap_frame.h>
  40. #include <net/irda/irda_device.h>
  41. #include <net/irda/ali-ircc.h>
  42. #define CHIP_IO_EXTENT 8
  43. #define BROKEN_DONGLE_ID
  44. static char *driver_name = "ali-ircc";
  45. /* Module parameters */
  46. static int qos_mtt_bits = 0x07;  /* 1 ms or more */
  47. /* Use BIOS settions by default, but user may supply module parameters */
  48. static unsigned int io[]  = { ~0, ~0, ~0, ~0 };
  49. static unsigned int irq[] = { 0, 0, 0, 0 };
  50. static unsigned int dma[] = { 0, 0, 0, 0 };
  51. static int  ali_ircc_probe_53(ali_chip_t *chip, chipio_t *info);
  52. static int  ali_ircc_init_43(ali_chip_t *chip, chipio_t *info);
  53. static int  ali_ircc_init_53(ali_chip_t *chip, chipio_t *info);
  54. /* These are the currently known ALi sourth-bridge chipsets, the only one difference
  55.  * is that M1543C doesn't support HP HDSL-3600
  56.  */
  57. static ali_chip_t chips[] =
  58. {
  59. { "M1543", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x43, ali_ircc_probe_53, ali_ircc_init_43 },
  60. { "M1535", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x53, ali_ircc_probe_53, ali_ircc_init_53 },
  61. { NULL }
  62. };
  63. /* Max 4 instances for now */
  64. static struct ali_ircc_cb *dev_self[] = { NULL, NULL, NULL, NULL };
  65. /* Dongle Types */
  66. static char *dongle_types[] = {
  67. "TFDS6000",
  68. "HP HSDL-3600",
  69. "HP HSDL-1100",
  70. "No dongle connected",
  71. };
  72. /* Some prototypes */
  73. static int  ali_ircc_open(int i, chipio_t *info);
  74. #ifdef MODULE
  75. static int  ali_ircc_close(struct ali_ircc_cb *self);
  76. #endif /* MODULE */
  77. static int  ali_ircc_setup(chipio_t *info);
  78. static int  ali_ircc_is_receiving(struct ali_ircc_cb *self);
  79. static int  ali_ircc_net_init(struct net_device *dev);
  80. static int  ali_ircc_net_open(struct net_device *dev);
  81. static int  ali_ircc_net_close(struct net_device *dev);
  82. static int  ali_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  83. static int  ali_ircc_pmproc(struct pm_dev *dev, pm_request_t rqst, void *data);
  84. static void ali_ircc_change_speed(struct ali_ircc_cb *self, __u32 baud);
  85. static void ali_ircc_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  86. static void ali_ircc_suspend(struct ali_ircc_cb *self);
  87. static void ali_ircc_wakeup(struct ali_ircc_cb *self);
  88. static struct net_device_stats *ali_ircc_net_get_stats(struct net_device *dev);
  89. /* SIR function */
  90. static int  ali_ircc_sir_hard_xmit(struct sk_buff *skb, struct net_device *dev);
  91. static void ali_ircc_sir_interrupt(int irq, struct ali_ircc_cb *self, struct pt_regs *regs);
  92. static void ali_ircc_sir_receive(struct ali_ircc_cb *self);
  93. static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb *self);
  94. static int  ali_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len);
  95. static void ali_ircc_sir_change_speed(struct ali_ircc_cb *priv, __u32 speed);
  96. /* FIR function */
  97. static int  ali_ircc_fir_hard_xmit(struct sk_buff *skb, struct net_device *dev);
  98. static void ali_ircc_fir_change_speed(struct ali_ircc_cb *priv, __u32 speed);
  99. static void ali_ircc_fir_interrupt(int irq, struct ali_ircc_cb *self, struct pt_regs *regs);
  100. static int  ali_ircc_dma_receive(struct ali_ircc_cb *self); 
  101. static int  ali_ircc_dma_receive_complete(struct ali_ircc_cb *self);
  102. static int  ali_ircc_dma_xmit_complete(struct ali_ircc_cb *self);
  103. static void ali_ircc_dma_xmit(struct ali_ircc_cb *self);
  104. /* My Function */
  105. static int  ali_ircc_read_dongle_id (int i, chipio_t *info);
  106. static void ali_ircc_change_dongle_speed(struct ali_ircc_cb *priv, int speed);
  107. /* ALi chip function */
  108. static void SIR2FIR(int iobase);
  109. static void FIR2SIR(int iobase);
  110. static void SetCOMInterrupts(struct ali_ircc_cb *self , unsigned char enable);
  111. /*
  112.  * Function ali_ircc_init ()
  113.  *
  114.  *    Initialize chip. Find out whay kinds of chips we are dealing with
  115.  *    and their configuation registers address
  116.  */
  117. int __init ali_ircc_init(void)
  118. {
  119. ali_chip_t *chip;
  120. chipio_t info;
  121. int ret = -ENODEV;
  122. int cfg, cfg_base;
  123. int reg, revision;
  124. int i = 0;
  125. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  126. /* Probe for all the ALi chipsets we know about */
  127. for (chip= chips; chip->name; chip++, i++) 
  128. {
  129. IRDA_DEBUG(2, "%s(), Probing for %s ...n", __FUNCTION__, chip->name);
  130. /* Try all config registers for this chip */
  131. for (cfg=0; cfg<2; cfg++)
  132. {
  133. cfg_base = chip->cfg[cfg];
  134. if (!cfg_base)
  135. continue;
  136. memset(&info, 0, sizeof(chipio_t));
  137. info.cfg_base = cfg_base;
  138. info.fir_base = io[i];
  139. info.dma = dma[i];
  140. info.irq = irq[i];
  141. /* Enter Configuration */
  142. outb(chip->entr1, cfg_base);
  143. outb(chip->entr2, cfg_base);
  144. /* Select Logical Device 5 Registers (UART2) */
  145. outb(0x07, cfg_base);
  146. outb(0x05, cfg_base+1);
  147. /* Read Chip Identification Register */
  148. outb(chip->cid_index, cfg_base);
  149. reg = inb(cfg_base+1);
  150. if (reg == chip->cid_value)
  151. {
  152. IRDA_DEBUG(2, "%s(), Chip found at 0x%03xn", __FUNCTION__,  cfg_base);
  153.    
  154. outb(0x1F, cfg_base);
  155. revision = inb(cfg_base+1);
  156. IRDA_DEBUG(2, "%s(), Found %s chip, revision=%dn",
  157. __FUNCTION__, chip->name, revision);
  158. /* 
  159.  * If the user supplies the base address, then
  160.  * we init the chip, if not we probe the values
  161.  * set by the BIOS
  162.  */
  163. if (io[i] < 2000)
  164. {
  165. chip->init(chip, &info);
  166. }
  167. else
  168. {
  169. chip->probe(chip, &info);
  170. }
  171. if (ali_ircc_open(i, &info) == 0)
  172. ret = 0;
  173. i++;
  174. }
  175. else
  176. {
  177. IRDA_DEBUG(2, "%s(), No %s chip at 0x%03xn", __FUNCTION__, chip->name, cfg_base);
  178. }
  179. /* Exit configuration */
  180. outb(0xbb, cfg_base);
  181. }
  182. }
  183. IRDA_DEBUG(2, "%s(), ----------------- End -----------------n", __FUNCTION__);
  184. return ret;
  185. }
  186. /*
  187.  * Function ali_ircc_cleanup ()
  188.  *
  189.  *    Close all configured chips
  190.  *
  191.  */
  192. #ifdef MODULE
  193. static void ali_ircc_cleanup(void)
  194. {
  195. int i;
  196. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  197. pm_unregister_all(ali_ircc_pmproc);
  198. for (i=0; i < 4; i++) {
  199. if (dev_self[i])
  200. ali_ircc_close(dev_self[i]);
  201. }
  202. IRDA_DEBUG(2, "%s(), ----------------- End -----------------n", __FUNCTION__);
  203. }
  204. #endif /* MODULE */
  205. /*
  206.  * Function ali_ircc_open (int i, chipio_t *inf)
  207.  *
  208.  *    Open driver instance
  209.  *
  210.  */
  211. static int ali_ircc_open(int i, chipio_t *info)
  212. {
  213. struct net_device *dev;
  214. struct ali_ircc_cb *self;
  215. struct pm_dev *pmdev;
  216. int dongle_id;
  217. int err;
  218. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  219. /* Set FIR FIFO and DMA Threshold */
  220. if ((ali_ircc_setup(info)) == -1)
  221. return -1;
  222. /* Allocate new instance of the driver */
  223. self = kmalloc(sizeof(struct ali_ircc_cb), GFP_KERNEL);
  224. if (self == NULL) 
  225. {
  226. ERROR("%s(), can't allocate memory for control block!n", __FUNCTION__);
  227. return -ENOMEM;
  228. }
  229. memset(self, 0, sizeof(struct ali_ircc_cb));
  230. spin_lock_init(&self->lock);
  231.    
  232. /* Need to store self somewhere */
  233. dev_self[i] = self;
  234. self->index = i;
  235. /* Initialize IO */
  236. self->io.cfg_base  = info->cfg_base; /* In ali_ircc_probe_53 assign  */
  237. self->io.fir_base  = info->fir_base; /* info->sir_base = info->fir_base  */
  238. self->io.sir_base  = info->sir_base;  /* ALi SIR and FIR use the same address */
  239.         self->io.irq       = info->irq;
  240.         self->io.fir_ext   = CHIP_IO_EXTENT;
  241.         self->io.dma       = info->dma;
  242.         self->io.fifo_size = 16; /* SIR: 16, FIR: 32 Benjamin 2000/11/1 */
  243. /* Reserve the ioports that we need */
  244. if (!request_region(self->io.fir_base, self->io.fir_ext, driver_name)) {
  245. WARNING("%s(), can't get iobase of 0x%03xn",
  246. __FUNCTION__, self->io.fir_base);
  247. dev_self[i] = NULL;
  248. kfree(self);
  249. return -ENODEV;
  250. }
  251. /* Initialize QoS for this device */
  252. irda_init_max_qos_capabilies(&self->qos);
  253. /* The only value we must override it the baudrate */
  254. self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
  255. IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8); // benjamin 2000/11/8 05:27PM
  256. self->qos.min_turn_time.bits = qos_mtt_bits;
  257. irda_qos_bits_to_value(&self->qos);
  258. self->flags = IFF_FIR|IFF_MIR|IFF_SIR|IFF_DMA|IFF_PIO;  // benjamin 2000/11/8 05:27PM
  259. /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
  260. self->rx_buff.truesize = 14384; 
  261. self->tx_buff.truesize = 14384;
  262. /* Allocate memory if needed */
  263. self->rx_buff.head = (__u8 *) kmalloc(self->rx_buff.truesize,
  264.       GFP_KERNEL |GFP_DMA); 
  265. if (self->rx_buff.head == NULL) 
  266. {
  267. kfree(self);
  268. return -ENOMEM;
  269. }
  270. memset(self->rx_buff.head, 0, self->rx_buff.truesize);
  271. self->tx_buff.head = (__u8 *) kmalloc(self->tx_buff.truesize, 
  272.       GFP_KERNEL|GFP_DMA); 
  273. if (self->tx_buff.head == NULL) {
  274. kfree(self->rx_buff.head);
  275. kfree(self);
  276. return -ENOMEM;
  277. }
  278. memset(self->tx_buff.head, 0, self->tx_buff.truesize);
  279. self->rx_buff.in_frame = FALSE;
  280. self->rx_buff.state = OUTSIDE_FRAME;
  281. self->tx_buff.data = self->tx_buff.head;
  282. self->rx_buff.data = self->rx_buff.head;
  283. /* Reset Tx queue info */
  284. self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
  285. self->tx_fifo.tail = self->tx_buff.head;
  286. if (!(dev = dev_alloc("irda%d", &err))) {
  287. ERROR("%s(), dev_alloc() failed!n", __FUNCTION__);
  288. return -ENOMEM;
  289. }
  290. dev->priv = (void *) self;
  291. self->netdev = dev;
  292. /* Override the network functions we need to use */
  293. dev->init            = ali_ircc_net_init;
  294. dev->hard_start_xmit = ali_ircc_sir_hard_xmit;
  295. dev->open            = ali_ircc_net_open;
  296. dev->stop            = ali_ircc_net_close;
  297. dev->do_ioctl        = ali_ircc_net_ioctl;
  298. dev->get_stats      = ali_ircc_net_get_stats;
  299. rtnl_lock();
  300. err = register_netdevice(dev);
  301. rtnl_unlock();
  302. if (err) {
  303. ERROR("%s(), register_netdev() failed!n", __FUNCTION__);
  304. return -1;
  305. }
  306. MESSAGE("IrDA: Registered device %sn", dev->name);
  307. /* Check dongle id */
  308. dongle_id = ali_ircc_read_dongle_id(i, info);
  309. MESSAGE("%s(), %s, Found dongle: %sn", __FUNCTION__, driver_name, dongle_types[dongle_id]);
  310. self->io.dongle_id = dongle_id;
  311.         pmdev = pm_register(PM_SYS_DEV, PM_SYS_IRDA, ali_ircc_pmproc);
  312.         if (pmdev)
  313.                 pmdev->data = self;
  314. IRDA_DEBUG(2, "%s(), ----------------- End -----------------n", __FUNCTION__);
  315. return 0;
  316. }
  317. #ifdef MODULE
  318. /*
  319.  * Function ali_ircc_close (self)
  320.  *
  321.  *    Close driver instance
  322.  *
  323.  */
  324. static int ali_ircc_close(struct ali_ircc_cb *self)
  325. {
  326. int iobase;
  327. IRDA_DEBUG(4, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  328. ASSERT(self != NULL, return -1;);
  329.         iobase = self->io.fir_base;
  330. /* Remove netdevice */
  331. if (self->netdev) {
  332. rtnl_lock();
  333. unregister_netdevice(self->netdev);
  334. rtnl_unlock();
  335. }
  336. /* Release the PORT that this driver is using */
  337. IRDA_DEBUG(4, "%s(), Releasing Region %03xn", __FUNCTION__, self->io.fir_base);
  338. release_region(self->io.fir_base, self->io.fir_ext);
  339. if (self->tx_buff.head)
  340. kfree(self->tx_buff.head);
  341. if (self->rx_buff.head)
  342. kfree(self->rx_buff.head);
  343. dev_self[self->index] = NULL;
  344. kfree(self);
  345. IRDA_DEBUG(2, "%s(), ----------------- End -----------------n", __FUNCTION__);
  346. return 0;
  347. }
  348. #endif /* MODULE */
  349. /*
  350.  * Function ali_ircc_init_43 (chip, info)
  351.  *
  352.  *    Initialize the ALi M1543 chip. 
  353.  */
  354. static int ali_ircc_init_43(ali_chip_t *chip, chipio_t *info) 
  355. {
  356. /* All controller information like I/O address, DMA channel, IRQ
  357.  * are set by BIOS
  358.  */
  359. return 0;
  360. }
  361. /*
  362.  * Function ali_ircc_init_53 (chip, info)
  363.  *
  364.  *    Initialize the ALi M1535 chip. 
  365.  */
  366. static int ali_ircc_init_53(ali_chip_t *chip, chipio_t *info) 
  367. {
  368. /* All controller information like I/O address, DMA channel, IRQ
  369.  * are set by BIOS
  370.  */
  371. return 0;
  372. }
  373. /*
  374.  * Function ali_ircc_probe_53 (chip, info)
  375.  *    
  376.  * Probes for the ALi M1535D or M1535
  377.  */
  378. static int ali_ircc_probe_53(ali_chip_t *chip, chipio_t *info)
  379. {
  380. int cfg_base = info->cfg_base;
  381. int hi, low, reg;
  382. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  383. /* Enter Configuration */
  384. outb(chip->entr1, cfg_base);
  385. outb(chip->entr2, cfg_base);
  386. /* Select Logical Device 5 Registers (UART2) */
  387. outb(0x07, cfg_base);
  388. outb(0x05, cfg_base+1);
  389. /* Read address control register */
  390. outb(0x60, cfg_base);
  391. hi = inb(cfg_base+1);
  392. outb(0x61, cfg_base);
  393. low = inb(cfg_base+1);
  394. info->fir_base = (hi<<8) + low;
  395. info->sir_base = info->fir_base;
  396. IRDA_DEBUG(2, "%s(), probing fir_base=0x%03xn", __FUNCTION__, info->fir_base);
  397. /* Read IRQ control register */
  398. outb(0x70, cfg_base);
  399. reg = inb(cfg_base+1);
  400. info->irq = reg & 0x0f;
  401. IRDA_DEBUG(2, "%s(), probing irq=%dn", __FUNCTION__, info->irq);
  402. /* Read DMA channel */
  403. outb(0x74, cfg_base);
  404. reg = inb(cfg_base+1);
  405. info->dma = reg & 0x07;
  406. if(info->dma == 0x04)
  407. WARNING("%s(), No DMA channel assigned !n", __FUNCTION__);
  408. else
  409. IRDA_DEBUG(2, "%s(), probing dma=%dn", __FUNCTION__, info->dma);
  410. /* Read Enabled Status */
  411. outb(0x30, cfg_base);
  412. reg = inb(cfg_base+1);
  413. info->enabled = (reg & 0x80) && (reg & 0x01);
  414. IRDA_DEBUG(2, "%s(), probing enabled=%dn", __FUNCTION__, info->enabled);
  415. /* Read Power Status */
  416. outb(0x22, cfg_base);
  417. reg = inb(cfg_base+1);
  418. info->suspended = (reg & 0x20);
  419. IRDA_DEBUG(2, "%s(), probing suspended=%dn", __FUNCTION__, info->suspended);
  420. /* Exit configuration */
  421. outb(0xbb, cfg_base);
  422. IRDA_DEBUG(2, "%s(), ----------------- End -----------------n", __FUNCTION__);
  423. return 0;
  424. }
  425. /*
  426.  * Function ali_ircc_setup (info)
  427.  *
  428.  *     Set FIR FIFO and DMA Threshold
  429.  * Returns non-negative on success.
  430.  *
  431.  */
  432. static int ali_ircc_setup(chipio_t *info)
  433. {
  434. unsigned char tmp;
  435. int version;
  436. int iobase = info->fir_base;
  437. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  438. /* Switch to FIR space */
  439. SIR2FIR(iobase);
  440. /* Master Reset */
  441. outb(0x40, iobase+FIR_MCR); // benjamin 2000/11/30 11:45AM
  442. /* Read FIR ID Version Register */
  443. switch_bank(iobase, BANK3);
  444. version = inb(iobase+FIR_ID_VR);
  445. /* Should be 0x00 in the M1535/M1535D */
  446. if(version != 0x00)
  447. {
  448. ERROR("%s, Wrong chip version %02xn", driver_name, version);
  449. return -1;
  450. }
  451. // MESSAGE("%s, Found chip at base=0x%03xn", driver_name, info->cfg_base);
  452. /* Set FIR FIFO Threshold Register */
  453. switch_bank(iobase, BANK1);
  454. outb(RX_FIFO_Threshold, iobase+FIR_FIFO_TR);
  455. /* Set FIR DMA Threshold Register */
  456. outb(RX_DMA_Threshold, iobase+FIR_DMA_TR);
  457. /* CRC enable */
  458. switch_bank(iobase, BANK2);
  459. outb(inb(iobase+FIR_IRDA_CR) | IRDA_CR_CRC, iobase+FIR_IRDA_CR);
  460. /* NDIS driver set TX Length here BANK2 Alias 3, Alias4*/
  461. /* Switch to Bank 0 */
  462. switch_bank(iobase, BANK0);
  463. tmp = inb(iobase+FIR_LCR_B);
  464. tmp &=~0x20; // disable SIP
  465. tmp |= 0x80; // these two steps make RX mode
  466. tmp &= 0xbf;
  467. outb(tmp, iobase+FIR_LCR_B);
  468. /* Disable Interrupt */
  469. outb(0x00, iobase+FIR_IER);
  470. /* Switch to SIR space */
  471. FIR2SIR(iobase);
  472. MESSAGE("%s, driver loaded (Benjamin Kong)n", driver_name);
  473. /* Enable receive interrupts */ 
  474. // outb(UART_IER_RDI, iobase+UART_IER); //benjamin 2000/11/23 01:25PM
  475. // Turn on the interrupts in ali_ircc_net_open
  476. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  477. return 0;
  478. }
  479. /*
  480.  * Function ali_ircc_read_dongle_id (int index, info)
  481.  *
  482.  * Try to read dongle indentification. This procedure needs to be executed
  483.  * once after power-on/reset. It also needs to be used whenever you suspect
  484.  * that the user may have plugged/unplugged the IrDA Dongle.
  485.  */
  486. static int ali_ircc_read_dongle_id (int i, chipio_t *info)
  487. {
  488. int dongle_id, reg;
  489. int cfg_base = info->cfg_base;
  490. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  491. /* Enter Configuration */
  492. outb(chips[i].entr1, cfg_base);
  493. outb(chips[i].entr2, cfg_base);
  494. /* Select Logical Device 5 Registers (UART2) */
  495. outb(0x07, cfg_base);
  496. outb(0x05, cfg_base+1);
  497. /* Read Dongle ID */
  498. outb(0xf0, cfg_base);
  499. reg = inb(cfg_base+1);
  500. dongle_id = ((reg>>6)&0x02) | ((reg>>5)&0x01);
  501. IRDA_DEBUG(2, "%s(), probing dongle_id=%d, dongle_types=%sn", 
  502. __FUNCTION__, dongle_id, dongle_types[dongle_id]);
  503. /* Exit configuration */
  504. outb(0xbb, cfg_base);
  505. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  506. return dongle_id;
  507. }
  508. /*
  509.  * Function ali_ircc_interrupt (irq, dev_id, regs)
  510.  *
  511.  *    An interrupt from the chip has arrived. Time to do some work
  512.  *
  513.  */
  514. static void ali_ircc_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  515. {
  516. struct net_device *dev = (struct net_device *) dev_id;
  517. struct ali_ircc_cb *self;
  518. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  519.   if (!dev) {
  520. WARNING("%s: irq %d for unknown device.n", driver_name, irq);
  521. return;
  522. }
  523. self = (struct ali_ircc_cb *) dev->priv;
  524. spin_lock(&self->lock);
  525. /* Dispatch interrupt handler for the current speed */
  526. if (self->io.speed > 115200)
  527. ali_ircc_fir_interrupt(irq, self, regs);
  528. else
  529. ali_ircc_sir_interrupt(irq, self, regs);
  530. spin_unlock(&self->lock);
  531. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  532. }
  533. /*
  534.  * Function ali_ircc_fir_interrupt(irq, struct ali_ircc_cb *self, regs)
  535.  *
  536.  *    Handle MIR/FIR interrupt
  537.  *
  538.  */
  539. static void ali_ircc_fir_interrupt(int irq, struct ali_ircc_cb *self, struct pt_regs *regs)
  540. {
  541. __u8 eir, OldMessageCount;
  542. int iobase, tmp;
  543. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  544. iobase = self->io.fir_base;
  545. switch_bank(iobase, BANK0);
  546. self->InterruptID = inb(iobase+FIR_IIR);
  547. self->BusStatus = inb(iobase+FIR_BSR);
  548. OldMessageCount = (self->LineStatus + 1) & 0x07;
  549. self->LineStatus = inb(iobase+FIR_LSR);
  550. //self->ier = inb(iobase+FIR_IER);  2000/12/1 04:32PM
  551. eir = self->InterruptID & self->ier; /* Mask out the interesting ones */ 
  552. IRDA_DEBUG(1, "%s(), self->InterruptID = %xn", __FUNCTION__,self->InterruptID);
  553. IRDA_DEBUG(1, "%s(), self->LineStatus = %xn",__FUNCTION__, self->LineStatus);
  554. IRDA_DEBUG(1, "%s(), self->ier = %xn",__FUNCTION__, self->ier);
  555. IRDA_DEBUG(1, "%s(), eir = %xn",__FUNCTION__, eir);
  556. /* Disable interrupts */
  557.  SetCOMInterrupts(self, FALSE);
  558. /* Tx or Rx Interrupt */
  559. if (eir & IIR_EOM) 
  560. {
  561. if (self->io.direction == IO_XMIT) /* TX */
  562. {
  563. IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Tx) *******n", __FUNCTION__);
  564. if(ali_ircc_dma_xmit_complete(self))
  565. {
  566. if (irda_device_txqueue_empty(self->netdev)) 
  567. {
  568. /* Prepare for receive */
  569. ali_ircc_dma_receive(self);
  570. self->ier = IER_EOM;
  571. }
  572. }
  573. else
  574. {
  575. self->ier = IER_EOM; 
  576. }
  577. }
  578. else /* RX */
  579. {
  580. IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Rx) *******n", __FUNCTION__);
  581. if(OldMessageCount > ((self->LineStatus+1) & 0x07))
  582. {
  583. self->rcvFramesOverflow = TRUE;
  584. IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE ******** n", __FUNCTION__);
  585. }
  586. if (ali_ircc_dma_receive_complete(self))
  587. {
  588. IRDA_DEBUG(1, "%s(), ******* receive complete ******** n", __FUNCTION__);
  589. self->ier = IER_EOM;
  590. }
  591. else
  592. {
  593. IRDA_DEBUG(1, "%s(), ******* Not receive complete ******** n", __FUNCTION__);
  594. self->ier = IER_EOM | IER_TIMER;
  595. }
  596. }
  597. }
  598. /* Timer Interrupt */
  599. else if (eir & IIR_TIMER)
  600. {
  601. if(OldMessageCount > ((self->LineStatus+1) & 0x07))
  602. {
  603. self->rcvFramesOverflow = TRUE;
  604. IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE ******* n", __FUNCTION__);
  605. }
  606. /* Disable Timer */
  607. switch_bank(iobase, BANK1);
  608. tmp = inb(iobase+FIR_CR);
  609. outb( tmp& ~CR_TIMER_EN, iobase+FIR_CR);
  610. /* Check if this is a Tx timer interrupt */
  611. if (self->io.direction == IO_XMIT)
  612. {
  613. ali_ircc_dma_xmit(self);
  614. /* Interrupt on EOM */
  615. self->ier = IER_EOM;
  616. }
  617. else /* Rx */
  618. {
  619. if(ali_ircc_dma_receive_complete(self)) 
  620. {
  621. self->ier = IER_EOM;
  622. }
  623. else
  624. {
  625. self->ier = IER_EOM | IER_TIMER;
  626. }
  627. }
  628. }
  629. /* Restore Interrupt */
  630. SetCOMInterrupts(self, TRUE);
  631. IRDA_DEBUG(1, "%s(), ----------------- End ---------------n", __FUNCTION__);
  632. }
  633. /*
  634.  * Function ali_ircc_sir_interrupt (irq, self, eir)
  635.  *
  636.  *    Handle SIR interrupt
  637.  *
  638.  */
  639. static void ali_ircc_sir_interrupt(int irq, struct ali_ircc_cb *self, struct pt_regs *regs)
  640. {
  641. int iobase;
  642. int iir, lsr;
  643. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  644. iobase = self->io.sir_base;
  645. iir = inb(iobase+UART_IIR) & UART_IIR_ID;
  646. if (iir) {
  647. /* Clear interrupt */
  648. lsr = inb(iobase+UART_LSR);
  649. IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#xn", 
  650. __FUNCTION__, iir, lsr, iobase);
  651. switch (iir) 
  652. {
  653. case UART_IIR_RLSI:
  654. IRDA_DEBUG(2, "%s(), RLSIn", __FUNCTION__);
  655. break;
  656. case UART_IIR_RDI:
  657. /* Receive interrupt */
  658. ali_ircc_sir_receive(self);
  659. break;
  660. case UART_IIR_THRI:
  661. if (lsr & UART_LSR_THRE)
  662. {
  663. /* Transmitter ready for data */
  664. ali_ircc_sir_write_wakeup(self);
  665. }
  666. break;
  667. default:
  668. IRDA_DEBUG(0, "%s(), unhandled IIR=%#xn", __FUNCTION__, iir);
  669. break;
  670. }
  671. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  672. }
  673. /*
  674.  * Function ali_ircc_sir_receive (self)
  675.  *
  676.  *    Receive one frame from the infrared port
  677.  *
  678.  */
  679. static void ali_ircc_sir_receive(struct ali_ircc_cb *self) 
  680. {
  681. int boguscount = 0;
  682. int iobase;
  683. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  684. ASSERT(self != NULL, return;);
  685. iobase = self->io.sir_base;
  686. /*  
  687.  * Receive all characters in Rx FIFO, unwrap and unstuff them. 
  688.          * async_unwrap_char will deliver all found frames  
  689.  */
  690. do {
  691. async_unwrap_char(self->netdev, &self->stats, &self->rx_buff, 
  692.   inb(iobase+UART_RX));
  693. /* Make sure we don't stay here to long */
  694. if (boguscount++ > 32) {
  695. IRDA_DEBUG(2, "%s(), breaking!n", __FUNCTION__);
  696. break;
  697. }
  698. } while (inb(iobase+UART_LSR) & UART_LSR_DR);
  699. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  700. }
  701. /*
  702.  * Function ali_ircc_sir_write_wakeup (tty)
  703.  *
  704.  *    Called by the driver when there's room for more data.  If we have
  705.  *    more packets to send, we send them here.
  706.  *
  707.  */
  708. static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb *self)
  709. {
  710. int actual = 0;
  711. int iobase;
  712. ASSERT(self != NULL, return;);
  713. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  714. iobase = self->io.sir_base;
  715. /* Finished with frame?  */
  716. if (self->tx_buff.len > 0)  
  717. {
  718. /* Write data left in transmit buffer */
  719. actual = ali_ircc_sir_write(iobase, self->io.fifo_size, 
  720.       self->tx_buff.data, self->tx_buff.len);
  721. self->tx_buff.data += actual;
  722. self->tx_buff.len  -= actual;
  723. else 
  724. {
  725. if (self->new_speed) 
  726. {
  727. /* We must wait until all data are gone */
  728. while(!(inb(iobase+UART_LSR) & UART_LSR_TEMT))
  729. IRDA_DEBUG(1, "%s(), UART_LSR_THREn", __FUNCTION__);
  730. IRDA_DEBUG(1, "%s(), Changing speed! self->new_speed = %dn", __FUNCTION__, self->new_speed);
  731. ali_ircc_change_speed(self, self->new_speed);
  732. self->new_speed = 0;
  733. // benjamin 2000/11/10 06:32PM
  734. if (self->io.speed > 115200)
  735. {
  736. IRDA_DEBUG(2,  "%s(), ali_ircc_change_speed from UART_LSR_TEMT n", __FUNCTION__);
  737. self->ier = IER_EOM;
  738. // SetCOMInterrupts(self, TRUE);
  739. return;
  740. }
  741. }
  742. else
  743. {
  744. netif_wake_queue(self->netdev);
  745. }
  746. self->stats.tx_packets++;
  747. /* Turn on receive interrupts */
  748. outb(UART_IER_RDI, iobase+UART_IER);
  749. }
  750. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  751. }
  752. static void ali_ircc_change_speed(struct ali_ircc_cb *self, __u32 baud)
  753. {
  754. struct net_device *dev = self->netdev;
  755. int iobase;
  756. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  757. IRDA_DEBUG(2, "%s(), setting speed = %d n", __FUNCTION__, baud);
  758. iobase = self->io.fir_base;
  759. SetCOMInterrupts(self, FALSE); // 2000/11/24 11:43AM
  760. /* Go to MIR, FIR Speed */
  761. if (baud > 115200)
  762. {
  763. ali_ircc_fir_change_speed(self, baud);
  764. /* Install FIR xmit handler*/
  765. dev->hard_start_xmit = ali_ircc_fir_hard_xmit;
  766. /* Enable Interuupt */
  767. self->ier = IER_EOM; // benjamin 2000/11/20 07:24PM
  768. /* Be ready for incomming frames */
  769. ali_ircc_dma_receive(self); // benajmin 2000/11/8 07:46PM not complete
  770. }
  771. /* Go to SIR Speed */
  772. else
  773. {
  774. ali_ircc_sir_change_speed(self, baud);
  775. /* Install SIR xmit handler*/
  776. dev->hard_start_xmit = ali_ircc_sir_hard_xmit;
  777. }
  778. SetCOMInterrupts(self, TRUE); // 2000/11/24 11:43AM
  779. netif_wake_queue(self->netdev);
  780. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  781. }
  782. static void ali_ircc_fir_change_speed(struct ali_ircc_cb *priv, __u32 baud)
  783. {
  784. int iobase; 
  785. struct ali_ircc_cb *self = (struct ali_ircc_cb *) priv;
  786. struct net_device *dev;
  787. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  788. ASSERT(self != NULL, return;);
  789. dev = self->netdev;
  790. iobase = self->io.fir_base;
  791. IRDA_DEBUG(1, "%s(), self->io.speed = %d, change to speed = %dn", __FUNCTION__,self->io.speed,baud);
  792. /* Come from SIR speed */
  793. if(self->io.speed <=115200)
  794. {
  795. SIR2FIR(iobase);
  796. }
  797. /* Update accounting for new speed */
  798. self->io.speed = baud;
  799. // Set Dongle Speed mode
  800. ali_ircc_change_dongle_speed(self, baud);
  801. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  802. }
  803. /*
  804.  * Function ali_sir_change_speed (self, speed)
  805.  *
  806.  *    Set speed of IrDA port to specified baudrate
  807.  *
  808.  */
  809. static void ali_ircc_sir_change_speed(struct ali_ircc_cb *priv, __u32 speed)
  810. {
  811. struct ali_ircc_cb *self = (struct ali_ircc_cb *) priv;
  812. unsigned long flags;
  813. int iobase; 
  814. int fcr;    /* FIFO control reg */
  815. int lcr;    /* Line control reg */
  816. int divisor;
  817. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  818. IRDA_DEBUG(1, "%s(), Setting speed to: %dn", __FUNCTION__, speed);
  819. ASSERT(self != NULL, return;);
  820. iobase = self->io.sir_base;
  821. /* Come from MIR or FIR speed */
  822. if(self->io.speed >115200)
  823. {
  824. // Set Dongle Speed mode first
  825. ali_ircc_change_dongle_speed(self, speed);
  826. FIR2SIR(iobase);
  827. }
  828. // Clear Line and Auxiluary status registers 2000/11/24 11:47AM
  829. inb(iobase+UART_LSR);
  830. inb(iobase+UART_SCR);
  831. /* Update accounting for new speed */
  832. self->io.speed = speed;
  833. spin_lock_irqsave(&self->lock, flags);
  834. divisor = 115200/speed;
  835. fcr = UART_FCR_ENABLE_FIFO;
  836. /* 
  837.  * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
  838.  * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
  839.  * about this timeout since it will always be fast enough. 
  840.  */
  841. if (self->io.speed < 38400)
  842. fcr |= UART_FCR_TRIGGER_1;
  843. else 
  844. fcr |= UART_FCR_TRIGGER_14;
  845.         
  846. /* IrDA ports use 8N1 */
  847. lcr = UART_LCR_WLEN8;
  848. outb(UART_LCR_DLAB | lcr, iobase+UART_LCR); /* Set DLAB */
  849. outb(divisor & 0xff,      iobase+UART_DLL); /* Set speed */
  850. outb(divisor >> 8,   iobase+UART_DLM);
  851. outb(lcr,   iobase+UART_LCR); /* Set 8N1 */
  852. outb(fcr,   iobase+UART_FCR); /* Enable FIFO's */
  853. /* without this, the conection will be broken after come back from FIR speed,
  854.    but with this, the SIR connection is harder to established */
  855. outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase+UART_MCR);
  856. spin_unlock_irqrestore(&self->lock, flags);
  857. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  858. }
  859. static void ali_ircc_change_dongle_speed(struct ali_ircc_cb *priv, int speed)
  860. {
  861. struct ali_ircc_cb *self = (struct ali_ircc_cb *) priv;
  862. int iobase,dongle_id;
  863. unsigned long flags;
  864. int tmp = 0;
  865. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  866. iobase = self->io.fir_base;  /* or iobase = self->io.sir_base; */
  867. dongle_id = self->io.dongle_id;
  868. save_flags(flags);
  869. cli();
  870. IRDA_DEBUG(1, "%s(), Set Speed for %s , Speed = %dn", __FUNCTION__, dongle_types[dongle_id], speed);
  871. switch_bank(iobase, BANK2);
  872. tmp = inb(iobase+FIR_IRDA_CR);
  873. /* IBM type dongle */
  874. if(dongle_id == 0)
  875. {
  876. if(speed == 4000000)
  877. {
  878. //       __ __
  879. // SD/MODE __|     |__ __
  880. //               __ __ 
  881. // IRTX    __ __|     |__
  882. //         T1 T2 T3 T4 T5
  883. tmp &=  ~IRDA_CR_HDLC; // HDLC=0
  884. tmp |= IRDA_CR_CRC;     // CRC=1
  885. switch_bank(iobase, BANK2);
  886. outb(tmp, iobase+FIR_IRDA_CR);
  887.        // T1 -> SD/MODE:0 IRTX:0
  888.        tmp &= ~0x09;
  889.        tmp |= 0x02;
  890.        outb(tmp, iobase+FIR_IRDA_CR);
  891.        udelay(2);
  892.       
  893.        // T2 -> SD/MODE:1 IRTX:0
  894.        tmp &= ~0x01;
  895.        tmp |= 0x0a;
  896.        outb(tmp, iobase+FIR_IRDA_CR);
  897.        udelay(2);
  898.       
  899.        // T3 -> SD/MODE:1 IRTX:1
  900.        tmp |= 0x0b;
  901.        outb(tmp, iobase+FIR_IRDA_CR);
  902.        udelay(2);
  903.       
  904.        // T4 -> SD/MODE:0 IRTX:1
  905.        tmp &= ~0x08;
  906.        tmp |= 0x03;
  907.        outb(tmp, iobase+FIR_IRDA_CR);
  908.        udelay(2);
  909.       
  910.        // T5 -> SD/MODE:0 IRTX:0
  911.        tmp &= ~0x09;
  912.        tmp |= 0x02;
  913.        outb(tmp, iobase+FIR_IRDA_CR);
  914.        udelay(2);
  915.       
  916.        // reset -> Normal TX output Signal
  917.        outb(tmp & ~0x02, iobase+FIR_IRDA_CR);      
  918. }
  919. else /* speed <=1152000 */
  920. {
  921. //       __
  922. // SD/MODE __|  |__
  923. //
  924. // IRTX    ________
  925. //         T1 T2 T3  
  926. /* MIR 115200, 57600 */
  927. if (speed==1152000)
  928. {
  929. tmp |= 0xA0;    //HDLC=1, 1.152Mbps=1
  930.        }
  931.        else
  932.        {
  933. tmp &=~0x80;    //HDLC 0.576Mbps
  934. tmp |= 0x20;    //HDLC=1,
  935.        }
  936.       
  937.        tmp |= IRDA_CR_CRC;     // CRC=1
  938.       
  939.        switch_bank(iobase, BANK2);
  940.        outb(tmp, iobase+FIR_IRDA_CR);
  941. /* MIR 115200, 57600 */
  942. //switch_bank(iobase, BANK2);
  943. // T1 -> SD/MODE:0 IRTX:0
  944.        tmp &= ~0x09;
  945.        tmp |= 0x02;
  946.        outb(tmp, iobase+FIR_IRDA_CR);
  947.        udelay(2);
  948.       
  949.        // T2 -> SD/MODE:1 IRTX:0
  950.        tmp &= ~0x01;     
  951.        tmp |= 0x0a;      
  952.        outb(tmp, iobase+FIR_IRDA_CR);
  953.       
  954.        // T3 -> SD/MODE:0 IRTX:0
  955.        tmp &= ~0x09;
  956.        tmp |= 0x02;
  957.        outb(tmp, iobase+FIR_IRDA_CR);
  958.        udelay(2);
  959.       
  960.        // reset -> Normal TX output Signal
  961.        outb(tmp & ~0x02, iobase+FIR_IRDA_CR);      
  962. }
  963. }
  964. else if (dongle_id == 1) /* HP HDSL-3600 */
  965. {
  966. switch(speed)
  967. {
  968. case 4000000:
  969. tmp &=  ~IRDA_CR_HDLC; // HDLC=0
  970. break;
  971. case 1152000:
  972. tmp |= 0xA0;     // HDLC=1, 1.152Mbps=1
  973.        break;
  974.       
  975.        case 576000:
  976.        tmp &=~0x80;     // HDLC 0.576Mbps
  977. tmp |= 0x20;     // HDLC=1,
  978. break;
  979.        }
  980. tmp |= IRDA_CR_CRC;     // CRC=1
  981. switch_bank(iobase, BANK2);
  982.        outb(tmp, iobase+FIR_IRDA_CR);
  983. }
  984. else /* HP HDSL-1100 */
  985. {
  986. if(speed <= 115200) /* SIR */
  987. {
  988. tmp &= ~IRDA_CR_FIR_SIN; // HP sin select = 0
  989. switch_bank(iobase, BANK2);
  990.        outb(tmp, iobase+FIR_IRDA_CR);
  991. }
  992. else /* MIR FIR */
  993. {
  994. switch(speed)
  995. {
  996. case 4000000:
  997. tmp &=  ~IRDA_CR_HDLC; // HDLC=0
  998. break;
  999. case 1152000:
  1000. tmp |= 0xA0;     // HDLC=1, 1.152Mbps=1
  1001.        break;
  1002.       
  1003.        case 576000:
  1004.        tmp &=~0x80;     // HDLC 0.576Mbps
  1005. tmp |= 0x20;     // HDLC=1,
  1006. break;
  1007.        }
  1008. tmp |= IRDA_CR_CRC;     // CRC=1
  1009. tmp |= IRDA_CR_FIR_SIN; // HP sin select = 1
  1010. switch_bank(iobase, BANK2);
  1011.        outb(tmp, iobase+FIR_IRDA_CR);
  1012. }
  1013. }
  1014. switch_bank(iobase, BANK0);
  1015. restore_flags(flags);
  1016. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1017. }
  1018. /*
  1019.  * Function ali_ircc_sir_write (driver)
  1020.  *
  1021.  *    Fill Tx FIFO with transmit data
  1022.  *
  1023.  */
  1024. static int ali_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
  1025. {
  1026. int actual = 0;
  1027. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1028. /* Tx FIFO should be empty! */
  1029. if (!(inb(iobase+UART_LSR) & UART_LSR_THRE)) {
  1030. IRDA_DEBUG(0, "%s(), failed, fifo not empty!n", __FUNCTION__);
  1031. return 0;
  1032. }
  1033.         
  1034. /* Fill FIFO with current frame */
  1035. while ((fifo_size-- > 0) && (actual < len)) {
  1036. /* Transmit next byte */
  1037. outb(buf[actual], iobase+UART_TX);
  1038. actual++;
  1039. }
  1040.         IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1041. return actual;
  1042. }
  1043. /*
  1044.  * Function ali_ircc_net_init (dev)
  1045.  *
  1046.  *    Initialize network device
  1047.  *
  1048.  */
  1049. static int ali_ircc_net_init(struct net_device *dev)
  1050. {
  1051. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1052. /* Setup to be a normal IrDA network device driver */
  1053. irda_device_setup(dev);
  1054. /* Insert overrides below this line! */
  1055. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1056. return 0;
  1057. }
  1058. /*
  1059.  * Function ali_ircc_net_open (dev)
  1060.  *
  1061.  *    Start the device
  1062.  *
  1063.  */
  1064. static int ali_ircc_net_open(struct net_device *dev)
  1065. {
  1066. struct ali_ircc_cb *self;
  1067. int iobase;
  1068. char hwname[32];
  1069. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1070. ASSERT(dev != NULL, return -1;);
  1071. self = (struct ali_ircc_cb *) dev->priv;
  1072. ASSERT(self != NULL, return 0;);
  1073. iobase = self->io.fir_base;
  1074. /* Request IRQ and install Interrupt Handler */
  1075. if (request_irq(self->io.irq, ali_ircc_interrupt, 0, dev->name, dev)) 
  1076. {
  1077. WARNING("%s, unable to allocate irq=%dn", driver_name, 
  1078. self->io.irq);
  1079. return -EAGAIN;
  1080. }
  1081. /*
  1082.  * Always allocate the DMA channel after the IRQ, and clean up on 
  1083.  * failure.
  1084.  */
  1085. if (request_dma(self->io.dma, dev->name)) {
  1086. WARNING("%s, unable to allocate dma=%dn", driver_name, 
  1087. self->io.dma);
  1088. free_irq(self->io.irq, self);
  1089. return -EAGAIN;
  1090. }
  1091. /* Turn on interrups */
  1092. outb(UART_IER_RLSI | UART_IER_RDI |UART_IER_THRI, iobase+UART_IER);
  1093. /* Ready to play! */
  1094. netif_start_queue(dev); //benjamin by irport
  1095. /* Give self a hardware name */
  1096. sprintf(hwname, "ALI-FIR @ 0x%03x", self->io.fir_base);
  1097. /* 
  1098.  * Open new IrLAP layer instance, now that everything should be
  1099.  * initialized properly 
  1100.  */
  1101. self->irlap = irlap_open(dev, &self->qos, hwname);
  1102. MOD_INC_USE_COUNT;
  1103. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1104. return 0;
  1105. }
  1106. /*
  1107.  * Function ali_ircc_net_close (dev)
  1108.  *
  1109.  *    Stop the device
  1110.  *
  1111.  */
  1112. static int ali_ircc_net_close(struct net_device *dev)
  1113. {
  1114. struct ali_ircc_cb *self;
  1115. //int iobase;
  1116. IRDA_DEBUG(4, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1117. ASSERT(dev != NULL, return -1;);
  1118. self = (struct ali_ircc_cb *) dev->priv;
  1119. ASSERT(self != NULL, return 0;);
  1120. /* Stop device */
  1121. netif_stop_queue(dev);
  1122. /* Stop and remove instance of IrLAP */
  1123. if (self->irlap)
  1124. irlap_close(self->irlap);
  1125. self->irlap = NULL;
  1126. disable_dma(self->io.dma);
  1127. /* Disable interrupts */
  1128. SetCOMInterrupts(self, FALSE);
  1129.        
  1130. free_irq(self->io.irq, dev);
  1131. free_dma(self->io.dma);
  1132. MOD_DEC_USE_COUNT;
  1133. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1134. return 0;
  1135. }
  1136. /*
  1137.  * Function ali_ircc_fir_hard_xmit (skb, dev)
  1138.  *
  1139.  *    Transmit the frame
  1140.  *
  1141.  */
  1142. static int ali_ircc_fir_hard_xmit(struct sk_buff *skb, struct net_device *dev)
  1143. {
  1144. struct ali_ircc_cb *self;
  1145. unsigned long flags;
  1146. int iobase;
  1147. __u32 speed;
  1148. int mtt, diff;
  1149. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------n", __FUNCTION__);
  1150. self = (struct ali_ircc_cb *) dev->priv;
  1151. iobase = self->io.fir_base;
  1152. netif_stop_queue(dev);
  1153. /* Check if we need to change the speed */
  1154. speed = irda_get_next_speed(skb);
  1155. if ((speed != self->io.speed) && (speed != -1)) {
  1156. /* Check for empty frame */
  1157. if (!skb->len) {
  1158. ali_ircc_change_speed(self, speed); 
  1159. dev_kfree_skb(skb);
  1160. return 0;
  1161. } else
  1162. self->new_speed = speed;
  1163. }
  1164. spin_lock_irqsave(&self->lock, flags);
  1165. /* Register and copy this frame to DMA memory */
  1166. self->tx_fifo.queue[self->tx_fifo.free].start = self->tx_fifo.tail;
  1167. self->tx_fifo.queue[self->tx_fifo.free].len = skb->len;
  1168. self->tx_fifo.tail += skb->len;
  1169. self->stats.tx_bytes += skb->len;
  1170. memcpy(self->tx_fifo.queue[self->tx_fifo.free].start, skb->data, 
  1171.        skb->len);
  1172. self->tx_fifo.len++;
  1173. self->tx_fifo.free++;
  1174. /* Start transmit only if there is currently no transmit going on */
  1175. if (self->tx_fifo.len == 1) 
  1176. {
  1177. /* Check if we must wait the min turn time or not */
  1178. mtt = irda_get_mtt(skb);
  1179. if (mtt) 
  1180. {
  1181. /* Check how much time we have used already */
  1182. do_gettimeofday(&self->now);
  1183. diff = self->now.tv_usec - self->stamp.tv_usec;
  1184. /* self->stamp is set from ali_ircc_dma_receive_complete() */
  1185. IRDA_DEBUG(1, "%s(), ******* diff = %d ******* n", __FUNCTION__, diff);
  1186. if (diff < 0) 
  1187. diff += 1000000;
  1188. /* Check if the mtt is larger than the time we have
  1189.  * already used by all the protocol processing
  1190.  */
  1191. if (mtt > diff)
  1192. {
  1193. mtt -= diff;
  1194. /* 
  1195.  * Use timer if delay larger than 1000 us, and
  1196.  * use udelay for smaller values which should
  1197.  * be acceptable
  1198.  */
  1199. if (mtt > 500) 
  1200. {
  1201. /* Adjust for timer resolution */
  1202. mtt = (mtt+250) / 500;  /* 4 discard, 5 get advanced, Let's round off */
  1203. IRDA_DEBUG(1, "%s(), ************** mtt = %d ***********n", __FUNCTION__, mtt);
  1204. /* Setup timer */
  1205. if (mtt == 1) /* 500 us */
  1206. {
  1207. switch_bank(iobase, BANK1);
  1208. outb(TIMER_IIR_500, iobase+FIR_TIMER_IIR);
  1209. }
  1210. else if (mtt == 2) /* 1 ms */
  1211. {
  1212. switch_bank(iobase, BANK1);
  1213. outb(TIMER_IIR_1ms, iobase+FIR_TIMER_IIR);
  1214. }
  1215. else /* > 2ms -> 4ms */
  1216. {
  1217. switch_bank(iobase, BANK1);
  1218. outb(TIMER_IIR_2ms, iobase+FIR_TIMER_IIR);
  1219. }
  1220. /* Start timer */
  1221. outb(inb(iobase+FIR_CR) | CR_TIMER_EN, iobase+FIR_CR);
  1222. self->io.direction = IO_XMIT;
  1223. /* Enable timer interrupt */
  1224. self->ier = IER_TIMER;
  1225. SetCOMInterrupts(self, TRUE);
  1226. /* Timer will take care of the rest */
  1227. goto out; 
  1228. else
  1229. udelay(mtt);
  1230. } // if (if (mtt > diff)
  1231. }// if (mtt) 
  1232. /* Enable EOM interrupt */
  1233. self->ier = IER_EOM;
  1234. SetCOMInterrupts(self, TRUE);
  1235. /* Transmit frame */
  1236. ali_ircc_dma_xmit(self);
  1237. } // if (self->tx_fifo.len == 1) 
  1238.  out:
  1239.  
  1240. /* Not busy transmitting anymore if window is not full */
  1241. if (self->tx_fifo.free < MAX_TX_WINDOW)
  1242. netif_wake_queue(self->netdev);
  1243. /* Restore bank register */
  1244. switch_bank(iobase, BANK0);
  1245. spin_unlock_irqrestore(&self->lock, flags);
  1246. dev_kfree_skb(skb);
  1247. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1248. return 0;
  1249. }
  1250. static void ali_ircc_dma_xmit(struct ali_ircc_cb *self)
  1251. {
  1252. int iobase, tmp;
  1253. unsigned char FIFO_OPTI, Hi, Lo;
  1254. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------n", __FUNCTION__);
  1255. iobase = self->io.fir_base;
  1256. /* FIFO threshold , this method comes from NDIS5 code */
  1257. if(self->tx_fifo.queue[self->tx_fifo.ptr].len < TX_FIFO_Threshold)
  1258. FIFO_OPTI = self->tx_fifo.queue[self->tx_fifo.ptr].len-1;
  1259. else
  1260. FIFO_OPTI = TX_FIFO_Threshold;
  1261. /* Disable DMA */
  1262. switch_bank(iobase, BANK1);
  1263. outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
  1264. self->io.direction = IO_XMIT;
  1265. setup_dma(self->io.dma, 
  1266.   self->tx_fifo.queue[self->tx_fifo.ptr].start, 
  1267.   self->tx_fifo.queue[self->tx_fifo.ptr].len, 
  1268.   DMA_TX_MODE);
  1269. /* Reset Tx FIFO */
  1270. switch_bank(iobase, BANK0);
  1271. outb(LCR_A_FIFO_RESET, iobase+FIR_LCR_A);
  1272. /* Set Tx FIFO threshold */
  1273. if (self->fifo_opti_buf!=FIFO_OPTI) 
  1274. {
  1275. switch_bank(iobase, BANK1);
  1276.      outb(FIFO_OPTI, iobase+FIR_FIFO_TR) ;
  1277.      self->fifo_opti_buf=FIFO_OPTI;
  1278. }
  1279. /* Set Tx DMA threshold */
  1280. switch_bank(iobase, BANK1);
  1281. outb(TX_DMA_Threshold, iobase+FIR_DMA_TR);
  1282. /* Set max Tx frame size */
  1283. Hi = (self->tx_fifo.queue[self->tx_fifo.ptr].len >> 8) & 0x0f;
  1284. Lo = self->tx_fifo.queue[self->tx_fifo.ptr].len & 0xff;
  1285. switch_bank(iobase, BANK2);
  1286. outb(Hi, iobase+FIR_TX_DSR_HI);
  1287. outb(Lo, iobase+FIR_TX_DSR_LO);
  1288. /* Disable SIP , Disable Brick Wall (we don't support in TX mode), Change to TX mode */
  1289. switch_bank(iobase, BANK0);
  1290. tmp = inb(iobase+FIR_LCR_B);
  1291. tmp &= ~0x20; // Disable SIP
  1292. outb(((unsigned char)(tmp & 0x3f) | LCR_B_TX_MODE) & ~LCR_B_BW, iobase+FIR_LCR_B);
  1293. IRDA_DEBUG(1, "%s(), ******* Change to TX mode: FIR_LCR_B = 0x%x ******* n", __FUNCTION__, inb(iobase+FIR_LCR_B));
  1294. outb(0, iobase+FIR_LSR);
  1295. /* Enable DMA and Burst Mode */
  1296. switch_bank(iobase, BANK1);
  1297. outb(inb(iobase+FIR_CR) | CR_DMA_EN | CR_DMA_BURST, iobase+FIR_CR);
  1298. switch_bank(iobase, BANK0); 
  1299. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1300. }
  1301. static int  ali_ircc_dma_xmit_complete(struct ali_ircc_cb *self)
  1302. {
  1303. int iobase;
  1304. int ret = TRUE;
  1305. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------n", __FUNCTION__);
  1306. iobase = self->io.fir_base;
  1307. /* Disable DMA */
  1308. switch_bank(iobase, BANK1);
  1309. outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
  1310. /* Check for underrun! */
  1311. switch_bank(iobase, BANK0);
  1312. if((inb(iobase+FIR_LSR) & LSR_FRAME_ABORT) == LSR_FRAME_ABORT)
  1313. {
  1314. ERROR("%s(), ********* LSR_FRAME_ABORT *********n", __FUNCTION__);
  1315. self->stats.tx_errors++;
  1316. self->stats.tx_fifo_errors++;
  1317. }
  1318. else 
  1319. {
  1320. self->stats.tx_packets++;
  1321. }
  1322. /* Check if we need to change the speed */
  1323. if (self->new_speed) 
  1324. {
  1325. ali_ircc_change_speed(self, self->new_speed);
  1326. self->new_speed = 0;
  1327. }
  1328. /* Finished with this frame, so prepare for next */
  1329. self->tx_fifo.ptr++;
  1330. self->tx_fifo.len--;
  1331. /* Any frames to be sent back-to-back? */
  1332. if (self->tx_fifo.len) 
  1333. {
  1334. ali_ircc_dma_xmit(self);
  1335. /* Not finished yet! */
  1336. ret = FALSE;
  1337. else 
  1338. { /* Reset Tx FIFO info */
  1339. self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
  1340. self->tx_fifo.tail = self->tx_buff.head;
  1341. }
  1342. /* Make sure we have room for more frames */
  1343. if (self->tx_fifo.free < MAX_TX_WINDOW) {
  1344. /* Not busy transmitting anymore */
  1345. /* Tell the network layer, that we can accept more frames */
  1346. netif_wake_queue(self->netdev);
  1347. }
  1348. switch_bank(iobase, BANK0); 
  1349. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1350. return ret;
  1351. }
  1352. /*
  1353.  * Function ali_ircc_dma_receive (self)
  1354.  *
  1355.  *    Get ready for receiving a frame. The device will initiate a DMA
  1356.  *    if it starts to receive a frame.
  1357.  *
  1358.  */
  1359. static int ali_ircc_dma_receive(struct ali_ircc_cb *self) 
  1360. {
  1361. int iobase, tmp;
  1362. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------n", __FUNCTION__);
  1363. iobase = self->io.fir_base;
  1364. /* Reset Tx FIFO info */
  1365. self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
  1366. self->tx_fifo.tail = self->tx_buff.head;
  1367. /* Disable DMA */
  1368. switch_bank(iobase, BANK1);
  1369. outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
  1370. /* Reset Message Count */
  1371. switch_bank(iobase, BANK0);
  1372. outb(0x07, iobase+FIR_LSR);
  1373. self->rcvFramesOverflow = FALSE;
  1374. self->LineStatus = inb(iobase+FIR_LSR) ;
  1375. /* Reset Rx FIFO info */
  1376. self->io.direction = IO_RECV;
  1377. self->rx_buff.data = self->rx_buff.head;
  1378. /* Reset Rx FIFO */
  1379. // switch_bank(iobase, BANK0);
  1380. outb(LCR_A_FIFO_RESET, iobase+FIR_LCR_A); 
  1381. self->st_fifo.len = self->st_fifo.pending_bytes = 0;
  1382. self->st_fifo.tail = self->st_fifo.head = 0;
  1383. setup_dma(self->io.dma, self->rx_buff.data, self->rx_buff.truesize, 
  1384.   DMA_RX_MODE);
  1385.  
  1386. /* Set Receive Mode,Brick Wall */
  1387. //switch_bank(iobase, BANK0);
  1388. tmp = inb(iobase+FIR_LCR_B);
  1389. outb((unsigned char)(tmp &0x3f) | LCR_B_RX_MODE | LCR_B_BW , iobase + FIR_LCR_B); // 2000/12/1 05:16PM
  1390. IRDA_DEBUG(1, "%s(), *** Change To RX mode: FIR_LCR_B = 0x%x *** n", __FUNCTION__, inb(iobase+FIR_LCR_B));
  1391. /* Set Rx Threshold */
  1392. switch_bank(iobase, BANK1);
  1393. outb(RX_FIFO_Threshold, iobase+FIR_FIFO_TR);
  1394. outb(RX_DMA_Threshold, iobase+FIR_DMA_TR);
  1395. /* Enable DMA and Burst Mode */
  1396. // switch_bank(iobase, BANK1);
  1397. outb(CR_DMA_EN | CR_DMA_BURST, iobase+FIR_CR);
  1398. switch_bank(iobase, BANK0); 
  1399. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1400. return 0;
  1401. }
  1402. static int  ali_ircc_dma_receive_complete(struct ali_ircc_cb *self)
  1403. {
  1404. struct st_fifo *st_fifo;
  1405. struct sk_buff *skb;
  1406. __u8 status, MessageCount;
  1407. int len, i, iobase, val;
  1408. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------n", __FUNCTION__);
  1409. st_fifo = &self->st_fifo;
  1410. iobase = self->io.fir_base;
  1411. switch_bank(iobase, BANK0);
  1412. MessageCount = inb(iobase+ FIR_LSR)&0x07;
  1413. if (MessageCount > 0)
  1414. IRDA_DEBUG(0, "%s(), Messsage count = %d,n", __FUNCTION__, MessageCount);
  1415. for (i=0; i<=MessageCount; i++)
  1416. {
  1417. /* Bank 0 */
  1418. switch_bank(iobase, BANK0);
  1419. status = inb(iobase+FIR_LSR);
  1420. switch_bank(iobase, BANK2);
  1421. len = inb(iobase+FIR_RX_DSR_HI) & 0x0f;
  1422. len = len << 8; 
  1423. len |= inb(iobase+FIR_RX_DSR_LO);
  1424. IRDA_DEBUG(1, "%s(), RX Length = 0x%.2x,n", __FUNCTION__, len);
  1425. IRDA_DEBUG(1, "%s(), RX Status = 0x%.2x,n", __FUNCTION__, status);
  1426. if (st_fifo->tail >= MAX_RX_WINDOW) {
  1427. IRDA_DEBUG(0, "%s(), window is full!n", __FUNCTION__);
  1428. continue;
  1429. }
  1430. st_fifo->entries[st_fifo->tail].status = status;
  1431. st_fifo->entries[st_fifo->tail].len = len;
  1432. st_fifo->pending_bytes += len;
  1433. st_fifo->tail++;
  1434. st_fifo->len++;
  1435. }
  1436. for (i=0; i<=MessageCount; i++)
  1437. {
  1438. /* Get first entry */
  1439. status = st_fifo->entries[st_fifo->head].status;
  1440. len    = st_fifo->entries[st_fifo->head].len;
  1441. st_fifo->pending_bytes -= len;
  1442. st_fifo->head++;
  1443. st_fifo->len--;
  1444. /* Check for errors */
  1445. if ((status & 0xd8) || self->rcvFramesOverflow || (len==0)) 
  1446. {
  1447. IRDA_DEBUG(0,  "%s(), ************* RX Errors ************ n", __FUNCTION__);
  1448. /* Skip frame */
  1449. self->stats.rx_errors++;
  1450. self->rx_buff.data += len;
  1451. if (status & LSR_FIFO_UR) 
  1452. {
  1453. self->stats.rx_frame_errors++;
  1454. IRDA_DEBUG(0, "%s(), ************* FIFO Errors ************ n", __FUNCTION__);
  1455. }
  1456. if (status & LSR_FRAME_ERROR)
  1457. {
  1458. self->stats.rx_frame_errors++;
  1459. IRDA_DEBUG(0, "%s(), ************* FRAME Errors ************ n", __FUNCTION__);
  1460. }
  1461. if (status & LSR_CRC_ERROR) 
  1462. {
  1463. self->stats.rx_crc_errors++;
  1464. IRDA_DEBUG(0, "%s(), ************* CRC Errors ************ n", __FUNCTION__);
  1465. }
  1466. if(self->rcvFramesOverflow)
  1467. {
  1468. self->stats.rx_frame_errors++;
  1469. IRDA_DEBUG(0, "%s(), ************* Overran DMA buffer ************ n", __FUNCTION__);
  1470. }
  1471. if(len == 0)
  1472. {
  1473. self->stats.rx_frame_errors++;
  1474. IRDA_DEBUG(0, "%s(), ********** Receive Frame Size = 0 ********* n", __FUNCTION__);
  1475. }
  1476. }  
  1477. else 
  1478. {
  1479. if (st_fifo->pending_bytes < 32) 
  1480. {
  1481. switch_bank(iobase, BANK0);
  1482. val = inb(iobase+FIR_BSR);
  1483. if ((val& BSR_FIFO_NOT_EMPTY)== 0x80) 
  1484. {
  1485. IRDA_DEBUG(0, "%s(), ************* BSR_FIFO_NOT_EMPTY ************ n", __FUNCTION__);
  1486. /* Put this entry back in fifo */
  1487. st_fifo->head--;
  1488. st_fifo->len++;
  1489. st_fifo->pending_bytes += len;
  1490. st_fifo->entries[st_fifo->head].status = status;
  1491. st_fifo->entries[st_fifo->head].len = len;
  1492. /*  
  1493.   * DMA not finished yet, so try again 
  1494.   * later, set timer value, resolution 
  1495.   * 500 us 
  1496.   */
  1497.  
  1498. switch_bank(iobase, BANK1);
  1499. outb(TIMER_IIR_500, iobase+FIR_TIMER_IIR); // 2001/1/2 05:07PM
  1500. /* Enable Timer */
  1501. outb(inb(iobase+FIR_CR) | CR_TIMER_EN, iobase+FIR_CR);
  1502. return FALSE; /* I'll be back! */
  1503. }
  1504. }
  1505. /* 
  1506.  * Remember the time we received this frame, so we can
  1507.  * reduce the min turn time a bit since we will know
  1508.  * how much time we have used for protocol processing
  1509.  */
  1510. do_gettimeofday(&self->stamp);
  1511. skb = dev_alloc_skb(len+1);
  1512. if (skb == NULL)  
  1513. {
  1514. WARNING("%s(), memory squeeze, "
  1515. "dropping frame.n", __FUNCTION__);
  1516. self->stats.rx_dropped++;
  1517. return FALSE;
  1518. }
  1519. /* Make sure IP header gets aligned */
  1520. skb_reserve(skb, 1); 
  1521. /* Copy frame without CRC, CRC is removed by hardware*/
  1522. skb_put(skb, len);
  1523. memcpy(skb->data, self->rx_buff.data, len);
  1524. /* Move to next frame */
  1525. self->rx_buff.data += len;
  1526. self->stats.rx_bytes += len;
  1527. self->stats.rx_packets++;
  1528. skb->dev = self->netdev;
  1529. skb->mac.raw  = skb->data;
  1530. skb->protocol = htons(ETH_P_IRDA);
  1531. netif_rx(skb);
  1532. }
  1533. }
  1534. switch_bank(iobase, BANK0);
  1535. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1536. return TRUE;
  1537. }
  1538. /*
  1539.  * Function ali_ircc_sir_hard_xmit (skb, dev)
  1540.  *
  1541.  *    Transmit the frame!
  1542.  *
  1543.  */
  1544. static int ali_ircc_sir_hard_xmit(struct sk_buff *skb, struct net_device *dev)
  1545. {
  1546. struct ali_ircc_cb *self;
  1547. unsigned long flags;
  1548. int iobase;
  1549. __u32 speed;
  1550. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1551. ASSERT(dev != NULL, return 0;);
  1552. self = (struct ali_ircc_cb *) dev->priv;
  1553. ASSERT(self != NULL, return 0;);
  1554. iobase = self->io.sir_base;
  1555. netif_stop_queue(dev);
  1556. /* Check if we need to change the speed */
  1557. speed = irda_get_next_speed(skb);
  1558. if ((speed != self->io.speed) && (speed != -1)) {
  1559. /* Check for empty frame */
  1560. if (!skb->len) {
  1561. ali_ircc_change_speed(self, speed); 
  1562. dev_kfree_skb(skb);
  1563. return 0;
  1564. } else
  1565. self->new_speed = speed;
  1566. }
  1567. spin_lock_irqsave(&self->lock, flags);
  1568. /* Init tx buffer */
  1569. self->tx_buff.data = self->tx_buff.head;
  1570.         /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
  1571. self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data, 
  1572.    self->tx_buff.truesize);
  1573. self->stats.tx_bytes += self->tx_buff.len;
  1574. /* Turn on transmit finished interrupt. Will fire immediately!  */
  1575. outb(UART_IER_THRI, iobase+UART_IER); 
  1576. spin_unlock_irqrestore(&self->lock, flags);
  1577. dev_kfree_skb(skb);
  1578. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1579. return 0;
  1580. }
  1581. /*
  1582.  * Function ali_ircc_net_ioctl (dev, rq, cmd)
  1583.  *
  1584.  *    Process IOCTL commands for this device
  1585.  *
  1586.  */
  1587. static int ali_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1588. {
  1589. struct if_irda_req *irq = (struct if_irda_req *) rq;
  1590. struct ali_ircc_cb *self;
  1591. unsigned long flags;
  1592. int ret = 0;
  1593. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1594. ASSERT(dev != NULL, return -1;);
  1595. self = dev->priv;
  1596. ASSERT(self != NULL, return -1;);
  1597. IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)n", __FUNCTION__, dev->name, cmd);
  1598. /* Disable interrupts & save flags */
  1599. save_flags(flags);
  1600. cli();
  1601. switch (cmd) {
  1602. case SIOCSBANDWIDTH: /* Set bandwidth */
  1603. IRDA_DEBUG(1, "%s(), SIOCSBANDWIDTHn", __FUNCTION__);
  1604. /*
  1605.  * This function will also be used by IrLAP to change the
  1606.  * speed, so we still must allow for speed change within
  1607.  * interrupt context.
  1608.  */
  1609. if (!in_interrupt() && !capable(CAP_NET_ADMIN))
  1610. return -EPERM;
  1611. ali_ircc_change_speed(self, irq->ifr_baudrate);
  1612. break;
  1613. case SIOCSMEDIABUSY: /* Set media busy */
  1614. IRDA_DEBUG(1, "%s(), SIOCSMEDIABUSYn", __FUNCTION__);
  1615. if (!capable(CAP_NET_ADMIN))
  1616. return -EPERM;
  1617. irda_device_set_media_busy(self->netdev, TRUE);
  1618. break;
  1619. case SIOCGRECEIVING: /* Check if we are receiving right now */
  1620. IRDA_DEBUG(2, "%s(), SIOCGRECEIVINGn", __FUNCTION__);
  1621. irq->ifr_receiving = ali_ircc_is_receiving(self);
  1622. break;
  1623. default:
  1624. ret = -EOPNOTSUPP;
  1625. }
  1626. restore_flags(flags);
  1627. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1628. return ret;
  1629. }
  1630. /*
  1631.  * Function ali_ircc_is_receiving (self)
  1632.  *
  1633.  *    Return TRUE is we are currently receiving a frame
  1634.  *
  1635.  */
  1636. static int ali_ircc_is_receiving(struct ali_ircc_cb *self)
  1637. {
  1638. unsigned long flags;
  1639. int status = FALSE;
  1640. int iobase;
  1641. IRDA_DEBUG(2, "%s(), ---------------- Start -----------------n", __FUNCTION__);
  1642. ASSERT(self != NULL, return FALSE;);
  1643. spin_lock_irqsave(&self->lock, flags);
  1644. if (self->io.speed > 115200) 
  1645. {
  1646. iobase = self->io.fir_base;
  1647. switch_bank(iobase, BANK1);
  1648. if((inb(iobase+FIR_FIFO_FR) & 0x3f) != 0) 
  1649. {
  1650. /* We are receiving something */
  1651. IRDA_DEBUG(1, "%s(), We are receiving somethingn", __FUNCTION__);
  1652. status = TRUE;
  1653. }
  1654. switch_bank(iobase, BANK0);
  1655. else
  1656. status = (self->rx_buff.state != OUTSIDE_FRAME);
  1657. }
  1658. spin_unlock_irqrestore(&self->lock, flags);
  1659. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1660. return status;
  1661. }
  1662. static struct net_device_stats *ali_ircc_net_get_stats(struct net_device *dev)
  1663. {
  1664. struct ali_ircc_cb *self = (struct ali_ircc_cb *) dev->priv;
  1665. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1666. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1667. return &self->stats;
  1668. }
  1669. static void ali_ircc_suspend(struct ali_ircc_cb *self)
  1670. {
  1671. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1672. MESSAGE("%s, Suspendingn", driver_name);
  1673. if (self->io.suspended)
  1674. return;
  1675. ali_ircc_net_close(self->netdev);
  1676. self->io.suspended = 1;
  1677. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1678. }
  1679. static void ali_ircc_wakeup(struct ali_ircc_cb *self)
  1680. {
  1681. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1682. if (!self->io.suspended)
  1683. return;
  1684. ali_ircc_net_open(self->netdev);
  1685. MESSAGE("%s, Waking upn", driver_name);
  1686. self->io.suspended = 0;
  1687. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1688. }
  1689. static int ali_ircc_pmproc(struct pm_dev *dev, pm_request_t rqst, void *data)
  1690. {
  1691.         struct ali_ircc_cb *self = (struct ali_ircc_cb*) dev->data;
  1692.         
  1693.         IRDA_DEBUG(2, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1694.         if (self) {
  1695.                 switch (rqst) {
  1696.                 case PM_SUSPEND:
  1697.                         ali_ircc_suspend(self);
  1698.                         break;
  1699.                 case PM_RESUME:
  1700.                         ali_ircc_wakeup(self);
  1701.                         break;
  1702.                 }
  1703.         }
  1704.         
  1705.         IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1706.         
  1707. return 0;
  1708. }
  1709. /* ALi Chip Function */
  1710. static void SetCOMInterrupts(struct ali_ircc_cb *self , unsigned char enable)
  1711. {
  1712. unsigned char newMask;
  1713. int iobase = self->io.fir_base; /* or sir_base */
  1714. IRDA_DEBUG(2, "%s(), -------- Start -------- ( Enable = %d )n", __FUNCTION__, enable);
  1715. /* Enable the interrupt which we wish to */
  1716. if (enable){
  1717. if (self->io.direction == IO_XMIT)
  1718. {
  1719. if (self->io.speed > 115200) /* FIR, MIR */
  1720. {
  1721. newMask = self->ier;
  1722. }
  1723. else /* SIR */
  1724. {
  1725. newMask = UART_IER_THRI | UART_IER_RDI;
  1726. }
  1727. }
  1728. else {
  1729. if (self->io.speed > 115200) /* FIR, MIR */
  1730. {
  1731. newMask = self->ier;
  1732. }
  1733. else /* SIR */
  1734. {
  1735. newMask = UART_IER_RDI;
  1736. }
  1737. }
  1738. }
  1739. else /* Disable all the interrupts */
  1740. {
  1741. newMask = 0x00;
  1742. }
  1743. //SIR and FIR has different registers
  1744. if (self->io.speed > 115200)
  1745. {
  1746. switch_bank(iobase, BANK0);
  1747. outb(newMask, iobase+FIR_IER);
  1748. }
  1749. else
  1750. outb(newMask, iobase+UART_IER);
  1751. IRDA_DEBUG(2, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1752. }
  1753. static void SIR2FIR(int iobase)
  1754. {
  1755. //unsigned char tmp;
  1756. unsigned long flags;
  1757. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1758. save_flags(flags);
  1759. cli();
  1760. outb(0x28, iobase+UART_MCR);
  1761. outb(0x68, iobase+UART_MCR);
  1762. outb(0x88, iobase+UART_MCR);
  1763. restore_flags(flags);
  1764. outb(0x60, iobase+FIR_MCR);  /*  Master Reset */
  1765. outb(0x20, iobase+FIR_MCR);  /*  Master Interrupt Enable */
  1766. //tmp = inb(iobase+FIR_LCR_B); /* SIP enable */
  1767. //tmp |= 0x20;
  1768. //outb(tmp, iobase+FIR_LCR_B);
  1769. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1770. }
  1771. static void FIR2SIR(int iobase)
  1772. {
  1773. unsigned char val;
  1774. unsigned long flags;
  1775. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------n", __FUNCTION__);
  1776. save_flags(flags);
  1777. cli();
  1778. outb(0x20, iobase+FIR_MCR);  /* IRQ to low */
  1779. outb(0x00, iobase+UART_IER); 
  1780. outb(0xA0, iobase+FIR_MCR);  /* Don't set master reset */
  1781. outb(0x00, iobase+UART_FCR);
  1782. outb(0x07, iobase+UART_FCR);
  1783. val = inb(iobase+UART_RX);
  1784. val = inb(iobase+UART_LSR);
  1785. val = inb(iobase+UART_MSR);
  1786. restore_flags(flags);
  1787. IRDA_DEBUG(1, "%s(), ----------------- End ------------------n", __FUNCTION__);
  1788. }
  1789. #ifdef MODULE
  1790. MODULE_AUTHOR("Benjamin Kong <benjamin_kong@ali.com.tw>");
  1791. MODULE_DESCRIPTION("ALi FIR Controller Driver");
  1792. MODULE_LICENSE("GPL");
  1793. MODULE_PARM(io,  "1-4i");
  1794. MODULE_PARM_DESC(io, "Base I/O addresses");
  1795. MODULE_PARM(irq, "1-4i");
  1796. MODULE_PARM_DESC(irq, "IRQ lines");
  1797. MODULE_PARM(dma, "1-4i");
  1798. MODULE_PARM_DESC(dma, "DMA channels");
  1799. int init_module(void)
  1800. {
  1801. return ali_ircc_init();
  1802. }
  1803. void cleanup_module(void)
  1804. {
  1805. ali_ircc_cleanup();
  1806. }
  1807. #endif /* MODULE */