1 /********************************************************************
4 Description: Driver for the VIA VT8231/VT8233 IrDA chipsets
5 Author: VIA Technologies,inc
8 Copyright (c) 1998-2003 VIA Technologies, Inc.
10 This program is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free Software
12 Foundation; either version 2, or (at your option) any later version.
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTIES OR REPRESENTATIONS; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 See the GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License along with
20 this program; if not, write to the Free Software Foundation, Inc.,
21 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 F01 Oct/02/02: Modify code for V0.11(move out back to back transfer)
24 F02 Oct/28/02: Add SB device ID for 3147 and 3177.
26 jul/09/2002 : only implement two kind of dongle currently.
27 Oct/02/2002 : work on VT8231 and VT8233 .
28 Aug/06/2003 : change driver format to pci driver .
30 2004-02-16: <sda@bdit.de>
31 - Removed unneeded 'legacy' pci stuff.
32 - Make sure SIR mode is set (hw_init()) before calling mode-dependent stuff.
33 - On speed change from core, don't send SIR frame with new speed.
34 Use current speed and change speeds later.
35 - Make module-param dongle_id actually work.
36 - New dongle_id 17 (0x11): TDFS4500. Single-ended SIR only.
37 Tested with home-grown PCB on EPIA boards.
40 ********************************************************************/
41 #include <linux/module.h>
42 #include <linux/kernel.h>
43 #include <linux/types.h>
44 #include <linux/skbuff.h>
45 #include <linux/netdevice.h>
46 #include <linux/ioport.h>
47 #include <linux/delay.h>
48 #include <linux/init.h>
49 #include <linux/interrupt.h>
50 #include <linux/rtnetlink.h>
51 #include <linux/pci.h>
52 #include <linux/dma-mapping.h>
53 #include <linux/gfp.h>
57 #include <asm/byteorder.h>
61 #include <net/irda/wrapper.h>
62 #include <net/irda/irda.h>
63 #include <net/irda/irda_device.h>
67 #define VIA_MODULE_NAME "via-ircc"
68 #define CHIP_IO_EXTENT 0x40
70 static char *driver_name
= VIA_MODULE_NAME
;
72 /* Module parameters */
73 static int qos_mtt_bits
= 0x07; /* 1 ms or more */
74 static int dongle_id
= 0; /* default: probe */
76 /* We can't guess the type of connected dongle, user *must* supply it. */
77 module_param(dongle_id
, int, 0);
80 static int via_ircc_open(struct pci_dev
*pdev
, chipio_t
* info
,
82 static int via_ircc_dma_receive(struct via_ircc_cb
*self
);
83 static int via_ircc_dma_receive_complete(struct via_ircc_cb
*self
,
85 static netdev_tx_t
via_ircc_hard_xmit_sir(struct sk_buff
*skb
,
86 struct net_device
*dev
);
87 static netdev_tx_t
via_ircc_hard_xmit_fir(struct sk_buff
*skb
,
88 struct net_device
*dev
);
89 static void via_hw_init(struct via_ircc_cb
*self
);
90 static void via_ircc_change_speed(struct via_ircc_cb
*self
, __u32 baud
);
91 static irqreturn_t
via_ircc_interrupt(int irq
, void *dev_id
);
92 static int via_ircc_is_receiving(struct via_ircc_cb
*self
);
93 static int via_ircc_read_dongle_id(int iobase
);
95 static int via_ircc_net_open(struct net_device
*dev
);
96 static int via_ircc_net_close(struct net_device
*dev
);
97 static int via_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
,
99 static void via_ircc_change_dongle_speed(int iobase
, int speed
,
101 static int RxTimerHandler(struct via_ircc_cb
*self
, int iobase
);
102 static void hwreset(struct via_ircc_cb
*self
);
103 static int via_ircc_dma_xmit(struct via_ircc_cb
*self
, u16 iobase
);
104 static int upload_rxdata(struct via_ircc_cb
*self
, int iobase
);
105 static int __devinit
via_init_one (struct pci_dev
*pcidev
, const struct pci_device_id
*id
);
106 static void __devexit
via_remove_one (struct pci_dev
*pdev
);
108 /* FIXME : Should use udelay() instead, even if we are x86 only - Jean II */
109 static void iodelay(int udelay
)
114 for (i
= 0; i
< udelay
; i
++) {
119 static DEFINE_PCI_DEVICE_TABLE(via_pci_tbl
) = {
120 { PCI_VENDOR_ID_VIA
, 0x8231, PCI_ANY_ID
, PCI_ANY_ID
,0,0,0 },
121 { PCI_VENDOR_ID_VIA
, 0x3109, PCI_ANY_ID
, PCI_ANY_ID
,0,0,1 },
122 { PCI_VENDOR_ID_VIA
, 0x3074, PCI_ANY_ID
, PCI_ANY_ID
,0,0,2 },
123 { PCI_VENDOR_ID_VIA
, 0x3147, PCI_ANY_ID
, PCI_ANY_ID
,0,0,3 },
124 { PCI_VENDOR_ID_VIA
, 0x3177, PCI_ANY_ID
, PCI_ANY_ID
,0,0,4 },
128 MODULE_DEVICE_TABLE(pci
,via_pci_tbl
);
131 static struct pci_driver via_driver
= {
132 .name
= VIA_MODULE_NAME
,
133 .id_table
= via_pci_tbl
,
134 .probe
= via_init_one
,
135 .remove
= __devexit_p(via_remove_one
),
140 * Function via_ircc_init ()
142 * Initialize chip. Just find out chip type and resource.
144 static int __init
via_ircc_init(void)
148 IRDA_DEBUG(3, "%s()\n", __func__
);
150 rc
= pci_register_driver(&via_driver
);
152 IRDA_DEBUG(0, "%s(): error rc = %d, returning -ENODEV...\n",
159 static int __devinit
via_init_one (struct pci_dev
*pcidev
, const struct pci_device_id
*id
)
162 u8 temp
,oldPCI_40
,oldPCI_44
,bTmp
,bTmp1
;
163 u16 Chipset
,FirDRQ1
,FirDRQ0
,FirIRQ
,FirIOBase
;
166 IRDA_DEBUG(2, "%s(): Device ID=(0X%X)\n", __func__
, id
->device
);
168 rc
= pci_enable_device (pcidev
);
170 IRDA_DEBUG(0, "%s(): error rc = %d\n", __func__
, rc
);
174 // South Bridge exist
175 if ( ReadLPCReg(0x20) != 0x3C )
180 if (Chipset
==0x3076) {
181 IRDA_DEBUG(2, "%s(): Chipset = 3076\n", __func__
);
183 WriteLPCReg(7,0x0c );
184 temp
=ReadLPCReg(0x30);//check if BIOS Enable Fir
185 if((temp
&0x01)==1) { // BIOS close or no FIR
186 WriteLPCReg(0x1d, 0x82 );
187 WriteLPCReg(0x23,0x18);
188 temp
=ReadLPCReg(0xF0);
190 temp
=(ReadLPCReg(0x74)&0x03); //DMA
192 temp
=(ReadLPCReg(0x74)&0x0C) >> 2;
195 temp
=(ReadLPCReg(0x74)&0x0C) >> 2; //DMA
199 FirIRQ
=(ReadLPCReg(0x70)&0x0f); //IRQ
200 FirIOBase
=ReadLPCReg(0x60 ) << 8; //IO Space :high byte
201 FirIOBase
=FirIOBase
| ReadLPCReg(0x61) ; //low byte
202 FirIOBase
=FirIOBase
;
203 info
.fir_base
=FirIOBase
;
207 pci_read_config_byte(pcidev
,0x40,&bTmp
);
208 pci_write_config_byte(pcidev
,0x40,((bTmp
| 0x08) & 0xfe));
209 pci_read_config_byte(pcidev
,0x42,&bTmp
);
210 pci_write_config_byte(pcidev
,0x42,(bTmp
| 0xf0));
211 pci_write_config_byte(pcidev
,0x5a,0xc0);
212 WriteLPCReg(0x28, 0x70 );
213 if (via_ircc_open(pcidev
, &info
, 0x3076) == 0)
216 rc
= -ENODEV
; //IR not turn on
217 } else { //Not VT1211
218 IRDA_DEBUG(2, "%s(): Chipset = 3096\n", __func__
);
220 pci_read_config_byte(pcidev
,0x67,&bTmp
);//check if BIOS Enable Fir
221 if((bTmp
&0x01)==1) { // BIOS enable FIR
222 //Enable Double DMA clock
223 pci_read_config_byte(pcidev
,0x42,&oldPCI_40
);
224 pci_write_config_byte(pcidev
,0x42,oldPCI_40
| 0x80);
225 pci_read_config_byte(pcidev
,0x40,&oldPCI_40
);
226 pci_write_config_byte(pcidev
,0x40,oldPCI_40
& 0xf7);
227 pci_read_config_byte(pcidev
,0x44,&oldPCI_44
);
228 pci_write_config_byte(pcidev
,0x44,0x4e);
229 //---------- read configuration from Function0 of south bridge
231 pci_read_config_byte(pcidev
,0x44,&bTmp1
); //DMA
232 FirDRQ0
= (bTmp1
& 0x30) >> 4;
233 pci_read_config_byte(pcidev
,0x44,&bTmp1
);
234 FirDRQ1
= (bTmp1
& 0xc0) >> 6;
236 pci_read_config_byte(pcidev
,0x44,&bTmp1
); //DMA
237 FirDRQ0
= (bTmp1
& 0x30) >> 4 ;
240 pci_read_config_byte(pcidev
,0x47,&bTmp1
); //IRQ
241 FirIRQ
= bTmp1
& 0x0f;
243 pci_read_config_byte(pcidev
,0x69,&bTmp
);
244 FirIOBase
= bTmp
<< 8;//hight byte
245 pci_read_config_byte(pcidev
,0x68,&bTmp
);
246 FirIOBase
= (FirIOBase
| bTmp
) & 0xfff0;
247 //-------------------------
248 info
.fir_base
=FirIOBase
;
252 if (via_ircc_open(pcidev
, &info
, 0x3096) == 0)
255 rc
= -ENODEV
; //IR not turn on !!!!!
258 IRDA_DEBUG(2, "%s(): End - rc = %d\n", __func__
, rc
);
262 static void __exit
via_ircc_cleanup(void)
264 IRDA_DEBUG(3, "%s()\n", __func__
);
266 /* Cleanup all instances of the driver */
267 pci_unregister_driver (&via_driver
);
270 static const struct net_device_ops via_ircc_sir_ops
= {
271 .ndo_start_xmit
= via_ircc_hard_xmit_sir
,
272 .ndo_open
= via_ircc_net_open
,
273 .ndo_stop
= via_ircc_net_close
,
274 .ndo_do_ioctl
= via_ircc_net_ioctl
,
276 static const struct net_device_ops via_ircc_fir_ops
= {
277 .ndo_start_xmit
= via_ircc_hard_xmit_fir
,
278 .ndo_open
= via_ircc_net_open
,
279 .ndo_stop
= via_ircc_net_close
,
280 .ndo_do_ioctl
= via_ircc_net_ioctl
,
284 * Function via_ircc_open(pdev, iobase, irq)
286 * Open driver instance
289 static __devinit
int via_ircc_open(struct pci_dev
*pdev
, chipio_t
* info
,
292 struct net_device
*dev
;
293 struct via_ircc_cb
*self
;
296 IRDA_DEBUG(3, "%s()\n", __func__
);
298 /* Allocate new instance of the driver */
299 dev
= alloc_irdadev(sizeof(struct via_ircc_cb
));
303 self
= netdev_priv(dev
);
305 spin_lock_init(&self
->lock
);
307 pci_set_drvdata(pdev
, self
);
309 /* Initialize Resource */
310 self
->io
.cfg_base
= info
->cfg_base
;
311 self
->io
.fir_base
= info
->fir_base
;
312 self
->io
.irq
= info
->irq
;
313 self
->io
.fir_ext
= CHIP_IO_EXTENT
;
314 self
->io
.dma
= info
->dma
;
315 self
->io
.dma2
= info
->dma2
;
316 self
->io
.fifo_size
= 32;
318 self
->st_fifo
.len
= 0;
319 self
->RxDataReady
= 0;
321 /* Reserve the ioports that we need */
322 if (!request_region(self
->io
.fir_base
, self
->io
.fir_ext
, driver_name
)) {
323 IRDA_DEBUG(0, "%s(), can't get iobase of 0x%03x\n",
324 __func__
, self
->io
.fir_base
);
329 /* Initialize QoS for this device */
330 irda_init_max_qos_capabilies(&self
->qos
);
332 /* Check if user has supplied the dongle id or not */
334 dongle_id
= via_ircc_read_dongle_id(self
->io
.fir_base
);
335 self
->io
.dongle_id
= dongle_id
;
337 /* The only value we must override it the baudrate */
338 /* Maximum speeds and capabilities are dongle-dependent. */
339 switch( self
->io
.dongle_id
){
341 self
->qos
.baud_rate
.bits
=
342 IR_9600
| IR_19200
| IR_38400
| IR_57600
| IR_115200
|
343 IR_576000
| IR_1152000
| (IR_4000000
<< 8);
346 self
->qos
.baud_rate
.bits
=
347 IR_9600
| IR_19200
| IR_38400
| IR_57600
| IR_115200
;
351 /* Following was used for testing:
353 * self->qos.baud_rate.bits = IR_9600;
355 * Is is no good, as it prohibits (error-prone) speed-changes.
358 self
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
359 irda_qos_bits_to_value(&self
->qos
);
361 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
362 self
->rx_buff
.truesize
= 14384 + 2048;
363 self
->tx_buff
.truesize
= 14384 + 2048;
365 /* Allocate memory if needed */
367 dma_alloc_coherent(&pdev
->dev
, self
->rx_buff
.truesize
,
368 &self
->rx_buff_dma
, GFP_KERNEL
);
369 if (self
->rx_buff
.head
== NULL
) {
373 memset(self
->rx_buff
.head
, 0, self
->rx_buff
.truesize
);
376 dma_alloc_coherent(&pdev
->dev
, self
->tx_buff
.truesize
,
377 &self
->tx_buff_dma
, GFP_KERNEL
);
378 if (self
->tx_buff
.head
== NULL
) {
382 memset(self
->tx_buff
.head
, 0, self
->tx_buff
.truesize
);
384 self
->rx_buff
.in_frame
= FALSE
;
385 self
->rx_buff
.state
= OUTSIDE_FRAME
;
386 self
->tx_buff
.data
= self
->tx_buff
.head
;
387 self
->rx_buff
.data
= self
->rx_buff
.head
;
389 /* Reset Tx queue info */
390 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
391 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
393 /* Override the network functions we need to use */
394 dev
->netdev_ops
= &via_ircc_sir_ops
;
396 err
= register_netdev(dev
);
400 IRDA_MESSAGE("IrDA: Registered device %s (via-ircc)\n", dev
->name
);
402 /* Initialise the hardware..
404 self
->io
.speed
= 9600;
408 dma_free_coherent(&pdev
->dev
, self
->tx_buff
.truesize
,
409 self
->tx_buff
.head
, self
->tx_buff_dma
);
411 dma_free_coherent(&pdev
->dev
, self
->rx_buff
.truesize
,
412 self
->rx_buff
.head
, self
->rx_buff_dma
);
414 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
416 pci_set_drvdata(pdev
, NULL
);
422 * Function via_remove_one(pdev)
424 * Close driver instance
427 static void __devexit
via_remove_one(struct pci_dev
*pdev
)
429 struct via_ircc_cb
*self
= pci_get_drvdata(pdev
);
432 IRDA_DEBUG(3, "%s()\n", __func__
);
434 iobase
= self
->io
.fir_base
;
436 ResetChip(iobase
, 5); //hardware reset.
437 /* Remove netdevice */
438 unregister_netdev(self
->netdev
);
440 /* Release the PORT that this driver is using */
441 IRDA_DEBUG(2, "%s(), Releasing Region %03x\n",
442 __func__
, self
->io
.fir_base
);
443 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
444 if (self
->tx_buff
.head
)
445 dma_free_coherent(&pdev
->dev
, self
->tx_buff
.truesize
,
446 self
->tx_buff
.head
, self
->tx_buff_dma
);
447 if (self
->rx_buff
.head
)
448 dma_free_coherent(&pdev
->dev
, self
->rx_buff
.truesize
,
449 self
->rx_buff
.head
, self
->rx_buff_dma
);
450 pci_set_drvdata(pdev
, NULL
);
452 free_netdev(self
->netdev
);
454 pci_disable_device(pdev
);
458 * Function via_hw_init(self)
460 * Returns non-negative on success.
462 * Formerly via_ircc_setup
464 static void via_hw_init(struct via_ircc_cb
*self
)
466 int iobase
= self
->io
.fir_base
;
468 IRDA_DEBUG(3, "%s()\n", __func__
);
470 SetMaxRxPacketSize(iobase
, 0x0fff); //set to max:4095
472 EnRXFIFOReadyInt(iobase
, OFF
);
473 EnRXFIFOHalfLevelInt(iobase
, OFF
);
474 EnTXFIFOHalfLevelInt(iobase
, OFF
);
475 EnTXFIFOUnderrunEOMInt(iobase
, ON
);
476 EnTXFIFOReadyInt(iobase
, OFF
);
477 InvertTX(iobase
, OFF
);
478 InvertRX(iobase
, OFF
);
480 if (ReadLPCReg(0x20) == 0x3c)
481 WriteLPCReg(0xF0, 0); // for VT1211
483 EnRXSpecInt(iobase
, ON
);
485 /* The following is basically hwreset */
486 /* If this is the case, why not just call hwreset() ? Jean II */
487 ResetChip(iobase
, 5);
488 EnableDMA(iobase
, OFF
);
489 EnableTX(iobase
, OFF
);
490 EnableRX(iobase
, OFF
);
491 EnRXDMA(iobase
, OFF
);
492 EnTXDMA(iobase
, OFF
);
493 RXStart(iobase
, OFF
);
494 TXStart(iobase
, OFF
);
497 SIRFilter(iobase
, ON
);
501 WriteReg(iobase
, I_ST_CT_0
, 0x00);
502 SetBaudRate(iobase
, 9600);
503 SetPulseWidth(iobase
, 12);
504 SetSendPreambleCount(iobase
, 0);
506 self
->io
.speed
= 9600;
507 self
->st_fifo
.len
= 0;
509 via_ircc_change_dongle_speed(iobase
, self
->io
.speed
,
512 WriteReg(iobase
, I_ST_CT_0
, 0x80);
516 * Function via_ircc_read_dongle_id (void)
519 static int via_ircc_read_dongle_id(int iobase
)
521 int dongle_id
= 9; /* Default to IBM */
523 IRDA_ERROR("via-ircc: dongle probing not supported, please specify dongle_id module parameter.\n");
528 * Function via_ircc_change_dongle_speed (iobase, speed, dongle_id)
529 * Change speed of the attach dongle
530 * only implement two type of dongle currently.
532 static void via_ircc_change_dongle_speed(int iobase
, int speed
,
537 /* speed is unused, as we use IsSIROn()/IsMIROn() */
540 IRDA_DEBUG(1, "%s(): change_dongle_speed to %d for 0x%x, %d\n",
541 __func__
, speed
, iobase
, dongle_id
);
545 /* Note: The dongle_id's listed here are derived from
548 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
549 UseOneRX(iobase
, ON
); // use one RX pin RX1,RX2
550 InvertTX(iobase
, OFF
);
551 InvertRX(iobase
, OFF
);
553 EnRX2(iobase
, ON
); //sir to rx2
554 EnGPIOtoRX2(iobase
, OFF
);
556 if (IsSIROn(iobase
)) { //sir
558 SlowIRRXLowActive(iobase
, ON
);
560 SlowIRRXLowActive(iobase
, OFF
);
562 if (IsMIROn(iobase
)) { //mir
564 SlowIRRXLowActive(iobase
, OFF
);
567 if (IsFIROn(iobase
)) { //fir
569 SlowIRRXLowActive(iobase
, OFF
);
576 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
577 UseOneRX(iobase
, ON
); //use ONE RX....RX1
578 InvertTX(iobase
, OFF
);
579 InvertRX(iobase
, OFF
); // invert RX pin
582 EnGPIOtoRX2(iobase
, OFF
);
583 if (IsSIROn(iobase
)) { //sir
585 SlowIRRXLowActive(iobase
, ON
);
588 SlowIRRXLowActive(iobase
, OFF
);
590 if (IsMIROn(iobase
)) { //mir
592 SlowIRRXLowActive(iobase
, OFF
);
595 SlowIRRXLowActive(iobase
, ON
);
597 if (IsFIROn(iobase
)) { //fir
599 SlowIRRXLowActive(iobase
, OFF
);
604 SlowIRRXLowActive(iobase
, ON
);
607 WriteTX(iobase
, OFF
);
613 UseOneRX(iobase
, OFF
); // use two RX pin RX1,RX2
614 InvertTX(iobase
, OFF
);
615 InvertRX(iobase
, OFF
);
616 SlowIRRXLowActive(iobase
, OFF
);
617 if (IsSIROn(iobase
)) { //sir
618 EnGPIOtoRX2(iobase
, OFF
);
619 WriteGIO(iobase
, OFF
);
620 EnRX2(iobase
, OFF
); //sir to rx2
622 EnGPIOtoRX2(iobase
, OFF
);
623 WriteGIO(iobase
, OFF
);
624 EnRX2(iobase
, OFF
); //fir to rx
628 case 0x11: /* Temic TFDS4500 */
630 IRDA_DEBUG(2, "%s: Temic TFDS4500: One RX pin, TX normal, RX inverted.\n", __func__
);
632 UseOneRX(iobase
, ON
); //use ONE RX....RX1
633 InvertTX(iobase
, OFF
);
634 InvertRX(iobase
, ON
); // invert RX pin
636 EnRX2(iobase
, ON
); //sir to rx2
637 EnGPIOtoRX2(iobase
, OFF
);
639 if( IsSIROn(iobase
) ){ //sir
642 SlowIRRXLowActive(iobase
, ON
);
645 SlowIRRXLowActive(iobase
, OFF
);
648 IRDA_DEBUG(0, "%s: Warning: TFDS4500 not running in SIR mode !\n", __func__
);
652 case 0x0ff: /* Vishay */
655 else if (IsMIROn(iobase
))
657 else if (IsFIROn(iobase
))
659 else if (IsVFIROn(iobase
))
661 SI_SetMode(iobase
, mode
);
665 IRDA_ERROR("%s: Error: dongle_id %d unsupported !\n",
666 __func__
, dongle_id
);
671 * Function via_ircc_change_speed (self, baud)
673 * Change the speed of the device
676 static void via_ircc_change_speed(struct via_ircc_cb
*self
, __u32 speed
)
678 struct net_device
*dev
= self
->netdev
;
682 iobase
= self
->io
.fir_base
;
683 /* Update accounting for new speed */
684 self
->io
.speed
= speed
;
685 IRDA_DEBUG(1, "%s: change_speed to %d bps.\n", __func__
, speed
);
687 WriteReg(iobase
, I_ST_CT_0
, 0x0);
689 /* Controller mode sellection */
697 value
= (115200/speed
)-1;
702 /* FIXME: this can't be right, as it's the same as 115200,
703 * and 576000 is MIR, not SIR. */
716 SetPulseWidth(iobase
, 0);
717 SetSendPreambleCount(iobase
, 14);
731 /* Set baudrate to 0x19[2..7] */
732 bTmp
= (ReadReg(iobase
, I_CF_H_1
) & 0x03);
734 WriteReg(iobase
, I_CF_H_1
, bTmp
);
736 /* Some dongles may need to be informed about speed changes. */
737 via_ircc_change_dongle_speed(iobase
, speed
, self
->io
.dongle_id
);
739 /* Set FIFO size to 64 */
743 WriteReg(iobase
, I_ST_CT_0
, 0x80);
745 // EnTXFIFOHalfLevelInt(iobase,ON);
747 /* Enable some interrupts so we can receive frames */
748 //EnAllInt(iobase,ON);
750 if (IsSIROn(iobase
)) {
751 SIRFilter(iobase
, ON
);
752 SIRRecvAny(iobase
, ON
);
754 SIRFilter(iobase
, OFF
);
755 SIRRecvAny(iobase
, OFF
);
758 if (speed
> 115200) {
759 /* Install FIR xmit handler */
760 dev
->netdev_ops
= &via_ircc_fir_ops
;
761 via_ircc_dma_receive(self
);
763 /* Install SIR xmit handler */
764 dev
->netdev_ops
= &via_ircc_sir_ops
;
766 netif_wake_queue(dev
);
770 * Function via_ircc_hard_xmit (skb, dev)
772 * Transmit the frame!
775 static netdev_tx_t
via_ircc_hard_xmit_sir(struct sk_buff
*skb
,
776 struct net_device
*dev
)
778 struct via_ircc_cb
*self
;
783 self
= netdev_priv(dev
);
784 IRDA_ASSERT(self
!= NULL
, return NETDEV_TX_OK
;);
785 iobase
= self
->io
.fir_base
;
787 netif_stop_queue(dev
);
788 /* Check if we need to change the speed */
789 speed
= irda_get_next_speed(skb
);
790 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
791 /* Check for empty frame */
793 via_ircc_change_speed(self
, speed
);
794 dev
->trans_start
= jiffies
;
798 self
->new_speed
= speed
;
802 SIRFilter(iobase
, ON
);
806 WriteReg(iobase
, I_ST_CT_0
, 0x00);
808 spin_lock_irqsave(&self
->lock
, flags
);
809 self
->tx_buff
.data
= self
->tx_buff
.head
;
811 async_wrap_skb(skb
, self
->tx_buff
.data
,
812 self
->tx_buff
.truesize
);
814 dev
->stats
.tx_bytes
+= self
->tx_buff
.len
;
815 /* Send this frame with old speed */
816 SetBaudRate(iobase
, self
->io
.speed
);
817 SetPulseWidth(iobase
, 12);
818 SetSendPreambleCount(iobase
, 0);
819 WriteReg(iobase
, I_ST_CT_0
, 0x80);
821 EnableTX(iobase
, ON
);
822 EnableRX(iobase
, OFF
);
824 ResetChip(iobase
, 0);
825 ResetChip(iobase
, 1);
826 ResetChip(iobase
, 2);
827 ResetChip(iobase
, 3);
828 ResetChip(iobase
, 4);
830 EnAllInt(iobase
, ON
);
832 EnRXDMA(iobase
, OFF
);
834 irda_setup_dma(self
->io
.dma
, self
->tx_buff_dma
, self
->tx_buff
.len
,
837 SetSendByte(iobase
, self
->tx_buff
.len
);
838 RXStart(iobase
, OFF
);
841 dev
->trans_start
= jiffies
;
842 spin_unlock_irqrestore(&self
->lock
, flags
);
847 static netdev_tx_t
via_ircc_hard_xmit_fir(struct sk_buff
*skb
,
848 struct net_device
*dev
)
850 struct via_ircc_cb
*self
;
855 self
= netdev_priv(dev
);
856 iobase
= self
->io
.fir_base
;
858 if (self
->st_fifo
.len
)
860 if (self
->chip_id
== 0x3076)
864 netif_stop_queue(dev
);
865 speed
= irda_get_next_speed(skb
);
866 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
868 via_ircc_change_speed(self
, speed
);
869 dev
->trans_start
= jiffies
;
873 self
->new_speed
= speed
;
875 spin_lock_irqsave(&self
->lock
, flags
);
876 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
= self
->tx_fifo
.tail
;
877 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].len
= skb
->len
;
879 self
->tx_fifo
.tail
+= skb
->len
;
880 dev
->stats
.tx_bytes
+= skb
->len
;
881 skb_copy_from_linear_data(skb
,
882 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
, skb
->len
);
884 self
->tx_fifo
.free
++;
885 //F01 if (self->tx_fifo.len == 1) {
886 via_ircc_dma_xmit(self
, iobase
);
888 //F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) netif_wake_queue(self->netdev);
889 dev
->trans_start
= jiffies
;
891 spin_unlock_irqrestore(&self
->lock
, flags
);
896 static int via_ircc_dma_xmit(struct via_ircc_cb
*self
, u16 iobase
)
898 EnTXDMA(iobase
, OFF
);
899 self
->io
.direction
= IO_XMIT
;
901 EnableTX(iobase
, ON
);
902 EnableRX(iobase
, OFF
);
903 ResetChip(iobase
, 0);
904 ResetChip(iobase
, 1);
905 ResetChip(iobase
, 2);
906 ResetChip(iobase
, 3);
907 ResetChip(iobase
, 4);
908 EnAllInt(iobase
, ON
);
910 EnRXDMA(iobase
, OFF
);
911 irda_setup_dma(self
->io
.dma
,
912 ((u8
*)self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].start
-
913 self
->tx_buff
.head
) + self
->tx_buff_dma
,
914 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
, DMA_TX_MODE
);
915 IRDA_DEBUG(1, "%s: tx_fifo.ptr=%x,len=%x,tx_fifo.len=%x..\n",
916 __func__
, self
->tx_fifo
.ptr
,
917 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
,
920 SetSendByte(iobase
, self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
);
921 RXStart(iobase
, OFF
);
928 * Function via_ircc_dma_xmit_complete (self)
930 * The transfer of a frame in finished. This function will only be called
931 * by the interrupt handler
934 static int via_ircc_dma_xmit_complete(struct via_ircc_cb
*self
)
940 IRDA_DEBUG(3, "%s()\n", __func__
);
942 iobase
= self
->io
.fir_base
;
944 // DisableDmaChannel(self->io.dma);
945 /* Check for underrun! */
946 /* Clear bit, by writing 1 into it */
947 Tx_status
= GetTXStatus(iobase
);
948 if (Tx_status
& 0x08) {
949 self
->netdev
->stats
.tx_errors
++;
950 self
->netdev
->stats
.tx_fifo_errors
++;
952 /* how to clear underrun? */
954 self
->netdev
->stats
.tx_packets
++;
955 ResetChip(iobase
, 3);
956 ResetChip(iobase
, 4);
958 /* Check if we need to change the speed */
959 if (self
->new_speed
) {
960 via_ircc_change_speed(self
, self
->new_speed
);
964 /* Finished with this frame, so prepare for next */
965 if (IsFIROn(iobase
)) {
966 if (self
->tx_fifo
.len
) {
972 "%s: tx_fifo.len=%x ,tx_fifo.ptr=%x,tx_fifo.free=%x...\n",
974 self
->tx_fifo
.len
, self
->tx_fifo
.ptr
, self
->tx_fifo
.free
);
976 // Any frames to be sent back-to-back?
977 if (self->tx_fifo.len) {
979 via_ircc_dma_xmit(self, iobase);
983 // Reset Tx FIFO info
984 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
985 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
988 // Make sure we have room for more frames
989 //F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) {
990 // Not busy transmitting anymore
991 // Tell the network layer, that we can accept more frames
992 netif_wake_queue(self
->netdev
);
998 * Function via_ircc_dma_receive (self)
1000 * Set configuration for receive a frame.
1003 static int via_ircc_dma_receive(struct via_ircc_cb
*self
)
1007 iobase
= self
->io
.fir_base
;
1009 IRDA_DEBUG(3, "%s()\n", __func__
);
1011 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1012 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1013 self
->RxDataReady
= 0;
1014 self
->io
.direction
= IO_RECV
;
1015 self
->rx_buff
.data
= self
->rx_buff
.head
;
1016 self
->st_fifo
.len
= self
->st_fifo
.pending_bytes
= 0;
1017 self
->st_fifo
.tail
= self
->st_fifo
.head
= 0;
1020 EnableTX(iobase
, OFF
);
1021 EnableRX(iobase
, ON
);
1023 ResetChip(iobase
, 0);
1024 ResetChip(iobase
, 1);
1025 ResetChip(iobase
, 2);
1026 ResetChip(iobase
, 3);
1027 ResetChip(iobase
, 4);
1029 EnAllInt(iobase
, ON
);
1030 EnTXDMA(iobase
, OFF
);
1031 EnRXDMA(iobase
, ON
);
1032 irda_setup_dma(self
->io
.dma2
, self
->rx_buff_dma
,
1033 self
->rx_buff
.truesize
, DMA_RX_MODE
);
1034 TXStart(iobase
, OFF
);
1035 RXStart(iobase
, ON
);
1041 * Function via_ircc_dma_receive_complete (self)
1043 * Controller Finished with receiving frames,
1044 * and this routine is call by ISR
1047 static int via_ircc_dma_receive_complete(struct via_ircc_cb
*self
,
1050 struct st_fifo
*st_fifo
;
1051 struct sk_buff
*skb
;
1055 iobase
= self
->io
.fir_base
;
1056 st_fifo
= &self
->st_fifo
;
1058 if (self
->io
.speed
< 4000000) { //Speed below FIR
1059 len
= GetRecvByte(iobase
, self
);
1060 skb
= dev_alloc_skb(len
+ 1);
1063 // Make sure IP header gets aligned
1064 skb_reserve(skb
, 1);
1065 skb_put(skb
, len
- 2);
1066 if (self
->chip_id
== 0x3076) {
1067 for (i
= 0; i
< len
- 2; i
++)
1068 skb
->data
[i
] = self
->rx_buff
.data
[i
* 2];
1070 if (self
->chip_id
== 0x3096) {
1071 for (i
= 0; i
< len
- 2; i
++)
1073 self
->rx_buff
.data
[i
];
1076 // Move to next frame
1077 self
->rx_buff
.data
+= len
;
1078 self
->netdev
->stats
.rx_bytes
+= len
;
1079 self
->netdev
->stats
.rx_packets
++;
1080 skb
->dev
= self
->netdev
;
1081 skb_reset_mac_header(skb
);
1082 skb
->protocol
= htons(ETH_P_IRDA
);
1088 len
= GetRecvByte(iobase
, self
);
1090 return TRUE
; //interrupt only, data maybe move by RxT
1091 if (((len
- 4) < 2) || ((len
- 4) > 2048)) {
1092 IRDA_DEBUG(1, "%s(): Trouble:len=%x,CurCount=%x,LastCount=%x..\n",
1093 __func__
, len
, RxCurCount(iobase
, self
),
1098 IRDA_DEBUG(2, "%s(): fifo.len=%x,len=%x,CurCount=%x..\n",
1100 st_fifo
->len
, len
- 4, RxCurCount(iobase
, self
));
1102 st_fifo
->entries
[st_fifo
->tail
].status
= status
;
1103 st_fifo
->entries
[st_fifo
->tail
].len
= len
;
1104 st_fifo
->pending_bytes
+= len
;
1107 if (st_fifo
->tail
> MAX_RX_WINDOW
)
1109 self
->RxDataReady
= 0;
1111 // It maybe have MAX_RX_WINDOW package receive by
1112 // receive_complete before Timer IRQ
1114 if (st_fifo->len < (MAX_RX_WINDOW+2 )) {
1120 EnableRX(iobase
, OFF
);
1121 EnRXDMA(iobase
, OFF
);
1122 RXStart(iobase
, OFF
);
1124 // Put this entry back in fifo
1125 if (st_fifo
->head
> MAX_RX_WINDOW
)
1127 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1128 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1132 skb
= dev_alloc_skb(len
+ 1 - 4);
1134 * if frame size, data ptr, or skb ptr are wrong, then get next
1137 if ((skb
== NULL
) || (skb
->data
== NULL
) ||
1138 (self
->rx_buff
.data
== NULL
) || (len
< 6)) {
1139 self
->netdev
->stats
.rx_dropped
++;
1143 skb_reserve(skb
, 1);
1144 skb_put(skb
, len
- 4);
1146 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4);
1147 IRDA_DEBUG(2, "%s(): len=%x.rx_buff=%p\n", __func__
,
1148 len
- 4, self
->rx_buff
.data
);
1150 // Move to next frame
1151 self
->rx_buff
.data
+= len
;
1152 self
->netdev
->stats
.rx_bytes
+= len
;
1153 self
->netdev
->stats
.rx_packets
++;
1154 skb
->dev
= self
->netdev
;
1155 skb_reset_mac_header(skb
);
1156 skb
->protocol
= htons(ETH_P_IRDA
);
1166 * if frame is received , but no INT ,then use this routine to upload frame.
1168 static int upload_rxdata(struct via_ircc_cb
*self
, int iobase
)
1170 struct sk_buff
*skb
;
1172 struct st_fifo
*st_fifo
;
1173 st_fifo
= &self
->st_fifo
;
1175 len
= GetRecvByte(iobase
, self
);
1177 IRDA_DEBUG(2, "%s(): len=%x\n", __func__
, len
);
1179 if ((len
- 4) < 2) {
1180 self
->netdev
->stats
.rx_dropped
++;
1184 skb
= dev_alloc_skb(len
+ 1);
1186 self
->netdev
->stats
.rx_dropped
++;
1189 skb_reserve(skb
, 1);
1190 skb_put(skb
, len
- 4 + 1);
1191 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4 + 1);
1194 if (st_fifo
->tail
> MAX_RX_WINDOW
)
1196 // Move to next frame
1197 self
->rx_buff
.data
+= len
;
1198 self
->netdev
->stats
.rx_bytes
+= len
;
1199 self
->netdev
->stats
.rx_packets
++;
1200 skb
->dev
= self
->netdev
;
1201 skb_reset_mac_header(skb
);
1202 skb
->protocol
= htons(ETH_P_IRDA
);
1204 if (st_fifo
->len
< (MAX_RX_WINDOW
+ 2)) {
1205 RXStart(iobase
, ON
);
1207 EnableRX(iobase
, OFF
);
1208 EnRXDMA(iobase
, OFF
);
1209 RXStart(iobase
, OFF
);
1215 * Implement back to back receive , use this routine to upload data.
1218 static int RxTimerHandler(struct via_ircc_cb
*self
, int iobase
)
1220 struct st_fifo
*st_fifo
;
1221 struct sk_buff
*skb
;
1225 st_fifo
= &self
->st_fifo
;
1227 if (CkRxRecv(iobase
, self
)) {
1228 // if still receiving ,then return ,don't upload frame
1229 self
->RetryCount
= 0;
1230 SetTimer(iobase
, 20);
1231 self
->RxDataReady
++;
1236 if ((self
->RetryCount
>= 1) ||
1237 ((st_fifo
->pending_bytes
+ 2048) > self
->rx_buff
.truesize
) ||
1238 (st_fifo
->len
>= (MAX_RX_WINDOW
))) {
1239 while (st_fifo
->len
> 0) { //upload frame
1240 // Put this entry back in fifo
1241 if (st_fifo
->head
> MAX_RX_WINDOW
)
1243 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1244 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1248 skb
= dev_alloc_skb(len
+ 1 - 4);
1250 * if frame size, data ptr, or skb ptr are wrong,
1251 * then get next entry.
1253 if ((skb
== NULL
) || (skb
->data
== NULL
) ||
1254 (self
->rx_buff
.data
== NULL
) || (len
< 6)) {
1255 self
->netdev
->stats
.rx_dropped
++;
1258 skb_reserve(skb
, 1);
1259 skb_put(skb
, len
- 4);
1260 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4);
1262 IRDA_DEBUG(2, "%s(): len=%x.head=%x\n", __func__
,
1263 len
- 4, st_fifo
->head
);
1265 // Move to next frame
1266 self
->rx_buff
.data
+= len
;
1267 self
->netdev
->stats
.rx_bytes
+= len
;
1268 self
->netdev
->stats
.rx_packets
++;
1269 skb
->dev
= self
->netdev
;
1270 skb_reset_mac_header(skb
);
1271 skb
->protocol
= htons(ETH_P_IRDA
);
1274 self
->RetryCount
= 0;
1277 "%s(): End of upload HostStatus=%x,RxStatus=%x\n",
1279 GetHostStatus(iobase
), GetRXStatus(iobase
));
1282 * if frame is receive complete at this routine ,then upload
1285 if ((GetRXStatus(iobase
) & 0x10) &&
1286 (RxCurCount(iobase
, self
) != self
->RxLastCount
)) {
1287 upload_rxdata(self
, iobase
);
1288 if (irda_device_txqueue_empty(self
->netdev
))
1289 via_ircc_dma_receive(self
);
1291 } // timer detect complete
1293 SetTimer(iobase
, 4);
1301 * Function via_ircc_interrupt (irq, dev_id)
1303 * An interrupt from the chip has arrived. Time to do some work
1306 static irqreturn_t
via_ircc_interrupt(int dummy
, void *dev_id
)
1308 struct net_device
*dev
= dev_id
;
1309 struct via_ircc_cb
*self
= netdev_priv(dev
);
1311 u8 iHostIntType
, iRxIntType
, iTxIntType
;
1313 iobase
= self
->io
.fir_base
;
1314 spin_lock(&self
->lock
);
1315 iHostIntType
= GetHostStatus(iobase
);
1317 IRDA_DEBUG(4, "%s(): iHostIntType %02x: %s %s %s %02x\n",
1318 __func__
, iHostIntType
,
1319 (iHostIntType
& 0x40) ? "Timer" : "",
1320 (iHostIntType
& 0x20) ? "Tx" : "",
1321 (iHostIntType
& 0x10) ? "Rx" : "",
1322 (iHostIntType
& 0x0e) >> 1);
1324 if ((iHostIntType
& 0x40) != 0) { //Timer Event
1325 self
->EventFlag
.TimeOut
++;
1326 ClearTimerInt(iobase
, 1);
1327 if (self
->io
.direction
== IO_XMIT
) {
1328 via_ircc_dma_xmit(self
, iobase
);
1330 if (self
->io
.direction
== IO_RECV
) {
1332 * frame ready hold too long, must reset.
1334 if (self
->RxDataReady
> 30) {
1336 if (irda_device_txqueue_empty(self
->netdev
)) {
1337 via_ircc_dma_receive(self
);
1339 } else { // call this to upload frame.
1340 RxTimerHandler(self
, iobase
);
1344 if ((iHostIntType
& 0x20) != 0) { //Tx Event
1345 iTxIntType
= GetTXStatus(iobase
);
1347 IRDA_DEBUG(4, "%s(): iTxIntType %02x: %s %s %s %s\n",
1348 __func__
, iTxIntType
,
1349 (iTxIntType
& 0x08) ? "FIFO underr." : "",
1350 (iTxIntType
& 0x04) ? "EOM" : "",
1351 (iTxIntType
& 0x02) ? "FIFO ready" : "",
1352 (iTxIntType
& 0x01) ? "Early EOM" : "");
1354 if (iTxIntType
& 0x4) {
1355 self
->EventFlag
.EOMessage
++; // read and will auto clean
1356 if (via_ircc_dma_xmit_complete(self
)) {
1357 if (irda_device_txqueue_empty
1359 via_ircc_dma_receive(self
);
1362 self
->EventFlag
.Unknown
++;
1366 //----------------------------------------
1367 if ((iHostIntType
& 0x10) != 0) { //Rx Event
1368 /* Check if DMA has finished */
1369 iRxIntType
= GetRXStatus(iobase
);
1371 IRDA_DEBUG(4, "%s(): iRxIntType %02x: %s %s %s %s %s %s %s\n",
1372 __func__
, iRxIntType
,
1373 (iRxIntType
& 0x80) ? "PHY err." : "",
1374 (iRxIntType
& 0x40) ? "CRC err" : "",
1375 (iRxIntType
& 0x20) ? "FIFO overr." : "",
1376 (iRxIntType
& 0x10) ? "EOF" : "",
1377 (iRxIntType
& 0x08) ? "RxData" : "",
1378 (iRxIntType
& 0x02) ? "RxMaxLen" : "",
1379 (iRxIntType
& 0x01) ? "SIR bad" : "");
1381 IRDA_DEBUG(3, "%s(): RxIRQ =0\n", __func__
);
1383 if (iRxIntType
& 0x10) {
1384 if (via_ircc_dma_receive_complete(self
, iobase
)) {
1385 //F01 if(!(IsFIROn(iobase))) via_ircc_dma_receive(self);
1386 via_ircc_dma_receive(self
);
1390 IRDA_DEBUG(4, "%s(): RxIRQ ERR:iRxIntType=%x,HostIntType=%x,CurCount=%x,RxLastCount=%x_____\n",
1391 __func__
, iRxIntType
, iHostIntType
,
1392 RxCurCount(iobase
, self
),
1395 if (iRxIntType
& 0x20) { //FIFO OverRun ERR
1396 ResetChip(iobase
, 0);
1397 ResetChip(iobase
, 1);
1398 } else { //PHY,CRC ERR
1400 if (iRxIntType
!= 0x08)
1401 hwreset(self
); //F01
1403 via_ircc_dma_receive(self
);
1407 spin_unlock(&self
->lock
);
1408 return IRQ_RETVAL(iHostIntType
);
1411 static void hwreset(struct via_ircc_cb
*self
)
1414 iobase
= self
->io
.fir_base
;
1416 IRDA_DEBUG(3, "%s()\n", __func__
);
1418 ResetChip(iobase
, 5);
1419 EnableDMA(iobase
, OFF
);
1420 EnableTX(iobase
, OFF
);
1421 EnableRX(iobase
, OFF
);
1422 EnRXDMA(iobase
, OFF
);
1423 EnTXDMA(iobase
, OFF
);
1424 RXStart(iobase
, OFF
);
1425 TXStart(iobase
, OFF
);
1428 SIRFilter(iobase
, ON
);
1432 WriteReg(iobase
, I_ST_CT_0
, 0x00);
1433 SetBaudRate(iobase
, 9600);
1434 SetPulseWidth(iobase
, 12);
1435 SetSendPreambleCount(iobase
, 0);
1436 WriteReg(iobase
, I_ST_CT_0
, 0x80);
1438 /* Restore speed. */
1439 via_ircc_change_speed(self
, self
->io
.speed
);
1441 self
->st_fifo
.len
= 0;
1445 * Function via_ircc_is_receiving (self)
1447 * Return TRUE is we are currently receiving a frame
1450 static int via_ircc_is_receiving(struct via_ircc_cb
*self
)
1455 IRDA_ASSERT(self
!= NULL
, return FALSE
;);
1457 iobase
= self
->io
.fir_base
;
1458 if (CkRxRecv(iobase
, self
))
1461 IRDA_DEBUG(2, "%s(): status=%x....\n", __func__
, status
);
1468 * Function via_ircc_net_open (dev)
1473 static int via_ircc_net_open(struct net_device
*dev
)
1475 struct via_ircc_cb
*self
;
1479 IRDA_DEBUG(3, "%s()\n", __func__
);
1481 IRDA_ASSERT(dev
!= NULL
, return -1;);
1482 self
= netdev_priv(dev
);
1483 dev
->stats
.rx_packets
= 0;
1484 IRDA_ASSERT(self
!= NULL
, return 0;);
1485 iobase
= self
->io
.fir_base
;
1486 if (request_irq(self
->io
.irq
, via_ircc_interrupt
, 0, dev
->name
, dev
)) {
1487 IRDA_WARNING("%s, unable to allocate irq=%d\n", driver_name
,
1492 * Always allocate the DMA channel after the IRQ, and clean up on
1495 if (request_dma(self
->io
.dma
, dev
->name
)) {
1496 IRDA_WARNING("%s, unable to allocate dma=%d\n", driver_name
,
1498 free_irq(self
->io
.irq
, dev
);
1501 if (self
->io
.dma2
!= self
->io
.dma
) {
1502 if (request_dma(self
->io
.dma2
, dev
->name
)) {
1503 IRDA_WARNING("%s, unable to allocate dma2=%d\n",
1504 driver_name
, self
->io
.dma2
);
1505 free_irq(self
->io
.irq
, dev
);
1506 free_dma(self
->io
.dma
);
1512 /* turn on interrupts */
1513 EnAllInt(iobase
, ON
);
1514 EnInternalLoop(iobase
, OFF
);
1515 EnExternalLoop(iobase
, OFF
);
1518 via_ircc_dma_receive(self
);
1520 /* Ready to play! */
1521 netif_start_queue(dev
);
1524 * Open new IrLAP layer instance, now that everything should be
1525 * initialized properly
1527 sprintf(hwname
, "VIA @ 0x%x", iobase
);
1528 self
->irlap
= irlap_open(dev
, &self
->qos
, hwname
);
1530 self
->RxLastCount
= 0;
1536 * Function via_ircc_net_close (dev)
1541 static int via_ircc_net_close(struct net_device
*dev
)
1543 struct via_ircc_cb
*self
;
1546 IRDA_DEBUG(3, "%s()\n", __func__
);
1548 IRDA_ASSERT(dev
!= NULL
, return -1;);
1549 self
= netdev_priv(dev
);
1550 IRDA_ASSERT(self
!= NULL
, return 0;);
1553 netif_stop_queue(dev
);
1554 /* Stop and remove instance of IrLAP */
1556 irlap_close(self
->irlap
);
1558 iobase
= self
->io
.fir_base
;
1559 EnTXDMA(iobase
, OFF
);
1560 EnRXDMA(iobase
, OFF
);
1561 DisableDmaChannel(self
->io
.dma
);
1563 /* Disable interrupts */
1564 EnAllInt(iobase
, OFF
);
1565 free_irq(self
->io
.irq
, dev
);
1566 free_dma(self
->io
.dma
);
1567 if (self
->io
.dma2
!= self
->io
.dma
)
1568 free_dma(self
->io
.dma2
);
1574 * Function via_ircc_net_ioctl (dev, rq, cmd)
1576 * Process IOCTL commands for this device
1579 static int via_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
,
1582 struct if_irda_req
*irq
= (struct if_irda_req
*) rq
;
1583 struct via_ircc_cb
*self
;
1584 unsigned long flags
;
1587 IRDA_ASSERT(dev
!= NULL
, return -1;);
1588 self
= netdev_priv(dev
);
1589 IRDA_ASSERT(self
!= NULL
, return -1;);
1590 IRDA_DEBUG(1, "%s(), %s, (cmd=0x%X)\n", __func__
, dev
->name
,
1592 /* Disable interrupts & save flags */
1593 spin_lock_irqsave(&self
->lock
, flags
);
1595 case SIOCSBANDWIDTH
: /* Set bandwidth */
1596 if (!capable(CAP_NET_ADMIN
)) {
1600 via_ircc_change_speed(self
, irq
->ifr_baudrate
);
1602 case SIOCSMEDIABUSY
: /* Set media busy */
1603 if (!capable(CAP_NET_ADMIN
)) {
1607 irda_device_set_media_busy(self
->netdev
, TRUE
);
1609 case SIOCGRECEIVING
: /* Check if we are receiving right now */
1610 irq
->ifr_receiving
= via_ircc_is_receiving(self
);
1616 spin_unlock_irqrestore(&self
->lock
, flags
);
1620 MODULE_AUTHOR("VIA Technologies,inc");
1621 MODULE_DESCRIPTION("VIA IrDA Device Driver");
1622 MODULE_LICENSE("GPL");
1624 module_init(via_ircc_init
);
1625 module_exit(via_ircc_cleanup
);