xref: /openbmc/linux/drivers/usb/misc/ldusb.c (revision 29cc8897)
12824bd25SMichael Hund /**
22824bd25SMichael Hund  * Generic USB driver for report based interrupt in/out devices
32824bd25SMichael Hund  * like LD Didactic's USB devices. LD Didactic's USB devices are
42824bd25SMichael Hund  * HID devices which do not use HID report definitons (they use
52824bd25SMichael Hund  * raw interrupt in and our reports only for communication).
62824bd25SMichael Hund  *
72824bd25SMichael Hund  * This driver uses a ring buffer for time critical reading of
82824bd25SMichael Hund  * interrupt in reports and provides read and write methods for
92824bd25SMichael Hund  * raw interrupt reports (similar to the Windows HID driver).
102824bd25SMichael Hund  * Devices based on the book USB COMPLETE by Jan Axelson may need
112824bd25SMichael Hund  * such a compatibility to the Windows HID driver.
122824bd25SMichael Hund  *
132824bd25SMichael Hund  * Copyright (C) 2005 Michael Hund <mhund@ld-didactic.de>
142824bd25SMichael Hund  *
152824bd25SMichael Hund  *	This program is free software; you can redistribute it and/or
162824bd25SMichael Hund  *	modify it under the terms of the GNU General Public License as
172824bd25SMichael Hund  *	published by the Free Software Foundation; either version 2 of
182824bd25SMichael Hund  *	the License, or (at your option) any later version.
192824bd25SMichael Hund  *
202824bd25SMichael Hund  * Derived from Lego USB Tower driver
212824bd25SMichael Hund  * Copyright (C) 2003 David Glance <advidgsf@sourceforge.net>
222824bd25SMichael Hund  *		 2001-2004 Juergen Stuber <starblue@users.sourceforge.net>
232824bd25SMichael Hund  */
242824bd25SMichael Hund 
252824bd25SMichael Hund #include <linux/kernel.h>
262824bd25SMichael Hund #include <linux/errno.h>
272824bd25SMichael Hund #include <linux/init.h>
282824bd25SMichael Hund #include <linux/slab.h>
292824bd25SMichael Hund #include <linux/module.h>
304186ecf8SArjan van de Ven #include <linux/mutex.h>
312824bd25SMichael Hund 
322824bd25SMichael Hund #include <asm/uaccess.h>
332824bd25SMichael Hund #include <linux/input.h>
342824bd25SMichael Hund #include <linux/usb.h>
352824bd25SMichael Hund #include <linux/poll.h>
362824bd25SMichael Hund 
372824bd25SMichael Hund /* Define these values to match your devices */
382824bd25SMichael Hund #define USB_VENDOR_ID_LD		0x0f11	/* USB Vendor ID of LD Didactic GmbH */
39ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_CASSY		0x1000	/* USB Product ID of CASSY-S modules with 8 bytes endpoint size */
40ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_CASSY2		0x1001	/* USB Product ID of CASSY-S modules with 64 bytes endpoint size */
41ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_POCKETCASSY	0x1010	/* USB Product ID of Pocket-CASSY */
42ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_POCKETCASSY2	0x1011	/* USB Product ID of Pocket-CASSY 2 (reserved) */
43ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_MOBILECASSY	0x1020	/* USB Product ID of Mobile-CASSY */
44ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MOBILECASSY2	0x1021	/* USB Product ID of Mobile-CASSY 2 (reserved) */
45ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MICROCASSYVOLTAGE	0x1031	/* USB Product ID of Micro-CASSY Voltage */
46ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MICROCASSYCURRENT	0x1032	/* USB Product ID of Micro-CASSY Current */
47ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MICROCASSYTIME		0x1033	/* USB Product ID of Micro-CASSY Time (reserved) */
48ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE	0x1035	/* USB Product ID of Micro-CASSY Temperature */
49ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MICROCASSYPH		0x1038	/* USB Product ID of Micro-CASSY pH */
50ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_JWM		0x1080	/* USB Product ID of Joule and Wattmeter */
51ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_DMMP		0x1081	/* USB Product ID of Digital Multimeter P (reserved) */
52ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_UMIP		0x1090	/* USB Product ID of UMI P */
53ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_UMIC		0x10A0	/* USB Product ID of UMI C */
54ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_UMIB		0x10B0	/* USB Product ID of UMI B */
55ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_XRAY		0x1100	/* USB Product ID of X-Ray Apparatus 55481 */
56ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_XRAY2		0x1101	/* USB Product ID of X-Ray Apparatus 554800 */
57ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_XRAYCT		0x1110	/* USB Product ID of X-Ray Apparatus CT 554821*/
58ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_VIDEOCOM	0x1200	/* USB Product ID of VideoCom */
59ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MOTOR		0x1210	/* USB Product ID of Motor (reserved) */
60ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_COM3LAB	0x2000	/* USB Product ID of COM3LAB */
61ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_TELEPORT	0x2010	/* USB Product ID of Terminal Adapter */
62ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_NETWORKANALYSER 0x2020	/* USB Product ID of Network Analyser */
63ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_POWERCONTROL	0x2030	/* USB Product ID of Converter Control Unit */
64ba3e66e9SMichael Hund #define USB_DEVICE_ID_LD_MACHINETEST	0x2040	/* USB Product ID of Machine Test System */
65ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MOSTANALYSER	0x2050	/* USB Product ID of MOST Protocol Analyser */
66ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MOSTANALYSER2	0x2051	/* USB Product ID of MOST Protocol Analyser 2 */
67ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_ABSESP		0x2060	/* USB Product ID of ABS ESP */
68ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_AUTODATABUS	0x2070	/* USB Product ID of Automotive Data Buses */
69ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_MCT		0x2080	/* USB Product ID of Microcontroller technique */
70ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_HYBRID		0x2090	/* USB Product ID of Automotive Hybrid */
71ce97cac8SMichael Hund #define USB_DEVICE_ID_LD_HEATCONTROL	0x20A0	/* USB Product ID of Heat control */
722824bd25SMichael Hund 
732824bd25SMichael Hund #define USB_VENDOR_ID_VERNIER		0x08f7
742824bd25SMichael Hund #define USB_DEVICE_ID_VERNIER_GOTEMP	0x0002
752824bd25SMichael Hund #define USB_DEVICE_ID_VERNIER_SKIP	0x0003
762824bd25SMichael Hund #define USB_DEVICE_ID_VERNIER_CYCLOPS	0x0004
775b0a4d66SStephen Ware #define USB_DEVICE_ID_VERNIER_LCSPEC	0x0006
782824bd25SMichael Hund 
792824bd25SMichael Hund #ifdef CONFIG_USB_DYNAMIC_MINORS
802824bd25SMichael Hund #define USB_LD_MINOR_BASE	0
812824bd25SMichael Hund #else
822824bd25SMichael Hund #define USB_LD_MINOR_BASE	176
832824bd25SMichael Hund #endif
842824bd25SMichael Hund 
852824bd25SMichael Hund /* table of devices that work with this driver */
8633b9e162SNémeth Márton static const struct usb_device_id ld_usb_table[] = {
87ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
88ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY2) },
89ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
90ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY2) },
91ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
92ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY2) },
93ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYVOLTAGE) },
94ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYCURRENT) },
95ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTIME) },
96ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE) },
97ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYPH) },
98ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM) },
99ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP) },
100ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP) },
101ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIC) },
102ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIB) },
103ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY) },
104ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2) },
105ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM) },
106ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOTOR) },
107ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB) },
108ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT) },
109ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) },
110ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) },
111ba3e66e9SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) },
112ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER) },
113ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER2) },
114ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_ABSESP) },
115ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_AUTODATABUS) },
116ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) },
117ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) },
118ce97cac8SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) },
1192824bd25SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP) },
1202824bd25SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP) },
1212824bd25SMichael Hund 	{ USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS) },
1225b0a4d66SStephen Ware 	{ USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LCSPEC) },
1232824bd25SMichael Hund 	{ }					/* Terminating entry */
1242824bd25SMichael Hund };
1252824bd25SMichael Hund MODULE_DEVICE_TABLE(usb, ld_usb_table);
126ce97cac8SMichael Hund MODULE_VERSION("V0.14");
1272824bd25SMichael Hund MODULE_AUTHOR("Michael Hund <mhund@ld-didactic.de>");
1282824bd25SMichael Hund MODULE_DESCRIPTION("LD USB Driver");
1292824bd25SMichael Hund MODULE_LICENSE("GPL");
1302824bd25SMichael Hund MODULE_SUPPORTED_DEVICE("LD USB Devices");
1312824bd25SMichael Hund 
1322824bd25SMichael Hund #ifdef CONFIG_USB_DEBUG
1332824bd25SMichael Hund 	static int debug = 1;
1342824bd25SMichael Hund #else
1352824bd25SMichael Hund 	static int debug = 0;
1362824bd25SMichael Hund #endif
1372824bd25SMichael Hund 
1382824bd25SMichael Hund /* Use our own dbg macro */
1392824bd25SMichael Hund #define dbg_info(dev, format, arg...) do { if (debug) dev_info(dev , format , ## arg); } while (0)
1402824bd25SMichael Hund 
1412824bd25SMichael Hund /* Module parameters */
1422824bd25SMichael Hund module_param(debug, int, S_IRUGO | S_IWUSR);
1432824bd25SMichael Hund MODULE_PARM_DESC(debug, "Debug enabled or not");
1442824bd25SMichael Hund 
1452824bd25SMichael Hund /* All interrupt in transfers are collected in a ring buffer to
1462824bd25SMichael Hund  * avoid racing conditions and get better performance of the driver.
1472824bd25SMichael Hund  */
1482824bd25SMichael Hund static int ring_buffer_size = 128;
1492824bd25SMichael Hund module_param(ring_buffer_size, int, 0);
1502824bd25SMichael Hund MODULE_PARM_DESC(ring_buffer_size, "Read ring buffer size in reports");
1512824bd25SMichael Hund 
1522824bd25SMichael Hund /* The write_buffer can contain more than one interrupt out transfer.
1532824bd25SMichael Hund  */
1542824bd25SMichael Hund static int write_buffer_size = 10;
1552824bd25SMichael Hund module_param(write_buffer_size, int, 0);
1562824bd25SMichael Hund MODULE_PARM_DESC(write_buffer_size, "Write buffer size in reports");
1572824bd25SMichael Hund 
1582824bd25SMichael Hund /* As of kernel version 2.6.4 ehci-hcd uses an
1592824bd25SMichael Hund  * "only one interrupt transfer per frame" shortcut
1602824bd25SMichael Hund  * to simplify the scheduling of periodic transfers.
1612824bd25SMichael Hund  * This conflicts with our standard 1ms intervals for in and out URBs.
1622824bd25SMichael Hund  * We use default intervals of 2ms for in and 2ms for out transfers,
1632824bd25SMichael Hund  * which should be fast enough.
1642824bd25SMichael Hund  * Increase the interval to allow more devices that do interrupt transfers,
1652824bd25SMichael Hund  * or set to 1 to use the standard interval from the endpoint descriptors.
1662824bd25SMichael Hund  */
1672824bd25SMichael Hund static int min_interrupt_in_interval = 2;
1682824bd25SMichael Hund module_param(min_interrupt_in_interval, int, 0);
1692824bd25SMichael Hund MODULE_PARM_DESC(min_interrupt_in_interval, "Minimum interrupt in interval in ms");
1702824bd25SMichael Hund 
1712824bd25SMichael Hund static int min_interrupt_out_interval = 2;
1722824bd25SMichael Hund module_param(min_interrupt_out_interval, int, 0);
1732824bd25SMichael Hund MODULE_PARM_DESC(min_interrupt_out_interval, "Minimum interrupt out interval in ms");
1742824bd25SMichael Hund 
1752824bd25SMichael Hund /* Structure to hold all of our device specific stuff */
1762824bd25SMichael Hund struct ld_usb {
177ce0d7d3fSDaniel Walker 	struct mutex		mutex;		/* locks this structure */
1782824bd25SMichael Hund 	struct usb_interface*	intf;		/* save off the usb interface pointer */
1792824bd25SMichael Hund 
1802824bd25SMichael Hund 	int			open_count;	/* number of times this port has been opened */
1812824bd25SMichael Hund 
1822824bd25SMichael Hund 	char*			ring_buffer;
1832824bd25SMichael Hund 	unsigned int		ring_head;
1842824bd25SMichael Hund 	unsigned int		ring_tail;
1852824bd25SMichael Hund 
1862824bd25SMichael Hund 	wait_queue_head_t	read_wait;
1872824bd25SMichael Hund 	wait_queue_head_t	write_wait;
1882824bd25SMichael Hund 
1892824bd25SMichael Hund 	char*			interrupt_in_buffer;
1902824bd25SMichael Hund 	struct usb_endpoint_descriptor* interrupt_in_endpoint;
1912824bd25SMichael Hund 	struct urb*		interrupt_in_urb;
1922824bd25SMichael Hund 	int			interrupt_in_interval;
1932824bd25SMichael Hund 	size_t			interrupt_in_endpoint_size;
1942824bd25SMichael Hund 	int			interrupt_in_running;
1952824bd25SMichael Hund 	int			interrupt_in_done;
1969d33efd9SOliver Neukum 	int			buffer_overflow;
1979d33efd9SOliver Neukum 	spinlock_t		rbsl;
1982824bd25SMichael Hund 
1992824bd25SMichael Hund 	char*			interrupt_out_buffer;
2002824bd25SMichael Hund 	struct usb_endpoint_descriptor* interrupt_out_endpoint;
2012824bd25SMichael Hund 	struct urb*		interrupt_out_urb;
2022824bd25SMichael Hund 	int			interrupt_out_interval;
2032824bd25SMichael Hund 	size_t			interrupt_out_endpoint_size;
2042824bd25SMichael Hund 	int			interrupt_out_busy;
2052824bd25SMichael Hund };
2062824bd25SMichael Hund 
2072824bd25SMichael Hund static struct usb_driver ld_usb_driver;
2082824bd25SMichael Hund 
2092824bd25SMichael Hund /**
2102824bd25SMichael Hund  *	ld_usb_abort_transfers
2112824bd25SMichael Hund  *      aborts transfers and frees associated data structures
2122824bd25SMichael Hund  */
2132824bd25SMichael Hund static void ld_usb_abort_transfers(struct ld_usb *dev)
2142824bd25SMichael Hund {
2152824bd25SMichael Hund 	/* shutdown transfer */
2162824bd25SMichael Hund 	if (dev->interrupt_in_running) {
2172824bd25SMichael Hund 		dev->interrupt_in_running = 0;
2182824bd25SMichael Hund 		if (dev->intf)
2192824bd25SMichael Hund 			usb_kill_urb(dev->interrupt_in_urb);
2202824bd25SMichael Hund 	}
2212824bd25SMichael Hund 	if (dev->interrupt_out_busy)
2222824bd25SMichael Hund 		if (dev->intf)
2232824bd25SMichael Hund 			usb_kill_urb(dev->interrupt_out_urb);
2242824bd25SMichael Hund }
2252824bd25SMichael Hund 
2262824bd25SMichael Hund /**
2272824bd25SMichael Hund  *	ld_usb_delete
2282824bd25SMichael Hund  */
2292824bd25SMichael Hund static void ld_usb_delete(struct ld_usb *dev)
2302824bd25SMichael Hund {
2312824bd25SMichael Hund 	ld_usb_abort_transfers(dev);
2322824bd25SMichael Hund 
2332824bd25SMichael Hund 	/* free data structures */
2342824bd25SMichael Hund 	usb_free_urb(dev->interrupt_in_urb);
2352824bd25SMichael Hund 	usb_free_urb(dev->interrupt_out_urb);
2362824bd25SMichael Hund 	kfree(dev->ring_buffer);
2372824bd25SMichael Hund 	kfree(dev->interrupt_in_buffer);
2382824bd25SMichael Hund 	kfree(dev->interrupt_out_buffer);
2392824bd25SMichael Hund 	kfree(dev);
2402824bd25SMichael Hund }
2412824bd25SMichael Hund 
2422824bd25SMichael Hund /**
2432824bd25SMichael Hund  *	ld_usb_interrupt_in_callback
2442824bd25SMichael Hund  */
2457d12e780SDavid Howells static void ld_usb_interrupt_in_callback(struct urb *urb)
2462824bd25SMichael Hund {
2472824bd25SMichael Hund 	struct ld_usb *dev = urb->context;
2482824bd25SMichael Hund 	size_t *actual_buffer;
2492824bd25SMichael Hund 	unsigned int next_ring_head;
250491c021eSGreg Kroah-Hartman 	int status = urb->status;
2512824bd25SMichael Hund 	int retval;
2522824bd25SMichael Hund 
253491c021eSGreg Kroah-Hartman 	if (status) {
254491c021eSGreg Kroah-Hartman 		if (status == -ENOENT ||
255491c021eSGreg Kroah-Hartman 		    status == -ECONNRESET ||
256491c021eSGreg Kroah-Hartman 		    status == -ESHUTDOWN) {
2572824bd25SMichael Hund 			goto exit;
2582824bd25SMichael Hund 		} else {
2592824bd25SMichael Hund 			dbg_info(&dev->intf->dev, "%s: nonzero status received: %d\n",
260441b62c1SHarvey Harrison 				 __func__, status);
2619d33efd9SOliver Neukum 			spin_lock(&dev->rbsl);
2622824bd25SMichael Hund 			goto resubmit; /* maybe we can recover */
2632824bd25SMichael Hund 		}
2642824bd25SMichael Hund 	}
2652824bd25SMichael Hund 
2669d33efd9SOliver Neukum 	spin_lock(&dev->rbsl);
2672824bd25SMichael Hund 	if (urb->actual_length > 0) {
2682824bd25SMichael Hund 		next_ring_head = (dev->ring_head+1) % ring_buffer_size;
2692824bd25SMichael Hund 		if (next_ring_head != dev->ring_tail) {
2702824bd25SMichael Hund 			actual_buffer = (size_t*)(dev->ring_buffer + dev->ring_head*(sizeof(size_t)+dev->interrupt_in_endpoint_size));
2712824bd25SMichael Hund 			/* actual_buffer gets urb->actual_length + interrupt_in_buffer */
2722824bd25SMichael Hund 			*actual_buffer = urb->actual_length;
2732824bd25SMichael Hund 			memcpy(actual_buffer+1, dev->interrupt_in_buffer, urb->actual_length);
2742824bd25SMichael Hund 			dev->ring_head = next_ring_head;
2752824bd25SMichael Hund 			dbg_info(&dev->intf->dev, "%s: received %d bytes\n",
276441b62c1SHarvey Harrison 				 __func__, urb->actual_length);
2779d33efd9SOliver Neukum 		} else {
2782824bd25SMichael Hund 			dev_warn(&dev->intf->dev,
2792824bd25SMichael Hund 				 "Ring buffer overflow, %d bytes dropped\n",
2802824bd25SMichael Hund 				 urb->actual_length);
2819d33efd9SOliver Neukum 			dev->buffer_overflow = 1;
2829d33efd9SOliver Neukum 		}
2832824bd25SMichael Hund 	}
2842824bd25SMichael Hund 
2852824bd25SMichael Hund resubmit:
2862824bd25SMichael Hund 	/* resubmit if we're still running */
2879d33efd9SOliver Neukum 	if (dev->interrupt_in_running && !dev->buffer_overflow && dev->intf) {
2882824bd25SMichael Hund 		retval = usb_submit_urb(dev->interrupt_in_urb, GFP_ATOMIC);
2899d33efd9SOliver Neukum 		if (retval) {
2902824bd25SMichael Hund 			dev_err(&dev->intf->dev,
2912824bd25SMichael Hund 				"usb_submit_urb failed (%d)\n", retval);
2929d33efd9SOliver Neukum 			dev->buffer_overflow = 1;
2932824bd25SMichael Hund 		}
2949d33efd9SOliver Neukum 	}
2959d33efd9SOliver Neukum 	spin_unlock(&dev->rbsl);
2962824bd25SMichael Hund exit:
2972824bd25SMichael Hund 	dev->interrupt_in_done = 1;
2982824bd25SMichael Hund 	wake_up_interruptible(&dev->read_wait);
2992824bd25SMichael Hund }
3002824bd25SMichael Hund 
3012824bd25SMichael Hund /**
3022824bd25SMichael Hund  *	ld_usb_interrupt_out_callback
3032824bd25SMichael Hund  */
3047d12e780SDavid Howells static void ld_usb_interrupt_out_callback(struct urb *urb)
3052824bd25SMichael Hund {
3062824bd25SMichael Hund 	struct ld_usb *dev = urb->context;
307491c021eSGreg Kroah-Hartman 	int status = urb->status;
3082824bd25SMichael Hund 
3092824bd25SMichael Hund 	/* sync/async unlink faults aren't errors */
310491c021eSGreg Kroah-Hartman 	if (status && !(status == -ENOENT ||
311491c021eSGreg Kroah-Hartman 			status == -ECONNRESET ||
312491c021eSGreg Kroah-Hartman 			status == -ESHUTDOWN))
3132824bd25SMichael Hund 		dbg_info(&dev->intf->dev,
3142824bd25SMichael Hund 			 "%s - nonzero write interrupt status received: %d\n",
315441b62c1SHarvey Harrison 			 __func__, status);
3162824bd25SMichael Hund 
3172824bd25SMichael Hund 	dev->interrupt_out_busy = 0;
3182824bd25SMichael Hund 	wake_up_interruptible(&dev->write_wait);
3192824bd25SMichael Hund }
3202824bd25SMichael Hund 
3212824bd25SMichael Hund /**
3222824bd25SMichael Hund  *	ld_usb_open
3232824bd25SMichael Hund  */
3242824bd25SMichael Hund static int ld_usb_open(struct inode *inode, struct file *file)
3252824bd25SMichael Hund {
3262824bd25SMichael Hund 	struct ld_usb *dev;
3272824bd25SMichael Hund 	int subminor;
328d4ead16fSAlan Stern 	int retval;
3292824bd25SMichael Hund 	struct usb_interface *interface;
3302824bd25SMichael Hund 
3312824bd25SMichael Hund 	nonseekable_open(inode, file);
3322824bd25SMichael Hund 	subminor = iminor(inode);
3332824bd25SMichael Hund 
3342824bd25SMichael Hund 	interface = usb_find_interface(&ld_usb_driver, subminor);
3352824bd25SMichael Hund 
3362824bd25SMichael Hund 	if (!interface) {
3372824bd25SMichael Hund 		err("%s - error, can't find device for minor %d\n",
338441b62c1SHarvey Harrison 		     __func__, subminor);
339d4ead16fSAlan Stern 		return -ENODEV;
3402824bd25SMichael Hund 	}
3412824bd25SMichael Hund 
3422824bd25SMichael Hund 	dev = usb_get_intfdata(interface);
3432824bd25SMichael Hund 
3446248c52fSOliver Neukum 	if (!dev)
345d4ead16fSAlan Stern 		return -ENODEV;
3462824bd25SMichael Hund 
3472824bd25SMichael Hund 	/* lock this device */
3486248c52fSOliver Neukum 	if (mutex_lock_interruptible(&dev->mutex))
349d4ead16fSAlan Stern 		return -ERESTARTSYS;
3502824bd25SMichael Hund 
3512824bd25SMichael Hund 	/* allow opening only once */
3522824bd25SMichael Hund 	if (dev->open_count) {
3532824bd25SMichael Hund 		retval = -EBUSY;
3542824bd25SMichael Hund 		goto unlock_exit;
3552824bd25SMichael Hund 	}
3562824bd25SMichael Hund 	dev->open_count = 1;
3572824bd25SMichael Hund 
3582824bd25SMichael Hund 	/* initialize in direction */
3592824bd25SMichael Hund 	dev->ring_head = 0;
3602824bd25SMichael Hund 	dev->ring_tail = 0;
3619d33efd9SOliver Neukum 	dev->buffer_overflow = 0;
3622824bd25SMichael Hund 	usb_fill_int_urb(dev->interrupt_in_urb,
3632824bd25SMichael Hund 			 interface_to_usbdev(interface),
3642824bd25SMichael Hund 			 usb_rcvintpipe(interface_to_usbdev(interface),
3652824bd25SMichael Hund 					dev->interrupt_in_endpoint->bEndpointAddress),
3662824bd25SMichael Hund 			 dev->interrupt_in_buffer,
3672824bd25SMichael Hund 			 dev->interrupt_in_endpoint_size,
3682824bd25SMichael Hund 			 ld_usb_interrupt_in_callback,
3692824bd25SMichael Hund 			 dev,
3702824bd25SMichael Hund 			 dev->interrupt_in_interval);
3712824bd25SMichael Hund 
3722824bd25SMichael Hund 	dev->interrupt_in_running = 1;
3732824bd25SMichael Hund 	dev->interrupt_in_done = 0;
3742824bd25SMichael Hund 
3752824bd25SMichael Hund 	retval = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL);
3762824bd25SMichael Hund 	if (retval) {
3772824bd25SMichael Hund 		dev_err(&interface->dev, "Couldn't submit interrupt_in_urb %d\n", retval);
3782824bd25SMichael Hund 		dev->interrupt_in_running = 0;
3792824bd25SMichael Hund 		dev->open_count = 0;
3802824bd25SMichael Hund 		goto unlock_exit;
3812824bd25SMichael Hund 	}
3822824bd25SMichael Hund 
3832824bd25SMichael Hund 	/* save device in the file's private structure */
3842824bd25SMichael Hund 	file->private_data = dev;
3852824bd25SMichael Hund 
3862824bd25SMichael Hund unlock_exit:
387ce0d7d3fSDaniel Walker 	mutex_unlock(&dev->mutex);
3882824bd25SMichael Hund 
3892824bd25SMichael Hund 	return retval;
3902824bd25SMichael Hund }
3912824bd25SMichael Hund 
3922824bd25SMichael Hund /**
3932824bd25SMichael Hund  *	ld_usb_release
3942824bd25SMichael Hund  */
3952824bd25SMichael Hund static int ld_usb_release(struct inode *inode, struct file *file)
3962824bd25SMichael Hund {
3972824bd25SMichael Hund 	struct ld_usb *dev;
3982824bd25SMichael Hund 	int retval = 0;
3992824bd25SMichael Hund 
4002824bd25SMichael Hund 	dev = file->private_data;
4012824bd25SMichael Hund 
4022824bd25SMichael Hund 	if (dev == NULL) {
4032824bd25SMichael Hund 		retval = -ENODEV;
4042824bd25SMichael Hund 		goto exit;
4052824bd25SMichael Hund 	}
4062824bd25SMichael Hund 
407ce0d7d3fSDaniel Walker 	if (mutex_lock_interruptible(&dev->mutex)) {
4082824bd25SMichael Hund 		retval = -ERESTARTSYS;
4092824bd25SMichael Hund 		goto exit;
4102824bd25SMichael Hund 	}
4112824bd25SMichael Hund 
4122824bd25SMichael Hund 	if (dev->open_count != 1) {
4132824bd25SMichael Hund 		retval = -ENODEV;
4142824bd25SMichael Hund 		goto unlock_exit;
4152824bd25SMichael Hund 	}
4162824bd25SMichael Hund 	if (dev->intf == NULL) {
4172824bd25SMichael Hund 		/* the device was unplugged before the file was released */
418ce0d7d3fSDaniel Walker 		mutex_unlock(&dev->mutex);
4192824bd25SMichael Hund 		/* unlock here as ld_usb_delete frees dev */
4202824bd25SMichael Hund 		ld_usb_delete(dev);
4212824bd25SMichael Hund 		goto exit;
4222824bd25SMichael Hund 	}
4232824bd25SMichael Hund 
4242824bd25SMichael Hund 	/* wait until write transfer is finished */
4252824bd25SMichael Hund 	if (dev->interrupt_out_busy)
4262824bd25SMichael Hund 		wait_event_interruptible_timeout(dev->write_wait, !dev->interrupt_out_busy, 2 * HZ);
4272824bd25SMichael Hund 	ld_usb_abort_transfers(dev);
4282824bd25SMichael Hund 	dev->open_count = 0;
4292824bd25SMichael Hund 
4302824bd25SMichael Hund unlock_exit:
431ce0d7d3fSDaniel Walker 	mutex_unlock(&dev->mutex);
4322824bd25SMichael Hund 
4332824bd25SMichael Hund exit:
4342824bd25SMichael Hund 	return retval;
4352824bd25SMichael Hund }
4362824bd25SMichael Hund 
4372824bd25SMichael Hund /**
4382824bd25SMichael Hund  *	ld_usb_poll
4392824bd25SMichael Hund  */
4402824bd25SMichael Hund static unsigned int ld_usb_poll(struct file *file, poll_table *wait)
4412824bd25SMichael Hund {
4422824bd25SMichael Hund 	struct ld_usb *dev;
4432824bd25SMichael Hund 	unsigned int mask = 0;
4442824bd25SMichael Hund 
4452824bd25SMichael Hund 	dev = file->private_data;
4462824bd25SMichael Hund 
447d12b85e7SOliver Neukum 	if (!dev->intf)
448d12b85e7SOliver Neukum 		return POLLERR | POLLHUP;
449d12b85e7SOliver Neukum 
4502824bd25SMichael Hund 	poll_wait(file, &dev->read_wait, wait);
4512824bd25SMichael Hund 	poll_wait(file, &dev->write_wait, wait);
4522824bd25SMichael Hund 
4532824bd25SMichael Hund 	if (dev->ring_head != dev->ring_tail)
4542824bd25SMichael Hund 		mask |= POLLIN | POLLRDNORM;
4552824bd25SMichael Hund 	if (!dev->interrupt_out_busy)
4562824bd25SMichael Hund 		mask |= POLLOUT | POLLWRNORM;
4572824bd25SMichael Hund 
4582824bd25SMichael Hund 	return mask;
4592824bd25SMichael Hund }
4602824bd25SMichael Hund 
4612824bd25SMichael Hund /**
4622824bd25SMichael Hund  *	ld_usb_read
4632824bd25SMichael Hund  */
4642824bd25SMichael Hund static ssize_t ld_usb_read(struct file *file, char __user *buffer, size_t count,
4652824bd25SMichael Hund 			   loff_t *ppos)
4662824bd25SMichael Hund {
4672824bd25SMichael Hund 	struct ld_usb *dev;
4682824bd25SMichael Hund 	size_t *actual_buffer;
4692824bd25SMichael Hund 	size_t bytes_to_read;
4702824bd25SMichael Hund 	int retval = 0;
4719d33efd9SOliver Neukum 	int rv;
4722824bd25SMichael Hund 
4732824bd25SMichael Hund 	dev = file->private_data;
4742824bd25SMichael Hund 
4752824bd25SMichael Hund 	/* verify that we actually have some data to read */
4762824bd25SMichael Hund 	if (count == 0)
4772824bd25SMichael Hund 		goto exit;
4782824bd25SMichael Hund 
4792824bd25SMichael Hund 	/* lock this object */
480ce0d7d3fSDaniel Walker 	if (mutex_lock_interruptible(&dev->mutex)) {
4812824bd25SMichael Hund 		retval = -ERESTARTSYS;
4822824bd25SMichael Hund 		goto exit;
4832824bd25SMichael Hund 	}
4842824bd25SMichael Hund 
4852824bd25SMichael Hund 	/* verify that the device wasn't unplugged */
4862824bd25SMichael Hund 	if (dev->intf == NULL) {
4872824bd25SMichael Hund 		retval = -ENODEV;
4882824bd25SMichael Hund 		err("No device or device unplugged %d\n", retval);
4892824bd25SMichael Hund 		goto unlock_exit;
4902824bd25SMichael Hund 	}
4912824bd25SMichael Hund 
4922824bd25SMichael Hund 	/* wait for data */
4939d33efd9SOliver Neukum 	spin_lock_irq(&dev->rbsl);
4942824bd25SMichael Hund 	if (dev->ring_head == dev->ring_tail) {
4959d33efd9SOliver Neukum 		dev->interrupt_in_done = 0;
4969d33efd9SOliver Neukum 		spin_unlock_irq(&dev->rbsl);
4972824bd25SMichael Hund 		if (file->f_flags & O_NONBLOCK) {
4982824bd25SMichael Hund 			retval = -EAGAIN;
4992824bd25SMichael Hund 			goto unlock_exit;
5002824bd25SMichael Hund 		}
5012824bd25SMichael Hund 		retval = wait_event_interruptible(dev->read_wait, dev->interrupt_in_done);
5022824bd25SMichael Hund 		if (retval < 0)
5032824bd25SMichael Hund 			goto unlock_exit;
5049d33efd9SOliver Neukum 	} else {
5059d33efd9SOliver Neukum 		spin_unlock_irq(&dev->rbsl);
5062824bd25SMichael Hund 	}
5072824bd25SMichael Hund 
5082824bd25SMichael Hund 	/* actual_buffer contains actual_length + interrupt_in_buffer */
5092824bd25SMichael Hund 	actual_buffer = (size_t*)(dev->ring_buffer + dev->ring_tail*(sizeof(size_t)+dev->interrupt_in_endpoint_size));
5102824bd25SMichael Hund 	bytes_to_read = min(count, *actual_buffer);
5112824bd25SMichael Hund 	if (bytes_to_read < *actual_buffer)
512dd7d5008SAlexey Dobriyan 		dev_warn(&dev->intf->dev, "Read buffer overflow, %zd bytes dropped\n",
5132824bd25SMichael Hund 			 *actual_buffer-bytes_to_read);
5142824bd25SMichael Hund 
5152824bd25SMichael Hund 	/* copy one interrupt_in_buffer from ring_buffer into userspace */
5162824bd25SMichael Hund 	if (copy_to_user(buffer, actual_buffer+1, bytes_to_read)) {
5172824bd25SMichael Hund 		retval = -EFAULT;
5182824bd25SMichael Hund 		goto unlock_exit;
5192824bd25SMichael Hund 	}
5202824bd25SMichael Hund 	dev->ring_tail = (dev->ring_tail+1) % ring_buffer_size;
5212824bd25SMichael Hund 
5222824bd25SMichael Hund 	retval = bytes_to_read;
5232824bd25SMichael Hund 
5249d33efd9SOliver Neukum 	spin_lock_irq(&dev->rbsl);
5259d33efd9SOliver Neukum 	if (dev->buffer_overflow) {
5269d33efd9SOliver Neukum 		dev->buffer_overflow = 0;
5279d33efd9SOliver Neukum 		spin_unlock_irq(&dev->rbsl);
5289d33efd9SOliver Neukum 		rv = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL);
5299d33efd9SOliver Neukum 		if (rv < 0)
5309d33efd9SOliver Neukum 			dev->buffer_overflow = 1;
5319d33efd9SOliver Neukum 	} else {
5329d33efd9SOliver Neukum 		spin_unlock_irq(&dev->rbsl);
5339d33efd9SOliver Neukum 	}
5349d33efd9SOliver Neukum 
5352824bd25SMichael Hund unlock_exit:
5362824bd25SMichael Hund 	/* unlock the device */
537ce0d7d3fSDaniel Walker 	mutex_unlock(&dev->mutex);
5382824bd25SMichael Hund 
5392824bd25SMichael Hund exit:
5402824bd25SMichael Hund 	return retval;
5412824bd25SMichael Hund }
5422824bd25SMichael Hund 
5432824bd25SMichael Hund /**
5442824bd25SMichael Hund  *	ld_usb_write
5452824bd25SMichael Hund  */
5462824bd25SMichael Hund static ssize_t ld_usb_write(struct file *file, const char __user *buffer,
5472824bd25SMichael Hund 			    size_t count, loff_t *ppos)
5482824bd25SMichael Hund {
5492824bd25SMichael Hund 	struct ld_usb *dev;
5502824bd25SMichael Hund 	size_t bytes_to_write;
5512824bd25SMichael Hund 	int retval = 0;
5522824bd25SMichael Hund 
5532824bd25SMichael Hund 	dev = file->private_data;
5542824bd25SMichael Hund 
5552824bd25SMichael Hund 	/* verify that we actually have some data to write */
5562824bd25SMichael Hund 	if (count == 0)
5572824bd25SMichael Hund 		goto exit;
5582824bd25SMichael Hund 
5592824bd25SMichael Hund 	/* lock this object */
560ce0d7d3fSDaniel Walker 	if (mutex_lock_interruptible(&dev->mutex)) {
5612824bd25SMichael Hund 		retval = -ERESTARTSYS;
5622824bd25SMichael Hund 		goto exit;
5632824bd25SMichael Hund 	}
5642824bd25SMichael Hund 
5652824bd25SMichael Hund 	/* verify that the device wasn't unplugged */
5662824bd25SMichael Hund 	if (dev->intf == NULL) {
5672824bd25SMichael Hund 		retval = -ENODEV;
5682824bd25SMichael Hund 		err("No device or device unplugged %d\n", retval);
5692824bd25SMichael Hund 		goto unlock_exit;
5702824bd25SMichael Hund 	}
5712824bd25SMichael Hund 
5722824bd25SMichael Hund 	/* wait until previous transfer is finished */
5732824bd25SMichael Hund 	if (dev->interrupt_out_busy) {
5742824bd25SMichael Hund 		if (file->f_flags & O_NONBLOCK) {
5752824bd25SMichael Hund 			retval = -EAGAIN;
5762824bd25SMichael Hund 			goto unlock_exit;
5772824bd25SMichael Hund 		}
5782824bd25SMichael Hund 		retval = wait_event_interruptible(dev->write_wait, !dev->interrupt_out_busy);
5792824bd25SMichael Hund 		if (retval < 0) {
5802824bd25SMichael Hund 			goto unlock_exit;
5812824bd25SMichael Hund 		}
5822824bd25SMichael Hund 	}
5832824bd25SMichael Hund 
5842824bd25SMichael Hund 	/* write the data into interrupt_out_buffer from userspace */
5852824bd25SMichael Hund 	bytes_to_write = min(count, write_buffer_size*dev->interrupt_out_endpoint_size);
5862824bd25SMichael Hund 	if (bytes_to_write < count)
587dd7d5008SAlexey Dobriyan 		dev_warn(&dev->intf->dev, "Write buffer overflow, %zd bytes dropped\n",count-bytes_to_write);
588441b62c1SHarvey Harrison 	dbg_info(&dev->intf->dev, "%s: count = %zd, bytes_to_write = %zd\n", __func__, count, bytes_to_write);
5892824bd25SMichael Hund 
5902824bd25SMichael Hund 	if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write)) {
5912824bd25SMichael Hund 		retval = -EFAULT;
5922824bd25SMichael Hund 		goto unlock_exit;
5932824bd25SMichael Hund 	}
5942824bd25SMichael Hund 
5952824bd25SMichael Hund 	if (dev->interrupt_out_endpoint == NULL) {
5962824bd25SMichael Hund 		/* try HID_REQ_SET_REPORT=9 on control_endpoint instead of interrupt_out_endpoint */
5972824bd25SMichael Hund 		retval = usb_control_msg(interface_to_usbdev(dev->intf),
5982824bd25SMichael Hund 					 usb_sndctrlpipe(interface_to_usbdev(dev->intf), 0),
5992824bd25SMichael Hund 					 9,
6002824bd25SMichael Hund 					 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_OUT,
6012824bd25SMichael Hund 					 1 << 8, 0,
6022824bd25SMichael Hund 					 dev->interrupt_out_buffer,
6032824bd25SMichael Hund 					 bytes_to_write,
6042824bd25SMichael Hund 					 USB_CTRL_SET_TIMEOUT * HZ);
6052824bd25SMichael Hund 		if (retval < 0)
6062824bd25SMichael Hund 			err("Couldn't submit HID_REQ_SET_REPORT %d\n", retval);
6072824bd25SMichael Hund 		goto unlock_exit;
6082824bd25SMichael Hund 	}
6092824bd25SMichael Hund 
6102824bd25SMichael Hund 	/* send off the urb */
6112824bd25SMichael Hund 	usb_fill_int_urb(dev->interrupt_out_urb,
6122824bd25SMichael Hund 			 interface_to_usbdev(dev->intf),
6132824bd25SMichael Hund 			 usb_sndintpipe(interface_to_usbdev(dev->intf),
6142824bd25SMichael Hund 					dev->interrupt_out_endpoint->bEndpointAddress),
6152824bd25SMichael Hund 			 dev->interrupt_out_buffer,
6162824bd25SMichael Hund 			 bytes_to_write,
6172824bd25SMichael Hund 			 ld_usb_interrupt_out_callback,
6182824bd25SMichael Hund 			 dev,
6192824bd25SMichael Hund 			 dev->interrupt_out_interval);
6202824bd25SMichael Hund 
6212824bd25SMichael Hund 	dev->interrupt_out_busy = 1;
6222824bd25SMichael Hund 	wmb();
6232824bd25SMichael Hund 
6242824bd25SMichael Hund 	retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL);
6252824bd25SMichael Hund 	if (retval) {
6262824bd25SMichael Hund 		dev->interrupt_out_busy = 0;
6272824bd25SMichael Hund 		err("Couldn't submit interrupt_out_urb %d\n", retval);
6282824bd25SMichael Hund 		goto unlock_exit;
6292824bd25SMichael Hund 	}
6302824bd25SMichael Hund 	retval = bytes_to_write;
6312824bd25SMichael Hund 
6322824bd25SMichael Hund unlock_exit:
6332824bd25SMichael Hund 	/* unlock the device */
634ce0d7d3fSDaniel Walker 	mutex_unlock(&dev->mutex);
6352824bd25SMichael Hund 
6362824bd25SMichael Hund exit:
6372824bd25SMichael Hund 	return retval;
6382824bd25SMichael Hund }
6392824bd25SMichael Hund 
6402824bd25SMichael Hund /* file operations needed when we register this driver */
641066202ddSLuiz Fernando N. Capitulino static const struct file_operations ld_usb_fops = {
6422824bd25SMichael Hund 	.owner =	THIS_MODULE,
6432824bd25SMichael Hund 	.read  =	ld_usb_read,
6442824bd25SMichael Hund 	.write =	ld_usb_write,
6452824bd25SMichael Hund 	.open =		ld_usb_open,
6462824bd25SMichael Hund 	.release =	ld_usb_release,
6472824bd25SMichael Hund 	.poll =		ld_usb_poll,
6486038f373SArnd Bergmann 	.llseek =	no_llseek,
6492824bd25SMichael Hund };
6502824bd25SMichael Hund 
6512824bd25SMichael Hund /*
6522824bd25SMichael Hund  * usb class driver info in order to get a minor number from the usb core,
653595b14cbSGreg Kroah-Hartman  * and to have the device registered with the driver core
6542824bd25SMichael Hund  */
6552824bd25SMichael Hund static struct usb_class_driver ld_usb_class = {
6562824bd25SMichael Hund 	.name =		"ldusb%d",
6572824bd25SMichael Hund 	.fops =		&ld_usb_fops,
6582824bd25SMichael Hund 	.minor_base =	USB_LD_MINOR_BASE,
6592824bd25SMichael Hund };
6602824bd25SMichael Hund 
6612824bd25SMichael Hund /**
6622824bd25SMichael Hund  *	ld_usb_probe
6632824bd25SMichael Hund  *
6642824bd25SMichael Hund  *	Called by the usb core when a new device is connected that it thinks
6652824bd25SMichael Hund  *	this driver might be interested in.
6662824bd25SMichael Hund  */
6672824bd25SMichael Hund static int ld_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
6682824bd25SMichael Hund {
6692824bd25SMichael Hund 	struct usb_device *udev = interface_to_usbdev(intf);
6702824bd25SMichael Hund 	struct ld_usb *dev = NULL;
6712824bd25SMichael Hund 	struct usb_host_interface *iface_desc;
6722824bd25SMichael Hund 	struct usb_endpoint_descriptor *endpoint;
6732824bd25SMichael Hund 	char *buffer;
6742824bd25SMichael Hund 	int i;
6752824bd25SMichael Hund 	int retval = -ENOMEM;
6762824bd25SMichael Hund 
677b595076aSUwe Kleine-König 	/* allocate memory for our device state and initialize it */
6782824bd25SMichael Hund 
6791144cf7aSOliver Neukum 	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
6802824bd25SMichael Hund 	if (dev == NULL) {
6812824bd25SMichael Hund 		dev_err(&intf->dev, "Out of memory\n");
6822824bd25SMichael Hund 		goto exit;
6832824bd25SMichael Hund 	}
684ce0d7d3fSDaniel Walker 	mutex_init(&dev->mutex);
6859d33efd9SOliver Neukum 	spin_lock_init(&dev->rbsl);
6862824bd25SMichael Hund 	dev->intf = intf;
6872824bd25SMichael Hund 	init_waitqueue_head(&dev->read_wait);
6882824bd25SMichael Hund 	init_waitqueue_head(&dev->write_wait);
6892824bd25SMichael Hund 
6902824bd25SMichael Hund 	/* workaround for early firmware versions on fast computers */
6912824bd25SMichael Hund 	if ((le16_to_cpu(udev->descriptor.idVendor) == USB_VENDOR_ID_LD) &&
692ba3e66e9SMichael Hund 	    ((le16_to_cpu(udev->descriptor.idProduct) == USB_DEVICE_ID_LD_CASSY) ||
693ba3e66e9SMichael Hund 	     (le16_to_cpu(udev->descriptor.idProduct) == USB_DEVICE_ID_LD_COM3LAB)) &&
6942824bd25SMichael Hund 	    (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x103)) {
6952824bd25SMichael Hund 		buffer = kmalloc(256, GFP_KERNEL);
696a6db592eSMichael Hund 		if (buffer == NULL) {
697a6db592eSMichael Hund 			dev_err(&intf->dev, "Couldn't allocate string buffer\n");
698a6db592eSMichael Hund 			goto error;
699a6db592eSMichael Hund 		}
7002824bd25SMichael Hund 		/* usb_string makes SETUP+STALL to leave always ControlReadLoop */
7012824bd25SMichael Hund 		usb_string(udev, 255, buffer, 256);
7022824bd25SMichael Hund 		kfree(buffer);
7032824bd25SMichael Hund 	}
7042824bd25SMichael Hund 
7052824bd25SMichael Hund 	iface_desc = intf->cur_altsetting;
7062824bd25SMichael Hund 
7072824bd25SMichael Hund 	/* set up the endpoint information */
7082824bd25SMichael Hund 	for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
7092824bd25SMichael Hund 		endpoint = &iface_desc->endpoint[i].desc;
7102824bd25SMichael Hund 
7115482687bSLuiz Fernando N. Capitulino 		if (usb_endpoint_is_int_in(endpoint))
7122824bd25SMichael Hund 			dev->interrupt_in_endpoint = endpoint;
7132824bd25SMichael Hund 
7145482687bSLuiz Fernando N. Capitulino 		if (usb_endpoint_is_int_out(endpoint))
7152824bd25SMichael Hund 			dev->interrupt_out_endpoint = endpoint;
7162824bd25SMichael Hund 	}
7172824bd25SMichael Hund 	if (dev->interrupt_in_endpoint == NULL) {
7182824bd25SMichael Hund 		dev_err(&intf->dev, "Interrupt in endpoint not found\n");
7192824bd25SMichael Hund 		goto error;
7202824bd25SMichael Hund 	}
7212824bd25SMichael Hund 	if (dev->interrupt_out_endpoint == NULL)
7222824bd25SMichael Hund 		dev_warn(&intf->dev, "Interrupt out endpoint not found (using control endpoint instead)\n");
7232824bd25SMichael Hund 
72429cc8897SKuninori Morimoto 	dev->interrupt_in_endpoint_size = usb_endpoint_maxp(dev->interrupt_in_endpoint);
7252824bd25SMichael Hund 	dev->ring_buffer = kmalloc(ring_buffer_size*(sizeof(size_t)+dev->interrupt_in_endpoint_size), GFP_KERNEL);
7262824bd25SMichael Hund 	if (!dev->ring_buffer) {
7272824bd25SMichael Hund 		dev_err(&intf->dev, "Couldn't allocate ring_buffer\n");
7282824bd25SMichael Hund 		goto error;
7292824bd25SMichael Hund 	}
7302824bd25SMichael Hund 	dev->interrupt_in_buffer = kmalloc(dev->interrupt_in_endpoint_size, GFP_KERNEL);
7312824bd25SMichael Hund 	if (!dev->interrupt_in_buffer) {
7322824bd25SMichael Hund 		dev_err(&intf->dev, "Couldn't allocate interrupt_in_buffer\n");
7332824bd25SMichael Hund 		goto error;
7342824bd25SMichael Hund 	}
7352824bd25SMichael Hund 	dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
7362824bd25SMichael Hund 	if (!dev->interrupt_in_urb) {
7372824bd25SMichael Hund 		dev_err(&intf->dev, "Couldn't allocate interrupt_in_urb\n");
7382824bd25SMichael Hund 		goto error;
7392824bd25SMichael Hund 	}
74029cc8897SKuninori Morimoto 	dev->interrupt_out_endpoint_size = dev->interrupt_out_endpoint ? usb_endpoint_maxp(dev->interrupt_out_endpoint) :
7412824bd25SMichael Hund 									 udev->descriptor.bMaxPacketSize0;
7422824bd25SMichael Hund 	dev->interrupt_out_buffer = kmalloc(write_buffer_size*dev->interrupt_out_endpoint_size, GFP_KERNEL);
7432824bd25SMichael Hund 	if (!dev->interrupt_out_buffer) {
7442824bd25SMichael Hund 		dev_err(&intf->dev, "Couldn't allocate interrupt_out_buffer\n");
7452824bd25SMichael Hund 		goto error;
7462824bd25SMichael Hund 	}
7472824bd25SMichael Hund 	dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
7482824bd25SMichael Hund 	if (!dev->interrupt_out_urb) {
7492824bd25SMichael Hund 		dev_err(&intf->dev, "Couldn't allocate interrupt_out_urb\n");
7502824bd25SMichael Hund 		goto error;
7512824bd25SMichael Hund 	}
7522824bd25SMichael Hund 	dev->interrupt_in_interval = min_interrupt_in_interval > dev->interrupt_in_endpoint->bInterval ? min_interrupt_in_interval : dev->interrupt_in_endpoint->bInterval;
7532824bd25SMichael Hund 	if (dev->interrupt_out_endpoint)
7542824bd25SMichael Hund 		dev->interrupt_out_interval = min_interrupt_out_interval > dev->interrupt_out_endpoint->bInterval ? min_interrupt_out_interval : dev->interrupt_out_endpoint->bInterval;
7552824bd25SMichael Hund 
7562824bd25SMichael Hund 	/* we can register the device now, as it is ready */
7572824bd25SMichael Hund 	usb_set_intfdata(intf, dev);
7582824bd25SMichael Hund 
7592824bd25SMichael Hund 	retval = usb_register_dev(intf, &ld_usb_class);
7602824bd25SMichael Hund 	if (retval) {
7612824bd25SMichael Hund 		/* something prevented us from registering this driver */
7622824bd25SMichael Hund 		dev_err(&intf->dev, "Not able to get a minor for this device.\n");
7632824bd25SMichael Hund 		usb_set_intfdata(intf, NULL);
7642824bd25SMichael Hund 		goto error;
7652824bd25SMichael Hund 	}
7662824bd25SMichael Hund 
7672824bd25SMichael Hund 	/* let the user know what node this device is now attached to */
7682824bd25SMichael Hund 	dev_info(&intf->dev, "LD USB Device #%d now attached to major %d minor %d\n",
7692824bd25SMichael Hund 		(intf->minor - USB_LD_MINOR_BASE), USB_MAJOR, intf->minor);
7702824bd25SMichael Hund 
7712824bd25SMichael Hund exit:
7722824bd25SMichael Hund 	return retval;
7732824bd25SMichael Hund 
7742824bd25SMichael Hund error:
7752824bd25SMichael Hund 	ld_usb_delete(dev);
7762824bd25SMichael Hund 
7772824bd25SMichael Hund 	return retval;
7782824bd25SMichael Hund }
7792824bd25SMichael Hund 
7802824bd25SMichael Hund /**
7812824bd25SMichael Hund  *	ld_usb_disconnect
7822824bd25SMichael Hund  *
7832824bd25SMichael Hund  *	Called by the usb core when the device is removed from the system.
7842824bd25SMichael Hund  */
7852824bd25SMichael Hund static void ld_usb_disconnect(struct usb_interface *intf)
7862824bd25SMichael Hund {
7872824bd25SMichael Hund 	struct ld_usb *dev;
7882824bd25SMichael Hund 	int minor;
7892824bd25SMichael Hund 
7902824bd25SMichael Hund 	dev = usb_get_intfdata(intf);
7912824bd25SMichael Hund 	usb_set_intfdata(intf, NULL);
7922824bd25SMichael Hund 
7932824bd25SMichael Hund 	minor = intf->minor;
7942824bd25SMichael Hund 
7952824bd25SMichael Hund 	/* give back our minor */
7962824bd25SMichael Hund 	usb_deregister_dev(intf, &ld_usb_class);
7972824bd25SMichael Hund 
798ce0d7d3fSDaniel Walker 	mutex_lock(&dev->mutex);
799d4ead16fSAlan Stern 
8002824bd25SMichael Hund 	/* if the device is not opened, then we clean up right now */
8012824bd25SMichael Hund 	if (!dev->open_count) {
802ce0d7d3fSDaniel Walker 		mutex_unlock(&dev->mutex);
8032824bd25SMichael Hund 		ld_usb_delete(dev);
8042824bd25SMichael Hund 	} else {
8052824bd25SMichael Hund 		dev->intf = NULL;
806d12b85e7SOliver Neukum 		/* wake up pollers */
807d12b85e7SOliver Neukum 		wake_up_interruptible_all(&dev->read_wait);
808d12b85e7SOliver Neukum 		wake_up_interruptible_all(&dev->write_wait);
809ce0d7d3fSDaniel Walker 		mutex_unlock(&dev->mutex);
8102824bd25SMichael Hund 	}
8112824bd25SMichael Hund 
8122824bd25SMichael Hund 	dev_info(&intf->dev, "LD USB Device #%d now disconnected\n",
8132824bd25SMichael Hund 		 (minor - USB_LD_MINOR_BASE));
8142824bd25SMichael Hund }
8152824bd25SMichael Hund 
8162824bd25SMichael Hund /* usb specific object needed to register this driver with the usb subsystem */
8172824bd25SMichael Hund static struct usb_driver ld_usb_driver = {
8182824bd25SMichael Hund 	.name =		"ldusb",
8192824bd25SMichael Hund 	.probe =	ld_usb_probe,
8202824bd25SMichael Hund 	.disconnect =	ld_usb_disconnect,
8212824bd25SMichael Hund 	.id_table =	ld_usb_table,
8222824bd25SMichael Hund };
8232824bd25SMichael Hund 
8242824bd25SMichael Hund /**
8252824bd25SMichael Hund  *	ld_usb_init
8262824bd25SMichael Hund  */
8272824bd25SMichael Hund static int __init ld_usb_init(void)
8282824bd25SMichael Hund {
8292824bd25SMichael Hund 	int retval;
8302824bd25SMichael Hund 
8312824bd25SMichael Hund 	/* register this driver with the USB subsystem */
8322824bd25SMichael Hund 	retval = usb_register(&ld_usb_driver);
8332824bd25SMichael Hund 	if (retval)
834f45ba776SJoe Perches 		err("usb_register failed for the %s driver. Error number %d\n", __FILE__, retval);
8352824bd25SMichael Hund 
8362824bd25SMichael Hund 	return retval;
8372824bd25SMichael Hund }
8382824bd25SMichael Hund 
8392824bd25SMichael Hund /**
8402824bd25SMichael Hund  *	ld_usb_exit
8412824bd25SMichael Hund  */
8422824bd25SMichael Hund static void __exit ld_usb_exit(void)
8432824bd25SMichael Hund {
8442824bd25SMichael Hund 	/* deregister this driver with the USB subsystem */
8452824bd25SMichael Hund 	usb_deregister(&ld_usb_driver);
8462824bd25SMichael Hund }
8472824bd25SMichael Hund 
8482824bd25SMichael Hund module_init(ld_usb_init);
8492824bd25SMichael Hund module_exit(ld_usb_exit);
8502824bd25SMichael Hund 
851