1 /*********************************************************************
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>
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>
26 #include <linux/kernel.h>
27 #include <linux/types.h>
28 #include <linux/skbuff.h>
29 #include <linux/netdevice.h>
30 #include <linux/ioport.h>
31 #include <linux/delay.h>
32 #include <linux/slab.h>
33 #include <linux/init.h>
34 #include <linux/rtnetlink.h>
35 #include <linux/serial_reg.h>
36 #include <linux/dma-mapping.h>
37 #include <linux/platform_device.h>
41 #include <asm/byteorder.h>
43 #include <net/irda/wrapper.h>
44 #include <net/irda/irda.h>
45 #include <net/irda/irda_device.h>
49 #define CHIP_IO_EXTENT 8
50 #define BROKEN_DONGLE_ID
52 #define ALI_IRCC_DRIVER_NAME "ali-ircc"
54 /* Power Management */
55 static int ali_ircc_suspend(struct platform_device
*dev
, pm_message_t state
);
56 static int ali_ircc_resume(struct platform_device
*dev
);
58 static struct platform_driver ali_ircc_driver
= {
59 .suspend
= ali_ircc_suspend
,
60 .resume
= ali_ircc_resume
,
62 .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 sourth-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
},
90 /* Max 4 instances for now */
91 static struct ali_ircc_cb
*dev_self
[] = { NULL
, NULL
, NULL
, NULL
};
94 static char *dongle_types
[] = {
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
);
114 static int ali_ircc_sir_hard_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
115 static irqreturn_t
ali_ircc_sir_interrupt(struct ali_ircc_cb
*self
);
116 static void ali_ircc_sir_receive(struct ali_ircc_cb
*self
);
117 static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb
*self
);
118 static int ali_ircc_sir_write(int iobase
, int fifo_size
, __u8
*buf
, int len
);
119 static void ali_ircc_sir_change_speed(struct ali_ircc_cb
*priv
, __u32 speed
);
122 static int ali_ircc_fir_hard_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
123 static void ali_ircc_fir_change_speed(struct ali_ircc_cb
*priv
, __u32 speed
);
124 static irqreturn_t
ali_ircc_fir_interrupt(struct ali_ircc_cb
*self
);
125 static int ali_ircc_dma_receive(struct ali_ircc_cb
*self
);
126 static int ali_ircc_dma_receive_complete(struct ali_ircc_cb
*self
);
127 static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb
*self
);
128 static void ali_ircc_dma_xmit(struct ali_ircc_cb
*self
);
131 static int ali_ircc_read_dongle_id (int i
, chipio_t
*info
);
132 static void ali_ircc_change_dongle_speed(struct ali_ircc_cb
*priv
, int speed
);
134 /* ALi chip function */
135 static void SIR2FIR(int iobase
);
136 static void FIR2SIR(int iobase
);
137 static void SetCOMInterrupts(struct ali_ircc_cb
*self
, unsigned char enable
);
140 * Function ali_ircc_init ()
142 * Initialize chip. Find out whay kinds of chips we are dealing with
143 * and their configuation registers address
145 static int __init
ali_ircc_init(void)
154 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
156 ret
= platform_driver_register(&ali_ircc_driver
);
158 IRDA_ERROR("%s, Can't register driver!\n",
159 ALI_IRCC_DRIVER_NAME
);
165 /* Probe for all the ALi chipsets we know about */
166 for (chip
= chips
; chip
->name
; chip
++, i
++)
168 IRDA_DEBUG(2, "%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
];
177 memset(&info
, 0, sizeof(chipio_t
));
178 info
.cfg_base
= cfg_base
;
179 info
.fir_base
= io
[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 IRDA_DEBUG(2, "%s(), Chip found at 0x%03x\n", __func__
, cfg_base
);
200 outb(0x1F, cfg_base
);
201 revision
= inb(cfg_base
+1);
202 IRDA_DEBUG(2, "%s(), Found %s chip, revision=%d\n", __func__
,
203 chip
->name
, revision
);
206 * If the user supplies the base address, then
207 * we init the chip, if not we probe the values
212 chip
->init(chip
, &info
);
216 chip
->probe(chip
, &info
);
219 if (ali_ircc_open(i
, &info
) == 0)
225 IRDA_DEBUG(2, "%s(), No %s chip at 0x%03x\n", __func__
, chip
->name
, cfg_base
);
227 /* Exit configuration */
228 outb(0xbb, cfg_base
);
232 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
235 platform_driver_unregister(&ali_ircc_driver
);
241 * Function ali_ircc_cleanup ()
243 * Close all configured chips
246 static void __exit
ali_ircc_cleanup(void)
250 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
252 for (i
=0; i
< ARRAY_SIZE(dev_self
); i
++) {
254 ali_ircc_close(dev_self
[i
]);
257 platform_driver_unregister(&ali_ircc_driver
);
259 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
262 static const struct net_device_ops ali_ircc_sir_ops
= {
263 .ndo_open
= ali_ircc_net_open
,
264 .ndo_stop
= ali_ircc_net_close
,
265 .ndo_start_xmit
= ali_ircc_sir_hard_xmit
,
266 .ndo_do_ioctl
= ali_ircc_net_ioctl
,
269 static const struct net_device_ops ali_ircc_fir_ops
= {
270 .ndo_open
= ali_ircc_net_open
,
271 .ndo_stop
= ali_ircc_net_close
,
272 .ndo_start_xmit
= ali_ircc_fir_hard_xmit
,
273 .ndo_do_ioctl
= ali_ircc_net_ioctl
,
277 * Function ali_ircc_open (int i, chipio_t *inf)
279 * Open driver instance
282 static int ali_ircc_open(int i
, chipio_t
*info
)
284 struct net_device
*dev
;
285 struct ali_ircc_cb
*self
;
289 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
291 if (i
>= ARRAY_SIZE(dev_self
)) {
292 IRDA_ERROR("%s(), maximum number of supported chips reached!\n",
297 /* Set FIR FIFO and DMA Threshold */
298 if ((ali_ircc_setup(info
)) == -1)
301 dev
= alloc_irdadev(sizeof(*self
));
303 IRDA_ERROR("%s(), can't allocate memory for control block!\n",
308 self
= netdev_priv(dev
);
310 spin_lock_init(&self
->lock
);
312 /* Need to store self somewhere */
317 self
->io
.cfg_base
= info
->cfg_base
; /* In ali_ircc_probe_53 assign */
318 self
->io
.fir_base
= info
->fir_base
; /* info->sir_base = info->fir_base */
319 self
->io
.sir_base
= info
->sir_base
; /* ALi SIR and FIR use the same address */
320 self
->io
.irq
= info
->irq
;
321 self
->io
.fir_ext
= CHIP_IO_EXTENT
;
322 self
->io
.dma
= info
->dma
;
323 self
->io
.fifo_size
= 16; /* SIR: 16, FIR: 32 Benjamin 2000/11/1 */
325 /* Reserve the ioports that we need */
326 if (!request_region(self
->io
.fir_base
, self
->io
.fir_ext
,
327 ALI_IRCC_DRIVER_NAME
)) {
328 IRDA_WARNING("%s(), can't get iobase of 0x%03x\n", __func__
,
334 /* Initialize QoS for this device */
335 irda_init_max_qos_capabilies(&self
->qos
);
337 /* The only value we must override it the baudrate */
338 self
->qos
.baud_rate
.bits
= IR_9600
|IR_19200
|IR_38400
|IR_57600
|
339 IR_115200
|IR_576000
|IR_1152000
|(IR_4000000
<< 8); // benjamin 2000/11/8 05:27PM
341 self
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
343 irda_qos_bits_to_value(&self
->qos
);
345 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
346 self
->rx_buff
.truesize
= 14384;
347 self
->tx_buff
.truesize
= 14384;
349 /* Allocate memory if needed */
351 dma_alloc_coherent(NULL
, self
->rx_buff
.truesize
,
352 &self
->rx_buff_dma
, GFP_KERNEL
);
353 if (self
->rx_buff
.head
== NULL
) {
357 memset(self
->rx_buff
.head
, 0, self
->rx_buff
.truesize
);
360 dma_alloc_coherent(NULL
, self
->tx_buff
.truesize
,
361 &self
->tx_buff_dma
, GFP_KERNEL
);
362 if (self
->tx_buff
.head
== NULL
) {
366 memset(self
->tx_buff
.head
, 0, self
->tx_buff
.truesize
);
368 self
->rx_buff
.in_frame
= FALSE
;
369 self
->rx_buff
.state
= OUTSIDE_FRAME
;
370 self
->tx_buff
.data
= self
->tx_buff
.head
;
371 self
->rx_buff
.data
= self
->rx_buff
.head
;
373 /* Reset Tx queue info */
374 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
375 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
377 /* Override the network functions we need to use */
378 dev
->netdev_ops
= &ali_ircc_sir_ops
;
380 err
= register_netdev(dev
);
382 IRDA_ERROR("%s(), register_netdev() failed!\n", __func__
);
385 IRDA_MESSAGE("IrDA: Registered device %s\n", dev
->name
);
387 /* Check dongle id */
388 dongle_id
= ali_ircc_read_dongle_id(i
, info
);
389 IRDA_MESSAGE("%s(), %s, Found dongle: %s\n", __func__
,
390 ALI_IRCC_DRIVER_NAME
, dongle_types
[dongle_id
]);
392 self
->io
.dongle_id
= dongle_id
;
394 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
399 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
400 self
->tx_buff
.head
, self
->tx_buff_dma
);
402 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
403 self
->rx_buff
.head
, self
->rx_buff_dma
);
405 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
414 * Function ali_ircc_close (self)
416 * Close driver instance
419 static int __exit
ali_ircc_close(struct ali_ircc_cb
*self
)
423 IRDA_DEBUG(4, "%s(), ---------------- Start ----------------\n", __func__
);
425 IRDA_ASSERT(self
!= NULL
, return -1;);
427 iobase
= self
->io
.fir_base
;
429 /* Remove netdevice */
430 unregister_netdev(self
->netdev
);
432 /* Release the PORT that this driver is using */
433 IRDA_DEBUG(4, "%s(), Releasing Region %03x\n", __func__
, self
->io
.fir_base
);
434 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
436 if (self
->tx_buff
.head
)
437 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
438 self
->tx_buff
.head
, self
->tx_buff_dma
);
440 if (self
->rx_buff
.head
)
441 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
442 self
->rx_buff
.head
, self
->rx_buff_dma
);
444 dev_self
[self
->index
] = NULL
;
445 free_netdev(self
->netdev
);
447 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
453 * Function ali_ircc_init_43 (chip, info)
455 * Initialize the ALi M1543 chip.
457 static int ali_ircc_init_43(ali_chip_t
*chip
, chipio_t
*info
)
459 /* All controller information like I/O address, DMA channel, IRQ
467 * Function ali_ircc_init_53 (chip, info)
469 * Initialize the ALi M1535 chip.
471 static int ali_ircc_init_53(ali_chip_t
*chip
, chipio_t
*info
)
473 /* All controller information like I/O address, DMA channel, IRQ
481 * Function ali_ircc_probe_53 (chip, info)
483 * Probes for the ALi M1535D or M1535
485 static int ali_ircc_probe_53(ali_chip_t
*chip
, chipio_t
*info
)
487 int cfg_base
= info
->cfg_base
;
490 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
492 /* Enter Configuration */
493 outb(chip
->entr1
, cfg_base
);
494 outb(chip
->entr2
, cfg_base
);
496 /* Select Logical Device 5 Registers (UART2) */
497 outb(0x07, cfg_base
);
498 outb(0x05, cfg_base
+1);
500 /* Read address control register */
501 outb(0x60, cfg_base
);
502 hi
= inb(cfg_base
+1);
503 outb(0x61, cfg_base
);
504 low
= inb(cfg_base
+1);
505 info
->fir_base
= (hi
<<8) + low
;
507 info
->sir_base
= info
->fir_base
;
509 IRDA_DEBUG(2, "%s(), probing fir_base=0x%03x\n", __func__
, info
->fir_base
);
511 /* Read IRQ control register */
512 outb(0x70, cfg_base
);
513 reg
= inb(cfg_base
+1);
514 info
->irq
= reg
& 0x0f;
515 IRDA_DEBUG(2, "%s(), probing irq=%d\n", __func__
, info
->irq
);
517 /* Read DMA channel */
518 outb(0x74, cfg_base
);
519 reg
= inb(cfg_base
+1);
520 info
->dma
= reg
& 0x07;
522 if(info
->dma
== 0x04)
523 IRDA_WARNING("%s(), No DMA channel assigned !\n", __func__
);
525 IRDA_DEBUG(2, "%s(), probing dma=%d\n", __func__
, info
->dma
);
527 /* Read Enabled Status */
528 outb(0x30, cfg_base
);
529 reg
= inb(cfg_base
+1);
530 info
->enabled
= (reg
& 0x80) && (reg
& 0x01);
531 IRDA_DEBUG(2, "%s(), probing enabled=%d\n", __func__
, info
->enabled
);
533 /* Read Power Status */
534 outb(0x22, cfg_base
);
535 reg
= inb(cfg_base
+1);
536 info
->suspended
= (reg
& 0x20);
537 IRDA_DEBUG(2, "%s(), probing suspended=%d\n", __func__
, info
->suspended
);
539 /* Exit configuration */
540 outb(0xbb, cfg_base
);
542 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
548 * Function ali_ircc_setup (info)
550 * Set FIR FIFO and DMA Threshold
551 * Returns non-negative on success.
554 static int ali_ircc_setup(chipio_t
*info
)
558 int iobase
= info
->fir_base
;
560 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
562 /* Locking comments :
563 * Most operations here need to be protected. We are called before
564 * the device instance is created in ali_ircc_open(), therefore
565 * nobody can bother us - Jean II */
567 /* Switch to FIR space */
571 outb(0x40, iobase
+FIR_MCR
); // benjamin 2000/11/30 11:45AM
573 /* Read FIR ID Version Register */
574 switch_bank(iobase
, BANK3
);
575 version
= inb(iobase
+FIR_ID_VR
);
577 /* Should be 0x00 in the M1535/M1535D */
580 IRDA_ERROR("%s, Wrong chip version %02x\n",
581 ALI_IRCC_DRIVER_NAME
, version
);
585 /* Set FIR FIFO Threshold Register */
586 switch_bank(iobase
, BANK1
);
587 outb(RX_FIFO_Threshold
, iobase
+FIR_FIFO_TR
);
589 /* Set FIR DMA Threshold Register */
590 outb(RX_DMA_Threshold
, iobase
+FIR_DMA_TR
);
593 switch_bank(iobase
, BANK2
);
594 outb(inb(iobase
+FIR_IRDA_CR
) | IRDA_CR_CRC
, iobase
+FIR_IRDA_CR
);
596 /* NDIS driver set TX Length here BANK2 Alias 3, Alias4*/
598 /* Switch to Bank 0 */
599 switch_bank(iobase
, BANK0
);
601 tmp
= inb(iobase
+FIR_LCR_B
);
602 tmp
&=~0x20; // disable SIP
603 tmp
|= 0x80; // these two steps make RX mode
605 outb(tmp
, iobase
+FIR_LCR_B
);
607 /* Disable Interrupt */
608 outb(0x00, iobase
+FIR_IER
);
611 /* Switch to SIR space */
614 IRDA_MESSAGE("%s, driver loaded (Benjamin Kong)\n",
615 ALI_IRCC_DRIVER_NAME
);
617 /* Enable receive interrupts */
618 // outb(UART_IER_RDI, iobase+UART_IER); //benjamin 2000/11/23 01:25PM
619 // Turn on the interrupts in ali_ircc_net_open
621 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
627 * Function ali_ircc_read_dongle_id (int index, info)
629 * Try to read dongle indentification. This procedure needs to be executed
630 * once after power-on/reset. It also needs to be used whenever you suspect
631 * that the user may have plugged/unplugged the IrDA Dongle.
633 static int ali_ircc_read_dongle_id (int i
, chipio_t
*info
)
636 int cfg_base
= info
->cfg_base
;
638 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
640 /* Enter Configuration */
641 outb(chips
[i
].entr1
, cfg_base
);
642 outb(chips
[i
].entr2
, cfg_base
);
644 /* Select Logical Device 5 Registers (UART2) */
645 outb(0x07, cfg_base
);
646 outb(0x05, cfg_base
+1);
649 outb(0xf0, cfg_base
);
650 reg
= inb(cfg_base
+1);
651 dongle_id
= ((reg
>>6)&0x02) | ((reg
>>5)&0x01);
652 IRDA_DEBUG(2, "%s(), probing dongle_id=%d, dongle_types=%s\n", __func__
,
653 dongle_id
, dongle_types
[dongle_id
]);
655 /* Exit configuration */
656 outb(0xbb, cfg_base
);
658 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
664 * Function ali_ircc_interrupt (irq, dev_id, regs)
666 * An interrupt from the chip has arrived. Time to do some work
669 static irqreturn_t
ali_ircc_interrupt(int irq
, void *dev_id
)
671 struct net_device
*dev
= dev_id
;
672 struct ali_ircc_cb
*self
;
675 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
677 self
= netdev_priv(dev
);
679 spin_lock(&self
->lock
);
681 /* Dispatch interrupt handler for the current speed */
682 if (self
->io
.speed
> 115200)
683 ret
= ali_ircc_fir_interrupt(self
);
685 ret
= ali_ircc_sir_interrupt(self
);
687 spin_unlock(&self
->lock
);
689 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
693 * Function ali_ircc_fir_interrupt(irq, struct ali_ircc_cb *self)
695 * Handle MIR/FIR interrupt
698 static irqreturn_t
ali_ircc_fir_interrupt(struct ali_ircc_cb
*self
)
700 __u8 eir
, OldMessageCount
;
703 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
705 iobase
= self
->io
.fir_base
;
707 switch_bank(iobase
, BANK0
);
708 self
->InterruptID
= inb(iobase
+FIR_IIR
);
709 self
->BusStatus
= inb(iobase
+FIR_BSR
);
711 OldMessageCount
= (self
->LineStatus
+ 1) & 0x07;
712 self
->LineStatus
= inb(iobase
+FIR_LSR
);
713 //self->ier = inb(iobase+FIR_IER); 2000/12/1 04:32PM
714 eir
= self
->InterruptID
& self
->ier
; /* Mask out the interesting ones */
716 IRDA_DEBUG(1, "%s(), self->InterruptID = %x\n", __func__
,self
->InterruptID
);
717 IRDA_DEBUG(1, "%s(), self->LineStatus = %x\n", __func__
,self
->LineStatus
);
718 IRDA_DEBUG(1, "%s(), self->ier = %x\n", __func__
,self
->ier
);
719 IRDA_DEBUG(1, "%s(), eir = %x\n", __func__
,eir
);
721 /* Disable interrupts */
722 SetCOMInterrupts(self
, FALSE
);
724 /* Tx or Rx Interrupt */
728 if (self
->io
.direction
== IO_XMIT
) /* TX */
730 IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Tx) *******\n", __func__
);
732 if(ali_ircc_dma_xmit_complete(self
))
734 if (irda_device_txqueue_empty(self
->netdev
))
736 /* Prepare for receive */
737 ali_ircc_dma_receive(self
);
749 IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Rx) *******\n", __func__
);
751 if(OldMessageCount
> ((self
->LineStatus
+1) & 0x07))
753 self
->rcvFramesOverflow
= TRUE
;
754 IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE ******** \n", __func__
);
757 if (ali_ircc_dma_receive_complete(self
))
759 IRDA_DEBUG(1, "%s(), ******* receive complete ******** \n", __func__
);
765 IRDA_DEBUG(1, "%s(), ******* Not receive complete ******** \n", __func__
);
767 self
->ier
= IER_EOM
| IER_TIMER
;
772 /* Timer Interrupt */
773 else if (eir
& IIR_TIMER
)
775 if(OldMessageCount
> ((self
->LineStatus
+1) & 0x07))
777 self
->rcvFramesOverflow
= TRUE
;
778 IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE ******* \n", __func__
);
781 switch_bank(iobase
, BANK1
);
782 tmp
= inb(iobase
+FIR_CR
);
783 outb( tmp
& ~CR_TIMER_EN
, iobase
+FIR_CR
);
785 /* Check if this is a Tx timer interrupt */
786 if (self
->io
.direction
== IO_XMIT
)
788 ali_ircc_dma_xmit(self
);
790 /* Interrupt on EOM */
796 if(ali_ircc_dma_receive_complete(self
))
802 self
->ier
= IER_EOM
| IER_TIMER
;
807 /* Restore Interrupt */
808 SetCOMInterrupts(self
, TRUE
);
810 IRDA_DEBUG(1, "%s(), ----------------- End ---------------\n", __func__
);
811 return IRQ_RETVAL(eir
);
815 * Function ali_ircc_sir_interrupt (irq, self, eir)
817 * Handle SIR interrupt
820 static irqreturn_t
ali_ircc_sir_interrupt(struct ali_ircc_cb
*self
)
825 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
827 iobase
= self
->io
.sir_base
;
829 iir
= inb(iobase
+UART_IIR
) & UART_IIR_ID
;
831 /* Clear interrupt */
832 lsr
= inb(iobase
+UART_LSR
);
834 IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n", __func__
,
840 IRDA_DEBUG(2, "%s(), RLSI\n", __func__
);
843 /* Receive interrupt */
844 ali_ircc_sir_receive(self
);
847 if (lsr
& UART_LSR_THRE
)
849 /* Transmitter ready for data */
850 ali_ircc_sir_write_wakeup(self
);
854 IRDA_DEBUG(0, "%s(), unhandled IIR=%#x\n", __func__
, iir
);
861 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
863 return IRQ_RETVAL(iir
);
868 * Function ali_ircc_sir_receive (self)
870 * Receive one frame from the infrared port
873 static void ali_ircc_sir_receive(struct ali_ircc_cb
*self
)
878 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
879 IRDA_ASSERT(self
!= NULL
, return;);
881 iobase
= self
->io
.sir_base
;
884 * Receive all characters in Rx FIFO, unwrap and unstuff them.
885 * async_unwrap_char will deliver all found frames
888 async_unwrap_char(self
->netdev
, &self
->netdev
->stats
, &self
->rx_buff
,
889 inb(iobase
+UART_RX
));
891 /* Make sure we don't stay here too long */
892 if (boguscount
++ > 32) {
893 IRDA_DEBUG(2,"%s(), breaking!\n", __func__
);
896 } while (inb(iobase
+UART_LSR
) & UART_LSR_DR
);
898 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
902 * Function ali_ircc_sir_write_wakeup (tty)
904 * Called by the driver when there's room for more data. If we have
905 * more packets to send, we send them here.
908 static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb
*self
)
913 IRDA_ASSERT(self
!= NULL
, return;);
915 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
917 iobase
= self
->io
.sir_base
;
919 /* Finished with frame? */
920 if (self
->tx_buff
.len
> 0)
922 /* Write data left in transmit buffer */
923 actual
= ali_ircc_sir_write(iobase
, self
->io
.fifo_size
,
924 self
->tx_buff
.data
, self
->tx_buff
.len
);
925 self
->tx_buff
.data
+= actual
;
926 self
->tx_buff
.len
-= actual
;
932 /* We must wait until all data are gone */
933 while(!(inb(iobase
+UART_LSR
) & UART_LSR_TEMT
))
934 IRDA_DEBUG(1, "%s(), UART_LSR_THRE\n", __func__
);
936 IRDA_DEBUG(1, "%s(), Changing speed! self->new_speed = %d\n", __func__
, self
->new_speed
);
937 ali_ircc_change_speed(self
, self
->new_speed
);
940 // benjamin 2000/11/10 06:32PM
941 if (self
->io
.speed
> 115200)
943 IRDA_DEBUG(2, "%s(), ali_ircc_change_speed from UART_LSR_TEMT \n", __func__
);
946 // SetCOMInterrupts(self, TRUE);
952 netif_wake_queue(self
->netdev
);
955 self
->netdev
->stats
.tx_packets
++;
957 /* Turn on receive interrupts */
958 outb(UART_IER_RDI
, iobase
+UART_IER
);
961 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
964 static void ali_ircc_change_speed(struct ali_ircc_cb
*self
, __u32 baud
)
966 struct net_device
*dev
= self
->netdev
;
969 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
971 IRDA_DEBUG(2, "%s(), setting speed = %d \n", __func__
, baud
);
973 /* This function *must* be called with irq off and spin-lock.
976 iobase
= self
->io
.fir_base
;
978 SetCOMInterrupts(self
, FALSE
); // 2000/11/24 11:43AM
980 /* Go to MIR, FIR Speed */
985 ali_ircc_fir_change_speed(self
, baud
);
987 /* Install FIR xmit handler*/
988 dev
->netdev_ops
= &ali_ircc_fir_ops
;
990 /* Enable Interuupt */
991 self
->ier
= IER_EOM
; // benjamin 2000/11/20 07:24PM
993 /* Be ready for incomming frames */
994 ali_ircc_dma_receive(self
); // benajmin 2000/11/8 07:46PM not complete
996 /* Go to SIR Speed */
999 ali_ircc_sir_change_speed(self
, baud
);
1001 /* Install SIR xmit handler*/
1002 dev
->netdev_ops
= &ali_ircc_sir_ops
;
1006 SetCOMInterrupts(self
, TRUE
); // 2000/11/24 11:43AM
1008 netif_wake_queue(self
->netdev
);
1010 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1013 static void ali_ircc_fir_change_speed(struct ali_ircc_cb
*priv
, __u32 baud
)
1017 struct ali_ircc_cb
*self
= (struct ali_ircc_cb
*) priv
;
1018 struct net_device
*dev
;
1020 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
1022 IRDA_ASSERT(self
!= NULL
, return;);
1025 iobase
= self
->io
.fir_base
;
1027 IRDA_DEBUG(1, "%s(), self->io.speed = %d, change to speed = %d\n", __func__
,self
->io
.speed
,baud
);
1029 /* Come from SIR speed */
1030 if(self
->io
.speed
<=115200)
1035 /* Update accounting for new speed */
1036 self
->io
.speed
= baud
;
1038 // Set Dongle Speed mode
1039 ali_ircc_change_dongle_speed(self
, baud
);
1041 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1045 * Function ali_sir_change_speed (self, speed)
1047 * Set speed of IrDA port to specified baudrate
1050 static void ali_ircc_sir_change_speed(struct ali_ircc_cb
*priv
, __u32 speed
)
1052 struct ali_ircc_cb
*self
= (struct ali_ircc_cb
*) priv
;
1053 unsigned long flags
;
1055 int fcr
; /* FIFO control reg */
1056 int lcr
; /* Line control reg */
1059 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
1061 IRDA_DEBUG(1, "%s(), Setting speed to: %d\n", __func__
, speed
);
1063 IRDA_ASSERT(self
!= NULL
, return;);
1065 iobase
= self
->io
.sir_base
;
1067 /* Come from MIR or FIR speed */
1068 if(self
->io
.speed
>115200)
1070 // Set Dongle Speed mode first
1071 ali_ircc_change_dongle_speed(self
, speed
);
1076 // Clear Line and Auxiluary status registers 2000/11/24 11:47AM
1078 inb(iobase
+UART_LSR
);
1079 inb(iobase
+UART_SCR
);
1081 /* Update accounting for new speed */
1082 self
->io
.speed
= speed
;
1084 spin_lock_irqsave(&self
->lock
, flags
);
1086 divisor
= 115200/speed
;
1088 fcr
= UART_FCR_ENABLE_FIFO
;
1091 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
1092 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
1093 * about this timeout since it will always be fast enough.
1095 if (self
->io
.speed
< 38400)
1096 fcr
|= UART_FCR_TRIGGER_1
;
1098 fcr
|= UART_FCR_TRIGGER_14
;
1100 /* IrDA ports use 8N1 */
1101 lcr
= UART_LCR_WLEN8
;
1103 outb(UART_LCR_DLAB
| lcr
, iobase
+UART_LCR
); /* Set DLAB */
1104 outb(divisor
& 0xff, iobase
+UART_DLL
); /* Set speed */
1105 outb(divisor
>> 8, iobase
+UART_DLM
);
1106 outb(lcr
, iobase
+UART_LCR
); /* Set 8N1 */
1107 outb(fcr
, iobase
+UART_FCR
); /* Enable FIFO's */
1109 /* without this, the conection will be broken after come back from FIR speed,
1110 but with this, the SIR connection is harder to established */
1111 outb((UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
), iobase
+UART_MCR
);
1113 spin_unlock_irqrestore(&self
->lock
, flags
);
1115 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1118 static void ali_ircc_change_dongle_speed(struct ali_ircc_cb
*priv
, int speed
)
1121 struct ali_ircc_cb
*self
= (struct ali_ircc_cb
*) priv
;
1122 int iobase
,dongle_id
;
1125 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
1127 iobase
= self
->io
.fir_base
; /* or iobase = self->io.sir_base; */
1128 dongle_id
= self
->io
.dongle_id
;
1130 /* We are already locked, no need to do it again */
1132 IRDA_DEBUG(1, "%s(), Set Speed for %s , Speed = %d\n", __func__
, dongle_types
[dongle_id
], speed
);
1134 switch_bank(iobase
, BANK2
);
1135 tmp
= inb(iobase
+FIR_IRDA_CR
);
1137 /* IBM type dongle */
1140 if(speed
== 4000000)
1143 // SD/MODE __| |__ __
1148 tmp
&= ~IRDA_CR_HDLC
; // HDLC=0
1149 tmp
|= IRDA_CR_CRC
; // CRC=1
1151 switch_bank(iobase
, BANK2
);
1152 outb(tmp
, iobase
+FIR_IRDA_CR
);
1154 // T1 -> SD/MODE:0 IRTX:0
1157 outb(tmp
, iobase
+FIR_IRDA_CR
);
1160 // T2 -> SD/MODE:1 IRTX:0
1163 outb(tmp
, iobase
+FIR_IRDA_CR
);
1166 // T3 -> SD/MODE:1 IRTX:1
1168 outb(tmp
, iobase
+FIR_IRDA_CR
);
1171 // T4 -> SD/MODE:0 IRTX:1
1174 outb(tmp
, iobase
+FIR_IRDA_CR
);
1177 // T5 -> SD/MODE:0 IRTX:0
1180 outb(tmp
, iobase
+FIR_IRDA_CR
);
1183 // reset -> Normal TX output Signal
1184 outb(tmp
& ~0x02, iobase
+FIR_IRDA_CR
);
1186 else /* speed <=1152000 */
1194 /* MIR 115200, 57600 */
1197 tmp
|= 0xA0; //HDLC=1, 1.152Mbps=1
1201 tmp
&=~0x80; //HDLC 0.576Mbps
1202 tmp
|= 0x20; //HDLC=1,
1205 tmp
|= IRDA_CR_CRC
; // CRC=1
1207 switch_bank(iobase
, BANK2
);
1208 outb(tmp
, iobase
+FIR_IRDA_CR
);
1210 /* MIR 115200, 57600 */
1212 //switch_bank(iobase, BANK2);
1213 // T1 -> SD/MODE:0 IRTX:0
1216 outb(tmp
, iobase
+FIR_IRDA_CR
);
1219 // T2 -> SD/MODE:1 IRTX:0
1222 outb(tmp
, iobase
+FIR_IRDA_CR
);
1224 // T3 -> SD/MODE:0 IRTX:0
1227 outb(tmp
, iobase
+FIR_IRDA_CR
);
1230 // reset -> Normal TX output Signal
1231 outb(tmp
& ~0x02, iobase
+FIR_IRDA_CR
);
1234 else if (dongle_id
== 1) /* HP HDSL-3600 */
1239 tmp
&= ~IRDA_CR_HDLC
; // HDLC=0
1243 tmp
|= 0xA0; // HDLC=1, 1.152Mbps=1
1247 tmp
&=~0x80; // HDLC 0.576Mbps
1248 tmp
|= 0x20; // HDLC=1,
1252 tmp
|= IRDA_CR_CRC
; // CRC=1
1254 switch_bank(iobase
, BANK2
);
1255 outb(tmp
, iobase
+FIR_IRDA_CR
);
1257 else /* HP HDSL-1100 */
1259 if(speed
<= 115200) /* SIR */
1262 tmp
&= ~IRDA_CR_FIR_SIN
; // HP sin select = 0
1264 switch_bank(iobase
, BANK2
);
1265 outb(tmp
, iobase
+FIR_IRDA_CR
);
1273 tmp
&= ~IRDA_CR_HDLC
; // HDLC=0
1277 tmp
|= 0xA0; // HDLC=1, 1.152Mbps=1
1281 tmp
&=~0x80; // HDLC 0.576Mbps
1282 tmp
|= 0x20; // HDLC=1,
1286 tmp
|= IRDA_CR_CRC
; // CRC=1
1287 tmp
|= IRDA_CR_FIR_SIN
; // HP sin select = 1
1289 switch_bank(iobase
, BANK2
);
1290 outb(tmp
, iobase
+FIR_IRDA_CR
);
1294 switch_bank(iobase
, BANK0
);
1296 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1300 * Function ali_ircc_sir_write (driver)
1302 * Fill Tx FIFO with transmit data
1305 static int ali_ircc_sir_write(int iobase
, int fifo_size
, __u8
*buf
, int len
)
1309 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
1311 /* Tx FIFO should be empty! */
1312 if (!(inb(iobase
+UART_LSR
) & UART_LSR_THRE
)) {
1313 IRDA_DEBUG(0, "%s(), failed, fifo not empty!\n", __func__
);
1317 /* Fill FIFO with current frame */
1318 while ((fifo_size
-- > 0) && (actual
< len
)) {
1319 /* Transmit next byte */
1320 outb(buf
[actual
], iobase
+UART_TX
);
1325 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1330 * Function ali_ircc_net_open (dev)
1335 static int ali_ircc_net_open(struct net_device
*dev
)
1337 struct ali_ircc_cb
*self
;
1341 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
1343 IRDA_ASSERT(dev
!= NULL
, return -1;);
1345 self
= netdev_priv(dev
);
1347 IRDA_ASSERT(self
!= NULL
, return 0;);
1349 iobase
= self
->io
.fir_base
;
1351 /* Request IRQ and install Interrupt Handler */
1352 if (request_irq(self
->io
.irq
, ali_ircc_interrupt
, 0, dev
->name
, dev
))
1354 IRDA_WARNING("%s, unable to allocate irq=%d\n",
1355 ALI_IRCC_DRIVER_NAME
,
1361 * Always allocate the DMA channel after the IRQ, and clean up on
1364 if (request_dma(self
->io
.dma
, dev
->name
)) {
1365 IRDA_WARNING("%s, unable to allocate dma=%d\n",
1366 ALI_IRCC_DRIVER_NAME
,
1368 free_irq(self
->io
.irq
, self
);
1372 /* Turn on interrups */
1373 outb(UART_IER_RDI
, iobase
+UART_IER
);
1375 /* Ready to play! */
1376 netif_start_queue(dev
); //benjamin by irport
1378 /* Give self a hardware name */
1379 sprintf(hwname
, "ALI-FIR @ 0x%03x", self
->io
.fir_base
);
1382 * Open new IrLAP layer instance, now that everything should be
1383 * initialized properly
1385 self
->irlap
= irlap_open(dev
, &self
->qos
, hwname
);
1387 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1393 * Function ali_ircc_net_close (dev)
1398 static int ali_ircc_net_close(struct net_device
*dev
)
1401 struct ali_ircc_cb
*self
;
1404 IRDA_DEBUG(4, "%s(), ---------------- Start ----------------\n", __func__
);
1406 IRDA_ASSERT(dev
!= NULL
, return -1;);
1408 self
= netdev_priv(dev
);
1409 IRDA_ASSERT(self
!= NULL
, return 0;);
1412 netif_stop_queue(dev
);
1414 /* Stop and remove instance of IrLAP */
1416 irlap_close(self
->irlap
);
1419 disable_dma(self
->io
.dma
);
1421 /* Disable interrupts */
1422 SetCOMInterrupts(self
, FALSE
);
1424 free_irq(self
->io
.irq
, dev
);
1425 free_dma(self
->io
.dma
);
1427 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1433 * Function ali_ircc_fir_hard_xmit (skb, dev)
1435 * Transmit the frame
1438 static int ali_ircc_fir_hard_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1440 struct ali_ircc_cb
*self
;
1441 unsigned long flags
;
1446 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1448 self
= netdev_priv(dev
);
1449 iobase
= self
->io
.fir_base
;
1451 netif_stop_queue(dev
);
1453 /* Make sure tests *& speed change are atomic */
1454 spin_lock_irqsave(&self
->lock
, flags
);
1456 /* Note : you should make sure that speed changes are not going
1457 * to corrupt any outgoing frame. Look at nsc-ircc for the gory
1458 * details - Jean II */
1460 /* Check if we need to change the speed */
1461 speed
= irda_get_next_speed(skb
);
1462 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
1463 /* Check for empty frame */
1465 ali_ircc_change_speed(self
, speed
);
1466 dev
->trans_start
= jiffies
;
1467 spin_unlock_irqrestore(&self
->lock
, flags
);
1471 self
->new_speed
= speed
;
1474 /* Register and copy this frame to DMA memory */
1475 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
= self
->tx_fifo
.tail
;
1476 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].len
= skb
->len
;
1477 self
->tx_fifo
.tail
+= skb
->len
;
1479 dev
->stats
.tx_bytes
+= skb
->len
;
1481 skb_copy_from_linear_data(skb
, self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
,
1483 self
->tx_fifo
.len
++;
1484 self
->tx_fifo
.free
++;
1486 /* Start transmit only if there is currently no transmit going on */
1487 if (self
->tx_fifo
.len
== 1)
1489 /* Check if we must wait the min turn time or not */
1490 mtt
= irda_get_mtt(skb
);
1494 /* Check how much time we have used already */
1495 do_gettimeofday(&self
->now
);
1497 diff
= self
->now
.tv_usec
- self
->stamp
.tv_usec
;
1498 /* self->stamp is set from ali_ircc_dma_receive_complete() */
1500 IRDA_DEBUG(1, "%s(), ******* diff = %d ******* \n", __func__
, diff
);
1505 /* Check if the mtt is larger than the time we have
1506 * already used by all the protocol processing
1513 * Use timer if delay larger than 1000 us, and
1514 * use udelay for smaller values which should
1519 /* Adjust for timer resolution */
1520 mtt
= (mtt
+250) / 500; /* 4 discard, 5 get advanced, Let's round off */
1522 IRDA_DEBUG(1, "%s(), ************** mtt = %d ***********\n", __func__
, mtt
);
1525 if (mtt
== 1) /* 500 us */
1527 switch_bank(iobase
, BANK1
);
1528 outb(TIMER_IIR_500
, iobase
+FIR_TIMER_IIR
);
1530 else if (mtt
== 2) /* 1 ms */
1532 switch_bank(iobase
, BANK1
);
1533 outb(TIMER_IIR_1ms
, iobase
+FIR_TIMER_IIR
);
1535 else /* > 2ms -> 4ms */
1537 switch_bank(iobase
, BANK1
);
1538 outb(TIMER_IIR_2ms
, iobase
+FIR_TIMER_IIR
);
1543 outb(inb(iobase
+FIR_CR
) | CR_TIMER_EN
, iobase
+FIR_CR
);
1544 self
->io
.direction
= IO_XMIT
;
1546 /* Enable timer interrupt */
1547 self
->ier
= IER_TIMER
;
1548 SetCOMInterrupts(self
, TRUE
);
1550 /* Timer will take care of the rest */
1555 } // if (if (mtt > diff)
1558 /* Enable EOM interrupt */
1559 self
->ier
= IER_EOM
;
1560 SetCOMInterrupts(self
, TRUE
);
1562 /* Transmit frame */
1563 ali_ircc_dma_xmit(self
);
1564 } // if (self->tx_fifo.len == 1)
1568 /* Not busy transmitting anymore if window is not full */
1569 if (self
->tx_fifo
.free
< MAX_TX_WINDOW
)
1570 netif_wake_queue(self
->netdev
);
1572 /* Restore bank register */
1573 switch_bank(iobase
, BANK0
);
1575 dev
->trans_start
= jiffies
;
1576 spin_unlock_irqrestore(&self
->lock
, flags
);
1579 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1584 static void ali_ircc_dma_xmit(struct ali_ircc_cb
*self
)
1587 unsigned char FIFO_OPTI
, Hi
, Lo
;
1590 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1592 iobase
= self
->io
.fir_base
;
1594 /* FIFO threshold , this method comes from NDIS5 code */
1596 if(self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
< TX_FIFO_Threshold
)
1597 FIFO_OPTI
= self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
-1;
1599 FIFO_OPTI
= TX_FIFO_Threshold
;
1602 switch_bank(iobase
, BANK1
);
1603 outb(inb(iobase
+FIR_CR
) & ~CR_DMA_EN
, iobase
+FIR_CR
);
1605 self
->io
.direction
= IO_XMIT
;
1607 irda_setup_dma(self
->io
.dma
,
1608 ((u8
*)self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].start
-
1609 self
->tx_buff
.head
) + self
->tx_buff_dma
,
1610 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
,
1614 switch_bank(iobase
, BANK0
);
1615 outb(LCR_A_FIFO_RESET
, iobase
+FIR_LCR_A
);
1617 /* Set Tx FIFO threshold */
1618 if (self
->fifo_opti_buf
!=FIFO_OPTI
)
1620 switch_bank(iobase
, BANK1
);
1621 outb(FIFO_OPTI
, iobase
+FIR_FIFO_TR
) ;
1622 self
->fifo_opti_buf
=FIFO_OPTI
;
1625 /* Set Tx DMA threshold */
1626 switch_bank(iobase
, BANK1
);
1627 outb(TX_DMA_Threshold
, iobase
+FIR_DMA_TR
);
1629 /* Set max Tx frame size */
1630 Hi
= (self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
>> 8) & 0x0f;
1631 Lo
= self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
& 0xff;
1632 switch_bank(iobase
, BANK2
);
1633 outb(Hi
, iobase
+FIR_TX_DSR_HI
);
1634 outb(Lo
, iobase
+FIR_TX_DSR_LO
);
1636 /* Disable SIP , Disable Brick Wall (we don't support in TX mode), Change to TX mode */
1637 switch_bank(iobase
, BANK0
);
1638 tmp
= inb(iobase
+FIR_LCR_B
);
1639 tmp
&= ~0x20; // Disable SIP
1640 outb(((unsigned char)(tmp
& 0x3f) | LCR_B_TX_MODE
) & ~LCR_B_BW
, iobase
+FIR_LCR_B
);
1641 IRDA_DEBUG(1, "%s(), ******* Change to TX mode: FIR_LCR_B = 0x%x ******* \n", __func__
, inb(iobase
+FIR_LCR_B
));
1643 outb(0, iobase
+FIR_LSR
);
1645 /* Enable DMA and Burst Mode */
1646 switch_bank(iobase
, BANK1
);
1647 outb(inb(iobase
+FIR_CR
) | CR_DMA_EN
| CR_DMA_BURST
, iobase
+FIR_CR
);
1649 switch_bank(iobase
, BANK0
);
1651 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1654 static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb
*self
)
1659 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1661 iobase
= self
->io
.fir_base
;
1664 switch_bank(iobase
, BANK1
);
1665 outb(inb(iobase
+FIR_CR
) & ~CR_DMA_EN
, iobase
+FIR_CR
);
1667 /* Check for underrun! */
1668 switch_bank(iobase
, BANK0
);
1669 if((inb(iobase
+FIR_LSR
) & LSR_FRAME_ABORT
) == LSR_FRAME_ABORT
)
1672 IRDA_ERROR("%s(), ********* LSR_FRAME_ABORT *********\n", __func__
);
1673 self
->netdev
->stats
.tx_errors
++;
1674 self
->netdev
->stats
.tx_fifo_errors
++;
1678 self
->netdev
->stats
.tx_packets
++;
1681 /* Check if we need to change the speed */
1682 if (self
->new_speed
)
1684 ali_ircc_change_speed(self
, self
->new_speed
);
1685 self
->new_speed
= 0;
1688 /* Finished with this frame, so prepare for next */
1689 self
->tx_fifo
.ptr
++;
1690 self
->tx_fifo
.len
--;
1692 /* Any frames to be sent back-to-back? */
1693 if (self
->tx_fifo
.len
)
1695 ali_ircc_dma_xmit(self
);
1697 /* Not finished yet! */
1701 { /* Reset Tx FIFO info */
1702 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1703 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1706 /* Make sure we have room for more frames */
1707 if (self
->tx_fifo
.free
< MAX_TX_WINDOW
) {
1708 /* Not busy transmitting anymore */
1709 /* Tell the network layer, that we can accept more frames */
1710 netif_wake_queue(self
->netdev
);
1713 switch_bank(iobase
, BANK0
);
1715 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1720 * Function ali_ircc_dma_receive (self)
1722 * Get ready for receiving a frame. The device will initiate a DMA
1723 * if it starts to receive a frame.
1726 static int ali_ircc_dma_receive(struct ali_ircc_cb
*self
)
1730 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1732 iobase
= self
->io
.fir_base
;
1734 /* Reset Tx FIFO info */
1735 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1736 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1739 switch_bank(iobase
, BANK1
);
1740 outb(inb(iobase
+FIR_CR
) & ~CR_DMA_EN
, iobase
+FIR_CR
);
1742 /* Reset Message Count */
1743 switch_bank(iobase
, BANK0
);
1744 outb(0x07, iobase
+FIR_LSR
);
1746 self
->rcvFramesOverflow
= FALSE
;
1748 self
->LineStatus
= inb(iobase
+FIR_LSR
) ;
1750 /* Reset Rx FIFO info */
1751 self
->io
.direction
= IO_RECV
;
1752 self
->rx_buff
.data
= self
->rx_buff
.head
;
1755 // switch_bank(iobase, BANK0);
1756 outb(LCR_A_FIFO_RESET
, iobase
+FIR_LCR_A
);
1758 self
->st_fifo
.len
= self
->st_fifo
.pending_bytes
= 0;
1759 self
->st_fifo
.tail
= self
->st_fifo
.head
= 0;
1761 irda_setup_dma(self
->io
.dma
, self
->rx_buff_dma
, self
->rx_buff
.truesize
,
1764 /* Set Receive Mode,Brick Wall */
1765 //switch_bank(iobase, BANK0);
1766 tmp
= inb(iobase
+FIR_LCR_B
);
1767 outb((unsigned char)(tmp
&0x3f) | LCR_B_RX_MODE
| LCR_B_BW
, iobase
+ FIR_LCR_B
); // 2000/12/1 05:16PM
1768 IRDA_DEBUG(1, "%s(), *** Change To RX mode: FIR_LCR_B = 0x%x *** \n", __func__
, inb(iobase
+FIR_LCR_B
));
1770 /* Set Rx Threshold */
1771 switch_bank(iobase
, BANK1
);
1772 outb(RX_FIFO_Threshold
, iobase
+FIR_FIFO_TR
);
1773 outb(RX_DMA_Threshold
, iobase
+FIR_DMA_TR
);
1775 /* Enable DMA and Burst Mode */
1776 // switch_bank(iobase, BANK1);
1777 outb(CR_DMA_EN
| CR_DMA_BURST
, iobase
+FIR_CR
);
1779 switch_bank(iobase
, BANK0
);
1780 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1784 static int ali_ircc_dma_receive_complete(struct ali_ircc_cb
*self
)
1786 struct st_fifo
*st_fifo
;
1787 struct sk_buff
*skb
;
1788 __u8 status
, MessageCount
;
1789 int len
, i
, iobase
, val
;
1791 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1793 st_fifo
= &self
->st_fifo
;
1794 iobase
= self
->io
.fir_base
;
1796 switch_bank(iobase
, BANK0
);
1797 MessageCount
= inb(iobase
+ FIR_LSR
)&0x07;
1799 if (MessageCount
> 0)
1800 IRDA_DEBUG(0, "%s(), Messsage count = %d,\n", __func__
, MessageCount
);
1802 for (i
=0; i
<=MessageCount
; i
++)
1805 switch_bank(iobase
, BANK0
);
1806 status
= inb(iobase
+FIR_LSR
);
1808 switch_bank(iobase
, BANK2
);
1809 len
= inb(iobase
+FIR_RX_DSR_HI
) & 0x0f;
1811 len
|= inb(iobase
+FIR_RX_DSR_LO
);
1813 IRDA_DEBUG(1, "%s(), RX Length = 0x%.2x,\n", __func__
, len
);
1814 IRDA_DEBUG(1, "%s(), RX Status = 0x%.2x,\n", __func__
, status
);
1816 if (st_fifo
->tail
>= MAX_RX_WINDOW
) {
1817 IRDA_DEBUG(0, "%s(), window is full!\n", __func__
);
1821 st_fifo
->entries
[st_fifo
->tail
].status
= status
;
1822 st_fifo
->entries
[st_fifo
->tail
].len
= len
;
1823 st_fifo
->pending_bytes
+= len
;
1828 for (i
=0; i
<=MessageCount
; i
++)
1830 /* Get first entry */
1831 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1832 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1833 st_fifo
->pending_bytes
-= len
;
1837 /* Check for errors */
1838 if ((status
& 0xd8) || self
->rcvFramesOverflow
|| (len
==0))
1840 IRDA_DEBUG(0,"%s(), ************* RX Errors ************ \n", __func__
);
1843 self
->netdev
->stats
.rx_errors
++;
1845 self
->rx_buff
.data
+= len
;
1847 if (status
& LSR_FIFO_UR
)
1849 self
->netdev
->stats
.rx_frame_errors
++;
1850 IRDA_DEBUG(0,"%s(), ************* FIFO Errors ************ \n", __func__
);
1852 if (status
& LSR_FRAME_ERROR
)
1854 self
->netdev
->stats
.rx_frame_errors
++;
1855 IRDA_DEBUG(0,"%s(), ************* FRAME Errors ************ \n", __func__
);
1858 if (status
& LSR_CRC_ERROR
)
1860 self
->netdev
->stats
.rx_crc_errors
++;
1861 IRDA_DEBUG(0,"%s(), ************* CRC Errors ************ \n", __func__
);
1864 if(self
->rcvFramesOverflow
)
1866 self
->netdev
->stats
.rx_frame_errors
++;
1867 IRDA_DEBUG(0,"%s(), ************* Overran DMA buffer ************ \n", __func__
);
1871 self
->netdev
->stats
.rx_frame_errors
++;
1872 IRDA_DEBUG(0,"%s(), ********** Receive Frame Size = 0 ********* \n", __func__
);
1878 if (st_fifo
->pending_bytes
< 32)
1880 switch_bank(iobase
, BANK0
);
1881 val
= inb(iobase
+FIR_BSR
);
1882 if ((val
& BSR_FIFO_NOT_EMPTY
)== 0x80)
1884 IRDA_DEBUG(0, "%s(), ************* BSR_FIFO_NOT_EMPTY ************ \n", __func__
);
1886 /* Put this entry back in fifo */
1889 st_fifo
->pending_bytes
+= len
;
1890 st_fifo
->entries
[st_fifo
->head
].status
= status
;
1891 st_fifo
->entries
[st_fifo
->head
].len
= len
;
1894 * DMA not finished yet, so try again
1895 * later, set timer value, resolution
1899 switch_bank(iobase
, BANK1
);
1900 outb(TIMER_IIR_500
, iobase
+FIR_TIMER_IIR
); // 2001/1/2 05:07PM
1903 outb(inb(iobase
+FIR_CR
) | CR_TIMER_EN
, iobase
+FIR_CR
);
1905 return FALSE
; /* I'll be back! */
1910 * Remember the time we received this frame, so we can
1911 * reduce the min turn time a bit since we will know
1912 * how much time we have used for protocol processing
1914 do_gettimeofday(&self
->stamp
);
1916 skb
= dev_alloc_skb(len
+1);
1919 IRDA_WARNING("%s(), memory squeeze, "
1920 "dropping frame.\n",
1922 self
->netdev
->stats
.rx_dropped
++;
1927 /* Make sure IP header gets aligned */
1928 skb_reserve(skb
, 1);
1930 /* Copy frame without CRC, CRC is removed by hardware*/
1932 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
);
1934 /* Move to next frame */
1935 self
->rx_buff
.data
+= len
;
1936 self
->netdev
->stats
.rx_bytes
+= len
;
1937 self
->netdev
->stats
.rx_packets
++;
1939 skb
->dev
= self
->netdev
;
1940 skb_reset_mac_header(skb
);
1941 skb
->protocol
= htons(ETH_P_IRDA
);
1946 switch_bank(iobase
, BANK0
);
1948 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1955 * Function ali_ircc_sir_hard_xmit (skb, dev)
1957 * Transmit the frame!
1960 static int ali_ircc_sir_hard_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1962 struct ali_ircc_cb
*self
;
1963 unsigned long flags
;
1967 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
1969 IRDA_ASSERT(dev
!= NULL
, return 0;);
1971 self
= netdev_priv(dev
);
1972 IRDA_ASSERT(self
!= NULL
, return 0;);
1974 iobase
= self
->io
.sir_base
;
1976 netif_stop_queue(dev
);
1978 /* Make sure tests *& speed change are atomic */
1979 spin_lock_irqsave(&self
->lock
, flags
);
1981 /* Note : you should make sure that speed changes are not going
1982 * to corrupt any outgoing frame. Look at nsc-ircc for the gory
1983 * details - Jean II */
1985 /* Check if we need to change the speed */
1986 speed
= irda_get_next_speed(skb
);
1987 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
1988 /* Check for empty frame */
1990 ali_ircc_change_speed(self
, speed
);
1991 dev
->trans_start
= jiffies
;
1992 spin_unlock_irqrestore(&self
->lock
, flags
);
1996 self
->new_speed
= speed
;
1999 /* Init tx buffer */
2000 self
->tx_buff
.data
= self
->tx_buff
.head
;
2002 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
2003 self
->tx_buff
.len
= async_wrap_skb(skb
, self
->tx_buff
.data
,
2004 self
->tx_buff
.truesize
);
2006 self
->netdev
->stats
.tx_bytes
+= self
->tx_buff
.len
;
2008 /* Turn on transmit finished interrupt. Will fire immediately! */
2009 outb(UART_IER_THRI
, iobase
+UART_IER
);
2011 dev
->trans_start
= jiffies
;
2012 spin_unlock_irqrestore(&self
->lock
, flags
);
2016 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2023 * Function ali_ircc_net_ioctl (dev, rq, cmd)
2025 * Process IOCTL commands for this device
2028 static int ali_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
2030 struct if_irda_req
*irq
= (struct if_irda_req
*) rq
;
2031 struct ali_ircc_cb
*self
;
2032 unsigned long flags
;
2035 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
2037 IRDA_ASSERT(dev
!= NULL
, return -1;);
2039 self
= netdev_priv(dev
);
2041 IRDA_ASSERT(self
!= NULL
, return -1;);
2043 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __func__
, dev
->name
, cmd
);
2046 case SIOCSBANDWIDTH
: /* Set bandwidth */
2047 IRDA_DEBUG(1, "%s(), SIOCSBANDWIDTH\n", __func__
);
2049 * This function will also be used by IrLAP to change the
2050 * speed, so we still must allow for speed change within
2051 * interrupt context.
2053 if (!in_interrupt() && !capable(CAP_NET_ADMIN
))
2056 spin_lock_irqsave(&self
->lock
, flags
);
2057 ali_ircc_change_speed(self
, irq
->ifr_baudrate
);
2058 spin_unlock_irqrestore(&self
->lock
, flags
);
2060 case SIOCSMEDIABUSY
: /* Set media busy */
2061 IRDA_DEBUG(1, "%s(), SIOCSMEDIABUSY\n", __func__
);
2062 if (!capable(CAP_NET_ADMIN
))
2064 irda_device_set_media_busy(self
->netdev
, TRUE
);
2066 case SIOCGRECEIVING
: /* Check if we are receiving right now */
2067 IRDA_DEBUG(2, "%s(), SIOCGRECEIVING\n", __func__
);
2068 /* This is protected */
2069 irq
->ifr_receiving
= ali_ircc_is_receiving(self
);
2075 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2081 * Function ali_ircc_is_receiving (self)
2083 * Return TRUE is we are currently receiving a frame
2086 static int ali_ircc_is_receiving(struct ali_ircc_cb
*self
)
2088 unsigned long flags
;
2092 IRDA_DEBUG(2, "%s(), ---------------- Start -----------------\n", __func__
);
2094 IRDA_ASSERT(self
!= NULL
, return FALSE
;);
2096 spin_lock_irqsave(&self
->lock
, flags
);
2098 if (self
->io
.speed
> 115200)
2100 iobase
= self
->io
.fir_base
;
2102 switch_bank(iobase
, BANK1
);
2103 if((inb(iobase
+FIR_FIFO_FR
) & 0x3f) != 0)
2105 /* We are receiving something */
2106 IRDA_DEBUG(1, "%s(), We are receiving something\n", __func__
);
2109 switch_bank(iobase
, BANK0
);
2113 status
= (self
->rx_buff
.state
!= OUTSIDE_FRAME
);
2116 spin_unlock_irqrestore(&self
->lock
, flags
);
2118 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2123 static int ali_ircc_suspend(struct platform_device
*dev
, pm_message_t state
)
2125 struct ali_ircc_cb
*self
= platform_get_drvdata(dev
);
2127 IRDA_MESSAGE("%s, Suspending\n", ALI_IRCC_DRIVER_NAME
);
2129 if (self
->io
.suspended
)
2132 ali_ircc_net_close(self
->netdev
);
2134 self
->io
.suspended
= 1;
2139 static int ali_ircc_resume(struct platform_device
*dev
)
2141 struct ali_ircc_cb
*self
= platform_get_drvdata(dev
);
2143 if (!self
->io
.suspended
)
2146 ali_ircc_net_open(self
->netdev
);
2148 IRDA_MESSAGE("%s, Waking up\n", ALI_IRCC_DRIVER_NAME
);
2150 self
->io
.suspended
= 0;
2155 /* ALi Chip Function */
2157 static void SetCOMInterrupts(struct ali_ircc_cb
*self
, unsigned char enable
)
2160 unsigned char newMask
;
2162 int iobase
= self
->io
.fir_base
; /* or sir_base */
2164 IRDA_DEBUG(2, "%s(), -------- Start -------- ( Enable = %d )\n", __func__
, enable
);
2166 /* Enable the interrupt which we wish to */
2168 if (self
->io
.direction
== IO_XMIT
)
2170 if (self
->io
.speed
> 115200) /* FIR, MIR */
2172 newMask
= self
->ier
;
2176 newMask
= UART_IER_THRI
| UART_IER_RDI
;
2180 if (self
->io
.speed
> 115200) /* FIR, MIR */
2182 newMask
= self
->ier
;
2186 newMask
= UART_IER_RDI
;
2190 else /* Disable all the interrupts */
2196 //SIR and FIR has different registers
2197 if (self
->io
.speed
> 115200)
2199 switch_bank(iobase
, BANK0
);
2200 outb(newMask
, iobase
+FIR_IER
);
2203 outb(newMask
, iobase
+UART_IER
);
2205 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2208 static void SIR2FIR(int iobase
)
2210 //unsigned char tmp;
2212 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
2214 /* Already protected (change_speed() or setup()), no need to lock.
2217 outb(0x28, iobase
+UART_MCR
);
2218 outb(0x68, iobase
+UART_MCR
);
2219 outb(0x88, iobase
+UART_MCR
);
2221 outb(0x60, iobase
+FIR_MCR
); /* Master Reset */
2222 outb(0x20, iobase
+FIR_MCR
); /* Master Interrupt Enable */
2224 //tmp = inb(iobase+FIR_LCR_B); /* SIP enable */
2226 //outb(tmp, iobase+FIR_LCR_B);
2228 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
2231 static void FIR2SIR(int iobase
)
2235 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
2237 /* Already protected (change_speed() or setup()), no need to lock.
2240 outb(0x20, iobase
+FIR_MCR
); /* IRQ to low */
2241 outb(0x00, iobase
+UART_IER
);
2243 outb(0xA0, iobase
+FIR_MCR
); /* Don't set master reset */
2244 outb(0x00, iobase
+UART_FCR
);
2245 outb(0x07, iobase
+UART_FCR
);
2247 val
= inb(iobase
+UART_RX
);
2248 val
= inb(iobase
+UART_LSR
);
2249 val
= inb(iobase
+UART_MSR
);
2251 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
2254 MODULE_AUTHOR("Benjamin Kong <benjamin_kong@ali.com.tw>");
2255 MODULE_DESCRIPTION("ALi FIR Controller Driver");
2256 MODULE_LICENSE("GPL");
2257 MODULE_ALIAS("platform:" ALI_IRCC_DRIVER_NAME
);
2260 module_param_array(io
, int, NULL
, 0);
2261 MODULE_PARM_DESC(io
, "Base I/O addresses");
2262 module_param_array(irq
, int, NULL
, 0);
2263 MODULE_PARM_DESC(irq
, "IRQ lines");
2264 module_param_array(dma
, int, NULL
, 0);
2265 MODULE_PARM_DESC(dma
, "DMA channels");
2267 module_init(ali_ircc_init
);
2268 module_exit(ali_ircc_cleanup
);