blob: 4a5a8b16d7b588b99d0e23713bbce39629114513 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * LEGO USB Tower driver
3 *
4 * Copyright (C) 2003 David Glance <davidgsf@sourceforge.net>
5 * 2001-2004 Juergen Stuber <starblue@users.sourceforge.net>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * derived from USB Skeleton driver - 0.5
13 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
14 *
15 * History:
16 *
17 * 2001-10-13 - 0.1 js
18 * - first version
19 * 2001-11-03 - 0.2 js
20 * - simplified buffering, one-shot URBs for writing
21 * 2001-11-10 - 0.3 js
22 * - removed IOCTL (setting power/mode is more complicated, postponed)
23 * 2001-11-28 - 0.4 js
24 * - added vendor commands for mode of operation and power level in open
25 * 2001-12-04 - 0.5 js
26 * - set IR mode by default (by oversight 0.4 set VLL mode)
27 * 2002-01-11 - 0.5? pcchan
28 * - make read buffer reusable and work around bytes_to_write issue between
29 * uhci and legusbtower
30 * 2002-09-23 - 0.52 david (david@csse.uwa.edu.au)
31 * - imported into lejos project
32 * - changed wake_up to wake_up_interruptible
33 * - changed to use lego0 rather than tower0
Harvey Harrison441b62c2008-03-03 16:08:34 -080034 * - changed dbg() to use __func__ rather than deprecated __func__
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * 2003-01-12 - 0.53 david (david@csse.uwa.edu.au)
36 * - changed read and write to write everything or
37 * timeout (from a patch by Chris Riesen and Brett Thaeler driver)
38 * - added ioctl functionality to set timeouts
39 * 2003-07-18 - 0.54 davidgsf (david@csse.uwa.edu.au)
40 * - initial import into LegoUSB project
41 * - merge of existing LegoUSB.c driver
42 * 2003-07-18 - 0.56 davidgsf (david@csse.uwa.edu.au)
43 * - port to 2.6 style driver
44 * 2004-02-29 - 0.6 Juergen Stuber <starblue@users.sourceforge.net>
45 * - fix locking
46 * - unlink read URBs which are no longer needed
47 * - allow increased buffer size, eliminates need for timeout on write
48 * - have read URB running continuously
49 * - added poll
50 * - forbid seeking
51 * - added nonblocking I/O
Harvey Harrison441b62c2008-03-03 16:08:34 -080052 * - changed back __func__ to __func__
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * - read and log tower firmware version
54 * - reset tower on probe, avoids failure of first write
55 * 2004-03-09 - 0.7 Juergen Stuber <starblue@users.sourceforge.net>
56 * - timeout read now only after inactivity, shorten default accordingly
57 * 2004-03-11 - 0.8 Juergen Stuber <starblue@users.sourceforge.net>
58 * - log major, minor instead of possibly confusing device filename
59 * - whitespace cleanup
60 * 2004-03-12 - 0.9 Juergen Stuber <starblue@users.sourceforge.net>
61 * - normalize whitespace in debug messages
62 * - take care about endianness in control message responses
63 * 2004-03-13 - 0.91 Juergen Stuber <starblue@users.sourceforge.net>
64 * - make default intervals longer to accommodate current EHCI driver
65 * 2004-03-19 - 0.92 Juergen Stuber <starblue@users.sourceforge.net>
66 * - replaced atomic_t by memory barriers
67 * 2004-04-21 - 0.93 Juergen Stuber <starblue@users.sourceforge.net>
68 * - wait for completion of write urb in release (needed for remotecontrol)
69 * - corrected poll for write direction (missing negation)
70 * 2004-04-22 - 0.94 Juergen Stuber <starblue@users.sourceforge.net>
71 * - make device locking interruptible
72 * 2004-04-30 - 0.95 Juergen Stuber <starblue@users.sourceforge.net>
73 * - check for valid udev on resubmitting and unlinking urbs
74 * 2004-08-03 - 0.96 Juergen Stuber <starblue@users.sourceforge.net>
75 * - move reset into open to clean out spurious data
76 */
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/kernel.h>
79#include <linux/errno.h>
80#include <linux/init.h>
81#include <linux/slab.h>
82#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/completion.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010084#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <asm/uaccess.h>
86#include <linux/usb.h>
87#include <linux/poll.h>
88
89
90#ifdef CONFIG_USB_DEBUG
91 static int debug = 4;
92#else
93 static int debug = 0;
94#endif
95
96/* Use our own dbg macro */
97#undef dbg
Joe Perchesf45ba772010-02-05 17:51:13 -080098#define dbg(lvl, format, arg...) \
99do { \
100 if (debug >= lvl) \
101 printk(KERN_DEBUG "%s: " format "\n", __FILE__, ##arg); \
102} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/* Version Information */
105#define DRIVER_VERSION "v0.96"
106#define DRIVER_AUTHOR "Juergen Stuber <starblue@sourceforge.net>"
107#define DRIVER_DESC "LEGO USB Tower Driver"
108
109/* Module parameters */
110module_param(debug, int, S_IRUGO | S_IWUSR);
111MODULE_PARM_DESC(debug, "Debug enabled or not");
112
113/* The defaults are chosen to work with the latest versions of leJOS and NQC.
114 */
115
116/* Some legacy software likes to receive packets in one piece.
117 * In this case read_buffer_size should exceed the maximal packet length
118 * (417 for datalog uploads), and packet_timeout should be set.
119 */
120static int read_buffer_size = 480;
121module_param(read_buffer_size, int, 0);
122MODULE_PARM_DESC(read_buffer_size, "Read buffer size");
123
124/* Some legacy software likes to send packets in one piece.
125 * In this case write_buffer_size should exceed the maximal packet length
126 * (417 for firmware and program downloads).
127 * A problem with long writes is that the following read may time out
128 * if the software is not prepared to wait long enough.
129 */
130static int write_buffer_size = 480;
131module_param(write_buffer_size, int, 0);
132MODULE_PARM_DESC(write_buffer_size, "Write buffer size");
133
134/* Some legacy software expects reads to contain whole LASM packets.
135 * To achieve this, characters which arrive before a packet timeout
136 * occurs will be returned in a single read operation.
137 * A problem with long reads is that the software may time out
138 * if it is not prepared to wait long enough.
139 * The packet timeout should be greater than the time between the
140 * reception of subsequent characters, which should arrive about
141 * every 5ms for the standard 2400 baud.
142 * Set it to 0 to disable.
143 */
144static int packet_timeout = 50;
145module_param(packet_timeout, int, 0);
146MODULE_PARM_DESC(packet_timeout, "Packet timeout in ms");
147
148/* Some legacy software expects blocking reads to time out.
149 * Timeout occurs after the specified time of read and write inactivity.
150 * Set it to 0 to disable.
151 */
152static int read_timeout = 200;
153module_param(read_timeout, int, 0);
154MODULE_PARM_DESC(read_timeout, "Read timeout in ms");
155
156/* As of kernel version 2.6.4 ehci-hcd uses an
157 * "only one interrupt transfer per frame" shortcut
158 * to simplify the scheduling of periodic transfers.
159 * This conflicts with our standard 1ms intervals for in and out URBs.
160 * We use default intervals of 2ms for in and 8ms for out transfers,
161 * which is fast enough for 2400 baud and allows a small additional load.
162 * Increase the interval to allow more devices that do interrupt transfers,
163 * or set to 0 to use the standard interval from the endpoint descriptors.
164 */
165static int interrupt_in_interval = 2;
166module_param(interrupt_in_interval, int, 0);
167MODULE_PARM_DESC(interrupt_in_interval, "Interrupt in interval in ms");
168
169static int interrupt_out_interval = 8;
170module_param(interrupt_out_interval, int, 0);
171MODULE_PARM_DESC(interrupt_out_interval, "Interrupt out interval in ms");
172
173/* Define these values to match your device */
174#define LEGO_USB_TOWER_VENDOR_ID 0x0694
175#define LEGO_USB_TOWER_PRODUCT_ID 0x0001
176
177/* Vendor requests */
178#define LEGO_USB_TOWER_REQUEST_RESET 0x04
179#define LEGO_USB_TOWER_REQUEST_GET_VERSION 0xFD
180
181struct tower_reset_reply {
182 __le16 size; /* little-endian */
183 __u8 err_code;
184 __u8 spare;
185} __attribute__ ((packed));
186
187struct tower_get_version_reply {
188 __le16 size; /* little-endian */
189 __u8 err_code;
190 __u8 spare;
191 __u8 major;
192 __u8 minor;
193 __le16 build_no; /* little-endian */
194} __attribute__ ((packed));
195
196
197/* table of devices that work with this driver */
Németh Márton33b9e162010-01-10 15:34:45 +0100198static const struct usb_device_id tower_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 { USB_DEVICE(LEGO_USB_TOWER_VENDOR_ID, LEGO_USB_TOWER_PRODUCT_ID) },
200 { } /* Terminating entry */
201};
202
203MODULE_DEVICE_TABLE (usb, tower_table);
Oliver Neukum78663ec2007-10-25 15:48:39 +0200204static DEFINE_MUTEX(open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206#define LEGO_USB_TOWER_MINOR_BASE 160
207
208
209/* Structure to hold all of our device specific stuff */
210struct lego_usb_tower {
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800211 struct mutex lock; /* locks this structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct usb_device* udev; /* save off the usb device pointer */
213 unsigned char minor; /* the starting minor number for this device */
214
215 int open_count; /* number of times this port has been opened */
216
217 char* read_buffer;
218 size_t read_buffer_length; /* this much came in */
219 size_t read_packet_length; /* this much will be returned on read */
220 spinlock_t read_buffer_lock;
221 int packet_timeout_jiffies;
222 unsigned long read_last_arrival;
223
224 wait_queue_head_t read_wait;
225 wait_queue_head_t write_wait;
226
227 char* interrupt_in_buffer;
228 struct usb_endpoint_descriptor* interrupt_in_endpoint;
229 struct urb* interrupt_in_urb;
230 int interrupt_in_interval;
231 int interrupt_in_running;
232 int interrupt_in_done;
233
234 char* interrupt_out_buffer;
235 struct usb_endpoint_descriptor* interrupt_out_endpoint;
236 struct urb* interrupt_out_urb;
237 int interrupt_out_interval;
238 int interrupt_out_busy;
239
240};
241
242
243/* local function prototypes */
244static ssize_t tower_read (struct file *file, char __user *buffer, size_t count, loff_t *ppos);
245static ssize_t tower_write (struct file *file, const char __user *buffer, size_t count, loff_t *ppos);
246static inline void tower_delete (struct lego_usb_tower *dev);
247static int tower_open (struct inode *inode, struct file *file);
248static int tower_release (struct inode *inode, struct file *file);
249static unsigned int tower_poll (struct file *file, poll_table *wait);
250static loff_t tower_llseek (struct file *file, loff_t off, int whence);
251
252static void tower_abort_transfers (struct lego_usb_tower *dev);
253static void tower_check_for_read_packet (struct lego_usb_tower *dev);
David Howells7d12e782006-10-05 14:55:46 +0100254static void tower_interrupt_in_callback (struct urb *urb);
255static void tower_interrupt_out_callback (struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257static int tower_probe (struct usb_interface *interface, const struct usb_device_id *id);
258static void tower_disconnect (struct usb_interface *interface);
259
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/* file operations needed when we register this driver */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300262static const struct file_operations tower_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 .owner = THIS_MODULE,
264 .read = tower_read,
265 .write = tower_write,
266 .open = tower_open,
267 .release = tower_release,
268 .poll = tower_poll,
269 .llseek = tower_llseek,
270};
271
Al Viro2c9ede52011-07-23 20:24:48 -0400272static char *legousbtower_devnode(struct device *dev, umode_t *mode)
Kay Sieversf7a386c2009-04-30 15:23:42 +0200273{
274 return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev));
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/*
278 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700279 * and to have the device registered with the driver core
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
281static struct usb_class_driver tower_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700282 .name = "legousbtower%d",
Kay Sieverse454cea2009-09-18 23:01:12 +0200283 .devnode = legousbtower_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 .fops = &tower_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 .minor_base = LEGO_USB_TOWER_MINOR_BASE,
286};
287
288
289/* usb specific object needed to register this driver with the usb subsystem */
290static struct usb_driver tower_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 .name = "legousbtower",
292 .probe = tower_probe,
293 .disconnect = tower_disconnect,
294 .id_table = tower_table,
295};
296
297
298/**
299 * lego_usb_tower_debug_data
300 */
301static inline void lego_usb_tower_debug_data (int level, const char *function, int size, const unsigned char *data)
302{
303 int i;
304
305 if (debug < level)
306 return;
307
Joe Perchesf45ba772010-02-05 17:51:13 -0800308 printk (KERN_DEBUG "%s: %s - length = %d, data = ", __FILE__, function, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 for (i = 0; i < size; ++i) {
310 printk ("%.2x ", data[i]);
311 }
312 printk ("\n");
313}
314
315
316/**
317 * tower_delete
318 */
319static inline void tower_delete (struct lego_usb_tower *dev)
320{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 tower_abort_transfers (dev);
322
323 /* free data structures */
Mariusz Kozlowskif53510e2006-11-08 15:36:14 +0100324 usb_free_urb(dev->interrupt_in_urb);
325 usb_free_urb(dev->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 kfree (dev->read_buffer);
327 kfree (dev->interrupt_in_buffer);
328 kfree (dev->interrupt_out_buffer);
329 kfree (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332
333/**
334 * tower_open
335 */
336static int tower_open (struct inode *inode, struct file *file)
337{
338 struct lego_usb_tower *dev = NULL;
339 int subminor;
340 int retval = 0;
341 struct usb_interface *interface;
342 struct tower_reset_reply reset_reply;
343 int result;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 nonseekable_open(inode, file);
346 subminor = iminor(inode);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 interface = usb_find_interface (&tower_driver, subminor);
349
350 if (!interface) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700351 printk(KERN_ERR "%s - error, can't find device for minor %d\n",
352 __func__, subminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 retval = -ENODEV;
Alan Sternd4ead162007-05-22 11:46:41 -0400354 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
Oliver Neukum78663ec2007-10-25 15:48:39 +0200357 mutex_lock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 dev = usb_get_intfdata(interface);
359
360 if (!dev) {
Oliver Neukum78663ec2007-10-25 15:48:39 +0200361 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 retval = -ENODEV;
Alan Sternd4ead162007-05-22 11:46:41 -0400363 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
366 /* lock this device */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800367 if (mutex_lock_interruptible(&dev->lock)) {
Oliver Neukum78663ec2007-10-25 15:48:39 +0200368 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 retval = -ERESTARTSYS;
Alan Sternd4ead162007-05-22 11:46:41 -0400370 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Oliver Neukum78663ec2007-10-25 15:48:39 +0200373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* allow opening only once */
375 if (dev->open_count) {
Oliver Neukum78663ec2007-10-25 15:48:39 +0200376 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 retval = -EBUSY;
378 goto unlock_exit;
379 }
380 dev->open_count = 1;
Oliver Neukum78663ec2007-10-25 15:48:39 +0200381 mutex_unlock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* reset the tower */
384 result = usb_control_msg (dev->udev,
385 usb_rcvctrlpipe(dev->udev, 0),
386 LEGO_USB_TOWER_REQUEST_RESET,
387 USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_DEVICE,
388 0,
389 0,
390 &reset_reply,
391 sizeof(reset_reply),
392 1000);
393 if (result < 0) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700394 dev_err(&dev->udev->dev,
395 "LEGO USB Tower reset control request failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 retval = result;
397 goto unlock_exit;
398 }
399
400 /* initialize in direction */
401 dev->read_buffer_length = 0;
402 dev->read_packet_length = 0;
403 usb_fill_int_urb (dev->interrupt_in_urb,
404 dev->udev,
405 usb_rcvintpipe(dev->udev, dev->interrupt_in_endpoint->bEndpointAddress),
406 dev->interrupt_in_buffer,
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700407 usb_endpoint_maxp(dev->interrupt_in_endpoint),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 tower_interrupt_in_callback,
409 dev,
410 dev->interrupt_in_interval);
411
412 dev->interrupt_in_running = 1;
413 dev->interrupt_in_done = 0;
414 mb();
415
416 retval = usb_submit_urb (dev->interrupt_in_urb, GFP_KERNEL);
417 if (retval) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700418 dev_err(&dev->udev->dev,
419 "Couldn't submit interrupt_in_urb %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 dev->interrupt_in_running = 0;
421 dev->open_count = 0;
422 goto unlock_exit;
423 }
424
425 /* save device in the file's private structure */
426 file->private_data = dev;
427
428unlock_exit:
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800429 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Alan Sternd4ead162007-05-22 11:46:41 -0400431exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return retval;
433}
434
435/**
436 * tower_release
437 */
438static int tower_release (struct inode *inode, struct file *file)
439{
440 struct lego_usb_tower *dev;
441 int retval = 0;
442
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700443 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 if (dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 retval = -ENODEV;
Oliver Neukum78663ec2007-10-25 15:48:39 +0200447 goto exit_nolock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
Oliver Neukum78663ec2007-10-25 15:48:39 +0200450 mutex_lock(&open_disc_mutex);
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800451 if (mutex_lock_interruptible(&dev->lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 retval = -ERESTARTSYS;
453 goto exit;
454 }
455
456 if (dev->open_count != 1) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700457 dev_dbg(&dev->udev->dev, "%s: device not opened exactly once\n",
458 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 retval = -ENODEV;
460 goto unlock_exit;
461 }
462 if (dev->udev == NULL) {
463 /* the device was unplugged before the file was released */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800464
465 /* unlock here as tower_delete frees dev */
466 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 tower_delete (dev);
468 goto exit;
469 }
470
471 /* wait until write transfer is finished */
472 if (dev->interrupt_out_busy) {
473 wait_event_interruptible_timeout (dev->write_wait, !dev->interrupt_out_busy, 2 * HZ);
474 }
475 tower_abort_transfers (dev);
476 dev->open_count = 0;
477
478unlock_exit:
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800479 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481exit:
Oliver Neukum78663ec2007-10-25 15:48:39 +0200482 mutex_unlock(&open_disc_mutex);
483exit_nolock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return retval;
485}
486
487
488/**
489 * tower_abort_transfers
490 * aborts transfers and frees associated data structures
491 */
492static void tower_abort_transfers (struct lego_usb_tower *dev)
493{
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700494 if (dev == NULL)
Greg Kroah-Hartmand26f6e52013-06-26 16:30:39 -0700495 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /* shutdown transfer */
498 if (dev->interrupt_in_running) {
499 dev->interrupt_in_running = 0;
500 mb();
Mariusz Kozlowskif53510e2006-11-08 15:36:14 +0100501 if (dev->udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 usb_kill_urb (dev->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Mariusz Kozlowskif53510e2006-11-08 15:36:14 +0100504 if (dev->interrupt_out_busy && dev->udev)
505 usb_kill_urb(dev->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508
509/**
510 * tower_check_for_read_packet
511 *
512 * To get correct semantics for signals and non-blocking I/O
513 * with packetizing we pretend not to see any data in the read buffer
514 * until it has been there unchanged for at least
515 * dev->packet_timeout_jiffies, or until the buffer is full.
516 */
517static void tower_check_for_read_packet (struct lego_usb_tower *dev)
518{
519 spin_lock_irq (&dev->read_buffer_lock);
520 if (!packet_timeout
521 || time_after(jiffies, dev->read_last_arrival + dev->packet_timeout_jiffies)
522 || dev->read_buffer_length == read_buffer_size) {
523 dev->read_packet_length = dev->read_buffer_length;
524 }
525 dev->interrupt_in_done = 0;
526 spin_unlock_irq (&dev->read_buffer_lock);
527}
528
529
530/**
531 * tower_poll
532 */
533static unsigned int tower_poll (struct file *file, poll_table *wait)
534{
535 struct lego_usb_tower *dev;
536 unsigned int mask = 0;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 dev = file->private_data;
539
Oliver Neukumd35b4ce2009-07-02 12:07:07 +0200540 if (!dev->udev)
541 return POLLERR | POLLHUP;
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 poll_wait(file, &dev->read_wait, wait);
544 poll_wait(file, &dev->write_wait, wait);
545
546 tower_check_for_read_packet(dev);
547 if (dev->read_packet_length > 0) {
548 mask |= POLLIN | POLLRDNORM;
549 }
550 if (!dev->interrupt_out_busy) {
551 mask |= POLLOUT | POLLWRNORM;
552 }
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return mask;
555}
556
557
558/**
559 * tower_llseek
560 */
561static loff_t tower_llseek (struct file *file, loff_t off, int whence)
562{
563 return -ESPIPE; /* unseekable */
564}
565
566
567/**
568 * tower_read
569 */
570static ssize_t tower_read (struct file *file, char __user *buffer, size_t count, loff_t *ppos)
571{
572 struct lego_usb_tower *dev;
573 size_t bytes_to_read;
574 int i;
575 int retval = 0;
576 unsigned long timeout = 0;
577
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700578 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /* lock this object */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800581 if (mutex_lock_interruptible(&dev->lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 retval = -ERESTARTSYS;
583 goto exit;
584 }
585
586 /* verify that the device wasn't unplugged */
587 if (dev->udev == NULL) {
588 retval = -ENODEV;
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700589 printk(KERN_ERR "legousbtower: No device or device unplugged %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 goto unlock_exit;
591 }
592
593 /* verify that we actually have some data to read */
594 if (count == 0) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700595 dev_dbg(&dev->udev->dev, "read request of 0 bytes\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 goto unlock_exit;
597 }
598
599 if (read_timeout) {
600 timeout = jiffies + read_timeout * HZ / 1000;
601 }
602
603 /* wait for data */
604 tower_check_for_read_packet (dev);
605 while (dev->read_packet_length == 0) {
606 if (file->f_flags & O_NONBLOCK) {
607 retval = -EAGAIN;
608 goto unlock_exit;
609 }
610 retval = wait_event_interruptible_timeout(dev->read_wait, dev->interrupt_in_done, dev->packet_timeout_jiffies);
611 if (retval < 0) {
612 goto unlock_exit;
613 }
614
615 /* reset read timeout during read or write activity */
616 if (read_timeout
617 && (dev->read_buffer_length || dev->interrupt_out_busy)) {
618 timeout = jiffies + read_timeout * HZ / 1000;
619 }
620 /* check for read timeout */
621 if (read_timeout && time_after (jiffies, timeout)) {
622 retval = -ETIMEDOUT;
623 goto unlock_exit;
624 }
625 tower_check_for_read_packet (dev);
626 }
627
628 /* copy the data from read_buffer into userspace */
629 bytes_to_read = min(count, dev->read_packet_length);
630
631 if (copy_to_user (buffer, dev->read_buffer, bytes_to_read)) {
632 retval = -EFAULT;
633 goto unlock_exit;
634 }
635
636 spin_lock_irq (&dev->read_buffer_lock);
637 dev->read_buffer_length -= bytes_to_read;
638 dev->read_packet_length -= bytes_to_read;
639 for (i=0; i<dev->read_buffer_length; i++) {
640 dev->read_buffer[i] = dev->read_buffer[i+bytes_to_read];
641 }
642 spin_unlock_irq (&dev->read_buffer_lock);
643
644 retval = bytes_to_read;
645
646unlock_exit:
647 /* unlock the device */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800648 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return retval;
652}
653
654
655/**
656 * tower_write
657 */
658static ssize_t tower_write (struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
659{
660 struct lego_usb_tower *dev;
661 size_t bytes_to_write;
662 int retval = 0;
663
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700664 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 /* lock this object */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800667 if (mutex_lock_interruptible(&dev->lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 retval = -ERESTARTSYS;
669 goto exit;
670 }
671
672 /* verify that the device wasn't unplugged */
673 if (dev->udev == NULL) {
674 retval = -ENODEV;
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700675 printk(KERN_ERR "legousbtower: No device or device unplugged %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 goto unlock_exit;
677 }
678
679 /* verify that we actually have some data to write */
680 if (count == 0) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700681 dev_dbg(&dev->udev->dev, "write request of 0 bytes\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 goto unlock_exit;
683 }
684
685 /* wait until previous transfer is finished */
686 while (dev->interrupt_out_busy) {
687 if (file->f_flags & O_NONBLOCK) {
688 retval = -EAGAIN;
689 goto unlock_exit;
690 }
691 retval = wait_event_interruptible (dev->write_wait, !dev->interrupt_out_busy);
692 if (retval) {
693 goto unlock_exit;
694 }
695 }
696
697 /* write the data into interrupt_out_buffer from userspace */
698 bytes_to_write = min_t(int, count, write_buffer_size);
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700699 dev_dbg(&dev->udev->dev, "%s: count = %Zd, bytes_to_write = %Zd\n",
700 __func__, count, bytes_to_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 if (copy_from_user (dev->interrupt_out_buffer, buffer, bytes_to_write)) {
703 retval = -EFAULT;
704 goto unlock_exit;
705 }
706
707 /* send off the urb */
708 usb_fill_int_urb(dev->interrupt_out_urb,
709 dev->udev,
710 usb_sndintpipe(dev->udev, dev->interrupt_out_endpoint->bEndpointAddress),
711 dev->interrupt_out_buffer,
712 bytes_to_write,
713 tower_interrupt_out_callback,
714 dev,
715 dev->interrupt_out_interval);
716
717 dev->interrupt_out_busy = 1;
718 wmb();
719
720 retval = usb_submit_urb (dev->interrupt_out_urb, GFP_KERNEL);
721 if (retval) {
722 dev->interrupt_out_busy = 0;
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700723 dev_err(&dev->udev->dev,
724 "Couldn't submit interrupt_out_urb %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 goto unlock_exit;
726 }
727 retval = bytes_to_write;
728
729unlock_exit:
730 /* unlock the device */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800731 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return retval;
735}
736
737
738/**
739 * tower_interrupt_in_callback
740 */
David Howells7d12e782006-10-05 14:55:46 +0100741static void tower_interrupt_in_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Ming Leicdc97792008-02-24 18:41:47 +0800743 struct lego_usb_tower *dev = urb->context;
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700744 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 int retval;
746
Harvey Harrison441b62c2008-03-03 16:08:34 -0800747 lego_usb_tower_debug_data(5, __func__, urb->actual_length, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700749 if (status) {
750 if (status == -ENOENT ||
751 status == -ECONNRESET ||
752 status == -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 goto exit;
754 } else {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700755 dev_dbg(&dev->udev->dev,
756 "%s: nonzero status received: %d\n", __func__,
757 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 goto resubmit; /* maybe we can recover */
759 }
760 }
761
762 if (urb->actual_length > 0) {
763 spin_lock (&dev->read_buffer_lock);
764 if (dev->read_buffer_length + urb->actual_length < read_buffer_size) {
765 memcpy (dev->read_buffer + dev->read_buffer_length,
766 dev->interrupt_in_buffer,
767 urb->actual_length);
768 dev->read_buffer_length += urb->actual_length;
769 dev->read_last_arrival = jiffies;
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700770 dev_dbg(&dev->udev->dev, "%s: received %d bytes\n",
771 __func__, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800773 printk(KERN_WARNING "%s: read_buffer overflow, %d bytes dropped", __func__, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775 spin_unlock (&dev->read_buffer_lock);
776 }
777
778resubmit:
779 /* resubmit if we're still running */
780 if (dev->interrupt_in_running && dev->udev) {
781 retval = usb_submit_urb (dev->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700782 if (retval)
783 dev_err(&dev->udev->dev,
784 "%s: usb_submit_urb failed (%d)\n",
785 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
788exit:
789 dev->interrupt_in_done = 1;
790 wake_up_interruptible (&dev->read_wait);
791
Harvey Harrison441b62c2008-03-03 16:08:34 -0800792 lego_usb_tower_debug_data(5, __func__, urb->actual_length, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795
796/**
797 * tower_interrupt_out_callback
798 */
David Howells7d12e782006-10-05 14:55:46 +0100799static void tower_interrupt_out_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Ming Leicdc97792008-02-24 18:41:47 +0800801 struct lego_usb_tower *dev = urb->context;
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700802 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Harvey Harrison441b62c2008-03-03 16:08:34 -0800804 lego_usb_tower_debug_data(5, __func__, urb->actual_length, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* sync/async unlink faults aren't errors */
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700807 if (status && !(status == -ENOENT ||
808 status == -ECONNRESET ||
809 status == -ESHUTDOWN)) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700810 dev_dbg(&dev->udev->dev,
811 "%s: nonzero write bulk status received: %d\n", __func__,
812 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
815 dev->interrupt_out_busy = 0;
816 wake_up_interruptible(&dev->write_wait);
817
Harvey Harrison441b62c2008-03-03 16:08:34 -0800818 lego_usb_tower_debug_data(5, __func__, urb->actual_length, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821
822/**
823 * tower_probe
824 *
825 * Called by the usb core when a new device is connected that it thinks
826 * this driver might be interested in.
827 */
828static int tower_probe (struct usb_interface *interface, const struct usb_device_id *id)
829{
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700830 struct device *idev = &interface->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct usb_device *udev = interface_to_usbdev(interface);
832 struct lego_usb_tower *dev = NULL;
833 struct usb_host_interface *iface_desc;
834 struct usb_endpoint_descriptor* endpoint;
835 struct tower_get_version_reply get_version_reply;
836 int i;
837 int retval = -ENOMEM;
838 int result;
839
Steven Cole093cf722005-05-03 19:07:24 -0600840 /* allocate memory for our device state and initialize it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 dev = kmalloc (sizeof(struct lego_usb_tower), GFP_KERNEL);
843
844 if (dev == NULL) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700845 dev_err(idev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 goto exit;
847 }
848
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800849 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 dev->udev = udev;
852 dev->open_count = 0;
853
854 dev->read_buffer = NULL;
855 dev->read_buffer_length = 0;
856 dev->read_packet_length = 0;
857 spin_lock_init (&dev->read_buffer_lock);
858 dev->packet_timeout_jiffies = packet_timeout * HZ / 1000;
859 dev->read_last_arrival = jiffies;
860
861 init_waitqueue_head (&dev->read_wait);
862 init_waitqueue_head (&dev->write_wait);
863
864 dev->interrupt_in_buffer = NULL;
865 dev->interrupt_in_endpoint = NULL;
866 dev->interrupt_in_urb = NULL;
867 dev->interrupt_in_running = 0;
868 dev->interrupt_in_done = 0;
869
870 dev->interrupt_out_buffer = NULL;
871 dev->interrupt_out_endpoint = NULL;
872 dev->interrupt_out_urb = NULL;
873 dev->interrupt_out_busy = 0;
874
875 iface_desc = interface->cur_altsetting;
876
877 /* set up the endpoint information */
878 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
879 endpoint = &iface_desc->endpoint[i].desc;
880
Luiz Fernando N. Capitulino240661c2006-10-26 13:02:54 -0300881 if (usb_endpoint_xfer_int(endpoint)) {
882 if (usb_endpoint_dir_in(endpoint))
883 dev->interrupt_in_endpoint = endpoint;
884 else
885 dev->interrupt_out_endpoint = endpoint;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 }
888 if(dev->interrupt_in_endpoint == NULL) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700889 dev_err(idev, "interrupt in endpoint not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 goto error;
891 }
892 if (dev->interrupt_out_endpoint == NULL) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700893 dev_err(idev, "interrupt out endpoint not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto error;
895 }
896
897 dev->read_buffer = kmalloc (read_buffer_size, GFP_KERNEL);
898 if (!dev->read_buffer) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700899 dev_err(idev, "Couldn't allocate read_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 goto error;
901 }
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700902 dev->interrupt_in_buffer = kmalloc (usb_endpoint_maxp(dev->interrupt_in_endpoint), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (!dev->interrupt_in_buffer) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700904 dev_err(idev, "Couldn't allocate interrupt_in_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 goto error;
906 }
907 dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
908 if (!dev->interrupt_in_urb) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700909 dev_err(idev, "Couldn't allocate interrupt_in_urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 goto error;
911 }
912 dev->interrupt_out_buffer = kmalloc (write_buffer_size, GFP_KERNEL);
913 if (!dev->interrupt_out_buffer) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700914 dev_err(idev, "Couldn't allocate interrupt_out_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 goto error;
916 }
917 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
918 if (!dev->interrupt_out_urb) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700919 dev_err(idev, "Couldn't allocate interrupt_out_urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 goto error;
921 }
922 dev->interrupt_in_interval = interrupt_in_interval ? interrupt_in_interval : dev->interrupt_in_endpoint->bInterval;
923 dev->interrupt_out_interval = interrupt_out_interval ? interrupt_out_interval : dev->interrupt_out_endpoint->bInterval;
924
925 /* we can register the device now, as it is ready */
926 usb_set_intfdata (interface, dev);
927
928 retval = usb_register_dev (interface, &tower_class);
929
930 if (retval) {
931 /* something prevented us from registering this driver */
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700932 dev_err(idev, "Not able to get a minor for this device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 usb_set_intfdata (interface, NULL);
934 goto error;
935 }
936 dev->minor = interface->minor;
937
938 /* let the user know what node this device is now attached to */
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700939 dev_info(&interface->dev, "LEGO USB Tower #%d now attached to major "
940 "%d minor %d\n", (dev->minor - LEGO_USB_TOWER_MINOR_BASE),
941 USB_MAJOR, dev->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 /* get the firmware version and log it */
944 result = usb_control_msg (udev,
945 usb_rcvctrlpipe(udev, 0),
946 LEGO_USB_TOWER_REQUEST_GET_VERSION,
947 USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_DEVICE,
948 0,
949 0,
950 &get_version_reply,
951 sizeof(get_version_reply),
952 1000);
953 if (result < 0) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700954 dev_err(idev, "LEGO USB Tower get version control request failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 retval = result;
956 goto error;
957 }
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700958 dev_info(&interface->dev, "LEGO USB Tower firmware version is %d.%d "
959 "build %d\n", get_version_reply.major,
960 get_version_reply.minor,
961 le16_to_cpu(get_version_reply.build_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963
964exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return retval;
966
967error:
968 tower_delete(dev);
969 return retval;
970}
971
972
973/**
974 * tower_disconnect
975 *
976 * Called by the usb core when the device is removed from the system.
977 */
978static void tower_disconnect (struct usb_interface *interface)
979{
980 struct lego_usb_tower *dev;
981 int minor;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 dev = usb_get_intfdata (interface);
Oliver Neukum78663ec2007-10-25 15:48:39 +0200984 mutex_lock(&open_disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 usb_set_intfdata (interface, NULL);
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 minor = dev->minor;
988
989 /* give back our minor */
990 usb_deregister_dev (interface, &tower_class);
991
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800992 mutex_lock(&dev->lock);
Oliver Neukum78663ec2007-10-25 15:48:39 +0200993 mutex_unlock(&open_disc_mutex);
Alan Sternd4ead162007-05-22 11:46:41 -0400994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 /* if the device is not opened, then we clean up right now */
996 if (!dev->open_count) {
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800997 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 tower_delete (dev);
999 } else {
1000 dev->udev = NULL;
Oliver Neukumd35b4ce2009-07-02 12:07:07 +02001001 /* wake up pollers */
1002 wake_up_interruptible_all(&dev->read_wait);
1003 wake_up_interruptible_all(&dev->write_wait);
Daniel Walker18bcbcf2008-01-11 08:45:44 -08001004 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -07001007 dev_info(&interface->dev, "LEGO USB Tower #%d now disconnected\n",
1008 (minor - LEGO_USB_TOWER_MINOR_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -08001011module_usb_driver(tower_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013MODULE_AUTHOR(DRIVER_AUTHOR);
1014MODULE_DESCRIPTION(DRIVER_DESC);
1015#ifdef MODULE_LICENSE
1016MODULE_LICENSE("GPL");
1017#endif