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-dependant 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/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);
78 /* FIXME : we should not need this, because instances should be automatically
79 * managed by the PCI layer. Especially that we seem to only be using the
80 * first entry. Jean II */
81 /* Max 4 instances for now */
82 static struct via_ircc_cb
*dev_self
[] = { NULL
, NULL
, NULL
, NULL
};
85 static int via_ircc_open(int i
, chipio_t
* info
, unsigned int id
);
86 static int via_ircc_close(struct via_ircc_cb
*self
);
87 static int via_ircc_dma_receive(struct via_ircc_cb
*self
);
88 static int via_ircc_dma_receive_complete(struct via_ircc_cb
*self
,
90 static netdev_tx_t
via_ircc_hard_xmit_sir(struct sk_buff
*skb
,
91 struct net_device
*dev
);
92 static netdev_tx_t
via_ircc_hard_xmit_fir(struct sk_buff
*skb
,
93 struct net_device
*dev
);
94 static void via_hw_init(struct via_ircc_cb
*self
);
95 static void via_ircc_change_speed(struct via_ircc_cb
*self
, __u32 baud
);
96 static irqreturn_t
via_ircc_interrupt(int irq
, void *dev_id
);
97 static int via_ircc_is_receiving(struct via_ircc_cb
*self
);
98 static int via_ircc_read_dongle_id(int iobase
);
100 static int via_ircc_net_open(struct net_device
*dev
);
101 static int via_ircc_net_close(struct net_device
*dev
);
102 static int via_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
,
104 static void via_ircc_change_dongle_speed(int iobase
, int speed
,
106 static int RxTimerHandler(struct via_ircc_cb
*self
, int iobase
);
107 static void hwreset(struct via_ircc_cb
*self
);
108 static int via_ircc_dma_xmit(struct via_ircc_cb
*self
, u16 iobase
);
109 static int upload_rxdata(struct via_ircc_cb
*self
, int iobase
);
110 static int __devinit
via_init_one (struct pci_dev
*pcidev
, const struct pci_device_id
*id
);
111 static void __devexit
via_remove_one (struct pci_dev
*pdev
);
113 /* FIXME : Should use udelay() instead, even if we are x86 only - Jean II */
114 static void iodelay(int udelay
)
119 for (i
= 0; i
< udelay
; i
++) {
124 static DEFINE_PCI_DEVICE_TABLE(via_pci_tbl
) = {
125 { PCI_VENDOR_ID_VIA
, 0x8231, PCI_ANY_ID
, PCI_ANY_ID
,0,0,0 },
126 { PCI_VENDOR_ID_VIA
, 0x3109, PCI_ANY_ID
, PCI_ANY_ID
,0,0,1 },
127 { PCI_VENDOR_ID_VIA
, 0x3074, PCI_ANY_ID
, PCI_ANY_ID
,0,0,2 },
128 { PCI_VENDOR_ID_VIA
, 0x3147, PCI_ANY_ID
, PCI_ANY_ID
,0,0,3 },
129 { PCI_VENDOR_ID_VIA
, 0x3177, PCI_ANY_ID
, PCI_ANY_ID
,0,0,4 },
133 MODULE_DEVICE_TABLE(pci
,via_pci_tbl
);
136 static struct pci_driver via_driver
= {
137 .name
= VIA_MODULE_NAME
,
138 .id_table
= via_pci_tbl
,
139 .probe
= via_init_one
,
140 .remove
= __devexit_p(via_remove_one
),
145 * Function via_ircc_init ()
147 * Initialize chip. Just find out chip type and resource.
149 static int __init
via_ircc_init(void)
153 IRDA_DEBUG(3, "%s()\n", __func__
);
155 rc
= pci_register_driver(&via_driver
);
157 IRDA_DEBUG(0, "%s(): error rc = %d, returning -ENODEV...\n",
164 static int __devinit
via_init_one (struct pci_dev
*pcidev
, const struct pci_device_id
*id
)
167 u8 temp
,oldPCI_40
,oldPCI_44
,bTmp
,bTmp1
;
168 u16 Chipset
,FirDRQ1
,FirDRQ0
,FirIRQ
,FirIOBase
;
171 IRDA_DEBUG(2, "%s(): Device ID=(0X%X)\n", __func__
, id
->device
);
173 rc
= pci_enable_device (pcidev
);
175 IRDA_DEBUG(0, "%s(): error rc = %d\n", __func__
, rc
);
179 // South Bridge exist
180 if ( ReadLPCReg(0x20) != 0x3C )
185 if (Chipset
==0x3076) {
186 IRDA_DEBUG(2, "%s(): Chipset = 3076\n", __func__
);
188 WriteLPCReg(7,0x0c );
189 temp
=ReadLPCReg(0x30);//check if BIOS Enable Fir
190 if((temp
&0x01)==1) { // BIOS close or no FIR
191 WriteLPCReg(0x1d, 0x82 );
192 WriteLPCReg(0x23,0x18);
193 temp
=ReadLPCReg(0xF0);
195 temp
=(ReadLPCReg(0x74)&0x03); //DMA
197 temp
=(ReadLPCReg(0x74)&0x0C) >> 2;
200 temp
=(ReadLPCReg(0x74)&0x0C) >> 2; //DMA
204 FirIRQ
=(ReadLPCReg(0x70)&0x0f); //IRQ
205 FirIOBase
=ReadLPCReg(0x60 ) << 8; //IO Space :high byte
206 FirIOBase
=FirIOBase
| ReadLPCReg(0x61) ; //low byte
207 FirIOBase
=FirIOBase
;
208 info
.fir_base
=FirIOBase
;
212 pci_read_config_byte(pcidev
,0x40,&bTmp
);
213 pci_write_config_byte(pcidev
,0x40,((bTmp
| 0x08) & 0xfe));
214 pci_read_config_byte(pcidev
,0x42,&bTmp
);
215 pci_write_config_byte(pcidev
,0x42,(bTmp
| 0xf0));
216 pci_write_config_byte(pcidev
,0x5a,0xc0);
217 WriteLPCReg(0x28, 0x70 );
218 if (via_ircc_open(0, &info
,0x3076) == 0)
221 rc
= -ENODEV
; //IR not turn on
222 } else { //Not VT1211
223 IRDA_DEBUG(2, "%s(): Chipset = 3096\n", __func__
);
225 pci_read_config_byte(pcidev
,0x67,&bTmp
);//check if BIOS Enable Fir
226 if((bTmp
&0x01)==1) { // BIOS enable FIR
227 //Enable Double DMA clock
228 pci_read_config_byte(pcidev
,0x42,&oldPCI_40
);
229 pci_write_config_byte(pcidev
,0x42,oldPCI_40
| 0x80);
230 pci_read_config_byte(pcidev
,0x40,&oldPCI_40
);
231 pci_write_config_byte(pcidev
,0x40,oldPCI_40
& 0xf7);
232 pci_read_config_byte(pcidev
,0x44,&oldPCI_44
);
233 pci_write_config_byte(pcidev
,0x44,0x4e);
234 //---------- read configuration from Function0 of south bridge
236 pci_read_config_byte(pcidev
,0x44,&bTmp1
); //DMA
237 FirDRQ0
= (bTmp1
& 0x30) >> 4;
238 pci_read_config_byte(pcidev
,0x44,&bTmp1
);
239 FirDRQ1
= (bTmp1
& 0xc0) >> 6;
241 pci_read_config_byte(pcidev
,0x44,&bTmp1
); //DMA
242 FirDRQ0
= (bTmp1
& 0x30) >> 4 ;
245 pci_read_config_byte(pcidev
,0x47,&bTmp1
); //IRQ
246 FirIRQ
= bTmp1
& 0x0f;
248 pci_read_config_byte(pcidev
,0x69,&bTmp
);
249 FirIOBase
= bTmp
<< 8;//hight byte
250 pci_read_config_byte(pcidev
,0x68,&bTmp
);
251 FirIOBase
= (FirIOBase
| bTmp
) & 0xfff0;
252 //-------------------------
253 info
.fir_base
=FirIOBase
;
257 if (via_ircc_open(0, &info
,0x3096) == 0)
260 rc
= -ENODEV
; //IR not turn on !!!!!
263 IRDA_DEBUG(2, "%s(): End - rc = %d\n", __func__
, rc
);
268 * Function via_ircc_clean ()
270 * Close all configured chips
273 static void via_ircc_clean(void)
277 IRDA_DEBUG(3, "%s()\n", __func__
);
279 for (i
=0; i
< ARRAY_SIZE(dev_self
); i
++) {
281 via_ircc_close(dev_self
[i
]);
285 static void __devexit
via_remove_one (struct pci_dev
*pdev
)
287 IRDA_DEBUG(3, "%s()\n", __func__
);
289 /* FIXME : This is ugly. We should use pci_get_drvdata(pdev);
290 * to get our driver instance and call directly via_ircc_close().
291 * See vlsi_ir for details...
295 /* FIXME : This should be in via_ircc_close(), because here we may
296 * theoritically disable still configured devices :-( - Jean II */
297 pci_disable_device(pdev
);
300 static void __exit
via_ircc_cleanup(void)
302 IRDA_DEBUG(3, "%s()\n", __func__
);
304 /* FIXME : This should be redundant, as pci_unregister_driver()
305 * should call via_remove_one() on each device.
309 /* Cleanup all instances of the driver */
310 pci_unregister_driver (&via_driver
);
313 static const struct net_device_ops via_ircc_sir_ops
= {
314 .ndo_start_xmit
= via_ircc_hard_xmit_sir
,
315 .ndo_open
= via_ircc_net_open
,
316 .ndo_stop
= via_ircc_net_close
,
317 .ndo_do_ioctl
= via_ircc_net_ioctl
,
319 static const struct net_device_ops via_ircc_fir_ops
= {
320 .ndo_start_xmit
= via_ircc_hard_xmit_fir
,
321 .ndo_open
= via_ircc_net_open
,
322 .ndo_stop
= via_ircc_net_close
,
323 .ndo_do_ioctl
= via_ircc_net_ioctl
,
327 * Function via_ircc_open (iobase, irq)
329 * Open driver instance
332 static __devinit
int via_ircc_open(int i
, chipio_t
* info
, unsigned int id
)
334 struct net_device
*dev
;
335 struct via_ircc_cb
*self
;
338 IRDA_DEBUG(3, "%s()\n", __func__
);
340 if (i
>= ARRAY_SIZE(dev_self
))
343 /* Allocate new instance of the driver */
344 dev
= alloc_irdadev(sizeof(struct via_ircc_cb
));
348 self
= netdev_priv(dev
);
350 spin_lock_init(&self
->lock
);
352 /* FIXME : We should store our driver instance in the PCI layer,
353 * using pci_set_drvdata(), not in this array.
354 * See vlsi_ir for details... - Jean II */
355 /* FIXME : 'i' is always 0 (see via_init_one()) :-( - Jean II */
356 /* Need to store self somewhere */
359 /* Initialize Resource */
360 self
->io
.cfg_base
= info
->cfg_base
;
361 self
->io
.fir_base
= info
->fir_base
;
362 self
->io
.irq
= info
->irq
;
363 self
->io
.fir_ext
= CHIP_IO_EXTENT
;
364 self
->io
.dma
= info
->dma
;
365 self
->io
.dma2
= info
->dma2
;
366 self
->io
.fifo_size
= 32;
368 self
->st_fifo
.len
= 0;
369 self
->RxDataReady
= 0;
371 /* Reserve the ioports that we need */
372 if (!request_region(self
->io
.fir_base
, self
->io
.fir_ext
, driver_name
)) {
373 IRDA_DEBUG(0, "%s(), can't get iobase of 0x%03x\n",
374 __func__
, self
->io
.fir_base
);
379 /* Initialize QoS for this device */
380 irda_init_max_qos_capabilies(&self
->qos
);
382 /* Check if user has supplied the dongle id or not */
384 dongle_id
= via_ircc_read_dongle_id(self
->io
.fir_base
);
385 self
->io
.dongle_id
= dongle_id
;
387 /* The only value we must override it the baudrate */
388 /* Maximum speeds and capabilities are dongle-dependant. */
389 switch( self
->io
.dongle_id
){
391 self
->qos
.baud_rate
.bits
=
392 IR_9600
| IR_19200
| IR_38400
| IR_57600
| IR_115200
|
393 IR_576000
| IR_1152000
| (IR_4000000
<< 8);
396 self
->qos
.baud_rate
.bits
=
397 IR_9600
| IR_19200
| IR_38400
| IR_57600
| IR_115200
;
401 /* Following was used for testing:
403 * self->qos.baud_rate.bits = IR_9600;
405 * Is is no good, as it prohibits (error-prone) speed-changes.
408 self
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
409 irda_qos_bits_to_value(&self
->qos
);
411 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
412 self
->rx_buff
.truesize
= 14384 + 2048;
413 self
->tx_buff
.truesize
= 14384 + 2048;
415 /* Allocate memory if needed */
417 dma_alloc_coherent(NULL
, self
->rx_buff
.truesize
,
418 &self
->rx_buff_dma
, GFP_KERNEL
);
419 if (self
->rx_buff
.head
== NULL
) {
423 memset(self
->rx_buff
.head
, 0, self
->rx_buff
.truesize
);
426 dma_alloc_coherent(NULL
, self
->tx_buff
.truesize
,
427 &self
->tx_buff_dma
, GFP_KERNEL
);
428 if (self
->tx_buff
.head
== NULL
) {
432 memset(self
->tx_buff
.head
, 0, self
->tx_buff
.truesize
);
434 self
->rx_buff
.in_frame
= FALSE
;
435 self
->rx_buff
.state
= OUTSIDE_FRAME
;
436 self
->tx_buff
.data
= self
->tx_buff
.head
;
437 self
->rx_buff
.data
= self
->rx_buff
.head
;
439 /* Reset Tx queue info */
440 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
441 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
443 /* Override the network functions we need to use */
444 dev
->netdev_ops
= &via_ircc_sir_ops
;
446 err
= register_netdev(dev
);
450 IRDA_MESSAGE("IrDA: Registered device %s (via-ircc)\n", dev
->name
);
452 /* Initialise the hardware..
454 self
->io
.speed
= 9600;
458 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
459 self
->tx_buff
.head
, self
->tx_buff_dma
);
461 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
462 self
->rx_buff
.head
, self
->rx_buff_dma
);
464 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
472 * Function via_ircc_close (self)
474 * Close driver instance
477 static int via_ircc_close(struct via_ircc_cb
*self
)
481 IRDA_DEBUG(3, "%s()\n", __func__
);
483 IRDA_ASSERT(self
!= NULL
, return -1;);
485 iobase
= self
->io
.fir_base
;
487 ResetChip(iobase
, 5); //hardware reset.
488 /* Remove netdevice */
489 unregister_netdev(self
->netdev
);
491 /* Release the PORT that this driver is using */
492 IRDA_DEBUG(2, "%s(), Releasing Region %03x\n",
493 __func__
, self
->io
.fir_base
);
494 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
495 if (self
->tx_buff
.head
)
496 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
497 self
->tx_buff
.head
, self
->tx_buff_dma
);
498 if (self
->rx_buff
.head
)
499 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
500 self
->rx_buff
.head
, self
->rx_buff_dma
);
501 dev_self
[self
->index
] = NULL
;
503 free_netdev(self
->netdev
);
509 * Function via_hw_init(self)
511 * Returns non-negative on success.
513 * Formerly via_ircc_setup
515 static void via_hw_init(struct via_ircc_cb
*self
)
517 int iobase
= self
->io
.fir_base
;
519 IRDA_DEBUG(3, "%s()\n", __func__
);
521 SetMaxRxPacketSize(iobase
, 0x0fff); //set to max:4095
523 EnRXFIFOReadyInt(iobase
, OFF
);
524 EnRXFIFOHalfLevelInt(iobase
, OFF
);
525 EnTXFIFOHalfLevelInt(iobase
, OFF
);
526 EnTXFIFOUnderrunEOMInt(iobase
, ON
);
527 EnTXFIFOReadyInt(iobase
, OFF
);
528 InvertTX(iobase
, OFF
);
529 InvertRX(iobase
, OFF
);
531 if (ReadLPCReg(0x20) == 0x3c)
532 WriteLPCReg(0xF0, 0); // for VT1211
534 EnRXSpecInt(iobase
, ON
);
536 /* The following is basically hwreset */
537 /* If this is the case, why not just call hwreset() ? Jean II */
538 ResetChip(iobase
, 5);
539 EnableDMA(iobase
, OFF
);
540 EnableTX(iobase
, OFF
);
541 EnableRX(iobase
, OFF
);
542 EnRXDMA(iobase
, OFF
);
543 EnTXDMA(iobase
, OFF
);
544 RXStart(iobase
, OFF
);
545 TXStart(iobase
, OFF
);
548 SIRFilter(iobase
, ON
);
552 WriteReg(iobase
, I_ST_CT_0
, 0x00);
553 SetBaudRate(iobase
, 9600);
554 SetPulseWidth(iobase
, 12);
555 SetSendPreambleCount(iobase
, 0);
557 self
->io
.speed
= 9600;
558 self
->st_fifo
.len
= 0;
560 via_ircc_change_dongle_speed(iobase
, self
->io
.speed
,
563 WriteReg(iobase
, I_ST_CT_0
, 0x80);
567 * Function via_ircc_read_dongle_id (void)
570 static int via_ircc_read_dongle_id(int iobase
)
572 int dongle_id
= 9; /* Default to IBM */
574 IRDA_ERROR("via-ircc: dongle probing not supported, please specify dongle_id module parameter.\n");
579 * Function via_ircc_change_dongle_speed (iobase, speed, dongle_id)
580 * Change speed of the attach dongle
581 * only implement two type of dongle currently.
583 static void via_ircc_change_dongle_speed(int iobase
, int speed
,
588 /* speed is unused, as we use IsSIROn()/IsMIROn() */
591 IRDA_DEBUG(1, "%s(): change_dongle_speed to %d for 0x%x, %d\n",
592 __func__
, speed
, iobase
, dongle_id
);
596 /* Note: The dongle_id's listed here are derived from
599 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
600 UseOneRX(iobase
, ON
); // use one RX pin RX1,RX2
601 InvertTX(iobase
, OFF
);
602 InvertRX(iobase
, OFF
);
604 EnRX2(iobase
, ON
); //sir to rx2
605 EnGPIOtoRX2(iobase
, OFF
);
607 if (IsSIROn(iobase
)) { //sir
609 SlowIRRXLowActive(iobase
, ON
);
611 SlowIRRXLowActive(iobase
, OFF
);
613 if (IsMIROn(iobase
)) { //mir
615 SlowIRRXLowActive(iobase
, OFF
);
618 if (IsFIROn(iobase
)) { //fir
620 SlowIRRXLowActive(iobase
, OFF
);
627 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
628 UseOneRX(iobase
, ON
); //use ONE RX....RX1
629 InvertTX(iobase
, OFF
);
630 InvertRX(iobase
, OFF
); // invert RX pin
633 EnGPIOtoRX2(iobase
, OFF
);
634 if (IsSIROn(iobase
)) { //sir
636 SlowIRRXLowActive(iobase
, ON
);
639 SlowIRRXLowActive(iobase
, OFF
);
641 if (IsMIROn(iobase
)) { //mir
643 SlowIRRXLowActive(iobase
, OFF
);
646 SlowIRRXLowActive(iobase
, ON
);
648 if (IsFIROn(iobase
)) { //fir
650 SlowIRRXLowActive(iobase
, OFF
);
655 SlowIRRXLowActive(iobase
, ON
);
658 WriteTX(iobase
, OFF
);
664 UseOneRX(iobase
, OFF
); // use two RX pin RX1,RX2
665 InvertTX(iobase
, OFF
);
666 InvertRX(iobase
, OFF
);
667 SlowIRRXLowActive(iobase
, OFF
);
668 if (IsSIROn(iobase
)) { //sir
669 EnGPIOtoRX2(iobase
, OFF
);
670 WriteGIO(iobase
, OFF
);
671 EnRX2(iobase
, OFF
); //sir to rx2
673 EnGPIOtoRX2(iobase
, OFF
);
674 WriteGIO(iobase
, OFF
);
675 EnRX2(iobase
, OFF
); //fir to rx
679 case 0x11: /* Temic TFDS4500 */
681 IRDA_DEBUG(2, "%s: Temic TFDS4500: One RX pin, TX normal, RX inverted.\n", __func__
);
683 UseOneRX(iobase
, ON
); //use ONE RX....RX1
684 InvertTX(iobase
, OFF
);
685 InvertRX(iobase
, ON
); // invert RX pin
687 EnRX2(iobase
, ON
); //sir to rx2
688 EnGPIOtoRX2(iobase
, OFF
);
690 if( IsSIROn(iobase
) ){ //sir
693 SlowIRRXLowActive(iobase
, ON
);
696 SlowIRRXLowActive(iobase
, OFF
);
699 IRDA_DEBUG(0, "%s: Warning: TFDS4500 not running in SIR mode !\n", __func__
);
703 case 0x0ff: /* Vishay */
706 else if (IsMIROn(iobase
))
708 else if (IsFIROn(iobase
))
710 else if (IsVFIROn(iobase
))
712 SI_SetMode(iobase
, mode
);
716 IRDA_ERROR("%s: Error: dongle_id %d unsupported !\n",
717 __func__
, dongle_id
);
722 * Function via_ircc_change_speed (self, baud)
724 * Change the speed of the device
727 static void via_ircc_change_speed(struct via_ircc_cb
*self
, __u32 speed
)
729 struct net_device
*dev
= self
->netdev
;
733 iobase
= self
->io
.fir_base
;
734 /* Update accounting for new speed */
735 self
->io
.speed
= speed
;
736 IRDA_DEBUG(1, "%s: change_speed to %d bps.\n", __func__
, speed
);
738 WriteReg(iobase
, I_ST_CT_0
, 0x0);
740 /* Controller mode sellection */
748 value
= (115200/speed
)-1;
753 /* FIXME: this can't be right, as it's the same as 115200,
754 * and 576000 is MIR, not SIR. */
767 SetPulseWidth(iobase
, 0);
768 SetSendPreambleCount(iobase
, 14);
782 /* Set baudrate to 0x19[2..7] */
783 bTmp
= (ReadReg(iobase
, I_CF_H_1
) & 0x03);
785 WriteReg(iobase
, I_CF_H_1
, bTmp
);
787 /* Some dongles may need to be informed about speed changes. */
788 via_ircc_change_dongle_speed(iobase
, speed
, self
->io
.dongle_id
);
790 /* Set FIFO size to 64 */
794 WriteReg(iobase
, I_ST_CT_0
, 0x80);
796 // EnTXFIFOHalfLevelInt(iobase,ON);
798 /* Enable some interrupts so we can receive frames */
799 //EnAllInt(iobase,ON);
801 if (IsSIROn(iobase
)) {
802 SIRFilter(iobase
, ON
);
803 SIRRecvAny(iobase
, ON
);
805 SIRFilter(iobase
, OFF
);
806 SIRRecvAny(iobase
, OFF
);
809 if (speed
> 115200) {
810 /* Install FIR xmit handler */
811 dev
->netdev_ops
= &via_ircc_fir_ops
;
812 via_ircc_dma_receive(self
);
814 /* Install SIR xmit handler */
815 dev
->netdev_ops
= &via_ircc_sir_ops
;
817 netif_wake_queue(dev
);
821 * Function via_ircc_hard_xmit (skb, dev)
823 * Transmit the frame!
826 static netdev_tx_t
via_ircc_hard_xmit_sir(struct sk_buff
*skb
,
827 struct net_device
*dev
)
829 struct via_ircc_cb
*self
;
834 self
= netdev_priv(dev
);
835 IRDA_ASSERT(self
!= NULL
, return NETDEV_TX_OK
;);
836 iobase
= self
->io
.fir_base
;
838 netif_stop_queue(dev
);
839 /* Check if we need to change the speed */
840 speed
= irda_get_next_speed(skb
);
841 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
842 /* Check for empty frame */
844 via_ircc_change_speed(self
, speed
);
845 dev
->trans_start
= jiffies
;
849 self
->new_speed
= speed
;
853 SIRFilter(iobase
, ON
);
857 WriteReg(iobase
, I_ST_CT_0
, 0x00);
859 spin_lock_irqsave(&self
->lock
, flags
);
860 self
->tx_buff
.data
= self
->tx_buff
.head
;
862 async_wrap_skb(skb
, self
->tx_buff
.data
,
863 self
->tx_buff
.truesize
);
865 dev
->stats
.tx_bytes
+= self
->tx_buff
.len
;
866 /* Send this frame with old speed */
867 SetBaudRate(iobase
, self
->io
.speed
);
868 SetPulseWidth(iobase
, 12);
869 SetSendPreambleCount(iobase
, 0);
870 WriteReg(iobase
, I_ST_CT_0
, 0x80);
872 EnableTX(iobase
, ON
);
873 EnableRX(iobase
, OFF
);
875 ResetChip(iobase
, 0);
876 ResetChip(iobase
, 1);
877 ResetChip(iobase
, 2);
878 ResetChip(iobase
, 3);
879 ResetChip(iobase
, 4);
881 EnAllInt(iobase
, ON
);
883 EnRXDMA(iobase
, OFF
);
885 irda_setup_dma(self
->io
.dma
, self
->tx_buff_dma
, self
->tx_buff
.len
,
888 SetSendByte(iobase
, self
->tx_buff
.len
);
889 RXStart(iobase
, OFF
);
892 dev
->trans_start
= jiffies
;
893 spin_unlock_irqrestore(&self
->lock
, flags
);
898 static netdev_tx_t
via_ircc_hard_xmit_fir(struct sk_buff
*skb
,
899 struct net_device
*dev
)
901 struct via_ircc_cb
*self
;
906 self
= netdev_priv(dev
);
907 iobase
= self
->io
.fir_base
;
909 if (self
->st_fifo
.len
)
911 if (self
->chip_id
== 0x3076)
915 netif_stop_queue(dev
);
916 speed
= irda_get_next_speed(skb
);
917 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
919 via_ircc_change_speed(self
, speed
);
920 dev
->trans_start
= jiffies
;
924 self
->new_speed
= speed
;
926 spin_lock_irqsave(&self
->lock
, flags
);
927 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
= self
->tx_fifo
.tail
;
928 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].len
= skb
->len
;
930 self
->tx_fifo
.tail
+= skb
->len
;
931 dev
->stats
.tx_bytes
+= skb
->len
;
932 skb_copy_from_linear_data(skb
,
933 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
, skb
->len
);
935 self
->tx_fifo
.free
++;
936 //F01 if (self->tx_fifo.len == 1) {
937 via_ircc_dma_xmit(self
, iobase
);
939 //F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) netif_wake_queue(self->netdev);
940 dev
->trans_start
= jiffies
;
942 spin_unlock_irqrestore(&self
->lock
, flags
);
947 static int via_ircc_dma_xmit(struct via_ircc_cb
*self
, u16 iobase
)
949 EnTXDMA(iobase
, OFF
);
950 self
->io
.direction
= IO_XMIT
;
952 EnableTX(iobase
, ON
);
953 EnableRX(iobase
, OFF
);
954 ResetChip(iobase
, 0);
955 ResetChip(iobase
, 1);
956 ResetChip(iobase
, 2);
957 ResetChip(iobase
, 3);
958 ResetChip(iobase
, 4);
959 EnAllInt(iobase
, ON
);
961 EnRXDMA(iobase
, OFF
);
962 irda_setup_dma(self
->io
.dma
,
963 ((u8
*)self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].start
-
964 self
->tx_buff
.head
) + self
->tx_buff_dma
,
965 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
, DMA_TX_MODE
);
966 IRDA_DEBUG(1, "%s: tx_fifo.ptr=%x,len=%x,tx_fifo.len=%x..\n",
967 __func__
, self
->tx_fifo
.ptr
,
968 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
,
971 SetSendByte(iobase
, self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
);
972 RXStart(iobase
, OFF
);
979 * Function via_ircc_dma_xmit_complete (self)
981 * The transfer of a frame in finished. This function will only be called
982 * by the interrupt handler
985 static int via_ircc_dma_xmit_complete(struct via_ircc_cb
*self
)
991 IRDA_DEBUG(3, "%s()\n", __func__
);
993 iobase
= self
->io
.fir_base
;
995 // DisableDmaChannel(self->io.dma);
996 /* Check for underrrun! */
997 /* Clear bit, by writing 1 into it */
998 Tx_status
= GetTXStatus(iobase
);
999 if (Tx_status
& 0x08) {
1000 self
->netdev
->stats
.tx_errors
++;
1001 self
->netdev
->stats
.tx_fifo_errors
++;
1003 // how to clear underrrun ?
1005 self
->netdev
->stats
.tx_packets
++;
1006 ResetChip(iobase
, 3);
1007 ResetChip(iobase
, 4);
1009 /* Check if we need to change the speed */
1010 if (self
->new_speed
) {
1011 via_ircc_change_speed(self
, self
->new_speed
);
1012 self
->new_speed
= 0;
1015 /* Finished with this frame, so prepare for next */
1016 if (IsFIROn(iobase
)) {
1017 if (self
->tx_fifo
.len
) {
1018 self
->tx_fifo
.len
--;
1019 self
->tx_fifo
.ptr
++;
1023 "%s: tx_fifo.len=%x ,tx_fifo.ptr=%x,tx_fifo.free=%x...\n",
1025 self
->tx_fifo
.len
, self
->tx_fifo
.ptr
, self
->tx_fifo
.free
);
1027 // Any frames to be sent back-to-back?
1028 if (self->tx_fifo.len) {
1029 // Not finished yet!
1030 via_ircc_dma_xmit(self, iobase);
1034 // Reset Tx FIFO info
1035 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1036 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1039 // Make sure we have room for more frames
1040 //F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) {
1041 // Not busy transmitting anymore
1042 // Tell the network layer, that we can accept more frames
1043 netif_wake_queue(self
->netdev
);
1049 * Function via_ircc_dma_receive (self)
1051 * Set configuration for receive a frame.
1054 static int via_ircc_dma_receive(struct via_ircc_cb
*self
)
1058 iobase
= self
->io
.fir_base
;
1060 IRDA_DEBUG(3, "%s()\n", __func__
);
1062 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1063 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1064 self
->RxDataReady
= 0;
1065 self
->io
.direction
= IO_RECV
;
1066 self
->rx_buff
.data
= self
->rx_buff
.head
;
1067 self
->st_fifo
.len
= self
->st_fifo
.pending_bytes
= 0;
1068 self
->st_fifo
.tail
= self
->st_fifo
.head
= 0;
1071 EnableTX(iobase
, OFF
);
1072 EnableRX(iobase
, ON
);
1074 ResetChip(iobase
, 0);
1075 ResetChip(iobase
, 1);
1076 ResetChip(iobase
, 2);
1077 ResetChip(iobase
, 3);
1078 ResetChip(iobase
, 4);
1080 EnAllInt(iobase
, ON
);
1081 EnTXDMA(iobase
, OFF
);
1082 EnRXDMA(iobase
, ON
);
1083 irda_setup_dma(self
->io
.dma2
, self
->rx_buff_dma
,
1084 self
->rx_buff
.truesize
, DMA_RX_MODE
);
1085 TXStart(iobase
, OFF
);
1086 RXStart(iobase
, ON
);
1092 * Function via_ircc_dma_receive_complete (self)
1094 * Controller Finished with receiving frames,
1095 * and this routine is call by ISR
1098 static int via_ircc_dma_receive_complete(struct via_ircc_cb
*self
,
1101 struct st_fifo
*st_fifo
;
1102 struct sk_buff
*skb
;
1106 iobase
= self
->io
.fir_base
;
1107 st_fifo
= &self
->st_fifo
;
1109 if (self
->io
.speed
< 4000000) { //Speed below FIR
1110 len
= GetRecvByte(iobase
, self
);
1111 skb
= dev_alloc_skb(len
+ 1);
1114 // Make sure IP header gets aligned
1115 skb_reserve(skb
, 1);
1116 skb_put(skb
, len
- 2);
1117 if (self
->chip_id
== 0x3076) {
1118 for (i
= 0; i
< len
- 2; i
++)
1119 skb
->data
[i
] = self
->rx_buff
.data
[i
* 2];
1121 if (self
->chip_id
== 0x3096) {
1122 for (i
= 0; i
< len
- 2; i
++)
1124 self
->rx_buff
.data
[i
];
1127 // Move to next frame
1128 self
->rx_buff
.data
+= len
;
1129 self
->netdev
->stats
.rx_bytes
+= len
;
1130 self
->netdev
->stats
.rx_packets
++;
1131 skb
->dev
= self
->netdev
;
1132 skb_reset_mac_header(skb
);
1133 skb
->protocol
= htons(ETH_P_IRDA
);
1139 len
= GetRecvByte(iobase
, self
);
1141 return TRUE
; //interrupt only, data maybe move by RxT
1142 if (((len
- 4) < 2) || ((len
- 4) > 2048)) {
1143 IRDA_DEBUG(1, "%s(): Trouble:len=%x,CurCount=%x,LastCount=%x..\n",
1144 __func__
, len
, RxCurCount(iobase
, self
),
1149 IRDA_DEBUG(2, "%s(): fifo.len=%x,len=%x,CurCount=%x..\n",
1151 st_fifo
->len
, len
- 4, RxCurCount(iobase
, self
));
1153 st_fifo
->entries
[st_fifo
->tail
].status
= status
;
1154 st_fifo
->entries
[st_fifo
->tail
].len
= len
;
1155 st_fifo
->pending_bytes
+= len
;
1158 if (st_fifo
->tail
> MAX_RX_WINDOW
)
1160 self
->RxDataReady
= 0;
1162 // It maybe have MAX_RX_WINDOW package receive by
1163 // receive_complete before Timer IRQ
1165 if (st_fifo->len < (MAX_RX_WINDOW+2 )) {
1171 EnableRX(iobase
, OFF
);
1172 EnRXDMA(iobase
, OFF
);
1173 RXStart(iobase
, OFF
);
1175 // Put this entry back in fifo
1176 if (st_fifo
->head
> MAX_RX_WINDOW
)
1178 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1179 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1183 skb
= dev_alloc_skb(len
+ 1 - 4);
1185 * if frame size, data ptr, or skb ptr are wrong, then get next
1188 if ((skb
== NULL
) || (skb
->data
== NULL
) ||
1189 (self
->rx_buff
.data
== NULL
) || (len
< 6)) {
1190 self
->netdev
->stats
.rx_dropped
++;
1194 skb_reserve(skb
, 1);
1195 skb_put(skb
, len
- 4);
1197 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4);
1198 IRDA_DEBUG(2, "%s(): len=%x.rx_buff=%p\n", __func__
,
1199 len
- 4, self
->rx_buff
.data
);
1201 // Move to next frame
1202 self
->rx_buff
.data
+= len
;
1203 self
->netdev
->stats
.rx_bytes
+= len
;
1204 self
->netdev
->stats
.rx_packets
++;
1205 skb
->dev
= self
->netdev
;
1206 skb_reset_mac_header(skb
);
1207 skb
->protocol
= htons(ETH_P_IRDA
);
1217 * if frame is received , but no INT ,then use this routine to upload frame.
1219 static int upload_rxdata(struct via_ircc_cb
*self
, int iobase
)
1221 struct sk_buff
*skb
;
1223 struct st_fifo
*st_fifo
;
1224 st_fifo
= &self
->st_fifo
;
1226 len
= GetRecvByte(iobase
, self
);
1228 IRDA_DEBUG(2, "%s(): len=%x\n", __func__
, len
);
1230 if ((len
- 4) < 2) {
1231 self
->netdev
->stats
.rx_dropped
++;
1235 skb
= dev_alloc_skb(len
+ 1);
1237 self
->netdev
->stats
.rx_dropped
++;
1240 skb_reserve(skb
, 1);
1241 skb_put(skb
, len
- 4 + 1);
1242 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4 + 1);
1245 if (st_fifo
->tail
> MAX_RX_WINDOW
)
1247 // Move to next frame
1248 self
->rx_buff
.data
+= len
;
1249 self
->netdev
->stats
.rx_bytes
+= len
;
1250 self
->netdev
->stats
.rx_packets
++;
1251 skb
->dev
= self
->netdev
;
1252 skb_reset_mac_header(skb
);
1253 skb
->protocol
= htons(ETH_P_IRDA
);
1255 if (st_fifo
->len
< (MAX_RX_WINDOW
+ 2)) {
1256 RXStart(iobase
, ON
);
1258 EnableRX(iobase
, OFF
);
1259 EnRXDMA(iobase
, OFF
);
1260 RXStart(iobase
, OFF
);
1266 * Implement back to back receive , use this routine to upload data.
1269 static int RxTimerHandler(struct via_ircc_cb
*self
, int iobase
)
1271 struct st_fifo
*st_fifo
;
1272 struct sk_buff
*skb
;
1276 st_fifo
= &self
->st_fifo
;
1278 if (CkRxRecv(iobase
, self
)) {
1279 // if still receiving ,then return ,don't upload frame
1280 self
->RetryCount
= 0;
1281 SetTimer(iobase
, 20);
1282 self
->RxDataReady
++;
1287 if ((self
->RetryCount
>= 1) ||
1288 ((st_fifo
->pending_bytes
+ 2048) > self
->rx_buff
.truesize
) ||
1289 (st_fifo
->len
>= (MAX_RX_WINDOW
))) {
1290 while (st_fifo
->len
> 0) { //upload frame
1291 // Put this entry back in fifo
1292 if (st_fifo
->head
> MAX_RX_WINDOW
)
1294 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1295 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1299 skb
= dev_alloc_skb(len
+ 1 - 4);
1301 * if frame size, data ptr, or skb ptr are wrong,
1302 * then get next entry.
1304 if ((skb
== NULL
) || (skb
->data
== NULL
) ||
1305 (self
->rx_buff
.data
== NULL
) || (len
< 6)) {
1306 self
->netdev
->stats
.rx_dropped
++;
1309 skb_reserve(skb
, 1);
1310 skb_put(skb
, len
- 4);
1311 skb_copy_to_linear_data(skb
, self
->rx_buff
.data
, len
- 4);
1313 IRDA_DEBUG(2, "%s(): len=%x.head=%x\n", __func__
,
1314 len
- 4, st_fifo
->head
);
1316 // Move to next frame
1317 self
->rx_buff
.data
+= len
;
1318 self
->netdev
->stats
.rx_bytes
+= len
;
1319 self
->netdev
->stats
.rx_packets
++;
1320 skb
->dev
= self
->netdev
;
1321 skb_reset_mac_header(skb
);
1322 skb
->protocol
= htons(ETH_P_IRDA
);
1325 self
->RetryCount
= 0;
1328 "%s(): End of upload HostStatus=%x,RxStatus=%x\n",
1330 GetHostStatus(iobase
), GetRXStatus(iobase
));
1333 * if frame is receive complete at this routine ,then upload
1336 if ((GetRXStatus(iobase
) & 0x10) &&
1337 (RxCurCount(iobase
, self
) != self
->RxLastCount
)) {
1338 upload_rxdata(self
, iobase
);
1339 if (irda_device_txqueue_empty(self
->netdev
))
1340 via_ircc_dma_receive(self
);
1342 } // timer detect complete
1344 SetTimer(iobase
, 4);
1352 * Function via_ircc_interrupt (irq, dev_id)
1354 * An interrupt from the chip has arrived. Time to do some work
1357 static irqreturn_t
via_ircc_interrupt(int dummy
, void *dev_id
)
1359 struct net_device
*dev
= dev_id
;
1360 struct via_ircc_cb
*self
= netdev_priv(dev
);
1362 u8 iHostIntType
, iRxIntType
, iTxIntType
;
1364 iobase
= self
->io
.fir_base
;
1365 spin_lock(&self
->lock
);
1366 iHostIntType
= GetHostStatus(iobase
);
1368 IRDA_DEBUG(4, "%s(): iHostIntType %02x: %s %s %s %02x\n",
1369 __func__
, iHostIntType
,
1370 (iHostIntType
& 0x40) ? "Timer" : "",
1371 (iHostIntType
& 0x20) ? "Tx" : "",
1372 (iHostIntType
& 0x10) ? "Rx" : "",
1373 (iHostIntType
& 0x0e) >> 1);
1375 if ((iHostIntType
& 0x40) != 0) { //Timer Event
1376 self
->EventFlag
.TimeOut
++;
1377 ClearTimerInt(iobase
, 1);
1378 if (self
->io
.direction
== IO_XMIT
) {
1379 via_ircc_dma_xmit(self
, iobase
);
1381 if (self
->io
.direction
== IO_RECV
) {
1383 * frame ready hold too long, must reset.
1385 if (self
->RxDataReady
> 30) {
1387 if (irda_device_txqueue_empty(self
->netdev
)) {
1388 via_ircc_dma_receive(self
);
1390 } else { // call this to upload frame.
1391 RxTimerHandler(self
, iobase
);
1395 if ((iHostIntType
& 0x20) != 0) { //Tx Event
1396 iTxIntType
= GetTXStatus(iobase
);
1398 IRDA_DEBUG(4, "%s(): iTxIntType %02x: %s %s %s %s\n",
1399 __func__
, iTxIntType
,
1400 (iTxIntType
& 0x08) ? "FIFO underr." : "",
1401 (iTxIntType
& 0x04) ? "EOM" : "",
1402 (iTxIntType
& 0x02) ? "FIFO ready" : "",
1403 (iTxIntType
& 0x01) ? "Early EOM" : "");
1405 if (iTxIntType
& 0x4) {
1406 self
->EventFlag
.EOMessage
++; // read and will auto clean
1407 if (via_ircc_dma_xmit_complete(self
)) {
1408 if (irda_device_txqueue_empty
1410 via_ircc_dma_receive(self
);
1413 self
->EventFlag
.Unknown
++;
1417 //----------------------------------------
1418 if ((iHostIntType
& 0x10) != 0) { //Rx Event
1419 /* Check if DMA has finished */
1420 iRxIntType
= GetRXStatus(iobase
);
1422 IRDA_DEBUG(4, "%s(): iRxIntType %02x: %s %s %s %s %s %s %s\n",
1423 __func__
, iRxIntType
,
1424 (iRxIntType
& 0x80) ? "PHY err." : "",
1425 (iRxIntType
& 0x40) ? "CRC err" : "",
1426 (iRxIntType
& 0x20) ? "FIFO overr." : "",
1427 (iRxIntType
& 0x10) ? "EOF" : "",
1428 (iRxIntType
& 0x08) ? "RxData" : "",
1429 (iRxIntType
& 0x02) ? "RxMaxLen" : "",
1430 (iRxIntType
& 0x01) ? "SIR bad" : "");
1432 IRDA_DEBUG(3, "%s(): RxIRQ =0\n", __func__
);
1434 if (iRxIntType
& 0x10) {
1435 if (via_ircc_dma_receive_complete(self
, iobase
)) {
1436 //F01 if(!(IsFIROn(iobase))) via_ircc_dma_receive(self);
1437 via_ircc_dma_receive(self
);
1441 IRDA_DEBUG(4, "%s(): RxIRQ ERR:iRxIntType=%x,HostIntType=%x,CurCount=%x,RxLastCount=%x_____\n",
1442 __func__
, iRxIntType
, iHostIntType
,
1443 RxCurCount(iobase
, self
),
1446 if (iRxIntType
& 0x20) { //FIFO OverRun ERR
1447 ResetChip(iobase
, 0);
1448 ResetChip(iobase
, 1);
1449 } else { //PHY,CRC ERR
1451 if (iRxIntType
!= 0x08)
1452 hwreset(self
); //F01
1454 via_ircc_dma_receive(self
);
1458 spin_unlock(&self
->lock
);
1459 return IRQ_RETVAL(iHostIntType
);
1462 static void hwreset(struct via_ircc_cb
*self
)
1465 iobase
= self
->io
.fir_base
;
1467 IRDA_DEBUG(3, "%s()\n", __func__
);
1469 ResetChip(iobase
, 5);
1470 EnableDMA(iobase
, OFF
);
1471 EnableTX(iobase
, OFF
);
1472 EnableRX(iobase
, OFF
);
1473 EnRXDMA(iobase
, OFF
);
1474 EnTXDMA(iobase
, OFF
);
1475 RXStart(iobase
, OFF
);
1476 TXStart(iobase
, OFF
);
1479 SIRFilter(iobase
, ON
);
1483 WriteReg(iobase
, I_ST_CT_0
, 0x00);
1484 SetBaudRate(iobase
, 9600);
1485 SetPulseWidth(iobase
, 12);
1486 SetSendPreambleCount(iobase
, 0);
1487 WriteReg(iobase
, I_ST_CT_0
, 0x80);
1489 /* Restore speed. */
1490 via_ircc_change_speed(self
, self
->io
.speed
);
1492 self
->st_fifo
.len
= 0;
1496 * Function via_ircc_is_receiving (self)
1498 * Return TRUE is we are currently receiving a frame
1501 static int via_ircc_is_receiving(struct via_ircc_cb
*self
)
1506 IRDA_ASSERT(self
!= NULL
, return FALSE
;);
1508 iobase
= self
->io
.fir_base
;
1509 if (CkRxRecv(iobase
, self
))
1512 IRDA_DEBUG(2, "%s(): status=%x....\n", __func__
, status
);
1519 * Function via_ircc_net_open (dev)
1524 static int via_ircc_net_open(struct net_device
*dev
)
1526 struct via_ircc_cb
*self
;
1530 IRDA_DEBUG(3, "%s()\n", __func__
);
1532 IRDA_ASSERT(dev
!= NULL
, return -1;);
1533 self
= netdev_priv(dev
);
1534 dev
->stats
.rx_packets
= 0;
1535 IRDA_ASSERT(self
!= NULL
, return 0;);
1536 iobase
= self
->io
.fir_base
;
1537 if (request_irq(self
->io
.irq
, via_ircc_interrupt
, 0, dev
->name
, dev
)) {
1538 IRDA_WARNING("%s, unable to allocate irq=%d\n", driver_name
,
1543 * Always allocate the DMA channel after the IRQ, and clean up on
1546 if (request_dma(self
->io
.dma
, dev
->name
)) {
1547 IRDA_WARNING("%s, unable to allocate dma=%d\n", driver_name
,
1549 free_irq(self
->io
.irq
, self
);
1552 if (self
->io
.dma2
!= self
->io
.dma
) {
1553 if (request_dma(self
->io
.dma2
, dev
->name
)) {
1554 IRDA_WARNING("%s, unable to allocate dma2=%d\n",
1555 driver_name
, self
->io
.dma2
);
1556 free_irq(self
->io
.irq
, self
);
1557 free_dma(self
->io
.dma
);
1563 /* turn on interrupts */
1564 EnAllInt(iobase
, ON
);
1565 EnInternalLoop(iobase
, OFF
);
1566 EnExternalLoop(iobase
, OFF
);
1569 via_ircc_dma_receive(self
);
1571 /* Ready to play! */
1572 netif_start_queue(dev
);
1575 * Open new IrLAP layer instance, now that everything should be
1576 * initialized properly
1578 sprintf(hwname
, "VIA @ 0x%x", iobase
);
1579 self
->irlap
= irlap_open(dev
, &self
->qos
, hwname
);
1581 self
->RxLastCount
= 0;
1587 * Function via_ircc_net_close (dev)
1592 static int via_ircc_net_close(struct net_device
*dev
)
1594 struct via_ircc_cb
*self
;
1597 IRDA_DEBUG(3, "%s()\n", __func__
);
1599 IRDA_ASSERT(dev
!= NULL
, return -1;);
1600 self
= netdev_priv(dev
);
1601 IRDA_ASSERT(self
!= NULL
, return 0;);
1604 netif_stop_queue(dev
);
1605 /* Stop and remove instance of IrLAP */
1607 irlap_close(self
->irlap
);
1609 iobase
= self
->io
.fir_base
;
1610 EnTXDMA(iobase
, OFF
);
1611 EnRXDMA(iobase
, OFF
);
1612 DisableDmaChannel(self
->io
.dma
);
1614 /* Disable interrupts */
1615 EnAllInt(iobase
, OFF
);
1616 free_irq(self
->io
.irq
, dev
);
1617 free_dma(self
->io
.dma
);
1618 if (self
->io
.dma2
!= self
->io
.dma
)
1619 free_dma(self
->io
.dma2
);
1625 * Function via_ircc_net_ioctl (dev, rq, cmd)
1627 * Process IOCTL commands for this device
1630 static int via_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
,
1633 struct if_irda_req
*irq
= (struct if_irda_req
*) rq
;
1634 struct via_ircc_cb
*self
;
1635 unsigned long flags
;
1638 IRDA_ASSERT(dev
!= NULL
, return -1;);
1639 self
= netdev_priv(dev
);
1640 IRDA_ASSERT(self
!= NULL
, return -1;);
1641 IRDA_DEBUG(1, "%s(), %s, (cmd=0x%X)\n", __func__
, dev
->name
,
1643 /* Disable interrupts & save flags */
1644 spin_lock_irqsave(&self
->lock
, flags
);
1646 case SIOCSBANDWIDTH
: /* Set bandwidth */
1647 if (!capable(CAP_NET_ADMIN
)) {
1651 via_ircc_change_speed(self
, irq
->ifr_baudrate
);
1653 case SIOCSMEDIABUSY
: /* Set media busy */
1654 if (!capable(CAP_NET_ADMIN
)) {
1658 irda_device_set_media_busy(self
->netdev
, TRUE
);
1660 case SIOCGRECEIVING
: /* Check if we are receiving right now */
1661 irq
->ifr_receiving
= via_ircc_is_receiving(self
);
1667 spin_unlock_irqrestore(&self
->lock
, flags
);
1671 MODULE_AUTHOR("VIA Technologies,inc");
1672 MODULE_DESCRIPTION("VIA IrDA Device Driver");
1673 MODULE_LICENSE("GPL");
1675 module_init(via_ircc_init
);
1676 module_exit(via_ircc_cleanup
);