blob: f6c916312577193cd32773cf20798f6509509770 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*****************************************************************************
2 *
3 * Filename: irda-usb.c
Samuel Ortiz137dc022006-04-05 22:39:14 -07004 * Version: 0.10
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Description: IrDA-USB Driver
6 * Status: Experimental
7 * Author: Dag Brattli <dag@brattli.net>
8 *
9 * Copyright (C) 2000, Roman Weissgaerber <weissg@vienna.at>
10 * Copyright (C) 2001, Dag Brattli <dag@brattli.net>
11 * Copyright (C) 2001, Jean Tourrilhes <jt@hpl.hp.com>
Samuel Ortiz137dc022006-04-05 22:39:14 -070012 * Copyright (C) 2004, SigmaTel, Inc. <irquality@sigmatel.com>
13 * Copyright (C) 2005, Milan Beno <beno@pobox.sk>
14 * Copyright (C) 2006, Nick Fedchik <nick@fedchik.org.ua>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 *
30 *****************************************************************************/
31
32/*
33 * IMPORTANT NOTE
34 * --------------
35 *
36 * As of kernel 2.5.20, this is the state of compliance and testing of
37 * this driver (irda-usb) with regards to the USB low level drivers...
38 *
39 * This driver has been tested SUCCESSFULLY with the following drivers :
40 * o usb-uhci-hcd (For Intel/Via USB controllers)
41 * o uhci-hcd (Alternate/JE driver for Intel/Via USB controllers)
42 * o ohci-hcd (For other USB controllers)
43 *
44 * This driver has NOT been tested with the following drivers :
45 * o ehci-hcd (USB 2.0 controllers)
46 *
47 * Note that all HCD drivers do URB_ZERO_PACKET and timeout properly,
48 * so we don't have to worry about that anymore.
49 * One common problem is the failure to set the address on the dongle,
50 * but this happens before the driver gets loaded...
51 *
52 * Jean II
53 */
54
55/*------------------------------------------------------------------*/
56
57#include <linux/module.h>
58#include <linux/moduleparam.h>
59#include <linux/kernel.h>
60#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/skbuff.h>
62#include <linux/netdevice.h>
63#include <linux/slab.h>
64#include <linux/rtnetlink.h>
65#include <linux/usb.h>
Samuel Ortiz137dc022006-04-05 22:39:14 -070066#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#include "irda-usb.h"
69
70/*------------------------------------------------------------------*/
71
72static int qos_mtt_bits = 0;
73
74/* These are the currently known IrDA USB dongles. Add new dongles here */
75static struct usb_device_id dongles[] = {
76 /* ACTiSYS Corp., ACT-IR2000U FIR-USB Adapter */
77 { USB_DEVICE(0x9c4, 0x011), .driver_info = IUC_SPEED_BUG | IUC_NO_WINDOW },
78 /* Look like ACTiSYS, Report : IBM Corp., IBM UltraPort IrDA */
79 { USB_DEVICE(0x4428, 0x012), .driver_info = IUC_SPEED_BUG | IUC_NO_WINDOW },
80 /* KC Technology Inc., KC-180 USB IrDA Device */
81 { USB_DEVICE(0x50f, 0x180), .driver_info = IUC_SPEED_BUG | IUC_NO_WINDOW },
82 /* Extended Systems, Inc., XTNDAccess IrDA USB (ESI-9685) */
83 { USB_DEVICE(0x8e9, 0x100), .driver_info = IUC_SPEED_BUG | IUC_NO_WINDOW },
Samuel Ortiz137dc022006-04-05 22:39:14 -070084 /* SigmaTel STIR4210/4220/4116 USB IrDA (VFIR) Bridge */
Nick Fedchik8ef80ae2006-06-11 20:56:02 -070085 { USB_DEVICE(0x66f, 0x4210), .driver_info = IUC_STIR421X | IUC_SPEED_BUG },
86 { USB_DEVICE(0x66f, 0x4220), .driver_info = IUC_STIR421X | IUC_SPEED_BUG },
87 { USB_DEVICE(0x66f, 0x4116), .driver_info = IUC_STIR421X | IUC_SPEED_BUG },
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
Samuel Ortiz137dc022006-04-05 22:39:14 -070089 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .bInterfaceClass = USB_CLASS_APP_SPEC,
91 .bInterfaceSubClass = USB_CLASS_IRDA,
92 .driver_info = IUC_DEFAULT, },
93 { }, /* The end */
94};
95
96/*
97 * Important note :
98 * Devices based on the SigmaTel chipset (0x66f, 0x4200) are not designed
99 * using the "USB-IrDA specification" (yes, there exist such a thing), and
100 * therefore not supported by this driver (don't add them above).
101 * There is a Linux driver, stir4200, that support those USB devices.
102 * Jean II
103 */
104
105MODULE_DEVICE_TABLE(usb, dongles);
106
107/*------------------------------------------------------------------*/
108
Samuel Ortiz137dc022006-04-05 22:39:14 -0700109static void irda_usb_init_qos(struct irda_usb_cb *self) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static struct irda_class_desc *irda_usb_find_class_desc(struct usb_interface *intf);
111static void irda_usb_disconnect(struct usb_interface *intf);
112static void irda_usb_change_speed_xbofs(struct irda_usb_cb *self);
Stephen Hemminger6518bbb2009-08-31 19:50:50 +0000113static netdev_tx_t irda_usb_hard_xmit(struct sk_buff *skb,
114 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static int irda_usb_open(struct irda_usb_cb *self);
116static void irda_usb_close(struct irda_usb_cb *self);
David Howells7d12e782006-10-05 14:55:46 +0100117static void speed_bulk_callback(struct urb *urb);
118static void write_bulk_callback(struct urb *urb);
119static void irda_usb_receive(struct urb *urb);
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800120static void irda_usb_rx_defer_expired(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int irda_usb_net_open(struct net_device *dev);
122static int irda_usb_net_close(struct net_device *dev);
123static int irda_usb_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
124static void irda_usb_net_timeout(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/************************ TRANSMIT ROUTINES ************************/
127/*
128 * Receive packets from the IrDA stack and send them on the USB pipe.
129 * Handle speed change, timeout and lot's of ugliness...
130 */
131
132/*------------------------------------------------------------------*/
133/*
134 * Function irda_usb_build_header(self, skb, header)
135 *
136 * Builds USB-IrDA outbound header
137 *
138 * When we send an IrDA frame over an USB pipe, we add to it a 1 byte
139 * header. This function create this header with the proper values.
140 *
141 * Important note : the USB-IrDA spec 1.0 say very clearly in chapter 5.4.2.2
142 * that the setting of the link speed and xbof number in this outbound header
143 * should be applied *AFTER* the frame has been sent.
144 * Unfortunately, some devices are not compliant with that... It seems that
145 * reading the spec is far too difficult...
146 * Jean II
147 */
148static void irda_usb_build_header(struct irda_usb_cb *self,
149 __u8 *header,
150 int force)
151{
Samuel Ortiz137dc022006-04-05 22:39:14 -0700152 /* Here we check if we have an STIR421x chip,
153 * and if either speed or xbofs (or both) needs
154 * to be changed.
155 */
Nick Fedchik8ef80ae2006-06-11 20:56:02 -0700156 if (self->capability & IUC_STIR421X &&
Samuel Ortiz137dc022006-04-05 22:39:14 -0700157 ((self->new_speed != -1) || (self->new_xbofs != -1))) {
158
159 /* With STIR421x, speed and xBOFs must be set at the same
160 * time, even if only one of them changes.
161 */
162 if (self->new_speed == -1)
163 self->new_speed = self->speed ;
164
165 if (self->new_xbofs == -1)
166 self->new_xbofs = self->xbofs ;
167 }
168
169 /* Set the link speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (self->new_speed != -1) {
171 /* Hum... Ugly hack :-(
172 * Some device are not compliant with the spec and change
173 * parameters *before* sending the frame. - Jean II
174 */
175 if ((self->capability & IUC_SPEED_BUG) &&
176 (!force) && (self->speed != -1)) {
177 /* No speed and xbofs change here
178 * (we'll do it later in the write callback) */
Joe Perches955a9d202014-11-11 14:44:57 -0800179 pr_debug("%s(), not changing speed yet\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 *header = 0;
181 return;
182 }
183
Joe Perches955a9d202014-11-11 14:44:57 -0800184 pr_debug("%s(), changing speed to %d\n",
185 __func__, self->new_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 self->speed = self->new_speed;
187 /* We will do ` self->new_speed = -1; ' in the completion
188 * handler just in case the current URB fail - Jean II */
189
190 switch (self->speed) {
191 case 2400:
192 *header = SPEED_2400;
193 break;
194 default:
195 case 9600:
196 *header = SPEED_9600;
197 break;
198 case 19200:
199 *header = SPEED_19200;
200 break;
201 case 38400:
202 *header = SPEED_38400;
203 break;
204 case 57600:
205 *header = SPEED_57600;
206 break;
207 case 115200:
208 *header = SPEED_115200;
209 break;
210 case 576000:
211 *header = SPEED_576000;
212 break;
213 case 1152000:
214 *header = SPEED_1152000;
215 break;
216 case 4000000:
217 *header = SPEED_4000000;
218 self->new_xbofs = 0;
219 break;
Samuel Ortiz137dc022006-04-05 22:39:14 -0700220 case 16000000:
221 *header = SPEED_16000000;
222 self->new_xbofs = 0;
223 break;
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 } else
226 /* No change */
227 *header = 0;
228
229 /* Set the negotiated additional XBOFS */
230 if (self->new_xbofs != -1) {
Joe Perches955a9d202014-11-11 14:44:57 -0800231 pr_debug("%s(), changing xbofs to %d\n",
232 __func__, self->new_xbofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 self->xbofs = self->new_xbofs;
234 /* We will do ` self->new_xbofs = -1; ' in the completion
235 * handler just in case the current URB fail - Jean II */
236
237 switch (self->xbofs) {
238 case 48:
239 *header |= 0x10;
240 break;
241 case 28:
242 case 24: /* USB spec 1.0 says 24 */
243 *header |= 0x20;
244 break;
245 default:
246 case 12:
247 *header |= 0x30;
248 break;
249 case 5: /* Bug in IrLAP spec? (should be 6) */
250 case 6:
251 *header |= 0x40;
252 break;
253 case 3:
254 *header |= 0x50;
255 break;
256 case 2:
257 *header |= 0x60;
258 break;
259 case 1:
260 *header |= 0x70;
261 break;
262 case 0:
263 *header |= 0x80;
264 break;
265 }
266 }
267}
268
Samuel Ortiz137dc022006-04-05 22:39:14 -0700269/*
270* calculate turnaround time for SigmaTel header
271*/
272static __u8 get_turnaround_time(struct sk_buff *skb)
273{
274 int turnaround_time = irda_get_mtt(skb);
275
276 if ( turnaround_time == 0 )
277 return 0;
278 else if ( turnaround_time <= 10 )
279 return 1;
280 else if ( turnaround_time <= 50 )
281 return 2;
282 else if ( turnaround_time <= 100 )
283 return 3;
284 else if ( turnaround_time <= 500 )
285 return 4;
286 else if ( turnaround_time <= 1000 )
287 return 5;
288 else if ( turnaround_time <= 5000 )
289 return 6;
290 else
291 return 7;
292}
293
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/*------------------------------------------------------------------*/
296/*
297 * Send a command to change the speed of the dongle
298 * Need to be called with spinlock on.
299 */
300static void irda_usb_change_speed_xbofs(struct irda_usb_cb *self)
301{
302 __u8 *frame;
303 struct urb *urb;
304 int ret;
305
Joe Perches955a9d202014-11-11 14:44:57 -0800306 pr_debug("%s(), speed=%d, xbofs=%d\n", __func__,
307 self->new_speed, self->new_xbofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /* Grab the speed URB */
310 urb = self->speed_urb;
311 if (urb->status != 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800312 net_warn_ratelimited("%s(), URB still in use!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return;
314 }
315
316 /* Allocate the fake frame */
317 frame = self->speed_buff;
318
319 /* Set the new speed and xbofs in this fake frame */
320 irda_usb_build_header(self, frame, 1);
321
Nick Fedchik8ef80ae2006-06-11 20:56:02 -0700322 if (self->capability & IUC_STIR421X) {
Samuel Ortiz137dc022006-04-05 22:39:14 -0700323 if (frame[0] == 0) return ; // do nothing if no change
324 frame[1] = 0; // other parameters don't change here
325 frame[2] = 0;
326 }
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /* Submit the 0 length IrDA frame to trigger new speed settings */
329 usb_fill_bulk_urb(urb, self->usbdev,
330 usb_sndbulkpipe(self->usbdev, self->bulk_out_ep),
331 frame, IRDA_USB_SPEED_MTU,
332 speed_bulk_callback, self);
Samuel Ortiz137dc022006-04-05 22:39:14 -0700333 urb->transfer_buffer_length = self->header_length;
Alan Sternb375a042005-07-29 16:11:07 -0400334 urb->transfer_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* Irq disabled -> GFP_ATOMIC */
337 if ((ret = usb_submit_urb(urb, GFP_ATOMIC))) {
Joe Perches6c910232014-11-11 13:37:30 -0800338 net_warn_ratelimited("%s(), failed Speed URB\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340}
341
342/*------------------------------------------------------------------*/
343/*
344 * Speed URB callback
345 * Now, we can only get called for the speed URB.
346 */
David Howells7d12e782006-10-05 14:55:46 +0100347static void speed_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 struct irda_usb_cb *self = urb->context;
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* We should always have a context */
352 IRDA_ASSERT(self != NULL, return;);
353 /* We should always be called for the speed URB */
354 IRDA_ASSERT(urb == self->speed_urb, return;);
355
356 /* Check for timeout and other USB nasties */
357 if (urb->status != 0) {
358 /* I get a lot of -ECONNABORTED = -103 here - Jean II */
Joe Perches955a9d202014-11-11 14:44:57 -0800359 pr_debug("%s(), URB complete status %d, transfer_flags 0x%04X\n",
360 __func__, urb->status, urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /* Don't do anything here, that might confuse the USB layer.
363 * Instead, we will wait for irda_usb_net_timeout(), the
364 * network layer watchdog, to fix the situation.
365 * Jean II */
366 /* A reset of the dongle might be welcomed here - Jean II */
367 return;
368 }
369
370 /* urb is now available */
371 //urb->status = 0; -> tested above
372
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300373 /* New speed and xbof is now committed in hardware */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 self->new_speed = -1;
375 self->new_xbofs = -1;
376
377 /* Allow the stack to send more packets */
378 netif_wake_queue(self->netdev);
379}
380
381/*------------------------------------------------------------------*/
382/*
383 * Send an IrDA frame to the USB dongle (for transmission)
384 */
Stephen Hemminger6518bbb2009-08-31 19:50:50 +0000385static netdev_tx_t irda_usb_hard_xmit(struct sk_buff *skb,
386 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Wang Chen4cf16532008-11-12 23:38:14 -0800388 struct irda_usb_cb *self = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct urb *urb = self->tx_urb;
390 unsigned long flags;
391 s32 speed;
392 s16 xbofs;
393 int res, mtt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Joe Perches955a9d202014-11-11 14:44:57 -0800395 pr_debug("%s() on %s\n", __func__, netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 netif_stop_queue(netdev);
398
399 /* Protect us from USB callbacks, net watchdog and else. */
400 spin_lock_irqsave(&self->lock, flags);
401
402 /* Check if the device is still there.
403 * We need to check self->present under the spinlock because
404 * of irda_usb_disconnect() is synchronous - Jean II */
405 if (!self->present) {
Joe Perches955a9d202014-11-11 14:44:57 -0800406 pr_debug("%s(), Device is gone...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 goto drop;
408 }
409
410 /* Check if we need to change the number of xbofs */
411 xbofs = irda_get_next_xbofs(skb);
412 if ((xbofs != self->xbofs) && (xbofs != -1)) {
413 self->new_xbofs = xbofs;
414 }
415
416 /* Check if we need to change the speed */
417 speed = irda_get_next_speed(skb);
418 if ((speed != self->speed) && (speed != -1)) {
419 /* Set the desired speed */
420 self->new_speed = speed;
421
422 /* Check for empty frame */
423 if (!skb->len) {
424 /* IrLAP send us an empty frame to make us change the
425 * speed. Changing speed with the USB adapter is in
426 * fact sending an empty frame to the adapter, so we
427 * could just let the present function do its job.
428 * However, we would wait for min turn time,
429 * do an extra memcpy and increment packet counters...
430 * Jean II */
431 irda_usb_change_speed_xbofs(self);
432 netdev->trans_start = jiffies;
433 /* Will netif_wake_queue() in callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 goto drop;
435 }
436 }
437
438 if (urb->status != 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800439 net_warn_ratelimited("%s(), URB still in use!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto drop;
441 }
442
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300443 skb_copy_from_linear_data(skb, self->tx_buff + self->header_length, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 /* Change setting for next frame */
Nick Fedchik8ef80ae2006-06-11 20:56:02 -0700446 if (self->capability & IUC_STIR421X) {
Samuel Ortiz137dc022006-04-05 22:39:14 -0700447 __u8 turnaround_time;
Samuel Ortiz3958fb32007-01-15 19:37:25 -0800448 __u8* frame = self->tx_buff;
Samuel Ortiz137dc022006-04-05 22:39:14 -0700449 turnaround_time = get_turnaround_time( skb );
Samuel Ortiz137dc022006-04-05 22:39:14 -0700450 irda_usb_build_header(self, frame, 0);
451 frame[2] = turnaround_time;
452 if ((skb->len != 0) &&
453 ((skb->len % 128) == 0) &&
454 ((skb->len % 512) != 0)) {
455 /* add extra byte for special SigmaTel feature */
456 frame[1] = 1;
457 skb_put(skb, 1);
458 } else {
459 frame[1] = 0;
460 }
461 } else {
Samuel Ortiz3958fb32007-01-15 19:37:25 -0800462 irda_usb_build_header(self, self->tx_buff, 0);
Samuel Ortiz137dc022006-04-05 22:39:14 -0700463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 /* FIXME: Make macro out of this one */
466 ((struct irda_skb_cb *)skb->cb)->context = self;
467
Samuel Ortiz3958fb32007-01-15 19:37:25 -0800468 usb_fill_bulk_urb(urb, self->usbdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 usb_sndbulkpipe(self->usbdev, self->bulk_out_ep),
Samuel Ortiz3958fb32007-01-15 19:37:25 -0800470 self->tx_buff, skb->len + self->header_length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 write_bulk_callback, skb);
Samuel Ortiz3958fb32007-01-15 19:37:25 -0800472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* This flag (URB_ZERO_PACKET) indicates that what we send is not
474 * a continuous stream of data but separate packets.
475 * In this case, the USB layer will insert an empty USB frame (TD)
476 * after each of our packets that is exact multiple of the frame size.
477 * This is how the dongle will detect the end of packet - Jean II */
Alan Sternb375a042005-07-29 16:11:07 -0400478 urb->transfer_flags = URB_ZERO_PACKET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* Generate min turn time. FIXME: can we do better than this? */
481 /* Trying to a turnaround time at this level is trying to measure
482 * processor clock cycle with a wrist-watch, approximate at best...
483 *
484 * What we know is the last time we received a frame over USB.
485 * Due to latency over USB that depend on the USB load, we don't
486 * know when this frame was received over IrDA (a few ms before ?)
487 * Then, same story for our outgoing frame...
488 *
489 * In theory, the USB dongle is supposed to handle the turnaround
490 * by itself (spec 1.0, chater 4, page 6). Who knows ??? That's
491 * why this code is enabled only for dongles that doesn't meet
492 * the spec.
493 * Jean II */
494 if (self->capability & IUC_NO_TURN) {
495 mtt = irda_get_mtt(skb);
496 if (mtt) {
497 int diff;
Chunyan Zhangca982782015-01-08 12:01:29 +0800498 diff = ktime_us_delta(ktime_get(), self->stamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499#ifdef IU_USB_MIN_RTT
500 /* Factor in USB delays -> Get rid of udelay() that
501 * would be lost in the noise - Jean II */
502 diff += IU_USB_MIN_RTT;
503#endif /* IU_USB_MIN_RTT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* Check if the mtt is larger than the time we have
506 * already used by all the protocol processing
507 */
508 if (mtt > diff) {
509 mtt -= diff;
510 if (mtt > 1000)
511 mdelay(mtt/1000);
512 else
513 udelay(mtt);
514 }
515 }
516 }
517
518 /* Ask USB to send the packet - Irq disabled -> GFP_ATOMIC */
519 if ((res = usb_submit_urb(urb, GFP_ATOMIC))) {
Joe Perches6c910232014-11-11 13:37:30 -0800520 net_warn_ratelimited("%s(), failed Tx URB\n", __func__);
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800521 netdev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Let USB recover : We will catch that in the watchdog */
523 /*netif_start_queue(netdev);*/
524 } else {
525 /* Increment packet stats */
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800526 netdev->stats.tx_packets++;
527 netdev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 netdev->trans_start = jiffies;
530 }
531 spin_unlock_irqrestore(&self->lock, flags);
532
Patrick McHardy6ed10652009-06-23 06:03:08 +0000533 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535drop:
536 /* Drop silently the skb and exit */
537 dev_kfree_skb(skb);
538 spin_unlock_irqrestore(&self->lock, flags);
Patrick McHardy4bd73ae2009-06-12 03:17:19 +0000539 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542/*------------------------------------------------------------------*/
543/*
544 * Note : this function will be called only for tx_urb...
545 */
David Howells7d12e782006-10-05 14:55:46 +0100546static void write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 unsigned long flags;
549 struct sk_buff *skb = urb->context;
550 struct irda_usb_cb *self = ((struct irda_skb_cb *) skb->cb)->context;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /* We should always have a context */
553 IRDA_ASSERT(self != NULL, return;);
554 /* We should always be called for the speed URB */
555 IRDA_ASSERT(urb == self->tx_urb, return;);
556
557 /* Free up the skb */
558 dev_kfree_skb_any(skb);
559 urb->context = NULL;
560
561 /* Check for timeout and other USB nasties */
562 if (urb->status != 0) {
563 /* I get a lot of -ECONNABORTED = -103 here - Jean II */
Joe Perches955a9d202014-11-11 14:44:57 -0800564 pr_debug("%s(), URB complete status %d, transfer_flags 0x%04X\n",
565 __func__, urb->status, urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /* Don't do anything here, that might confuse the USB layer,
568 * and we could go in recursion and blow the kernel stack...
569 * Instead, we will wait for irda_usb_net_timeout(), the
570 * network layer watchdog, to fix the situation.
571 * Jean II */
572 /* A reset of the dongle might be welcomed here - Jean II */
573 return;
574 }
575
576 /* urb is now available */
577 //urb->status = 0; -> tested above
578
579 /* Make sure we read self->present properly */
580 spin_lock_irqsave(&self->lock, flags);
581
582 /* If the network is closed, stop everything */
583 if ((!self->netopen) || (!self->present)) {
Joe Perches955a9d202014-11-11 14:44:57 -0800584 pr_debug("%s(), Network is gone...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 spin_unlock_irqrestore(&self->lock, flags);
586 return;
587 }
588
589 /* If changes to speed or xbofs is pending... */
590 if ((self->new_speed != -1) || (self->new_xbofs != -1)) {
591 if ((self->new_speed != self->speed) ||
592 (self->new_xbofs != self->xbofs)) {
593 /* We haven't changed speed yet (because of
594 * IUC_SPEED_BUG), so do it now - Jean II */
Joe Perches955a9d202014-11-11 14:44:57 -0800595 pr_debug("%s(), Changing speed now...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 irda_usb_change_speed_xbofs(self);
597 } else {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300598 /* New speed and xbof is now committed in hardware */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 self->new_speed = -1;
600 self->new_xbofs = -1;
601 /* Done, waiting for next packet */
602 netif_wake_queue(self->netdev);
603 }
604 } else {
605 /* Otherwise, allow the stack to send more packets */
606 netif_wake_queue(self->netdev);
607 }
608 spin_unlock_irqrestore(&self->lock, flags);
609}
610
611/*------------------------------------------------------------------*/
612/*
613 * Watchdog timer from the network layer.
614 * After a predetermined timeout, if we don't give confirmation that
615 * the packet has been sent (i.e. no call to netif_wake_queue()),
616 * the network layer will call this function.
617 * Note that URB that we submit have also a timeout. When the URB timeout
618 * expire, the normal URB callback is called (write_bulk_callback()).
619 */
620static void irda_usb_net_timeout(struct net_device *netdev)
621{
622 unsigned long flags;
Wang Chen4cf16532008-11-12 23:38:14 -0800623 struct irda_usb_cb *self = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct urb *urb;
625 int done = 0; /* If we have made any progress */
626
Joe Perches955a9d202014-11-11 14:44:57 -0800627 pr_debug("%s(), Network layer thinks we timed out!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 IRDA_ASSERT(self != NULL, return;);
629
630 /* Protect us from USB callbacks, net Tx and else. */
631 spin_lock_irqsave(&self->lock, flags);
632
633 /* self->present *MUST* be read under spinlock */
634 if (!self->present) {
Joe Perches6c910232014-11-11 13:37:30 -0800635 net_warn_ratelimited("%s(), device not present!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 netif_stop_queue(netdev);
637 spin_unlock_irqrestore(&self->lock, flags);
638 return;
639 }
640
641 /* Check speed URB */
642 urb = self->speed_urb;
643 if (urb->status != 0) {
Joe Perches955a9d202014-11-11 14:44:57 -0800644 pr_debug("%s: Speed change timed out, urb->status=%d, urb->transfer_flags=0x%04X\n",
645 netdev->name, urb->status, urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 switch (urb->status) {
648 case -EINPROGRESS:
649 usb_unlink_urb(urb);
650 /* Note : above will *NOT* call netif_wake_queue()
651 * in completion handler, we will come back here.
652 * Jean II */
653 done = 1;
654 break;
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700655 case -ECONNRESET:
656 case -ENOENT: /* urb unlinked by us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 default: /* ??? - Play safe */
658 urb->status = 0;
659 netif_wake_queue(self->netdev);
660 done = 1;
661 break;
662 }
663 }
664
665 /* Check Tx URB */
666 urb = self->tx_urb;
667 if (urb->status != 0) {
668 struct sk_buff *skb = urb->context;
669
Joe Perches955a9d202014-11-11 14:44:57 -0800670 pr_debug("%s: Tx timed out, urb->status=%d, urb->transfer_flags=0x%04X\n",
671 netdev->name, urb->status, urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 /* Increase error count */
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800674 netdev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676#ifdef IU_BUG_KICK_TIMEOUT
677 /* Can't be a bad idea to reset the speed ;-) - Jean II */
678 if(self->new_speed == -1)
679 self->new_speed = self->speed;
680 if(self->new_xbofs == -1)
681 self->new_xbofs = self->xbofs;
682 irda_usb_change_speed_xbofs(self);
683#endif /* IU_BUG_KICK_TIMEOUT */
684
685 switch (urb->status) {
686 case -EINPROGRESS:
687 usb_unlink_urb(urb);
688 /* Note : above will *NOT* call netif_wake_queue()
689 * in completion handler, because urb->status will
690 * be -ENOENT. We will fix that at the next watchdog,
691 * leaving more time to USB to recover...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * Jean II */
693 done = 1;
694 break;
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700695 case -ECONNRESET:
696 case -ENOENT: /* urb unlinked by us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 default: /* ??? - Play safe */
698 if(skb != NULL) {
699 dev_kfree_skb_any(skb);
700 urb->context = NULL;
701 }
702 urb->status = 0;
703 netif_wake_queue(self->netdev);
704 done = 1;
705 break;
706 }
707 }
708 spin_unlock_irqrestore(&self->lock, flags);
709
710 /* Maybe we need a reset */
711 /* Note : Some drivers seem to use a usb_set_interface() when they
712 * need to reset the hardware. Hum...
713 */
714
715 /* if(done == 0) */
716}
717
718/************************* RECEIVE ROUTINES *************************/
719/*
720 * Receive packets from the USB layer stack and pass them to the IrDA stack.
721 * Try to work around USB failures...
722 */
723
724/*
725 * Note :
726 * Some of you may have noticed that most dongle have an interrupt in pipe
727 * that we don't use. Here is the little secret...
728 * When we hang a Rx URB on the bulk in pipe, it generates some USB traffic
729 * in every USB frame. This is unnecessary overhead.
730 * The interrupt in pipe will generate an event every time a packet is
731 * received. Reading an interrupt pipe adds minimal overhead, but has some
732 * latency (~1ms).
733 * If we are connected (speed != 9600), we want to minimise latency, so
734 * we just always hang the Rx URB and ignore the interrupt.
735 * If we are not connected (speed == 9600), there is usually no Rx traffic,
736 * and we want to minimise the USB overhead. In this case we should wait
737 * on the interrupt pipe and hang the Rx URB only when an interrupt is
738 * received.
739 * Jean II
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800740 *
741 * Note : don't read the above as what we are currently doing, but as
742 * something we could do with KC dongle. Also don't forget that the
743 * interrupt pipe is not part of the original standard, so this would
744 * need to be optional...
745 * Jean II
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 */
747
748/*------------------------------------------------------------------*/
749/*
750 * Submit a Rx URB to the USB layer to handle reception of a frame
751 * Mostly called by the completion callback of the previous URB.
752 *
753 * Jean II
754 */
755static void irda_usb_submit(struct irda_usb_cb *self, struct sk_buff *skb, struct urb *urb)
756{
757 struct irda_skb_cb *cb;
758 int ret;
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* This should never happen */
761 IRDA_ASSERT(skb != NULL, return;);
762 IRDA_ASSERT(urb != NULL, return;);
763
764 /* Save ourselves in the skb */
765 cb = (struct irda_skb_cb *) skb->cb;
766 cb->context = self;
767
768 /* Reinitialize URB */
769 usb_fill_bulk_urb(urb, self->usbdev,
770 usb_rcvbulkpipe(self->usbdev, self->bulk_in_ep),
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800771 skb->data, IRDA_SKB_MAX_MTU,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 irda_usb_receive, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 urb->status = 0;
774
775 /* Can be called from irda_usb_receive (irq handler) -> GFP_ATOMIC */
776 ret = usb_submit_urb(urb, GFP_ATOMIC);
777 if (ret) {
778 /* If this ever happen, we are in deep s***.
779 * Basically, the Rx path will stop... */
Joe Perches6c910232014-11-11 13:37:30 -0800780 net_warn_ratelimited("%s(), Failed to submit Rx URB %d\n",
781 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783}
784
785/*------------------------------------------------------------------*/
786/*
787 * Function irda_usb_receive(urb)
788 *
789 * Called by the USB subsystem when a frame has been received
790 *
791 */
David Howells7d12e782006-10-05 14:55:46 +0100792static void irda_usb_receive(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 struct sk_buff *skb = (struct sk_buff *) urb->context;
795 struct irda_usb_cb *self;
796 struct irda_skb_cb *cb;
797 struct sk_buff *newskb;
798 struct sk_buff *dataskb;
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800799 struct urb *next_urb;
Eugene Teoda818172006-03-15 14:57:19 -0800800 unsigned int len, docopy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Joe Perches955a9d202014-11-11 14:44:57 -0800802 pr_debug("%s(), len=%d\n", __func__, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 /* Find ourselves */
805 cb = (struct irda_skb_cb *) skb->cb;
806 IRDA_ASSERT(cb != NULL, return;);
807 self = (struct irda_usb_cb *) cb->context;
808 IRDA_ASSERT(self != NULL, return;);
809
810 /* If the network is closed or the device gone, stop everything */
811 if ((!self->netopen) || (!self->present)) {
Joe Perches955a9d202014-11-11 14:44:57 -0800812 pr_debug("%s(), Network is gone!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /* Don't re-submit the URB : will stall the Rx path */
814 return;
815 }
816
817 /* Check the status */
818 if (urb->status != 0) {
819 switch (urb->status) {
820 case -EILSEQ:
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800821 self->netdev->stats.rx_crc_errors++;
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800822 /* Also precursor to a hot-unplug on UHCI. */
823 /* Fallthrough... */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700824 case -ECONNRESET:
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800825 /* Random error, if I remember correctly */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 /* uhci_cleanup_unlink() is going to kill the Rx
827 * URB just after we return. No problem, at this
828 * point the URB will be idle ;-) - Jean II */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700829 case -ESHUTDOWN:
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800830 /* That's usually a hot-unplug. Submit will fail... */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700831 case -ETIME:
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800832 /* Usually precursor to a hot-unplug on OHCI. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 default:
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800834 self->netdev->stats.rx_errors++;
Joe Perches955a9d202014-11-11 14:44:57 -0800835 pr_debug("%s(), RX status %d, transfer_flags 0x%04X\n",
836 __func__, urb->status, urb->transfer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 break;
838 }
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800839 /* If we received an error, we don't want to resubmit the
840 * Rx URB straight away but to give the USB layer a little
841 * bit of breathing room.
842 * We are in the USB thread context, therefore there is a
843 * danger of recursion (new URB we submit fails, we come
844 * back here).
845 * With recent USB stack (2.6.15+), I'm seeing that on
846 * hot unplug of the dongle...
847 * Lowest effective timer is 10ms...
848 * Jean II */
Julia Lawall6cc93182009-11-18 08:22:05 +0000849 self->rx_defer_timer.function = irda_usb_rx_defer_expired;
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800850 self->rx_defer_timer.data = (unsigned long) urb;
851 mod_timer(&self->rx_defer_timer, jiffies + (10 * HZ / 1000));
852 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
855 /* Check for empty frames */
Samuel Ortiz137dc022006-04-05 22:39:14 -0700856 if (urb->actual_length <= self->header_length) {
Joe Perches6c910232014-11-11 13:37:30 -0800857 net_warn_ratelimited("%s(), empty frame!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto done;
859 }
860
861 /*
862 * Remember the time we received this frame, so we can
863 * reduce the min turn time a bit since we will know
864 * how much time we have used for protocol processing
865 */
Chunyan Zhangca982782015-01-08 12:01:29 +0800866 self->stamp = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 /* Check if we need to copy the data to a new skb or not.
869 * For most frames, we use ZeroCopy and pass the already
870 * allocated skb up the stack.
871 * If the frame is small, it is more efficient to copy it
872 * to save memory (copy will be fast anyway - that's
873 * called Rx-copy-break). Jean II */
874 docopy = (urb->actual_length < IRDA_RX_COPY_THRESHOLD);
875
876 /* Allocate a new skb */
Nick Fedchik8ef80ae2006-06-11 20:56:02 -0700877 if (self->capability & IUC_STIR421X)
878 newskb = dev_alloc_skb(docopy ? urb->actual_length :
879 IRDA_SKB_MAX_MTU +
880 USB_IRDA_STIR421X_HEADER);
Samuel Ortiz137dc022006-04-05 22:39:14 -0700881 else
Nick Fedchik8ef80ae2006-06-11 20:56:02 -0700882 newskb = dev_alloc_skb(docopy ? urb->actual_length :
883 IRDA_SKB_MAX_MTU);
Samuel Ortiz137dc022006-04-05 22:39:14 -0700884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (!newskb) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800886 self->netdev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* We could deliver the current skb, but this would stall
888 * the Rx path. Better drop the packet... Jean II */
889 goto done;
890 }
891
892 /* Make sure IP header get aligned (IrDA header is 5 bytes) */
893 /* But IrDA-USB header is 1 byte. Jean II */
894 //skb_reserve(newskb, USB_IRDA_HEADER - 1);
895
896 if(docopy) {
897 /* Copy packet, so we can recycle the original */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300898 skb_copy_from_linear_data(skb, newskb->data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* Deliver this new skb */
900 dataskb = newskb;
901 /* And hook the old skb to the URB
902 * Note : we don't need to "clean up" the old skb,
903 * as we never touched it. Jean II */
904 } else {
905 /* We are using ZeroCopy. Deliver old skb */
906 dataskb = skb;
907 /* And hook the new skb to the URB */
908 skb = newskb;
909 }
910
911 /* Set proper length on skb & remove USB-IrDA header */
912 skb_put(dataskb, urb->actual_length);
Samuel Ortiz137dc022006-04-05 22:39:14 -0700913 skb_pull(dataskb, self->header_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 /* Ask the networking layer to queue the packet for the IrDA stack */
916 dataskb->dev = self->netdev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700917 skb_reset_mac_header(dataskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 dataskb->protocol = htons(ETH_P_IRDA);
Eugene Teoda818172006-03-15 14:57:19 -0800919 len = dataskb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 netif_rx(dataskb);
921
922 /* Keep stats up to date */
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800923 self->netdev->stats.rx_bytes += len;
924 self->netdev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926done:
927 /* Note : at this point, the URB we've just received (urb)
928 * is still referenced by the USB layer. For example, if we
929 * have received a -ECONNRESET, uhci_cleanup_unlink() will
930 * continue to process it (in fact, cleaning it up).
931 * If we were to submit this URB, disaster would ensue.
932 * Therefore, we submit our idle URB, and put this URB in our
933 * idle slot....
934 * Jean II */
935 /* Note : with this scheme, we could submit the idle URB before
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800936 * processing the Rx URB. I don't think it would buy us anything as
937 * we are running in the USB thread context. Jean II */
938 next_urb = self->idle_rx_urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* Recycle Rx URB : Now, the idle URB is the present one */
941 urb->context = NULL;
942 self->idle_rx_urb = urb;
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800943
944 /* Submit the idle URB to replace the URB we've just received.
945 * Do it last to avoid race conditions... Jean II */
946 irda_usb_submit(self, skb, next_urb);
947}
948
949/*------------------------------------------------------------------*/
950/*
951 * In case of errors, we want the USB layer to have time to recover.
952 * Now, it is time to resubmit ouur Rx URB...
953 */
954static void irda_usb_rx_defer_expired(unsigned long data)
955{
956 struct urb *urb = (struct urb *) data;
957 struct sk_buff *skb = (struct sk_buff *) urb->context;
958 struct irda_usb_cb *self;
959 struct irda_skb_cb *cb;
960 struct urb *next_urb;
961
Jean Tourrilhes669d32a22006-02-19 22:28:25 -0800962 /* Find ourselves */
963 cb = (struct irda_skb_cb *) skb->cb;
964 IRDA_ASSERT(cb != NULL, return;);
965 self = (struct irda_usb_cb *) cb->context;
966 IRDA_ASSERT(self != NULL, return;);
967
968 /* Same stuff as when Rx is done, see above... */
969 next_urb = self->idle_rx_urb;
970 urb->context = NULL;
971 self->idle_rx_urb = urb;
972 irda_usb_submit(self, skb, next_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
975/*------------------------------------------------------------------*/
976/*
977 * Callbak from IrDA layer. IrDA wants to know if we have
978 * started receiving anything.
979 */
980static int irda_usb_is_receiving(struct irda_usb_cb *self)
981{
982 /* Note : because of the way UHCI works, it's almost impossible
983 * to get this info. The Controller DMA directly to memory and
984 * signal only when the whole frame is finished. To know if the
985 * first TD of the URB has been filled or not seems hard work...
986 *
987 * The other solution would be to use the "receiving" command
988 * on the default decriptor with a usb_control_msg(), but that
989 * would add USB traffic and would return result only in the
990 * next USB frame (~1ms).
991 *
992 * I've been told that current dongles send status info on their
993 * interrupt endpoint, and that's what the Windows driver uses
994 * to know this info. Unfortunately, this is not yet in the spec...
995 *
996 * Jean II
997 */
998
999 return 0; /* For now */
1000}
1001
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001002#define STIR421X_PATCH_PRODUCT_VER "Product Version: "
1003#define STIR421X_PATCH_STMP_TAG "STMP"
1004#define STIR421X_PATCH_CODE_OFFSET 512 /* patch image starts before here */
1005/* marks end of patch file header (PC DOS text file EOF character) */
1006#define STIR421X_PATCH_END_OF_HDR_TAG 0x1A
1007#define STIR421X_PATCH_BLOCK_SIZE 1023
Samuel Ortiz137dc022006-04-05 22:39:14 -07001008
1009/*
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001010 * Function stir421x_fwupload (struct irda_usb_cb *self,
1011 * unsigned char *patch,
1012 * const unsigned int patch_len)
1013 *
1014 * Upload firmware code to SigmaTel 421X IRDA-USB dongle
Samuel Ortiz137dc022006-04-05 22:39:14 -07001015 */
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001016static int stir421x_fw_upload(struct irda_usb_cb *self,
David Woodhouseafd636e2008-05-24 00:10:26 +01001017 const unsigned char *patch,
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001018 const unsigned int patch_len)
Samuel Ortiz137dc022006-04-05 22:39:14 -07001019{
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001020 int ret = -ENOMEM;
1021 int actual_len = 0;
1022 unsigned int i;
1023 unsigned int block_size = 0;
1024 unsigned char *patch_block;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001025
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001026 patch_block = kzalloc(STIR421X_PATCH_BLOCK_SIZE, GFP_KERNEL);
1027 if (patch_block == NULL)
1028 return -ENOMEM;
1029
1030 /* break up patch into 1023-byte sections */
1031 for (i = 0; i < patch_len; i += block_size) {
1032 block_size = patch_len - i;
1033
1034 if (block_size > STIR421X_PATCH_BLOCK_SIZE)
1035 block_size = STIR421X_PATCH_BLOCK_SIZE;
1036
1037 /* upload the patch section */
1038 memcpy(patch_block, patch + i, block_size);
1039
1040 ret = usb_bulk_msg(self->usbdev,
1041 usb_sndbulkpipe(self->usbdev,
1042 self->bulk_out_ep),
1043 patch_block, block_size,
1044 &actual_len, msecs_to_jiffies(500));
Joe Perches955a9d202014-11-11 14:44:57 -08001045 pr_debug("%s(): Bulk send %u bytes, ret=%d\n",
1046 __func__, actual_len, ret);
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001047
1048 if (ret < 0)
1049 break;
Nigel Williams2e360d812007-03-16 20:28:36 -07001050
1051 mdelay(10);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001052 }
1053
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001054 kfree(patch_block);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001055
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001056 return ret;
1057 }
Samuel Ortiz137dc022006-04-05 22:39:14 -07001058
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001059/*
1060 * Function stir421x_patch_device(struct irda_usb_cb *self)
1061 *
1062 * Get a firmware code from userspase using hotplug request_firmware() call
1063 */
Samuel Ortiz137dc022006-04-05 22:39:14 -07001064static int stir421x_patch_device(struct irda_usb_cb *self)
1065{
David Woodhouseafd636e2008-05-24 00:10:26 +01001066 unsigned int i;
1067 int ret;
Jos-Vicente Gilabert2950e952009-01-14 20:55:00 -08001068 char stir421x_fw_name[12];
David Woodhouseafd636e2008-05-24 00:10:26 +01001069 const struct firmware *fw;
1070 const unsigned char *fw_version_ptr; /* pointer to version string */
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001071 unsigned long fw_version = 0;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001072
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001073 /*
1074 * Known firmware patch file names for STIR421x dongles
1075 * are "42101001.sb" or "42101002.sb"
1076 */
1077 sprintf(stir421x_fw_name, "4210%4X.sb",
1078 self->usbdev->descriptor.bcdDevice);
1079 ret = request_firmware(&fw, stir421x_fw_name, &self->usbdev->dev);
1080 if (ret < 0)
1081 return ret;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001082
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001083 /* We get a patch from userspace */
Joe Perches6c910232014-11-11 13:37:30 -08001084 net_info_ratelimited("%s(): Received firmware %s (%zu bytes)\n",
1085 __func__, stir421x_fw_name, fw->size);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001086
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001087 ret = -EINVAL;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001088
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001089 /* Get the bcd product version */
1090 if (!memcmp(fw->data, STIR421X_PATCH_PRODUCT_VER,
1091 sizeof(STIR421X_PATCH_PRODUCT_VER) - 1)) {
1092 fw_version_ptr = fw->data +
1093 sizeof(STIR421X_PATCH_PRODUCT_VER) - 1;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001094
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001095 /* Let's check if the product version is dotted */
1096 if (fw_version_ptr[3] == '.' &&
1097 fw_version_ptr[7] == '.') {
1098 unsigned long major, minor, build;
1099 major = simple_strtoul(fw_version_ptr, NULL, 10);
1100 minor = simple_strtoul(fw_version_ptr + 4, NULL, 10);
1101 build = simple_strtoul(fw_version_ptr + 8, NULL, 10);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001102
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001103 fw_version = (major << 12)
1104 + (minor << 8)
1105 + ((build / 10) << 4)
1106 + (build % 10);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001107
Joe Perches955a9d202014-11-11 14:44:57 -08001108 pr_debug("%s(): Firmware Product version %ld\n",
1109 __func__, fw_version);
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001110 }
1111 }
Samuel Ortiz137dc022006-04-05 22:39:14 -07001112
Al Virof6c2fb52008-05-21 06:32:11 +01001113 if (self->usbdev->descriptor.bcdDevice == cpu_to_le16(fw_version)) {
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001114 /*
1115 * If we're here, we've found a correct patch
1116 * The actual image starts after the "STMP" keyword
1117 * so forward to the firmware header tag
1118 */
Roel Kluin3b06dbb2010-10-05 01:30:02 +02001119 for (i = 0; i < fw->size && fw->data[i] !=
1120 STIR421X_PATCH_END_OF_HDR_TAG; i++) ;
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001121 /* here we check for the out of buffer case */
Roel Kluin3b06dbb2010-10-05 01:30:02 +02001122 if (i < STIR421X_PATCH_CODE_OFFSET && i < fw->size &&
1123 STIR421X_PATCH_END_OF_HDR_TAG == fw->data[i]) {
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001124 if (!memcmp(fw->data + i + 1, STIR421X_PATCH_STMP_TAG,
1125 sizeof(STIR421X_PATCH_STMP_TAG) - 1)) {
Samuel Ortiz137dc022006-04-05 22:39:14 -07001126
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001127 /* We can upload the patch to the target */
1128 i += sizeof(STIR421X_PATCH_STMP_TAG);
1129 ret = stir421x_fw_upload(self, &fw->data[i],
1130 fw->size - i);
1131 }
1132 }
1133 }
Samuel Ortiz137dc022006-04-05 22:39:14 -07001134
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001135 release_firmware(fw);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001136
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001137 return ret;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001138}
1139
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141/********************** IRDA DEVICE CALLBACKS **********************/
1142/*
1143 * Main calls from the IrDA/Network subsystem.
1144 * Mostly registering a new irda-usb device and removing it....
1145 * We only deal with the IrDA side of the business, the USB side will
1146 * be dealt with below...
1147 */
1148
1149
1150/*------------------------------------------------------------------*/
1151/*
1152 * Function irda_usb_net_open (dev)
1153 *
1154 * Network device is taken up. Usually this is done by "ifconfig irda0 up"
1155 *
1156 * Note : don't mess with self->netopen - Jean II
1157 */
1158static int irda_usb_net_open(struct net_device *netdev)
1159{
1160 struct irda_usb_cb *self;
Oliver Neukum497ba7f2007-12-16 14:07:36 -08001161 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 char hwname[16];
1163 int i;
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 IRDA_ASSERT(netdev != NULL, return -1;);
Wang Chen4cf16532008-11-12 23:38:14 -08001166 self = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 IRDA_ASSERT(self != NULL, return -1;);
1168
Oliver Neukum497ba7f2007-12-16 14:07:36 -08001169 spin_lock_irqsave(&self->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /* Can only open the device if it's there */
1171 if(!self->present) {
Oliver Neukum497ba7f2007-12-16 14:07:36 -08001172 spin_unlock_irqrestore(&self->lock, flags);
Joe Perches6c910232014-11-11 13:37:30 -08001173 net_warn_ratelimited("%s(), device not present!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return -1;
1175 }
1176
Samuel Ortiz137dc022006-04-05 22:39:14 -07001177 if(self->needspatch) {
Oliver Neukum497ba7f2007-12-16 14:07:36 -08001178 spin_unlock_irqrestore(&self->lock, flags);
Joe Perches6c910232014-11-11 13:37:30 -08001179 net_warn_ratelimited("%s(), device needs patch\n", __func__);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001180 return -EIO ;
1181 }
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /* Initialise default speed and xbofs value
1184 * (IrLAP will change that soon) */
1185 self->speed = -1;
1186 self->xbofs = -1;
1187 self->new_speed = -1;
1188 self->new_xbofs = -1;
1189
1190 /* To do *before* submitting Rx urbs and starting net Tx queue
1191 * Jean II */
1192 self->netopen = 1;
Oliver Neukum497ba7f2007-12-16 14:07:36 -08001193 spin_unlock_irqrestore(&self->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 /*
1196 * Now that everything should be initialized properly,
1197 * Open new IrLAP layer instance to take care of us...
1198 * Note : will send immediately a speed change...
1199 */
1200 sprintf(hwname, "usb#%d", self->usbdev->devnum);
1201 self->irlap = irlap_open(netdev, &self->qos, hwname);
1202 IRDA_ASSERT(self->irlap != NULL, return -1;);
1203
1204 /* Allow IrLAP to send data to us */
1205 netif_start_queue(netdev);
1206
1207 /* We submit all the Rx URB except for one that we keep idle.
1208 * Need to be initialised before submitting other USBs, because
1209 * in some cases as soon as we submit the URBs the USB layer
1210 * will trigger a dummy receive - Jean II */
1211 self->idle_rx_urb = self->rx_urb[IU_MAX_ACTIVE_RX_URBS];
1212 self->idle_rx_urb->context = NULL;
1213
1214 /* Now that we can pass data to IrLAP, allow the USB layer
1215 * to send us some data... */
1216 for (i = 0; i < IU_MAX_ACTIVE_RX_URBS; i++) {
1217 struct sk_buff *skb = dev_alloc_skb(IRDA_SKB_MAX_MTU);
1218 if (!skb) {
1219 /* If this ever happen, we are in deep s***.
1220 * Basically, we can't start the Rx path... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return -1;
1222 }
1223 //skb_reserve(newskb, USB_IRDA_HEADER - 1);
1224 irda_usb_submit(self, skb, self->rx_urb[i]);
1225 }
1226
1227 /* Ready to play !!! */
1228 return 0;
1229}
1230
1231/*------------------------------------------------------------------*/
1232/*
1233 * Function irda_usb_net_close (self)
1234 *
1235 * Network device is taken down. Usually this is done by
1236 * "ifconfig irda0 down"
1237 */
1238static int irda_usb_net_close(struct net_device *netdev)
1239{
1240 struct irda_usb_cb *self;
1241 int i;
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 IRDA_ASSERT(netdev != NULL, return -1;);
Wang Chen4cf16532008-11-12 23:38:14 -08001244 self = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 IRDA_ASSERT(self != NULL, return -1;);
1246
1247 /* Clear this flag *before* unlinking the urbs and *before*
1248 * stopping the network Tx queue - Jean II */
1249 self->netopen = 0;
1250
1251 /* Stop network Tx queue */
1252 netif_stop_queue(netdev);
1253
Jean Tourrilhes669d32a22006-02-19 22:28:25 -08001254 /* Kill defered Rx URB */
1255 del_timer(&self->rx_defer_timer);
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /* Deallocate all the Rx path buffers (URBs and skb) */
Samuel Ortiz137dc022006-04-05 22:39:14 -07001258 for (i = 0; i < self->max_rx_urb; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct urb *urb = self->rx_urb[i];
1260 struct sk_buff *skb = (struct sk_buff *) urb->context;
1261 /* Cancel the receive command */
1262 usb_kill_urb(urb);
1263 /* The skb is ours, free it */
1264 if(skb) {
1265 dev_kfree_skb(skb);
1266 urb->context = NULL;
1267 }
1268 }
1269 /* Cancel Tx and speed URB - need to be synchronous to avoid races */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 usb_kill_urb(self->tx_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 usb_kill_urb(self->speed_urb);
1272
1273 /* Stop and remove instance of IrLAP */
1274 if (self->irlap)
1275 irlap_close(self->irlap);
1276 self->irlap = NULL;
1277
1278 return 0;
1279}
1280
1281/*------------------------------------------------------------------*/
1282/*
1283 * IOCTLs : Extra out-of-band network commands...
1284 */
1285static int irda_usb_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1286{
1287 unsigned long flags;
1288 struct if_irda_req *irq = (struct if_irda_req *) rq;
1289 struct irda_usb_cb *self;
1290 int ret = 0;
1291
1292 IRDA_ASSERT(dev != NULL, return -1;);
Wang Chen4cf16532008-11-12 23:38:14 -08001293 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 IRDA_ASSERT(self != NULL, return -1;);
1295
Joe Perches955a9d202014-11-11 14:44:57 -08001296 pr_debug("%s(), %s, (cmd=0x%X)\n", __func__, dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 switch (cmd) {
1299 case SIOCSBANDWIDTH: /* Set bandwidth */
1300 if (!capable(CAP_NET_ADMIN))
1301 return -EPERM;
1302 /* Protect us from USB callbacks, net watchdog and else. */
1303 spin_lock_irqsave(&self->lock, flags);
1304 /* Check if the device is still there */
1305 if(self->present) {
1306 /* Set the desired speed */
1307 self->new_speed = irq->ifr_baudrate;
1308 irda_usb_change_speed_xbofs(self);
1309 }
1310 spin_unlock_irqrestore(&self->lock, flags);
1311 break;
1312 case SIOCSMEDIABUSY: /* Set media busy */
1313 if (!capable(CAP_NET_ADMIN))
1314 return -EPERM;
1315 /* Check if the IrDA stack is still there */
1316 if(self->netopen)
1317 irda_device_set_media_busy(self->netdev, TRUE);
1318 break;
1319 case SIOCGRECEIVING: /* Check if we are receiving right now */
1320 irq->ifr_receiving = irda_usb_is_receiving(self);
1321 break;
1322 default:
1323 ret = -EOPNOTSUPP;
1324 }
1325
1326 return ret;
1327}
1328
1329/*------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331/********************* IRDA CONFIG SUBROUTINES *********************/
1332/*
1333 * Various subroutines dealing with IrDA and network stuff we use to
1334 * configure and initialise each irda-usb instance.
1335 * These functions are used below in the main calls of the driver...
1336 */
1337
1338/*------------------------------------------------------------------*/
1339/*
1340 * Set proper values in the IrDA QOS structure
1341 */
1342static inline void irda_usb_init_qos(struct irda_usb_cb *self)
1343{
1344 struct irda_class_desc *desc;
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 desc = self->irda_desc;
1348
1349 /* Initialize QoS for this device */
1350 irda_init_max_qos_capabilies(&self->qos);
1351
1352 /* See spec section 7.2 for meaning.
1353 * Values are little endian (as most USB stuff), the IrDA stack
1354 * use it in native order (see parameters.c). - Jean II */
1355 self->qos.baud_rate.bits = le16_to_cpu(desc->wBaudRate);
1356 self->qos.min_turn_time.bits = desc->bmMinTurnaroundTime;
1357 self->qos.additional_bofs.bits = desc->bmAdditionalBOFs;
1358 self->qos.window_size.bits = desc->bmWindowSize;
1359 self->qos.data_size.bits = desc->bmDataSize;
1360
Joe Perches955a9d202014-11-11 14:44:57 -08001361 pr_debug("%s(), dongle says speed=0x%X, size=0x%X, window=0x%X, bofs=0x%X, turn=0x%X\n",
1362 __func__, self->qos.baud_rate.bits, self->qos.data_size.bits,
1363 self->qos.window_size.bits, self->qos.additional_bofs.bits,
1364 self->qos.min_turn_time.bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 /* Don't always trust what the dongle tell us */
1367 if(self->capability & IUC_SIR_ONLY)
1368 self->qos.baud_rate.bits &= 0x00ff;
1369 if(self->capability & IUC_SMALL_PKT)
1370 self->qos.data_size.bits = 0x07;
1371 if(self->capability & IUC_NO_WINDOW)
1372 self->qos.window_size.bits = 0x01;
1373 if(self->capability & IUC_MAX_WINDOW)
1374 self->qos.window_size.bits = 0x7f;
1375 if(self->capability & IUC_MAX_XBOFS)
1376 self->qos.additional_bofs.bits = 0x01;
1377
1378#if 1
1379 /* Module parameter can override the rx window size */
1380 if (qos_mtt_bits)
1381 self->qos.min_turn_time.bits = qos_mtt_bits;
1382#endif
1383 /*
1384 * Note : most of those values apply only for the receive path,
1385 * the transmit path will be set differently - Jean II
1386 */
1387 irda_qos_bits_to_value(&self->qos);
1388}
1389
1390/*------------------------------------------------------------------*/
Stephen Hemmingerd36733a2009-03-20 19:35:35 +00001391static const struct net_device_ops irda_usb_netdev_ops = {
1392 .ndo_open = irda_usb_net_open,
1393 .ndo_stop = irda_usb_net_close,
1394 .ndo_do_ioctl = irda_usb_net_ioctl,
1395 .ndo_start_xmit = irda_usb_hard_xmit,
1396 .ndo_tx_timeout = irda_usb_net_timeout,
1397};
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399/*
1400 * Initialise the network side of the irda-usb instance
1401 * Called when a new USB instance is registered in irda_usb_probe()
1402 */
1403static inline int irda_usb_open(struct irda_usb_cb *self)
1404{
1405 struct net_device *netdev = self->netdev;
1406
Stephen Hemmingerd36733a2009-03-20 19:35:35 +00001407 netdev->netdev_ops = &irda_usb_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Stephen Hemmingerd36733a2009-03-20 19:35:35 +00001409 irda_usb_init_qos(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 return register_netdev(netdev);
1412}
1413
1414/*------------------------------------------------------------------*/
1415/*
1416 * Cleanup the network side of the irda-usb instance
1417 * Called when a USB instance is removed in irda_usb_disconnect()
1418 */
1419static inline void irda_usb_close(struct irda_usb_cb *self)
1420{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 /* Remove netdevice */
1422 unregister_netdev(self->netdev);
1423
1424 /* Remove the speed buffer */
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001425 kfree(self->speed_buff);
1426 self->speed_buff = NULL;
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001427
1428 kfree(self->tx_buff);
1429 self->tx_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
1432/********************** USB CONFIG SUBROUTINES **********************/
1433/*
1434 * Various subroutines dealing with USB stuff we use to configure and
1435 * initialise each irda-usb instance.
1436 * These functions are used below in the main calls of the driver...
1437 */
1438
1439/*------------------------------------------------------------------*/
1440/*
1441 * Function irda_usb_parse_endpoints(dev, ifnum)
1442 *
1443 * Parse the various endpoints and find the one we need.
1444 *
1445 * The endpoint are the pipes used to communicate with the USB device.
1446 * The spec defines 2 endpoints of type bulk transfer, one in, and one out.
1447 * These are used to pass frames back and forth with the dongle.
1448 * Most dongle have also an interrupt endpoint, that will be probably
1449 * documented in the next spec...
1450 */
1451static inline int irda_usb_parse_endpoints(struct irda_usb_cb *self, struct usb_host_endpoint *endpoint, int ennum)
1452{
1453 int i; /* Endpoint index in table */
1454
1455 /* Init : no endpoints */
1456 self->bulk_in_ep = 0;
1457 self->bulk_out_ep = 0;
1458 self->bulk_int_ep = 0;
1459
1460 /* Let's look at all those endpoints */
1461 for(i = 0; i < ennum; i++) {
1462 /* All those variables will get optimised by the compiler,
1463 * so let's aim for clarity... - Jean II */
1464 __u8 ep; /* Endpoint address */
1465 __u8 dir; /* Endpoint direction */
1466 __u8 attr; /* Endpoint attribute */
1467 __u16 psize; /* Endpoint max packet size in bytes */
1468
1469 /* Get endpoint address, direction and attribute */
1470 ep = endpoint[i].desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
1471 dir = endpoint[i].desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK;
1472 attr = endpoint[i].desc.bmAttributes;
1473 psize = le16_to_cpu(endpoint[i].desc.wMaxPacketSize);
1474
1475 /* Is it a bulk endpoint ??? */
1476 if(attr == USB_ENDPOINT_XFER_BULK) {
1477 /* We need to find an IN and an OUT */
1478 if(dir == USB_DIR_IN) {
1479 /* This is our Rx endpoint */
1480 self->bulk_in_ep = ep;
1481 } else {
1482 /* This is our Tx endpoint */
1483 self->bulk_out_ep = ep;
1484 self->bulk_out_mtu = psize;
1485 }
1486 } else {
1487 if((attr == USB_ENDPOINT_XFER_INT) &&
1488 (dir == USB_DIR_IN)) {
1489 /* This is our interrupt endpoint */
1490 self->bulk_int_ep = ep;
1491 } else {
Joe Perches6c910232014-11-11 13:37:30 -08001492 net_err_ratelimited("%s(), Unrecognised endpoint %02X\n",
1493 __func__, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495 }
1496 }
1497
Joe Perches955a9d202014-11-11 14:44:57 -08001498 pr_debug("%s(), And our endpoints are : in=%02X, out=%02X (%d), int=%02X\n",
1499 __func__, self->bulk_in_ep, self->bulk_out_ep,
1500 self->bulk_out_mtu, self->bulk_int_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Eric Dumazet807540b2010-09-23 05:40:09 +00001502 return (self->bulk_in_ep != 0) && (self->bulk_out_ep != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
1505#ifdef IU_DUMP_CLASS_DESC
1506/*------------------------------------------------------------------*/
1507/*
1508 * Function usb_irda_dump_class_desc(desc)
1509 *
1510 * Prints out the contents of the IrDA class descriptor
1511 *
1512 */
1513static inline void irda_usb_dump_class_desc(struct irda_class_desc *desc)
1514{
1515 /* Values are little endian */
1516 printk("bLength=%x\n", desc->bLength);
1517 printk("bDescriptorType=%x\n", desc->bDescriptorType);
1518 printk("bcdSpecRevision=%x\n", le16_to_cpu(desc->bcdSpecRevision));
1519 printk("bmDataSize=%x\n", desc->bmDataSize);
1520 printk("bmWindowSize=%x\n", desc->bmWindowSize);
1521 printk("bmMinTurnaroundTime=%d\n", desc->bmMinTurnaroundTime);
1522 printk("wBaudRate=%x\n", le16_to_cpu(desc->wBaudRate));
1523 printk("bmAdditionalBOFs=%x\n", desc->bmAdditionalBOFs);
1524 printk("bIrdaRateSniff=%x\n", desc->bIrdaRateSniff);
1525 printk("bMaxUnicastList=%x\n", desc->bMaxUnicastList);
1526}
1527#endif /* IU_DUMP_CLASS_DESC */
1528
1529/*------------------------------------------------------------------*/
1530/*
1531 * Function irda_usb_find_class_desc(intf)
1532 *
1533 * Returns instance of IrDA class descriptor, or NULL if not found
1534 *
1535 * The class descriptor is some extra info that IrDA USB devices will
1536 * offer to us, describing their IrDA characteristics. We will use that in
1537 * irda_usb_init_qos()
1538 */
1539static inline struct irda_class_desc *irda_usb_find_class_desc(struct usb_interface *intf)
1540{
1541 struct usb_device *dev = interface_to_usbdev (intf);
1542 struct irda_class_desc *desc;
1543 int ret;
1544
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001545 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
1546 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* USB-IrDA class spec 1.0:
1550 * 6.1.3: Standard "Get Descriptor" Device Request is not
1551 * appropriate to retrieve class-specific descriptor
1552 * 6.2.5: Class Specific "Get Class Descriptor" Interface Request
1553 * is mandatory and returns the USB-IrDA class descriptor
1554 */
1555
1556 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev,0),
1557 IU_REQ_GET_CLASS_DESC,
1558 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
1559 0, intf->altsetting->desc.bInterfaceNumber, desc,
1560 sizeof(*desc), 500);
1561
Joe Perches955a9d202014-11-11 14:44:57 -08001562 pr_debug("%s(), ret=%d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (ret < sizeof(*desc)) {
Joe Perches6c910232014-11-11 13:37:30 -08001564 net_warn_ratelimited("usb-irda: class_descriptor read %s (%d)\n",
1565 ret < 0 ? "failed" : "too short", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567 else if (desc->bDescriptorType != USB_DT_IRDA) {
Joe Perches6c910232014-11-11 13:37:30 -08001568 net_warn_ratelimited("usb-irda: bad class_descriptor type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
1570 else {
1571#ifdef IU_DUMP_CLASS_DESC
1572 irda_usb_dump_class_desc(desc);
1573#endif /* IU_DUMP_CLASS_DESC */
1574
1575 return desc;
1576 }
1577 kfree(desc);
1578 return NULL;
1579}
1580
1581/*********************** USB DEVICE CALLBACKS ***********************/
1582/*
1583 * Main calls from the USB subsystem.
1584 * Mostly registering a new irda-usb device and removing it....
1585 */
1586
1587/*------------------------------------------------------------------*/
1588/*
1589 * This routine is called by the USB subsystem for each new device
1590 * in the system. We need to check if the device is ours, and in
1591 * this case start handling it.
1592 * The USB layer protect us from reentrancy (via BKL), so we don't need
1593 * to spinlock in there... Jean II
1594 */
1595static int irda_usb_probe(struct usb_interface *intf,
1596 const struct usb_device_id *id)
1597{
1598 struct net_device *net;
1599 struct usb_device *dev = interface_to_usbdev(intf);
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001600 struct irda_usb_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 struct usb_host_interface *interface;
1602 struct irda_class_desc *irda_desc;
1603 int ret = -ENOMEM;
1604 int i; /* Driver instance index / Rx URB index */
1605
1606 /* Note : the probe make sure to call us only for devices that
1607 * matches the list of dongle (top of the file). So, we
1608 * don't need to check if the dongle is really ours.
1609 * Jean II */
1610
Joe Perches6c910232014-11-11 13:37:30 -08001611 net_info_ratelimited("IRDA-USB found at address %d, Vendor: %x, Product: %x\n",
1612 dev->devnum, le16_to_cpu(dev->descriptor.idVendor),
1613 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 net = alloc_irdadev(sizeof(*self));
1616 if (!net)
1617 goto err_out;
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 SET_NETDEV_DEV(net, &intf->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001620 self = netdev_priv(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 self->netdev = net;
1622 spin_lock_init(&self->lock);
Jean Tourrilhes669d32a22006-02-19 22:28:25 -08001623 init_timer(&self->rx_defer_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Samuel Ortiz137dc022006-04-05 22:39:14 -07001625 self->capability = id->driver_info;
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001626 self->needspatch = ((self->capability & IUC_STIR421X) != 0);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 /* Create all of the needed urbs */
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001629 if (self->capability & IUC_STIR421X) {
Samuel Ortiz137dc022006-04-05 22:39:14 -07001630 self->max_rx_urb = IU_SIGMATEL_MAX_RX_URBS;
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001631 self->header_length = USB_IRDA_STIR421X_HEADER;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001632 } else {
1633 self->max_rx_urb = IU_MAX_RX_URBS;
1634 self->header_length = USB_IRDA_HEADER;
1635 }
1636
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001637 self->rx_urb = kcalloc(self->max_rx_urb, sizeof(struct urb *),
Samuel Ortiz137dc022006-04-05 22:39:14 -07001638 GFP_KERNEL);
Dan Carpenter0e2b8072010-03-07 02:35:42 +00001639 if (!self->rx_urb)
1640 goto err_free_net;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001641
1642 for (i = 0; i < self->max_rx_urb; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 self->rx_urb[i] = usb_alloc_urb(0, GFP_KERNEL);
1644 if (!self->rx_urb[i]) {
1645 goto err_out_1;
1646 }
1647 }
1648 self->tx_urb = usb_alloc_urb(0, GFP_KERNEL);
1649 if (!self->tx_urb) {
1650 goto err_out_1;
1651 }
1652 self->speed_urb = usb_alloc_urb(0, GFP_KERNEL);
1653 if (!self->speed_urb) {
1654 goto err_out_2;
1655 }
1656
1657 /* Is this really necessary? (no, except maybe for broken devices) */
1658 if (usb_reset_configuration (dev) < 0) {
Greg Kroah-Hartman3d55ea32012-04-25 14:48:49 -07001659 dev_err(&intf->dev, "reset_configuration failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 ret = -EIO;
1661 goto err_out_3;
1662 }
1663
1664 /* Is this really necessary? */
1665 /* Note : some driver do hardcode the interface number, some others
1666 * specify an alternate, but very few driver do like this.
1667 * Jean II */
1668 ret = usb_set_interface(dev, intf->altsetting->desc.bInterfaceNumber, 0);
Joe Perches955a9d202014-11-11 14:44:57 -08001669 pr_debug("usb-irda: set interface %d result %d\n",
1670 intf->altsetting->desc.bInterfaceNumber, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 switch (ret) {
1672 case 0:
1673 break;
1674 case -EPIPE: /* -EPIPE = -32 */
1675 /* Martin Diehl says if we get a -EPIPE we should
1676 * be fine and we don't need to do a usb_clear_halt().
1677 * - Jean II */
Joe Perches955a9d202014-11-11 14:44:57 -08001678 pr_debug("%s(), Received -EPIPE, ignoring...\n",
1679 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 break;
1681 default:
Joe Perches955a9d202014-11-11 14:44:57 -08001682 pr_debug("%s(), Unknown error %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 ret = -EIO;
1684 goto err_out_3;
1685 }
1686
1687 /* Find our endpoints */
1688 interface = intf->cur_altsetting;
1689 if(!irda_usb_parse_endpoints(self, interface->endpoint,
1690 interface->desc.bNumEndpoints)) {
Joe Perches6c910232014-11-11 13:37:30 -08001691 net_err_ratelimited("%s(), Bogus endpoints...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 ret = -EIO;
1693 goto err_out_3;
1694 }
1695
Samuel Ortiz137dc022006-04-05 22:39:14 -07001696 self->usbdev = dev;
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /* Find IrDA class descriptor */
1699 irda_desc = irda_usb_find_class_desc(intf);
1700 ret = -ENODEV;
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001701 if (!irda_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 goto err_out_3;
1703
Samuel Ortiz137dc022006-04-05 22:39:14 -07001704 if (self->needspatch) {
1705 ret = usb_control_msg (self->usbdev, usb_sndctrlpipe (self->usbdev, 0),
Randy Dunlap0eb1bd22006-05-06 18:34:10 -07001706 0x02, 0x40, 0, 0, NULL, 0, 500);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001707 if (ret < 0) {
Joe Perches955a9d202014-11-11 14:44:57 -08001708 pr_debug("usb_control_msg failed %d\n", ret);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001709 goto err_out_3;
1710 } else {
1711 mdelay(10);
1712 }
1713 }
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 self->irda_desc = irda_desc;
1716 self->present = 1;
1717 self->netopen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 self->usbintf = intf;
1719
1720 /* Allocate the buffer for speed changes */
1721 /* Don't change this buffer size and allocation without doing
1722 * some heavy and complete testing. Don't ask why :-(
1723 * Jean II */
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001724 self->speed_buff = kzalloc(IRDA_USB_SPEED_MTU, GFP_KERNEL);
1725 if (!self->speed_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 goto err_out_3;
1727
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001728 self->tx_buff = kzalloc(IRDA_SKB_MAX_MTU + self->header_length,
1729 GFP_KERNEL);
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001730 if (!self->tx_buff)
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001731 goto err_out_4;
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 ret = irda_usb_open(self);
1734 if (ret)
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001735 goto err_out_5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Joe Perches6c910232014-11-11 13:37:30 -08001737 net_info_ratelimited("IrDA: Registered device %s\n", net->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 usb_set_intfdata(intf, self);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001739
1740 if (self->needspatch) {
1741 /* Now we fetch and upload the firmware patch */
1742 ret = stir421x_patch_device(self);
1743 self->needspatch = (ret < 0);
Nick Fedchik8ef80ae2006-06-11 20:56:02 -07001744 if (self->needspatch) {
Joe Perches6c910232014-11-11 13:37:30 -08001745 net_err_ratelimited("STIR421X: Couldn't upload patch\n");
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001746 goto err_out_6;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001747 }
1748
1749 /* replace IrDA class descriptor with what patched device is now reporting */
1750 irda_desc = irda_usb_find_class_desc (self->usbintf);
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001751 if (!irda_desc) {
Samuel Ortiz137dc022006-04-05 22:39:14 -07001752 ret = -ENODEV;
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001753 goto err_out_6;
Samuel Ortiz137dc022006-04-05 22:39:14 -07001754 }
Mariusz Kozlowski48e3eeb2007-08-10 15:25:40 -07001755 kfree(self->irda_desc);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001756 self->irda_desc = irda_desc;
1757 irda_usb_init_qos(self);
1758 }
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return 0;
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001761err_out_6:
Samuel Ortiz269690a2006-04-14 16:02:07 -07001762 unregister_netdev(self->netdev);
Samuel Ortiz3958fb32007-01-15 19:37:25 -08001763err_out_5:
1764 kfree(self->tx_buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765err_out_4:
1766 kfree(self->speed_buff);
1767err_out_3:
1768 /* Free all urbs that we may have created */
1769 usb_free_urb(self->speed_urb);
1770err_out_2:
1771 usb_free_urb(self->tx_urb);
1772err_out_1:
Mariusz Kozlowski8fd31e12006-11-08 15:35:38 +01001773 for (i = 0; i < self->max_rx_urb; i++)
1774 usb_free_urb(self->rx_urb[i]);
Dan Carpenter0e2b8072010-03-07 02:35:42 +00001775 kfree(self->rx_urb);
1776err_free_net:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 free_netdev(net);
1778err_out:
1779 return ret;
1780}
1781
1782/*------------------------------------------------------------------*/
1783/*
1784 * The current irda-usb device is removed, the USB layer tell us
1785 * to shut it down...
1786 * One of the constraints is that when we exit this function,
1787 * we cannot use the usb_device no more. Gone. Destroyed. kfree().
1788 * Most other subsystem allow you to destroy the instance at a time
1789 * when it's convenient to you, to postpone it to a later date, but
1790 * not the USB subsystem.
1791 * So, we must make bloody sure that everything gets deactivated.
1792 * Jean II
1793 */
1794static void irda_usb_disconnect(struct usb_interface *intf)
1795{
1796 unsigned long flags;
1797 struct irda_usb_cb *self = usb_get_intfdata(intf);
1798 int i;
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 usb_set_intfdata(intf, NULL);
1801 if (!self)
1802 return;
1803
1804 /* Make sure that the Tx path is not executing. - Jean II */
1805 spin_lock_irqsave(&self->lock, flags);
1806
1807 /* Oups ! We are not there any more.
1808 * This will stop/desactivate the Tx path. - Jean II */
1809 self->present = 0;
1810
Jean Tourrilhes669d32a22006-02-19 22:28:25 -08001811 /* Kill defered Rx URB */
1812 del_timer(&self->rx_defer_timer);
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 /* We need to have irq enabled to unlink the URBs. That's OK,
1815 * at this point the Tx path is gone - Jean II */
1816 spin_unlock_irqrestore(&self->lock, flags);
1817
1818 /* Hum... Check if networking is still active (avoid races) */
1819 if((self->netopen) || (self->irlap)) {
1820 /* Accept no more transmissions */
1821 /*netif_device_detach(self->netdev);*/
1822 netif_stop_queue(self->netdev);
Jean Tourrilhes669d32a22006-02-19 22:28:25 -08001823 /* Stop all the receive URBs. Must be synchronous. */
Samuel Ortiz137dc022006-04-05 22:39:14 -07001824 for (i = 0; i < self->max_rx_urb; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 usb_kill_urb(self->rx_urb[i]);
1826 /* Cancel Tx and speed URB.
Jean Tourrilhes669d32a22006-02-19 22:28:25 -08001827 * Make sure it's synchronous to avoid races. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 usb_kill_urb(self->tx_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 usb_kill_urb(self->speed_urb);
1830 }
1831
1832 /* Cleanup the device stuff */
1833 irda_usb_close(self);
1834 /* No longer attached to USB bus */
1835 self->usbdev = NULL;
1836 self->usbintf = NULL;
1837
1838 /* Clean up our urbs */
Samuel Ortiz137dc022006-04-05 22:39:14 -07001839 for (i = 0; i < self->max_rx_urb; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 usb_free_urb(self->rx_urb[i]);
Samuel Ortiz137dc022006-04-05 22:39:14 -07001841 kfree(self->rx_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 /* Clean up Tx and speed URB */
1843 usb_free_urb(self->tx_urb);
1844 usb_free_urb(self->speed_urb);
1845
1846 /* Free self and network device */
1847 free_netdev(self->netdev);
Joe Perches955a9d202014-11-11 14:44:57 -08001848 pr_debug("%s(), USB IrDA Disconnected\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850
Tadashi Abee13f9312009-05-25 20:53:27 +00001851#ifdef CONFIG_PM
1852/* USB suspend, so power off the transmitter/receiver */
1853static int irda_usb_suspend(struct usb_interface *intf, pm_message_t message)
1854{
1855 struct irda_usb_cb *self = usb_get_intfdata(intf);
1856 int i;
1857
1858 netif_device_detach(self->netdev);
1859
1860 if (self->tx_urb != NULL)
1861 usb_kill_urb(self->tx_urb);
1862 if (self->speed_urb != NULL)
1863 usb_kill_urb(self->speed_urb);
1864 for (i = 0; i < self->max_rx_urb; i++) {
1865 if (self->rx_urb[i] != NULL)
1866 usb_kill_urb(self->rx_urb[i]);
1867 }
1868 return 0;
1869}
1870
1871/* Coming out of suspend, so reset hardware */
1872static int irda_usb_resume(struct usb_interface *intf)
1873{
1874 struct irda_usb_cb *self = usb_get_intfdata(intf);
1875 int i;
1876
1877 for (i = 0; i < self->max_rx_urb; i++) {
1878 if (self->rx_urb[i] != NULL)
1879 usb_submit_urb(self->rx_urb[i], GFP_KERNEL);
1880 }
1881
1882 netif_device_attach(self->netdev);
1883 return 0;
1884}
1885#endif
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887/*------------------------------------------------------------------*/
1888/*
1889 * USB device callbacks
1890 */
1891static struct usb_driver irda_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 .name = "irda-usb",
1893 .probe = irda_usb_probe,
1894 .disconnect = irda_usb_disconnect,
1895 .id_table = dongles,
Tadashi Abee13f9312009-05-25 20:53:27 +00001896#ifdef CONFIG_PM
1897 .suspend = irda_usb_suspend,
1898 .resume = irda_usb_resume,
1899#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900};
1901
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001902module_usb_driver(irda_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904/*
1905 * Module parameters
1906 */
1907module_param(qos_mtt_bits, int, 0);
1908MODULE_PARM_DESC(qos_mtt_bits, "Minimum Turn Time");
Samuel Ortiz137dc022006-04-05 22:39:14 -07001909MODULE_AUTHOR("Roman Weissgaerber <weissg@vienna.at>, Dag Brattli <dag@brattli.net>, Jean Tourrilhes <jt@hpl.hp.com> and Nick Fedchik <nick@fedchik.org.ua>");
1910MODULE_DESCRIPTION("IrDA-USB Dongle Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911MODULE_LICENSE("GPL");