blob: eee69c9e9a12a5878dd792b7642b704659b755a7 [file] [log] [blame]
Michael Hund2824bd22005-06-27 22:44:22 +02001/**
2 * Generic USB driver for report based interrupt in/out devices
3 * like LD Didactic's USB devices. LD Didactic's USB devices are
4 * HID devices which do not use HID report definitons (they use
5 * raw interrupt in and our reports only for communication).
6 *
7 * This driver uses a ring buffer for time critical reading of
8 * interrupt in reports and provides read and write methods for
9 * raw interrupt reports (similar to the Windows HID driver).
10 * Devices based on the book USB COMPLETE by Jan Axelson may need
11 * such a compatibility to the Windows HID driver.
12 *
13 * Copyright (C) 2005 Michael Hund <mhund@ld-didactic.de>
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * Derived from Lego USB Tower driver
21 * Copyright (C) 2003 David Glance <advidgsf@sourceforge.net>
22 * 2001-2004 Juergen Stuber <starblue@users.sourceforge.net>
Michael Hund2824bd22005-06-27 22:44:22 +020023 */
24
Michael Hund2824bd22005-06-27 22:44:22 +020025#include <linux/kernel.h>
26#include <linux/errno.h>
Michael Hund2824bd22005-06-27 22:44:22 +020027#include <linux/slab.h>
28#include <linux/module.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010029#include <linux/mutex.h>
Michael Hund2824bd22005-06-27 22:44:22 +020030
31#include <asm/uaccess.h>
32#include <linux/input.h>
33#include <linux/usb.h>
34#include <linux/poll.h>
35
36/* Define these values to match your devices */
37#define USB_VENDOR_ID_LD 0x0f11 /* USB Vendor ID of LD Didactic GmbH */
Michael Hundce97cac2011-05-03 10:12:00 -070038#define USB_DEVICE_ID_LD_CASSY 0x1000 /* USB Product ID of CASSY-S modules with 8 bytes endpoint size */
39#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 +010040#define USB_DEVICE_ID_LD_POCKETCASSY 0x1010 /* USB Product ID of Pocket-CASSY */
Michael Hundce97cac2011-05-03 10:12:00 -070041#define USB_DEVICE_ID_LD_POCKETCASSY2 0x1011 /* USB Product ID of Pocket-CASSY 2 (reserved) */
Michael Hundba3e66e2006-02-02 09:36:43 +010042#define USB_DEVICE_ID_LD_MOBILECASSY 0x1020 /* USB Product ID of Mobile-CASSY */
Michael Hundce97cac2011-05-03 10:12:00 -070043#define USB_DEVICE_ID_LD_MOBILECASSY2 0x1021 /* USB Product ID of Mobile-CASSY 2 (reserved) */
44#define USB_DEVICE_ID_LD_MICROCASSYVOLTAGE 0x1031 /* USB Product ID of Micro-CASSY Voltage */
45#define USB_DEVICE_ID_LD_MICROCASSYCURRENT 0x1032 /* USB Product ID of Micro-CASSY Current */
46#define USB_DEVICE_ID_LD_MICROCASSYTIME 0x1033 /* USB Product ID of Micro-CASSY Time (reserved) */
47#define USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE 0x1035 /* USB Product ID of Micro-CASSY Temperature */
48#define USB_DEVICE_ID_LD_MICROCASSYPH 0x1038 /* USB Product ID of Micro-CASSY pH */
Karsten Koopf04280f2018-02-09 09:12:06 +000049#define USB_DEVICE_ID_LD_POWERANALYSERCASSY 0x1040 /* USB Product ID of Power Analyser CASSY */
50#define USB_DEVICE_ID_LD_CONVERTERCONTROLLERCASSY 0x1042 /* USB Product ID of Converter Controller CASSY */
51#define USB_DEVICE_ID_LD_MACHINETESTCASSY 0x1043 /* USB Product ID of Machine Test CASSY */
Michael Hundba3e66e2006-02-02 09:36:43 +010052#define USB_DEVICE_ID_LD_JWM 0x1080 /* USB Product ID of Joule and Wattmeter */
53#define USB_DEVICE_ID_LD_DMMP 0x1081 /* USB Product ID of Digital Multimeter P (reserved) */
54#define USB_DEVICE_ID_LD_UMIP 0x1090 /* USB Product ID of UMI P */
Michael Hundce97cac2011-05-03 10:12:00 -070055#define USB_DEVICE_ID_LD_UMIC 0x10A0 /* USB Product ID of UMI C */
56#define USB_DEVICE_ID_LD_UMIB 0x10B0 /* USB Product ID of UMI B */
57#define USB_DEVICE_ID_LD_XRAY 0x1100 /* USB Product ID of X-Ray Apparatus 55481 */
58#define USB_DEVICE_ID_LD_XRAY2 0x1101 /* USB Product ID of X-Ray Apparatus 554800 */
59#define USB_DEVICE_ID_LD_XRAYCT 0x1110 /* USB Product ID of X-Ray Apparatus CT 554821*/
Michael Hundba3e66e2006-02-02 09:36:43 +010060#define USB_DEVICE_ID_LD_VIDEOCOM 0x1200 /* USB Product ID of VideoCom */
Michael Hundce97cac2011-05-03 10:12:00 -070061#define USB_DEVICE_ID_LD_MOTOR 0x1210 /* USB Product ID of Motor (reserved) */
Michael Hundba3e66e2006-02-02 09:36:43 +010062#define USB_DEVICE_ID_LD_COM3LAB 0x2000 /* USB Product ID of COM3LAB */
63#define USB_DEVICE_ID_LD_TELEPORT 0x2010 /* USB Product ID of Terminal Adapter */
64#define USB_DEVICE_ID_LD_NETWORKANALYSER 0x2020 /* USB Product ID of Network Analyser */
65#define USB_DEVICE_ID_LD_POWERCONTROL 0x2030 /* USB Product ID of Converter Control Unit */
66#define USB_DEVICE_ID_LD_MACHINETEST 0x2040 /* USB Product ID of Machine Test System */
Michael Hundce97cac2011-05-03 10:12:00 -070067#define USB_DEVICE_ID_LD_MOSTANALYSER 0x2050 /* USB Product ID of MOST Protocol Analyser */
68#define USB_DEVICE_ID_LD_MOSTANALYSER2 0x2051 /* USB Product ID of MOST Protocol Analyser 2 */
69#define USB_DEVICE_ID_LD_ABSESP 0x2060 /* USB Product ID of ABS ESP */
70#define USB_DEVICE_ID_LD_AUTODATABUS 0x2070 /* USB Product ID of Automotive Data Buses */
71#define USB_DEVICE_ID_LD_MCT 0x2080 /* USB Product ID of Microcontroller technique */
72#define USB_DEVICE_ID_LD_HYBRID 0x2090 /* USB Product ID of Automotive Hybrid */
73#define USB_DEVICE_ID_LD_HEATCONTROL 0x20A0 /* USB Product ID of Heat control */
Michael Hund2824bd22005-06-27 22:44:22 +020074
Michael Hund2824bd22005-06-27 22:44:22 +020075#ifdef CONFIG_USB_DYNAMIC_MINORS
76#define USB_LD_MINOR_BASE 0
77#else
78#define USB_LD_MINOR_BASE 176
79#endif
80
81/* table of devices that work with this driver */
Németh Márton33b9e162010-01-10 15:34:45 +010082static const struct usb_device_id ld_usb_table[] = {
Michael Hundba3e66e2006-02-02 09:36:43 +010083 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
Michael Hundce97cac2011-05-03 10:12:00 -070084 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY2) },
Michael Hundba3e66e2006-02-02 09:36:43 +010085 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
Michael Hundce97cac2011-05-03 10:12:00 -070086 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY2) },
Michael Hundba3e66e2006-02-02 09:36:43 +010087 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
Michael Hundce97cac2011-05-03 10:12:00 -070088 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY2) },
89 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYVOLTAGE) },
90 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYCURRENT) },
91 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTIME) },
92 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE) },
93 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYPH) },
Karsten Koopf04280f2018-02-09 09:12:06 +000094 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERANALYSERCASSY) },
95 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CONVERTERCONTROLLERCASSY) },
96 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETESTCASSY) },
Michael Hundba3e66e2006-02-02 09:36:43 +010097 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM) },
98 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP) },
99 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP) },
Michael Hundce97cac2011-05-03 10:12:00 -0700100 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIC) },
101 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIB) },
102 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY) },
Michael Hundba3e66e2006-02-02 09:36:43 +0100103 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2) },
104 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM) },
Michael Hundce97cac2011-05-03 10:12:00 -0700105 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOTOR) },
Michael Hundba3e66e2006-02-02 09:36:43 +0100106 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB) },
107 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT) },
108 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) },
109 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) },
110 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) },
Michael Hundce97cac2011-05-03 10:12:00 -0700111 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER) },
112 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER2) },
113 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_ABSESP) },
114 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_AUTODATABUS) },
115 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) },
116 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) },
117 { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) },
Michael Hund2824bd22005-06-27 22:44:22 +0200118 { } /* Terminating entry */
119};
120MODULE_DEVICE_TABLE(usb, ld_usb_table);
Michael Hundce97cac2011-05-03 10:12:00 -0700121MODULE_VERSION("V0.14");
Michael Hund2824bd22005-06-27 22:44:22 +0200122MODULE_AUTHOR("Michael Hund <mhund@ld-didactic.de>");
123MODULE_DESCRIPTION("LD USB Driver");
124MODULE_LICENSE("GPL");
125MODULE_SUPPORTED_DEVICE("LD USB Devices");
126
Michael Hund2824bd22005-06-27 22:44:22 +0200127/* All interrupt in transfers are collected in a ring buffer to
128 * avoid racing conditions and get better performance of the driver.
129 */
130static int ring_buffer_size = 128;
131module_param(ring_buffer_size, int, 0);
132MODULE_PARM_DESC(ring_buffer_size, "Read ring buffer size in reports");
133
134/* The write_buffer can contain more than one interrupt out transfer.
135 */
136static int write_buffer_size = 10;
137module_param(write_buffer_size, int, 0);
138MODULE_PARM_DESC(write_buffer_size, "Write buffer size in reports");
139
140/* As of kernel version 2.6.4 ehci-hcd uses an
141 * "only one interrupt transfer per frame" shortcut
142 * to simplify the scheduling of periodic transfers.
143 * This conflicts with our standard 1ms intervals for in and out URBs.
144 * We use default intervals of 2ms for in and 2ms for out transfers,
145 * which should be fast enough.
146 * Increase the interval to allow more devices that do interrupt transfers,
147 * or set to 1 to use the standard interval from the endpoint descriptors.
148 */
149static int min_interrupt_in_interval = 2;
150module_param(min_interrupt_in_interval, int, 0);
151MODULE_PARM_DESC(min_interrupt_in_interval, "Minimum interrupt in interval in ms");
152
153static int min_interrupt_out_interval = 2;
154module_param(min_interrupt_out_interval, int, 0);
155MODULE_PARM_DESC(min_interrupt_out_interval, "Minimum interrupt out interval in ms");
156
157/* Structure to hold all of our device specific stuff */
158struct ld_usb {
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700159 struct mutex mutex; /* locks this structure */
Michael Hund2824bd22005-06-27 22:44:22 +0200160 struct usb_interface* intf; /* save off the usb interface pointer */
Johan Hovoldf56ae522019-10-09 17:38:46 +0200161 unsigned long disconnected:1;
Michael Hund2824bd22005-06-27 22:44:22 +0200162
163 int open_count; /* number of times this port has been opened */
164
165 char* ring_buffer;
166 unsigned int ring_head;
167 unsigned int ring_tail;
168
169 wait_queue_head_t read_wait;
170 wait_queue_head_t write_wait;
171
172 char* interrupt_in_buffer;
173 struct usb_endpoint_descriptor* interrupt_in_endpoint;
174 struct urb* interrupt_in_urb;
175 int interrupt_in_interval;
176 size_t interrupt_in_endpoint_size;
177 int interrupt_in_running;
178 int interrupt_in_done;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200179 int buffer_overflow;
180 spinlock_t rbsl;
Michael Hund2824bd22005-06-27 22:44:22 +0200181
182 char* interrupt_out_buffer;
183 struct usb_endpoint_descriptor* interrupt_out_endpoint;
184 struct urb* interrupt_out_urb;
185 int interrupt_out_interval;
186 size_t interrupt_out_endpoint_size;
187 int interrupt_out_busy;
188};
189
Michael Hund2824bd22005-06-27 22:44:22 +0200190static struct usb_driver ld_usb_driver;
191
192/**
193 * ld_usb_abort_transfers
194 * aborts transfers and frees associated data structures
195 */
196static void ld_usb_abort_transfers(struct ld_usb *dev)
197{
198 /* shutdown transfer */
199 if (dev->interrupt_in_running) {
200 dev->interrupt_in_running = 0;
Johan Hovoldf56ae522019-10-09 17:38:46 +0200201 usb_kill_urb(dev->interrupt_in_urb);
Michael Hund2824bd22005-06-27 22:44:22 +0200202 }
203 if (dev->interrupt_out_busy)
Johan Hovoldf56ae522019-10-09 17:38:46 +0200204 usb_kill_urb(dev->interrupt_out_urb);
Michael Hund2824bd22005-06-27 22:44:22 +0200205}
206
207/**
208 * ld_usb_delete
209 */
210static void ld_usb_delete(struct ld_usb *dev)
211{
Michael Hund2824bd22005-06-27 22:44:22 +0200212 /* free data structures */
213 usb_free_urb(dev->interrupt_in_urb);
214 usb_free_urb(dev->interrupt_out_urb);
215 kfree(dev->ring_buffer);
216 kfree(dev->interrupt_in_buffer);
217 kfree(dev->interrupt_out_buffer);
218 kfree(dev);
219}
220
221/**
222 * ld_usb_interrupt_in_callback
223 */
David Howells7d12e782006-10-05 14:55:46 +0100224static void ld_usb_interrupt_in_callback(struct urb *urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200225{
226 struct ld_usb *dev = urb->context;
227 size_t *actual_buffer;
228 unsigned int next_ring_head;
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700229 int status = urb->status;
Michael Hund2824bd22005-06-27 22:44:22 +0200230 int retval;
231
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700232 if (status) {
233 if (status == -ENOENT ||
234 status == -ECONNRESET ||
235 status == -ESHUTDOWN) {
Michael Hund2824bd22005-06-27 22:44:22 +0200236 goto exit;
237 } else {
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700238 dev_dbg(&dev->intf->dev,
239 "%s: nonzero status received: %d\n", __func__,
240 status);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200241 spin_lock(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200242 goto resubmit; /* maybe we can recover */
243 }
244 }
245
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200246 spin_lock(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200247 if (urb->actual_length > 0) {
248 next_ring_head = (dev->ring_head+1) % ring_buffer_size;
249 if (next_ring_head != dev->ring_tail) {
250 actual_buffer = (size_t*)(dev->ring_buffer + dev->ring_head*(sizeof(size_t)+dev->interrupt_in_endpoint_size));
251 /* actual_buffer gets urb->actual_length + interrupt_in_buffer */
252 *actual_buffer = urb->actual_length;
253 memcpy(actual_buffer+1, dev->interrupt_in_buffer, urb->actual_length);
254 dev->ring_head = next_ring_head;
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700255 dev_dbg(&dev->intf->dev, "%s: received %d bytes\n",
256 __func__, urb->actual_length);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200257 } else {
Michael Hund2824bd22005-06-27 22:44:22 +0200258 dev_warn(&dev->intf->dev,
259 "Ring buffer overflow, %d bytes dropped\n",
260 urb->actual_length);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200261 dev->buffer_overflow = 1;
262 }
Michael Hund2824bd22005-06-27 22:44:22 +0200263 }
264
265resubmit:
266 /* resubmit if we're still running */
Johan Hovoldf56ae522019-10-09 17:38:46 +0200267 if (dev->interrupt_in_running && !dev->buffer_overflow) {
Michael Hund2824bd22005-06-27 22:44:22 +0200268 retval = usb_submit_urb(dev->interrupt_in_urb, GFP_ATOMIC);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200269 if (retval) {
Michael Hund2824bd22005-06-27 22:44:22 +0200270 dev_err(&dev->intf->dev,
271 "usb_submit_urb failed (%d)\n", retval);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200272 dev->buffer_overflow = 1;
273 }
Michael Hund2824bd22005-06-27 22:44:22 +0200274 }
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200275 spin_unlock(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200276exit:
277 dev->interrupt_in_done = 1;
278 wake_up_interruptible(&dev->read_wait);
279}
280
281/**
282 * ld_usb_interrupt_out_callback
283 */
David Howells7d12e782006-10-05 14:55:46 +0100284static void ld_usb_interrupt_out_callback(struct urb *urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200285{
286 struct ld_usb *dev = urb->context;
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700287 int status = urb->status;
Michael Hund2824bd22005-06-27 22:44:22 +0200288
289 /* sync/async unlink faults aren't errors */
Greg Kroah-Hartman491c0212007-07-18 10:58:02 -0700290 if (status && !(status == -ENOENT ||
291 status == -ECONNRESET ||
292 status == -ESHUTDOWN))
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700293 dev_dbg(&dev->intf->dev,
294 "%s - nonzero write interrupt status received: %d\n",
295 __func__, status);
Michael Hund2824bd22005-06-27 22:44:22 +0200296
297 dev->interrupt_out_busy = 0;
298 wake_up_interruptible(&dev->write_wait);
299}
300
301/**
302 * ld_usb_open
303 */
304static int ld_usb_open(struct inode *inode, struct file *file)
305{
306 struct ld_usb *dev;
307 int subminor;
Alan Sternd4ead162007-05-22 11:46:41 -0400308 int retval;
Michael Hund2824bd22005-06-27 22:44:22 +0200309 struct usb_interface *interface;
310
311 nonseekable_open(inode, file);
312 subminor = iminor(inode);
313
Michael Hund2824bd22005-06-27 22:44:22 +0200314 interface = usb_find_interface(&ld_usb_driver, subminor);
315
316 if (!interface) {
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700317 printk(KERN_ERR "%s - error, can't find device for minor %d\n",
318 __func__, subminor);
Alan Sternd4ead162007-05-22 11:46:41 -0400319 return -ENODEV;
Michael Hund2824bd22005-06-27 22:44:22 +0200320 }
321
322 dev = usb_get_intfdata(interface);
323
Oliver Neukum6248c522010-01-14 16:12:27 +0100324 if (!dev)
Alan Sternd4ead162007-05-22 11:46:41 -0400325 return -ENODEV;
Michael Hund2824bd22005-06-27 22:44:22 +0200326
327 /* lock this device */
Oliver Neukum6248c522010-01-14 16:12:27 +0100328 if (mutex_lock_interruptible(&dev->mutex))
Alan Sternd4ead162007-05-22 11:46:41 -0400329 return -ERESTARTSYS;
Michael Hund2824bd22005-06-27 22:44:22 +0200330
331 /* allow opening only once */
332 if (dev->open_count) {
333 retval = -EBUSY;
334 goto unlock_exit;
335 }
336 dev->open_count = 1;
337
338 /* initialize in direction */
339 dev->ring_head = 0;
340 dev->ring_tail = 0;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200341 dev->buffer_overflow = 0;
Michael Hund2824bd22005-06-27 22:44:22 +0200342 usb_fill_int_urb(dev->interrupt_in_urb,
343 interface_to_usbdev(interface),
344 usb_rcvintpipe(interface_to_usbdev(interface),
345 dev->interrupt_in_endpoint->bEndpointAddress),
346 dev->interrupt_in_buffer,
347 dev->interrupt_in_endpoint_size,
348 ld_usb_interrupt_in_callback,
349 dev,
350 dev->interrupt_in_interval);
351
352 dev->interrupt_in_running = 1;
353 dev->interrupt_in_done = 0;
354
355 retval = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL);
356 if (retval) {
357 dev_err(&interface->dev, "Couldn't submit interrupt_in_urb %d\n", retval);
358 dev->interrupt_in_running = 0;
359 dev->open_count = 0;
360 goto unlock_exit;
361 }
362
363 /* save device in the file's private structure */
364 file->private_data = dev;
365
366unlock_exit:
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700367 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200368
Michael Hund2824bd22005-06-27 22:44:22 +0200369 return retval;
370}
371
372/**
373 * ld_usb_release
374 */
375static int ld_usb_release(struct inode *inode, struct file *file)
376{
377 struct ld_usb *dev;
378 int retval = 0;
379
380 dev = file->private_data;
381
382 if (dev == NULL) {
383 retval = -ENODEV;
384 goto exit;
385 }
386
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700387 if (mutex_lock_interruptible(&dev->mutex)) {
Michael Hund2824bd22005-06-27 22:44:22 +0200388 retval = -ERESTARTSYS;
389 goto exit;
390 }
391
392 if (dev->open_count != 1) {
393 retval = -ENODEV;
394 goto unlock_exit;
395 }
Johan Hovoldf56ae522019-10-09 17:38:46 +0200396 if (dev->disconnected) {
Michael Hund2824bd22005-06-27 22:44:22 +0200397 /* the device was unplugged before the file was released */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700398 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200399 /* unlock here as ld_usb_delete frees dev */
400 ld_usb_delete(dev);
401 goto exit;
402 }
403
404 /* wait until write transfer is finished */
405 if (dev->interrupt_out_busy)
406 wait_event_interruptible_timeout(dev->write_wait, !dev->interrupt_out_busy, 2 * HZ);
407 ld_usb_abort_transfers(dev);
408 dev->open_count = 0;
409
410unlock_exit:
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700411 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200412
413exit:
414 return retval;
415}
416
417/**
418 * ld_usb_poll
419 */
420static unsigned int ld_usb_poll(struct file *file, poll_table *wait)
421{
422 struct ld_usb *dev;
423 unsigned int mask = 0;
424
425 dev = file->private_data;
426
Johan Hovoldf56ae522019-10-09 17:38:46 +0200427 if (dev->disconnected)
Oliver Neukumd12b85e2009-07-02 17:01:06 +0200428 return POLLERR | POLLHUP;
429
Michael Hund2824bd22005-06-27 22:44:22 +0200430 poll_wait(file, &dev->read_wait, wait);
431 poll_wait(file, &dev->write_wait, wait);
432
433 if (dev->ring_head != dev->ring_tail)
434 mask |= POLLIN | POLLRDNORM;
435 if (!dev->interrupt_out_busy)
436 mask |= POLLOUT | POLLWRNORM;
437
438 return mask;
439}
440
441/**
442 * ld_usb_read
443 */
444static ssize_t ld_usb_read(struct file *file, char __user *buffer, size_t count,
445 loff_t *ppos)
446{
447 struct ld_usb *dev;
448 size_t *actual_buffer;
449 size_t bytes_to_read;
450 int retval = 0;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200451 int rv;
Michael Hund2824bd22005-06-27 22:44:22 +0200452
453 dev = file->private_data;
454
455 /* verify that we actually have some data to read */
456 if (count == 0)
457 goto exit;
458
459 /* lock this object */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700460 if (mutex_lock_interruptible(&dev->mutex)) {
Michael Hund2824bd22005-06-27 22:44:22 +0200461 retval = -ERESTARTSYS;
462 goto exit;
463 }
464
465 /* verify that the device wasn't unplugged */
Johan Hovoldf56ae522019-10-09 17:38:46 +0200466 if (dev->disconnected) {
Michael Hund2824bd22005-06-27 22:44:22 +0200467 retval = -ENODEV;
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700468 printk(KERN_ERR "ldusb: No device or device unplugged %d\n", retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200469 goto unlock_exit;
470 }
471
472 /* wait for data */
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200473 spin_lock_irq(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200474 if (dev->ring_head == dev->ring_tail) {
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200475 dev->interrupt_in_done = 0;
476 spin_unlock_irq(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200477 if (file->f_flags & O_NONBLOCK) {
478 retval = -EAGAIN;
479 goto unlock_exit;
480 }
481 retval = wait_event_interruptible(dev->read_wait, dev->interrupt_in_done);
482 if (retval < 0)
483 goto unlock_exit;
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200484 } else {
485 spin_unlock_irq(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200486 }
487
488 /* actual_buffer contains actual_length + interrupt_in_buffer */
489 actual_buffer = (size_t*)(dev->ring_buffer + dev->ring_tail*(sizeof(size_t)+dev->interrupt_in_endpoint_size));
490 bytes_to_read = min(count, *actual_buffer);
491 if (bytes_to_read < *actual_buffer)
Alexey Dobriyandd7d5002005-08-14 17:24:26 +0400492 dev_warn(&dev->intf->dev, "Read buffer overflow, %zd bytes dropped\n",
Michael Hund2824bd22005-06-27 22:44:22 +0200493 *actual_buffer-bytes_to_read);
494
495 /* copy one interrupt_in_buffer from ring_buffer into userspace */
496 if (copy_to_user(buffer, actual_buffer+1, bytes_to_read)) {
497 retval = -EFAULT;
498 goto unlock_exit;
499 }
500 dev->ring_tail = (dev->ring_tail+1) % ring_buffer_size;
501
502 retval = bytes_to_read;
503
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200504 spin_lock_irq(&dev->rbsl);
505 if (dev->buffer_overflow) {
506 dev->buffer_overflow = 0;
507 spin_unlock_irq(&dev->rbsl);
508 rv = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL);
509 if (rv < 0)
510 dev->buffer_overflow = 1;
511 } else {
512 spin_unlock_irq(&dev->rbsl);
513 }
514
Michael Hund2824bd22005-06-27 22:44:22 +0200515unlock_exit:
516 /* unlock the device */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700517 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200518
519exit:
520 return retval;
521}
522
523/**
524 * ld_usb_write
525 */
526static ssize_t ld_usb_write(struct file *file, const char __user *buffer,
527 size_t count, loff_t *ppos)
528{
529 struct ld_usb *dev;
530 size_t bytes_to_write;
531 int retval = 0;
532
533 dev = file->private_data;
534
535 /* verify that we actually have some data to write */
536 if (count == 0)
537 goto exit;
538
539 /* lock this object */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700540 if (mutex_lock_interruptible(&dev->mutex)) {
Michael Hund2824bd22005-06-27 22:44:22 +0200541 retval = -ERESTARTSYS;
542 goto exit;
543 }
544
545 /* verify that the device wasn't unplugged */
Johan Hovoldf56ae522019-10-09 17:38:46 +0200546 if (dev->disconnected) {
Michael Hund2824bd22005-06-27 22:44:22 +0200547 retval = -ENODEV;
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700548 printk(KERN_ERR "ldusb: No device or device unplugged %d\n", retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200549 goto unlock_exit;
550 }
551
552 /* wait until previous transfer is finished */
553 if (dev->interrupt_out_busy) {
554 if (file->f_flags & O_NONBLOCK) {
555 retval = -EAGAIN;
556 goto unlock_exit;
557 }
558 retval = wait_event_interruptible(dev->write_wait, !dev->interrupt_out_busy);
559 if (retval < 0) {
560 goto unlock_exit;
561 }
562 }
563
564 /* write the data into interrupt_out_buffer from userspace */
565 bytes_to_write = min(count, write_buffer_size*dev->interrupt_out_endpoint_size);
566 if (bytes_to_write < count)
Alexey Dobriyandd7d5002005-08-14 17:24:26 +0400567 dev_warn(&dev->intf->dev, "Write buffer overflow, %zd bytes dropped\n",count-bytes_to_write);
Greg Kroah-Hartman457163c2013-06-26 16:30:38 -0700568 dev_dbg(&dev->intf->dev, "%s: count = %zd, bytes_to_write = %zd\n",
569 __func__, count, bytes_to_write);
Michael Hund2824bd22005-06-27 22:44:22 +0200570
571 if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write)) {
572 retval = -EFAULT;
573 goto unlock_exit;
574 }
575
576 if (dev->interrupt_out_endpoint == NULL) {
577 /* try HID_REQ_SET_REPORT=9 on control_endpoint instead of interrupt_out_endpoint */
578 retval = usb_control_msg(interface_to_usbdev(dev->intf),
579 usb_sndctrlpipe(interface_to_usbdev(dev->intf), 0),
580 9,
581 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_OUT,
582 1 << 8, 0,
583 dev->interrupt_out_buffer,
584 bytes_to_write,
585 USB_CTRL_SET_TIMEOUT * HZ);
586 if (retval < 0)
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700587 dev_err(&dev->intf->dev,
588 "Couldn't submit HID_REQ_SET_REPORT %d\n",
589 retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200590 goto unlock_exit;
591 }
592
593 /* send off the urb */
594 usb_fill_int_urb(dev->interrupt_out_urb,
595 interface_to_usbdev(dev->intf),
596 usb_sndintpipe(interface_to_usbdev(dev->intf),
597 dev->interrupt_out_endpoint->bEndpointAddress),
598 dev->interrupt_out_buffer,
599 bytes_to_write,
600 ld_usb_interrupt_out_callback,
601 dev,
602 dev->interrupt_out_interval);
603
604 dev->interrupt_out_busy = 1;
605 wmb();
606
607 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL);
608 if (retval) {
609 dev->interrupt_out_busy = 0;
Greg Kroah-Hartmanb22862e2012-04-20 16:53:47 -0700610 dev_err(&dev->intf->dev,
611 "Couldn't submit interrupt_out_urb %d\n", retval);
Michael Hund2824bd22005-06-27 22:44:22 +0200612 goto unlock_exit;
613 }
614 retval = bytes_to_write;
615
616unlock_exit:
617 /* unlock the device */
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700618 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200619
620exit:
621 return retval;
622}
623
624/* file operations needed when we register this driver */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300625static const struct file_operations ld_usb_fops = {
Michael Hund2824bd22005-06-27 22:44:22 +0200626 .owner = THIS_MODULE,
627 .read = ld_usb_read,
628 .write = ld_usb_write,
629 .open = ld_usb_open,
630 .release = ld_usb_release,
631 .poll = ld_usb_poll,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200632 .llseek = no_llseek,
Michael Hund2824bd22005-06-27 22:44:22 +0200633};
634
635/*
636 * usb class driver info in order to get a minor number from the usb core,
Greg Kroah-Hartman595b14c2006-01-18 17:36:58 -0500637 * and to have the device registered with the driver core
Michael Hund2824bd22005-06-27 22:44:22 +0200638 */
639static struct usb_class_driver ld_usb_class = {
640 .name = "ldusb%d",
641 .fops = &ld_usb_fops,
642 .minor_base = USB_LD_MINOR_BASE,
643};
644
645/**
646 * ld_usb_probe
647 *
648 * Called by the usb core when a new device is connected that it thinks
649 * this driver might be interested in.
650 */
651static int ld_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
652{
653 struct usb_device *udev = interface_to_usbdev(intf);
654 struct ld_usb *dev = NULL;
655 struct usb_host_interface *iface_desc;
656 struct usb_endpoint_descriptor *endpoint;
657 char *buffer;
658 int i;
659 int retval = -ENOMEM;
660
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400661 /* allocate memory for our device state and initialize it */
Michael Hund2824bd22005-06-27 22:44:22 +0200662
Oliver Neukum1144cf72006-01-06 22:40:02 +0100663 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200664 if (!dev)
Michael Hund2824bd22005-06-27 22:44:22 +0200665 goto exit;
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700666 mutex_init(&dev->mutex);
Oliver Neukum9d33efd2007-05-04 09:23:40 +0200667 spin_lock_init(&dev->rbsl);
Michael Hund2824bd22005-06-27 22:44:22 +0200668 dev->intf = intf;
669 init_waitqueue_head(&dev->read_wait);
670 init_waitqueue_head(&dev->write_wait);
671
672 /* workaround for early firmware versions on fast computers */
673 if ((le16_to_cpu(udev->descriptor.idVendor) == USB_VENDOR_ID_LD) &&
Michael Hundba3e66e2006-02-02 09:36:43 +0100674 ((le16_to_cpu(udev->descriptor.idProduct) == USB_DEVICE_ID_LD_CASSY) ||
675 (le16_to_cpu(udev->descriptor.idProduct) == USB_DEVICE_ID_LD_COM3LAB)) &&
Michael Hund2824bd22005-06-27 22:44:22 +0200676 (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x103)) {
677 buffer = kmalloc(256, GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200678 if (!buffer)
Michael Hunda6db5922005-07-29 12:17:20 -0700679 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200680 /* usb_string makes SETUP+STALL to leave always ControlReadLoop */
681 usb_string(udev, 255, buffer, 256);
682 kfree(buffer);
683 }
684
685 iface_desc = intf->cur_altsetting;
686
687 /* set up the endpoint information */
688 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
689 endpoint = &iface_desc->endpoint[i].desc;
690
Luiz Fernando N. Capitulino54826872006-09-27 11:58:54 -0700691 if (usb_endpoint_is_int_in(endpoint))
Michael Hund2824bd22005-06-27 22:44:22 +0200692 dev->interrupt_in_endpoint = endpoint;
Michael Hund2824bd22005-06-27 22:44:22 +0200693
Luiz Fernando N. Capitulino54826872006-09-27 11:58:54 -0700694 if (usb_endpoint_is_int_out(endpoint))
Michael Hund2824bd22005-06-27 22:44:22 +0200695 dev->interrupt_out_endpoint = endpoint;
Michael Hund2824bd22005-06-27 22:44:22 +0200696 }
697 if (dev->interrupt_in_endpoint == NULL) {
698 dev_err(&intf->dev, "Interrupt in endpoint not found\n");
699 goto error;
700 }
701 if (dev->interrupt_out_endpoint == NULL)
702 dev_warn(&intf->dev, "Interrupt out endpoint not found (using control endpoint instead)\n");
703
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700704 dev->interrupt_in_endpoint_size = usb_endpoint_maxp(dev->interrupt_in_endpoint);
Michael Hund2824bd22005-06-27 22:44:22 +0200705 dev->ring_buffer = kmalloc(ring_buffer_size*(sizeof(size_t)+dev->interrupt_in_endpoint_size), GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200706 if (!dev->ring_buffer)
Michael Hund2824bd22005-06-27 22:44:22 +0200707 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200708 dev->interrupt_in_buffer = kmalloc(dev->interrupt_in_endpoint_size, GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200709 if (!dev->interrupt_in_buffer)
Michael Hund2824bd22005-06-27 22:44:22 +0200710 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200711 dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang2d403902016-08-11 23:14:40 +0200712 if (!dev->interrupt_in_urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200713 goto error;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700714 dev->interrupt_out_endpoint_size = dev->interrupt_out_endpoint ? usb_endpoint_maxp(dev->interrupt_out_endpoint) :
Michael Hund2824bd22005-06-27 22:44:22 +0200715 udev->descriptor.bMaxPacketSize0;
716 dev->interrupt_out_buffer = kmalloc(write_buffer_size*dev->interrupt_out_endpoint_size, GFP_KERNEL);
Wolfram Sang6714ffa2016-08-25 19:39:18 +0200717 if (!dev->interrupt_out_buffer)
Michael Hund2824bd22005-06-27 22:44:22 +0200718 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200719 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang2d403902016-08-11 23:14:40 +0200720 if (!dev->interrupt_out_urb)
Michael Hund2824bd22005-06-27 22:44:22 +0200721 goto error;
Michael Hund2824bd22005-06-27 22:44:22 +0200722 dev->interrupt_in_interval = min_interrupt_in_interval > dev->interrupt_in_endpoint->bInterval ? min_interrupt_in_interval : dev->interrupt_in_endpoint->bInterval;
723 if (dev->interrupt_out_endpoint)
724 dev->interrupt_out_interval = min_interrupt_out_interval > dev->interrupt_out_endpoint->bInterval ? min_interrupt_out_interval : dev->interrupt_out_endpoint->bInterval;
725
726 /* we can register the device now, as it is ready */
727 usb_set_intfdata(intf, dev);
728
729 retval = usb_register_dev(intf, &ld_usb_class);
730 if (retval) {
731 /* something prevented us from registering this driver */
732 dev_err(&intf->dev, "Not able to get a minor for this device.\n");
733 usb_set_intfdata(intf, NULL);
734 goto error;
735 }
736
737 /* let the user know what node this device is now attached to */
738 dev_info(&intf->dev, "LD USB Device #%d now attached to major %d minor %d\n",
739 (intf->minor - USB_LD_MINOR_BASE), USB_MAJOR, intf->minor);
740
741exit:
742 return retval;
743
744error:
745 ld_usb_delete(dev);
746
747 return retval;
748}
749
750/**
751 * ld_usb_disconnect
752 *
753 * Called by the usb core when the device is removed from the system.
754 */
755static void ld_usb_disconnect(struct usb_interface *intf)
756{
757 struct ld_usb *dev;
758 int minor;
759
Michael Hund2824bd22005-06-27 22:44:22 +0200760 dev = usb_get_intfdata(intf);
761 usb_set_intfdata(intf, NULL);
762
Michael Hund2824bd22005-06-27 22:44:22 +0200763 minor = intf->minor;
764
765 /* give back our minor */
766 usb_deregister_dev(intf, &ld_usb_class);
767
Johan Hovoldf56ae522019-10-09 17:38:46 +0200768 usb_poison_urb(dev->interrupt_in_urb);
769 usb_poison_urb(dev->interrupt_out_urb);
770
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700771 mutex_lock(&dev->mutex);
Alan Sternd4ead162007-05-22 11:46:41 -0400772
Michael Hund2824bd22005-06-27 22:44:22 +0200773 /* if the device is not opened, then we clean up right now */
774 if (!dev->open_count) {
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700775 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200776 ld_usb_delete(dev);
777 } else {
Johan Hovoldf56ae522019-10-09 17:38:46 +0200778 dev->disconnected = 1;
Oliver Neukumd12b85e2009-07-02 17:01:06 +0200779 /* wake up pollers */
780 wake_up_interruptible_all(&dev->read_wait);
781 wake_up_interruptible_all(&dev->write_wait);
Daniel Walkerce0d7d32008-04-28 10:34:56 -0700782 mutex_unlock(&dev->mutex);
Michael Hund2824bd22005-06-27 22:44:22 +0200783 }
784
Michael Hund2824bd22005-06-27 22:44:22 +0200785 dev_info(&intf->dev, "LD USB Device #%d now disconnected\n",
786 (minor - USB_LD_MINOR_BASE));
787}
788
789/* usb specific object needed to register this driver with the usb subsystem */
790static struct usb_driver ld_usb_driver = {
Michael Hund2824bd22005-06-27 22:44:22 +0200791 .name = "ldusb",
792 .probe = ld_usb_probe,
793 .disconnect = ld_usb_disconnect,
794 .id_table = ld_usb_table,
795};
796
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800797module_usb_driver(ld_usb_driver);
Michael Hund2824bd22005-06-27 22:44:22 +0200798