blob: a1ed6be8747150c6ce91013308204cf6bb676216 [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
Greg Kroah-Hartman38726bf2013-06-26 16:30:42 -070078#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/kernel.h>
81#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/slab.h>
83#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include <linux/completion.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010085#include <linux/mutex.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080086#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include <linux/usb.h>
88#include <linux/poll.h>
89
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define DRIVER_AUTHOR "Juergen Stuber <starblue@sourceforge.net>"
92#define DRIVER_DESC "LEGO USB Tower Driver"
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/* The defaults are chosen to work with the latest versions of leJOS and NQC.
96 */
97
98/* Some legacy software likes to receive packets in one piece.
99 * In this case read_buffer_size should exceed the maximal packet length
100 * (417 for datalog uploads), and packet_timeout should be set.
101 */
102static int read_buffer_size = 480;
103module_param(read_buffer_size, int, 0);
104MODULE_PARM_DESC(read_buffer_size, "Read buffer size");
105
106/* Some legacy software likes to send packets in one piece.
107 * In this case write_buffer_size should exceed the maximal packet length
108 * (417 for firmware and program downloads).
109 * A problem with long writes is that the following read may time out
110 * if the software is not prepared to wait long enough.
111 */
112static int write_buffer_size = 480;
113module_param(write_buffer_size, int, 0);
114MODULE_PARM_DESC(write_buffer_size, "Write buffer size");
115
116/* Some legacy software expects reads to contain whole LASM packets.
117 * To achieve this, characters which arrive before a packet timeout
118 * occurs will be returned in a single read operation.
119 * A problem with long reads is that the software may time out
120 * if it is not prepared to wait long enough.
121 * The packet timeout should be greater than the time between the
122 * reception of subsequent characters, which should arrive about
123 * every 5ms for the standard 2400 baud.
124 * Set it to 0 to disable.
125 */
126static int packet_timeout = 50;
127module_param(packet_timeout, int, 0);
128MODULE_PARM_DESC(packet_timeout, "Packet timeout in ms");
129
130/* Some legacy software expects blocking reads to time out.
131 * Timeout occurs after the specified time of read and write inactivity.
132 * Set it to 0 to disable.
133 */
134static int read_timeout = 200;
135module_param(read_timeout, int, 0);
136MODULE_PARM_DESC(read_timeout, "Read timeout in ms");
137
138/* As of kernel version 2.6.4 ehci-hcd uses an
139 * "only one interrupt transfer per frame" shortcut
140 * to simplify the scheduling of periodic transfers.
141 * This conflicts with our standard 1ms intervals for in and out URBs.
142 * We use default intervals of 2ms for in and 8ms for out transfers,
143 * which is fast enough for 2400 baud and allows a small additional load.
144 * Increase the interval to allow more devices that do interrupt transfers,
145 * or set to 0 to use the standard interval from the endpoint descriptors.
146 */
147static int interrupt_in_interval = 2;
148module_param(interrupt_in_interval, int, 0);
149MODULE_PARM_DESC(interrupt_in_interval, "Interrupt in interval in ms");
150
151static int interrupt_out_interval = 8;
152module_param(interrupt_out_interval, int, 0);
153MODULE_PARM_DESC(interrupt_out_interval, "Interrupt out interval in ms");
154
155/* Define these values to match your device */
156#define LEGO_USB_TOWER_VENDOR_ID 0x0694
157#define LEGO_USB_TOWER_PRODUCT_ID 0x0001
158
159/* Vendor requests */
160#define LEGO_USB_TOWER_REQUEST_RESET 0x04
161#define LEGO_USB_TOWER_REQUEST_GET_VERSION 0xFD
162
163struct tower_reset_reply {
164 __le16 size; /* little-endian */
165 __u8 err_code;
166 __u8 spare;
167} __attribute__ ((packed));
168
169struct tower_get_version_reply {
170 __le16 size; /* little-endian */
171 __u8 err_code;
172 __u8 spare;
173 __u8 major;
174 __u8 minor;
175 __le16 build_no; /* little-endian */
176} __attribute__ ((packed));
177
178
179/* table of devices that work with this driver */
Németh Márton33b9e162010-01-10 15:34:45 +0100180static const struct usb_device_id tower_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 { USB_DEVICE(LEGO_USB_TOWER_VENDOR_ID, LEGO_USB_TOWER_PRODUCT_ID) },
182 { } /* Terminating entry */
183};
184
185MODULE_DEVICE_TABLE (usb, tower_table);
186
187#define LEGO_USB_TOWER_MINOR_BASE 160
188
189
190/* Structure to hold all of our device specific stuff */
191struct lego_usb_tower {
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800192 struct mutex lock; /* locks this structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct usb_device* udev; /* save off the usb device pointer */
194 unsigned char minor; /* the starting minor number for this device */
195
196 int open_count; /* number of times this port has been opened */
Johan Hovold32031fc2019-09-19 10:30:38 +0200197 unsigned long disconnected:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 char* read_buffer;
200 size_t read_buffer_length; /* this much came in */
201 size_t read_packet_length; /* this much will be returned on read */
202 spinlock_t read_buffer_lock;
203 int packet_timeout_jiffies;
204 unsigned long read_last_arrival;
205
206 wait_queue_head_t read_wait;
207 wait_queue_head_t write_wait;
208
209 char* interrupt_in_buffer;
210 struct usb_endpoint_descriptor* interrupt_in_endpoint;
211 struct urb* interrupt_in_urb;
212 int interrupt_in_interval;
213 int interrupt_in_running;
214 int interrupt_in_done;
215
216 char* interrupt_out_buffer;
217 struct usb_endpoint_descriptor* interrupt_out_endpoint;
218 struct urb* interrupt_out_urb;
219 int interrupt_out_interval;
220 int interrupt_out_busy;
221
222};
223
224
225/* local function prototypes */
226static ssize_t tower_read (struct file *file, char __user *buffer, size_t count, loff_t *ppos);
227static ssize_t tower_write (struct file *file, const char __user *buffer, size_t count, loff_t *ppos);
228static inline void tower_delete (struct lego_usb_tower *dev);
229static int tower_open (struct inode *inode, struct file *file);
230static int tower_release (struct inode *inode, struct file *file);
231static unsigned int tower_poll (struct file *file, poll_table *wait);
232static loff_t tower_llseek (struct file *file, loff_t off, int whence);
233
234static void tower_abort_transfers (struct lego_usb_tower *dev);
235static void tower_check_for_read_packet (struct lego_usb_tower *dev);
David Howells7d12e782006-10-05 14:55:46 +0100236static void tower_interrupt_in_callback (struct urb *urb);
237static void tower_interrupt_out_callback (struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239static int tower_probe (struct usb_interface *interface, const struct usb_device_id *id);
240static void tower_disconnect (struct usb_interface *interface);
241
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/* file operations needed when we register this driver */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300244static const struct file_operations tower_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .owner = THIS_MODULE,
246 .read = tower_read,
247 .write = tower_write,
248 .open = tower_open,
249 .release = tower_release,
250 .poll = tower_poll,
251 .llseek = tower_llseek,
252};
253
Al Viro2c9ede52011-07-23 20:24:48 -0400254static char *legousbtower_devnode(struct device *dev, umode_t *mode)
Kay Sieversf7a386c2009-04-30 15:23:42 +0200255{
256 return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev));
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/*
260 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700261 * and to have the device registered with the driver core
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
263static struct usb_class_driver tower_class = {
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700264 .name = "legousbtower%d",
Kay Sieverse454cea2009-09-18 23:01:12 +0200265 .devnode = legousbtower_devnode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 .fops = &tower_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .minor_base = LEGO_USB_TOWER_MINOR_BASE,
268};
269
270
271/* usb specific object needed to register this driver with the usb subsystem */
272static struct usb_driver tower_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 .name = "legousbtower",
274 .probe = tower_probe,
275 .disconnect = tower_disconnect,
276 .id_table = tower_table,
277};
278
279
280/**
281 * lego_usb_tower_debug_data
282 */
Greg Kroah-Hartman4dae9962013-06-26 16:30:41 -0700283static inline void lego_usb_tower_debug_data(struct device *dev,
284 const char *function, int size,
285 const unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Greg Kroah-Hartman4dae9962013-06-26 16:30:41 -0700287 dev_dbg(dev, "%s - length = %d, data = %*ph\n",
288 function, size, size, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291
292/**
293 * tower_delete
294 */
295static inline void tower_delete (struct lego_usb_tower *dev)
296{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* free data structures */
Mariusz Kozlowskif53510e2006-11-08 15:36:14 +0100298 usb_free_urb(dev->interrupt_in_urb);
299 usb_free_urb(dev->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 kfree (dev->read_buffer);
301 kfree (dev->interrupt_in_buffer);
302 kfree (dev->interrupt_out_buffer);
Johan Hovold5f5264e2019-10-09 17:38:47 +0200303 usb_put_dev(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 kfree (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307
308/**
309 * tower_open
310 */
311static int tower_open (struct inode *inode, struct file *file)
312{
313 struct lego_usb_tower *dev = NULL;
314 int subminor;
315 int retval = 0;
316 struct usb_interface *interface;
Maksim Salau942a4872017-04-25 22:49:21 +0300317 struct tower_reset_reply *reset_reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 int result;
319
Maksim Salau942a4872017-04-25 22:49:21 +0300320 reset_reply = kmalloc(sizeof(*reset_reply), GFP_KERNEL);
321
322 if (!reset_reply) {
323 retval = -ENOMEM;
324 goto exit;
325 }
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 nonseekable_open(inode, file);
328 subminor = iminor(inode);
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 interface = usb_find_interface (&tower_driver, subminor);
331
332 if (!interface) {
Greg Kroah-Hartman38726bf2013-06-26 16:30:42 -0700333 pr_err("error, can't find device for minor %d\n", subminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 retval = -ENODEV;
Alan Sternd4ead162007-05-22 11:46:41 -0400335 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337
338 dev = usb_get_intfdata(interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!dev) {
340 retval = -ENODEV;
Alan Sternd4ead162007-05-22 11:46:41 -0400341 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
344 /* lock this device */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800345 if (mutex_lock_interruptible(&dev->lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 retval = -ERESTARTSYS;
Alan Sternd4ead162007-05-22 11:46:41 -0400347 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
Oliver Neukum78663ec2007-10-25 15:48:39 +0200350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* allow opening only once */
352 if (dev->open_count) {
353 retval = -EBUSY;
354 goto unlock_exit;
355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* reset the tower */
358 result = usb_control_msg (dev->udev,
359 usb_rcvctrlpipe(dev->udev, 0),
360 LEGO_USB_TOWER_REQUEST_RESET,
361 USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_DEVICE,
362 0,
363 0,
Maksim Salau942a4872017-04-25 22:49:21 +0300364 reset_reply,
365 sizeof(*reset_reply),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 1000);
367 if (result < 0) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700368 dev_err(&dev->udev->dev,
369 "LEGO USB Tower reset control request failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 retval = result;
371 goto unlock_exit;
372 }
373
374 /* initialize in direction */
375 dev->read_buffer_length = 0;
376 dev->read_packet_length = 0;
377 usb_fill_int_urb (dev->interrupt_in_urb,
378 dev->udev,
379 usb_rcvintpipe(dev->udev, dev->interrupt_in_endpoint->bEndpointAddress),
380 dev->interrupt_in_buffer,
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700381 usb_endpoint_maxp(dev->interrupt_in_endpoint),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 tower_interrupt_in_callback,
383 dev,
384 dev->interrupt_in_interval);
385
386 dev->interrupt_in_running = 1;
387 dev->interrupt_in_done = 0;
388 mb();
389
390 retval = usb_submit_urb (dev->interrupt_in_urb, GFP_KERNEL);
391 if (retval) {
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700392 dev_err(&dev->udev->dev,
393 "Couldn't submit interrupt_in_urb %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 dev->interrupt_in_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 goto unlock_exit;
396 }
397
398 /* save device in the file's private structure */
399 file->private_data = dev;
400
Johan Hovold2f243872019-09-19 10:30:39 +0200401 dev->open_count = 1;
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403unlock_exit:
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800404 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Alan Sternd4ead162007-05-22 11:46:41 -0400406exit:
Maksim Salau942a4872017-04-25 22:49:21 +0300407 kfree(reset_reply);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return retval;
409}
410
411/**
412 * tower_release
413 */
414static int tower_release (struct inode *inode, struct file *file)
415{
416 struct lego_usb_tower *dev;
417 int retval = 0;
418
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700419 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 retval = -ENODEV;
Johan Hovold99070542019-09-19 10:30:37 +0200423 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
Johan Hovoldddc87ec2019-10-10 14:58:35 +0200426 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if (dev->open_count != 1) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700429 dev_dbg(&dev->udev->dev, "%s: device not opened exactly once\n",
430 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 retval = -ENODEV;
432 goto unlock_exit;
433 }
Johan Hovold32031fc2019-09-19 10:30:38 +0200434
435 if (dev->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* the device was unplugged before the file was released */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800437
438 /* unlock here as tower_delete frees dev */
439 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 tower_delete (dev);
441 goto exit;
442 }
443
444 /* wait until write transfer is finished */
445 if (dev->interrupt_out_busy) {
446 wait_event_interruptible_timeout (dev->write_wait, !dev->interrupt_out_busy, 2 * HZ);
447 }
448 tower_abort_transfers (dev);
449 dev->open_count = 0;
450
451unlock_exit:
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800452 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return retval;
455}
456
457
458/**
459 * tower_abort_transfers
460 * aborts transfers and frees associated data structures
461 */
462static void tower_abort_transfers (struct lego_usb_tower *dev)
463{
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700464 if (dev == NULL)
Greg Kroah-Hartmand26f6e52013-06-26 16:30:39 -0700465 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* shutdown transfer */
468 if (dev->interrupt_in_running) {
469 dev->interrupt_in_running = 0;
470 mb();
Johan Hovold32031fc2019-09-19 10:30:38 +0200471 usb_kill_urb(dev->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Johan Hovold32031fc2019-09-19 10:30:38 +0200473 if (dev->interrupt_out_busy)
Mariusz Kozlowskif53510e2006-11-08 15:36:14 +0100474 usb_kill_urb(dev->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477
478/**
479 * tower_check_for_read_packet
480 *
481 * To get correct semantics for signals and non-blocking I/O
482 * with packetizing we pretend not to see any data in the read buffer
483 * until it has been there unchanged for at least
484 * dev->packet_timeout_jiffies, or until the buffer is full.
485 */
486static void tower_check_for_read_packet (struct lego_usb_tower *dev)
487{
488 spin_lock_irq (&dev->read_buffer_lock);
489 if (!packet_timeout
490 || time_after(jiffies, dev->read_last_arrival + dev->packet_timeout_jiffies)
491 || dev->read_buffer_length == read_buffer_size) {
492 dev->read_packet_length = dev->read_buffer_length;
493 }
494 dev->interrupt_in_done = 0;
495 spin_unlock_irq (&dev->read_buffer_lock);
496}
497
498
499/**
500 * tower_poll
501 */
502static unsigned int tower_poll (struct file *file, poll_table *wait)
503{
504 struct lego_usb_tower *dev;
505 unsigned int mask = 0;
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 dev = file->private_data;
508
Johan Hovold32031fc2019-09-19 10:30:38 +0200509 if (dev->disconnected)
Oliver Neukumd35b4ce2009-07-02 12:07:07 +0200510 return POLLERR | POLLHUP;
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 poll_wait(file, &dev->read_wait, wait);
513 poll_wait(file, &dev->write_wait, wait);
514
515 tower_check_for_read_packet(dev);
516 if (dev->read_packet_length > 0) {
517 mask |= POLLIN | POLLRDNORM;
518 }
519 if (!dev->interrupt_out_busy) {
520 mask |= POLLOUT | POLLWRNORM;
521 }
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return mask;
524}
525
526
527/**
528 * tower_llseek
529 */
530static loff_t tower_llseek (struct file *file, loff_t off, int whence)
531{
532 return -ESPIPE; /* unseekable */
533}
534
535
536/**
537 * tower_read
538 */
539static ssize_t tower_read (struct file *file, char __user *buffer, size_t count, loff_t *ppos)
540{
541 struct lego_usb_tower *dev;
542 size_t bytes_to_read;
543 int i;
544 int retval = 0;
545 unsigned long timeout = 0;
546
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700547 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /* lock this object */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800550 if (mutex_lock_interruptible(&dev->lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 retval = -ERESTARTSYS;
552 goto exit;
553 }
554
555 /* verify that the device wasn't unplugged */
Johan Hovold32031fc2019-09-19 10:30:38 +0200556 if (dev->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 retval = -ENODEV;
Greg Kroah-Hartman38726bf2013-06-26 16:30:42 -0700558 pr_err("No device or device unplugged %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto unlock_exit;
560 }
561
562 /* verify that we actually have some data to read */
563 if (count == 0) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700564 dev_dbg(&dev->udev->dev, "read request of 0 bytes\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 goto unlock_exit;
566 }
567
568 if (read_timeout) {
Nicholas Mc Guire8f7e9472015-02-06 04:58:31 -0500569 timeout = jiffies + msecs_to_jiffies(read_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
572 /* wait for data */
573 tower_check_for_read_packet (dev);
574 while (dev->read_packet_length == 0) {
575 if (file->f_flags & O_NONBLOCK) {
576 retval = -EAGAIN;
577 goto unlock_exit;
578 }
579 retval = wait_event_interruptible_timeout(dev->read_wait, dev->interrupt_in_done, dev->packet_timeout_jiffies);
580 if (retval < 0) {
581 goto unlock_exit;
582 }
583
584 /* reset read timeout during read or write activity */
585 if (read_timeout
586 && (dev->read_buffer_length || dev->interrupt_out_busy)) {
Nicholas Mc Guire8f7e9472015-02-06 04:58:31 -0500587 timeout = jiffies + msecs_to_jiffies(read_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589 /* check for read timeout */
590 if (read_timeout && time_after (jiffies, timeout)) {
591 retval = -ETIMEDOUT;
592 goto unlock_exit;
593 }
594 tower_check_for_read_packet (dev);
595 }
596
597 /* copy the data from read_buffer into userspace */
598 bytes_to_read = min(count, dev->read_packet_length);
599
600 if (copy_to_user (buffer, dev->read_buffer, bytes_to_read)) {
601 retval = -EFAULT;
602 goto unlock_exit;
603 }
604
605 spin_lock_irq (&dev->read_buffer_lock);
606 dev->read_buffer_length -= bytes_to_read;
607 dev->read_packet_length -= bytes_to_read;
608 for (i=0; i<dev->read_buffer_length; i++) {
609 dev->read_buffer[i] = dev->read_buffer[i+bytes_to_read];
610 }
611 spin_unlock_irq (&dev->read_buffer_lock);
612
613 retval = bytes_to_read;
614
615unlock_exit:
616 /* unlock the device */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800617 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return retval;
621}
622
623
624/**
625 * tower_write
626 */
627static ssize_t tower_write (struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
628{
629 struct lego_usb_tower *dev;
630 size_t bytes_to_write;
631 int retval = 0;
632
Joe Perches5bd6e8b2010-07-12 13:50:12 -0700633 dev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 /* lock this object */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800636 if (mutex_lock_interruptible(&dev->lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 retval = -ERESTARTSYS;
638 goto exit;
639 }
640
641 /* verify that the device wasn't unplugged */
Johan Hovold32031fc2019-09-19 10:30:38 +0200642 if (dev->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 retval = -ENODEV;
Greg Kroah-Hartman38726bf2013-06-26 16:30:42 -0700644 pr_err("No device or device unplugged %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 goto unlock_exit;
646 }
647
648 /* verify that we actually have some data to write */
649 if (count == 0) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700650 dev_dbg(&dev->udev->dev, "write request of 0 bytes\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 goto unlock_exit;
652 }
653
654 /* wait until previous transfer is finished */
655 while (dev->interrupt_out_busy) {
656 if (file->f_flags & O_NONBLOCK) {
657 retval = -EAGAIN;
658 goto unlock_exit;
659 }
660 retval = wait_event_interruptible (dev->write_wait, !dev->interrupt_out_busy);
661 if (retval) {
662 goto unlock_exit;
663 }
664 }
665
666 /* write the data into interrupt_out_buffer from userspace */
667 bytes_to_write = min_t(int, count, write_buffer_size);
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800668 dev_dbg(&dev->udev->dev, "%s: count = %zd, bytes_to_write = %zd\n",
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700669 __func__, count, bytes_to_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (copy_from_user (dev->interrupt_out_buffer, buffer, bytes_to_write)) {
672 retval = -EFAULT;
673 goto unlock_exit;
674 }
675
676 /* send off the urb */
677 usb_fill_int_urb(dev->interrupt_out_urb,
678 dev->udev,
679 usb_sndintpipe(dev->udev, dev->interrupt_out_endpoint->bEndpointAddress),
680 dev->interrupt_out_buffer,
681 bytes_to_write,
682 tower_interrupt_out_callback,
683 dev,
684 dev->interrupt_out_interval);
685
686 dev->interrupt_out_busy = 1;
687 wmb();
688
689 retval = usb_submit_urb (dev->interrupt_out_urb, GFP_KERNEL);
690 if (retval) {
691 dev->interrupt_out_busy = 0;
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700692 dev_err(&dev->udev->dev,
693 "Couldn't submit interrupt_out_urb %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 goto unlock_exit;
695 }
696 retval = bytes_to_write;
697
698unlock_exit:
699 /* unlock the device */
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800700 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return retval;
704}
705
706
707/**
708 * tower_interrupt_in_callback
709 */
David Howells7d12e782006-10-05 14:55:46 +0100710static void tower_interrupt_in_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Ming Leicdc97792008-02-24 18:41:47 +0800712 struct lego_usb_tower *dev = urb->context;
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700713 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int retval;
715
Greg Kroah-Hartman4dae9962013-06-26 16:30:41 -0700716 lego_usb_tower_debug_data(&dev->udev->dev, __func__,
717 urb->actual_length, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700719 if (status) {
720 if (status == -ENOENT ||
721 status == -ECONNRESET ||
722 status == -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 goto exit;
724 } else {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700725 dev_dbg(&dev->udev->dev,
726 "%s: nonzero status received: %d\n", __func__,
727 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 goto resubmit; /* maybe we can recover */
729 }
730 }
731
732 if (urb->actual_length > 0) {
733 spin_lock (&dev->read_buffer_lock);
734 if (dev->read_buffer_length + urb->actual_length < read_buffer_size) {
735 memcpy (dev->read_buffer + dev->read_buffer_length,
736 dev->interrupt_in_buffer,
737 urb->actual_length);
738 dev->read_buffer_length += urb->actual_length;
739 dev->read_last_arrival = jiffies;
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700740 dev_dbg(&dev->udev->dev, "%s: received %d bytes\n",
741 __func__, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 } else {
Greg Kroah-Hartman38726bf2013-06-26 16:30:42 -0700743 pr_warn("read_buffer overflow, %d bytes dropped\n",
744 urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746 spin_unlock (&dev->read_buffer_lock);
747 }
748
749resubmit:
750 /* resubmit if we're still running */
Johan Hovold32031fc2019-09-19 10:30:38 +0200751 if (dev->interrupt_in_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 retval = usb_submit_urb (dev->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700753 if (retval)
754 dev_err(&dev->udev->dev,
755 "%s: usb_submit_urb failed (%d)\n",
756 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758
759exit:
760 dev->interrupt_in_done = 1;
761 wake_up_interruptible (&dev->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764
765/**
766 * tower_interrupt_out_callback
767 */
David Howells7d12e782006-10-05 14:55:46 +0100768static void tower_interrupt_out_callback (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Ming Leicdc97792008-02-24 18:41:47 +0800770 struct lego_usb_tower *dev = urb->context;
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700771 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Greg Kroah-Hartman4dae9962013-06-26 16:30:41 -0700773 lego_usb_tower_debug_data(&dev->udev->dev, __func__,
774 urb->actual_length, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /* sync/async unlink faults aren't errors */
Greg Kroah-Hartman64771a02007-07-18 10:58:02 -0700777 if (status && !(status == -ENOENT ||
778 status == -ECONNRESET ||
779 status == -ESHUTDOWN)) {
Greg Kroah-Hartmanfef526c2013-06-26 16:30:40 -0700780 dev_dbg(&dev->udev->dev,
781 "%s: nonzero write bulk status received: %d\n", __func__,
782 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
785 dev->interrupt_out_busy = 0;
786 wake_up_interruptible(&dev->write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789
790/**
791 * tower_probe
792 *
793 * Called by the usb core when a new device is connected that it thinks
794 * this driver might be interested in.
795 */
796static int tower_probe (struct usb_interface *interface, const struct usb_device_id *id)
797{
Greg Kroah-Hartman9d974b22012-04-20 16:53:48 -0700798 struct device *idev = &interface->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct usb_device *udev = interface_to_usbdev(interface);
800 struct lego_usb_tower *dev = NULL;
Maksim Salau942a4872017-04-25 22:49:21 +0300801 struct tower_get_version_reply *get_version_reply = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int retval = -ENOMEM;
803 int result;
804
Steven Cole093cf722005-05-03 19:07:24 -0600805 /* allocate memory for our device state and initialize it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 dev = kmalloc (sizeof(struct lego_usb_tower), GFP_KERNEL);
808
Wolfram Sang49d8ffa2016-08-25 19:39:19 +0200809 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800812 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Johan Hovold5f5264e2019-10-09 17:38:47 +0200814 dev->udev = usb_get_dev(udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 dev->open_count = 0;
Johan Hovold32031fc2019-09-19 10:30:38 +0200816 dev->disconnected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 dev->read_buffer = NULL;
819 dev->read_buffer_length = 0;
820 dev->read_packet_length = 0;
821 spin_lock_init (&dev->read_buffer_lock);
Nicholas Mc Guire8f7e9472015-02-06 04:58:31 -0500822 dev->packet_timeout_jiffies = msecs_to_jiffies(packet_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 dev->read_last_arrival = jiffies;
824
825 init_waitqueue_head (&dev->read_wait);
826 init_waitqueue_head (&dev->write_wait);
827
828 dev->interrupt_in_buffer = NULL;
829 dev->interrupt_in_endpoint = NULL;
830 dev->interrupt_in_urb = NULL;
831 dev->interrupt_in_running = 0;
832 dev->interrupt_in_done = 0;
833
834 dev->interrupt_out_buffer = NULL;
835 dev->interrupt_out_endpoint = NULL;
836 dev->interrupt_out_urb = NULL;
837 dev->interrupt_out_busy = 0;
838
Johan Hovold9b181162017-03-17 11:35:41 +0100839 result = usb_find_common_endpoints_reverse(interface->cur_altsetting,
840 NULL, NULL,
841 &dev->interrupt_in_endpoint,
842 &dev->interrupt_out_endpoint);
843 if (result) {
844 dev_err(idev, "interrupt endpoints not found\n");
845 retval = result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 goto error;
847 }
848
849 dev->read_buffer = kmalloc (read_buffer_size, GFP_KERNEL);
Wolfram Sang49d8ffa2016-08-25 19:39:19 +0200850 if (!dev->read_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 goto error;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700852 dev->interrupt_in_buffer = kmalloc (usb_endpoint_maxp(dev->interrupt_in_endpoint), GFP_KERNEL);
Wolfram Sang49d8ffa2016-08-25 19:39:19 +0200853 if (!dev->interrupt_in_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sanga131f412016-08-11 23:14:41 +0200856 if (!dev->interrupt_in_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 dev->interrupt_out_buffer = kmalloc (write_buffer_size, GFP_KERNEL);
Wolfram Sang49d8ffa2016-08-25 19:39:19 +0200859 if (!dev->interrupt_out_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sanga131f412016-08-11 23:14:41 +0200862 if (!dev->interrupt_out_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 dev->interrupt_in_interval = interrupt_in_interval ? interrupt_in_interval : dev->interrupt_in_endpoint->bInterval;
865 dev->interrupt_out_interval = interrupt_out_interval ? interrupt_out_interval : dev->interrupt_out_endpoint->bInterval;
866
Maksim Salau942a4872017-04-25 22:49:21 +0300867 get_version_reply = kmalloc(sizeof(*get_version_reply), GFP_KERNEL);
868
869 if (!get_version_reply) {
870 retval = -ENOMEM;
871 goto error;
872 }
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /* get the firmware version and log it */
875 result = usb_control_msg (udev,
876 usb_rcvctrlpipe(udev, 0),
877 LEGO_USB_TOWER_REQUEST_GET_VERSION,
878 USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_DEVICE,
879 0,
880 0,
Maksim Salau942a4872017-04-25 22:49:21 +0300881 get_version_reply,
882 sizeof(*get_version_reply),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 1000);
Dan Carpenterd7030f02019-10-11 17:11:15 +0300884 if (result != sizeof(*get_version_reply)) {
Johan Hovoldb076bfe2019-09-19 10:30:36 +0200885 if (result >= 0)
886 result = -EIO;
887 dev_err(idev, "get version request failed: %d\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 retval = result;
889 goto error;
890 }
Maksim Salau942a4872017-04-25 22:49:21 +0300891 dev_info(&interface->dev,
892 "LEGO USB Tower firmware version is %d.%d build %d\n",
893 get_version_reply->major,
894 get_version_reply->minor,
895 le16_to_cpu(get_version_reply->build_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Greg Kroah-Hartman2fae9e52016-09-19 19:09:51 +0100897 /* we can register the device now, as it is ready */
898 usb_set_intfdata (interface, dev);
899
900 retval = usb_register_dev (interface, &tower_class);
901
902 if (retval) {
903 /* something prevented us from registering this driver */
904 dev_err(idev, "Not able to get a minor for this device.\n");
Greg Kroah-Hartman2fae9e52016-09-19 19:09:51 +0100905 goto error;
906 }
907 dev->minor = interface->minor;
908
909 /* let the user know what node this device is now attached to */
910 dev_info(&interface->dev, "LEGO USB Tower #%d now attached to major "
911 "%d minor %d\n", (dev->minor - LEGO_USB_TOWER_MINOR_BASE),
912 USB_MAJOR, dev->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914exit:
Maksim Salau0bd193d2017-05-13 23:49:26 +0300915 kfree(get_version_reply);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return retval;
917
918error:
Maksim Salau942a4872017-04-25 22:49:21 +0300919 kfree(get_version_reply);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 tower_delete(dev);
921 return retval;
922}
923
924
925/**
926 * tower_disconnect
927 *
928 * Called by the usb core when the device is removed from the system.
929 */
930static void tower_disconnect (struct usb_interface *interface)
931{
932 struct lego_usb_tower *dev;
933 int minor;
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 dev = usb_get_intfdata (interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 minor = dev->minor;
938
Johan Hovold99070542019-09-19 10:30:37 +0200939 /* give back our minor and prevent further open() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 usb_deregister_dev (interface, &tower_class);
941
Johan Hovold32031fc2019-09-19 10:30:38 +0200942 /* stop I/O */
943 usb_poison_urb(dev->interrupt_in_urb);
944 usb_poison_urb(dev->interrupt_out_urb);
945
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800946 mutex_lock(&dev->lock);
Alan Sternd4ead162007-05-22 11:46:41 -0400947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* if the device is not opened, then we clean up right now */
949 if (!dev->open_count) {
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800950 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 tower_delete (dev);
952 } else {
Johan Hovold32031fc2019-09-19 10:30:38 +0200953 dev->disconnected = 1;
Oliver Neukumd35b4ce2009-07-02 12:07:07 +0200954 /* wake up pollers */
955 wake_up_interruptible_all(&dev->read_wait);
956 wake_up_interruptible_all(&dev->write_wait);
Daniel Walker18bcbcf2008-01-11 08:45:44 -0800957 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700960 dev_info(&interface->dev, "LEGO USB Tower #%d now disconnected\n",
961 (minor - LEGO_USB_TOWER_MINOR_BASE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800964module_usb_driver(tower_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966MODULE_AUTHOR(DRIVER_AUTHOR);
967MODULE_DESCRIPTION(DRIVER_DESC);
968#ifdef MODULE_LICENSE
969MODULE_LICENSE("GPL");
970#endif