2 * LEGO USB Tower driver
4 * Copyright (C) 2003 David Glance <davidgsf@sourceforge.net>
5 * 2001-2004 Juergen Stuber <starblue@users.sourceforge.net>
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.
12 * derived from USB Skeleton driver - 0.5
13 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
20 * - simplified buffering, one-shot URBs for writing
22 * - removed IOCTL (setting power/mode is more complicated, postponed)
24 * - added vendor commands for mode of operation and power level in open
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
34 * - changed dbg() to use __func__ rather than deprecated __FUNCTION__
35 * 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>
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
51 * - added nonblocking I/O
52 * - changed back __func__ to __FUNCTION__
53 * - 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
78 #include <linux/kernel.h>
79 #include <linux/errno.h>
80 #include <linux/init.h>
81 #include <linux/slab.h>
82 #include <linux/module.h>
83 #include <linux/completion.h>
84 #include <linux/mutex.h>
85 #include <asm/uaccess.h>
86 #include <linux/usb.h>
87 #include <linux/poll.h>
90 #ifdef CONFIG_USB_DEBUG
96 /* Use our own dbg macro */
98 #define dbg(lvl, format, arg...) do { if (debug >= lvl) printk(KERN_DEBUG __FILE__ ": " format "\n", ## arg); } while (0)
101 /* Version Information */
102 #define DRIVER_VERSION "v0.96"
103 #define DRIVER_AUTHOR "Juergen Stuber <starblue@sourceforge.net>"
104 #define DRIVER_DESC "LEGO USB Tower Driver"
106 /* Module parameters */
107 module_param(debug, int, S_IRUGO | S_IWUSR);
108 MODULE_PARM_DESC(debug, "Debug enabled or not");
110 /* The defaults are chosen to work with the latest versions of leJOS and NQC.
113 /* Some legacy software likes to receive packets in one piece.
114 * In this case read_buffer_size should exceed the maximal packet length
115 * (417 for datalog uploads), and packet_timeout should be set.
117 static int read_buffer_size = 480;
118 module_param(read_buffer_size, int, 0);
119 MODULE_PARM_DESC(read_buffer_size, "Read buffer size");
121 /* Some legacy software likes to send packets in one piece.
122 * In this case write_buffer_size should exceed the maximal packet length
123 * (417 for firmware and program downloads).
124 * A problem with long writes is that the following read may time out
125 * if the software is not prepared to wait long enough.
127 static int write_buffer_size = 480;
128 module_param(write_buffer_size, int, 0);
129 MODULE_PARM_DESC(write_buffer_size, "Write buffer size");
131 /* Some legacy software expects reads to contain whole LASM packets.
132 * To achieve this, characters which arrive before a packet timeout
133 * occurs will be returned in a single read operation.
134 * A problem with long reads is that the software may time out
135 * if it is not prepared to wait long enough.
136 * The packet timeout should be greater than the time between the
137 * reception of subsequent characters, which should arrive about
138 * every 5ms for the standard 2400 baud.
139 * Set it to 0 to disable.
141 static int packet_timeout = 50;
142 module_param(packet_timeout, int, 0);
143 MODULE_PARM_DESC(packet_timeout, "Packet timeout in ms");
145 /* Some legacy software expects blocking reads to time out.
146 * Timeout occurs after the specified time of read and write inactivity.
147 * Set it to 0 to disable.
149 static int read_timeout = 200;
150 module_param(read_timeout, int, 0);
151 MODULE_PARM_DESC(read_timeout, "Read timeout in ms");
153 /* As of kernel version 2.6.4 ehci-hcd uses an
154 * "only one interrupt transfer per frame" shortcut
155 * to simplify the scheduling of periodic transfers.
156 * This conflicts with our standard 1ms intervals for in and out URBs.
157 * We use default intervals of 2ms for in and 8ms for out transfers,
158 * which is fast enough for 2400 baud and allows a small additional load.
159 * Increase the interval to allow more devices that do interrupt transfers,
160 * or set to 0 to use the standard interval from the endpoint descriptors.
162 static int interrupt_in_interval = 2;
163 module_param(interrupt_in_interval, int, 0);
164 MODULE_PARM_DESC(interrupt_in_interval, "Interrupt in interval in ms");
166 static int interrupt_out_interval = 8;
167 module_param(interrupt_out_interval, int, 0);
168 MODULE_PARM_DESC(interrupt_out_interval, "Interrupt out interval in ms");
170 /* Define these values to match your device */
171 #define LEGO_USB_TOWER_VENDOR_ID 0x0694
172 #define LEGO_USB_TOWER_PRODUCT_ID 0x0001
174 /* Vendor requests */
175 #define LEGO_USB_TOWER_REQUEST_RESET 0x04
176 #define LEGO_USB_TOWER_REQUEST_GET_VERSION 0xFD
178 struct tower_reset_reply {
179 __le16 size; /* little-endian */
182 } __attribute__ ((packed));
184 struct tower_get_version_reply {
185 __le16 size; /* little-endian */
190 __le16 build_no; /* little-endian */
191 } __attribute__ ((packed));
194 /* table of devices that work with this driver */
195 static struct usb_device_id tower_table [] = {
196 { USB_DEVICE(LEGO_USB_TOWER_VENDOR_ID, LEGO_USB_TOWER_PRODUCT_ID) },
197 { } /* Terminating entry */
200 MODULE_DEVICE_TABLE (usb, tower_table);
201 static DEFINE_MUTEX(open_disc_mutex);
203 #define LEGO_USB_TOWER_MINOR_BASE 160
206 /* Structure to hold all of our device specific stuff */
207 struct lego_usb_tower {
208 struct semaphore sem; /* locks this structure */
209 struct usb_device* udev; /* save off the usb device pointer */
210 unsigned char minor; /* the starting minor number for this device */
212 int open_count; /* number of times this port has been opened */
215 size_t read_buffer_length; /* this much came in */
216 size_t read_packet_length; /* this much will be returned on read */
217 spinlock_t read_buffer_lock;
218 int packet_timeout_jiffies;
219 unsigned long read_last_arrival;
221 wait_queue_head_t read_wait;
222 wait_queue_head_t write_wait;
224 char* interrupt_in_buffer;
225 struct usb_endpoint_descriptor* interrupt_in_endpoint;
226 struct urb* interrupt_in_urb;
227 int interrupt_in_interval;
228 int interrupt_in_running;
229 int interrupt_in_done;
231 char* interrupt_out_buffer;
232 struct usb_endpoint_descriptor* interrupt_out_endpoint;
233 struct urb* interrupt_out_urb;
234 int interrupt_out_interval;
235 int interrupt_out_busy;
240 /* local function prototypes */
241 static ssize_t tower_read (struct file *file, char __user *buffer, size_t count, loff_t *ppos);
242 static ssize_t tower_write (struct file *file, const char __user *buffer, size_t count, loff_t *ppos);
243 static inline void tower_delete (struct lego_usb_tower *dev);
244 static int tower_open (struct inode *inode, struct file *file);
245 static int tower_release (struct inode *inode, struct file *file);
246 static unsigned int tower_poll (struct file *file, poll_table *wait);
247 static loff_t tower_llseek (struct file *file, loff_t off, int whence);
249 static void tower_abort_transfers (struct lego_usb_tower *dev);
250 static void tower_check_for_read_packet (struct lego_usb_tower *dev);
251 static void tower_interrupt_in_callback (struct urb *urb);
252 static void tower_interrupt_out_callback (struct urb *urb);
254 static int tower_probe (struct usb_interface *interface, const struct usb_device_id *id);
255 static void tower_disconnect (struct usb_interface *interface);
258 /* file operations needed when we register this driver */
259 static const struct file_operations tower_fops = {
260 .owner = THIS_MODULE,
262 .write = tower_write,
264 .release = tower_release,
266 .llseek = tower_llseek,
270 * usb class driver info in order to get a minor number from the usb core,
271 * and to have the device registered with the driver core
273 static struct usb_class_driver tower_class = {
274 .name = "legousbtower%d",
276 .minor_base = LEGO_USB_TOWER_MINOR_BASE,
280 /* usb specific object needed to register this driver with the usb subsystem */
281 static struct usb_driver tower_driver = {
282 .name = "legousbtower",
283 .probe = tower_probe,
284 .disconnect = tower_disconnect,
285 .id_table = tower_table,
290 * lego_usb_tower_debug_data
292 static inline void lego_usb_tower_debug_data (int level, const char *function, int size, const unsigned char *data)
299 printk (KERN_DEBUG __FILE__": %s - length = %d, data = ", function, size);
300 for (i = 0; i < size; ++i) {
301 printk ("%.2x ", data[i]);
310 static inline void tower_delete (struct lego_usb_tower *dev)
312 dbg(2, "%s: enter", __FUNCTION__);
314 tower_abort_transfers (dev);
316 /* free data structures */
317 usb_free_urb(dev->interrupt_in_urb);
318 usb_free_urb(dev->interrupt_out_urb);
319 kfree (dev->read_buffer);
320 kfree (dev->interrupt_in_buffer);
321 kfree (dev->interrupt_out_buffer);
324 dbg(2, "%s: leave", __FUNCTION__);
331 static int tower_open (struct inode *inode, struct file *file)
333 struct lego_usb_tower *dev = NULL;
336 struct usb_interface *interface;
337 struct tower_reset_reply reset_reply;
340 dbg(2, "%s: enter", __FUNCTION__);
342 nonseekable_open(inode, file);
343 subminor = iminor(inode);
345 interface = usb_find_interface (&tower_driver, subminor);
348 err ("%s - error, can't find device for minor %d",
349 __FUNCTION__, subminor);
354 mutex_lock(&open_disc_mutex);
355 dev = usb_get_intfdata(interface);
358 mutex_unlock(&open_disc_mutex);
363 /* lock this device */
364 if (down_interruptible (&dev->sem)) {
365 mutex_unlock(&open_disc_mutex);
366 retval = -ERESTARTSYS;
371 /* allow opening only once */
372 if (dev->open_count) {
373 mutex_unlock(&open_disc_mutex);
378 mutex_unlock(&open_disc_mutex);
380 /* reset the tower */
381 result = usb_control_msg (dev->udev,
382 usb_rcvctrlpipe(dev->udev, 0),
383 LEGO_USB_TOWER_REQUEST_RESET,
384 USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_DEVICE,
391 err("LEGO USB Tower reset control request failed");
396 /* initialize in direction */
397 dev->read_buffer_length = 0;
398 dev->read_packet_length = 0;
399 usb_fill_int_urb (dev->interrupt_in_urb,
401 usb_rcvintpipe(dev->udev, dev->interrupt_in_endpoint->bEndpointAddress),
402 dev->interrupt_in_buffer,
403 le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize),
404 tower_interrupt_in_callback,
406 dev->interrupt_in_interval);
408 dev->interrupt_in_running = 1;
409 dev->interrupt_in_done = 0;
412 retval = usb_submit_urb (dev->interrupt_in_urb, GFP_KERNEL);
414 err("Couldn't submit interrupt_in_urb %d", retval);
415 dev->interrupt_in_running = 0;
420 /* save device in the file's private structure */
421 file->private_data = dev;
427 dbg(2, "%s: leave, return value %d ", __FUNCTION__, retval);
435 static int tower_release (struct inode *inode, struct file *file)
437 struct lego_usb_tower *dev;
440 dbg(2, "%s: enter", __FUNCTION__);
442 dev = (struct lego_usb_tower *)file->private_data;
445 dbg(1, "%s: object is NULL", __FUNCTION__);
450 mutex_lock(&open_disc_mutex);
451 if (down_interruptible (&dev->sem)) {
452 retval = -ERESTARTSYS;
456 if (dev->open_count != 1) {
457 dbg(1, "%s: device not opened exactly once", __FUNCTION__);
461 if (dev->udev == NULL) {
462 /* the device was unplugged before the file was released */
463 up (&dev->sem); /* unlock here as tower_delete frees dev */
468 /* wait until write transfer is finished */
469 if (dev->interrupt_out_busy) {
470 wait_event_interruptible_timeout (dev->write_wait, !dev->interrupt_out_busy, 2 * HZ);
472 tower_abort_transfers (dev);
479 mutex_unlock(&open_disc_mutex);
481 dbg(2, "%s: leave, return value %d", __FUNCTION__, retval);
487 * tower_abort_transfers
488 * aborts transfers and frees associated data structures
490 static void tower_abort_transfers (struct lego_usb_tower *dev)
492 dbg(2, "%s: enter", __FUNCTION__);
495 dbg(1, "%s: dev is null", __FUNCTION__);
499 /* shutdown transfer */
500 if (dev->interrupt_in_running) {
501 dev->interrupt_in_running = 0;
504 usb_kill_urb (dev->interrupt_in_urb);
506 if (dev->interrupt_out_busy && dev->udev)
507 usb_kill_urb(dev->interrupt_out_urb);
510 dbg(2, "%s: leave", __FUNCTION__);
515 * tower_check_for_read_packet
517 * To get correct semantics for signals and non-blocking I/O
518 * with packetizing we pretend not to see any data in the read buffer
519 * until it has been there unchanged for at least
520 * dev->packet_timeout_jiffies, or until the buffer is full.
522 static void tower_check_for_read_packet (struct lego_usb_tower *dev)
524 spin_lock_irq (&dev->read_buffer_lock);
526 || time_after(jiffies, dev->read_last_arrival + dev->packet_timeout_jiffies)
527 || dev->read_buffer_length == read_buffer_size) {
528 dev->read_packet_length = dev->read_buffer_length;
530 dev->interrupt_in_done = 0;
531 spin_unlock_irq (&dev->read_buffer_lock);
538 static unsigned int tower_poll (struct file *file, poll_table *wait)
540 struct lego_usb_tower *dev;
541 unsigned int mask = 0;
543 dbg(2, "%s: enter", __FUNCTION__);
545 dev = file->private_data;
547 poll_wait(file, &dev->read_wait, wait);
548 poll_wait(file, &dev->write_wait, wait);
550 tower_check_for_read_packet(dev);
551 if (dev->read_packet_length > 0) {
552 mask |= POLLIN | POLLRDNORM;
554 if (!dev->interrupt_out_busy) {
555 mask |= POLLOUT | POLLWRNORM;
558 dbg(2, "%s: leave, mask = %d", __FUNCTION__, mask);
567 static loff_t tower_llseek (struct file *file, loff_t off, int whence)
569 return -ESPIPE; /* unseekable */
576 static ssize_t tower_read (struct file *file, char __user *buffer, size_t count, loff_t *ppos)
578 struct lego_usb_tower *dev;
579 size_t bytes_to_read;
582 unsigned long timeout = 0;
584 dbg(2, "%s: enter, count = %Zd", __FUNCTION__, count);
586 dev = (struct lego_usb_tower *)file->private_data;
588 /* lock this object */
589 if (down_interruptible (&dev->sem)) {
590 retval = -ERESTARTSYS;
594 /* verify that the device wasn't unplugged */
595 if (dev->udev == NULL) {
597 err("No device or device unplugged %d", retval);
601 /* verify that we actually have some data to read */
603 dbg(1, "%s: read request of 0 bytes", __FUNCTION__);
608 timeout = jiffies + read_timeout * HZ / 1000;
612 tower_check_for_read_packet (dev);
613 while (dev->read_packet_length == 0) {
614 if (file->f_flags & O_NONBLOCK) {
618 retval = wait_event_interruptible_timeout(dev->read_wait, dev->interrupt_in_done, dev->packet_timeout_jiffies);
623 /* reset read timeout during read or write activity */
625 && (dev->read_buffer_length || dev->interrupt_out_busy)) {
626 timeout = jiffies + read_timeout * HZ / 1000;
628 /* check for read timeout */
629 if (read_timeout && time_after (jiffies, timeout)) {
633 tower_check_for_read_packet (dev);
636 /* copy the data from read_buffer into userspace */
637 bytes_to_read = min(count, dev->read_packet_length);
639 if (copy_to_user (buffer, dev->read_buffer, bytes_to_read)) {
644 spin_lock_irq (&dev->read_buffer_lock);
645 dev->read_buffer_length -= bytes_to_read;
646 dev->read_packet_length -= bytes_to_read;
647 for (i=0; i<dev->read_buffer_length; i++) {
648 dev->read_buffer[i] = dev->read_buffer[i+bytes_to_read];
650 spin_unlock_irq (&dev->read_buffer_lock);
652 retval = bytes_to_read;
655 /* unlock the device */
659 dbg(2, "%s: leave, return value %d", __FUNCTION__, retval);
667 static ssize_t tower_write (struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
669 struct lego_usb_tower *dev;
670 size_t bytes_to_write;
673 dbg(2, "%s: enter, count = %Zd", __FUNCTION__, count);
675 dev = (struct lego_usb_tower *)file->private_data;
677 /* lock this object */
678 if (down_interruptible (&dev->sem)) {
679 retval = -ERESTARTSYS;
683 /* verify that the device wasn't unplugged */
684 if (dev->udev == NULL) {
686 err("No device or device unplugged %d", retval);
690 /* verify that we actually have some data to write */
692 dbg(1, "%s: write request of 0 bytes", __FUNCTION__);
696 /* wait until previous transfer is finished */
697 while (dev->interrupt_out_busy) {
698 if (file->f_flags & O_NONBLOCK) {
702 retval = wait_event_interruptible (dev->write_wait, !dev->interrupt_out_busy);
708 /* write the data into interrupt_out_buffer from userspace */
709 bytes_to_write = min_t(int, count, write_buffer_size);
710 dbg(4, "%s: count = %Zd, bytes_to_write = %Zd", __FUNCTION__, count, bytes_to_write);
712 if (copy_from_user (dev->interrupt_out_buffer, buffer, bytes_to_write)) {
717 /* send off the urb */
718 usb_fill_int_urb(dev->interrupt_out_urb,
720 usb_sndintpipe(dev->udev, dev->interrupt_out_endpoint->bEndpointAddress),
721 dev->interrupt_out_buffer,
723 tower_interrupt_out_callback,
725 dev->interrupt_out_interval);
727 dev->interrupt_out_busy = 1;
730 retval = usb_submit_urb (dev->interrupt_out_urb, GFP_KERNEL);
732 dev->interrupt_out_busy = 0;
733 err("Couldn't submit interrupt_out_urb %d", retval);
736 retval = bytes_to_write;
739 /* unlock the device */
743 dbg(2, "%s: leave, return value %d", __FUNCTION__, retval);
750 * tower_interrupt_in_callback
752 static void tower_interrupt_in_callback (struct urb *urb)
754 struct lego_usb_tower *dev = (struct lego_usb_tower *)urb->context;
755 int status = urb->status;
758 dbg(4, "%s: enter, status %d", __FUNCTION__, status);
760 lego_usb_tower_debug_data(5, __FUNCTION__, urb->actual_length, urb->transfer_buffer);
763 if (status == -ENOENT ||
764 status == -ECONNRESET ||
765 status == -ESHUTDOWN) {
768 dbg(1, "%s: nonzero status received: %d", __FUNCTION__, status);
769 goto resubmit; /* maybe we can recover */
773 if (urb->actual_length > 0) {
774 spin_lock (&dev->read_buffer_lock);
775 if (dev->read_buffer_length + urb->actual_length < read_buffer_size) {
776 memcpy (dev->read_buffer + dev->read_buffer_length,
777 dev->interrupt_in_buffer,
779 dev->read_buffer_length += urb->actual_length;
780 dev->read_last_arrival = jiffies;
781 dbg(3, "%s: received %d bytes", __FUNCTION__, urb->actual_length);
783 printk(KERN_WARNING "%s: read_buffer overflow, %d bytes dropped", __FUNCTION__, urb->actual_length);
785 spin_unlock (&dev->read_buffer_lock);
789 /* resubmit if we're still running */
790 if (dev->interrupt_in_running && dev->udev) {
791 retval = usb_submit_urb (dev->interrupt_in_urb, GFP_ATOMIC);
793 err("%s: usb_submit_urb failed (%d)", __FUNCTION__, retval);
798 dev->interrupt_in_done = 1;
799 wake_up_interruptible (&dev->read_wait);
801 lego_usb_tower_debug_data(5, __FUNCTION__, urb->actual_length, urb->transfer_buffer);
802 dbg(4, "%s: leave, status %d", __FUNCTION__, status);
807 * tower_interrupt_out_callback
809 static void tower_interrupt_out_callback (struct urb *urb)
811 struct lego_usb_tower *dev = (struct lego_usb_tower *)urb->context;
812 int status = urb->status;
814 dbg(4, "%s: enter, status %d", __FUNCTION__, status);
815 lego_usb_tower_debug_data(5, __FUNCTION__, urb->actual_length, urb->transfer_buffer);
817 /* sync/async unlink faults aren't errors */
818 if (status && !(status == -ENOENT ||
819 status == -ECONNRESET ||
820 status == -ESHUTDOWN)) {
821 dbg(1, "%s - nonzero write bulk status received: %d",
822 __FUNCTION__, status);
825 dev->interrupt_out_busy = 0;
826 wake_up_interruptible(&dev->write_wait);
828 lego_usb_tower_debug_data(5, __FUNCTION__, urb->actual_length, urb->transfer_buffer);
829 dbg(4, "%s: leave, status %d", __FUNCTION__, status);
836 * Called by the usb core when a new device is connected that it thinks
837 * this driver might be interested in.
839 static int tower_probe (struct usb_interface *interface, const struct usb_device_id *id)
841 struct usb_device *udev = interface_to_usbdev(interface);
842 struct lego_usb_tower *dev = NULL;
843 struct usb_host_interface *iface_desc;
844 struct usb_endpoint_descriptor* endpoint;
845 struct tower_get_version_reply get_version_reply;
847 int retval = -ENOMEM;
850 dbg(2, "%s: enter", __FUNCTION__);
853 info ("udev is NULL.");
856 /* allocate memory for our device state and initialize it */
858 dev = kmalloc (sizeof(struct lego_usb_tower), GFP_KERNEL);
861 err ("Out of memory");
865 init_MUTEX (&dev->sem);
870 dev->read_buffer = NULL;
871 dev->read_buffer_length = 0;
872 dev->read_packet_length = 0;
873 spin_lock_init (&dev->read_buffer_lock);
874 dev->packet_timeout_jiffies = packet_timeout * HZ / 1000;
875 dev->read_last_arrival = jiffies;
877 init_waitqueue_head (&dev->read_wait);
878 init_waitqueue_head (&dev->write_wait);
880 dev->interrupt_in_buffer = NULL;
881 dev->interrupt_in_endpoint = NULL;
882 dev->interrupt_in_urb = NULL;
883 dev->interrupt_in_running = 0;
884 dev->interrupt_in_done = 0;
886 dev->interrupt_out_buffer = NULL;
887 dev->interrupt_out_endpoint = NULL;
888 dev->interrupt_out_urb = NULL;
889 dev->interrupt_out_busy = 0;
891 iface_desc = interface->cur_altsetting;
893 /* set up the endpoint information */
894 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
895 endpoint = &iface_desc->endpoint[i].desc;
897 if (usb_endpoint_xfer_int(endpoint)) {
898 if (usb_endpoint_dir_in(endpoint))
899 dev->interrupt_in_endpoint = endpoint;
901 dev->interrupt_out_endpoint = endpoint;
904 if(dev->interrupt_in_endpoint == NULL) {
905 err("interrupt in endpoint not found");
908 if (dev->interrupt_out_endpoint == NULL) {
909 err("interrupt out endpoint not found");
913 dev->read_buffer = kmalloc (read_buffer_size, GFP_KERNEL);
914 if (!dev->read_buffer) {
915 err("Couldn't allocate read_buffer");
918 dev->interrupt_in_buffer = kmalloc (le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize), GFP_KERNEL);
919 if (!dev->interrupt_in_buffer) {
920 err("Couldn't allocate interrupt_in_buffer");
923 dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
924 if (!dev->interrupt_in_urb) {
925 err("Couldn't allocate interrupt_in_urb");
928 dev->interrupt_out_buffer = kmalloc (write_buffer_size, GFP_KERNEL);
929 if (!dev->interrupt_out_buffer) {
930 err("Couldn't allocate interrupt_out_buffer");
933 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
934 if (!dev->interrupt_out_urb) {
935 err("Couldn't allocate interrupt_out_urb");
938 dev->interrupt_in_interval = interrupt_in_interval ? interrupt_in_interval : dev->interrupt_in_endpoint->bInterval;
939 dev->interrupt_out_interval = interrupt_out_interval ? interrupt_out_interval : dev->interrupt_out_endpoint->bInterval;
941 /* we can register the device now, as it is ready */
942 usb_set_intfdata (interface, dev);
944 retval = usb_register_dev (interface, &tower_class);
947 /* something prevented us from registering this driver */
948 err ("Not able to get a minor for this device.");
949 usb_set_intfdata (interface, NULL);
952 dev->minor = interface->minor;
954 /* let the user know what node this device is now attached to */
955 info ("LEGO USB Tower #%d now attached to major %d minor %d", (dev->minor - LEGO_USB_TOWER_MINOR_BASE), USB_MAJOR, dev->minor);
957 /* get the firmware version and log it */
958 result = usb_control_msg (udev,
959 usb_rcvctrlpipe(udev, 0),
960 LEGO_USB_TOWER_REQUEST_GET_VERSION,
961 USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_DEVICE,
965 sizeof(get_version_reply),
968 err("LEGO USB Tower get version control request failed");
972 info("LEGO USB Tower firmware version is %d.%d build %d",
973 get_version_reply.major,
974 get_version_reply.minor,
975 le16_to_cpu(get_version_reply.build_no));
979 dbg(2, "%s: leave, return value 0x%.8lx (dev)", __FUNCTION__, (long) dev);
992 * Called by the usb core when the device is removed from the system.
994 static void tower_disconnect (struct usb_interface *interface)
996 struct lego_usb_tower *dev;
999 dbg(2, "%s: enter", __FUNCTION__);
1001 dev = usb_get_intfdata (interface);
1002 mutex_lock(&open_disc_mutex);
1003 usb_set_intfdata (interface, NULL);
1007 /* give back our minor */
1008 usb_deregister_dev (interface, &tower_class);
1011 mutex_unlock(&open_disc_mutex);
1013 /* if the device is not opened, then we clean up right now */
1014 if (!dev->open_count) {
1022 info("LEGO USB Tower #%d now disconnected", (minor - LEGO_USB_TOWER_MINOR_BASE));
1024 dbg(2, "%s: leave", __FUNCTION__);
1030 * lego_usb_tower_init
1032 static int __init lego_usb_tower_init(void)
1037 dbg(2, "%s: enter", __FUNCTION__);
1039 /* register this driver with the USB subsystem */
1040 result = usb_register(&tower_driver);
1042 err("usb_register failed for the "__FILE__" driver. Error number %d", result);
1047 info(DRIVER_DESC " " DRIVER_VERSION);
1050 dbg(2, "%s: leave, return value %d", __FUNCTION__, retval);
1057 * lego_usb_tower_exit
1059 static void __exit lego_usb_tower_exit(void)
1061 dbg(2, "%s: enter", __FUNCTION__);
1063 /* deregister this driver with the USB subsystem */
1064 usb_deregister (&tower_driver);
1066 dbg(2, "%s: leave", __FUNCTION__);
1069 module_init (lego_usb_tower_init);
1070 module_exit (lego_usb_tower_exit);
1072 MODULE_AUTHOR(DRIVER_AUTHOR);
1073 MODULE_DESCRIPTION(DRIVER_DESC);
1074 #ifdef MODULE_LICENSE
1075 MODULE_LICENSE("GPL");