blob: 006762b72ff54211f05fed030170bc7f1a70448d [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Michael Hund2824bd22005-06-27 22:44:22 +02002/**
3 * Generic USB driver for report based interrupt in/out devices
4 * like LD Didactic's USB devices. LD Didactic's USB devices are
5 * HID devices which do not use HID report definitons (they use
6 * raw interrupt in and our reports only for communication).
7 *
8 * This driver uses a ring buffer for time critical reading of
9 * interrupt in reports and provides read and write methods for
10 * raw interrupt reports (similar to the Windows HID driver).
11 * Devices based on the book USB COMPLETE by Jan Axelson may need
12 * such a compatibility to the Windows HID driver.
13 *
14 * Copyright (C) 2005 Michael Hund <mhund@ld-didactic.de>
15 *
Michael Hund2824bd22005-06-27 22:44:22 +020016 * Derived from Lego USB Tower driver
17 * Copyright (C) 2003 David Glance <advidgsf@sourceforge.net>
18 * 2001-2004 Juergen Stuber <starblue@users.sourceforge.net>
Michael Hund2824bd22005-06-27 22:44:22 +020019 */
20
Michael Hund2824bd22005-06-27 22:44:22 +020021#include <linux/kernel.h>
22#include <linux/errno.h>
Michael Hund2824bd22005-06-27 22:44:22 +020023#include <linux/slab.h>
24#include <linux/module.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010025#include <linux/mutex.h>
Michael Hund2824bd22005-06-27 22:44:22 +020026
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080027#include <linux/uaccess.h>
Michael Hund2824bd22005-06-27 22:44:22 +020028#include <linux/input.h>
29#include <linux/usb.h>
30#include <linux/poll.h>
31
32/* Define these values to match your devices */
33#define USB_VENDOR_ID_LD 0x0f11 /* USB Vendor ID of LD Didactic GmbH */
Michael Hundce97cac2011-05-03 10:12:00 -070034#define USB_DEVICE_ID_LD_CASSY 0x1000 /* USB Product ID of CASSY-S modules with 8 bytes endpoint size */
35#define USB_DEVICE_ID_LD_CASSY2 0x1001 /* USB Product ID of CASSY-S modules with 64 bytes endpoint size */
Michael Hundba3e66e2006-02-02 09:36:43 +010036#define USB_DEVICE_ID_LD_POCKETCASSY 0x1010 /* USB Product ID of Pocket-CASSY */
Michael Hundce97cac2011-05-03 10:12:00 -070037#define USB_DEVICE_ID_LD_POCKETCASSY2 0x1011 /* USB Product ID of Pocket-CASSY 2 (reserved) */
Michael Hundba3e66e2006-02-02 09:36:43 +010038#define USB_DEVICE_ID_LD_MOBILECASSY 0x1020 /* USB Product ID of Mobile-CASSY */
Michael Hundce97cac2011-05-03 10:12:00 -070039#define USB_DEVICE_ID_LD_MOBILECASSY2 0x1021 /* USB Product ID of Mobile-CASSY 2 (reserved) */
40#define USB_DEVICE_ID_LD_MICROCASSYVOLTAGE 0x1031 /* USB Product ID of Micro-CASSY Voltage */
41#define USB_DEVICE_ID_LD_MICROCASSYCURRENT 0x1032 /* USB Product ID of Micro-CASSY Current */
42#define USB_DEVICE_ID_LD_MICROCASSYTIME 0x1033 /* USB Product ID of Micro-CASSY Time (reserved) */
43#define USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE 0x1035 /* USB Product ID of Micro-CASSY Temperature */
44#define USB_DEVICE_ID_LD_MICROCASSYPH 0x1038 /* USB Product ID of Micro-CASSY pH */
Karsten Koop52ad2bd2018-02-09 09:12:06 +000045#define USB_DEVICE_ID_LD_POWERANALYSERCASSY 0x1040 /* USB Product ID of Power Analyser CASSY */
46#define USB_DEVICE_ID_LD_CONVERTERCONTROLLERCASSY 0x1042 /* USB Product ID of Converter Controller CASSY */
47#define USB_DEVICE_ID_LD_MACHINETESTCASSY 0x1043 /* USB Product ID of Machine Test CASSY */
Michael Hundba3e66e2006-02-02 09:36:43 +010048#define USB_DEVICE_ID_LD_JWM 0x1080 /* USB Product ID of Joule and Wattmeter */
49#define USB_DEVICE_ID_LD_DMMP 0x1081 /* USB Product ID of Digital Multimeter P (reserved) */
50#define USB_DEVICE_ID_LD_UMIP 0x1090 /* USB Product ID of UMI P */
Michael Hundce97cac2011-05-03 10:12:00 -070051#define USB_DEVICE_ID_LD_UMIC 0x10A0 /* USB Product ID of UMI C */
52#define USB_DEVICE_ID_LD_UMIB 0x10B0 /* USB Product ID of UMI B */
53#define USB_DEVICE_ID_LD_XRAY 0x1100 /* USB Product ID of X-Ray Apparatus 55481 */
54#define USB_DEVICE_ID_LD_XRAY2 0x1101 /* USB Product ID of X-Ray Apparatus 554800 */
55#define USB_DEVICE_ID_LD_XRAYCT 0x1110 /* USB Product ID of X-Ray Apparatus CT 554821*/
Michael Hundba3e66e2006-02-02 09:36:43 +010056#define USB_DEVICE_ID_LD_VIDEOCOM 0x1200 /* USB Product ID of VideoCom */
Michael Hundce97cac2011-05-03 10:12:00 -070057#define USB_DEVICE_ID_LD_MOTOR 0x1210 /* USB Product ID of Motor (reserved) */
Michael Hundba3e66e2006-02-02 09:36:43 +010058#define USB_DEVICE_ID_LD_COM3LAB 0x2000 /* USB Product ID of COM3LAB */
59#define USB_DEVICE_ID_LD_TELEPORT 0x2010 /* USB Product ID of Terminal Adapter */
60#define USB_DEVICE_ID_LD_NETWORKANALYSER 0x2020 /* USB Product ID of Network Analyser */
61#define USB_DEVICE_ID_LD_POWERCONTROL 0x2030 /* USB Product ID of Converter Control Unit */
62#define USB_DEVICE_ID_LD_MACHINETEST 0x2040 /* USB Product ID of Machine Test System */
Michael Hundce97cac2011-05-03 10:12:00 -070063#define USB_DEVICE_ID_LD_MOSTANALYSER 0x2050 /* USB Product ID of MOST Protocol Analyser */
64#define USB_DEVICE_ID_LD_MOSTANALYSER2 0x2051 /* USB Product ID of MOST Protocol Analyser 2 */
65#define USB_DEVICE_ID_LD_ABSESP 0x2060 /* USB Product ID of ABS ESP */
66#define USB_DEVICE_ID_LD_AUTODATABUS 0x2070 /* USB Product ID of Automotive Data Buses */
67#define USB_DEVICE_ID_LD_MCT 0x2080 /* USB Product ID of Microcontroller technique */
68#define USB_DEVICE_ID_LD_HYBRID 0x2090 /* USB Product ID of Automotive Hybrid */
69#define USB_DEVICE_ID_LD_HEATCONTROL 0x20A0 /* USB Product ID of Heat control */
Michael Hund2824bd22005-06-27 22:44:22 +020070
Michael Hund2824bd22005-06-27 22:44:22 +020071#ifdef CONFIG_USB_DYNAMIC_MINORS
72#define USB_LD_MINOR_BASE 0
73#else
74#define USB_LD_MINOR_BASE 176
75#endif
76
77/* table of devices that work with this driver */
Németh Márton33b9e162010-01-10 15:34:45 +010078static const struct usb_device_id ld_usb_table[] = {
Michael Hundba3e66e2006-02-02 09:36:43 +010079 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
Michael Hundce97cac2011-05-03 10:12:00 -070080 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY2) },
Michael Hundba3e66e2006-02-02 09:36:43 +010081 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
Michael Hundce97cac2011-05-03 10:12:00 -070082 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY2) },
Michael Hundba3e66e2006-02-02 09:36:43 +010083 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
Michael Hundce97cac2011-05-03 10:12:00 -070084 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY2) },
85 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYVOLTAGE) },
86 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYCURRENT) },
87 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTIME) },
88 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE) },
89 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYPH) },
Karsten Koop52ad2bd2018-02-09 09:12:06 +000090 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERANALYSERCASSY) },
91 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CONVERTERCONTROLLERCASSY) },
92 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETESTCASSY) },
Michael Hundba3e66e2006-02-02 09:36:43 +010093 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM) },
94 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP) },
95 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP) },
Michael Hundce97cac2011-05-03 10:12:00 -070096 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIC) },
97 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIB) },
98 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY) },
Michael Hundba3e66e2006-02-02 09:36:43 +010099 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2) },
100 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM) },
Michael Hundce97cac2011-05-03 10:12:00 -0700101 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOTOR) },
Michael Hundba3e66e2006-02-02 09:36:43 +0100102 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB) },
103 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT) },
104 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) },
105 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) },
106 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) },
Michael Hundce97cac2011-05-03 10:12:00 -0700107 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER) },
108 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER2) },
109 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_ABSESP) },
110 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_AUTODATABUS) },
111 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) },
112 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) },
113 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) },
Michael Hund2824bd22005-06-27 22:44:22 +0200114 { } /* Terminating entry */
115};
116MODULE_DEVICE_TABLE(usb, ld_usb_table);
Michael Hund2824bd22005-06-27 22:44:22 +0200117MODULE_AUTHOR("Michael Hund <mhund@ld-didactic.de>");
118MODULE_DESCRIPTION("LD USB Driver");
119MODULE_LICENSE("GPL");
120MODULE_SUPPORTED_DEVICE("LD USB Devices");
121
Michael Hund2824bd22005-06-27 22:44:22 +0200122/* All interrupt in transfers are collected in a ring buffer to
123 * avoid racing conditions and get better performance of the driver.
124 */
125static int ring_buffer_size = 128;
Milian Reichardt3d1a4673d2017-03-04 03:42:32 +0100126module_param(ring_buffer_size, int, 0000);
Michael Hund2824bd22005-06-27 22:44:22 +0200127MODULE_PARM_DESC(ring_buffer_size, "Read ring buffer size in reports");
128
129/* The write_buffer can contain more than one interrupt out transfer.
130 */
131static int write_buffer_size = 10;
Milian Reichardt3d1a4673d2017-03-04 03:42:32 +0100132module_param(write_buffer_size, int, 0000);
Michael Hund2824bd22005-06-27 22:44:22 +0200133MODULE_PARM_DESC(write_buffer_size, "Write buffer size in reports");
134
135/* As of kernel version 2.6.4 ehci-hcd uses an
136 * "only one interrupt transfer per frame" shortcut
137 * to simplify the scheduling of periodic transfers.
138 * This conflicts with our standard 1ms intervals for in and out URBs.
139 * We use default intervals of 2ms for in and 2ms for out transfers,
140 * which should be fast enough.
141 * Increase the interval to allow more devices that do interrupt transfers,
142 * or set to 1 to use the standard interval from the endpoint descriptors.
143 */
144static int min_interrupt_in_interval = 2;
Milian Reichardt3d1a4673d2017-03-04 03:42:32 +0100145module_param(min_interrupt_in_interval, int, 0000);
Michael Hund2824bd22005-06-27 22:44:22 +0200146MODULE_PARM_DESC(min_interrupt_in_interval, "Minimum interrupt in interval in ms");
147
148static int min_interrupt_out_interval = 2;
Milian Reichardt3d1a4673d2017-03-04 03:42:32 +0100149module_param(min_interrupt_out_interval, int, 0000);
Michael Hund2824bd22005-06-27 22:44:22 +0200150MODULE_PARM_DESC(min_interrupt_out_interval, "Minimum interrupt out interval in ms");
151
152/* Structure to hold all of our device specific stuff */
153struct ld_usb {
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700154 struct mutex mutex; /* locks this structure */
Milian Reichardt4d72e352017-03-04 03:42:33 +0100155 struct usb_interface *intf; /* save off the usb interface pointer */
Michael Hund2824bd22005-06-27 22:44:22 +0200156
157 int open_count; /* number of times this port has been opened */
158
Milian Reichardt4d72e352017-03-04 03:42:33 +0100159 char *ring_buffer;
Michael Hund2824bd22005-06-27 22:44:22 +0200160 unsigned int ring_head;
161 unsigned int ring_tail;
162
163 wait_queue_head_t read_wait;
164 wait_queue_head_t write_wait;
165
Milian Reichardt4d72e352017-03-04 03:42:33 +0100166 char *interrupt_in_buffer;
167 struct usb_endpoint_descriptor *interrupt_in_endpoint;
168 struct urb *interrupt_in_urb;
Michael Hund2824bd22005-06-27 22:44:22 +0200169 int interrupt_in_interval;
170 size_t interrupt_in_endpoint_size;
171 int interrupt_in_running;
172 int interrupt_in_done;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200173 int buffer_overflow;
174 spinlock_t rbsl;
Michael Hund2824bd22005-06-27 22:44:22 +0200175
Milian Reichardt4d72e352017-03-04 03:42:33 +0100176 char *interrupt_out_buffer;
177 struct usb_endpoint_descriptor *interrupt_out_endpoint;
178 struct urb *interrupt_out_urb;
Michael Hund2824bd22005-06-27 22:44:22 +0200179 int interrupt_out_interval;
180 size_t interrupt_out_endpoint_size;
181 int interrupt_out_busy;
182};
183
Michael Hund2824bd22005-06-27 22:44:22 +0200184static struct usb_driver ld_usb_driver;
185
186/**
187 * ld_usb_abort_transfers
188 * aborts transfers and frees associated data structures
189 */
190static void ld_usb_abort_transfers(struct ld_usb *dev)
191{
192 /* shutdown transfer */
193 if (dev->interrupt_in_running) {
194 dev->interrupt_in_running = 0;
195 if (dev->intf)
196 usb_kill_urb(dev->interrupt_in_urb);
197 }
198 if (dev->interrupt_out_busy)
199 if (dev->intf)
200 usb_kill_urb(dev->interrupt_out_urb);
201}
202
203/**
204 * ld_usb_delete
205 */
206static void ld_usb_delete(struct ld_usb *dev)
207{
208 ld_usb_abort_transfers(dev);
209
210 /* free data structures */
211 usb_free_urb(dev->interrupt_in_urb);
212 usb_free_urb(dev->interrupt_out_urb);
213 kfree(dev->ring_buffer);
214 kfree(dev->interrupt_in_buffer);
215 kfree(dev->interrupt_out_buffer);
216 kfree(dev);
217}
218
219/**
220 * ld_usb_interrupt_in_callback
221 */
David Howells7d12e782006-10-05 14:55:46 +0100222static void ld_usb_interrupt_in_callback(struct urb *urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200223{
224 struct ld_usb *dev = urb->context;
225 size_t *actual_buffer;
226 unsigned int next_ring_head;
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700227 int status = urb->status;
Sebastian Andrzej Siewiord7cdbdd2018-06-25 00:08:44 +0200228 unsigned long flags;
Michael Hund2824bd22005-06-27 22:44:22 +0200229 int retval;
230
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700231 if (status) {
232 if (status == -ENOENT ||
233 status == -ECONNRESET ||
234 status == -ESHUTDOWN) {
Michael Hund2824bd22005-06-27 22:44:22 +0200235 goto exit;
236 } else {
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700237 dev_dbg(&dev->intf->dev,
238 "%s: nonzero status received: %d\n", __func__,
239 status);
Sebastian Andrzej Siewiord7cdbdd2018-06-25 00:08:44 +0200240 spin_lock_irqsave(&dev->rbsl, flags);
Michael Hund2824bd22005-06-27 22:44:22 +0200241 goto resubmit; /* maybe we can recover */
242 }
243 }
244
Sebastian Andrzej Siewiord7cdbdd2018-06-25 00:08:44 +0200245 spin_lock_irqsave(&dev->rbsl, flags);
Michael Hund2824bd22005-06-27 22:44:22 +0200246 if (urb->actual_length > 0) {
247 next_ring_head = (dev->ring_head+1) % ring_buffer_size;
248 if (next_ring_head != dev->ring_tail) {
Milian Reichardt4d72e352017-03-04 03:42:33 +0100249 actual_buffer = (size_t *)(dev->ring_buffer + dev->ring_head * (sizeof(size_t)+dev->interrupt_in_endpoint_size));
Michael Hund2824bd22005-06-27 22:44:22 +0200250 /* actual_buffer gets urb->actual_length + interrupt_in_buffer */
251 *actual_buffer = urb->actual_length;
252 memcpy(actual_buffer+1, dev->interrupt_in_buffer, urb->actual_length);
253 dev->ring_head = next_ring_head;
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700254 dev_dbg(&dev->intf->dev, "%s: received %d bytes\n",
255 __func__, urb->actual_length);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200256 } else {
Michael Hund2824bd22005-06-27 22:44:22 +0200257 dev_warn(&dev->intf->dev,
258 "Ring buffer overflow, %d bytes dropped\n",
259 urb->actual_length);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200260 dev->buffer_overflow = 1;
261 }
Michael Hund2824bd22005-06-27 22:44:22 +0200262 }
263
264resubmit:
265 /* resubmit if we're still running */
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200266 if (dev->interrupt_in_running && !dev->buffer_overflow && dev->intf) {
Michael Hund2824bd22005-06-27 22:44:22 +0200267 retval = usb_submit_urb(dev->interrupt_in_urb, GFP_ATOMIC);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200268 if (retval) {
Michael Hund2824bd22005-06-27 22:44:22 +0200269 dev_err(&dev->intf->dev,
270 "usb_submit_urb failed (%d)\n", retval);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200271 dev->buffer_overflow = 1;
272 }
Michael Hund2824bd22005-06-27 22:44:22 +0200273 }
Sebastian Andrzej Siewiord7cdbdd2018-06-25 00:08:44 +0200274 spin_unlock_irqrestore(&dev->rbsl, flags);
Michael Hund2824bd22005-06-27 22:44:22 +0200275exit:
276 dev->interrupt_in_done = 1;
277 wake_up_interruptible(&dev->read_wait);
278}
279
280/**
281 * ld_usb_interrupt_out_callback
282 */
David Howells7d12e782006-10-05 14:55:46 +0100283static void ld_usb_interrupt_out_callback(struct urb *urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200284{
285 struct ld_usb *dev = urb->context;
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700286 int status = urb->status;
Michael Hund2824bd22005-06-27 22:44:22 +0200287
288 /* sync/async unlink faults aren't errors */
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700289 if (status && !(status == -ENOENT ||
290 status == -ECONNRESET ||
291 status == -ESHUTDOWN))
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700292 dev_dbg(&dev->intf->dev,
293 "%s - nonzero write interrupt status received: %d\n",
294 __func__, status);
Michael Hund2824bd22005-06-27 22:44:22 +0200295
296 dev->interrupt_out_busy = 0;
297 wake_up_interruptible(&dev->write_wait);
298}
299
300/**
301 * ld_usb_open
302 */
303static int ld_usb_open(struct inode *inode, struct file *file)
304{
305 struct ld_usb *dev;
306 int subminor;
Alan Sternd4ead162007-05-22 11:46:41 -0400307 int retval;
Michael Hund2824bd22005-06-27 22:44:22 +0200308 struct usb_interface *interface;
309
310 nonseekable_open(inode, file);
311 subminor = iminor(inode);
312
Michael Hund2824bd22005-06-27 22:44:22 +0200313 interface = usb_find_interface(&ld_usb_driver, subminor);
314
315 if (!interface) {
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700316 printk(KERN_ERR "%s - error, can't find device for minor %d\n",
317 __func__, subminor);
Alan Sternd4ead162007-05-22 11:46:41 -0400318 return -ENODEV;
Michael Hund2824bd22005-06-27 22:44:22 +0200319 }
320
321 dev = usb_get_intfdata(interface);
322
Oliver Neukum6248c522010-01-14 16:12:27 +0100323 if (!dev)
Alan Sternd4ead162007-05-22 11:46:41 -0400324 return -ENODEV;
Michael Hund2824bd22005-06-27 22:44:22 +0200325
326 /* lock this device */
Oliver Neukum6248c522010-01-14 16:12:27 +0100327 if (mutex_lock_interruptible(&dev->mutex))
Alan Sternd4ead162007-05-22 11:46:41 -0400328 return -ERESTARTSYS;
Michael Hund2824bd22005-06-27 22:44:22 +0200329
330 /* allow opening only once */
331 if (dev->open_count) {
332 retval = -EBUSY;
333 goto unlock_exit;
334 }
335 dev->open_count = 1;
336
337 /* initialize in direction */
338 dev->ring_head = 0;
339 dev->ring_tail = 0;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200340 dev->buffer_overflow = 0;
Michael Hund2824bd22005-06-27 22:44:22 +0200341 usb_fill_int_urb(dev->interrupt_in_urb,
342 interface_to_usbdev(interface),
343 usb_rcvintpipe(interface_to_usbdev(interface),
344 dev->interrupt_in_endpoint->bEndpointAddress),
345 dev->interrupt_in_buffer,
346 dev->interrupt_in_endpoint_size,
347 ld_usb_interrupt_in_callback,
348 dev,
349 dev->interrupt_in_interval);
350
351 dev->interrupt_in_running = 1;
352 dev->interrupt_in_done = 0;
353
354 retval = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL);
355 if (retval) {
356 dev_err(&interface->dev, "Couldn't submit interrupt_in_urb %d\n", retval);
357 dev->interrupt_in_running = 0;
358 dev->open_count = 0;
359 goto unlock_exit;
360 }
361
362 /* save device in the file's private structure */
363 file->private_data = dev;
364
365unlock_exit:
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700366 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200367
Michael Hund2824bd22005-06-27 22:44:22 +0200368 return retval;
369}
370
371/**
372 * ld_usb_release
373 */
374static int ld_usb_release(struct inode *inode, struct file *file)
375{
376 struct ld_usb *dev;
377 int retval = 0;
378
379 dev = file->private_data;
380
381 if (dev == NULL) {
382 retval = -ENODEV;
383 goto exit;
384 }
385
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700386 if (mutex_lock_interruptible(&dev->mutex)) {
Michael Hund2824bd22005-06-27 22:44:22 +0200387 retval = -ERESTARTSYS;
388 goto exit;
389 }
390
391 if (dev->open_count != 1) {
392 retval = -ENODEV;
393 goto unlock_exit;
394 }
395 if (dev->intf == NULL) {
396 /* the device was unplugged before the file was released */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700397 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200398 /* unlock here as ld_usb_delete frees dev */
399 ld_usb_delete(dev);
400 goto exit;
401 }
402
403 /* wait until write transfer is finished */
404 if (dev->interrupt_out_busy)
405 wait_event_interruptible_timeout(dev->write_wait, !dev->interrupt_out_busy, 2 * HZ);
406 ld_usb_abort_transfers(dev);
407 dev->open_count = 0;
408
409unlock_exit:
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700410 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200411
412exit:
413 return retval;
414}
415
416/**
417 * ld_usb_poll
418 */
Al Viroafc9a422017-07-03 06:39:46 -0400419static __poll_t ld_usb_poll(struct file *file, poll_table *wait)
Michael Hund2824bd22005-06-27 22:44:22 +0200420{
421 struct ld_usb *dev;
Al Viroafc9a422017-07-03 06:39:46 -0400422 __poll_t mask = 0;
Michael Hund2824bd22005-06-27 22:44:22 +0200423
424 dev = file->private_data;
425
Oliver Neukumd12b85e2009-07-02 17:01:06 +0200426 if (!dev->intf)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800427 return EPOLLERR | EPOLLHUP;
Oliver Neukumd12b85e2009-07-02 17:01:06 +0200428
Michael Hund2824bd22005-06-27 22:44:22 +0200429 poll_wait(file, &dev->read_wait, wait);
430 poll_wait(file, &dev->write_wait, wait);
431
432 if (dev->ring_head != dev->ring_tail)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800433 mask |= EPOLLIN | EPOLLRDNORM;
Michael Hund2824bd22005-06-27 22:44:22 +0200434 if (!dev->interrupt_out_busy)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800435 mask |= EPOLLOUT | EPOLLWRNORM;
Michael Hund2824bd22005-06-27 22:44:22 +0200436
437 return mask;
438}
439
440/**
441 * ld_usb_read
442 */
443static ssize_t ld_usb_read(struct file *file, char __user *buffer, size_t count,
444 loff_t *ppos)
445{
446 struct ld_usb *dev;
447 size_t *actual_buffer;
448 size_t bytes_to_read;
449 int retval = 0;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200450 int rv;
Michael Hund2824bd22005-06-27 22:44:22 +0200451
452 dev = file->private_data;
453
454 /* verify that we actually have some data to read */
455 if (count == 0)
456 goto exit;
457
458 /* lock this object */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700459 if (mutex_lock_interruptible(&dev->mutex)) {
Michael Hund2824bd22005-06-27 22:44:22 +0200460 retval = -ERESTARTSYS;
461 goto exit;
462 }
463
464 /* verify that the device wasn't unplugged */
465 if (dev->intf == NULL) {
466 retval = -ENODEV;
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700467 printk(KERN_ERR "ldusb: No device or device unplugged %d\n", retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200468 goto unlock_exit;
469 }
470
471 /* wait for data */
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200472 spin_lock_irq(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200473 if (dev->ring_head == dev->ring_tail) {
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200474 dev->interrupt_in_done = 0;
475 spin_unlock_irq(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200476 if (file->f_flags & O_NONBLOCK) {
477 retval = -EAGAIN;
478 goto unlock_exit;
479 }
480 retval = wait_event_interruptible(dev->read_wait, dev->interrupt_in_done);
481 if (retval < 0)
482 goto unlock_exit;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200483 } else {
484 spin_unlock_irq(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200485 }
486
487 /* actual_buffer contains actual_length + interrupt_in_buffer */
Milian Reichardt4d72e352017-03-04 03:42:33 +0100488 actual_buffer = (size_t *)(dev->ring_buffer + dev->ring_tail * (sizeof(size_t)+dev->interrupt_in_endpoint_size));
Michael Hund2824bd22005-06-27 22:44:22 +0200489 bytes_to_read = min(count, *actual_buffer);
490 if (bytes_to_read < *actual_buffer)
Alexey Dobriyandd7d5002005-08-14 17:24:26 +0400491 dev_warn(&dev->intf->dev, "Read buffer overflow, %zd bytes dropped\n",
Michael Hund2824bd22005-06-27 22:44:22 +0200492 *actual_buffer-bytes_to_read);
493
494 /* copy one interrupt_in_buffer from ring_buffer into userspace */
495 if (copy_to_user(buffer, actual_buffer+1, bytes_to_read)) {
496 retval = -EFAULT;
497 goto unlock_exit;
498 }
499 dev->ring_tail = (dev->ring_tail+1) % ring_buffer_size;
500
501 retval = bytes_to_read;
502
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200503 spin_lock_irq(&dev->rbsl);
504 if (dev->buffer_overflow) {
505 dev->buffer_overflow = 0;
506 spin_unlock_irq(&dev->rbsl);
507 rv = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL);
508 if (rv < 0)
509 dev->buffer_overflow = 1;
510 } else {
511 spin_unlock_irq(&dev->rbsl);
512 }
513
Michael Hund2824bd22005-06-27 22:44:22 +0200514unlock_exit:
515 /* unlock the device */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700516 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200517
518exit:
519 return retval;
520}
521
522/**
523 * ld_usb_write
524 */
525static ssize_t ld_usb_write(struct file *file, const char __user *buffer,
526 size_t count, loff_t *ppos)
527{
528 struct ld_usb *dev;
529 size_t bytes_to_write;
530 int retval = 0;
531
532 dev = file->private_data;
533
534 /* verify that we actually have some data to write */
535 if (count == 0)
536 goto exit;
537
538 /* lock this object */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700539 if (mutex_lock_interruptible(&dev->mutex)) {
Michael Hund2824bd22005-06-27 22:44:22 +0200540 retval = -ERESTARTSYS;
541 goto exit;
542 }
543
544 /* verify that the device wasn't unplugged */
545 if (dev->intf == NULL) {
546 retval = -ENODEV;
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700547 printk(KERN_ERR "ldusb: No device or device unplugged %d\n", retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200548 goto unlock_exit;
549 }
550
551 /* wait until previous transfer is finished */
552 if (dev->interrupt_out_busy) {
553 if (file->f_flags & O_NONBLOCK) {
554 retval = -EAGAIN;
555 goto unlock_exit;
556 }
557 retval = wait_event_interruptible(dev->write_wait, !dev->interrupt_out_busy);
558 if (retval < 0) {
559 goto unlock_exit;
560 }
561 }
562
563 /* write the data into interrupt_out_buffer from userspace */
564 bytes_to_write = min(count, write_buffer_size*dev->interrupt_out_endpoint_size);
565 if (bytes_to_write < count)
Milian Reichardte3146212017-03-04 03:42:34 +0100566 dev_warn(&dev->intf->dev, "Write buffer overflow, %zd bytes dropped\n", count-bytes_to_write);
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700567 dev_dbg(&dev->intf->dev, "%s: count = %zd, bytes_to_write = %zd\n",
568 __func__, count, bytes_to_write);
Michael Hund2824bd22005-06-27 22:44:22 +0200569
570 if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write)) {
571 retval = -EFAULT;
572 goto unlock_exit;
573 }
574
575 if (dev->interrupt_out_endpoint == NULL) {
576 /* try HID_REQ_SET_REPORT=9 on control_endpoint instead of interrupt_out_endpoint */
577 retval = usb_control_msg(interface_to_usbdev(dev->intf),
578 usb_sndctrlpipe(interface_to_usbdev(dev->intf), 0),
579 9,
580 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_OUT,
581 1 << 8, 0,
582 dev->interrupt_out_buffer,
583 bytes_to_write,
584 USB_CTRL_SET_TIMEOUT * HZ);
585 if (retval < 0)
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700586 dev_err(&dev->intf->dev,
587 "Couldn't submit HID_REQ_SET_REPORT %d\n",
588 retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200589 goto unlock_exit;
590 }
591
592 /* send off the urb */
593 usb_fill_int_urb(dev->interrupt_out_urb,
594 interface_to_usbdev(dev->intf),
595 usb_sndintpipe(interface_to_usbdev(dev->intf),
596 dev->interrupt_out_endpoint->bEndpointAddress),
597 dev->interrupt_out_buffer,
598 bytes_to_write,
599 ld_usb_interrupt_out_callback,
600 dev,
601 dev->interrupt_out_interval);
602
603 dev->interrupt_out_busy = 1;
604 wmb();
605
606 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL);
607 if (retval) {
608 dev->interrupt_out_busy = 0;
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700609 dev_err(&dev->intf->dev,
610 "Couldn't submit interrupt_out_urb %d\n", retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200611 goto unlock_exit;
612 }
613 retval = bytes_to_write;
614
615unlock_exit:
616 /* unlock the device */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700617 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200618
619exit:
620 return retval;
621}
622
623/* file operations needed when we register this driver */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300624static const struct file_operations ld_usb_fops = {
Michael Hund2824bd22005-06-27 22:44:22 +0200625 .owner = THIS_MODULE,
626 .read = ld_usb_read,
627 .write = ld_usb_write,
628 .open = ld_usb_open,
629 .release = ld_usb_release,
630 .poll = ld_usb_poll,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200631 .llseek = no_llseek,
Michael Hund2824bd22005-06-27 22:44:22 +0200632};
633
634/*
635 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartman595b14c2006-01-18 17:36:58 -0500636 * and to have the device registered with the driver core
Michael Hund2824bd22005-06-27 22:44:22 +0200637 */
638static struct usb_class_driver ld_usb_class = {
639 .name = "ldusb%d",
640 .fops = &ld_usb_fops,
641 .minor_base = USB_LD_MINOR_BASE,
642};
643
644/**
645 * ld_usb_probe
646 *
647 * Called by the usb core when a new device is connected that it thinks
648 * this driver might be interested in.
649 */
650static int ld_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
651{
652 struct usb_device *udev = interface_to_usbdev(intf);
653 struct ld_usb *dev = NULL;
654 struct usb_host_interface *iface_desc;
Michael Hund2824bd22005-06-27 22:44:22 +0200655 char *buffer;
Michael Hund2824bd22005-06-27 22:44:22 +0200656 int retval = -ENOMEM;
Johan Hovold2707ca12017-03-17 11:35:40 +0100657 int res;
Michael Hund2824bd22005-06-27 22:44:22 +0200658
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400659 /* allocate memory for our device state and initialize it */
Michael Hund2824bd22005-06-27 22:44:22 +0200660
Oliver Neukum1144cf72006-01-06 22:40:02 +0100661 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200662 if (!dev)
Michael Hund2824bd22005-06-27 22:44:22 +0200663 goto exit;
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700664 mutex_init(&dev->mutex);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200665 spin_lock_init(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200666 dev->intf = intf;
667 init_waitqueue_head(&dev->read_wait);
668 init_waitqueue_head(&dev->write_wait);
669
670 /* workaround for early firmware versions on fast computers */
671 if ((le16_to_cpu(udev->descriptor.idVendor) == USB_VENDOR_ID_LD) &&
Michael Hundba3e66e2006-02-02 09:36:43 +0100672 ((le16_to_cpu(udev->descriptor.idProduct) == USB_DEVICE_ID_LD_CASSY) ||
673 (le16_to_cpu(udev->descriptor.idProduct) == USB_DEVICE_ID_LD_COM3LAB)) &&
Michael Hund2824bd22005-06-27 22:44:22 +0200674 (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x103)) {
675 buffer = kmalloc(256, GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200676 if (!buffer)
Michael Hunda6db5922005-07-29 12:17:20 -0700677 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200678 /* usb_string makes SETUP+STALL to leave always ControlReadLoop */
679 usb_string(udev, 255, buffer, 256);
680 kfree(buffer);
681 }
682
683 iface_desc = intf->cur_altsetting;
684
Johan Hovold2707ca12017-03-17 11:35:40 +0100685 res = usb_find_last_int_in_endpoint(iface_desc,
686 &dev->interrupt_in_endpoint);
687 if (res) {
Michael Hund2824bd22005-06-27 22:44:22 +0200688 dev_err(&intf->dev, "Interrupt in endpoint not found\n");
Johan Hovold2707ca12017-03-17 11:35:40 +0100689 retval = res;
Michael Hund2824bd22005-06-27 22:44:22 +0200690 goto error;
691 }
Johan Hovold2707ca12017-03-17 11:35:40 +0100692
693 res = usb_find_last_int_out_endpoint(iface_desc,
694 &dev->interrupt_out_endpoint);
695 if (res)
Michael Hund2824bd22005-06-27 22:44:22 +0200696 dev_warn(&intf->dev, "Interrupt out endpoint not found (using control endpoint instead)\n");
697
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700698 dev->interrupt_in_endpoint_size = usb_endpoint_maxp(dev->interrupt_in_endpoint);
Kees Cook6da2ec52018-06-12 13:55:00 -0700699 dev->ring_buffer =
700 kmalloc_array(ring_buffer_size,
701 sizeof(size_t) + dev->interrupt_in_endpoint_size,
702 GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200703 if (!dev->ring_buffer)
Michael Hund2824bd22005-06-27 22:44:22 +0200704 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200705 dev->interrupt_in_buffer = kmalloc(dev->interrupt_in_endpoint_size, GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200706 if (!dev->interrupt_in_buffer)
Michael Hund2824bd22005-06-27 22:44:22 +0200707 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200708 dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang2d403902016-08-11 23:14:40 +0200709 if (!dev->interrupt_in_urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200710 goto error;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700711 dev->interrupt_out_endpoint_size = dev->interrupt_out_endpoint ? usb_endpoint_maxp(dev->interrupt_out_endpoint) :
Michael Hund2824bd22005-06-27 22:44:22 +0200712 udev->descriptor.bMaxPacketSize0;
Kees Cook6da2ec52018-06-12 13:55:00 -0700713 dev->interrupt_out_buffer =
714 kmalloc_array(write_buffer_size,
715 dev->interrupt_out_endpoint_size, GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200716 if (!dev->interrupt_out_buffer)
Michael Hund2824bd22005-06-27 22:44:22 +0200717 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200718 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang2d403902016-08-11 23:14:40 +0200719 if (!dev->interrupt_out_urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200720 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200721 dev->interrupt_in_interval = min_interrupt_in_interval > dev->interrupt_in_endpoint->bInterval ? min_interrupt_in_interval : dev->interrupt_in_endpoint->bInterval;
722 if (dev->interrupt_out_endpoint)
723 dev->interrupt_out_interval = min_interrupt_out_interval > dev->interrupt_out_endpoint->bInterval ? min_interrupt_out_interval : dev->interrupt_out_endpoint->bInterval;
724
725 /* we can register the device now, as it is ready */
726 usb_set_intfdata(intf, dev);
727
728 retval = usb_register_dev(intf, &ld_usb_class);
729 if (retval) {
730 /* something prevented us from registering this driver */
731 dev_err(&intf->dev, "Not able to get a minor for this device.\n");
732 usb_set_intfdata(intf, NULL);
733 goto error;
734 }
735
736 /* let the user know what node this device is now attached to */
737 dev_info(&intf->dev, "LD USB Device #%d now attached to major %d minor %d\n",
738 (intf->minor - USB_LD_MINOR_BASE), USB_MAJOR, intf->minor);
739
740exit:
741 return retval;
742
743error:
744 ld_usb_delete(dev);
745
746 return retval;
747}
748
749/**
750 * ld_usb_disconnect
751 *
752 * Called by the usb core when the device is removed from the system.
753 */
754static void ld_usb_disconnect(struct usb_interface *intf)
755{
756 struct ld_usb *dev;
757 int minor;
758
Michael Hund2824bd22005-06-27 22:44:22 +0200759 dev = usb_get_intfdata(intf);
760 usb_set_intfdata(intf, NULL);
761
Michael Hund2824bd22005-06-27 22:44:22 +0200762 minor = intf->minor;
763
764 /* give back our minor */
765 usb_deregister_dev(intf, &ld_usb_class);
766
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700767 mutex_lock(&dev->mutex);
Alan Sternd4ead162007-05-22 11:46:41 -0400768
Michael Hund2824bd22005-06-27 22:44:22 +0200769 /* if the device is not opened, then we clean up right now */
770 if (!dev->open_count) {
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700771 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200772 ld_usb_delete(dev);
773 } else {
774 dev->intf = NULL;
Oliver Neukumd12b85e2009-07-02 17:01:06 +0200775 /* wake up pollers */
776 wake_up_interruptible_all(&dev->read_wait);
777 wake_up_interruptible_all(&dev->write_wait);
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700778 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200779 }
780
Michael Hund2824bd22005-06-27 22:44:22 +0200781 dev_info(&intf->dev, "LD USB Device #%d now disconnected\n",
782 (minor - USB_LD_MINOR_BASE));
783}
784
785/* usb specific object needed to register this driver with the usb subsystem */
786static struct usb_driver ld_usb_driver = {
Michael Hund2824bd22005-06-27 22:44:22 +0200787 .name = "ldusb",
788 .probe = ld_usb_probe,
789 .disconnect = ld_usb_disconnect,
790 .id_table = ld_usb_table,
791};
792
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800793module_usb_driver(ld_usb_driver);
Michael Hund2824bd22005-06-27 22:44:22 +0200794