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

嵌入式Linux

开发平台:

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