1 // SPDX-License-Identifier: GPL-2.0+
3 * Support for the Maxtor OneTouch USB hard drive's button
5 * Current development and maintenance by:
6 * Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu>
9 * Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se>
11 * Based on usbmouse.c (Vojtech Pavlik) and xpad.c (Marko Friedemann)
14 #include <linux/kernel.h>
15 #include <linux/input.h>
16 #include <linux/slab.h>
17 #include <linux/module.h>
18 #include <linux/usb/input.h>
23 #define DRV_NAME "ums-onetouch"
25 MODULE_DESCRIPTION("Maxtor USB OneTouch hard drive button driver");
26 MODULE_AUTHOR("Nick Sillik <n.sillik@temple.edu>");
27 MODULE_LICENSE("GPL");
28 MODULE_IMPORT_NS(USB_STORAGE
);
30 #define ONETOUCH_PKT_LEN 0x02
31 #define ONETOUCH_BUTTON KEY_PROG1
33 static int onetouch_connect_input(struct us_data
*ss
);
34 static void onetouch_release_input(void *onetouch_
);
39 struct input_dev
*dev
; /* input device interface */
40 struct usb_device
*udev
; /* usb device */
42 struct urb
*irq
; /* urb for interrupt in report */
43 unsigned char *data
; /* input data */
45 unsigned int is_open
:1;
50 * The table of devices
52 #define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
53 vendorName, productName, useProtocol, useTransport, \
54 initFunction, flags) \
55 { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
56 .driver_info = (flags) }
58 static struct usb_device_id onetouch_usb_ids
[] = {
59 # include "unusual_onetouch.h"
60 { } /* Terminating entry */
62 MODULE_DEVICE_TABLE(usb
, onetouch_usb_ids
);
69 #define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
70 vendor_name, product_name, use_protocol, use_transport, \
71 init_function, Flags) \
73 .vendorName = vendor_name, \
74 .productName = product_name, \
75 .useProtocol = use_protocol, \
76 .useTransport = use_transport, \
77 .initFunction = init_function, \
80 static struct us_unusual_dev onetouch_unusual_dev_list
[] = {
81 # include "unusual_onetouch.h"
82 { } /* Terminating entry */
88 static void usb_onetouch_irq(struct urb
*urb
)
90 struct usb_onetouch
*onetouch
= urb
->context
;
91 signed char *data
= onetouch
->data
;
92 struct input_dev
*dev
= onetouch
->dev
;
93 int status
= urb
->status
;
99 case -ECONNRESET
: /* unlink */
103 /* -EPIPE: should clear the halt */
108 input_report_key(dev
, ONETOUCH_BUTTON
, data
[0] & 0x02);
112 retval
= usb_submit_urb (urb
, GFP_ATOMIC
);
114 dev_err(&dev
->dev
, "can't resubmit intr, %s-%s/input0, "
115 "retval %d\n", onetouch
->udev
->bus
->bus_name
,
116 onetouch
->udev
->devpath
, retval
);
119 static int usb_onetouch_open(struct input_dev
*dev
)
121 struct usb_onetouch
*onetouch
= input_get_drvdata(dev
);
123 onetouch
->is_open
= 1;
124 onetouch
->irq
->dev
= onetouch
->udev
;
125 if (usb_submit_urb(onetouch
->irq
, GFP_KERNEL
)) {
126 dev_err(&dev
->dev
, "usb_submit_urb failed\n");
133 static void usb_onetouch_close(struct input_dev
*dev
)
135 struct usb_onetouch
*onetouch
= input_get_drvdata(dev
);
137 usb_kill_urb(onetouch
->irq
);
138 onetouch
->is_open
= 0;
142 static void usb_onetouch_pm_hook(struct us_data
*us
, int action
)
144 struct usb_onetouch
*onetouch
= (struct usb_onetouch
*) us
->extra
;
146 if (onetouch
->is_open
) {
149 usb_kill_urb(onetouch
->irq
);
152 if (usb_submit_urb(onetouch
->irq
, GFP_NOIO
) != 0)
153 dev_err(&onetouch
->irq
->dev
->dev
,
154 "usb_submit_urb failed\n");
161 #endif /* CONFIG_PM */
163 static int onetouch_connect_input(struct us_data
*ss
)
165 struct usb_device
*udev
= ss
->pusb_dev
;
166 struct usb_host_interface
*interface
;
167 struct usb_endpoint_descriptor
*endpoint
;
168 struct usb_onetouch
*onetouch
;
169 struct input_dev
*input_dev
;
173 interface
= ss
->pusb_intf
->cur_altsetting
;
175 if (interface
->desc
.bNumEndpoints
!= 3)
178 endpoint
= &interface
->endpoint
[2].desc
;
179 if (!usb_endpoint_is_int_in(endpoint
))
182 pipe
= usb_rcvintpipe(udev
, endpoint
->bEndpointAddress
);
183 maxp
= usb_maxpacket(udev
, pipe
, usb_pipeout(pipe
));
184 maxp
= min(maxp
, ONETOUCH_PKT_LEN
);
186 onetouch
= kzalloc(sizeof(struct usb_onetouch
), GFP_KERNEL
);
187 input_dev
= input_allocate_device();
188 if (!onetouch
|| !input_dev
)
191 onetouch
->data
= usb_alloc_coherent(udev
, ONETOUCH_PKT_LEN
,
192 GFP_KERNEL
, &onetouch
->data_dma
);
196 onetouch
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
200 onetouch
->udev
= udev
;
201 onetouch
->dev
= input_dev
;
203 if (udev
->manufacturer
)
204 strlcpy(onetouch
->name
, udev
->manufacturer
,
205 sizeof(onetouch
->name
));
207 if (udev
->manufacturer
)
208 strlcat(onetouch
->name
, " ", sizeof(onetouch
->name
));
209 strlcat(onetouch
->name
, udev
->product
, sizeof(onetouch
->name
));
212 if (!strlen(onetouch
->name
))
213 snprintf(onetouch
->name
, sizeof(onetouch
->name
),
214 "Maxtor Onetouch %04x:%04x",
215 le16_to_cpu(udev
->descriptor
.idVendor
),
216 le16_to_cpu(udev
->descriptor
.idProduct
));
218 usb_make_path(udev
, onetouch
->phys
, sizeof(onetouch
->phys
));
219 strlcat(onetouch
->phys
, "/input0", sizeof(onetouch
->phys
));
221 input_dev
->name
= onetouch
->name
;
222 input_dev
->phys
= onetouch
->phys
;
223 usb_to_input_id(udev
, &input_dev
->id
);
224 input_dev
->dev
.parent
= &udev
->dev
;
226 set_bit(EV_KEY
, input_dev
->evbit
);
227 set_bit(ONETOUCH_BUTTON
, input_dev
->keybit
);
228 clear_bit(0, input_dev
->keybit
);
230 input_set_drvdata(input_dev
, onetouch
);
232 input_dev
->open
= usb_onetouch_open
;
233 input_dev
->close
= usb_onetouch_close
;
235 usb_fill_int_urb(onetouch
->irq
, udev
, pipe
, onetouch
->data
, maxp
,
236 usb_onetouch_irq
, onetouch
, endpoint
->bInterval
);
237 onetouch
->irq
->transfer_dma
= onetouch
->data_dma
;
238 onetouch
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
240 ss
->extra_destructor
= onetouch_release_input
;
241 ss
->extra
= onetouch
;
243 ss
->suspend_resume_hook
= usb_onetouch_pm_hook
;
246 error
= input_register_device(onetouch
->dev
);
252 fail3
: usb_free_urb(onetouch
->irq
);
253 fail2
: usb_free_coherent(udev
, ONETOUCH_PKT_LEN
,
254 onetouch
->data
, onetouch
->data_dma
);
255 fail1
: kfree(onetouch
);
256 input_free_device(input_dev
);
260 static void onetouch_release_input(void *onetouch_
)
262 struct usb_onetouch
*onetouch
= (struct usb_onetouch
*) onetouch_
;
265 usb_kill_urb(onetouch
->irq
);
266 input_unregister_device(onetouch
->dev
);
267 usb_free_urb(onetouch
->irq
);
268 usb_free_coherent(onetouch
->udev
, ONETOUCH_PKT_LEN
,
269 onetouch
->data
, onetouch
->data_dma
);
273 static struct scsi_host_template onetouch_host_template
;
275 static int onetouch_probe(struct usb_interface
*intf
,
276 const struct usb_device_id
*id
)
281 result
= usb_stor_probe1(&us
, intf
, id
,
282 (id
- onetouch_usb_ids
) + onetouch_unusual_dev_list
,
283 &onetouch_host_template
);
287 /* Use default transport and protocol */
289 result
= usb_stor_probe2(us
);
293 static struct usb_driver onetouch_driver
= {
295 .probe
= onetouch_probe
,
296 .disconnect
= usb_stor_disconnect
,
297 .suspend
= usb_stor_suspend
,
298 .resume
= usb_stor_resume
,
299 .reset_resume
= usb_stor_reset_resume
,
300 .pre_reset
= usb_stor_pre_reset
,
301 .post_reset
= usb_stor_post_reset
,
302 .id_table
= onetouch_usb_ids
,
307 module_usb_stor_driver(onetouch_driver
, onetouch_host_template
, DRV_NAME
);