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>
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>
42 #include <asm/byteorder.h>
44 #include <net/irda/wrapper.h>
45 #include <net/irda/irda.h>
46 #include <net/irda/irda_device.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
,
63 .name
= ALI_IRCC_DRIVER_NAME
,
68 /* Module parameters */
69 static int qos_mtt_bits
= 0x07; /* 1 ms or more */
71 /* Use BIOS settions by default, but user may supply module parameters */
72 static unsigned int io
[] = { ~0, ~0, ~0, ~0 };
73 static unsigned int irq
[] = { 0, 0, 0, 0 };
74 static unsigned int dma
[] = { 0, 0, 0, 0 };
76 static int ali_ircc_probe_53(ali_chip_t
*chip
, chipio_t
*info
);
77 static int ali_ircc_init_43(ali_chip_t
*chip
, chipio_t
*info
);
78 static int ali_ircc_init_53(ali_chip_t
*chip
, chipio_t
*info
);
80 /* These are the currently known ALi south-bridge chipsets, the only one difference
81 * is that M1543C doesn't support HP HDSL-3600
83 static ali_chip_t chips
[] =
85 { "M1543", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x43, ali_ircc_probe_53
, ali_ircc_init_43
},
86 { "M1535", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x53, ali_ircc_probe_53
, ali_ircc_init_53
},
87 { "M1563", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x63, ali_ircc_probe_53
, ali_ircc_init_53
},
91 /* Max 4 instances for now */
92 static struct ali_ircc_cb
*dev_self
[] = { NULL
, NULL
, NULL
, NULL
};
95 static char *dongle_types
[] = {
99 "No dongle connected",
102 /* Some prototypes */
103 static int ali_ircc_open(int i
, chipio_t
*info
);
105 static int ali_ircc_close(struct ali_ircc_cb
*self
);
107 static int ali_ircc_setup(chipio_t
*info
);
108 static int ali_ircc_is_receiving(struct ali_ircc_cb
*self
);
109 static int ali_ircc_net_open(struct net_device
*dev
);
110 static int ali_ircc_net_close(struct net_device
*dev
);
111 static int ali_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
112 static void ali_ircc_change_speed(struct ali_ircc_cb
*self
, __u32 baud
);
115 static netdev_tx_t
ali_ircc_sir_hard_xmit(struct sk_buff
*skb
,
116 struct net_device
*dev
);
117 static irqreturn_t
ali_ircc_sir_interrupt(struct ali_ircc_cb
*self
);
118 static void ali_ircc_sir_receive(struct ali_ircc_cb
*self
);
119 static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb
*self
);
120 static int ali_ircc_sir_write(int iobase
, int fifo_size
, __u8
*buf
, int len
);
121 static void ali_ircc_sir_change_speed(struct ali_ircc_cb
*priv
, __u32 speed
);
124 static netdev_tx_t
ali_ircc_fir_hard_xmit(struct sk_buff
*skb
,
125 struct net_device
*dev
);
126 static void ali_ircc_fir_change_speed(struct ali_ircc_cb
*priv
, __u32 speed
);
127 static irqreturn_t
ali_ircc_fir_interrupt(struct ali_ircc_cb
*self
);
128 static int ali_ircc_dma_receive(struct ali_ircc_cb
*self
);
129 static int ali_ircc_dma_receive_complete(struct ali_ircc_cb
*self
);
130 static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb
*self
);
131 static void ali_ircc_dma_xmit(struct ali_ircc_cb
*self
);
134 static int ali_ircc_read_dongle_id (int i
, chipio_t
*info
);
135 static void ali_ircc_change_dongle_speed(struct ali_ircc_cb
*priv
, int speed
);
137 /* ALi chip function */
138 static void SIR2FIR(int iobase
);
139 static void FIR2SIR(int iobase
);
140 static void SetCOMInterrupts(struct ali_ircc_cb
*self
, unsigned char enable
);
143 * Function ali_ircc_init ()
145 * Initialize chip. Find out whay kinds of chips we are dealing with
146 * and their configuration registers address
148 static int __init
ali_ircc_init(void)
157 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
159 ret
= platform_driver_register(&ali_ircc_driver
);
161 IRDA_ERROR("%s, Can't register driver!\n",
162 ALI_IRCC_DRIVER_NAME
);
168 /* Probe for all the ALi chipsets we know about */
169 for (chip
= chips
; chip
->name
; chip
++, i
++)
171 IRDA_DEBUG(2, "%s(), Probing for %s ...\n", __func__
, chip
->name
);
173 /* Try all config registers for this chip */
174 for (cfg
=0; cfg
<2; cfg
++)
176 cfg_base
= chip
->cfg
[cfg
];
180 memset(&info
, 0, sizeof(chipio_t
));
181 info
.cfg_base
= cfg_base
;
182 info
.fir_base
= io
[i
];
187 /* Enter Configuration */
188 outb(chip
->entr1
, cfg_base
);
189 outb(chip
->entr2
, cfg_base
);
191 /* Select Logical Device 5 Registers (UART2) */
192 outb(0x07, cfg_base
);
193 outb(0x05, cfg_base
+1);
195 /* Read Chip Identification Register */
196 outb(chip
->cid_index
, cfg_base
);
197 reg
= inb(cfg_base
+1);
199 if (reg
== chip
->cid_value
)
201 IRDA_DEBUG(2, "%s(), Chip found at 0x%03x\n", __func__
, cfg_base
);
203 outb(0x1F, cfg_base
);
204 revision
= inb(cfg_base
+1);
205 IRDA_DEBUG(2, "%s(), Found %s chip, revision=%d\n", __func__
,
206 chip
->name
, revision
);
209 * If the user supplies the base address, then
210 * we init the chip, if not we probe the values
215 chip
->init(chip
, &info
);
219 chip
->probe(chip
, &info
);
222 if (ali_ircc_open(i
, &info
) == 0)
228 IRDA_DEBUG(2, "%s(), No %s chip at 0x%03x\n", __func__
, chip
->name
, cfg_base
);
230 /* Exit configuration */
231 outb(0xbb, cfg_base
);
235 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
238 platform_driver_unregister(&ali_ircc_driver
);
244 * Function ali_ircc_cleanup ()
246 * Close all configured chips
249 static void __exit
ali_ircc_cleanup(void)
253 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
255 for (i
=0; i
< ARRAY_SIZE(dev_self
); i
++) {
257 ali_ircc_close(dev_self
[i
]);
260 platform_driver_unregister(&ali_ircc_driver
);
262 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
265 static const struct net_device_ops ali_ircc_sir_ops
= {
266 .ndo_open
= ali_ircc_net_open
,
267 .ndo_stop
= ali_ircc_net_close
,
268 .ndo_start_xmit
= ali_ircc_sir_hard_xmit
,
269 .ndo_do_ioctl
= ali_ircc_net_ioctl
,
272 static const struct net_device_ops ali_ircc_fir_ops
= {
273 .ndo_open
= ali_ircc_net_open
,
274 .ndo_stop
= ali_ircc_net_close
,
275 .ndo_start_xmit
= ali_ircc_fir_hard_xmit
,
276 .ndo_do_ioctl
= ali_ircc_net_ioctl
,
280 * Function ali_ircc_open (int i, chipio_t *inf)
282 * Open driver instance
285 static int ali_ircc_open(int i
, chipio_t
*info
)
287 struct net_device
*dev
;
288 struct ali_ircc_cb
*self
;
292 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
294 if (i
>= ARRAY_SIZE(dev_self
)) {
295 IRDA_ERROR("%s(), maximum number of supported chips reached!\n",
300 /* Set FIR FIFO and DMA Threshold */
301 if ((ali_ircc_setup(info
)) == -1)
304 dev
= alloc_irdadev(sizeof(*self
));
306 IRDA_ERROR("%s(), can't allocate memory for control block!\n",
311 self
= netdev_priv(dev
);
313 spin_lock_init(&self
->lock
);
315 /* Need to store self somewhere */
320 self
->io
.cfg_base
= info
->cfg_base
; /* In ali_ircc_probe_53 assign */
321 self
->io
.fir_base
= info
->fir_base
; /* info->sir_base = info->fir_base */
322 self
->io
.sir_base
= info
->sir_base
; /* ALi SIR and FIR use the same address */
323 self
->io
.irq
= info
->irq
;
324 self
->io
.fir_ext
= CHIP_IO_EXTENT
;
325 self
->io
.dma
= info
->dma
;
326 self
->io
.fifo_size
= 16; /* SIR: 16, FIR: 32 Benjamin 2000/11/1 */
328 /* Reserve the ioports that we need */
329 if (!request_region(self
->io
.fir_base
, self
->io
.fir_ext
,
330 ALI_IRCC_DRIVER_NAME
)) {
331 IRDA_WARNING("%s(), can't get iobase of 0x%03x\n", __func__
,
337 /* Initialize QoS for this device */
338 irda_init_max_qos_capabilies(&self
->qos
);
340 /* The only value we must override it the baudrate */
341 self
->qos
.baud_rate
.bits
= IR_9600
|IR_19200
|IR_38400
|IR_57600
|
342 IR_115200
|IR_576000
|IR_1152000
|(IR_4000000
<< 8); // benjamin 2000/11/8 05:27PM
344 self
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
346 irda_qos_bits_to_value(&self
->qos
);
348 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
349 self
->rx_buff
.truesize
= 14384;
350 self
->tx_buff
.truesize
= 14384;
352 /* Allocate memory if needed */
354 dma_alloc_coherent(NULL
, self
->rx_buff
.truesize
,
355 &self
->rx_buff_dma
, GFP_KERNEL
);
356 if (self
->rx_buff
.head
== NULL
) {
360 memset(self
->rx_buff
.head
, 0, self
->rx_buff
.truesize
);
363 dma_alloc_coherent(NULL
, self
->tx_buff
.truesize
,
364 &self
->tx_buff_dma
, GFP_KERNEL
);
365 if (self
->tx_buff
.head
== NULL
) {
369 memset(self
->tx_buff
.head
, 0, self
->tx_buff
.truesize
);
371 self
->rx_buff
.in_frame
= FALSE
;
372 self
->rx_buff
.state
= OUTSIDE_FRAME
;
373 self
->tx_buff
.data
= self
->tx_buff
.head
;
374 self
->rx_buff
.data
= self
->rx_buff
.head
;
376 /* Reset Tx queue info */
377 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
378 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
380 /* Override the network functions we need to use */
381 dev
->netdev_ops
= &ali_ircc_sir_ops
;
383 err
= register_netdev(dev
);
385 IRDA_ERROR("%s(), register_netdev() failed!\n", __func__
);
388 IRDA_MESSAGE("IrDA: Registered device %s\n", dev
->name
);
390 /* Check dongle id */
391 dongle_id
= ali_ircc_read_dongle_id(i
, info
);
392 IRDA_MESSAGE("%s(), %s, Found dongle: %s\n", __func__
,
393 ALI_IRCC_DRIVER_NAME
, dongle_types
[dongle_id
]);
395 self
->io
.dongle_id
= dongle_id
;
397 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
402 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
403 self
->tx_buff
.head
, self
->tx_buff_dma
);
405 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
406 self
->rx_buff
.head
, self
->rx_buff_dma
);
408 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
417 * Function ali_ircc_close (self)
419 * Close driver instance
422 static int __exit
ali_ircc_close(struct ali_ircc_cb
*self
)
426 IRDA_DEBUG(4, "%s(), ---------------- Start ----------------\n", __func__
);
428 IRDA_ASSERT(self
!= NULL
, return -1;);
430 iobase
= self
->io
.fir_base
;
432 /* Remove netdevice */
433 unregister_netdev(self
->netdev
);
435 /* Release the PORT that this driver is using */
436 IRDA_DEBUG(4, "%s(), Releasing Region %03x\n", __func__
, self
->io
.fir_base
);
437 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
439 if (self
->tx_buff
.head
)
440 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
441 self
->tx_buff
.head
, self
->tx_buff_dma
);
443 if (self
->rx_buff
.head
)
444 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
445 self
->rx_buff
.head
, self
->rx_buff_dma
);
447 dev_self
[self
->index
] = NULL
;
448 free_netdev(self
->netdev
);
450 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
456 * Function ali_ircc_init_43 (chip, info)
458 * Initialize the ALi M1543 chip.
460 static int ali_ircc_init_43(ali_chip_t
*chip
, chipio_t
*info
)
462 /* All controller information like I/O address, DMA channel, IRQ
470 * Function ali_ircc_init_53 (chip, info)
472 * Initialize the ALi M1535 chip.
474 static int ali_ircc_init_53(ali_chip_t
*chip
, chipio_t
*info
)
476 /* All controller information like I/O address, DMA channel, IRQ
484 * Function ali_ircc_probe_53 (chip, info)
486 * Probes for the ALi M1535D or M1535
488 static int ali_ircc_probe_53(ali_chip_t
*chip
, chipio_t
*info
)
490 int cfg_base
= info
->cfg_base
;
493 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
495 /* Enter Configuration */
496 outb(chip
->entr1
, cfg_base
);
497 outb(chip
->entr2
, cfg_base
);
499 /* Select Logical Device 5 Registers (UART2) */
500 outb(0x07, cfg_base
);
501 outb(0x05, cfg_base
+1);
503 /* Read address control register */
504 outb(0x60, cfg_base
);
505 hi
= inb(cfg_base
+1);
506 outb(0x61, cfg_base
);
507 low
= inb(cfg_base
+1);
508 info
->fir_base
= (hi
<<8) + low
;
510 info
->sir_base
= info
->fir_base
;
512 IRDA_DEBUG(2, "%s(), probing fir_base=0x%03x\n", __func__
, info
->fir_base
);
514 /* Read IRQ control register */
515 outb(0x70, cfg_base
);
516 reg
= inb(cfg_base
+1);
517 info
->irq
= reg
& 0x0f;
518 IRDA_DEBUG(2, "%s(), probing irq=%d\n", __func__
, info
->irq
);
520 /* Read DMA channel */
521 outb(0x74, cfg_base
);
522 reg
= inb(cfg_base
+1);
523 info
->dma
= reg
& 0x07;
525 if(info
->dma
== 0x04)
526 IRDA_WARNING("%s(), No DMA channel assigned !\n", __func__
);
528 IRDA_DEBUG(2, "%s(), probing dma=%d\n", __func__
, info
->dma
);
530 /* Read Enabled Status */
531 outb(0x30, cfg_base
);
532 reg
= inb(cfg_base
+1);
533 info
->enabled
= (reg
& 0x80) && (reg
& 0x01);
534 IRDA_DEBUG(2, "%s(), probing enabled=%d\n", __func__
, info
->enabled
);
536 /* Read Power Status */
537 outb(0x22, cfg_base
);
538 reg
= inb(cfg_base
+1);
539 info
->suspended
= (reg
& 0x20);
540 IRDA_DEBUG(2, "%s(), probing suspended=%d\n", __func__
, info
->suspended
);
542 /* Exit configuration */
543 outb(0xbb, cfg_base
);
545 IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__
);
551 * Function ali_ircc_setup (info)
553 * Set FIR FIFO and DMA Threshold
554 * Returns non-negative on success.
557 static int ali_ircc_setup(chipio_t
*info
)
561 int iobase
= info
->fir_base
;
563 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
565 /* Locking comments :
566 * Most operations here need to be protected. We are called before
567 * the device instance is created in ali_ircc_open(), therefore
568 * nobody can bother us - Jean II */
570 /* Switch to FIR space */
574 outb(0x40, iobase
+FIR_MCR
); // benjamin 2000/11/30 11:45AM
576 /* Read FIR ID Version Register */
577 switch_bank(iobase
, BANK3
);
578 version
= inb(iobase
+FIR_ID_VR
);
580 /* Should be 0x00 in the M1535/M1535D */
583 IRDA_ERROR("%s, Wrong chip version %02x\n",
584 ALI_IRCC_DRIVER_NAME
, version
);
588 /* Set FIR FIFO Threshold Register */
589 switch_bank(iobase
, BANK1
);
590 outb(RX_FIFO_Threshold
, iobase
+FIR_FIFO_TR
);
592 /* Set FIR DMA Threshold Register */
593 outb(RX_DMA_Threshold
, iobase
+FIR_DMA_TR
);
596 switch_bank(iobase
, BANK2
);
597 outb(inb(iobase
+FIR_IRDA_CR
) | IRDA_CR_CRC
, iobase
+FIR_IRDA_CR
);
599 /* NDIS driver set TX Length here BANK2 Alias 3, Alias4*/
601 /* Switch to Bank 0 */
602 switch_bank(iobase
, BANK0
);
604 tmp
= inb(iobase
+FIR_LCR_B
);
605 tmp
&=~0x20; // disable SIP
606 tmp
|= 0x80; // these two steps make RX mode
608 outb(tmp
, iobase
+FIR_LCR_B
);
610 /* Disable Interrupt */
611 outb(0x00, iobase
+FIR_IER
);
614 /* Switch to SIR space */
617 IRDA_MESSAGE("%s, driver loaded (Benjamin Kong)\n",
618 ALI_IRCC_DRIVER_NAME
);
620 /* Enable receive interrupts */
621 // outb(UART_IER_RDI, iobase+UART_IER); //benjamin 2000/11/23 01:25PM
622 // Turn on the interrupts in ali_ircc_net_open
624 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
630 * Function ali_ircc_read_dongle_id (int index, info)
632 * Try to read dongle indentification. This procedure needs to be executed
633 * once after power-on/reset. It also needs to be used whenever you suspect
634 * that the user may have plugged/unplugged the IrDA Dongle.
636 static int ali_ircc_read_dongle_id (int i
, chipio_t
*info
)
639 int cfg_base
= info
->cfg_base
;
641 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
643 /* Enter Configuration */
644 outb(chips
[i
].entr1
, cfg_base
);
645 outb(chips
[i
].entr2
, cfg_base
);
647 /* Select Logical Device 5 Registers (UART2) */
648 outb(0x07, cfg_base
);
649 outb(0x05, cfg_base
+1);
652 outb(0xf0, cfg_base
);
653 reg
= inb(cfg_base
+1);
654 dongle_id
= ((reg
>>6)&0x02) | ((reg
>>5)&0x01);
655 IRDA_DEBUG(2, "%s(), probing dongle_id=%d, dongle_types=%s\n", __func__
,
656 dongle_id
, dongle_types
[dongle_id
]);
658 /* Exit configuration */
659 outb(0xbb, cfg_base
);
661 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
667 * Function ali_ircc_interrupt (irq, dev_id, regs)
669 * An interrupt from the chip has arrived. Time to do some work
672 static irqreturn_t
ali_ircc_interrupt(int irq
, void *dev_id
)
674 struct net_device
*dev
= dev_id
;
675 struct ali_ircc_cb
*self
;
678 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
680 self
= netdev_priv(dev
);
682 spin_lock(&self
->lock
);
684 /* Dispatch interrupt handler for the current speed */
685 if (self
->io
.speed
> 115200)
686 ret
= ali_ircc_fir_interrupt(self
);
688 ret
= ali_ircc_sir_interrupt(self
);
690 spin_unlock(&self
->lock
);
692 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
696 * Function ali_ircc_fir_interrupt(irq, struct ali_ircc_cb *self)
698 * Handle MIR/FIR interrupt
701 static irqreturn_t
ali_ircc_fir_interrupt(struct ali_ircc_cb
*self
)
703 __u8 eir
, OldMessageCount
;
706 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
708 iobase
= self
->io
.fir_base
;
710 switch_bank(iobase
, BANK0
);
711 self
->InterruptID
= inb(iobase
+FIR_IIR
);
712 self
->BusStatus
= inb(iobase
+FIR_BSR
);
714 OldMessageCount
= (self
->LineStatus
+ 1) & 0x07;
715 self
->LineStatus
= inb(iobase
+FIR_LSR
);
716 //self->ier = inb(iobase+FIR_IER); 2000/12/1 04:32PM
717 eir
= self
->InterruptID
& self
->ier
; /* Mask out the interesting ones */
719 IRDA_DEBUG(1, "%s(), self->InterruptID = %x\n", __func__
,self
->InterruptID
);
720 IRDA_DEBUG(1, "%s(), self->LineStatus = %x\n", __func__
,self
->LineStatus
);
721 IRDA_DEBUG(1, "%s(), self->ier = %x\n", __func__
,self
->ier
);
722 IRDA_DEBUG(1, "%s(), eir = %x\n", __func__
,eir
);
724 /* Disable interrupts */
725 SetCOMInterrupts(self
, FALSE
);
727 /* Tx or Rx Interrupt */
731 if (self
->io
.direction
== IO_XMIT
) /* TX */
733 IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Tx) *******\n", __func__
);
735 if(ali_ircc_dma_xmit_complete(self
))
737 if (irda_device_txqueue_empty(self
->netdev
))
739 /* Prepare for receive */
740 ali_ircc_dma_receive(self
);
752 IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Rx) *******\n", __func__
);
754 if(OldMessageCount
> ((self
->LineStatus
+1) & 0x07))
756 self
->rcvFramesOverflow
= TRUE
;
757 IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE ********\n", __func__
);
760 if (ali_ircc_dma_receive_complete(self
))
762 IRDA_DEBUG(1, "%s(), ******* receive complete ********\n", __func__
);
768 IRDA_DEBUG(1, "%s(), ******* Not receive complete ********\n", __func__
);
770 self
->ier
= IER_EOM
| IER_TIMER
;
775 /* Timer Interrupt */
776 else if (eir
& IIR_TIMER
)
778 if(OldMessageCount
> ((self
->LineStatus
+1) & 0x07))
780 self
->rcvFramesOverflow
= TRUE
;
781 IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE *******\n", __func__
);
784 switch_bank(iobase
, BANK1
);
785 tmp
= inb(iobase
+FIR_CR
);
786 outb( tmp
& ~CR_TIMER_EN
, iobase
+FIR_CR
);
788 /* Check if this is a Tx timer interrupt */
789 if (self
->io
.direction
== IO_XMIT
)
791 ali_ircc_dma_xmit(self
);
793 /* Interrupt on EOM */
799 if(ali_ircc_dma_receive_complete(self
))
805 self
->ier
= IER_EOM
| IER_TIMER
;
810 /* Restore Interrupt */
811 SetCOMInterrupts(self
, TRUE
);
813 IRDA_DEBUG(1, "%s(), ----------------- End ---------------\n", __func__
);
814 return IRQ_RETVAL(eir
);
818 * Function ali_ircc_sir_interrupt (irq, self, eir)
820 * Handle SIR interrupt
823 static irqreturn_t
ali_ircc_sir_interrupt(struct ali_ircc_cb
*self
)
828 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
830 iobase
= self
->io
.sir_base
;
832 iir
= inb(iobase
+UART_IIR
) & UART_IIR_ID
;
834 /* Clear interrupt */
835 lsr
= inb(iobase
+UART_LSR
);
837 IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n", __func__
,
843 IRDA_DEBUG(2, "%s(), RLSI\n", __func__
);
846 /* Receive interrupt */
847 ali_ircc_sir_receive(self
);
850 if (lsr
& UART_LSR_THRE
)
852 /* Transmitter ready for data */
853 ali_ircc_sir_write_wakeup(self
);
857 IRDA_DEBUG(0, "%s(), unhandled IIR=%#x\n", __func__
, iir
);
864 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
866 return IRQ_RETVAL(iir
);
871 * Function ali_ircc_sir_receive (self)
873 * Receive one frame from the infrared port
876 static void ali_ircc_sir_receive(struct ali_ircc_cb
*self
)
881 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
882 IRDA_ASSERT(self
!= NULL
, return;);
884 iobase
= self
->io
.sir_base
;
887 * Receive all characters in Rx FIFO, unwrap and unstuff them.
888 * async_unwrap_char will deliver all found frames
891 async_unwrap_char(self
->netdev
, &self
->netdev
->stats
, &self
->rx_buff
,
892 inb(iobase
+UART_RX
));
894 /* Make sure we don't stay here too long */
895 if (boguscount
++ > 32) {
896 IRDA_DEBUG(2,"%s(), breaking!\n", __func__
);
899 } while (inb(iobase
+UART_LSR
) & UART_LSR_DR
);
901 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
905 * Function ali_ircc_sir_write_wakeup (tty)
907 * Called by the driver when there's room for more data. If we have
908 * more packets to send, we send them here.
911 static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb
*self
)
916 IRDA_ASSERT(self
!= NULL
, return;);
918 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
920 iobase
= self
->io
.sir_base
;
922 /* Finished with frame? */
923 if (self
->tx_buff
.len
> 0)
925 /* Write data left in transmit buffer */
926 actual
= ali_ircc_sir_write(iobase
, self
->io
.fifo_size
,
927 self
->tx_buff
.data
, self
->tx_buff
.len
);
928 self
->tx_buff
.data
+= actual
;
929 self
->tx_buff
.len
-= actual
;
935 /* We must wait until all data are gone */
936 while(!(inb(iobase
+UART_LSR
) & UART_LSR_TEMT
))
937 IRDA_DEBUG(1, "%s(), UART_LSR_THRE\n", __func__
);
939 IRDA_DEBUG(1, "%s(), Changing speed! self->new_speed = %d\n", __func__
, self
->new_speed
);
940 ali_ircc_change_speed(self
, self
->new_speed
);
943 // benjamin 2000/11/10 06:32PM
944 if (self
->io
.speed
> 115200)
946 IRDA_DEBUG(2, "%s(), ali_ircc_change_speed from UART_LSR_TEMT\n", __func__
);
949 // SetCOMInterrupts(self, TRUE);
955 netif_wake_queue(self
->netdev
);
958 self
->netdev
->stats
.tx_packets
++;
960 /* Turn on receive interrupts */
961 outb(UART_IER_RDI
, iobase
+UART_IER
);
964 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
967 static void ali_ircc_change_speed(struct ali_ircc_cb
*self
, __u32 baud
)
969 struct net_device
*dev
= self
->netdev
;
972 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
974 IRDA_DEBUG(2, "%s(), setting speed = %d\n", __func__
, baud
);
976 /* This function *must* be called with irq off and spin-lock.
979 iobase
= self
->io
.fir_base
;
981 SetCOMInterrupts(self
, FALSE
); // 2000/11/24 11:43AM
983 /* Go to MIR, FIR Speed */
988 ali_ircc_fir_change_speed(self
, baud
);
990 /* Install FIR xmit handler*/
991 dev
->netdev_ops
= &ali_ircc_fir_ops
;
993 /* Enable Interuupt */
994 self
->ier
= IER_EOM
; // benjamin 2000/11/20 07:24PM
996 /* Be ready for incomming frames */
997 ali_ircc_dma_receive(self
); // benajmin 2000/11/8 07:46PM not complete
999 /* Go to SIR Speed */
1002 ali_ircc_sir_change_speed(self
, baud
);
1004 /* Install SIR xmit handler*/
1005 dev
->netdev_ops
= &ali_ircc_sir_ops
;
1009 SetCOMInterrupts(self
, TRUE
); // 2000/11/24 11:43AM
1011 netif_wake_queue(self
->netdev
);
1013 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1016 static void ali_ircc_fir_change_speed(struct ali_ircc_cb
*priv
, __u32 baud
)
1020 struct ali_ircc_cb
*self
= (struct ali_ircc_cb
*) priv
;
1021 struct net_device
*dev
;
1023 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
1025 IRDA_ASSERT(self
!= NULL
, return;);
1028 iobase
= self
->io
.fir_base
;
1030 IRDA_DEBUG(1, "%s(), self->io.speed = %d, change to speed = %d\n", __func__
,self
->io
.speed
,baud
);
1032 /* Come from SIR speed */
1033 if(self
->io
.speed
<=115200)
1038 /* Update accounting for new speed */
1039 self
->io
.speed
= baud
;
1041 // Set Dongle Speed mode
1042 ali_ircc_change_dongle_speed(self
, baud
);
1044 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1048 * Function ali_sir_change_speed (self, speed)
1050 * Set speed of IrDA port to specified baudrate
1053 static void ali_ircc_sir_change_speed(struct ali_ircc_cb
*priv
, __u32 speed
)
1055 struct ali_ircc_cb
*self
= (struct ali_ircc_cb
*) priv
;
1056 unsigned long flags
;
1058 int fcr
; /* FIFO control reg */
1059 int lcr
; /* Line control reg */
1062 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
1064 IRDA_DEBUG(1, "%s(), Setting speed to: %d\n", __func__
, speed
);
1066 IRDA_ASSERT(self
!= NULL
, return;);
1068 iobase
= self
->io
.sir_base
;
1070 /* Come from MIR or FIR speed */
1071 if(self
->io
.speed
>115200)
1073 // Set Dongle Speed mode first
1074 ali_ircc_change_dongle_speed(self
, speed
);
1079 // Clear Line and Auxiluary status registers 2000/11/24 11:47AM
1081 inb(iobase
+UART_LSR
);
1082 inb(iobase
+UART_SCR
);
1084 /* Update accounting for new speed */
1085 self
->io
.speed
= speed
;
1087 spin_lock_irqsave(&self
->lock
, flags
);
1089 divisor
= 115200/speed
;
1091 fcr
= UART_FCR_ENABLE_FIFO
;
1094 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
1095 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
1096 * about this timeout since it will always be fast enough.
1098 if (self
->io
.speed
< 38400)
1099 fcr
|= UART_FCR_TRIGGER_1
;
1101 fcr
|= UART_FCR_TRIGGER_14
;
1103 /* IrDA ports use 8N1 */
1104 lcr
= UART_LCR_WLEN8
;
1106 outb(UART_LCR_DLAB
| lcr
, iobase
+UART_LCR
); /* Set DLAB */
1107 outb(divisor
& 0xff, iobase
+UART_DLL
); /* Set speed */
1108 outb(divisor
>> 8, iobase
+UART_DLM
);
1109 outb(lcr
, iobase
+UART_LCR
); /* Set 8N1 */
1110 outb(fcr
, iobase
+UART_FCR
); /* Enable FIFO's */
1112 /* without this, the connection will be broken after come back from FIR speed,
1113 but with this, the SIR connection is harder to established */
1114 outb((UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
), iobase
+UART_MCR
);
1116 spin_unlock_irqrestore(&self
->lock
, flags
);
1118 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1121 static void ali_ircc_change_dongle_speed(struct ali_ircc_cb
*priv
, int speed
)
1124 struct ali_ircc_cb
*self
= (struct ali_ircc_cb
*) priv
;
1125 int iobase
,dongle_id
;
1128 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
1130 iobase
= self
->io
.fir_base
; /* or iobase = self->io.sir_base; */
1131 dongle_id
= self
->io
.dongle_id
;
1133 /* We are already locked, no need to do it again */
1135 IRDA_DEBUG(1, "%s(), Set Speed for %s , Speed = %d\n", __func__
, dongle_types
[dongle_id
], speed
);
1137 switch_bank(iobase
, BANK2
);
1138 tmp
= inb(iobase
+FIR_IRDA_CR
);
1140 /* IBM type dongle */
1143 if(speed
== 4000000)
1146 // SD/MODE __| |__ __
1151 tmp
&= ~IRDA_CR_HDLC
; // HDLC=0
1152 tmp
|= IRDA_CR_CRC
; // CRC=1
1154 switch_bank(iobase
, BANK2
);
1155 outb(tmp
, iobase
+FIR_IRDA_CR
);
1157 // T1 -> SD/MODE:0 IRTX:0
1160 outb(tmp
, iobase
+FIR_IRDA_CR
);
1163 // T2 -> SD/MODE:1 IRTX:0
1166 outb(tmp
, iobase
+FIR_IRDA_CR
);
1169 // T3 -> SD/MODE:1 IRTX:1
1171 outb(tmp
, iobase
+FIR_IRDA_CR
);
1174 // T4 -> SD/MODE:0 IRTX:1
1177 outb(tmp
, iobase
+FIR_IRDA_CR
);
1180 // T5 -> SD/MODE:0 IRTX:0
1183 outb(tmp
, iobase
+FIR_IRDA_CR
);
1186 // reset -> Normal TX output Signal
1187 outb(tmp
& ~0x02, iobase
+FIR_IRDA_CR
);
1189 else /* speed <=1152000 */
1197 /* MIR 115200, 57600 */
1200 tmp
|= 0xA0; //HDLC=1, 1.152Mbps=1
1204 tmp
&=~0x80; //HDLC 0.576Mbps
1205 tmp
|= 0x20; //HDLC=1,
1208 tmp
|= IRDA_CR_CRC
; // CRC=1
1210 switch_bank(iobase
, BANK2
);
1211 outb(tmp
, iobase
+FIR_IRDA_CR
);
1213 /* MIR 115200, 57600 */
1215 //switch_bank(iobase, BANK2);
1216 // T1 -> SD/MODE:0 IRTX:0
1219 outb(tmp
, iobase
+FIR_IRDA_CR
);
1222 // T2 -> SD/MODE:1 IRTX:0
1225 outb(tmp
, iobase
+FIR_IRDA_CR
);
1227 // T3 -> SD/MODE:0 IRTX:0
1230 outb(tmp
, iobase
+FIR_IRDA_CR
);
1233 // reset -> Normal TX output Signal
1234 outb(tmp
& ~0x02, iobase
+FIR_IRDA_CR
);
1237 else if (dongle_id
== 1) /* HP HDSL-3600 */
1242 tmp
&= ~IRDA_CR_HDLC
; // HDLC=0
1246 tmp
|= 0xA0; // HDLC=1, 1.152Mbps=1
1250 tmp
&=~0x80; // HDLC 0.576Mbps
1251 tmp
|= 0x20; // HDLC=1,
1255 tmp
|= IRDA_CR_CRC
; // CRC=1
1257 switch_bank(iobase
, BANK2
);
1258 outb(tmp
, iobase
+FIR_IRDA_CR
);
1260 else /* HP HDSL-1100 */
1262 if(speed
<= 115200) /* SIR */
1265 tmp
&= ~IRDA_CR_FIR_SIN
; // HP sin select = 0
1267 switch_bank(iobase
, BANK2
);
1268 outb(tmp
, iobase
+FIR_IRDA_CR
);
1276 tmp
&= ~IRDA_CR_HDLC
; // HDLC=0
1280 tmp
|= 0xA0; // HDLC=1, 1.152Mbps=1
1284 tmp
&=~0x80; // HDLC 0.576Mbps
1285 tmp
|= 0x20; // HDLC=1,
1289 tmp
|= IRDA_CR_CRC
; // CRC=1
1290 tmp
|= IRDA_CR_FIR_SIN
; // HP sin select = 1
1292 switch_bank(iobase
, BANK2
);
1293 outb(tmp
, iobase
+FIR_IRDA_CR
);
1297 switch_bank(iobase
, BANK0
);
1299 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1303 * Function ali_ircc_sir_write (driver)
1305 * Fill Tx FIFO with transmit data
1308 static int ali_ircc_sir_write(int iobase
, int fifo_size
, __u8
*buf
, int len
)
1312 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
1314 /* Tx FIFO should be empty! */
1315 if (!(inb(iobase
+UART_LSR
) & UART_LSR_THRE
)) {
1316 IRDA_DEBUG(0, "%s(), failed, fifo not empty!\n", __func__
);
1320 /* Fill FIFO with current frame */
1321 while ((fifo_size
-- > 0) && (actual
< len
)) {
1322 /* Transmit next byte */
1323 outb(buf
[actual
], iobase
+UART_TX
);
1328 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1333 * Function ali_ircc_net_open (dev)
1338 static int ali_ircc_net_open(struct net_device
*dev
)
1340 struct ali_ircc_cb
*self
;
1344 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
1346 IRDA_ASSERT(dev
!= NULL
, return -1;);
1348 self
= netdev_priv(dev
);
1350 IRDA_ASSERT(self
!= NULL
, return 0;);
1352 iobase
= self
->io
.fir_base
;
1354 /* Request IRQ and install Interrupt Handler */
1355 if (request_irq(self
->io
.irq
, ali_ircc_interrupt
, 0, dev
->name
, dev
))
1357 IRDA_WARNING("%s, unable to allocate irq=%d\n",
1358 ALI_IRCC_DRIVER_NAME
,
1364 * Always allocate the DMA channel after the IRQ, and clean up on
1367 if (request_dma(self
->io
.dma
, dev
->name
)) {
1368 IRDA_WARNING("%s, unable to allocate dma=%d\n",
1369 ALI_IRCC_DRIVER_NAME
,
1371 free_irq(self
->io
.irq
, dev
);
1375 /* Turn on interrups */
1376 outb(UART_IER_RDI
, iobase
+UART_IER
);
1378 /* Ready to play! */
1379 netif_start_queue(dev
); //benjamin by irport
1381 /* Give self a hardware name */
1382 sprintf(hwname
, "ALI-FIR @ 0x%03x", self
->io
.fir_base
);
1385 * Open new IrLAP layer instance, now that everything should be
1386 * initialized properly
1388 self
->irlap
= irlap_open(dev
, &self
->qos
, hwname
);
1390 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1396 * Function ali_ircc_net_close (dev)
1401 static int ali_ircc_net_close(struct net_device
*dev
)
1404 struct ali_ircc_cb
*self
;
1407 IRDA_DEBUG(4, "%s(), ---------------- Start ----------------\n", __func__
);
1409 IRDA_ASSERT(dev
!= NULL
, return -1;);
1411 self
= netdev_priv(dev
);
1412 IRDA_ASSERT(self
!= NULL
, return 0;);
1415 netif_stop_queue(dev
);
1417 /* Stop and remove instance of IrLAP */
1419 irlap_close(self
->irlap
);
1422 disable_dma(self
->io
.dma
);
1424 /* Disable interrupts */
1425 SetCOMInterrupts(self
, FALSE
);
1427 free_irq(self
->io
.irq
, dev
);
1428 free_dma(self
->io
.dma
);
1430 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
1436 * Function ali_ircc_fir_hard_xmit (skb, dev)
1438 * Transmit the frame
1441 static netdev_tx_t
ali_ircc_fir_hard_xmit(struct sk_buff
*skb
,
1442 struct net_device
*dev
)
1444 struct ali_ircc_cb
*self
;
1445 unsigned long flags
;
1450 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1452 self
= netdev_priv(dev
);
1453 iobase
= self
->io
.fir_base
;
1455 netif_stop_queue(dev
);
1457 /* Make sure tests *& speed change are atomic */
1458 spin_lock_irqsave(&self
->lock
, flags
);
1460 /* Note : you should make sure that speed changes are not going
1461 * to corrupt any outgoing frame. Look at nsc-ircc for the gory
1462 * details - Jean II */
1464 /* Check if we need to change the speed */
1465 speed
= irda_get_next_speed(skb
);
1466 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
1467 /* Check for empty frame */
1469 ali_ircc_change_speed(self
, speed
);
1470 dev
->trans_start
= jiffies
;
1471 spin_unlock_irqrestore(&self
->lock
, flags
);
1473 return NETDEV_TX_OK
;
1475 self
->new_speed
= speed
;
1478 /* Register and copy this frame to DMA memory */
1479 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
= self
->tx_fifo
.tail
;
1480 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].len
= skb
->len
;
1481 self
->tx_fifo
.tail
+= skb
->len
;
1483 dev
->stats
.tx_bytes
+= skb
->len
;
1485 skb_copy_from_linear_data(skb
, self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
,
1487 self
->tx_fifo
.len
++;
1488 self
->tx_fifo
.free
++;
1490 /* Start transmit only if there is currently no transmit going on */
1491 if (self
->tx_fifo
.len
== 1)
1493 /* Check if we must wait the min turn time or not */
1494 mtt
= irda_get_mtt(skb
);
1498 /* Check how much time we have used already */
1499 do_gettimeofday(&self
->now
);
1501 diff
= self
->now
.tv_usec
- self
->stamp
.tv_usec
;
1502 /* self->stamp is set from ali_ircc_dma_receive_complete() */
1504 IRDA_DEBUG(1, "%s(), ******* diff = %d *******\n", __func__
, diff
);
1509 /* Check if the mtt is larger than the time we have
1510 * already used by all the protocol processing
1517 * Use timer if delay larger than 1000 us, and
1518 * use udelay for smaller values which should
1523 /* Adjust for timer resolution */
1524 mtt
= (mtt
+250) / 500; /* 4 discard, 5 get advanced, Let's round off */
1526 IRDA_DEBUG(1, "%s(), ************** mtt = %d ***********\n", __func__
, mtt
);
1529 if (mtt
== 1) /* 500 us */
1531 switch_bank(iobase
, BANK1
);
1532 outb(TIMER_IIR_500
, iobase
+FIR_TIMER_IIR
);
1534 else if (mtt
== 2) /* 1 ms */
1536 switch_bank(iobase
, BANK1
);
1537 outb(TIMER_IIR_1ms
, iobase
+FIR_TIMER_IIR
);
1539 else /* > 2ms -> 4ms */
1541 switch_bank(iobase
, BANK1
);
1542 outb(TIMER_IIR_2ms
, iobase
+FIR_TIMER_IIR
);
1547 outb(inb(iobase
+FIR_CR
) | CR_TIMER_EN
, iobase
+FIR_CR
);
1548 self
->io
.direction
= IO_XMIT
;
1550 /* Enable timer interrupt */
1551 self
->ier
= IER_TIMER
;
1552 SetCOMInterrupts(self
, TRUE
);
1554 /* Timer will take care of the rest */
1559 } // if (if (mtt > diff)
1562 /* Enable EOM interrupt */
1563 self
->ier
= IER_EOM
;
1564 SetCOMInterrupts(self
, TRUE
);
1566 /* Transmit frame */
1567 ali_ircc_dma_xmit(self
);
1568 } // if (self->tx_fifo.len == 1)
1572 /* Not busy transmitting anymore if window is not full */
1573 if (self
->tx_fifo
.free
< MAX_TX_WINDOW
)
1574 netif_wake_queue(self
->netdev
);
1576 /* Restore bank register */
1577 switch_bank(iobase
, BANK0
);
1579 dev
->trans_start
= jiffies
;
1580 spin_unlock_irqrestore(&self
->lock
, flags
);
1583 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1584 return NETDEV_TX_OK
;
1588 static void ali_ircc_dma_xmit(struct ali_ircc_cb
*self
)
1591 unsigned char FIFO_OPTI
, Hi
, Lo
;
1594 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1596 iobase
= self
->io
.fir_base
;
1598 /* FIFO threshold , this method comes from NDIS5 code */
1600 if(self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
< TX_FIFO_Threshold
)
1601 FIFO_OPTI
= self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
-1;
1603 FIFO_OPTI
= TX_FIFO_Threshold
;
1606 switch_bank(iobase
, BANK1
);
1607 outb(inb(iobase
+FIR_CR
) & ~CR_DMA_EN
, iobase
+FIR_CR
);
1609 self
->io
.direction
= IO_XMIT
;
1611 irda_setup_dma(self
->io
.dma
,
1612 ((u8
*)self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].start
-
1613 self
->tx_buff
.head
) + self
->tx_buff_dma
,
1614 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
,
1618 switch_bank(iobase
, BANK0
);
1619 outb(LCR_A_FIFO_RESET
, iobase
+FIR_LCR_A
);
1621 /* Set Tx FIFO threshold */
1622 if (self
->fifo_opti_buf
!=FIFO_OPTI
)
1624 switch_bank(iobase
, BANK1
);
1625 outb(FIFO_OPTI
, iobase
+FIR_FIFO_TR
) ;
1626 self
->fifo_opti_buf
=FIFO_OPTI
;
1629 /* Set Tx DMA threshold */
1630 switch_bank(iobase
, BANK1
);
1631 outb(TX_DMA_Threshold
, iobase
+FIR_DMA_TR
);
1633 /* Set max Tx frame size */
1634 Hi
= (self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
>> 8) & 0x0f;
1635 Lo
= self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
& 0xff;
1636 switch_bank(iobase
, BANK2
);
1637 outb(Hi
, iobase
+FIR_TX_DSR_HI
);
1638 outb(Lo
, iobase
+FIR_TX_DSR_LO
);
1640 /* Disable SIP , Disable Brick Wall (we don't support in TX mode), Change to TX mode */
1641 switch_bank(iobase
, BANK0
);
1642 tmp
= inb(iobase
+FIR_LCR_B
);
1643 tmp
&= ~0x20; // Disable SIP
1644 outb(((unsigned char)(tmp
& 0x3f) | LCR_B_TX_MODE
) & ~LCR_B_BW
, iobase
+FIR_LCR_B
);
1645 IRDA_DEBUG(1, "%s(), *** Change to TX mode: FIR_LCR_B = 0x%x ***\n", __func__
, inb(iobase
+FIR_LCR_B
));
1647 outb(0, iobase
+FIR_LSR
);
1649 /* Enable DMA and Burst Mode */
1650 switch_bank(iobase
, BANK1
);
1651 outb(inb(iobase
+FIR_CR
) | CR_DMA_EN
| CR_DMA_BURST
, iobase
+FIR_CR
);
1653 switch_bank(iobase
, BANK0
);
1655 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1658 static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb
*self
)
1663 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1665 iobase
= self
->io
.fir_base
;
1668 switch_bank(iobase
, BANK1
);
1669 outb(inb(iobase
+FIR_CR
) & ~CR_DMA_EN
, iobase
+FIR_CR
);
1671 /* Check for underrun! */
1672 switch_bank(iobase
, BANK0
);
1673 if((inb(iobase
+FIR_LSR
) & LSR_FRAME_ABORT
) == LSR_FRAME_ABORT
)
1676 IRDA_ERROR("%s(), ********* LSR_FRAME_ABORT *********\n", __func__
);
1677 self
->netdev
->stats
.tx_errors
++;
1678 self
->netdev
->stats
.tx_fifo_errors
++;
1682 self
->netdev
->stats
.tx_packets
++;
1685 /* Check if we need to change the speed */
1686 if (self
->new_speed
)
1688 ali_ircc_change_speed(self
, self
->new_speed
);
1689 self
->new_speed
= 0;
1692 /* Finished with this frame, so prepare for next */
1693 self
->tx_fifo
.ptr
++;
1694 self
->tx_fifo
.len
--;
1696 /* Any frames to be sent back-to-back? */
1697 if (self
->tx_fifo
.len
)
1699 ali_ircc_dma_xmit(self
);
1701 /* Not finished yet! */
1705 { /* Reset Tx FIFO info */
1706 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1707 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1710 /* Make sure we have room for more frames */
1711 if (self
->tx_fifo
.free
< MAX_TX_WINDOW
) {
1712 /* Not busy transmitting anymore */
1713 /* Tell the network layer, that we can accept more frames */
1714 netif_wake_queue(self
->netdev
);
1717 switch_bank(iobase
, BANK0
);
1719 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1724 * Function ali_ircc_dma_receive (self)
1726 * Get ready for receiving a frame. The device will initiate a DMA
1727 * if it starts to receive a frame.
1730 static int ali_ircc_dma_receive(struct ali_ircc_cb
*self
)
1734 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1736 iobase
= self
->io
.fir_base
;
1738 /* Reset Tx FIFO info */
1739 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1740 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1743 switch_bank(iobase
, BANK1
);
1744 outb(inb(iobase
+FIR_CR
) & ~CR_DMA_EN
, iobase
+FIR_CR
);
1746 /* Reset Message Count */
1747 switch_bank(iobase
, BANK0
);
1748 outb(0x07, iobase
+FIR_LSR
);
1750 self
->rcvFramesOverflow
= FALSE
;
1752 self
->LineStatus
= inb(iobase
+FIR_LSR
) ;
1754 /* Reset Rx FIFO info */
1755 self
->io
.direction
= IO_RECV
;
1756 self
->rx_buff
.data
= self
->rx_buff
.head
;
1759 // switch_bank(iobase, BANK0);
1760 outb(LCR_A_FIFO_RESET
, iobase
+FIR_LCR_A
);
1762 self
->st_fifo
.len
= self
->st_fifo
.pending_bytes
= 0;
1763 self
->st_fifo
.tail
= self
->st_fifo
.head
= 0;
1765 irda_setup_dma(self
->io
.dma
, self
->rx_buff_dma
, self
->rx_buff
.truesize
,
1768 /* Set Receive Mode,Brick Wall */
1769 //switch_bank(iobase, BANK0);
1770 tmp
= inb(iobase
+FIR_LCR_B
);
1771 outb((unsigned char)(tmp
&0x3f) | LCR_B_RX_MODE
| LCR_B_BW
, iobase
+ FIR_LCR_B
); // 2000/12/1 05:16PM
1772 IRDA_DEBUG(1, "%s(), *** Change To RX mode: FIR_LCR_B = 0x%x ***\n", __func__
, inb(iobase
+FIR_LCR_B
));
1774 /* Set Rx Threshold */
1775 switch_bank(iobase
, BANK1
);
1776 outb(RX_FIFO_Threshold
, iobase
+FIR_FIFO_TR
);
1777 outb(RX_DMA_Threshold
, iobase
+FIR_DMA_TR
);
1779 /* Enable DMA and Burst Mode */
1780 // switch_bank(iobase, BANK1);
1781 outb(CR_DMA_EN
| CR_DMA_BURST
, iobase
+FIR_CR
);
1783 switch_bank(iobase
, BANK0
);
1784 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1788 static int ali_ircc_dma_receive_complete(struct ali_ircc_cb
*self
)
1790 struct st_fifo
*st_fifo
;
1791 struct sk_buff
*skb
;
1792 __u8 status
, MessageCount
;
1793 int len
, i
, iobase
, val
;
1795 IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__
);
1797 st_fifo
= &self
->st_fifo
;
1798 iobase
= self
->io
.fir_base
;
1800 switch_bank(iobase
, BANK0
);
1801 MessageCount
= inb(iobase
+ FIR_LSR
)&0x07;
1803 if (MessageCount
> 0)
1804 IRDA_DEBUG(0, "%s(), Message count = %d,\n", __func__
, MessageCount
);
1806 for (i
=0; i
<=MessageCount
; i
++)
1809 switch_bank(iobase
, BANK0
);
1810 status
= inb(iobase
+FIR_LSR
);
1812 switch_bank(iobase
, BANK2
);
1813 len
= inb(iobase
+FIR_RX_DSR_HI
) & 0x0f;
1815 len
|= inb(iobase
+FIR_RX_DSR_LO
);
1817 IRDA_DEBUG(1, "%s(), RX Length = 0x%.2x,\n", __func__
, len
);
1818 IRDA_DEBUG(1, "%s(), RX Status = 0x%.2x,\n", __func__
, status
);
1820 if (st_fifo
->tail
>= MAX_RX_WINDOW
) {
1821 IRDA_DEBUG(0, "%s(), window is full!\n", __func__
);
1825 st_fifo
->entries
[st_fifo
->tail
].status
= status
;
1826 st_fifo
->entries
[st_fifo
->tail
].len
= len
;
1827 st_fifo
->pending_bytes
+= len
;
1832 for (i
=0; i
<=MessageCount
; i
++)
1834 /* Get first entry */
1835 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1836 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1837 st_fifo
->pending_bytes
-= len
;
1841 /* Check for errors */
1842 if ((status
& 0xd8) || self
->rcvFramesOverflow
|| (len
==0))
1844 IRDA_DEBUG(0,"%s(), ************* RX Errors ************\n", __func__
);
1847 self
->netdev
->stats
.rx_errors
++;
1849 self
->rx_buff
.data
+= len
;
1851 if (status
& LSR_FIFO_UR
)
1853 self
->netdev
->stats
.rx_frame_errors
++;
1854 IRDA_DEBUG(0,"%s(), ************* FIFO Errors ************\n", __func__
);
1856 if (status
& LSR_FRAME_ERROR
)
1858 self
->netdev
->stats
.rx_frame_errors
++;
1859 IRDA_DEBUG(0,"%s(), ************* FRAME Errors ************\n", __func__
);
1862 if (status
& LSR_CRC_ERROR
)
1864 self
->netdev
->stats
.rx_crc_errors
++;
1865 IRDA_DEBUG(0,"%s(), ************* CRC Errors ************\n", __func__
);
1868 if(self
->rcvFramesOverflow
)
1870 self
->netdev
->stats
.rx_frame_errors
++;
1871 IRDA_DEBUG(0,"%s(), ************* Overran DMA buffer ************\n", __func__
);
1875 self
->netdev
->stats
.rx_frame_errors
++;
1876 IRDA_DEBUG(0,"%s(), ********** Receive Frame Size = 0 *********\n", __func__
);
1882 if (st_fifo
->pending_bytes
< 32)
1884 switch_bank(iobase
, BANK0
);
1885 val
= inb(iobase
+FIR_BSR
);
1886 if ((val
& BSR_FIFO_NOT_EMPTY
)== 0x80)
1888 IRDA_DEBUG(0, "%s(), ************* BSR_FIFO_NOT_EMPTY ************\n", __func__
);
1890 /* Put this entry back in fifo */
1893 st_fifo
->pending_bytes
+= len
;
1894 st_fifo
->entries
[st_fifo
->head
].status
= status
;
1895 st_fifo
->entries
[st_fifo
->head
].len
= len
;
1898 * DMA not finished yet, so try again
1899 * later, set timer value, resolution
1903 switch_bank(iobase
, BANK1
);
1904 outb(TIMER_IIR_500
, iobase
+FIR_TIMER_IIR
); // 2001/1/2 05:07PM
1907 outb(inb(iobase
+FIR_CR
) | CR_TIMER_EN
, iobase
+FIR_CR
);
1909 return FALSE
; /* I'll be back! */
1914 * Remember the time we received this frame, so we can
1915 * reduce the min turn time a bit since we will know
1916 * how much time we have used for protocol processing
1918 do_gettimeofday(&self
->stamp
);
1920 skb
= dev_alloc_skb(len
+1);
1923 IRDA_WARNING("%s(), memory squeeze, "
1924 "dropping frame.\n",
1926 self
->netdev
->stats
.rx_dropped
++;
1931 /* Make sure IP header gets aligned */
1932 skb_reserve(skb
, 1);
1934 /* Copy frame without CRC, CRC is removed by hardware*/
1936 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
);
1938 /* Move to next frame */
1939 self
->rx_buff
.data
+= len
;
1940 self
->netdev
->stats
.rx_bytes
+= len
;
1941 self
->netdev
->stats
.rx_packets
++;
1943 skb
->dev
= self
->netdev
;
1944 skb_reset_mac_header(skb
);
1945 skb
->protocol
= htons(ETH_P_IRDA
);
1950 switch_bank(iobase
, BANK0
);
1952 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
1959 * Function ali_ircc_sir_hard_xmit (skb, dev)
1961 * Transmit the frame!
1964 static netdev_tx_t
ali_ircc_sir_hard_xmit(struct sk_buff
*skb
,
1965 struct net_device
*dev
)
1967 struct ali_ircc_cb
*self
;
1968 unsigned long flags
;
1972 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
1974 IRDA_ASSERT(dev
!= NULL
, return NETDEV_TX_OK
;);
1976 self
= netdev_priv(dev
);
1977 IRDA_ASSERT(self
!= NULL
, return NETDEV_TX_OK
;);
1979 iobase
= self
->io
.sir_base
;
1981 netif_stop_queue(dev
);
1983 /* Make sure tests *& speed change are atomic */
1984 spin_lock_irqsave(&self
->lock
, flags
);
1986 /* Note : you should make sure that speed changes are not going
1987 * to corrupt any outgoing frame. Look at nsc-ircc for the gory
1988 * details - Jean II */
1990 /* Check if we need to change the speed */
1991 speed
= irda_get_next_speed(skb
);
1992 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
1993 /* Check for empty frame */
1995 ali_ircc_change_speed(self
, speed
);
1996 dev
->trans_start
= jiffies
;
1997 spin_unlock_irqrestore(&self
->lock
, flags
);
1999 return NETDEV_TX_OK
;
2001 self
->new_speed
= speed
;
2004 /* Init tx buffer */
2005 self
->tx_buff
.data
= self
->tx_buff
.head
;
2007 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
2008 self
->tx_buff
.len
= async_wrap_skb(skb
, self
->tx_buff
.data
,
2009 self
->tx_buff
.truesize
);
2011 self
->netdev
->stats
.tx_bytes
+= self
->tx_buff
.len
;
2013 /* Turn on transmit finished interrupt. Will fire immediately! */
2014 outb(UART_IER_THRI
, iobase
+UART_IER
);
2016 dev
->trans_start
= jiffies
;
2017 spin_unlock_irqrestore(&self
->lock
, flags
);
2021 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2023 return NETDEV_TX_OK
;
2028 * Function ali_ircc_net_ioctl (dev, rq, cmd)
2030 * Process IOCTL commands for this device
2033 static int ali_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
2035 struct if_irda_req
*irq
= (struct if_irda_req
*) rq
;
2036 struct ali_ircc_cb
*self
;
2037 unsigned long flags
;
2040 IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__
);
2042 IRDA_ASSERT(dev
!= NULL
, return -1;);
2044 self
= netdev_priv(dev
);
2046 IRDA_ASSERT(self
!= NULL
, return -1;);
2048 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __func__
, dev
->name
, cmd
);
2051 case SIOCSBANDWIDTH
: /* Set bandwidth */
2052 IRDA_DEBUG(1, "%s(), SIOCSBANDWIDTH\n", __func__
);
2054 * This function will also be used by IrLAP to change the
2055 * speed, so we still must allow for speed change within
2056 * interrupt context.
2058 if (!in_interrupt() && !capable(CAP_NET_ADMIN
))
2061 spin_lock_irqsave(&self
->lock
, flags
);
2062 ali_ircc_change_speed(self
, irq
->ifr_baudrate
);
2063 spin_unlock_irqrestore(&self
->lock
, flags
);
2065 case SIOCSMEDIABUSY
: /* Set media busy */
2066 IRDA_DEBUG(1, "%s(), SIOCSMEDIABUSY\n", __func__
);
2067 if (!capable(CAP_NET_ADMIN
))
2069 irda_device_set_media_busy(self
->netdev
, TRUE
);
2071 case SIOCGRECEIVING
: /* Check if we are receiving right now */
2072 IRDA_DEBUG(2, "%s(), SIOCGRECEIVING\n", __func__
);
2073 /* This is protected */
2074 irq
->ifr_receiving
= ali_ircc_is_receiving(self
);
2080 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2086 * Function ali_ircc_is_receiving (self)
2088 * Return TRUE is we are currently receiving a frame
2091 static int ali_ircc_is_receiving(struct ali_ircc_cb
*self
)
2093 unsigned long flags
;
2097 IRDA_DEBUG(2, "%s(), ---------------- Start -----------------\n", __func__
);
2099 IRDA_ASSERT(self
!= NULL
, return FALSE
;);
2101 spin_lock_irqsave(&self
->lock
, flags
);
2103 if (self
->io
.speed
> 115200)
2105 iobase
= self
->io
.fir_base
;
2107 switch_bank(iobase
, BANK1
);
2108 if((inb(iobase
+FIR_FIFO_FR
) & 0x3f) != 0)
2110 /* We are receiving something */
2111 IRDA_DEBUG(1, "%s(), We are receiving something\n", __func__
);
2114 switch_bank(iobase
, BANK0
);
2118 status
= (self
->rx_buff
.state
!= OUTSIDE_FRAME
);
2121 spin_unlock_irqrestore(&self
->lock
, flags
);
2123 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2128 static int ali_ircc_suspend(struct platform_device
*dev
, pm_message_t state
)
2130 struct ali_ircc_cb
*self
= platform_get_drvdata(dev
);
2132 IRDA_MESSAGE("%s, Suspending\n", ALI_IRCC_DRIVER_NAME
);
2134 if (self
->io
.suspended
)
2137 ali_ircc_net_close(self
->netdev
);
2139 self
->io
.suspended
= 1;
2144 static int ali_ircc_resume(struct platform_device
*dev
)
2146 struct ali_ircc_cb
*self
= platform_get_drvdata(dev
);
2148 if (!self
->io
.suspended
)
2151 ali_ircc_net_open(self
->netdev
);
2153 IRDA_MESSAGE("%s, Waking up\n", ALI_IRCC_DRIVER_NAME
);
2155 self
->io
.suspended
= 0;
2160 /* ALi Chip Function */
2162 static void SetCOMInterrupts(struct ali_ircc_cb
*self
, unsigned char enable
)
2165 unsigned char newMask
;
2167 int iobase
= self
->io
.fir_base
; /* or sir_base */
2169 IRDA_DEBUG(2, "%s(), -------- Start -------- ( Enable = %d )\n", __func__
, enable
);
2171 /* Enable the interrupt which we wish to */
2173 if (self
->io
.direction
== IO_XMIT
)
2175 if (self
->io
.speed
> 115200) /* FIR, MIR */
2177 newMask
= self
->ier
;
2181 newMask
= UART_IER_THRI
| UART_IER_RDI
;
2185 if (self
->io
.speed
> 115200) /* FIR, MIR */
2187 newMask
= self
->ier
;
2191 newMask
= UART_IER_RDI
;
2195 else /* Disable all the interrupts */
2201 //SIR and FIR has different registers
2202 if (self
->io
.speed
> 115200)
2204 switch_bank(iobase
, BANK0
);
2205 outb(newMask
, iobase
+FIR_IER
);
2208 outb(newMask
, iobase
+UART_IER
);
2210 IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__
);
2213 static void SIR2FIR(int iobase
)
2215 //unsigned char tmp;
2217 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
2219 /* Already protected (change_speed() or setup()), no need to lock.
2222 outb(0x28, iobase
+UART_MCR
);
2223 outb(0x68, iobase
+UART_MCR
);
2224 outb(0x88, iobase
+UART_MCR
);
2226 outb(0x60, iobase
+FIR_MCR
); /* Master Reset */
2227 outb(0x20, iobase
+FIR_MCR
); /* Master Interrupt Enable */
2229 //tmp = inb(iobase+FIR_LCR_B); /* SIP enable */
2231 //outb(tmp, iobase+FIR_LCR_B);
2233 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
2236 static void FIR2SIR(int iobase
)
2240 IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__
);
2242 /* Already protected (change_speed() or setup()), no need to lock.
2245 outb(0x20, iobase
+FIR_MCR
); /* IRQ to low */
2246 outb(0x00, iobase
+UART_IER
);
2248 outb(0xA0, iobase
+FIR_MCR
); /* Don't set master reset */
2249 outb(0x00, iobase
+UART_FCR
);
2250 outb(0x07, iobase
+UART_FCR
);
2252 val
= inb(iobase
+UART_RX
);
2253 val
= inb(iobase
+UART_LSR
);
2254 val
= inb(iobase
+UART_MSR
);
2256 IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__
);
2259 MODULE_AUTHOR("Benjamin Kong <benjamin_kong@ali.com.tw>");
2260 MODULE_DESCRIPTION("ALi FIR Controller Driver");
2261 MODULE_LICENSE("GPL");
2262 MODULE_ALIAS("platform:" ALI_IRCC_DRIVER_NAME
);
2265 module_param_array(io
, int, NULL
, 0);
2266 MODULE_PARM_DESC(io
, "Base I/O addresses");
2267 module_param_array(irq
, int, NULL
, 0);
2268 MODULE_PARM_DESC(irq
, "IRQ lines");
2269 module_param_array(dma
, int, NULL
, 0);
2270 MODULE_PARM_DESC(dma
, "DMA channels");
2272 module_init(ali_ircc_init
);
2273 module_exit(ali_ircc_cleanup
);