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, see <http://www.gnu.org/licenses/>.
22 F01 Oct/02/02: Modify code for V0.11(move out back to back transfer)
23 F02 Oct/28/02: Add SB device ID for 3147 and 3177.
25 jul/09/2002 : only implement two kind of dongle currently.
26 Oct/02/2002 : work on VT8231 and VT8233 .
27 Aug/06/2003 : change driver format to pci driver .
29 2004-02-16: <sda@bdit.de>
30 - Removed unneeded 'legacy' pci stuff.
31 - Make sure SIR mode is set (hw_init()) before calling mode-dependent stuff.
32 - On speed change from core, don't send SIR frame with new speed.
33 Use current speed and change speeds later.
34 - Make module-param dongle_id actually work.
35 - New dongle_id 17 (0x11): TDFS4500. Single-ended SIR only.
36 Tested with home-grown PCB on EPIA boards.
39 ********************************************************************/
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/types.h>
43 #include <linux/skbuff.h>
44 #include <linux/netdevice.h>
45 #include <linux/ioport.h>
46 #include <linux/delay.h>
47 #include <linux/init.h>
48 #include <linux/interrupt.h>
49 #include <linux/rtnetlink.h>
50 #include <linux/pci.h>
51 #include <linux/dma-mapping.h>
52 #include <linux/gfp.h>
56 #include <asm/byteorder.h>
60 #include <net/irda/wrapper.h>
61 #include <net/irda/irda.h>
62 #include <net/irda/irda_device.h>
66 #define VIA_MODULE_NAME "via-ircc"
67 #define CHIP_IO_EXTENT 0x40
69 static char *driver_name
= VIA_MODULE_NAME
;
71 /* Module parameters */
72 static int qos_mtt_bits
= 0x07; /* 1 ms or more */
73 static int dongle_id
= 0; /* default: probe */
75 /* We can't guess the type of connected dongle, user *must* supply it. */
76 module_param(dongle_id
, int, 0);
79 static int via_ircc_open(struct pci_dev
*pdev
, chipio_t
*info
,
81 static int via_ircc_dma_receive(struct via_ircc_cb
*self
);
82 static int via_ircc_dma_receive_complete(struct via_ircc_cb
*self
,
84 static netdev_tx_t
via_ircc_hard_xmit_sir(struct sk_buff
*skb
,
85 struct net_device
*dev
);
86 static netdev_tx_t
via_ircc_hard_xmit_fir(struct sk_buff
*skb
,
87 struct net_device
*dev
);
88 static void via_hw_init(struct via_ircc_cb
*self
);
89 static void via_ircc_change_speed(struct via_ircc_cb
*self
, __u32 baud
);
90 static irqreturn_t
via_ircc_interrupt(int irq
, void *dev_id
);
91 static int via_ircc_is_receiving(struct via_ircc_cb
*self
);
92 static int via_ircc_read_dongle_id(int iobase
);
94 static int via_ircc_net_open(struct net_device
*dev
);
95 static int via_ircc_net_close(struct net_device
*dev
);
96 static int via_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
,
98 static void via_ircc_change_dongle_speed(int iobase
, int speed
,
100 static int RxTimerHandler(struct via_ircc_cb
*self
, int iobase
);
101 static void hwreset(struct via_ircc_cb
*self
);
102 static int via_ircc_dma_xmit(struct via_ircc_cb
*self
, u16 iobase
);
103 static int upload_rxdata(struct via_ircc_cb
*self
, int iobase
);
104 static int via_init_one(struct pci_dev
*pcidev
, const struct pci_device_id
*id
);
105 static void via_remove_one(struct pci_dev
*pdev
);
107 /* FIXME : Should use udelay() instead, even if we are x86 only - Jean II */
108 static void iodelay(int udelay
)
113 for (i
= 0; i
< udelay
; i
++) {
118 static DEFINE_PCI_DEVICE_TABLE(via_pci_tbl
) = {
119 { PCI_VENDOR_ID_VIA
, 0x8231, PCI_ANY_ID
, PCI_ANY_ID
,0,0,0 },
120 { PCI_VENDOR_ID_VIA
, 0x3109, PCI_ANY_ID
, PCI_ANY_ID
,0,0,1 },
121 { PCI_VENDOR_ID_VIA
, 0x3074, PCI_ANY_ID
, PCI_ANY_ID
,0,0,2 },
122 { PCI_VENDOR_ID_VIA
, 0x3147, PCI_ANY_ID
, PCI_ANY_ID
,0,0,3 },
123 { PCI_VENDOR_ID_VIA
, 0x3177, PCI_ANY_ID
, PCI_ANY_ID
,0,0,4 },
127 MODULE_DEVICE_TABLE(pci
,via_pci_tbl
);
130 static struct pci_driver via_driver
= {
131 .name
= VIA_MODULE_NAME
,
132 .id_table
= via_pci_tbl
,
133 .probe
= via_init_one
,
134 .remove
= via_remove_one
,
139 * Function via_ircc_init ()
141 * Initialize chip. Just find out chip type and resource.
143 static int __init
via_ircc_init(void)
147 IRDA_DEBUG(3, "%s()\n", __func__
);
149 rc
= pci_register_driver(&via_driver
);
151 IRDA_DEBUG(0, "%s(): error rc = %d, returning -ENODEV...\n",
158 static int via_init_one(struct pci_dev
*pcidev
, const struct pci_device_id
*id
)
161 u8 temp
,oldPCI_40
,oldPCI_44
,bTmp
,bTmp1
;
162 u16 Chipset
,FirDRQ1
,FirDRQ0
,FirIRQ
,FirIOBase
;
165 IRDA_DEBUG(2, "%s(): Device ID=(0X%X)\n", __func__
, id
->device
);
167 rc
= pci_enable_device (pcidev
);
169 IRDA_DEBUG(0, "%s(): error rc = %d\n", __func__
, rc
);
173 // South Bridge exist
174 if ( ReadLPCReg(0x20) != 0x3C )
179 if (Chipset
==0x3076) {
180 IRDA_DEBUG(2, "%s(): Chipset = 3076\n", __func__
);
182 WriteLPCReg(7,0x0c );
183 temp
=ReadLPCReg(0x30);//check if BIOS Enable Fir
184 if((temp
&0x01)==1) { // BIOS close or no FIR
185 WriteLPCReg(0x1d, 0x82 );
186 WriteLPCReg(0x23,0x18);
187 temp
=ReadLPCReg(0xF0);
189 temp
=(ReadLPCReg(0x74)&0x03); //DMA
191 temp
=(ReadLPCReg(0x74)&0x0C) >> 2;
194 temp
=(ReadLPCReg(0x74)&0x0C) >> 2; //DMA
198 FirIRQ
=(ReadLPCReg(0x70)&0x0f); //IRQ
199 FirIOBase
=ReadLPCReg(0x60 ) << 8; //IO Space :high byte
200 FirIOBase
=FirIOBase
| ReadLPCReg(0x61) ; //low byte
201 FirIOBase
=FirIOBase
;
202 info
.fir_base
=FirIOBase
;
206 pci_read_config_byte(pcidev
,0x40,&bTmp
);
207 pci_write_config_byte(pcidev
,0x40,((bTmp
| 0x08) & 0xfe));
208 pci_read_config_byte(pcidev
,0x42,&bTmp
);
209 pci_write_config_byte(pcidev
,0x42,(bTmp
| 0xf0));
210 pci_write_config_byte(pcidev
,0x5a,0xc0);
211 WriteLPCReg(0x28, 0x70 );
212 rc
= via_ircc_open(pcidev
, &info
, 0x3076);
214 rc
= -ENODEV
; //IR not turn on
215 } else { //Not VT1211
216 IRDA_DEBUG(2, "%s(): Chipset = 3096\n", __func__
);
218 pci_read_config_byte(pcidev
,0x67,&bTmp
);//check if BIOS Enable Fir
219 if((bTmp
&0x01)==1) { // BIOS enable FIR
220 //Enable Double DMA clock
221 pci_read_config_byte(pcidev
,0x42,&oldPCI_40
);
222 pci_write_config_byte(pcidev
,0x42,oldPCI_40
| 0x80);
223 pci_read_config_byte(pcidev
,0x40,&oldPCI_40
);
224 pci_write_config_byte(pcidev
,0x40,oldPCI_40
& 0xf7);
225 pci_read_config_byte(pcidev
,0x44,&oldPCI_44
);
226 pci_write_config_byte(pcidev
,0x44,0x4e);
227 //---------- read configuration from Function0 of south bridge
229 pci_read_config_byte(pcidev
,0x44,&bTmp1
); //DMA
230 FirDRQ0
= (bTmp1
& 0x30) >> 4;
231 pci_read_config_byte(pcidev
,0x44,&bTmp1
);
232 FirDRQ1
= (bTmp1
& 0xc0) >> 6;
234 pci_read_config_byte(pcidev
,0x44,&bTmp1
); //DMA
235 FirDRQ0
= (bTmp1
& 0x30) >> 4 ;
238 pci_read_config_byte(pcidev
,0x47,&bTmp1
); //IRQ
239 FirIRQ
= bTmp1
& 0x0f;
241 pci_read_config_byte(pcidev
,0x69,&bTmp
);
242 FirIOBase
= bTmp
<< 8;//hight byte
243 pci_read_config_byte(pcidev
,0x68,&bTmp
);
244 FirIOBase
= (FirIOBase
| bTmp
) & 0xfff0;
245 //-------------------------
246 info
.fir_base
=FirIOBase
;
250 rc
= via_ircc_open(pcidev
, &info
, 0x3096);
252 rc
= -ENODEV
; //IR not turn on !!!!!
255 IRDA_DEBUG(2, "%s(): End - rc = %d\n", __func__
, rc
);
259 static void __exit
via_ircc_cleanup(void)
261 IRDA_DEBUG(3, "%s()\n", __func__
);
263 /* Cleanup all instances of the driver */
264 pci_unregister_driver (&via_driver
);
267 static const struct net_device_ops via_ircc_sir_ops
= {
268 .ndo_start_xmit
= via_ircc_hard_xmit_sir
,
269 .ndo_open
= via_ircc_net_open
,
270 .ndo_stop
= via_ircc_net_close
,
271 .ndo_do_ioctl
= via_ircc_net_ioctl
,
273 static const struct net_device_ops via_ircc_fir_ops
= {
274 .ndo_start_xmit
= via_ircc_hard_xmit_fir
,
275 .ndo_open
= via_ircc_net_open
,
276 .ndo_stop
= via_ircc_net_close
,
277 .ndo_do_ioctl
= via_ircc_net_ioctl
,
281 * Function via_ircc_open(pdev, iobase, irq)
283 * Open driver instance
286 static int via_ircc_open(struct pci_dev
*pdev
, chipio_t
*info
, unsigned int id
)
288 struct net_device
*dev
;
289 struct via_ircc_cb
*self
;
292 IRDA_DEBUG(3, "%s()\n", __func__
);
294 /* Allocate new instance of the driver */
295 dev
= alloc_irdadev(sizeof(struct via_ircc_cb
));
299 self
= netdev_priv(dev
);
301 spin_lock_init(&self
->lock
);
303 pci_set_drvdata(pdev
, self
);
305 /* Initialize Resource */
306 self
->io
.cfg_base
= info
->cfg_base
;
307 self
->io
.fir_base
= info
->fir_base
;
308 self
->io
.irq
= info
->irq
;
309 self
->io
.fir_ext
= CHIP_IO_EXTENT
;
310 self
->io
.dma
= info
->dma
;
311 self
->io
.dma2
= info
->dma2
;
312 self
->io
.fifo_size
= 32;
314 self
->st_fifo
.len
= 0;
315 self
->RxDataReady
= 0;
317 /* Reserve the ioports that we need */
318 if (!request_region(self
->io
.fir_base
, self
->io
.fir_ext
, driver_name
)) {
319 IRDA_DEBUG(0, "%s(), can't get iobase of 0x%03x\n",
320 __func__
, self
->io
.fir_base
);
325 /* Initialize QoS for this device */
326 irda_init_max_qos_capabilies(&self
->qos
);
328 /* Check if user has supplied the dongle id or not */
330 dongle_id
= via_ircc_read_dongle_id(self
->io
.fir_base
);
331 self
->io
.dongle_id
= dongle_id
;
333 /* The only value we must override it the baudrate */
334 /* Maximum speeds and capabilities are dongle-dependent. */
335 switch( self
->io
.dongle_id
){
337 self
->qos
.baud_rate
.bits
=
338 IR_9600
| IR_19200
| IR_38400
| IR_57600
| IR_115200
|
339 IR_576000
| IR_1152000
| (IR_4000000
<< 8);
342 self
->qos
.baud_rate
.bits
=
343 IR_9600
| IR_19200
| IR_38400
| IR_57600
| IR_115200
;
347 /* Following was used for testing:
349 * self->qos.baud_rate.bits = IR_9600;
351 * Is is no good, as it prohibits (error-prone) speed-changes.
354 self
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
355 irda_qos_bits_to_value(&self
->qos
);
357 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
358 self
->rx_buff
.truesize
= 14384 + 2048;
359 self
->tx_buff
.truesize
= 14384 + 2048;
361 /* Allocate memory if needed */
363 dma_zalloc_coherent(&pdev
->dev
, self
->rx_buff
.truesize
,
364 &self
->rx_buff_dma
, GFP_KERNEL
);
365 if (self
->rx_buff
.head
== NULL
) {
371 dma_zalloc_coherent(&pdev
->dev
, self
->tx_buff
.truesize
,
372 &self
->tx_buff_dma
, GFP_KERNEL
);
373 if (self
->tx_buff
.head
== NULL
) {
378 self
->rx_buff
.in_frame
= FALSE
;
379 self
->rx_buff
.state
= OUTSIDE_FRAME
;
380 self
->tx_buff
.data
= self
->tx_buff
.head
;
381 self
->rx_buff
.data
= self
->rx_buff
.head
;
383 /* Reset Tx queue info */
384 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
385 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
387 /* Override the network functions we need to use */
388 dev
->netdev_ops
= &via_ircc_sir_ops
;
390 err
= register_netdev(dev
);
394 IRDA_MESSAGE("IrDA: Registered device %s (via-ircc)\n", dev
->name
);
396 /* Initialise the hardware..
398 self
->io
.speed
= 9600;
402 dma_free_coherent(&pdev
->dev
, self
->tx_buff
.truesize
,
403 self
->tx_buff
.head
, self
->tx_buff_dma
);
405 dma_free_coherent(&pdev
->dev
, self
->rx_buff
.truesize
,
406 self
->rx_buff
.head
, self
->rx_buff_dma
);
408 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
415 * Function via_remove_one(pdev)
417 * Close driver instance
420 static void via_remove_one(struct pci_dev
*pdev
)
422 struct via_ircc_cb
*self
= pci_get_drvdata(pdev
);
425 IRDA_DEBUG(3, "%s()\n", __func__
);
427 iobase
= self
->io
.fir_base
;
429 ResetChip(iobase
, 5); //hardware reset.
430 /* Remove netdevice */
431 unregister_netdev(self
->netdev
);
433 /* Release the PORT that this driver is using */
434 IRDA_DEBUG(2, "%s(), Releasing Region %03x\n",
435 __func__
, self
->io
.fir_base
);
436 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
437 if (self
->tx_buff
.head
)
438 dma_free_coherent(&pdev
->dev
, self
->tx_buff
.truesize
,
439 self
->tx_buff
.head
, self
->tx_buff_dma
);
440 if (self
->rx_buff
.head
)
441 dma_free_coherent(&pdev
->dev
, self
->rx_buff
.truesize
,
442 self
->rx_buff
.head
, self
->rx_buff_dma
);
444 free_netdev(self
->netdev
);
446 pci_disable_device(pdev
);
450 * Function via_hw_init(self)
452 * Returns non-negative on success.
454 * Formerly via_ircc_setup
456 static void via_hw_init(struct via_ircc_cb
*self
)
458 int iobase
= self
->io
.fir_base
;
460 IRDA_DEBUG(3, "%s()\n", __func__
);
462 SetMaxRxPacketSize(iobase
, 0x0fff); //set to max:4095
464 EnRXFIFOReadyInt(iobase
, OFF
);
465 EnRXFIFOHalfLevelInt(iobase
, OFF
);
466 EnTXFIFOHalfLevelInt(iobase
, OFF
);
467 EnTXFIFOUnderrunEOMInt(iobase
, ON
);
468 EnTXFIFOReadyInt(iobase
, OFF
);
469 InvertTX(iobase
, OFF
);
470 InvertRX(iobase
, OFF
);
472 if (ReadLPCReg(0x20) == 0x3c)
473 WriteLPCReg(0xF0, 0); // for VT1211
475 EnRXSpecInt(iobase
, ON
);
477 /* The following is basically hwreset */
478 /* If this is the case, why not just call hwreset() ? Jean II */
479 ResetChip(iobase
, 5);
480 EnableDMA(iobase
, OFF
);
481 EnableTX(iobase
, OFF
);
482 EnableRX(iobase
, OFF
);
483 EnRXDMA(iobase
, OFF
);
484 EnTXDMA(iobase
, OFF
);
485 RXStart(iobase
, OFF
);
486 TXStart(iobase
, OFF
);
489 SIRFilter(iobase
, ON
);
493 WriteReg(iobase
, I_ST_CT_0
, 0x00);
494 SetBaudRate(iobase
, 9600);
495 SetPulseWidth(iobase
, 12);
496 SetSendPreambleCount(iobase
, 0);
498 self
->io
.speed
= 9600;
499 self
->st_fifo
.len
= 0;
501 via_ircc_change_dongle_speed(iobase
, self
->io
.speed
,
504 WriteReg(iobase
, I_ST_CT_0
, 0x80);
508 * Function via_ircc_read_dongle_id (void)
511 static int via_ircc_read_dongle_id(int iobase
)
513 int dongle_id
= 9; /* Default to IBM */
515 IRDA_ERROR("via-ircc: dongle probing not supported, please specify dongle_id module parameter.\n");
520 * Function via_ircc_change_dongle_speed (iobase, speed, dongle_id)
521 * Change speed of the attach dongle
522 * only implement two type of dongle currently.
524 static void via_ircc_change_dongle_speed(int iobase
, int speed
,
529 /* speed is unused, as we use IsSIROn()/IsMIROn() */
532 IRDA_DEBUG(1, "%s(): change_dongle_speed to %d for 0x%x, %d\n",
533 __func__
, speed
, iobase
, dongle_id
);
537 /* Note: The dongle_id's listed here are derived from
540 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
541 UseOneRX(iobase
, ON
); // use one RX pin RX1,RX2
542 InvertTX(iobase
, OFF
);
543 InvertRX(iobase
, OFF
);
545 EnRX2(iobase
, ON
); //sir to rx2
546 EnGPIOtoRX2(iobase
, OFF
);
548 if (IsSIROn(iobase
)) { //sir
550 SlowIRRXLowActive(iobase
, ON
);
552 SlowIRRXLowActive(iobase
, OFF
);
554 if (IsMIROn(iobase
)) { //mir
556 SlowIRRXLowActive(iobase
, OFF
);
559 if (IsFIROn(iobase
)) { //fir
561 SlowIRRXLowActive(iobase
, OFF
);
568 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
569 UseOneRX(iobase
, ON
); //use ONE RX....RX1
570 InvertTX(iobase
, OFF
);
571 InvertRX(iobase
, OFF
); // invert RX pin
574 EnGPIOtoRX2(iobase
, OFF
);
575 if (IsSIROn(iobase
)) { //sir
577 SlowIRRXLowActive(iobase
, ON
);
580 SlowIRRXLowActive(iobase
, OFF
);
582 if (IsMIROn(iobase
)) { //mir
584 SlowIRRXLowActive(iobase
, OFF
);
587 SlowIRRXLowActive(iobase
, ON
);
589 if (IsFIROn(iobase
)) { //fir
591 SlowIRRXLowActive(iobase
, OFF
);
596 SlowIRRXLowActive(iobase
, ON
);
599 WriteTX(iobase
, OFF
);
605 UseOneRX(iobase
, OFF
); // use two RX pin RX1,RX2
606 InvertTX(iobase
, OFF
);
607 InvertRX(iobase
, OFF
);
608 SlowIRRXLowActive(iobase
, OFF
);
609 if (IsSIROn(iobase
)) { //sir
610 EnGPIOtoRX2(iobase
, OFF
);
611 WriteGIO(iobase
, OFF
);
612 EnRX2(iobase
, OFF
); //sir to rx2
614 EnGPIOtoRX2(iobase
, OFF
);
615 WriteGIO(iobase
, OFF
);
616 EnRX2(iobase
, OFF
); //fir to rx
620 case 0x11: /* Temic TFDS4500 */
622 IRDA_DEBUG(2, "%s: Temic TFDS4500: One RX pin, TX normal, RX inverted.\n", __func__
);
624 UseOneRX(iobase
, ON
); //use ONE RX....RX1
625 InvertTX(iobase
, OFF
);
626 InvertRX(iobase
, ON
); // invert RX pin
628 EnRX2(iobase
, ON
); //sir to rx2
629 EnGPIOtoRX2(iobase
, OFF
);
631 if( IsSIROn(iobase
) ){ //sir
634 SlowIRRXLowActive(iobase
, ON
);
637 SlowIRRXLowActive(iobase
, OFF
);
640 IRDA_DEBUG(0, "%s: Warning: TFDS4500 not running in SIR mode !\n", __func__
);
644 case 0x0ff: /* Vishay */
647 else if (IsMIROn(iobase
))
649 else if (IsFIROn(iobase
))
651 else if (IsVFIROn(iobase
))
653 SI_SetMode(iobase
, mode
);
657 IRDA_ERROR("%s: Error: dongle_id %d unsupported !\n",
658 __func__
, dongle_id
);
663 * Function via_ircc_change_speed (self, baud)
665 * Change the speed of the device
668 static void via_ircc_change_speed(struct via_ircc_cb
*self
, __u32 speed
)
670 struct net_device
*dev
= self
->netdev
;
674 iobase
= self
->io
.fir_base
;
675 /* Update accounting for new speed */
676 self
->io
.speed
= speed
;
677 IRDA_DEBUG(1, "%s: change_speed to %d bps.\n", __func__
, speed
);
679 WriteReg(iobase
, I_ST_CT_0
, 0x0);
681 /* Controller mode sellection */
689 value
= (115200/speed
)-1;
694 /* FIXME: this can't be right, as it's the same as 115200,
695 * and 576000 is MIR, not SIR. */
708 SetPulseWidth(iobase
, 0);
709 SetSendPreambleCount(iobase
, 14);
723 /* Set baudrate to 0x19[2..7] */
724 bTmp
= (ReadReg(iobase
, I_CF_H_1
) & 0x03);
726 WriteReg(iobase
, I_CF_H_1
, bTmp
);
728 /* Some dongles may need to be informed about speed changes. */
729 via_ircc_change_dongle_speed(iobase
, speed
, self
->io
.dongle_id
);
731 /* Set FIFO size to 64 */
735 WriteReg(iobase
, I_ST_CT_0
, 0x80);
737 // EnTXFIFOHalfLevelInt(iobase,ON);
739 /* Enable some interrupts so we can receive frames */
740 //EnAllInt(iobase,ON);
742 if (IsSIROn(iobase
)) {
743 SIRFilter(iobase
, ON
);
744 SIRRecvAny(iobase
, ON
);
746 SIRFilter(iobase
, OFF
);
747 SIRRecvAny(iobase
, OFF
);
750 if (speed
> 115200) {
751 /* Install FIR xmit handler */
752 dev
->netdev_ops
= &via_ircc_fir_ops
;
753 via_ircc_dma_receive(self
);
755 /* Install SIR xmit handler */
756 dev
->netdev_ops
= &via_ircc_sir_ops
;
758 netif_wake_queue(dev
);
762 * Function via_ircc_hard_xmit (skb, dev)
764 * Transmit the frame!
767 static netdev_tx_t
via_ircc_hard_xmit_sir(struct sk_buff
*skb
,
768 struct net_device
*dev
)
770 struct via_ircc_cb
*self
;
775 self
= netdev_priv(dev
);
776 IRDA_ASSERT(self
!= NULL
, return NETDEV_TX_OK
;);
777 iobase
= self
->io
.fir_base
;
779 netif_stop_queue(dev
);
780 /* Check if we need to change the speed */
781 speed
= irda_get_next_speed(skb
);
782 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
783 /* Check for empty frame */
785 via_ircc_change_speed(self
, speed
);
786 dev
->trans_start
= jiffies
;
790 self
->new_speed
= speed
;
794 SIRFilter(iobase
, ON
);
798 WriteReg(iobase
, I_ST_CT_0
, 0x00);
800 spin_lock_irqsave(&self
->lock
, flags
);
801 self
->tx_buff
.data
= self
->tx_buff
.head
;
803 async_wrap_skb(skb
, self
->tx_buff
.data
,
804 self
->tx_buff
.truesize
);
806 dev
->stats
.tx_bytes
+= self
->tx_buff
.len
;
807 /* Send this frame with old speed */
808 SetBaudRate(iobase
, self
->io
.speed
);
809 SetPulseWidth(iobase
, 12);
810 SetSendPreambleCount(iobase
, 0);
811 WriteReg(iobase
, I_ST_CT_0
, 0x80);
813 EnableTX(iobase
, ON
);
814 EnableRX(iobase
, OFF
);
816 ResetChip(iobase
, 0);
817 ResetChip(iobase
, 1);
818 ResetChip(iobase
, 2);
819 ResetChip(iobase
, 3);
820 ResetChip(iobase
, 4);
822 EnAllInt(iobase
, ON
);
824 EnRXDMA(iobase
, OFF
);
826 irda_setup_dma(self
->io
.dma
, self
->tx_buff_dma
, self
->tx_buff
.len
,
829 SetSendByte(iobase
, self
->tx_buff
.len
);
830 RXStart(iobase
, OFF
);
833 dev
->trans_start
= jiffies
;
834 spin_unlock_irqrestore(&self
->lock
, flags
);
839 static netdev_tx_t
via_ircc_hard_xmit_fir(struct sk_buff
*skb
,
840 struct net_device
*dev
)
842 struct via_ircc_cb
*self
;
847 self
= netdev_priv(dev
);
848 iobase
= self
->io
.fir_base
;
850 if (self
->st_fifo
.len
)
852 if (self
->chip_id
== 0x3076)
856 netif_stop_queue(dev
);
857 speed
= irda_get_next_speed(skb
);
858 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
860 via_ircc_change_speed(self
, speed
);
861 dev
->trans_start
= jiffies
;
865 self
->new_speed
= speed
;
867 spin_lock_irqsave(&self
->lock
, flags
);
868 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
= self
->tx_fifo
.tail
;
869 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].len
= skb
->len
;
871 self
->tx_fifo
.tail
+= skb
->len
;
872 dev
->stats
.tx_bytes
+= skb
->len
;
873 skb_copy_from_linear_data(skb
,
874 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
, skb
->len
);
876 self
->tx_fifo
.free
++;
877 //F01 if (self->tx_fifo.len == 1) {
878 via_ircc_dma_xmit(self
, iobase
);
880 //F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) netif_wake_queue(self->netdev);
881 dev
->trans_start
= jiffies
;
883 spin_unlock_irqrestore(&self
->lock
, flags
);
888 static int via_ircc_dma_xmit(struct via_ircc_cb
*self
, u16 iobase
)
890 EnTXDMA(iobase
, OFF
);
891 self
->io
.direction
= IO_XMIT
;
893 EnableTX(iobase
, ON
);
894 EnableRX(iobase
, OFF
);
895 ResetChip(iobase
, 0);
896 ResetChip(iobase
, 1);
897 ResetChip(iobase
, 2);
898 ResetChip(iobase
, 3);
899 ResetChip(iobase
, 4);
900 EnAllInt(iobase
, ON
);
902 EnRXDMA(iobase
, OFF
);
903 irda_setup_dma(self
->io
.dma
,
904 ((u8
*)self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].start
-
905 self
->tx_buff
.head
) + self
->tx_buff_dma
,
906 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
, DMA_TX_MODE
);
907 IRDA_DEBUG(1, "%s: tx_fifo.ptr=%x,len=%x,tx_fifo.len=%x..\n",
908 __func__
, self
->tx_fifo
.ptr
,
909 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
,
912 SetSendByte(iobase
, self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
);
913 RXStart(iobase
, OFF
);
920 * Function via_ircc_dma_xmit_complete (self)
922 * The transfer of a frame in finished. This function will only be called
923 * by the interrupt handler
926 static int via_ircc_dma_xmit_complete(struct via_ircc_cb
*self
)
932 IRDA_DEBUG(3, "%s()\n", __func__
);
934 iobase
= self
->io
.fir_base
;
936 // DisableDmaChannel(self->io.dma);
937 /* Check for underrun! */
938 /* Clear bit, by writing 1 into it */
939 Tx_status
= GetTXStatus(iobase
);
940 if (Tx_status
& 0x08) {
941 self
->netdev
->stats
.tx_errors
++;
942 self
->netdev
->stats
.tx_fifo_errors
++;
944 /* how to clear underrun? */
946 self
->netdev
->stats
.tx_packets
++;
947 ResetChip(iobase
, 3);
948 ResetChip(iobase
, 4);
950 /* Check if we need to change the speed */
951 if (self
->new_speed
) {
952 via_ircc_change_speed(self
, self
->new_speed
);
956 /* Finished with this frame, so prepare for next */
957 if (IsFIROn(iobase
)) {
958 if (self
->tx_fifo
.len
) {
964 "%s: tx_fifo.len=%x ,tx_fifo.ptr=%x,tx_fifo.free=%x...\n",
966 self
->tx_fifo
.len
, self
->tx_fifo
.ptr
, self
->tx_fifo
.free
);
968 // Any frames to be sent back-to-back?
969 if (self->tx_fifo.len) {
971 via_ircc_dma_xmit(self, iobase);
975 // Reset Tx FIFO info
976 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
977 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
980 // Make sure we have room for more frames
981 //F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) {
982 // Not busy transmitting anymore
983 // Tell the network layer, that we can accept more frames
984 netif_wake_queue(self
->netdev
);
990 * Function via_ircc_dma_receive (self)
992 * Set configuration for receive a frame.
995 static int via_ircc_dma_receive(struct via_ircc_cb
*self
)
999 iobase
= self
->io
.fir_base
;
1001 IRDA_DEBUG(3, "%s()\n", __func__
);
1003 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1004 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1005 self
->RxDataReady
= 0;
1006 self
->io
.direction
= IO_RECV
;
1007 self
->rx_buff
.data
= self
->rx_buff
.head
;
1008 self
->st_fifo
.len
= self
->st_fifo
.pending_bytes
= 0;
1009 self
->st_fifo
.tail
= self
->st_fifo
.head
= 0;
1012 EnableTX(iobase
, OFF
);
1013 EnableRX(iobase
, ON
);
1015 ResetChip(iobase
, 0);
1016 ResetChip(iobase
, 1);
1017 ResetChip(iobase
, 2);
1018 ResetChip(iobase
, 3);
1019 ResetChip(iobase
, 4);
1021 EnAllInt(iobase
, ON
);
1022 EnTXDMA(iobase
, OFF
);
1023 EnRXDMA(iobase
, ON
);
1024 irda_setup_dma(self
->io
.dma2
, self
->rx_buff_dma
,
1025 self
->rx_buff
.truesize
, DMA_RX_MODE
);
1026 TXStart(iobase
, OFF
);
1027 RXStart(iobase
, ON
);
1033 * Function via_ircc_dma_receive_complete (self)
1035 * Controller Finished with receiving frames,
1036 * and this routine is call by ISR
1039 static int via_ircc_dma_receive_complete(struct via_ircc_cb
*self
,
1042 struct st_fifo
*st_fifo
;
1043 struct sk_buff
*skb
;
1047 iobase
= self
->io
.fir_base
;
1048 st_fifo
= &self
->st_fifo
;
1050 if (self
->io
.speed
< 4000000) { //Speed below FIR
1051 len
= GetRecvByte(iobase
, self
);
1052 skb
= dev_alloc_skb(len
+ 1);
1055 // Make sure IP header gets aligned
1056 skb_reserve(skb
, 1);
1057 skb_put(skb
, len
- 2);
1058 if (self
->chip_id
== 0x3076) {
1059 for (i
= 0; i
< len
- 2; i
++)
1060 skb
->data
[i
] = self
->rx_buff
.data
[i
* 2];
1062 if (self
->chip_id
== 0x3096) {
1063 for (i
= 0; i
< len
- 2; i
++)
1065 self
->rx_buff
.data
[i
];
1068 // Move to next frame
1069 self
->rx_buff
.data
+= len
;
1070 self
->netdev
->stats
.rx_bytes
+= len
;
1071 self
->netdev
->stats
.rx_packets
++;
1072 skb
->dev
= self
->netdev
;
1073 skb_reset_mac_header(skb
);
1074 skb
->protocol
= htons(ETH_P_IRDA
);
1080 len
= GetRecvByte(iobase
, self
);
1082 return TRUE
; //interrupt only, data maybe move by RxT
1083 if (((len
- 4) < 2) || ((len
- 4) > 2048)) {
1084 IRDA_DEBUG(1, "%s(): Trouble:len=%x,CurCount=%x,LastCount=%x..\n",
1085 __func__
, len
, RxCurCount(iobase
, self
),
1090 IRDA_DEBUG(2, "%s(): fifo.len=%x,len=%x,CurCount=%x..\n",
1092 st_fifo
->len
, len
- 4, RxCurCount(iobase
, self
));
1094 st_fifo
->entries
[st_fifo
->tail
].status
= status
;
1095 st_fifo
->entries
[st_fifo
->tail
].len
= len
;
1096 st_fifo
->pending_bytes
+= len
;
1099 if (st_fifo
->tail
> MAX_RX_WINDOW
)
1101 self
->RxDataReady
= 0;
1103 // It maybe have MAX_RX_WINDOW package receive by
1104 // receive_complete before Timer IRQ
1106 if (st_fifo->len < (MAX_RX_WINDOW+2 )) {
1112 EnableRX(iobase
, OFF
);
1113 EnRXDMA(iobase
, OFF
);
1114 RXStart(iobase
, OFF
);
1116 // Put this entry back in fifo
1117 if (st_fifo
->head
> MAX_RX_WINDOW
)
1119 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1120 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1124 skb
= dev_alloc_skb(len
+ 1 - 4);
1126 * if frame size, data ptr, or skb ptr are wrong, then get next
1129 if ((skb
== NULL
) || (skb
->data
== NULL
) ||
1130 (self
->rx_buff
.data
== NULL
) || (len
< 6)) {
1131 self
->netdev
->stats
.rx_dropped
++;
1135 skb_reserve(skb
, 1);
1136 skb_put(skb
, len
- 4);
1138 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4);
1139 IRDA_DEBUG(2, "%s(): len=%x.rx_buff=%p\n", __func__
,
1140 len
- 4, self
->rx_buff
.data
);
1142 // Move to next frame
1143 self
->rx_buff
.data
+= len
;
1144 self
->netdev
->stats
.rx_bytes
+= len
;
1145 self
->netdev
->stats
.rx_packets
++;
1146 skb
->dev
= self
->netdev
;
1147 skb_reset_mac_header(skb
);
1148 skb
->protocol
= htons(ETH_P_IRDA
);
1158 * if frame is received , but no INT ,then use this routine to upload frame.
1160 static int upload_rxdata(struct via_ircc_cb
*self
, int iobase
)
1162 struct sk_buff
*skb
;
1164 struct st_fifo
*st_fifo
;
1165 st_fifo
= &self
->st_fifo
;
1167 len
= GetRecvByte(iobase
, self
);
1169 IRDA_DEBUG(2, "%s(): len=%x\n", __func__
, len
);
1171 if ((len
- 4) < 2) {
1172 self
->netdev
->stats
.rx_dropped
++;
1176 skb
= dev_alloc_skb(len
+ 1);
1178 self
->netdev
->stats
.rx_dropped
++;
1181 skb_reserve(skb
, 1);
1182 skb_put(skb
, len
- 4 + 1);
1183 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4 + 1);
1186 if (st_fifo
->tail
> MAX_RX_WINDOW
)
1188 // Move to next frame
1189 self
->rx_buff
.data
+= len
;
1190 self
->netdev
->stats
.rx_bytes
+= len
;
1191 self
->netdev
->stats
.rx_packets
++;
1192 skb
->dev
= self
->netdev
;
1193 skb_reset_mac_header(skb
);
1194 skb
->protocol
= htons(ETH_P_IRDA
);
1196 if (st_fifo
->len
< (MAX_RX_WINDOW
+ 2)) {
1197 RXStart(iobase
, ON
);
1199 EnableRX(iobase
, OFF
);
1200 EnRXDMA(iobase
, OFF
);
1201 RXStart(iobase
, OFF
);
1207 * Implement back to back receive , use this routine to upload data.
1210 static int RxTimerHandler(struct via_ircc_cb
*self
, int iobase
)
1212 struct st_fifo
*st_fifo
;
1213 struct sk_buff
*skb
;
1217 st_fifo
= &self
->st_fifo
;
1219 if (CkRxRecv(iobase
, self
)) {
1220 // if still receiving ,then return ,don't upload frame
1221 self
->RetryCount
= 0;
1222 SetTimer(iobase
, 20);
1223 self
->RxDataReady
++;
1228 if ((self
->RetryCount
>= 1) ||
1229 ((st_fifo
->pending_bytes
+ 2048) > self
->rx_buff
.truesize
) ||
1230 (st_fifo
->len
>= (MAX_RX_WINDOW
))) {
1231 while (st_fifo
->len
> 0) { //upload frame
1232 // Put this entry back in fifo
1233 if (st_fifo
->head
> MAX_RX_WINDOW
)
1235 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1236 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1240 skb
= dev_alloc_skb(len
+ 1 - 4);
1242 * if frame size, data ptr, or skb ptr are wrong,
1243 * then get next entry.
1245 if ((skb
== NULL
) || (skb
->data
== NULL
) ||
1246 (self
->rx_buff
.data
== NULL
) || (len
< 6)) {
1247 self
->netdev
->stats
.rx_dropped
++;
1250 skb_reserve(skb
, 1);
1251 skb_put(skb
, len
- 4);
1252 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4);
1254 IRDA_DEBUG(2, "%s(): len=%x.head=%x\n", __func__
,
1255 len
- 4, st_fifo
->head
);
1257 // Move to next frame
1258 self
->rx_buff
.data
+= len
;
1259 self
->netdev
->stats
.rx_bytes
+= len
;
1260 self
->netdev
->stats
.rx_packets
++;
1261 skb
->dev
= self
->netdev
;
1262 skb_reset_mac_header(skb
);
1263 skb
->protocol
= htons(ETH_P_IRDA
);
1266 self
->RetryCount
= 0;
1269 "%s(): End of upload HostStatus=%x,RxStatus=%x\n",
1271 GetHostStatus(iobase
), GetRXStatus(iobase
));
1274 * if frame is receive complete at this routine ,then upload
1277 if ((GetRXStatus(iobase
) & 0x10) &&
1278 (RxCurCount(iobase
, self
) != self
->RxLastCount
)) {
1279 upload_rxdata(self
, iobase
);
1280 if (irda_device_txqueue_empty(self
->netdev
))
1281 via_ircc_dma_receive(self
);
1283 } // timer detect complete
1285 SetTimer(iobase
, 4);
1293 * Function via_ircc_interrupt (irq, dev_id)
1295 * An interrupt from the chip has arrived. Time to do some work
1298 static irqreturn_t
via_ircc_interrupt(int dummy
, void *dev_id
)
1300 struct net_device
*dev
= dev_id
;
1301 struct via_ircc_cb
*self
= netdev_priv(dev
);
1303 u8 iHostIntType
, iRxIntType
, iTxIntType
;
1305 iobase
= self
->io
.fir_base
;
1306 spin_lock(&self
->lock
);
1307 iHostIntType
= GetHostStatus(iobase
);
1309 IRDA_DEBUG(4, "%s(): iHostIntType %02x: %s %s %s %02x\n",
1310 __func__
, iHostIntType
,
1311 (iHostIntType
& 0x40) ? "Timer" : "",
1312 (iHostIntType
& 0x20) ? "Tx" : "",
1313 (iHostIntType
& 0x10) ? "Rx" : "",
1314 (iHostIntType
& 0x0e) >> 1);
1316 if ((iHostIntType
& 0x40) != 0) { //Timer Event
1317 self
->EventFlag
.TimeOut
++;
1318 ClearTimerInt(iobase
, 1);
1319 if (self
->io
.direction
== IO_XMIT
) {
1320 via_ircc_dma_xmit(self
, iobase
);
1322 if (self
->io
.direction
== IO_RECV
) {
1324 * frame ready hold too long, must reset.
1326 if (self
->RxDataReady
> 30) {
1328 if (irda_device_txqueue_empty(self
->netdev
)) {
1329 via_ircc_dma_receive(self
);
1331 } else { // call this to upload frame.
1332 RxTimerHandler(self
, iobase
);
1336 if ((iHostIntType
& 0x20) != 0) { //Tx Event
1337 iTxIntType
= GetTXStatus(iobase
);
1339 IRDA_DEBUG(4, "%s(): iTxIntType %02x: %s %s %s %s\n",
1340 __func__
, iTxIntType
,
1341 (iTxIntType
& 0x08) ? "FIFO underr." : "",
1342 (iTxIntType
& 0x04) ? "EOM" : "",
1343 (iTxIntType
& 0x02) ? "FIFO ready" : "",
1344 (iTxIntType
& 0x01) ? "Early EOM" : "");
1346 if (iTxIntType
& 0x4) {
1347 self
->EventFlag
.EOMessage
++; // read and will auto clean
1348 if (via_ircc_dma_xmit_complete(self
)) {
1349 if (irda_device_txqueue_empty
1351 via_ircc_dma_receive(self
);
1354 self
->EventFlag
.Unknown
++;
1358 //----------------------------------------
1359 if ((iHostIntType
& 0x10) != 0) { //Rx Event
1360 /* Check if DMA has finished */
1361 iRxIntType
= GetRXStatus(iobase
);
1363 IRDA_DEBUG(4, "%s(): iRxIntType %02x: %s %s %s %s %s %s %s\n",
1364 __func__
, iRxIntType
,
1365 (iRxIntType
& 0x80) ? "PHY err." : "",
1366 (iRxIntType
& 0x40) ? "CRC err" : "",
1367 (iRxIntType
& 0x20) ? "FIFO overr." : "",
1368 (iRxIntType
& 0x10) ? "EOF" : "",
1369 (iRxIntType
& 0x08) ? "RxData" : "",
1370 (iRxIntType
& 0x02) ? "RxMaxLen" : "",
1371 (iRxIntType
& 0x01) ? "SIR bad" : "");
1373 IRDA_DEBUG(3, "%s(): RxIRQ =0\n", __func__
);
1375 if (iRxIntType
& 0x10) {
1376 if (via_ircc_dma_receive_complete(self
, iobase
)) {
1377 //F01 if(!(IsFIROn(iobase))) via_ircc_dma_receive(self);
1378 via_ircc_dma_receive(self
);
1382 IRDA_DEBUG(4, "%s(): RxIRQ ERR:iRxIntType=%x,HostIntType=%x,CurCount=%x,RxLastCount=%x_____\n",
1383 __func__
, iRxIntType
, iHostIntType
,
1384 RxCurCount(iobase
, self
),
1387 if (iRxIntType
& 0x20) { //FIFO OverRun ERR
1388 ResetChip(iobase
, 0);
1389 ResetChip(iobase
, 1);
1390 } else { //PHY,CRC ERR
1392 if (iRxIntType
!= 0x08)
1393 hwreset(self
); //F01
1395 via_ircc_dma_receive(self
);
1399 spin_unlock(&self
->lock
);
1400 return IRQ_RETVAL(iHostIntType
);
1403 static void hwreset(struct via_ircc_cb
*self
)
1406 iobase
= self
->io
.fir_base
;
1408 IRDA_DEBUG(3, "%s()\n", __func__
);
1410 ResetChip(iobase
, 5);
1411 EnableDMA(iobase
, OFF
);
1412 EnableTX(iobase
, OFF
);
1413 EnableRX(iobase
, OFF
);
1414 EnRXDMA(iobase
, OFF
);
1415 EnTXDMA(iobase
, OFF
);
1416 RXStart(iobase
, OFF
);
1417 TXStart(iobase
, OFF
);
1420 SIRFilter(iobase
, ON
);
1424 WriteReg(iobase
, I_ST_CT_0
, 0x00);
1425 SetBaudRate(iobase
, 9600);
1426 SetPulseWidth(iobase
, 12);
1427 SetSendPreambleCount(iobase
, 0);
1428 WriteReg(iobase
, I_ST_CT_0
, 0x80);
1430 /* Restore speed. */
1431 via_ircc_change_speed(self
, self
->io
.speed
);
1433 self
->st_fifo
.len
= 0;
1437 * Function via_ircc_is_receiving (self)
1439 * Return TRUE is we are currently receiving a frame
1442 static int via_ircc_is_receiving(struct via_ircc_cb
*self
)
1447 IRDA_ASSERT(self
!= NULL
, return FALSE
;);
1449 iobase
= self
->io
.fir_base
;
1450 if (CkRxRecv(iobase
, self
))
1453 IRDA_DEBUG(2, "%s(): status=%x....\n", __func__
, status
);
1460 * Function via_ircc_net_open (dev)
1465 static int via_ircc_net_open(struct net_device
*dev
)
1467 struct via_ircc_cb
*self
;
1471 IRDA_DEBUG(3, "%s()\n", __func__
);
1473 IRDA_ASSERT(dev
!= NULL
, return -1;);
1474 self
= netdev_priv(dev
);
1475 dev
->stats
.rx_packets
= 0;
1476 IRDA_ASSERT(self
!= NULL
, return 0;);
1477 iobase
= self
->io
.fir_base
;
1478 if (request_irq(self
->io
.irq
, via_ircc_interrupt
, 0, dev
->name
, dev
)) {
1479 IRDA_WARNING("%s, unable to allocate irq=%d\n", driver_name
,
1484 * Always allocate the DMA channel after the IRQ, and clean up on
1487 if (request_dma(self
->io
.dma
, dev
->name
)) {
1488 IRDA_WARNING("%s, unable to allocate dma=%d\n", driver_name
,
1490 free_irq(self
->io
.irq
, dev
);
1493 if (self
->io
.dma2
!= self
->io
.dma
) {
1494 if (request_dma(self
->io
.dma2
, dev
->name
)) {
1495 IRDA_WARNING("%s, unable to allocate dma2=%d\n",
1496 driver_name
, self
->io
.dma2
);
1497 free_irq(self
->io
.irq
, dev
);
1498 free_dma(self
->io
.dma
);
1504 /* turn on interrupts */
1505 EnAllInt(iobase
, ON
);
1506 EnInternalLoop(iobase
, OFF
);
1507 EnExternalLoop(iobase
, OFF
);
1510 via_ircc_dma_receive(self
);
1512 /* Ready to play! */
1513 netif_start_queue(dev
);
1516 * Open new IrLAP layer instance, now that everything should be
1517 * initialized properly
1519 sprintf(hwname
, "VIA @ 0x%x", iobase
);
1520 self
->irlap
= irlap_open(dev
, &self
->qos
, hwname
);
1522 self
->RxLastCount
= 0;
1528 * Function via_ircc_net_close (dev)
1533 static int via_ircc_net_close(struct net_device
*dev
)
1535 struct via_ircc_cb
*self
;
1538 IRDA_DEBUG(3, "%s()\n", __func__
);
1540 IRDA_ASSERT(dev
!= NULL
, return -1;);
1541 self
= netdev_priv(dev
);
1542 IRDA_ASSERT(self
!= NULL
, return 0;);
1545 netif_stop_queue(dev
);
1546 /* Stop and remove instance of IrLAP */
1548 irlap_close(self
->irlap
);
1550 iobase
= self
->io
.fir_base
;
1551 EnTXDMA(iobase
, OFF
);
1552 EnRXDMA(iobase
, OFF
);
1553 DisableDmaChannel(self
->io
.dma
);
1555 /* Disable interrupts */
1556 EnAllInt(iobase
, OFF
);
1557 free_irq(self
->io
.irq
, dev
);
1558 free_dma(self
->io
.dma
);
1559 if (self
->io
.dma2
!= self
->io
.dma
)
1560 free_dma(self
->io
.dma2
);
1566 * Function via_ircc_net_ioctl (dev, rq, cmd)
1568 * Process IOCTL commands for this device
1571 static int via_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
,
1574 struct if_irda_req
*irq
= (struct if_irda_req
*) rq
;
1575 struct via_ircc_cb
*self
;
1576 unsigned long flags
;
1579 IRDA_ASSERT(dev
!= NULL
, return -1;);
1580 self
= netdev_priv(dev
);
1581 IRDA_ASSERT(self
!= NULL
, return -1;);
1582 IRDA_DEBUG(1, "%s(), %s, (cmd=0x%X)\n", __func__
, dev
->name
,
1584 /* Disable interrupts & save flags */
1585 spin_lock_irqsave(&self
->lock
, flags
);
1587 case SIOCSBANDWIDTH
: /* Set bandwidth */
1588 if (!capable(CAP_NET_ADMIN
)) {
1592 via_ircc_change_speed(self
, irq
->ifr_baudrate
);
1594 case SIOCSMEDIABUSY
: /* Set media busy */
1595 if (!capable(CAP_NET_ADMIN
)) {
1599 irda_device_set_media_busy(self
->netdev
, TRUE
);
1601 case SIOCGRECEIVING
: /* Check if we are receiving right now */
1602 irq
->ifr_receiving
= via_ircc_is_receiving(self
);
1608 spin_unlock_irqrestore(&self
->lock
, flags
);
1612 MODULE_AUTHOR("VIA Technologies,inc");
1613 MODULE_DESCRIPTION("VIA IrDA Device Driver");
1614 MODULE_LICENSE("GPL");
1616 module_init(via_ircc_init
);
1617 module_exit(via_ircc_cleanup
);