blob: 8bd095635a99d21d5c8e0ada673c7b9621e94d05 [file] [log] [blame]
Matthew Dharm34008db2005-07-28 14:49:01 -07001/*
2 * Support for the Maxtor OneTouch USB hard drive's button
3 *
4 * Current development and maintenance by:
5 * Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu>
6 *
7 * Initial work by:
Dmitry Torokhov88789672005-09-15 02:01:43 -05008 * Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se>
Matthew Dharm34008db2005-07-28 14:49:01 -07009 *
10 * Based on usbmouse.c (Vojtech Pavlik) and xpad.c (Marko Friedemann)
11 *
12 */
13
14/*
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
29 */
30
Matthew Dharm34008db2005-07-28 14:49:01 -070031#include <linux/kernel.h>
32#include <linux/input.h>
33#include <linux/init.h>
34#include <linux/slab.h>
35#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070036#include <linux/usb/input.h>
Matthew Dharm34008db2005-07-28 14:49:01 -070037#include "usb.h"
Matthew Dharm34008db2005-07-28 14:49:01 -070038#include "debug.h"
39
Alan Stern9cfb95e2009-02-12 14:48:33 -050040#define ONETOUCH_PKT_LEN 0x02
41#define ONETOUCH_BUTTON KEY_PROG1
42
43static int onetouch_connect_input(struct us_data *ss);
Adrian Bunk43c1e982008-04-28 18:39:37 +030044static void onetouch_release_input(void *onetouch_);
Matthew Dharm34008db2005-07-28 14:49:01 -070045
46struct usb_onetouch {
47 char name[128];
48 char phys[64];
Dmitry Torokhov88789672005-09-15 02:01:43 -050049 struct input_dev *dev; /* input device interface */
Matthew Dharm34008db2005-07-28 14:49:01 -070050 struct usb_device *udev; /* usb device */
51
52 struct urb *irq; /* urb for interrupt in report */
53 unsigned char *data; /* input data */
54 dma_addr_t data_dma;
Matthew Dharm7931e1c2005-12-04 21:56:51 -080055 unsigned int is_open:1;
Matthew Dharm34008db2005-07-28 14:49:01 -070056};
57
Alan Stern9cfb95e2009-02-12 14:48:33 -050058
59/*
60 * The table of devices
61 */
62#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
63 vendorName, productName, useProtocol, useTransport, \
64 initFunction, flags) \
65{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
66 .driver_info = (flags)|(USB_US_TYPE_STOR<<24) }
67
68struct usb_device_id onetouch_usb_ids[] = {
69# include "unusual_onetouch.h"
70 { } /* Terminating entry */
71};
72MODULE_DEVICE_TABLE(usb, onetouch_usb_ids);
73
74#undef UNUSUAL_DEV
75
76/*
77 * The flags table
78 */
79#define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
80 vendor_name, product_name, use_protocol, use_transport, \
81 init_function, Flags) \
82{ \
83 .vendorName = vendor_name, \
84 .productName = product_name, \
85 .useProtocol = use_protocol, \
86 .useTransport = use_transport, \
87 .initFunction = init_function, \
88}
89
90static struct us_unusual_dev onetouch_unusual_dev_list[] = {
91# include "unusual_onetouch.h"
92 { } /* Terminating entry */
93};
94
95#undef UNUSUAL_DEV
96
97
David Howells7d12e782006-10-05 14:55:46 +010098static void usb_onetouch_irq(struct urb *urb)
Matthew Dharm34008db2005-07-28 14:49:01 -070099{
100 struct usb_onetouch *onetouch = urb->context;
101 signed char *data = onetouch->data;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500102 struct input_dev *dev = onetouch->dev;
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700103 int status = urb->status;
104 int retval;
Matthew Dharm34008db2005-07-28 14:49:01 -0700105
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700106 switch (status) {
Matthew Dharm34008db2005-07-28 14:49:01 -0700107 case 0: /* success */
108 break;
109 case -ECONNRESET: /* unlink */
110 case -ENOENT:
111 case -ESHUTDOWN:
112 return;
113 /* -EPIPE: should clear the halt */
114 default: /* error */
115 goto resubmit;
116 }
117
Dmitry Torokhov88789672005-09-15 02:01:43 -0500118 input_report_key(dev, ONETOUCH_BUTTON, data[0] & 0x02);
Matthew Dharm34008db2005-07-28 14:49:01 -0700119 input_sync(dev);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500120
Matthew Dharm34008db2005-07-28 14:49:01 -0700121resubmit:
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700122 retval = usb_submit_urb (urb, GFP_ATOMIC);
123 if (retval)
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700124 dev_err(&dev->dev, "can't resubmit intr, %s-%s/input0, "
125 "retval %d\n", onetouch->udev->bus->bus_name,
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700126 onetouch->udev->devpath, retval);
Matthew Dharm34008db2005-07-28 14:49:01 -0700127}
128
129static int usb_onetouch_open(struct input_dev *dev)
130{
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400131 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700132
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800133 onetouch->is_open = 1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700134 onetouch->irq->dev = onetouch->udev;
135 if (usb_submit_urb(onetouch->irq, GFP_KERNEL)) {
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700136 dev_err(&dev->dev, "usb_submit_urb failed\n");
Matthew Dharm34008db2005-07-28 14:49:01 -0700137 return -EIO;
138 }
139
140 return 0;
141}
142
143static void usb_onetouch_close(struct input_dev *dev)
144{
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400145 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700146
147 usb_kill_urb(onetouch->irq);
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800148 onetouch->is_open = 0;
Matthew Dharm34008db2005-07-28 14:49:01 -0700149}
150
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800151#ifdef CONFIG_PM
152static void usb_onetouch_pm_hook(struct us_data *us, int action)
153{
154 struct usb_onetouch *onetouch = (struct usb_onetouch *) us->extra;
155
156 if (onetouch->is_open) {
157 switch (action) {
158 case US_SUSPEND:
159 usb_kill_urb(onetouch->irq);
160 break;
161 case US_RESUME:
162 if (usb_submit_urb(onetouch->irq, GFP_KERNEL) != 0)
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700163 dev_err(&onetouch->irq->dev->dev,
164 "usb_submit_urb failed\n");
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800165 break;
166 default:
167 break;
168 }
169 }
170}
171#endif /* CONFIG_PM */
172
Alan Stern9cfb95e2009-02-12 14:48:33 -0500173static int onetouch_connect_input(struct us_data *ss)
Matthew Dharm34008db2005-07-28 14:49:01 -0700174{
175 struct usb_device *udev = ss->pusb_dev;
176 struct usb_host_interface *interface;
177 struct usb_endpoint_descriptor *endpoint;
178 struct usb_onetouch *onetouch;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500179 struct input_dev *input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700180 int pipe, maxp;
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400181 int error = -ENOMEM;
Matthew Dharm34008db2005-07-28 14:49:01 -0700182
183 interface = ss->pusb_intf->cur_altsetting;
184
Nick Sillikd6450e12005-08-17 13:37:34 -0400185 if (interface->desc.bNumEndpoints != 3)
Matthew Dharm34008db2005-07-28 14:49:01 -0700186 return -ENODEV;
Nick Sillikd6450e12005-08-17 13:37:34 -0400187
188 endpoint = &interface->endpoint[2].desc;
Luiz Fernando N. Capitulino66722a12006-10-26 13:02:55 -0300189 if (!usb_endpoint_is_int_in(endpoint))
Matthew Dharm34008db2005-07-28 14:49:01 -0700190 return -ENODEV;
191
192 pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);
193 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
194
Dmitry Torokhov88789672005-09-15 02:01:43 -0500195 onetouch = kzalloc(sizeof(struct usb_onetouch), GFP_KERNEL);
196 input_dev = input_allocate_device();
197 if (!onetouch || !input_dev)
198 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700199
Nick Sillikd6450e12005-08-17 13:37:34 -0400200 onetouch->data = usb_buffer_alloc(udev, ONETOUCH_PKT_LEN,
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800201 GFP_ATOMIC, &onetouch->data_dma);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500202 if (!onetouch->data)
203 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700204
205 onetouch->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500206 if (!onetouch->irq)
207 goto fail2;
Matthew Dharm34008db2005-07-28 14:49:01 -0700208
209 onetouch->udev = udev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500210 onetouch->dev = input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700211
212 if (udev->manufacturer)
Dmitry Torokhov88789672005-09-15 02:01:43 -0500213 strlcpy(onetouch->name, udev->manufacturer,
214 sizeof(onetouch->name));
215 if (udev->product) {
216 if (udev->manufacturer)
217 strlcat(onetouch->name, " ", sizeof(onetouch->name));
218 strlcat(onetouch->name, udev->product, sizeof(onetouch->name));
219 }
220
Matthew Dharm34008db2005-07-28 14:49:01 -0700221 if (!strlen(onetouch->name))
Dmitry Torokhov88789672005-09-15 02:01:43 -0500222 snprintf(onetouch->name, sizeof(onetouch->name),
223 "Maxtor Onetouch %04x:%04x",
224 le16_to_cpu(udev->descriptor.idVendor),
225 le16_to_cpu(udev->descriptor.idProduct));
226
227 usb_make_path(udev, onetouch->phys, sizeof(onetouch->phys));
228 strlcat(onetouch->phys, "/input0", sizeof(onetouch->phys));
229
230 input_dev->name = onetouch->name;
231 input_dev->phys = onetouch->phys;
232 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400233 input_dev->dev.parent = &udev->dev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500234
235 set_bit(EV_KEY, input_dev->evbit);
236 set_bit(ONETOUCH_BUTTON, input_dev->keybit);
237 clear_bit(0, input_dev->keybit);
238
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400239 input_set_drvdata(input_dev, onetouch);
240
Dmitry Torokhov88789672005-09-15 02:01:43 -0500241 input_dev->open = usb_onetouch_open;
242 input_dev->close = usb_onetouch_close;
Matthew Dharm34008db2005-07-28 14:49:01 -0700243
244 usb_fill_int_urb(onetouch->irq, udev, pipe, onetouch->data,
245 (maxp > 8 ? 8 : maxp),
246 usb_onetouch_irq, onetouch, endpoint->bInterval);
247 onetouch->irq->transfer_dma = onetouch->data_dma;
248 onetouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
249
250 ss->extra_destructor = onetouch_release_input;
251 ss->extra = onetouch;
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800252#ifdef CONFIG_PM
253 ss->suspend_resume_hook = usb_onetouch_pm_hook;
254#endif
Matthew Dharm34008db2005-07-28 14:49:01 -0700255
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400256 error = input_register_device(onetouch->dev);
257 if (error)
258 goto fail3;
Matthew Dharm34008db2005-07-28 14:49:01 -0700259
260 return 0;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500261
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400262 fail3: usb_free_urb(onetouch->irq);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500263 fail2: usb_buffer_free(udev, ONETOUCH_PKT_LEN,
264 onetouch->data, onetouch->data_dma);
265 fail1: kfree(onetouch);
266 input_free_device(input_dev);
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400267 return error;
Matthew Dharm34008db2005-07-28 14:49:01 -0700268}
269
Adrian Bunk43c1e982008-04-28 18:39:37 +0300270static void onetouch_release_input(void *onetouch_)
Matthew Dharm34008db2005-07-28 14:49:01 -0700271{
272 struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_;
273
274 if (onetouch) {
275 usb_kill_urb(onetouch->irq);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500276 input_unregister_device(onetouch->dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700277 usb_free_urb(onetouch->irq);
278 usb_buffer_free(onetouch->udev, ONETOUCH_PKT_LEN,
279 onetouch->data, onetouch->data_dma);
Matthew Dharm34008db2005-07-28 14:49:01 -0700280 }
281}
Alan Stern9cfb95e2009-02-12 14:48:33 -0500282
283static int onetouch_probe(struct usb_interface *intf,
284 const struct usb_device_id *id)
285{
286 struct us_data *us;
287 int result;
288
289 result = usb_stor_probe1(&us, intf, id,
290 (id - onetouch_usb_ids) + onetouch_unusual_dev_list);
291 if (result)
292 return result;
293
294 /* Use default transport and protocol */
295
296 result = usb_stor_probe2(us);
297 return result;
298}
299
300static struct usb_driver onetouch_driver = {
301 .name = "ums-onetouch",
302 .probe = onetouch_probe,
303 .disconnect = usb_stor_disconnect,
304 .suspend = usb_stor_suspend,
305 .resume = usb_stor_resume,
306 .reset_resume = usb_stor_reset_resume,
307 .pre_reset = usb_stor_pre_reset,
308 .post_reset = usb_stor_post_reset,
309 .id_table = onetouch_usb_ids,
310 .soft_unbind = 1,
311};
312
313static int __init onetouch_init(void)
314{
315 return usb_register(&onetouch_driver);
316}
317
318static void __exit onetouch_exit(void)
319{
320 usb_deregister(&onetouch_driver);
321}
322
323module_init(onetouch_init);
324module_exit(onetouch_exit);