blob: 26cb45d597028a242632b225f0d1090ab586cd06 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/********************************************************************
2 Filename: via-ircc.c
3 Version: 1.0
4 Description: Driver for the VIA VT8231/VT8233 IrDA chipsets
5 Author: VIA Technologies,inc
6 Date : 08/06/2003
7
8Copyright (c) 1998-2003 VIA Technologies, Inc.
9
10This program is free software; you can redistribute it and/or modify it under
11the terms of the GNU General Public License as published by the Free Software
12Foundation; either version 2, or (at your option) any later version.
13
14This program is distributed in the hope that it will be useful, but WITHOUT
15ANY WARRANTIES OR REPRESENTATIONS; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17See the GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License along with
Jeff Kirshere8478de2013-12-06 06:28:44 -080020this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22F01 Oct/02/02: Modify code for V0.11(move out back to back transfer)
23F02 Oct/28/02: Add SB device ID for 3147 and 3177.
24 Comment :
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 .
28
292004-02-16: <sda@bdit.de>
30- Removed unneeded 'legacy' pci stuff.
Lucas De Marchi25985ed2011-03-30 22:57:33 -030031- Make sure SIR mode is set (hw_init()) before calling mode-dependent stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032- 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.
37- Code cleanup.
38
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000048#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/rtnetlink.h>
50#include <linux/pci.h>
51#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <asm/io.h>
55#include <asm/dma.h>
56#include <asm/byteorder.h>
57
58#include <linux/pm.h>
59
60#include <net/irda/wrapper.h>
61#include <net/irda/irda.h>
62#include <net/irda/irda_device.h>
63
64#include "via-ircc.h"
65
66#define VIA_MODULE_NAME "via-ircc"
67#define CHIP_IO_EXTENT 0x40
68
69static char *driver_name = VIA_MODULE_NAME;
70
71/* Module parameters */
72static int qos_mtt_bits = 0x07; /* 1 ms or more */
73static int dongle_id = 0; /* default: probe */
74
75/* We can't guess the type of connected dongle, user *must* supply it. */
76module_param(dongle_id, int, 0);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* Some prototypes */
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000079static int via_ircc_open(struct pci_dev *pdev, chipio_t *info,
Ben Hutchingsabc45592011-03-28 17:10:43 +000080 unsigned int id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int via_ircc_dma_receive(struct via_ircc_cb *self);
82static int via_ircc_dma_receive_complete(struct via_ircc_cb *self,
83 int iobase);
Stephen Hemminger6518bbb2009-08-31 19:50:50 +000084static netdev_tx_t via_ircc_hard_xmit_sir(struct sk_buff *skb,
85 struct net_device *dev);
86static netdev_tx_t via_ircc_hard_xmit_fir(struct sk_buff *skb,
87 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static void via_hw_init(struct via_ircc_cb *self);
89static void via_ircc_change_speed(struct via_ircc_cb *self, __u32 baud);
David Howells7d12e782006-10-05 14:55:46 +010090static irqreturn_t via_ircc_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int via_ircc_is_receiving(struct via_ircc_cb *self);
92static int via_ircc_read_dongle_id(int iobase);
93
94static int via_ircc_net_open(struct net_device *dev);
95static int via_ircc_net_close(struct net_device *dev);
96static int via_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq,
97 int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static void via_ircc_change_dongle_speed(int iobase, int speed,
99 int dongle_id);
100static int RxTimerHandler(struct via_ircc_cb *self, int iobase);
101static void hwreset(struct via_ircc_cb *self);
102static int via_ircc_dma_xmit(struct via_ircc_cb *self, u16 iobase);
103static int upload_rxdata(struct via_ircc_cb *self, int iobase);
Bill Pemberton45ac9362012-12-03 09:24:13 -0500104static int via_init_one(struct pci_dev *pcidev, const struct pci_device_id *id);
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000105static void via_remove_one(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/* FIXME : Should use udelay() instead, even if we are x86 only - Jean II */
108static void iodelay(int udelay)
109{
110 u8 data;
111 int i;
112
113 for (i = 0; i < udelay; i++) {
114 data = inb(0x80);
115 }
116}
117
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000118static DEFINE_PCI_DEVICE_TABLE(via_pci_tbl) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 { 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 },
124 { 0, }
125};
126
127MODULE_DEVICE_TABLE(pci,via_pci_tbl);
128
129
130static struct pci_driver via_driver = {
131 .name = VIA_MODULE_NAME,
132 .id_table = via_pci_tbl,
133 .probe = via_init_one,
Bill Pemberton45ac9362012-12-03 09:24:13 -0500134 .remove = via_remove_one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137
138/*
139 * Function via_ircc_init ()
140 *
141 * Initialize chip. Just find out chip type and resource.
142 */
143static int __init via_ircc_init(void)
144{
145 int rc;
146
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700147 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 rc = pci_register_driver(&via_driver);
150 if (rc < 0) {
151 IRDA_DEBUG(0, "%s(): error rc = %d, returning -ENODEV...\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700152 __func__, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return -ENODEV;
154 }
155 return 0;
156}
157
Bill Pemberton45ac9362012-12-03 09:24:13 -0500158static int via_init_one(struct pci_dev *pcidev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 int rc;
161 u8 temp,oldPCI_40,oldPCI_44,bTmp,bTmp1;
162 u16 Chipset,FirDRQ1,FirDRQ0,FirIRQ,FirIOBase;
163 chipio_t info;
164
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700165 IRDA_DEBUG(2, "%s(): Device ID=(0X%X)\n", __func__, id->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 rc = pci_enable_device (pcidev);
168 if (rc) {
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700169 IRDA_DEBUG(0, "%s(): error rc = %d\n", __func__, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -ENODEV;
171 }
172
173 // South Bridge exist
174 if ( ReadLPCReg(0x20) != 0x3C )
175 Chipset=0x3096;
176 else
177 Chipset=0x3076;
178
179 if (Chipset==0x3076) {
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700180 IRDA_DEBUG(2, "%s(): Chipset = 3076\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
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);
188 if((temp&0x01)==0) {
189 temp=(ReadLPCReg(0x74)&0x03); //DMA
190 FirDRQ0=temp + 4;
191 temp=(ReadLPCReg(0x74)&0x0C) >> 2;
192 FirDRQ1=temp + 4;
193 } else {
194 temp=(ReadLPCReg(0x74)&0x0C) >> 2; //DMA
195 FirDRQ0=temp + 4;
196 FirDRQ1=FirDRQ0;
197 }
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;
203 info.irq=FirIRQ;
204 info.dma=FirDRQ1;
205 info.dma2=FirDRQ0;
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 );
Alexey Khoroshilov18ebe5c2013-08-16 23:48:14 +0300212 rc = via_ircc_open(pcidev, &info, 0x3076);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 } else
214 rc = -ENODEV; //IR not turn on
215 } else { //Not VT1211
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700216 IRDA_DEBUG(2, "%s(): Chipset = 3096\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
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
228 if((bTmp&0x02)==0) {
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;
233 } else {
234 pci_read_config_byte(pcidev,0x44,&bTmp1); //DMA
235 FirDRQ0 = (bTmp1 & 0x30) >> 4 ;
236 FirDRQ1=0;
237 }
238 pci_read_config_byte(pcidev,0x47,&bTmp1); //IRQ
239 FirIRQ = bTmp1 & 0x0f;
240
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;
247 info.irq=FirIRQ;
248 info.dma=FirDRQ1;
249 info.dma2=FirDRQ0;
Alexey Khoroshilov18ebe5c2013-08-16 23:48:14 +0300250 rc = via_ircc_open(pcidev, &info, 0x3096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 } else
252 rc = -ENODEV; //IR not turn on !!!!!
253 }//Not VT1211
254
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700255 IRDA_DEBUG(2, "%s(): End - rc = %d\n", __func__, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return rc;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void __exit via_ircc_cleanup(void)
260{
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700261 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* Cleanup all instances of the driver */
264 pci_unregister_driver (&via_driver);
265}
266
Stephen Hemminger0bd11f22009-03-20 19:35:43 +0000267static 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,
272};
273static 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,
278};
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/*
Ben Hutchingsabc45592011-03-28 17:10:43 +0000281 * Function via_ircc_open(pdev, iobase, irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *
283 * Open driver instance
284 *
285 */
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000286static int via_ircc_open(struct pci_dev *pdev, chipio_t *info, unsigned int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct net_device *dev;
289 struct via_ircc_cb *self;
290 int err;
291
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700292 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /* Allocate new instance of the driver */
295 dev = alloc_irdadev(sizeof(struct via_ircc_cb));
296 if (dev == NULL)
297 return -ENOMEM;
298
Wang Chen4cf16532008-11-12 23:38:14 -0800299 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 self->netdev = dev;
301 spin_lock_init(&self->lock);
302
Ben Hutchingsabc45592011-03-28 17:10:43 +0000303 pci_set_drvdata(pdev, self);
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* 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;
313 self->chip_id = id;
314 self->st_fifo.len = 0;
315 self->RxDataReady = 0;
316
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",
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700320 __func__, self->io.fir_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 err = -ENODEV;
322 goto err_out1;
323 }
324
325 /* Initialize QoS for this device */
326 irda_init_max_qos_capabilies(&self->qos);
327
328 /* Check if user has supplied the dongle id or not */
329 if (!dongle_id)
330 dongle_id = via_ircc_read_dongle_id(self->io.fir_base);
331 self->io.dongle_id = dongle_id;
332
333 /* The only value we must override it the baudrate */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300334 /* Maximum speeds and capabilities are dongle-dependent. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 switch( self->io.dongle_id ){
336 case 0x0d:
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);
340 break;
341 default:
342 self->qos.baud_rate.bits =
343 IR_9600 | IR_19200 | IR_38400 | IR_57600 | IR_115200;
344 break;
345 }
346
347 /* Following was used for testing:
348 *
349 * self->qos.baud_rate.bits = IR_9600;
350 *
351 * Is is no good, as it prohibits (error-prone) speed-changes.
352 */
353
354 self->qos.min_turn_time.bits = qos_mtt_bits;
355 irda_qos_bits_to_value(&self->qos);
356
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;
360
361 /* Allocate memory if needed */
362 self->rx_buff.head =
Joe Perchesede23fa82013-08-26 22:45:23 -0700363 dma_zalloc_coherent(&pdev->dev, self->rx_buff.truesize,
364 &self->rx_buff_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (self->rx_buff.head == NULL) {
366 err = -ENOMEM;
367 goto err_out2;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 self->tx_buff.head =
Joe Perchesede23fa82013-08-26 22:45:23 -0700371 dma_zalloc_coherent(&pdev->dev, self->tx_buff.truesize,
372 &self->tx_buff_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (self->tx_buff.head == NULL) {
374 err = -ENOMEM;
375 goto err_out3;
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
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;
382
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;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* Override the network functions we need to use */
Stephen Hemminger0bd11f22009-03-20 19:35:43 +0000388 dev->netdev_ops = &via_ircc_sir_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 err = register_netdev(dev);
391 if (err)
392 goto err_out4;
393
394 IRDA_MESSAGE("IrDA: Registered device %s (via-ircc)\n", dev->name);
395
396 /* Initialise the hardware..
397 */
398 self->io.speed = 9600;
399 via_hw_init(self);
400 return 0;
401 err_out4:
Ben Hutchingsfd1d9182011-03-28 17:12:52 +0000402 dma_free_coherent(&pdev->dev, self->tx_buff.truesize,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 self->tx_buff.head, self->tx_buff_dma);
404 err_out3:
Ben Hutchingsfd1d9182011-03-28 17:12:52 +0000405 dma_free_coherent(&pdev->dev, self->rx_buff.truesize,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 self->rx_buff.head, self->rx_buff_dma);
407 err_out2:
408 release_region(self->io.fir_base, self->io.fir_ext);
409 err_out1:
Ben Hutchingsabc45592011-03-28 17:10:43 +0000410 pci_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return err;
413}
414
415/*
Ben Hutchingsabc45592011-03-28 17:10:43 +0000416 * Function via_remove_one(pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 *
418 * Close driver instance
419 *
420 */
Bill Pemberton45ac9362012-12-03 09:24:13 -0500421static void via_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Ben Hutchingsabc45592011-03-28 17:10:43 +0000423 struct via_ircc_cb *self = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 int iobase;
425
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700426 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 iobase = self->io.fir_base;
429
430 ResetChip(iobase, 5); //hardware reset.
431 /* Remove netdevice */
432 unregister_netdev(self->netdev);
433
434 /* Release the PORT that this driver is using */
435 IRDA_DEBUG(2, "%s(), Releasing Region %03x\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700436 __func__, self->io.fir_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 release_region(self->io.fir_base, self->io.fir_ext);
438 if (self->tx_buff.head)
Ben Hutchingsfd1d9182011-03-28 17:12:52 +0000439 dma_free_coherent(&pdev->dev, self->tx_buff.truesize,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 self->tx_buff.head, self->tx_buff_dma);
441 if (self->rx_buff.head)
Ben Hutchingsfd1d9182011-03-28 17:12:52 +0000442 dma_free_coherent(&pdev->dev, self->rx_buff.truesize,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 self->rx_buff.head, self->rx_buff_dma);
Ben Hutchingsabc45592011-03-28 17:10:43 +0000444 pci_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 free_netdev(self->netdev);
447
Ben Hutchingsabc45592011-03-28 17:10:43 +0000448 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451/*
452 * Function via_hw_init(self)
453 *
454 * Returns non-negative on success.
455 *
456 * Formerly via_ircc_setup
457 */
458static void via_hw_init(struct via_ircc_cb *self)
459{
460 int iobase = self->io.fir_base;
461
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700462 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 SetMaxRxPacketSize(iobase, 0x0fff); //set to max:4095
465 // FIFO Init
466 EnRXFIFOReadyInt(iobase, OFF);
467 EnRXFIFOHalfLevelInt(iobase, OFF);
468 EnTXFIFOHalfLevelInt(iobase, OFF);
469 EnTXFIFOUnderrunEOMInt(iobase, ON);
470 EnTXFIFOReadyInt(iobase, OFF);
471 InvertTX(iobase, OFF);
472 InvertRX(iobase, OFF);
473
474 if (ReadLPCReg(0x20) == 0x3c)
475 WriteLPCReg(0xF0, 0); // for VT1211
476 /* Int Init */
477 EnRXSpecInt(iobase, ON);
478
479 /* The following is basically hwreset */
480 /* If this is the case, why not just call hwreset() ? Jean II */
481 ResetChip(iobase, 5);
482 EnableDMA(iobase, OFF);
483 EnableTX(iobase, OFF);
484 EnableRX(iobase, OFF);
485 EnRXDMA(iobase, OFF);
486 EnTXDMA(iobase, OFF);
487 RXStart(iobase, OFF);
488 TXStart(iobase, OFF);
489 InitCard(iobase);
490 CommonInit(iobase);
491 SIRFilter(iobase, ON);
492 SetSIR(iobase, ON);
493 CRC16(iobase, ON);
494 EnTXCRC(iobase, 0);
495 WriteReg(iobase, I_ST_CT_0, 0x00);
496 SetBaudRate(iobase, 9600);
497 SetPulseWidth(iobase, 12);
498 SetSendPreambleCount(iobase, 0);
499
500 self->io.speed = 9600;
501 self->st_fifo.len = 0;
502
503 via_ircc_change_dongle_speed(iobase, self->io.speed,
504 self->io.dongle_id);
505
506 WriteReg(iobase, I_ST_CT_0, 0x80);
507}
508
509/*
510 * Function via_ircc_read_dongle_id (void)
511 *
512 */
513static int via_ircc_read_dongle_id(int iobase)
514{
515 int dongle_id = 9; /* Default to IBM */
516
517 IRDA_ERROR("via-ircc: dongle probing not supported, please specify dongle_id module parameter.\n");
518 return dongle_id;
519}
520
521/*
522 * Function via_ircc_change_dongle_speed (iobase, speed, dongle_id)
523 * Change speed of the attach dongle
524 * only implement two type of dongle currently.
525 */
526static void via_ircc_change_dongle_speed(int iobase, int speed,
527 int dongle_id)
528{
529 u8 mode = 0;
530
531 /* speed is unused, as we use IsSIROn()/IsMIROn() */
532 speed = speed;
533
534 IRDA_DEBUG(1, "%s(): change_dongle_speed to %d for 0x%x, %d\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700535 __func__, speed, iobase, dongle_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 switch (dongle_id) {
538
539 /* Note: The dongle_id's listed here are derived from
540 * nsc-ircc.c */
541
542 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
543 UseOneRX(iobase, ON); // use one RX pin RX1,RX2
544 InvertTX(iobase, OFF);
545 InvertRX(iobase, OFF);
546
547 EnRX2(iobase, ON); //sir to rx2
548 EnGPIOtoRX2(iobase, OFF);
549
550 if (IsSIROn(iobase)) { //sir
551 // Mode select Off
552 SlowIRRXLowActive(iobase, ON);
553 udelay(1000);
554 SlowIRRXLowActive(iobase, OFF);
555 } else {
556 if (IsMIROn(iobase)) { //mir
557 // Mode select On
558 SlowIRRXLowActive(iobase, OFF);
559 udelay(20);
560 } else { // fir
561 if (IsFIROn(iobase)) { //fir
562 // Mode select On
563 SlowIRRXLowActive(iobase, OFF);
564 udelay(20);
565 }
566 }
567 }
568 break;
569
570 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
571 UseOneRX(iobase, ON); //use ONE RX....RX1
572 InvertTX(iobase, OFF);
573 InvertRX(iobase, OFF); // invert RX pin
574
575 EnRX2(iobase, ON);
576 EnGPIOtoRX2(iobase, OFF);
577 if (IsSIROn(iobase)) { //sir
578 // Mode select On
579 SlowIRRXLowActive(iobase, ON);
580 udelay(20);
581 // Mode select Off
582 SlowIRRXLowActive(iobase, OFF);
583 }
584 if (IsMIROn(iobase)) { //mir
585 // Mode select On
586 SlowIRRXLowActive(iobase, OFF);
587 udelay(20);
588 // Mode select Off
589 SlowIRRXLowActive(iobase, ON);
590 } else { // fir
591 if (IsFIROn(iobase)) { //fir
592 // Mode select On
593 SlowIRRXLowActive(iobase, OFF);
594 // TX On
595 WriteTX(iobase, ON);
596 udelay(20);
597 // Mode select OFF
598 SlowIRRXLowActive(iobase, ON);
599 udelay(20);
600 // TX Off
601 WriteTX(iobase, OFF);
602 }
603 }
604 break;
605
606 case 0x0d:
607 UseOneRX(iobase, OFF); // use two RX pin RX1,RX2
608 InvertTX(iobase, OFF);
609 InvertRX(iobase, OFF);
610 SlowIRRXLowActive(iobase, OFF);
611 if (IsSIROn(iobase)) { //sir
612 EnGPIOtoRX2(iobase, OFF);
613 WriteGIO(iobase, OFF);
614 EnRX2(iobase, OFF); //sir to rx2
615 } else { // fir mir
616 EnGPIOtoRX2(iobase, OFF);
617 WriteGIO(iobase, OFF);
618 EnRX2(iobase, OFF); //fir to rx
619 }
620 break;
621
622 case 0x11: /* Temic TFDS4500 */
623
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700624 IRDA_DEBUG(2, "%s: Temic TFDS4500: One RX pin, TX normal, RX inverted.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 UseOneRX(iobase, ON); //use ONE RX....RX1
627 InvertTX(iobase, OFF);
628 InvertRX(iobase, ON); // invert RX pin
629
630 EnRX2(iobase, ON); //sir to rx2
631 EnGPIOtoRX2(iobase, OFF);
632
633 if( IsSIROn(iobase) ){ //sir
634
635 // Mode select On
636 SlowIRRXLowActive(iobase, ON);
637 udelay(20);
638 // Mode select Off
639 SlowIRRXLowActive(iobase, OFF);
640
641 } else{
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700642 IRDA_DEBUG(0, "%s: Warning: TFDS4500 not running in SIR mode !\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644 break;
645
646 case 0x0ff: /* Vishay */
647 if (IsSIROn(iobase))
648 mode = 0;
649 else if (IsMIROn(iobase))
650 mode = 1;
651 else if (IsFIROn(iobase))
652 mode = 2;
653 else if (IsVFIROn(iobase))
654 mode = 5; //VFIR-16
655 SI_SetMode(iobase, mode);
656 break;
657
658 default:
659 IRDA_ERROR("%s: Error: dongle_id %d unsupported !\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700660 __func__, dongle_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662}
663
664/*
665 * Function via_ircc_change_speed (self, baud)
666 *
667 * Change the speed of the device
668 *
669 */
670static void via_ircc_change_speed(struct via_ircc_cb *self, __u32 speed)
671{
672 struct net_device *dev = self->netdev;
673 u16 iobase;
674 u8 value = 0, bTmp;
675
676 iobase = self->io.fir_base;
677 /* Update accounting for new speed */
678 self->io.speed = speed;
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700679 IRDA_DEBUG(1, "%s: change_speed to %d bps.\n", __func__, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 WriteReg(iobase, I_ST_CT_0, 0x0);
682
683 /* Controller mode sellection */
684 switch (speed) {
685 case 2400:
686 case 9600:
687 case 19200:
688 case 38400:
689 case 57600:
690 case 115200:
691 value = (115200/speed)-1;
692 SetSIR(iobase, ON);
693 CRC16(iobase, ON);
694 break;
695 case 576000:
696 /* FIXME: this can't be right, as it's the same as 115200,
697 * and 576000 is MIR, not SIR. */
698 value = 0;
699 SetSIR(iobase, ON);
700 CRC16(iobase, ON);
701 break;
702 case 1152000:
703 value = 0;
704 SetMIR(iobase, ON);
705 /* FIXME: CRC ??? */
706 break;
707 case 4000000:
708 value = 0;
709 SetFIR(iobase, ON);
710 SetPulseWidth(iobase, 0);
711 SetSendPreambleCount(iobase, 14);
712 CRC16(iobase, OFF);
713 EnTXCRC(iobase, ON);
714 break;
715 case 16000000:
716 value = 0;
717 SetVFIR(iobase, ON);
718 /* FIXME: CRC ??? */
719 break;
720 default:
721 value = 0;
722 break;
723 }
724
725 /* Set baudrate to 0x19[2..7] */
726 bTmp = (ReadReg(iobase, I_CF_H_1) & 0x03);
727 bTmp |= value << 2;
728 WriteReg(iobase, I_CF_H_1, bTmp);
729
730 /* Some dongles may need to be informed about speed changes. */
731 via_ircc_change_dongle_speed(iobase, speed, self->io.dongle_id);
732
733 /* Set FIFO size to 64 */
734 SetFIFO(iobase, 64);
735
736 /* Enable IR */
737 WriteReg(iobase, I_ST_CT_0, 0x80);
738
739 // EnTXFIFOHalfLevelInt(iobase,ON);
740
741 /* Enable some interrupts so we can receive frames */
742 //EnAllInt(iobase,ON);
743
744 if (IsSIROn(iobase)) {
745 SIRFilter(iobase, ON);
746 SIRRecvAny(iobase, ON);
747 } else {
748 SIRFilter(iobase, OFF);
749 SIRRecvAny(iobase, OFF);
750 }
751
752 if (speed > 115200) {
753 /* Install FIR xmit handler */
Stephen Hemminger0bd11f22009-03-20 19:35:43 +0000754 dev->netdev_ops = &via_ircc_fir_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 via_ircc_dma_receive(self);
756 } else {
757 /* Install SIR xmit handler */
Stephen Hemminger0bd11f22009-03-20 19:35:43 +0000758 dev->netdev_ops = &via_ircc_sir_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760 netif_wake_queue(dev);
761}
762
763/*
764 * Function via_ircc_hard_xmit (skb, dev)
765 *
766 * Transmit the frame!
767 *
768 */
Stephen Hemminger6518bbb2009-08-31 19:50:50 +0000769static netdev_tx_t via_ircc_hard_xmit_sir(struct sk_buff *skb,
770 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 struct via_ircc_cb *self;
773 unsigned long flags;
774 u16 iobase;
775 __u32 speed;
776
Wang Chen4cf16532008-11-12 23:38:14 -0800777 self = netdev_priv(dev);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700778 IRDA_ASSERT(self != NULL, return NETDEV_TX_OK;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 iobase = self->io.fir_base;
780
781 netif_stop_queue(dev);
782 /* Check if we need to change the speed */
783 speed = irda_get_next_speed(skb);
784 if ((speed != self->io.speed) && (speed != -1)) {
785 /* Check for empty frame */
786 if (!skb->len) {
787 via_ircc_change_speed(self, speed);
788 dev->trans_start = jiffies;
789 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000790 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 } else
792 self->new_speed = speed;
793 }
794 InitCard(iobase);
795 CommonInit(iobase);
796 SIRFilter(iobase, ON);
797 SetSIR(iobase, ON);
798 CRC16(iobase, ON);
799 EnTXCRC(iobase, 0);
800 WriteReg(iobase, I_ST_CT_0, 0x00);
801
802 spin_lock_irqsave(&self->lock, flags);
803 self->tx_buff.data = self->tx_buff.head;
804 self->tx_buff.len =
805 async_wrap_skb(skb, self->tx_buff.data,
806 self->tx_buff.truesize);
807
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800808 dev->stats.tx_bytes += self->tx_buff.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /* Send this frame with old speed */
810 SetBaudRate(iobase, self->io.speed);
811 SetPulseWidth(iobase, 12);
812 SetSendPreambleCount(iobase, 0);
813 WriteReg(iobase, I_ST_CT_0, 0x80);
814
815 EnableTX(iobase, ON);
816 EnableRX(iobase, OFF);
817
818 ResetChip(iobase, 0);
819 ResetChip(iobase, 1);
820 ResetChip(iobase, 2);
821 ResetChip(iobase, 3);
822 ResetChip(iobase, 4);
823
824 EnAllInt(iobase, ON);
825 EnTXDMA(iobase, ON);
826 EnRXDMA(iobase, OFF);
827
828 irda_setup_dma(self->io.dma, self->tx_buff_dma, self->tx_buff.len,
829 DMA_TX_MODE);
830
831 SetSendByte(iobase, self->tx_buff.len);
832 RXStart(iobase, OFF);
833 TXStart(iobase, ON);
834
835 dev->trans_start = jiffies;
836 spin_unlock_irqrestore(&self->lock, flags);
837 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000838 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Stephen Hemminger6518bbb2009-08-31 19:50:50 +0000841static netdev_tx_t via_ircc_hard_xmit_fir(struct sk_buff *skb,
842 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct via_ircc_cb *self;
845 u16 iobase;
846 __u32 speed;
847 unsigned long flags;
848
Wang Chen4cf16532008-11-12 23:38:14 -0800849 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 iobase = self->io.fir_base;
851
852 if (self->st_fifo.len)
Patrick McHardy6ed10652009-06-23 06:03:08 +0000853 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (self->chip_id == 0x3076)
855 iodelay(1500);
856 else
857 udelay(1500);
858 netif_stop_queue(dev);
859 speed = irda_get_next_speed(skb);
860 if ((speed != self->io.speed) && (speed != -1)) {
861 if (!skb->len) {
862 via_ircc_change_speed(self, speed);
863 dev->trans_start = jiffies;
864 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000865 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 } else
867 self->new_speed = speed;
868 }
869 spin_lock_irqsave(&self->lock, flags);
870 self->tx_fifo.queue[self->tx_fifo.free].start = self->tx_fifo.tail;
871 self->tx_fifo.queue[self->tx_fifo.free].len = skb->len;
872
873 self->tx_fifo.tail += skb->len;
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800874 dev->stats.tx_bytes += skb->len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300875 skb_copy_from_linear_data(skb,
876 self->tx_fifo.queue[self->tx_fifo.free].start, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 self->tx_fifo.len++;
878 self->tx_fifo.free++;
879//F01 if (self->tx_fifo.len == 1) {
880 via_ircc_dma_xmit(self, iobase);
881//F01 }
882//F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) netif_wake_queue(self->netdev);
883 dev->trans_start = jiffies;
884 dev_kfree_skb(skb);
885 spin_unlock_irqrestore(&self->lock, flags);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000886 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888}
889
890static int via_ircc_dma_xmit(struct via_ircc_cb *self, u16 iobase)
891{
892 EnTXDMA(iobase, OFF);
893 self->io.direction = IO_XMIT;
894 EnPhys(iobase, ON);
895 EnableTX(iobase, ON);
896 EnableRX(iobase, OFF);
897 ResetChip(iobase, 0);
898 ResetChip(iobase, 1);
899 ResetChip(iobase, 2);
900 ResetChip(iobase, 3);
901 ResetChip(iobase, 4);
902 EnAllInt(iobase, ON);
903 EnTXDMA(iobase, ON);
904 EnRXDMA(iobase, OFF);
905 irda_setup_dma(self->io.dma,
906 ((u8 *)self->tx_fifo.queue[self->tx_fifo.ptr].start -
907 self->tx_buff.head) + self->tx_buff_dma,
908 self->tx_fifo.queue[self->tx_fifo.ptr].len, DMA_TX_MODE);
909 IRDA_DEBUG(1, "%s: tx_fifo.ptr=%x,len=%x,tx_fifo.len=%x..\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700910 __func__, self->tx_fifo.ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 self->tx_fifo.queue[self->tx_fifo.ptr].len,
912 self->tx_fifo.len);
913
914 SetSendByte(iobase, self->tx_fifo.queue[self->tx_fifo.ptr].len);
915 RXStart(iobase, OFF);
916 TXStart(iobase, ON);
917 return 0;
918
919}
920
921/*
922 * Function via_ircc_dma_xmit_complete (self)
923 *
924 * The transfer of a frame in finished. This function will only be called
925 * by the interrupt handler
926 *
927 */
928static int via_ircc_dma_xmit_complete(struct via_ircc_cb *self)
929{
930 int iobase;
931 int ret = TRUE;
932 u8 Tx_status;
933
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700934 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 iobase = self->io.fir_base;
937 /* Disable DMA */
938// DisableDmaChannel(self->io.dma);
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800939 /* Check for underrun! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* Clear bit, by writing 1 into it */
941 Tx_status = GetTXStatus(iobase);
942 if (Tx_status & 0x08) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800943 self->netdev->stats.tx_errors++;
944 self->netdev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 hwreset(self);
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800946 /* how to clear underrun? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 } else {
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800948 self->netdev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 ResetChip(iobase, 3);
950 ResetChip(iobase, 4);
951 }
952 /* Check if we need to change the speed */
953 if (self->new_speed) {
954 via_ircc_change_speed(self, self->new_speed);
955 self->new_speed = 0;
956 }
957
958 /* Finished with this frame, so prepare for next */
959 if (IsFIROn(iobase)) {
960 if (self->tx_fifo.len) {
961 self->tx_fifo.len--;
962 self->tx_fifo.ptr++;
963 }
964 }
965 IRDA_DEBUG(1,
966 "%s: tx_fifo.len=%x ,tx_fifo.ptr=%x,tx_fifo.free=%x...\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -0700967 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 self->tx_fifo.len, self->tx_fifo.ptr, self->tx_fifo.free);
969/* F01_S
970 // Any frames to be sent back-to-back?
971 if (self->tx_fifo.len) {
972 // Not finished yet!
973 via_ircc_dma_xmit(self, iobase);
974 ret = FALSE;
975 } else {
976F01_E*/
977 // Reset Tx FIFO info
978 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
979 self->tx_fifo.tail = self->tx_buff.head;
980//F01 }
981
982 // Make sure we have room for more frames
983//F01 if (self->tx_fifo.free < (MAX_TX_WINDOW -1 )) {
984 // Not busy transmitting anymore
985 // Tell the network layer, that we can accept more frames
986 netif_wake_queue(self->netdev);
987//F01 }
988 return ret;
989}
990
991/*
992 * Function via_ircc_dma_receive (self)
993 *
994 * Set configuration for receive a frame.
995 *
996 */
997static int via_ircc_dma_receive(struct via_ircc_cb *self)
998{
999 int iobase;
1000
1001 iobase = self->io.fir_base;
1002
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001003 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
1006 self->tx_fifo.tail = self->tx_buff.head;
1007 self->RxDataReady = 0;
1008 self->io.direction = IO_RECV;
1009 self->rx_buff.data = self->rx_buff.head;
1010 self->st_fifo.len = self->st_fifo.pending_bytes = 0;
1011 self->st_fifo.tail = self->st_fifo.head = 0;
1012
1013 EnPhys(iobase, ON);
1014 EnableTX(iobase, OFF);
1015 EnableRX(iobase, ON);
1016
1017 ResetChip(iobase, 0);
1018 ResetChip(iobase, 1);
1019 ResetChip(iobase, 2);
1020 ResetChip(iobase, 3);
1021 ResetChip(iobase, 4);
1022
1023 EnAllInt(iobase, ON);
1024 EnTXDMA(iobase, OFF);
1025 EnRXDMA(iobase, ON);
1026 irda_setup_dma(self->io.dma2, self->rx_buff_dma,
1027 self->rx_buff.truesize, DMA_RX_MODE);
1028 TXStart(iobase, OFF);
1029 RXStart(iobase, ON);
1030
1031 return 0;
1032}
1033
1034/*
1035 * Function via_ircc_dma_receive_complete (self)
1036 *
1037 * Controller Finished with receiving frames,
1038 * and this routine is call by ISR
1039 *
1040 */
1041static int via_ircc_dma_receive_complete(struct via_ircc_cb *self,
1042 int iobase)
1043{
1044 struct st_fifo *st_fifo;
1045 struct sk_buff *skb;
1046 int len, i;
1047 u8 status = 0;
1048
1049 iobase = self->io.fir_base;
1050 st_fifo = &self->st_fifo;
1051
1052 if (self->io.speed < 4000000) { //Speed below FIR
1053 len = GetRecvByte(iobase, self);
1054 skb = dev_alloc_skb(len + 1);
1055 if (skb == NULL)
1056 return FALSE;
1057 // Make sure IP header gets aligned
1058 skb_reserve(skb, 1);
1059 skb_put(skb, len - 2);
1060 if (self->chip_id == 0x3076) {
1061 for (i = 0; i < len - 2; i++)
1062 skb->data[i] = self->rx_buff.data[i * 2];
1063 } else {
1064 if (self->chip_id == 0x3096) {
1065 for (i = 0; i < len - 2; i++)
1066 skb->data[i] =
1067 self->rx_buff.data[i];
1068 }
1069 }
1070 // Move to next frame
1071 self->rx_buff.data += len;
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001072 self->netdev->stats.rx_bytes += len;
1073 self->netdev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 skb->dev = self->netdev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001075 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 skb->protocol = htons(ETH_P_IRDA);
1077 netif_rx(skb);
1078 return TRUE;
1079 }
1080
1081 else { //FIR mode
1082 len = GetRecvByte(iobase, self);
1083 if (len == 0)
1084 return TRUE; //interrupt only, data maybe move by RxT
1085 if (((len - 4) < 2) || ((len - 4) > 2048)) {
1086 IRDA_DEBUG(1, "%s(): Trouble:len=%x,CurCount=%x,LastCount=%x..\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001087 __func__, len, RxCurCount(iobase, self),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 self->RxLastCount);
1089 hwreset(self);
1090 return FALSE;
1091 }
1092 IRDA_DEBUG(2, "%s(): fifo.len=%x,len=%x,CurCount=%x..\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001093 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 st_fifo->len, len - 4, RxCurCount(iobase, self));
1095
1096 st_fifo->entries[st_fifo->tail].status = status;
1097 st_fifo->entries[st_fifo->tail].len = len;
1098 st_fifo->pending_bytes += len;
1099 st_fifo->tail++;
1100 st_fifo->len++;
1101 if (st_fifo->tail > MAX_RX_WINDOW)
1102 st_fifo->tail = 0;
1103 self->RxDataReady = 0;
1104
1105 // It maybe have MAX_RX_WINDOW package receive by
1106 // receive_complete before Timer IRQ
1107/* F01_S
1108 if (st_fifo->len < (MAX_RX_WINDOW+2 )) {
1109 RXStart(iobase,ON);
1110 SetTimer(iobase,4);
1111 }
1112 else {
1113F01_E */
1114 EnableRX(iobase, OFF);
1115 EnRXDMA(iobase, OFF);
1116 RXStart(iobase, OFF);
1117//F01_S
1118 // Put this entry back in fifo
1119 if (st_fifo->head > MAX_RX_WINDOW)
1120 st_fifo->head = 0;
1121 status = st_fifo->entries[st_fifo->head].status;
1122 len = st_fifo->entries[st_fifo->head].len;
1123 st_fifo->head++;
1124 st_fifo->len--;
1125
1126 skb = dev_alloc_skb(len + 1 - 4);
1127 /*
Julia Lawall8d34e7d2010-08-24 04:38:33 +00001128 * if frame size, data ptr, or skb ptr are wrong, then get next
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * entry.
1130 */
Joe Perches8e95a202009-12-03 07:58:21 +00001131 if ((skb == NULL) || (skb->data == NULL) ||
1132 (self->rx_buff.data == NULL) || (len < 6)) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001133 self->netdev->stats.rx_dropped++;
Julia Lawall8d34e7d2010-08-24 04:38:33 +00001134 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return TRUE;
1136 }
1137 skb_reserve(skb, 1);
1138 skb_put(skb, len - 4);
1139
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001140 skb_copy_to_linear_data(skb, self->rx_buff.data, len - 4);
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001141 IRDA_DEBUG(2, "%s(): len=%x.rx_buff=%p\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 len - 4, self->rx_buff.data);
1143
1144 // Move to next frame
1145 self->rx_buff.data += len;
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001146 self->netdev->stats.rx_bytes += len;
1147 self->netdev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 skb->dev = self->netdev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001149 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 skb->protocol = htons(ETH_P_IRDA);
1151 netif_rx(skb);
1152
1153//F01_E
1154 } //FIR
1155 return TRUE;
1156
1157}
1158
1159/*
1160 * if frame is received , but no INT ,then use this routine to upload frame.
1161 */
1162static int upload_rxdata(struct via_ircc_cb *self, int iobase)
1163{
1164 struct sk_buff *skb;
1165 int len;
1166 struct st_fifo *st_fifo;
1167 st_fifo = &self->st_fifo;
1168
1169 len = GetRecvByte(iobase, self);
1170
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001171 IRDA_DEBUG(2, "%s(): len=%x\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Chuck Short83e331e2006-09-25 22:31:03 -07001173 if ((len - 4) < 2) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001174 self->netdev->stats.rx_dropped++;
Chuck Short83e331e2006-09-25 22:31:03 -07001175 return FALSE;
1176 }
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 skb = dev_alloc_skb(len + 1);
Chuck Short83e331e2006-09-25 22:31:03 -07001179 if (skb == NULL) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001180 self->netdev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return FALSE;
1182 }
1183 skb_reserve(skb, 1);
1184 skb_put(skb, len - 4 + 1);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001185 skb_copy_to_linear_data(skb, self->rx_buff.data, len - 4 + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 st_fifo->tail++;
1187 st_fifo->len++;
1188 if (st_fifo->tail > MAX_RX_WINDOW)
1189 st_fifo->tail = 0;
1190 // Move to next frame
1191 self->rx_buff.data += len;
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001192 self->netdev->stats.rx_bytes += len;
1193 self->netdev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 skb->dev = self->netdev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001195 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 skb->protocol = htons(ETH_P_IRDA);
1197 netif_rx(skb);
1198 if (st_fifo->len < (MAX_RX_WINDOW + 2)) {
1199 RXStart(iobase, ON);
1200 } else {
1201 EnableRX(iobase, OFF);
1202 EnRXDMA(iobase, OFF);
1203 RXStart(iobase, OFF);
1204 }
1205 return TRUE;
1206}
1207
1208/*
1209 * Implement back to back receive , use this routine to upload data.
1210 */
1211
1212static int RxTimerHandler(struct via_ircc_cb *self, int iobase)
1213{
1214 struct st_fifo *st_fifo;
1215 struct sk_buff *skb;
1216 int len;
1217 u8 status;
1218
1219 st_fifo = &self->st_fifo;
1220
1221 if (CkRxRecv(iobase, self)) {
1222 // if still receiving ,then return ,don't upload frame
1223 self->RetryCount = 0;
1224 SetTimer(iobase, 20);
1225 self->RxDataReady++;
1226 return FALSE;
1227 } else
1228 self->RetryCount++;
1229
1230 if ((self->RetryCount >= 1) ||
Joe Perches8e95a202009-12-03 07:58:21 +00001231 ((st_fifo->pending_bytes + 2048) > self->rx_buff.truesize) ||
1232 (st_fifo->len >= (MAX_RX_WINDOW))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 while (st_fifo->len > 0) { //upload frame
1234 // Put this entry back in fifo
1235 if (st_fifo->head > MAX_RX_WINDOW)
1236 st_fifo->head = 0;
1237 status = st_fifo->entries[st_fifo->head].status;
1238 len = st_fifo->entries[st_fifo->head].len;
1239 st_fifo->head++;
1240 st_fifo->len--;
1241
1242 skb = dev_alloc_skb(len + 1 - 4);
1243 /*
1244 * if frame size, data ptr, or skb ptr are wrong,
1245 * then get next entry.
1246 */
Joe Perches8e95a202009-12-03 07:58:21 +00001247 if ((skb == NULL) || (skb->data == NULL) ||
1248 (self->rx_buff.data == NULL) || (len < 6)) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001249 self->netdev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 continue;
1251 }
1252 skb_reserve(skb, 1);
1253 skb_put(skb, len - 4);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001254 skb_copy_to_linear_data(skb, self->rx_buff.data, len - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001256 IRDA_DEBUG(2, "%s(): len=%x.head=%x\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 len - 4, st_fifo->head);
1258
1259 // Move to next frame
1260 self->rx_buff.data += len;
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001261 self->netdev->stats.rx_bytes += len;
1262 self->netdev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 skb->dev = self->netdev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001264 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 skb->protocol = htons(ETH_P_IRDA);
1266 netif_rx(skb);
1267 } //while
1268 self->RetryCount = 0;
1269
1270 IRDA_DEBUG(2,
1271 "%s(): End of upload HostStatus=%x,RxStatus=%x\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001272 __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 GetHostStatus(iobase), GetRXStatus(iobase));
1274
1275 /*
1276 * if frame is receive complete at this routine ,then upload
1277 * frame.
1278 */
Joe Perches8e95a202009-12-03 07:58:21 +00001279 if ((GetRXStatus(iobase) & 0x10) &&
1280 (RxCurCount(iobase, self) != self->RxLastCount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 upload_rxdata(self, iobase);
1282 if (irda_device_txqueue_empty(self->netdev))
1283 via_ircc_dma_receive(self);
1284 }
1285 } // timer detect complete
1286 else
1287 SetTimer(iobase, 4);
1288 return TRUE;
1289
1290}
1291
1292
1293
1294/*
David Howells7d12e782006-10-05 14:55:46 +01001295 * Function via_ircc_interrupt (irq, dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 *
1297 * An interrupt from the chip has arrived. Time to do some work
1298 *
1299 */
Jeff Garzik28fc1f52007-10-29 05:46:16 -04001300static irqreturn_t via_ircc_interrupt(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Jeff Garzik28fc1f52007-10-29 05:46:16 -04001302 struct net_device *dev = dev_id;
Wang Chen4cf16532008-11-12 23:38:14 -08001303 struct via_ircc_cb *self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 int iobase;
1305 u8 iHostIntType, iRxIntType, iTxIntType;
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 iobase = self->io.fir_base;
1308 spin_lock(&self->lock);
1309 iHostIntType = GetHostStatus(iobase);
1310
1311 IRDA_DEBUG(4, "%s(): iHostIntType %02x: %s %s %s %02x\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001312 __func__, iHostIntType,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 (iHostIntType & 0x40) ? "Timer" : "",
1314 (iHostIntType & 0x20) ? "Tx" : "",
1315 (iHostIntType & 0x10) ? "Rx" : "",
1316 (iHostIntType & 0x0e) >> 1);
1317
1318 if ((iHostIntType & 0x40) != 0) { //Timer Event
1319 self->EventFlag.TimeOut++;
1320 ClearTimerInt(iobase, 1);
1321 if (self->io.direction == IO_XMIT) {
1322 via_ircc_dma_xmit(self, iobase);
1323 }
1324 if (self->io.direction == IO_RECV) {
1325 /*
1326 * frame ready hold too long, must reset.
1327 */
1328 if (self->RxDataReady > 30) {
1329 hwreset(self);
1330 if (irda_device_txqueue_empty(self->netdev)) {
1331 via_ircc_dma_receive(self);
1332 }
1333 } else { // call this to upload frame.
1334 RxTimerHandler(self, iobase);
1335 }
1336 } //RECV
1337 } //Timer Event
1338 if ((iHostIntType & 0x20) != 0) { //Tx Event
1339 iTxIntType = GetTXStatus(iobase);
1340
1341 IRDA_DEBUG(4, "%s(): iTxIntType %02x: %s %s %s %s\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001342 __func__, iTxIntType,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 (iTxIntType & 0x08) ? "FIFO underr." : "",
1344 (iTxIntType & 0x04) ? "EOM" : "",
1345 (iTxIntType & 0x02) ? "FIFO ready" : "",
1346 (iTxIntType & 0x01) ? "Early EOM" : "");
1347
1348 if (iTxIntType & 0x4) {
1349 self->EventFlag.EOMessage++; // read and will auto clean
1350 if (via_ircc_dma_xmit_complete(self)) {
1351 if (irda_device_txqueue_empty
1352 (self->netdev)) {
1353 via_ircc_dma_receive(self);
1354 }
1355 } else {
1356 self->EventFlag.Unknown++;
1357 }
1358 } //EOP
1359 } //Tx Event
1360 //----------------------------------------
1361 if ((iHostIntType & 0x10) != 0) { //Rx Event
1362 /* Check if DMA has finished */
1363 iRxIntType = GetRXStatus(iobase);
1364
1365 IRDA_DEBUG(4, "%s(): iRxIntType %02x: %s %s %s %s %s %s %s\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001366 __func__, iRxIntType,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 (iRxIntType & 0x80) ? "PHY err." : "",
1368 (iRxIntType & 0x40) ? "CRC err" : "",
1369 (iRxIntType & 0x20) ? "FIFO overr." : "",
1370 (iRxIntType & 0x10) ? "EOF" : "",
1371 (iRxIntType & 0x08) ? "RxData" : "",
1372 (iRxIntType & 0x02) ? "RxMaxLen" : "",
1373 (iRxIntType & 0x01) ? "SIR bad" : "");
1374 if (!iRxIntType)
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001375 IRDA_DEBUG(3, "%s(): RxIRQ =0\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 if (iRxIntType & 0x10) {
1378 if (via_ircc_dma_receive_complete(self, iobase)) {
1379//F01 if(!(IsFIROn(iobase))) via_ircc_dma_receive(self);
1380 via_ircc_dma_receive(self);
1381 }
1382 } // No ERR
1383 else { //ERR
1384 IRDA_DEBUG(4, "%s(): RxIRQ ERR:iRxIntType=%x,HostIntType=%x,CurCount=%x,RxLastCount=%x_____\n",
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001385 __func__, iRxIntType, iHostIntType,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 RxCurCount(iobase, self),
1387 self->RxLastCount);
1388
1389 if (iRxIntType & 0x20) { //FIFO OverRun ERR
1390 ResetChip(iobase, 0);
1391 ResetChip(iobase, 1);
1392 } else { //PHY,CRC ERR
1393
1394 if (iRxIntType != 0x08)
1395 hwreset(self); //F01
1396 }
1397 via_ircc_dma_receive(self);
1398 } //ERR
1399
1400 } //Rx Event
1401 spin_unlock(&self->lock);
1402 return IRQ_RETVAL(iHostIntType);
1403}
1404
1405static void hwreset(struct via_ircc_cb *self)
1406{
1407 int iobase;
1408 iobase = self->io.fir_base;
1409
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001410 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 ResetChip(iobase, 5);
1413 EnableDMA(iobase, OFF);
1414 EnableTX(iobase, OFF);
1415 EnableRX(iobase, OFF);
1416 EnRXDMA(iobase, OFF);
1417 EnTXDMA(iobase, OFF);
1418 RXStart(iobase, OFF);
1419 TXStart(iobase, OFF);
1420 InitCard(iobase);
1421 CommonInit(iobase);
1422 SIRFilter(iobase, ON);
1423 SetSIR(iobase, ON);
1424 CRC16(iobase, ON);
1425 EnTXCRC(iobase, 0);
1426 WriteReg(iobase, I_ST_CT_0, 0x00);
1427 SetBaudRate(iobase, 9600);
1428 SetPulseWidth(iobase, 12);
1429 SetSendPreambleCount(iobase, 0);
1430 WriteReg(iobase, I_ST_CT_0, 0x80);
1431
1432 /* Restore speed. */
1433 via_ircc_change_speed(self, self->io.speed);
1434
1435 self->st_fifo.len = 0;
1436}
1437
1438/*
1439 * Function via_ircc_is_receiving (self)
1440 *
1441 * Return TRUE is we are currently receiving a frame
1442 *
1443 */
1444static int via_ircc_is_receiving(struct via_ircc_cb *self)
1445{
1446 int status = FALSE;
1447 int iobase;
1448
1449 IRDA_ASSERT(self != NULL, return FALSE;);
1450
1451 iobase = self->io.fir_base;
1452 if (CkRxRecv(iobase, self))
1453 status = TRUE;
1454
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001455 IRDA_DEBUG(2, "%s(): status=%x....\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 return status;
1458}
1459
1460
1461/*
1462 * Function via_ircc_net_open (dev)
1463 *
1464 * Start the device
1465 *
1466 */
1467static int via_ircc_net_open(struct net_device *dev)
1468{
1469 struct via_ircc_cb *self;
1470 int iobase;
1471 char hwname[32];
1472
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001473 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 IRDA_ASSERT(dev != NULL, return -1;);
Wang Chen4cf16532008-11-12 23:38:14 -08001476 self = netdev_priv(dev);
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001477 dev->stats.rx_packets = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 IRDA_ASSERT(self != NULL, return 0;);
1479 iobase = self->io.fir_base;
1480 if (request_irq(self->io.irq, via_ircc_interrupt, 0, dev->name, dev)) {
1481 IRDA_WARNING("%s, unable to allocate irq=%d\n", driver_name,
1482 self->io.irq);
1483 return -EAGAIN;
1484 }
1485 /*
1486 * Always allocate the DMA channel after the IRQ, and clean up on
1487 * failure.
1488 */
1489 if (request_dma(self->io.dma, dev->name)) {
1490 IRDA_WARNING("%s, unable to allocate dma=%d\n", driver_name,
1491 self->io.dma);
Julia Lawalla997cbb2012-03-11 11:49:02 +00001492 free_irq(self->io.irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return -EAGAIN;
1494 }
1495 if (self->io.dma2 != self->io.dma) {
1496 if (request_dma(self->io.dma2, dev->name)) {
1497 IRDA_WARNING("%s, unable to allocate dma2=%d\n",
1498 driver_name, self->io.dma2);
Julia Lawalla997cbb2012-03-11 11:49:02 +00001499 free_irq(self->io.irq, dev);
Wang Chen568b4932008-07-08 03:06:46 -07001500 free_dma(self->io.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return -EAGAIN;
1502 }
1503 }
1504
1505
1506 /* turn on interrupts */
1507 EnAllInt(iobase, ON);
1508 EnInternalLoop(iobase, OFF);
1509 EnExternalLoop(iobase, OFF);
1510
1511 /* */
1512 via_ircc_dma_receive(self);
1513
1514 /* Ready to play! */
1515 netif_start_queue(dev);
1516
1517 /*
1518 * Open new IrLAP layer instance, now that everything should be
1519 * initialized properly
1520 */
1521 sprintf(hwname, "VIA @ 0x%x", iobase);
1522 self->irlap = irlap_open(dev, &self->qos, hwname);
1523
1524 self->RxLastCount = 0;
1525
1526 return 0;
1527}
1528
1529/*
1530 * Function via_ircc_net_close (dev)
1531 *
1532 * Stop the device
1533 *
1534 */
1535static int via_ircc_net_close(struct net_device *dev)
1536{
1537 struct via_ircc_cb *self;
1538 int iobase;
1539
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001540 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 IRDA_ASSERT(dev != NULL, return -1;);
Wang Chen4cf16532008-11-12 23:38:14 -08001543 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 IRDA_ASSERT(self != NULL, return 0;);
1545
1546 /* Stop device */
1547 netif_stop_queue(dev);
1548 /* Stop and remove instance of IrLAP */
1549 if (self->irlap)
1550 irlap_close(self->irlap);
1551 self->irlap = NULL;
1552 iobase = self->io.fir_base;
1553 EnTXDMA(iobase, OFF);
1554 EnRXDMA(iobase, OFF);
1555 DisableDmaChannel(self->io.dma);
1556
1557 /* Disable interrupts */
1558 EnAllInt(iobase, OFF);
1559 free_irq(self->io.irq, dev);
1560 free_dma(self->io.dma);
Wang Chen568b4932008-07-08 03:06:46 -07001561 if (self->io.dma2 != self->io.dma)
1562 free_dma(self->io.dma2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 return 0;
1565}
1566
1567/*
1568 * Function via_ircc_net_ioctl (dev, rq, cmd)
1569 *
1570 * Process IOCTL commands for this device
1571 *
1572 */
1573static int via_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq,
1574 int cmd)
1575{
1576 struct if_irda_req *irq = (struct if_irda_req *) rq;
1577 struct via_ircc_cb *self;
1578 unsigned long flags;
1579 int ret = 0;
1580
1581 IRDA_ASSERT(dev != NULL, return -1;);
Wang Chen4cf16532008-11-12 23:38:14 -08001582 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 IRDA_ASSERT(self != NULL, return -1;);
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001584 IRDA_DEBUG(1, "%s(), %s, (cmd=0x%X)\n", __func__, dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 cmd);
1586 /* Disable interrupts & save flags */
1587 spin_lock_irqsave(&self->lock, flags);
1588 switch (cmd) {
1589 case SIOCSBANDWIDTH: /* Set bandwidth */
1590 if (!capable(CAP_NET_ADMIN)) {
1591 ret = -EPERM;
1592 goto out;
1593 }
1594 via_ircc_change_speed(self, irq->ifr_baudrate);
1595 break;
1596 case SIOCSMEDIABUSY: /* Set media busy */
1597 if (!capable(CAP_NET_ADMIN)) {
1598 ret = -EPERM;
1599 goto out;
1600 }
1601 irda_device_set_media_busy(self->netdev, TRUE);
1602 break;
1603 case SIOCGRECEIVING: /* Check if we are receiving right now */
1604 irq->ifr_receiving = via_ircc_is_receiving(self);
1605 break;
1606 default:
1607 ret = -EOPNOTSUPP;
1608 }
1609 out:
1610 spin_unlock_irqrestore(&self->lock, flags);
1611 return ret;
1612}
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614MODULE_AUTHOR("VIA Technologies,inc");
1615MODULE_DESCRIPTION("VIA IrDA Device Driver");
1616MODULE_LICENSE("GPL");
1617
1618module_init(via_ircc_init);
1619module_exit(via_ircc_cleanup);