Merge tag 'chrome-platform-for-linus-4.13' of git://git.kernel.org/pub/scm/linux...
[linux/fpc-iii.git] / drivers / net / irda / ali-ircc.c
blob35f198d8370140a78f0390857c12ed68f8a165c6
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 * Modified at: 2003/11/6 and support for ALi south-bridge chipsets M1563
12 * Modified by: Clear Zhang <clear_zhang@ali.com.tw>
14 * Copyright (c) 2000 Benjamin Kong <benjamin_kong@ali.com.tw>
15 * All Rights Reserved
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
22 ********************************************************************/
24 #include <linux/module.h>
25 #include <linux/gfp.h>
27 #include <linux/kernel.h>
28 #include <linux/types.h>
29 #include <linux/skbuff.h>
30 #include <linux/netdevice.h>
31 #include <linux/ioport.h>
32 #include <linux/delay.h>
33 #include <linux/init.h>
34 #include <linux/interrupt.h>
35 #include <linux/rtnetlink.h>
36 #include <linux/serial_reg.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/platform_device.h>
40 #include <asm/io.h>
41 #include <asm/dma.h>
42 #include <asm/byteorder.h>
44 #include <net/irda/wrapper.h>
45 #include <net/irda/irda.h>
46 #include <net/irda/irda_device.h>
48 #include "ali-ircc.h"
50 #define CHIP_IO_EXTENT 8
51 #define BROKEN_DONGLE_ID
53 #define ALI_IRCC_DRIVER_NAME "ali-ircc"
55 /* Power Management */
56 static int ali_ircc_suspend(struct platform_device *dev, pm_message_t state);
57 static int ali_ircc_resume(struct platform_device *dev);
59 static struct platform_driver ali_ircc_driver = {
60 .suspend = ali_ircc_suspend,
61 .resume = ali_ircc_resume,
62 .driver = {
63 .name = ALI_IRCC_DRIVER_NAME,
67 /* Module parameters */
68 static int qos_mtt_bits = 0x07; /* 1 ms or more */
70 /* Use BIOS settions by default, but user may supply module parameters */
71 static unsigned int io[] = { ~0, ~0, ~0, ~0 };
72 static unsigned int irq[] = { 0, 0, 0, 0 };
73 static unsigned int dma[] = { 0, 0, 0, 0 };
75 static int ali_ircc_probe_53(ali_chip_t *chip, chipio_t *info);
76 static int ali_ircc_init_43(ali_chip_t *chip, chipio_t *info);
77 static int ali_ircc_init_53(ali_chip_t *chip, chipio_t *info);
79 /* These are the currently known ALi south-bridge chipsets, the only one difference
80 * is that M1543C doesn't support HP HDSL-3600
82 static ali_chip_t chips[] =
84 { "M1543", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x43, ali_ircc_probe_53, ali_ircc_init_43 },
85 { "M1535", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x53, ali_ircc_probe_53, ali_ircc_init_53 },
86 { "M1563", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x63, ali_ircc_probe_53, ali_ircc_init_53 },
87 { NULL }
90 /* Max 4 instances for now */
91 static struct ali_ircc_cb *dev_self[] = { NULL, NULL, NULL, NULL };
93 /* Dongle Types */
94 static char *dongle_types[] = {
95 "TFDS6000",
96 "HP HSDL-3600",
97 "HP HSDL-1100",
98 "No dongle connected",
101 /* Some prototypes */
102 static int ali_ircc_open(int i, chipio_t *info);
104 static int ali_ircc_close(struct ali_ircc_cb *self);
106 static int ali_ircc_setup(chipio_t *info);
107 static int ali_ircc_is_receiving(struct ali_ircc_cb *self);
108 static int ali_ircc_net_open(struct net_device *dev);
109 static int ali_ircc_net_close(struct net_device *dev);
110 static int ali_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
111 static void ali_ircc_change_speed(struct ali_ircc_cb *self, __u32 baud);
113 /* SIR function */
114 static netdev_tx_t ali_ircc_sir_hard_xmit(struct sk_buff *skb,
115 struct net_device *dev);
116 static irqreturn_t ali_ircc_sir_interrupt(struct ali_ircc_cb *self);
117 static void ali_ircc_sir_receive(struct ali_ircc_cb *self);
118 static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb *self);
119 static int ali_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len);
120 static void ali_ircc_sir_change_speed(struct ali_ircc_cb *priv, __u32 speed);
122 /* FIR function */
123 static netdev_tx_t ali_ircc_fir_hard_xmit(struct sk_buff *skb,
124 struct net_device *dev);
125 static void ali_ircc_fir_change_speed(struct ali_ircc_cb *priv, __u32 speed);
126 static irqreturn_t ali_ircc_fir_interrupt(struct ali_ircc_cb *self);
127 static int ali_ircc_dma_receive(struct ali_ircc_cb *self);
128 static int ali_ircc_dma_receive_complete(struct ali_ircc_cb *self);
129 static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb *self);
130 static void ali_ircc_dma_xmit(struct ali_ircc_cb *self);
132 /* My Function */
133 static int ali_ircc_read_dongle_id (int i, chipio_t *info);
134 static void ali_ircc_change_dongle_speed(struct ali_ircc_cb *priv, int speed);
136 /* ALi chip function */
137 static void SIR2FIR(int iobase);
138 static void FIR2SIR(int iobase);
139 static void SetCOMInterrupts(struct ali_ircc_cb *self , unsigned char enable);
142 * Function ali_ircc_init ()
144 * Initialize chip. Find out whay kinds of chips we are dealing with
145 * and their configuration registers address
147 static int __init ali_ircc_init(void)
149 ali_chip_t *chip;
150 chipio_t info;
151 int ret;
152 int cfg, cfg_base;
153 int reg, revision;
154 int i = 0;
156 ret = platform_driver_register(&ali_ircc_driver);
157 if (ret) {
158 net_err_ratelimited("%s, Can't register driver!\n",
159 ALI_IRCC_DRIVER_NAME);
160 return ret;
163 ret = -ENODEV;
165 /* Probe for all the ALi chipsets we know about */
166 for (chip= chips; chip->name; chip++, i++)
168 pr_debug("%s(), Probing for %s ...\n", __func__, chip->name);
170 /* Try all config registers for this chip */
171 for (cfg=0; cfg<2; cfg++)
173 cfg_base = chip->cfg[cfg];
174 if (!cfg_base)
175 continue;
177 memset(&info, 0, sizeof(chipio_t));
178 info.cfg_base = cfg_base;
179 info.fir_base = io[i];
180 info.dma = dma[i];
181 info.irq = irq[i];
184 /* Enter Configuration */
185 outb(chip->entr1, cfg_base);
186 outb(chip->entr2, cfg_base);
188 /* Select Logical Device 5 Registers (UART2) */
189 outb(0x07, cfg_base);
190 outb(0x05, cfg_base+1);
192 /* Read Chip Identification Register */
193 outb(chip->cid_index, cfg_base);
194 reg = inb(cfg_base+1);
196 if (reg == chip->cid_value)
198 pr_debug("%s(), Chip found at 0x%03x\n",
199 __func__, cfg_base);
201 outb(0x1F, cfg_base);
202 revision = inb(cfg_base+1);
203 pr_debug("%s(), Found %s chip, revision=%d\n",
204 __func__, chip->name, revision);
207 * If the user supplies the base address, then
208 * we init the chip, if not we probe the values
209 * set by the BIOS
211 if (io[i] < 2000)
213 chip->init(chip, &info);
215 else
217 chip->probe(chip, &info);
220 if (ali_ircc_open(i, &info) == 0)
221 ret = 0;
222 i++;
224 else
226 pr_debug("%s(), No %s chip at 0x%03x\n",
227 __func__, chip->name, cfg_base);
229 /* Exit configuration */
230 outb(0xbb, cfg_base);
234 if (ret)
235 platform_driver_unregister(&ali_ircc_driver);
237 return ret;
241 * Function ali_ircc_cleanup ()
243 * Close all configured chips
246 static void __exit ali_ircc_cleanup(void)
248 int i;
250 for (i=0; i < ARRAY_SIZE(dev_self); i++) {
251 if (dev_self[i])
252 ali_ircc_close(dev_self[i]);
255 platform_driver_unregister(&ali_ircc_driver);
259 static const struct net_device_ops ali_ircc_sir_ops = {
260 .ndo_open = ali_ircc_net_open,
261 .ndo_stop = ali_ircc_net_close,
262 .ndo_start_xmit = ali_ircc_sir_hard_xmit,
263 .ndo_do_ioctl = ali_ircc_net_ioctl,
266 static const struct net_device_ops ali_ircc_fir_ops = {
267 .ndo_open = ali_ircc_net_open,
268 .ndo_stop = ali_ircc_net_close,
269 .ndo_start_xmit = ali_ircc_fir_hard_xmit,
270 .ndo_do_ioctl = ali_ircc_net_ioctl,
274 * Function ali_ircc_open (int i, chipio_t *inf)
276 * Open driver instance
279 static int ali_ircc_open(int i, chipio_t *info)
281 struct net_device *dev;
282 struct ali_ircc_cb *self;
283 int dongle_id;
284 int err;
286 if (i >= ARRAY_SIZE(dev_self)) {
287 net_err_ratelimited("%s(), maximum number of supported chips reached!\n",
288 __func__);
289 return -ENOMEM;
292 /* Set FIR FIFO and DMA Threshold */
293 if ((ali_ircc_setup(info)) == -1)
294 return -1;
296 dev = alloc_irdadev(sizeof(*self));
297 if (dev == NULL) {
298 net_err_ratelimited("%s(), can't allocate memory for control block!\n",
299 __func__);
300 return -ENOMEM;
303 self = netdev_priv(dev);
304 self->netdev = dev;
305 spin_lock_init(&self->lock);
307 /* Need to store self somewhere */
308 dev_self[i] = self;
309 self->index = i;
311 /* Initialize IO */
312 self->io.cfg_base = info->cfg_base; /* In ali_ircc_probe_53 assign */
313 self->io.fir_base = info->fir_base; /* info->sir_base = info->fir_base */
314 self->io.sir_base = info->sir_base; /* ALi SIR and FIR use the same address */
315 self->io.irq = info->irq;
316 self->io.fir_ext = CHIP_IO_EXTENT;
317 self->io.dma = info->dma;
318 self->io.fifo_size = 16; /* SIR: 16, FIR: 32 Benjamin 2000/11/1 */
320 /* Reserve the ioports that we need */
321 if (!request_region(self->io.fir_base, self->io.fir_ext,
322 ALI_IRCC_DRIVER_NAME)) {
323 net_warn_ratelimited("%s(), can't get iobase of 0x%03x\n",
324 __func__, self->io.fir_base);
325 err = -ENODEV;
326 goto err_out1;
329 /* Initialize QoS for this device */
330 irda_init_max_qos_capabilies(&self->qos);
332 /* The only value we must override it the baudrate */
333 self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
334 IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8); // benjamin 2000/11/8 05:27PM
336 self->qos.min_turn_time.bits = qos_mtt_bits;
338 irda_qos_bits_to_value(&self->qos);
340 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
341 self->rx_buff.truesize = 14384;
342 self->tx_buff.truesize = 14384;
344 /* Allocate memory if needed */
345 self->rx_buff.head =
346 dma_zalloc_coherent(NULL, self->rx_buff.truesize,
347 &self->rx_buff_dma, GFP_KERNEL);
348 if (self->rx_buff.head == NULL) {
349 err = -ENOMEM;
350 goto err_out2;
353 self->tx_buff.head =
354 dma_zalloc_coherent(NULL, self->tx_buff.truesize,
355 &self->tx_buff_dma, GFP_KERNEL);
356 if (self->tx_buff.head == NULL) {
357 err = -ENOMEM;
358 goto err_out3;
361 self->rx_buff.in_frame = FALSE;
362 self->rx_buff.state = OUTSIDE_FRAME;
363 self->tx_buff.data = self->tx_buff.head;
364 self->rx_buff.data = self->rx_buff.head;
366 /* Reset Tx queue info */
367 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
368 self->tx_fifo.tail = self->tx_buff.head;
370 /* Override the network functions we need to use */
371 dev->netdev_ops = &ali_ircc_sir_ops;
373 err = register_netdev(dev);
374 if (err) {
375 net_err_ratelimited("%s(), register_netdev() failed!\n",
376 __func__);
377 goto err_out4;
379 net_info_ratelimited("IrDA: Registered device %s\n", dev->name);
381 /* Check dongle id */
382 dongle_id = ali_ircc_read_dongle_id(i, info);
383 net_info_ratelimited("%s(), %s, Found dongle: %s\n",
384 __func__, ALI_IRCC_DRIVER_NAME,
385 dongle_types[dongle_id]);
387 self->io.dongle_id = dongle_id;
390 return 0;
392 err_out4:
393 dma_free_coherent(NULL, self->tx_buff.truesize,
394 self->tx_buff.head, self->tx_buff_dma);
395 err_out3:
396 dma_free_coherent(NULL, self->rx_buff.truesize,
397 self->rx_buff.head, self->rx_buff_dma);
398 err_out2:
399 release_region(self->io.fir_base, self->io.fir_ext);
400 err_out1:
401 dev_self[i] = NULL;
402 free_netdev(dev);
403 return err;
408 * Function ali_ircc_close (self)
410 * Close driver instance
413 static int __exit ali_ircc_close(struct ali_ircc_cb *self)
415 int iobase;
417 IRDA_ASSERT(self != NULL, return -1;);
419 iobase = self->io.fir_base;
421 /* Remove netdevice */
422 unregister_netdev(self->netdev);
424 /* Release the PORT that this driver is using */
425 pr_debug("%s(), Releasing Region %03x\n", __func__, self->io.fir_base);
426 release_region(self->io.fir_base, self->io.fir_ext);
428 if (self->tx_buff.head)
429 dma_free_coherent(NULL, self->tx_buff.truesize,
430 self->tx_buff.head, self->tx_buff_dma);
432 if (self->rx_buff.head)
433 dma_free_coherent(NULL, self->rx_buff.truesize,
434 self->rx_buff.head, self->rx_buff_dma);
436 dev_self[self->index] = NULL;
437 free_netdev(self->netdev);
440 return 0;
444 * Function ali_ircc_init_43 (chip, info)
446 * Initialize the ALi M1543 chip.
448 static int ali_ircc_init_43(ali_chip_t *chip, chipio_t *info)
450 /* All controller information like I/O address, DMA channel, IRQ
451 * are set by BIOS
454 return 0;
458 * Function ali_ircc_init_53 (chip, info)
460 * Initialize the ALi M1535 chip.
462 static int ali_ircc_init_53(ali_chip_t *chip, chipio_t *info)
464 /* All controller information like I/O address, DMA channel, IRQ
465 * are set by BIOS
468 return 0;
472 * Function ali_ircc_probe_53 (chip, info)
474 * Probes for the ALi M1535D or M1535
476 static int ali_ircc_probe_53(ali_chip_t *chip, chipio_t *info)
478 int cfg_base = info->cfg_base;
479 int hi, low, reg;
482 /* Enter Configuration */
483 outb(chip->entr1, cfg_base);
484 outb(chip->entr2, cfg_base);
486 /* Select Logical Device 5 Registers (UART2) */
487 outb(0x07, cfg_base);
488 outb(0x05, cfg_base+1);
490 /* Read address control register */
491 outb(0x60, cfg_base);
492 hi = inb(cfg_base+1);
493 outb(0x61, cfg_base);
494 low = inb(cfg_base+1);
495 info->fir_base = (hi<<8) + low;
497 info->sir_base = info->fir_base;
499 pr_debug("%s(), probing fir_base=0x%03x\n", __func__, info->fir_base);
501 /* Read IRQ control register */
502 outb(0x70, cfg_base);
503 reg = inb(cfg_base+1);
504 info->irq = reg & 0x0f;
505 pr_debug("%s(), probing irq=%d\n", __func__, info->irq);
507 /* Read DMA channel */
508 outb(0x74, cfg_base);
509 reg = inb(cfg_base+1);
510 info->dma = reg & 0x07;
512 if(info->dma == 0x04)
513 net_warn_ratelimited("%s(), No DMA channel assigned !\n",
514 __func__);
515 else
516 pr_debug("%s(), probing dma=%d\n", __func__, info->dma);
518 /* Read Enabled Status */
519 outb(0x30, cfg_base);
520 reg = inb(cfg_base+1);
521 info->enabled = (reg & 0x80) && (reg & 0x01);
522 pr_debug("%s(), probing enabled=%d\n", __func__, info->enabled);
524 /* Read Power Status */
525 outb(0x22, cfg_base);
526 reg = inb(cfg_base+1);
527 info->suspended = (reg & 0x20);
528 pr_debug("%s(), probing suspended=%d\n", __func__, info->suspended);
530 /* Exit configuration */
531 outb(0xbb, cfg_base);
534 return 0;
538 * Function ali_ircc_setup (info)
540 * Set FIR FIFO and DMA Threshold
541 * Returns non-negative on success.
544 static int ali_ircc_setup(chipio_t *info)
546 unsigned char tmp;
547 int version;
548 int iobase = info->fir_base;
551 /* Locking comments :
552 * Most operations here need to be protected. We are called before
553 * the device instance is created in ali_ircc_open(), therefore
554 * nobody can bother us - Jean II */
556 /* Switch to FIR space */
557 SIR2FIR(iobase);
559 /* Master Reset */
560 outb(0x40, iobase+FIR_MCR); // benjamin 2000/11/30 11:45AM
562 /* Read FIR ID Version Register */
563 switch_bank(iobase, BANK3);
564 version = inb(iobase+FIR_ID_VR);
566 /* Should be 0x00 in the M1535/M1535D */
567 if(version != 0x00)
569 net_err_ratelimited("%s, Wrong chip version %02x\n",
570 ALI_IRCC_DRIVER_NAME, version);
571 return -1;
574 /* Set FIR FIFO Threshold Register */
575 switch_bank(iobase, BANK1);
576 outb(RX_FIFO_Threshold, iobase+FIR_FIFO_TR);
578 /* Set FIR DMA Threshold Register */
579 outb(RX_DMA_Threshold, iobase+FIR_DMA_TR);
581 /* CRC enable */
582 switch_bank(iobase, BANK2);
583 outb(inb(iobase+FIR_IRDA_CR) | IRDA_CR_CRC, iobase+FIR_IRDA_CR);
585 /* NDIS driver set TX Length here BANK2 Alias 3, Alias4*/
587 /* Switch to Bank 0 */
588 switch_bank(iobase, BANK0);
590 tmp = inb(iobase+FIR_LCR_B);
591 tmp &=~0x20; // disable SIP
592 tmp |= 0x80; // these two steps make RX mode
593 tmp &= 0xbf;
594 outb(tmp, iobase+FIR_LCR_B);
596 /* Disable Interrupt */
597 outb(0x00, iobase+FIR_IER);
600 /* Switch to SIR space */
601 FIR2SIR(iobase);
603 net_info_ratelimited("%s, driver loaded (Benjamin Kong)\n",
604 ALI_IRCC_DRIVER_NAME);
606 /* Enable receive interrupts */
607 // outb(UART_IER_RDI, iobase+UART_IER); //benjamin 2000/11/23 01:25PM
608 // Turn on the interrupts in ali_ircc_net_open
611 return 0;
615 * Function ali_ircc_read_dongle_id (int index, info)
617 * Try to read dongle identification. This procedure needs to be executed
618 * once after power-on/reset. It also needs to be used whenever you suspect
619 * that the user may have plugged/unplugged the IrDA Dongle.
621 static int ali_ircc_read_dongle_id (int i, chipio_t *info)
623 int dongle_id, reg;
624 int cfg_base = info->cfg_base;
627 /* Enter Configuration */
628 outb(chips[i].entr1, cfg_base);
629 outb(chips[i].entr2, cfg_base);
631 /* Select Logical Device 5 Registers (UART2) */
632 outb(0x07, cfg_base);
633 outb(0x05, cfg_base+1);
635 /* Read Dongle ID */
636 outb(0xf0, cfg_base);
637 reg = inb(cfg_base+1);
638 dongle_id = ((reg>>6)&0x02) | ((reg>>5)&0x01);
639 pr_debug("%s(), probing dongle_id=%d, dongle_types=%s\n",
640 __func__, dongle_id, dongle_types[dongle_id]);
642 /* Exit configuration */
643 outb(0xbb, cfg_base);
646 return dongle_id;
650 * Function ali_ircc_interrupt (irq, dev_id, regs)
652 * An interrupt from the chip has arrived. Time to do some work
655 static irqreturn_t ali_ircc_interrupt(int irq, void *dev_id)
657 struct net_device *dev = dev_id;
658 struct ali_ircc_cb *self;
659 int ret;
662 self = netdev_priv(dev);
664 spin_lock(&self->lock);
666 /* Dispatch interrupt handler for the current speed */
667 if (self->io.speed > 115200)
668 ret = ali_ircc_fir_interrupt(self);
669 else
670 ret = ali_ircc_sir_interrupt(self);
672 spin_unlock(&self->lock);
674 return ret;
677 * Function ali_ircc_fir_interrupt(irq, struct ali_ircc_cb *self)
679 * Handle MIR/FIR interrupt
682 static irqreturn_t ali_ircc_fir_interrupt(struct ali_ircc_cb *self)
684 __u8 eir, OldMessageCount;
685 int iobase, tmp;
688 iobase = self->io.fir_base;
690 switch_bank(iobase, BANK0);
691 self->InterruptID = inb(iobase+FIR_IIR);
692 self->BusStatus = inb(iobase+FIR_BSR);
694 OldMessageCount = (self->LineStatus + 1) & 0x07;
695 self->LineStatus = inb(iobase+FIR_LSR);
696 //self->ier = inb(iobase+FIR_IER); 2000/12/1 04:32PM
697 eir = self->InterruptID & self->ier; /* Mask out the interesting ones */
699 pr_debug("%s(), self->InterruptID = %x\n", __func__, self->InterruptID);
700 pr_debug("%s(), self->LineStatus = %x\n", __func__, self->LineStatus);
701 pr_debug("%s(), self->ier = %x\n", __func__, self->ier);
702 pr_debug("%s(), eir = %x\n", __func__, eir);
704 /* Disable interrupts */
705 SetCOMInterrupts(self, FALSE);
707 /* Tx or Rx Interrupt */
709 if (eir & IIR_EOM)
711 if (self->io.direction == IO_XMIT) /* TX */
713 pr_debug("%s(), ******* IIR_EOM (Tx) *******\n",
714 __func__);
716 if(ali_ircc_dma_xmit_complete(self))
718 if (irda_device_txqueue_empty(self->netdev))
720 /* Prepare for receive */
721 ali_ircc_dma_receive(self);
722 self->ier = IER_EOM;
725 else
727 self->ier = IER_EOM;
731 else /* RX */
733 pr_debug("%s(), ******* IIR_EOM (Rx) *******\n",
734 __func__);
736 if(OldMessageCount > ((self->LineStatus+1) & 0x07))
738 self->rcvFramesOverflow = TRUE;
739 pr_debug("%s(), ******* self->rcvFramesOverflow = TRUE ********\n",
740 __func__);
743 if (ali_ircc_dma_receive_complete(self))
745 pr_debug("%s(), ******* receive complete ********\n",
746 __func__);
748 self->ier = IER_EOM;
750 else
752 pr_debug("%s(), ******* Not receive complete ********\n",
753 __func__);
755 self->ier = IER_EOM | IER_TIMER;
760 /* Timer Interrupt */
761 else if (eir & IIR_TIMER)
763 if(OldMessageCount > ((self->LineStatus+1) & 0x07))
765 self->rcvFramesOverflow = TRUE;
766 pr_debug("%s(), ******* self->rcvFramesOverflow = TRUE *******\n",
767 __func__);
769 /* Disable Timer */
770 switch_bank(iobase, BANK1);
771 tmp = inb(iobase+FIR_CR);
772 outb( tmp& ~CR_TIMER_EN, iobase+FIR_CR);
774 /* Check if this is a Tx timer interrupt */
775 if (self->io.direction == IO_XMIT)
777 ali_ircc_dma_xmit(self);
779 /* Interrupt on EOM */
780 self->ier = IER_EOM;
783 else /* Rx */
785 if(ali_ircc_dma_receive_complete(self))
787 self->ier = IER_EOM;
789 else
791 self->ier = IER_EOM | IER_TIMER;
796 /* Restore Interrupt */
797 SetCOMInterrupts(self, TRUE);
799 return IRQ_RETVAL(eir);
803 * Function ali_ircc_sir_interrupt (irq, self, eir)
805 * Handle SIR interrupt
808 static irqreturn_t ali_ircc_sir_interrupt(struct ali_ircc_cb *self)
810 int iobase;
811 int iir, lsr;
814 iobase = self->io.sir_base;
816 iir = inb(iobase+UART_IIR) & UART_IIR_ID;
817 if (iir) {
818 /* Clear interrupt */
819 lsr = inb(iobase+UART_LSR);
821 pr_debug("%s(), iir=%02x, lsr=%02x, iobase=%#x\n",
822 __func__, iir, lsr, iobase);
824 switch (iir)
826 case UART_IIR_RLSI:
827 pr_debug("%s(), RLSI\n", __func__);
828 break;
829 case UART_IIR_RDI:
830 /* Receive interrupt */
831 ali_ircc_sir_receive(self);
832 break;
833 case UART_IIR_THRI:
834 if (lsr & UART_LSR_THRE)
836 /* Transmitter ready for data */
837 ali_ircc_sir_write_wakeup(self);
839 break;
840 default:
841 pr_debug("%s(), unhandled IIR=%#x\n",
842 __func__, iir);
843 break;
849 return IRQ_RETVAL(iir);
854 * Function ali_ircc_sir_receive (self)
856 * Receive one frame from the infrared port
859 static void ali_ircc_sir_receive(struct ali_ircc_cb *self)
861 int boguscount = 0;
862 int iobase;
864 IRDA_ASSERT(self != NULL, return;);
866 iobase = self->io.sir_base;
869 * Receive all characters in Rx FIFO, unwrap and unstuff them.
870 * async_unwrap_char will deliver all found frames
872 do {
873 async_unwrap_char(self->netdev, &self->netdev->stats, &self->rx_buff,
874 inb(iobase+UART_RX));
876 /* Make sure we don't stay here too long */
877 if (boguscount++ > 32) {
878 pr_debug("%s(), breaking!\n", __func__);
879 break;
881 } while (inb(iobase+UART_LSR) & UART_LSR_DR);
886 * Function ali_ircc_sir_write_wakeup (tty)
888 * Called by the driver when there's room for more data. If we have
889 * more packets to send, we send them here.
892 static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb *self)
894 int actual = 0;
895 int iobase;
897 IRDA_ASSERT(self != NULL, return;);
900 iobase = self->io.sir_base;
902 /* Finished with frame? */
903 if (self->tx_buff.len > 0)
905 /* Write data left in transmit buffer */
906 actual = ali_ircc_sir_write(iobase, self->io.fifo_size,
907 self->tx_buff.data, self->tx_buff.len);
908 self->tx_buff.data += actual;
909 self->tx_buff.len -= actual;
911 else
913 if (self->new_speed)
915 /* We must wait until all data are gone */
916 while(!(inb(iobase+UART_LSR) & UART_LSR_TEMT))
917 pr_debug("%s(), UART_LSR_THRE\n", __func__);
919 pr_debug("%s(), Changing speed! self->new_speed = %d\n",
920 __func__, self->new_speed);
921 ali_ircc_change_speed(self, self->new_speed);
922 self->new_speed = 0;
924 // benjamin 2000/11/10 06:32PM
925 if (self->io.speed > 115200)
927 pr_debug("%s(), ali_ircc_change_speed from UART_LSR_TEMT\n",
928 __func__);
930 self->ier = IER_EOM;
931 // SetCOMInterrupts(self, TRUE);
932 return;
935 else
937 netif_wake_queue(self->netdev);
940 self->netdev->stats.tx_packets++;
942 /* Turn on receive interrupts */
943 outb(UART_IER_RDI, iobase+UART_IER);
948 static void ali_ircc_change_speed(struct ali_ircc_cb *self, __u32 baud)
950 struct net_device *dev = self->netdev;
951 int iobase;
954 pr_debug("%s(), setting speed = %d\n", __func__, baud);
956 /* This function *must* be called with irq off and spin-lock.
957 * - Jean II */
959 iobase = self->io.fir_base;
961 SetCOMInterrupts(self, FALSE); // 2000/11/24 11:43AM
963 /* Go to MIR, FIR Speed */
964 if (baud > 115200)
968 ali_ircc_fir_change_speed(self, baud);
970 /* Install FIR xmit handler*/
971 dev->netdev_ops = &ali_ircc_fir_ops;
973 /* Enable Interuupt */
974 self->ier = IER_EOM; // benjamin 2000/11/20 07:24PM
976 /* Be ready for incoming frames */
977 ali_ircc_dma_receive(self); // benajmin 2000/11/8 07:46PM not complete
979 /* Go to SIR Speed */
980 else
982 ali_ircc_sir_change_speed(self, baud);
984 /* Install SIR xmit handler*/
985 dev->netdev_ops = &ali_ircc_sir_ops;
989 SetCOMInterrupts(self, TRUE); // 2000/11/24 11:43AM
991 netif_wake_queue(self->netdev);
995 static void ali_ircc_fir_change_speed(struct ali_ircc_cb *priv, __u32 baud)
998 int iobase;
999 struct ali_ircc_cb *self = priv;
1000 struct net_device *dev;
1003 IRDA_ASSERT(self != NULL, return;);
1005 dev = self->netdev;
1006 iobase = self->io.fir_base;
1008 pr_debug("%s(), self->io.speed = %d, change to speed = %d\n",
1009 __func__, self->io.speed, baud);
1011 /* Come from SIR speed */
1012 if(self->io.speed <=115200)
1014 SIR2FIR(iobase);
1017 /* Update accounting for new speed */
1018 self->io.speed = baud;
1020 // Set Dongle Speed mode
1021 ali_ircc_change_dongle_speed(self, baud);
1026 * Function ali_sir_change_speed (self, speed)
1028 * Set speed of IrDA port to specified baudrate
1031 static void ali_ircc_sir_change_speed(struct ali_ircc_cb *priv, __u32 speed)
1033 struct ali_ircc_cb *self = priv;
1034 int iobase;
1035 int fcr; /* FIFO control reg */
1036 int lcr; /* Line control reg */
1037 int divisor;
1040 pr_debug("%s(), Setting speed to: %d\n", __func__, speed);
1042 IRDA_ASSERT(self != NULL, return;);
1044 iobase = self->io.sir_base;
1046 /* Come from MIR or FIR speed */
1047 if(self->io.speed >115200)
1049 // Set Dongle Speed mode first
1050 ali_ircc_change_dongle_speed(self, speed);
1052 FIR2SIR(iobase);
1055 // Clear Line and Auxiluary status registers 2000/11/24 11:47AM
1057 inb(iobase+UART_LSR);
1058 inb(iobase+UART_SCR);
1060 /* Update accounting for new speed */
1061 self->io.speed = speed;
1063 divisor = 115200/speed;
1065 fcr = UART_FCR_ENABLE_FIFO;
1068 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
1069 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
1070 * about this timeout since it will always be fast enough.
1072 if (self->io.speed < 38400)
1073 fcr |= UART_FCR_TRIGGER_1;
1074 else
1075 fcr |= UART_FCR_TRIGGER_14;
1077 /* IrDA ports use 8N1 */
1078 lcr = UART_LCR_WLEN8;
1080 outb(UART_LCR_DLAB | lcr, iobase+UART_LCR); /* Set DLAB */
1081 outb(divisor & 0xff, iobase+UART_DLL); /* Set speed */
1082 outb(divisor >> 8, iobase+UART_DLM);
1083 outb(lcr, iobase+UART_LCR); /* Set 8N1 */
1084 outb(fcr, iobase+UART_FCR); /* Enable FIFO's */
1086 /* without this, the connection will be broken after come back from FIR speed,
1087 but with this, the SIR connection is harder to established */
1088 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase+UART_MCR);
1091 static void ali_ircc_change_dongle_speed(struct ali_ircc_cb *priv, int speed)
1094 struct ali_ircc_cb *self = priv;
1095 int iobase,dongle_id;
1096 int tmp = 0;
1099 iobase = self->io.fir_base; /* or iobase = self->io.sir_base; */
1100 dongle_id = self->io.dongle_id;
1102 /* We are already locked, no need to do it again */
1104 pr_debug("%s(), Set Speed for %s , Speed = %d\n",
1105 __func__, dongle_types[dongle_id], speed);
1107 switch_bank(iobase, BANK2);
1108 tmp = inb(iobase+FIR_IRDA_CR);
1110 /* IBM type dongle */
1111 if(dongle_id == 0)
1113 if(speed == 4000000)
1115 // __ __
1116 // SD/MODE __| |__ __
1117 // __ __
1118 // IRTX __ __| |__
1119 // T1 T2 T3 T4 T5
1121 tmp &= ~IRDA_CR_HDLC; // HDLC=0
1122 tmp |= IRDA_CR_CRC; // CRC=1
1124 switch_bank(iobase, BANK2);
1125 outb(tmp, iobase+FIR_IRDA_CR);
1127 // T1 -> SD/MODE:0 IRTX:0
1128 tmp &= ~0x09;
1129 tmp |= 0x02;
1130 outb(tmp, iobase+FIR_IRDA_CR);
1131 udelay(2);
1133 // T2 -> SD/MODE:1 IRTX:0
1134 tmp &= ~0x01;
1135 tmp |= 0x0a;
1136 outb(tmp, iobase+FIR_IRDA_CR);
1137 udelay(2);
1139 // T3 -> SD/MODE:1 IRTX:1
1140 tmp |= 0x0b;
1141 outb(tmp, iobase+FIR_IRDA_CR);
1142 udelay(2);
1144 // T4 -> SD/MODE:0 IRTX:1
1145 tmp &= ~0x08;
1146 tmp |= 0x03;
1147 outb(tmp, iobase+FIR_IRDA_CR);
1148 udelay(2);
1150 // T5 -> SD/MODE:0 IRTX:0
1151 tmp &= ~0x09;
1152 tmp |= 0x02;
1153 outb(tmp, iobase+FIR_IRDA_CR);
1154 udelay(2);
1156 // reset -> Normal TX output Signal
1157 outb(tmp & ~0x02, iobase+FIR_IRDA_CR);
1159 else /* speed <=1152000 */
1161 // __
1162 // SD/MODE __| |__
1164 // IRTX ________
1165 // T1 T2 T3
1167 /* MIR 115200, 57600 */
1168 if (speed==1152000)
1170 tmp |= 0xA0; //HDLC=1, 1.152Mbps=1
1172 else
1174 tmp &=~0x80; //HDLC 0.576Mbps
1175 tmp |= 0x20; //HDLC=1,
1178 tmp |= IRDA_CR_CRC; // CRC=1
1180 switch_bank(iobase, BANK2);
1181 outb(tmp, iobase+FIR_IRDA_CR);
1183 /* MIR 115200, 57600 */
1185 //switch_bank(iobase, BANK2);
1186 // T1 -> SD/MODE:0 IRTX:0
1187 tmp &= ~0x09;
1188 tmp |= 0x02;
1189 outb(tmp, iobase+FIR_IRDA_CR);
1190 udelay(2);
1192 // T2 -> SD/MODE:1 IRTX:0
1193 tmp &= ~0x01;
1194 tmp |= 0x0a;
1195 outb(tmp, iobase+FIR_IRDA_CR);
1197 // T3 -> SD/MODE:0 IRTX:0
1198 tmp &= ~0x09;
1199 tmp |= 0x02;
1200 outb(tmp, iobase+FIR_IRDA_CR);
1201 udelay(2);
1203 // reset -> Normal TX output Signal
1204 outb(tmp & ~0x02, iobase+FIR_IRDA_CR);
1207 else if (dongle_id == 1) /* HP HDSL-3600 */
1209 switch(speed)
1211 case 4000000:
1212 tmp &= ~IRDA_CR_HDLC; // HDLC=0
1213 break;
1215 case 1152000:
1216 tmp |= 0xA0; // HDLC=1, 1.152Mbps=1
1217 break;
1219 case 576000:
1220 tmp &=~0x80; // HDLC 0.576Mbps
1221 tmp |= 0x20; // HDLC=1,
1222 break;
1225 tmp |= IRDA_CR_CRC; // CRC=1
1227 switch_bank(iobase, BANK2);
1228 outb(tmp, iobase+FIR_IRDA_CR);
1230 else /* HP HDSL-1100 */
1232 if(speed <= 115200) /* SIR */
1235 tmp &= ~IRDA_CR_FIR_SIN; // HP sin select = 0
1237 switch_bank(iobase, BANK2);
1238 outb(tmp, iobase+FIR_IRDA_CR);
1240 else /* MIR FIR */
1243 switch(speed)
1245 case 4000000:
1246 tmp &= ~IRDA_CR_HDLC; // HDLC=0
1247 break;
1249 case 1152000:
1250 tmp |= 0xA0; // HDLC=1, 1.152Mbps=1
1251 break;
1253 case 576000:
1254 tmp &=~0x80; // HDLC 0.576Mbps
1255 tmp |= 0x20; // HDLC=1,
1256 break;
1259 tmp |= IRDA_CR_CRC; // CRC=1
1260 tmp |= IRDA_CR_FIR_SIN; // HP sin select = 1
1262 switch_bank(iobase, BANK2);
1263 outb(tmp, iobase+FIR_IRDA_CR);
1267 switch_bank(iobase, BANK0);
1272 * Function ali_ircc_sir_write (driver)
1274 * Fill Tx FIFO with transmit data
1277 static int ali_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
1279 int actual = 0;
1282 /* Tx FIFO should be empty! */
1283 if (!(inb(iobase+UART_LSR) & UART_LSR_THRE)) {
1284 pr_debug("%s(), failed, fifo not empty!\n", __func__);
1285 return 0;
1288 /* Fill FIFO with current frame */
1289 while ((fifo_size-- > 0) && (actual < len)) {
1290 /* Transmit next byte */
1291 outb(buf[actual], iobase+UART_TX);
1293 actual++;
1296 return actual;
1300 * Function ali_ircc_net_open (dev)
1302 * Start the device
1305 static int ali_ircc_net_open(struct net_device *dev)
1307 struct ali_ircc_cb *self;
1308 int iobase;
1309 char hwname[32];
1312 IRDA_ASSERT(dev != NULL, return -1;);
1314 self = netdev_priv(dev);
1316 IRDA_ASSERT(self != NULL, return 0;);
1318 iobase = self->io.fir_base;
1320 /* Request IRQ and install Interrupt Handler */
1321 if (request_irq(self->io.irq, ali_ircc_interrupt, 0, dev->name, dev))
1323 net_warn_ratelimited("%s, unable to allocate irq=%d\n",
1324 ALI_IRCC_DRIVER_NAME, self->io.irq);
1325 return -EAGAIN;
1329 * Always allocate the DMA channel after the IRQ, and clean up on
1330 * failure.
1332 if (request_dma(self->io.dma, dev->name)) {
1333 net_warn_ratelimited("%s, unable to allocate dma=%d\n",
1334 ALI_IRCC_DRIVER_NAME, self->io.dma);
1335 free_irq(self->io.irq, dev);
1336 return -EAGAIN;
1339 /* Turn on interrups */
1340 outb(UART_IER_RDI , iobase+UART_IER);
1342 /* Ready to play! */
1343 netif_start_queue(dev); //benjamin by irport
1345 /* Give self a hardware name */
1346 sprintf(hwname, "ALI-FIR @ 0x%03x", self->io.fir_base);
1349 * Open new IrLAP layer instance, now that everything should be
1350 * initialized properly
1352 self->irlap = irlap_open(dev, &self->qos, hwname);
1355 return 0;
1359 * Function ali_ircc_net_close (dev)
1361 * Stop the device
1364 static int ali_ircc_net_close(struct net_device *dev)
1367 struct ali_ircc_cb *self;
1368 //int iobase;
1371 IRDA_ASSERT(dev != NULL, return -1;);
1373 self = netdev_priv(dev);
1374 IRDA_ASSERT(self != NULL, return 0;);
1376 /* Stop device */
1377 netif_stop_queue(dev);
1379 /* Stop and remove instance of IrLAP */
1380 if (self->irlap)
1381 irlap_close(self->irlap);
1382 self->irlap = NULL;
1384 disable_dma(self->io.dma);
1386 /* Disable interrupts */
1387 SetCOMInterrupts(self, FALSE);
1389 free_irq(self->io.irq, dev);
1390 free_dma(self->io.dma);
1393 return 0;
1397 * Function ali_ircc_fir_hard_xmit (skb, dev)
1399 * Transmit the frame
1402 static netdev_tx_t ali_ircc_fir_hard_xmit(struct sk_buff *skb,
1403 struct net_device *dev)
1405 struct ali_ircc_cb *self;
1406 unsigned long flags;
1407 int iobase;
1408 __u32 speed;
1409 int mtt, diff;
1412 self = netdev_priv(dev);
1413 iobase = self->io.fir_base;
1415 netif_stop_queue(dev);
1417 /* Make sure tests *& speed change are atomic */
1418 spin_lock_irqsave(&self->lock, flags);
1420 /* Note : you should make sure that speed changes are not going
1421 * to corrupt any outgoing frame. Look at nsc-ircc for the gory
1422 * details - Jean II */
1424 /* Check if we need to change the speed */
1425 speed = irda_get_next_speed(skb);
1426 if ((speed != self->io.speed) && (speed != -1)) {
1427 /* Check for empty frame */
1428 if (!skb->len) {
1429 ali_ircc_change_speed(self, speed);
1430 netif_trans_update(dev);
1431 spin_unlock_irqrestore(&self->lock, flags);
1432 dev_kfree_skb(skb);
1433 return NETDEV_TX_OK;
1434 } else
1435 self->new_speed = speed;
1438 /* Register and copy this frame to DMA memory */
1439 self->tx_fifo.queue[self->tx_fifo.free].start = self->tx_fifo.tail;
1440 self->tx_fifo.queue[self->tx_fifo.free].len = skb->len;
1441 self->tx_fifo.tail += skb->len;
1443 dev->stats.tx_bytes += skb->len;
1445 skb_copy_from_linear_data(skb, self->tx_fifo.queue[self->tx_fifo.free].start,
1446 skb->len);
1447 self->tx_fifo.len++;
1448 self->tx_fifo.free++;
1450 /* Start transmit only if there is currently no transmit going on */
1451 if (self->tx_fifo.len == 1)
1453 /* Check if we must wait the min turn time or not */
1454 mtt = irda_get_mtt(skb);
1456 if (mtt)
1458 /* Check how much time we have used already */
1459 diff = ktime_us_delta(ktime_get(), self->stamp);
1460 /* self->stamp is set from ali_ircc_dma_receive_complete() */
1462 pr_debug("%s(), ******* diff = %d *******\n",
1463 __func__, diff);
1465 /* Check if the mtt is larger than the time we have
1466 * already used by all the protocol processing
1468 if (mtt > diff)
1470 mtt -= diff;
1473 * Use timer if delay larger than 1000 us, and
1474 * use udelay for smaller values which should
1475 * be acceptable
1477 if (mtt > 500)
1479 /* Adjust for timer resolution */
1480 mtt = (mtt+250) / 500; /* 4 discard, 5 get advanced, Let's round off */
1482 pr_debug("%s(), ************** mtt = %d ***********\n",
1483 __func__, mtt);
1485 /* Setup timer */
1486 if (mtt == 1) /* 500 us */
1488 switch_bank(iobase, BANK1);
1489 outb(TIMER_IIR_500, iobase+FIR_TIMER_IIR);
1491 else if (mtt == 2) /* 1 ms */
1493 switch_bank(iobase, BANK1);
1494 outb(TIMER_IIR_1ms, iobase+FIR_TIMER_IIR);
1496 else /* > 2ms -> 4ms */
1498 switch_bank(iobase, BANK1);
1499 outb(TIMER_IIR_2ms, iobase+FIR_TIMER_IIR);
1503 /* Start timer */
1504 outb(inb(iobase+FIR_CR) | CR_TIMER_EN, iobase+FIR_CR);
1505 self->io.direction = IO_XMIT;
1507 /* Enable timer interrupt */
1508 self->ier = IER_TIMER;
1509 SetCOMInterrupts(self, TRUE);
1511 /* Timer will take care of the rest */
1512 goto out;
1514 else
1515 udelay(mtt);
1516 } // if (if (mtt > diff)
1517 }// if (mtt)
1519 /* Enable EOM interrupt */
1520 self->ier = IER_EOM;
1521 SetCOMInterrupts(self, TRUE);
1523 /* Transmit frame */
1524 ali_ircc_dma_xmit(self);
1525 } // if (self->tx_fifo.len == 1)
1527 out:
1529 /* Not busy transmitting anymore if window is not full */
1530 if (self->tx_fifo.free < MAX_TX_WINDOW)
1531 netif_wake_queue(self->netdev);
1533 /* Restore bank register */
1534 switch_bank(iobase, BANK0);
1536 netif_trans_update(dev);
1537 spin_unlock_irqrestore(&self->lock, flags);
1538 dev_kfree_skb(skb);
1540 return NETDEV_TX_OK;
1544 static void ali_ircc_dma_xmit(struct ali_ircc_cb *self)
1546 int iobase, tmp;
1547 unsigned char FIFO_OPTI, Hi, Lo;
1551 iobase = self->io.fir_base;
1553 /* FIFO threshold , this method comes from NDIS5 code */
1555 if(self->tx_fifo.queue[self->tx_fifo.ptr].len < TX_FIFO_Threshold)
1556 FIFO_OPTI = self->tx_fifo.queue[self->tx_fifo.ptr].len-1;
1557 else
1558 FIFO_OPTI = TX_FIFO_Threshold;
1560 /* Disable DMA */
1561 switch_bank(iobase, BANK1);
1562 outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
1564 self->io.direction = IO_XMIT;
1566 irda_setup_dma(self->io.dma,
1567 ((u8 *)self->tx_fifo.queue[self->tx_fifo.ptr].start -
1568 self->tx_buff.head) + self->tx_buff_dma,
1569 self->tx_fifo.queue[self->tx_fifo.ptr].len,
1570 DMA_TX_MODE);
1572 /* Reset Tx FIFO */
1573 switch_bank(iobase, BANK0);
1574 outb(LCR_A_FIFO_RESET, iobase+FIR_LCR_A);
1576 /* Set Tx FIFO threshold */
1577 if (self->fifo_opti_buf!=FIFO_OPTI)
1579 switch_bank(iobase, BANK1);
1580 outb(FIFO_OPTI, iobase+FIR_FIFO_TR) ;
1581 self->fifo_opti_buf=FIFO_OPTI;
1584 /* Set Tx DMA threshold */
1585 switch_bank(iobase, BANK1);
1586 outb(TX_DMA_Threshold, iobase+FIR_DMA_TR);
1588 /* Set max Tx frame size */
1589 Hi = (self->tx_fifo.queue[self->tx_fifo.ptr].len >> 8) & 0x0f;
1590 Lo = self->tx_fifo.queue[self->tx_fifo.ptr].len & 0xff;
1591 switch_bank(iobase, BANK2);
1592 outb(Hi, iobase+FIR_TX_DSR_HI);
1593 outb(Lo, iobase+FIR_TX_DSR_LO);
1595 /* Disable SIP , Disable Brick Wall (we don't support in TX mode), Change to TX mode */
1596 switch_bank(iobase, BANK0);
1597 tmp = inb(iobase+FIR_LCR_B);
1598 tmp &= ~0x20; // Disable SIP
1599 outb(((unsigned char)(tmp & 0x3f) | LCR_B_TX_MODE) & ~LCR_B_BW, iobase+FIR_LCR_B);
1600 pr_debug("%s(), *** Change to TX mode: FIR_LCR_B = 0x%x ***\n",
1601 __func__, inb(iobase + FIR_LCR_B));
1603 outb(0, iobase+FIR_LSR);
1605 /* Enable DMA and Burst Mode */
1606 switch_bank(iobase, BANK1);
1607 outb(inb(iobase+FIR_CR) | CR_DMA_EN | CR_DMA_BURST, iobase+FIR_CR);
1609 switch_bank(iobase, BANK0);
1613 static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb *self)
1615 int iobase;
1616 int ret = TRUE;
1619 iobase = self->io.fir_base;
1621 /* Disable DMA */
1622 switch_bank(iobase, BANK1);
1623 outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
1625 /* Check for underrun! */
1626 switch_bank(iobase, BANK0);
1627 if((inb(iobase+FIR_LSR) & LSR_FRAME_ABORT) == LSR_FRAME_ABORT)
1630 net_err_ratelimited("%s(), ********* LSR_FRAME_ABORT *********\n",
1631 __func__);
1632 self->netdev->stats.tx_errors++;
1633 self->netdev->stats.tx_fifo_errors++;
1635 else
1637 self->netdev->stats.tx_packets++;
1640 /* Check if we need to change the speed */
1641 if (self->new_speed)
1643 ali_ircc_change_speed(self, self->new_speed);
1644 self->new_speed = 0;
1647 /* Finished with this frame, so prepare for next */
1648 self->tx_fifo.ptr++;
1649 self->tx_fifo.len--;
1651 /* Any frames to be sent back-to-back? */
1652 if (self->tx_fifo.len)
1654 ali_ircc_dma_xmit(self);
1656 /* Not finished yet! */
1657 ret = FALSE;
1659 else
1660 { /* Reset Tx FIFO info */
1661 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
1662 self->tx_fifo.tail = self->tx_buff.head;
1665 /* Make sure we have room for more frames */
1666 if (self->tx_fifo.free < MAX_TX_WINDOW) {
1667 /* Not busy transmitting anymore */
1668 /* Tell the network layer, that we can accept more frames */
1669 netif_wake_queue(self->netdev);
1672 switch_bank(iobase, BANK0);
1674 return ret;
1678 * Function ali_ircc_dma_receive (self)
1680 * Get ready for receiving a frame. The device will initiate a DMA
1681 * if it starts to receive a frame.
1684 static int ali_ircc_dma_receive(struct ali_ircc_cb *self)
1686 int iobase, tmp;
1689 iobase = self->io.fir_base;
1691 /* Reset Tx FIFO info */
1692 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
1693 self->tx_fifo.tail = self->tx_buff.head;
1695 /* Disable DMA */
1696 switch_bank(iobase, BANK1);
1697 outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
1699 /* Reset Message Count */
1700 switch_bank(iobase, BANK0);
1701 outb(0x07, iobase+FIR_LSR);
1703 self->rcvFramesOverflow = FALSE;
1705 self->LineStatus = inb(iobase+FIR_LSR) ;
1707 /* Reset Rx FIFO info */
1708 self->io.direction = IO_RECV;
1709 self->rx_buff.data = self->rx_buff.head;
1711 /* Reset Rx FIFO */
1712 // switch_bank(iobase, BANK0);
1713 outb(LCR_A_FIFO_RESET, iobase+FIR_LCR_A);
1715 self->st_fifo.len = self->st_fifo.pending_bytes = 0;
1716 self->st_fifo.tail = self->st_fifo.head = 0;
1718 irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
1719 DMA_RX_MODE);
1721 /* Set Receive Mode,Brick Wall */
1722 //switch_bank(iobase, BANK0);
1723 tmp = inb(iobase+FIR_LCR_B);
1724 outb((unsigned char)(tmp &0x3f) | LCR_B_RX_MODE | LCR_B_BW , iobase + FIR_LCR_B); // 2000/12/1 05:16PM
1725 pr_debug("%s(), *** Change To RX mode: FIR_LCR_B = 0x%x ***\n",
1726 __func__, inb(iobase + FIR_LCR_B));
1728 /* Set Rx Threshold */
1729 switch_bank(iobase, BANK1);
1730 outb(RX_FIFO_Threshold, iobase+FIR_FIFO_TR);
1731 outb(RX_DMA_Threshold, iobase+FIR_DMA_TR);
1733 /* Enable DMA and Burst Mode */
1734 // switch_bank(iobase, BANK1);
1735 outb(CR_DMA_EN | CR_DMA_BURST, iobase+FIR_CR);
1737 switch_bank(iobase, BANK0);
1738 return 0;
1741 static int ali_ircc_dma_receive_complete(struct ali_ircc_cb *self)
1743 struct st_fifo *st_fifo;
1744 struct sk_buff *skb;
1745 __u8 status, MessageCount;
1746 int len, i, iobase, val;
1748 st_fifo = &self->st_fifo;
1749 iobase = self->io.fir_base;
1751 switch_bank(iobase, BANK0);
1752 MessageCount = inb(iobase+ FIR_LSR)&0x07;
1754 if (MessageCount > 0)
1755 pr_debug("%s(), Message count = %d\n", __func__, MessageCount);
1757 for (i=0; i<=MessageCount; i++)
1759 /* Bank 0 */
1760 switch_bank(iobase, BANK0);
1761 status = inb(iobase+FIR_LSR);
1763 switch_bank(iobase, BANK2);
1764 len = inb(iobase+FIR_RX_DSR_HI) & 0x0f;
1765 len = len << 8;
1766 len |= inb(iobase+FIR_RX_DSR_LO);
1768 pr_debug("%s(), RX Length = 0x%.2x,\n", __func__ , len);
1769 pr_debug("%s(), RX Status = 0x%.2x,\n", __func__ , status);
1771 if (st_fifo->tail >= MAX_RX_WINDOW) {
1772 pr_debug("%s(), window is full!\n", __func__);
1773 continue;
1776 st_fifo->entries[st_fifo->tail].status = status;
1777 st_fifo->entries[st_fifo->tail].len = len;
1778 st_fifo->pending_bytes += len;
1779 st_fifo->tail++;
1780 st_fifo->len++;
1783 for (i=0; i<=MessageCount; i++)
1785 /* Get first entry */
1786 status = st_fifo->entries[st_fifo->head].status;
1787 len = st_fifo->entries[st_fifo->head].len;
1788 st_fifo->pending_bytes -= len;
1789 st_fifo->head++;
1790 st_fifo->len--;
1792 /* Check for errors */
1793 if ((status & 0xd8) || self->rcvFramesOverflow || (len==0))
1795 pr_debug("%s(), ************* RX Errors ************\n",
1796 __func__);
1798 /* Skip frame */
1799 self->netdev->stats.rx_errors++;
1801 self->rx_buff.data += len;
1803 if (status & LSR_FIFO_UR)
1805 self->netdev->stats.rx_frame_errors++;
1806 pr_debug("%s(), ************* FIFO Errors ************\n",
1807 __func__);
1809 if (status & LSR_FRAME_ERROR)
1811 self->netdev->stats.rx_frame_errors++;
1812 pr_debug("%s(), ************* FRAME Errors ************\n",
1813 __func__);
1816 if (status & LSR_CRC_ERROR)
1818 self->netdev->stats.rx_crc_errors++;
1819 pr_debug("%s(), ************* CRC Errors ************\n",
1820 __func__);
1823 if(self->rcvFramesOverflow)
1825 self->netdev->stats.rx_frame_errors++;
1826 pr_debug("%s(), ************* Overran DMA buffer ************\n",
1827 __func__);
1829 if(len == 0)
1831 self->netdev->stats.rx_frame_errors++;
1832 pr_debug("%s(), ********** Receive Frame Size = 0 *********\n",
1833 __func__);
1836 else
1839 if (st_fifo->pending_bytes < 32)
1841 switch_bank(iobase, BANK0);
1842 val = inb(iobase+FIR_BSR);
1843 if ((val& BSR_FIFO_NOT_EMPTY)== 0x80)
1845 pr_debug("%s(), ************* BSR_FIFO_NOT_EMPTY ************\n",
1846 __func__);
1848 /* Put this entry back in fifo */
1849 st_fifo->head--;
1850 st_fifo->len++;
1851 st_fifo->pending_bytes += len;
1852 st_fifo->entries[st_fifo->head].status = status;
1853 st_fifo->entries[st_fifo->head].len = len;
1856 * DMA not finished yet, so try again
1857 * later, set timer value, resolution
1858 * 500 us
1861 switch_bank(iobase, BANK1);
1862 outb(TIMER_IIR_500, iobase+FIR_TIMER_IIR); // 2001/1/2 05:07PM
1864 /* Enable Timer */
1865 outb(inb(iobase+FIR_CR) | CR_TIMER_EN, iobase+FIR_CR);
1867 return FALSE; /* I'll be back! */
1872 * Remember the time we received this frame, so we can
1873 * reduce the min turn time a bit since we will know
1874 * how much time we have used for protocol processing
1876 self->stamp = ktime_get();
1878 skb = dev_alloc_skb(len+1);
1879 if (skb == NULL)
1881 self->netdev->stats.rx_dropped++;
1883 return FALSE;
1886 /* Make sure IP header gets aligned */
1887 skb_reserve(skb, 1);
1889 /* Copy frame without CRC, CRC is removed by hardware*/
1890 skb_put(skb, len);
1891 skb_copy_to_linear_data(skb, self->rx_buff.data, len);
1893 /* Move to next frame */
1894 self->rx_buff.data += len;
1895 self->netdev->stats.rx_bytes += len;
1896 self->netdev->stats.rx_packets++;
1898 skb->dev = self->netdev;
1899 skb_reset_mac_header(skb);
1900 skb->protocol = htons(ETH_P_IRDA);
1901 netif_rx(skb);
1905 switch_bank(iobase, BANK0);
1907 return TRUE;
1913 * Function ali_ircc_sir_hard_xmit (skb, dev)
1915 * Transmit the frame!
1918 static netdev_tx_t ali_ircc_sir_hard_xmit(struct sk_buff *skb,
1919 struct net_device *dev)
1921 struct ali_ircc_cb *self;
1922 unsigned long flags;
1923 int iobase;
1924 __u32 speed;
1927 IRDA_ASSERT(dev != NULL, return NETDEV_TX_OK;);
1929 self = netdev_priv(dev);
1930 IRDA_ASSERT(self != NULL, return NETDEV_TX_OK;);
1932 iobase = self->io.sir_base;
1934 netif_stop_queue(dev);
1936 /* Make sure tests *& speed change are atomic */
1937 spin_lock_irqsave(&self->lock, flags);
1939 /* Note : you should make sure that speed changes are not going
1940 * to corrupt any outgoing frame. Look at nsc-ircc for the gory
1941 * details - Jean II */
1943 /* Check if we need to change the speed */
1944 speed = irda_get_next_speed(skb);
1945 if ((speed != self->io.speed) && (speed != -1)) {
1946 /* Check for empty frame */
1947 if (!skb->len) {
1948 ali_ircc_change_speed(self, speed);
1949 netif_trans_update(dev);
1950 spin_unlock_irqrestore(&self->lock, flags);
1951 dev_kfree_skb(skb);
1952 return NETDEV_TX_OK;
1953 } else
1954 self->new_speed = speed;
1957 /* Init tx buffer */
1958 self->tx_buff.data = self->tx_buff.head;
1960 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
1961 self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
1962 self->tx_buff.truesize);
1964 self->netdev->stats.tx_bytes += self->tx_buff.len;
1966 /* Turn on transmit finished interrupt. Will fire immediately! */
1967 outb(UART_IER_THRI, iobase+UART_IER);
1969 netif_trans_update(dev);
1970 spin_unlock_irqrestore(&self->lock, flags);
1972 dev_kfree_skb(skb);
1975 return NETDEV_TX_OK;
1980 * Function ali_ircc_net_ioctl (dev, rq, cmd)
1982 * Process IOCTL commands for this device
1985 static int ali_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1987 struct if_irda_req *irq = (struct if_irda_req *) rq;
1988 struct ali_ircc_cb *self;
1989 unsigned long flags;
1990 int ret = 0;
1993 IRDA_ASSERT(dev != NULL, return -1;);
1995 self = netdev_priv(dev);
1997 IRDA_ASSERT(self != NULL, return -1;);
1999 pr_debug("%s(), %s, (cmd=0x%X)\n", __func__ , dev->name, cmd);
2001 switch (cmd) {
2002 case SIOCSBANDWIDTH: /* Set bandwidth */
2003 pr_debug("%s(), SIOCSBANDWIDTH\n", __func__);
2005 * This function will also be used by IrLAP to change the
2006 * speed, so we still must allow for speed change within
2007 * interrupt context.
2009 if (!in_interrupt() && !capable(CAP_NET_ADMIN))
2010 return -EPERM;
2012 spin_lock_irqsave(&self->lock, flags);
2013 ali_ircc_change_speed(self, irq->ifr_baudrate);
2014 spin_unlock_irqrestore(&self->lock, flags);
2015 break;
2016 case SIOCSMEDIABUSY: /* Set media busy */
2017 pr_debug("%s(), SIOCSMEDIABUSY\n", __func__);
2018 if (!capable(CAP_NET_ADMIN))
2019 return -EPERM;
2020 irda_device_set_media_busy(self->netdev, TRUE);
2021 break;
2022 case SIOCGRECEIVING: /* Check if we are receiving right now */
2023 pr_debug("%s(), SIOCGRECEIVING\n", __func__);
2024 /* This is protected */
2025 irq->ifr_receiving = ali_ircc_is_receiving(self);
2026 break;
2027 default:
2028 ret = -EOPNOTSUPP;
2032 return ret;
2036 * Function ali_ircc_is_receiving (self)
2038 * Return TRUE is we are currently receiving a frame
2041 static int ali_ircc_is_receiving(struct ali_ircc_cb *self)
2043 unsigned long flags;
2044 int status = FALSE;
2045 int iobase;
2048 IRDA_ASSERT(self != NULL, return FALSE;);
2050 spin_lock_irqsave(&self->lock, flags);
2052 if (self->io.speed > 115200)
2054 iobase = self->io.fir_base;
2056 switch_bank(iobase, BANK1);
2057 if((inb(iobase+FIR_FIFO_FR) & 0x3f) != 0)
2059 /* We are receiving something */
2060 pr_debug("%s(), We are receiving something\n",
2061 __func__);
2062 status = TRUE;
2064 switch_bank(iobase, BANK0);
2066 else
2068 status = (self->rx_buff.state != OUTSIDE_FRAME);
2071 spin_unlock_irqrestore(&self->lock, flags);
2074 return status;
2077 static int ali_ircc_suspend(struct platform_device *dev, pm_message_t state)
2079 struct ali_ircc_cb *self = platform_get_drvdata(dev);
2081 net_info_ratelimited("%s, Suspending\n", ALI_IRCC_DRIVER_NAME);
2083 if (self->io.suspended)
2084 return 0;
2086 ali_ircc_net_close(self->netdev);
2088 self->io.suspended = 1;
2090 return 0;
2093 static int ali_ircc_resume(struct platform_device *dev)
2095 struct ali_ircc_cb *self = platform_get_drvdata(dev);
2097 if (!self->io.suspended)
2098 return 0;
2100 ali_ircc_net_open(self->netdev);
2102 net_info_ratelimited("%s, Waking up\n", ALI_IRCC_DRIVER_NAME);
2104 self->io.suspended = 0;
2106 return 0;
2109 /* ALi Chip Function */
2111 static void SetCOMInterrupts(struct ali_ircc_cb *self , unsigned char enable)
2114 unsigned char newMask;
2116 int iobase = self->io.fir_base; /* or sir_base */
2118 pr_debug("%s(), -------- Start -------- ( Enable = %d )\n",
2119 __func__, enable);
2121 /* Enable the interrupt which we wish to */
2122 if (enable){
2123 if (self->io.direction == IO_XMIT)
2125 if (self->io.speed > 115200) /* FIR, MIR */
2127 newMask = self->ier;
2129 else /* SIR */
2131 newMask = UART_IER_THRI | UART_IER_RDI;
2134 else {
2135 if (self->io.speed > 115200) /* FIR, MIR */
2137 newMask = self->ier;
2139 else /* SIR */
2141 newMask = UART_IER_RDI;
2145 else /* Disable all the interrupts */
2147 newMask = 0x00;
2151 //SIR and FIR has different registers
2152 if (self->io.speed > 115200)
2154 switch_bank(iobase, BANK0);
2155 outb(newMask, iobase+FIR_IER);
2157 else
2158 outb(newMask, iobase+UART_IER);
2162 static void SIR2FIR(int iobase)
2164 //unsigned char tmp;
2167 /* Already protected (change_speed() or setup()), no need to lock.
2168 * Jean II */
2170 outb(0x28, iobase+UART_MCR);
2171 outb(0x68, iobase+UART_MCR);
2172 outb(0x88, iobase+UART_MCR);
2174 outb(0x60, iobase+FIR_MCR); /* Master Reset */
2175 outb(0x20, iobase+FIR_MCR); /* Master Interrupt Enable */
2177 //tmp = inb(iobase+FIR_LCR_B); /* SIP enable */
2178 //tmp |= 0x20;
2179 //outb(tmp, iobase+FIR_LCR_B);
2183 static void FIR2SIR(int iobase)
2185 unsigned char val;
2188 /* Already protected (change_speed() or setup()), no need to lock.
2189 * Jean II */
2191 outb(0x20, iobase+FIR_MCR); /* IRQ to low */
2192 outb(0x00, iobase+UART_IER);
2194 outb(0xA0, iobase+FIR_MCR); /* Don't set master reset */
2195 outb(0x00, iobase+UART_FCR);
2196 outb(0x07, iobase+UART_FCR);
2198 val = inb(iobase+UART_RX);
2199 val = inb(iobase+UART_LSR);
2200 val = inb(iobase+UART_MSR);
2204 MODULE_AUTHOR("Benjamin Kong <benjamin_kong@ali.com.tw>");
2205 MODULE_DESCRIPTION("ALi FIR Controller Driver");
2206 MODULE_LICENSE("GPL");
2207 MODULE_ALIAS("platform:" ALI_IRCC_DRIVER_NAME);
2210 module_param_hw_array(io, int, ioport, NULL, 0);
2211 MODULE_PARM_DESC(io, "Base I/O addresses");
2212 module_param_hw_array(irq, int, irq, NULL, 0);
2213 MODULE_PARM_DESC(irq, "IRQ lines");
2214 module_param_hw_array(dma, int, dma, NULL, 0);
2215 MODULE_PARM_DESC(dma, "DMA channels");
2217 module_init(ali_ircc_init);
2218 module_exit(ali_ircc_cleanup);