blob: acc3d03d8c1e08849c30acdad246f6dcdd0cf18e [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>
Matthew Dharm34008db2005-07-28 14:49:01 -070033#include <linux/slab.h>
34#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070035#include <linux/usb/input.h>
Matthew Dharm34008db2005-07-28 14:49:01 -070036#include "usb.h"
Matthew Dharm34008db2005-07-28 14:49:01 -070037#include "debug.h"
Akinobu Mitaaa519be2015-05-06 18:24:21 +090038#include "scsiglue.h"
39
40#define DRV_NAME "ums-onetouch"
Matthew Dharm34008db2005-07-28 14:49:01 -070041
Maciej Grela4246b062009-02-28 12:39:20 -080042MODULE_DESCRIPTION("Maxtor USB OneTouch hard drive button driver");
43MODULE_AUTHOR("Nick Sillik <n.sillik@temple.edu>");
44MODULE_LICENSE("GPL");
45
Alan Stern9cfb95e2009-02-12 14:48:33 -050046#define ONETOUCH_PKT_LEN 0x02
47#define ONETOUCH_BUTTON KEY_PROG1
48
49static int onetouch_connect_input(struct us_data *ss);
Adrian Bunk43c1e982008-04-28 18:39:37 +030050static void onetouch_release_input(void *onetouch_);
Matthew Dharm34008db2005-07-28 14:49:01 -070051
52struct usb_onetouch {
53 char name[128];
54 char phys[64];
Dmitry Torokhov88789672005-09-15 02:01:43 -050055 struct input_dev *dev; /* input device interface */
Matthew Dharm34008db2005-07-28 14:49:01 -070056 struct usb_device *udev; /* usb device */
57
58 struct urb *irq; /* urb for interrupt in report */
59 unsigned char *data; /* input data */
60 dma_addr_t data_dma;
Matthew Dharm7931e1c2005-12-04 21:56:51 -080061 unsigned int is_open:1;
Matthew Dharm34008db2005-07-28 14:49:01 -070062};
63
Alan Stern9cfb95e2009-02-12 14:48:33 -050064
65/*
66 * The table of devices
67 */
68#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
69 vendorName, productName, useProtocol, useTransport, \
70 initFunction, flags) \
71{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
Sebastian Andrzej Siewiorf61870e2012-08-28 22:37:13 +020072 .driver_info = (flags) }
Alan Stern9cfb95e2009-02-12 14:48:33 -050073
Felipe Balbie2c83f02011-11-15 09:53:36 +020074static struct usb_device_id onetouch_usb_ids[] = {
Alan Stern9cfb95e2009-02-12 14:48:33 -050075# include "unusual_onetouch.h"
76 { } /* Terminating entry */
77};
78MODULE_DEVICE_TABLE(usb, onetouch_usb_ids);
79
80#undef UNUSUAL_DEV
81
82/*
83 * The flags table
84 */
85#define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
86 vendor_name, product_name, use_protocol, use_transport, \
87 init_function, Flags) \
88{ \
89 .vendorName = vendor_name, \
90 .productName = product_name, \
91 .useProtocol = use_protocol, \
92 .useTransport = use_transport, \
93 .initFunction = init_function, \
94}
95
96static struct us_unusual_dev onetouch_unusual_dev_list[] = {
97# include "unusual_onetouch.h"
98 { } /* Terminating entry */
99};
100
101#undef UNUSUAL_DEV
102
103
David Howells7d12e782006-10-05 14:55:46 +0100104static void usb_onetouch_irq(struct urb *urb)
Matthew Dharm34008db2005-07-28 14:49:01 -0700105{
106 struct usb_onetouch *onetouch = urb->context;
107 signed char *data = onetouch->data;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500108 struct input_dev *dev = onetouch->dev;
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700109 int status = urb->status;
110 int retval;
Matthew Dharm34008db2005-07-28 14:49:01 -0700111
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700112 switch (status) {
Matthew Dharm34008db2005-07-28 14:49:01 -0700113 case 0: /* success */
114 break;
115 case -ECONNRESET: /* unlink */
116 case -ENOENT:
117 case -ESHUTDOWN:
118 return;
119 /* -EPIPE: should clear the halt */
120 default: /* error */
121 goto resubmit;
122 }
123
Dmitry Torokhov88789672005-09-15 02:01:43 -0500124 input_report_key(dev, ONETOUCH_BUTTON, data[0] & 0x02);
Matthew Dharm34008db2005-07-28 14:49:01 -0700125 input_sync(dev);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500126
Matthew Dharm34008db2005-07-28 14:49:01 -0700127resubmit:
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700128 retval = usb_submit_urb (urb, GFP_ATOMIC);
129 if (retval)
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700130 dev_err(&dev->dev, "can't resubmit intr, %s-%s/input0, "
131 "retval %d\n", onetouch->udev->bus->bus_name,
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700132 onetouch->udev->devpath, retval);
Matthew Dharm34008db2005-07-28 14:49:01 -0700133}
134
135static int usb_onetouch_open(struct input_dev *dev)
136{
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400137 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700138
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800139 onetouch->is_open = 1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700140 onetouch->irq->dev = onetouch->udev;
141 if (usb_submit_urb(onetouch->irq, GFP_KERNEL)) {
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700142 dev_err(&dev->dev, "usb_submit_urb failed\n");
Matthew Dharm34008db2005-07-28 14:49:01 -0700143 return -EIO;
144 }
145
146 return 0;
147}
148
149static void usb_onetouch_close(struct input_dev *dev)
150{
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400151 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700152
153 usb_kill_urb(onetouch->irq);
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800154 onetouch->is_open = 0;
Matthew Dharm34008db2005-07-28 14:49:01 -0700155}
156
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800157#ifdef CONFIG_PM
158static void usb_onetouch_pm_hook(struct us_data *us, int action)
159{
160 struct usb_onetouch *onetouch = (struct usb_onetouch *) us->extra;
161
162 if (onetouch->is_open) {
163 switch (action) {
164 case US_SUSPEND:
165 usb_kill_urb(onetouch->irq);
166 break;
167 case US_RESUME:
Oliver Neukume5dc8ae2009-08-26 19:56:12 +0200168 if (usb_submit_urb(onetouch->irq, GFP_NOIO) != 0)
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700169 dev_err(&onetouch->irq->dev->dev,
170 "usb_submit_urb failed\n");
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800171 break;
172 default:
173 break;
174 }
175 }
176}
177#endif /* CONFIG_PM */
178
Alan Stern9cfb95e2009-02-12 14:48:33 -0500179static int onetouch_connect_input(struct us_data *ss)
Matthew Dharm34008db2005-07-28 14:49:01 -0700180{
181 struct usb_device *udev = ss->pusb_dev;
182 struct usb_host_interface *interface;
183 struct usb_endpoint_descriptor *endpoint;
184 struct usb_onetouch *onetouch;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500185 struct input_dev *input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700186 int pipe, maxp;
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400187 int error = -ENOMEM;
Matthew Dharm34008db2005-07-28 14:49:01 -0700188
189 interface = ss->pusb_intf->cur_altsetting;
190
Nick Sillikd6450e12005-08-17 13:37:34 -0400191 if (interface->desc.bNumEndpoints != 3)
Matthew Dharm34008db2005-07-28 14:49:01 -0700192 return -ENODEV;
Nick Sillikd6450e12005-08-17 13:37:34 -0400193
194 endpoint = &interface->endpoint[2].desc;
Luiz Fernando N. Capitulino66722a12006-10-26 13:02:55 -0300195 if (!usb_endpoint_is_int_in(endpoint))
Matthew Dharm34008db2005-07-28 14:49:01 -0700196 return -ENODEV;
197
198 pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);
199 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
Dan Carpenterbba90ae2013-03-01 08:14:19 +0300200 maxp = min(maxp, ONETOUCH_PKT_LEN);
Matthew Dharm34008db2005-07-28 14:49:01 -0700201
Dmitry Torokhov88789672005-09-15 02:01:43 -0500202 onetouch = kzalloc(sizeof(struct usb_onetouch), GFP_KERNEL);
203 input_dev = input_allocate_device();
204 if (!onetouch || !input_dev)
205 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700206
Daniel Mack997ea582010-04-12 13:17:25 +0200207 onetouch->data = usb_alloc_coherent(udev, ONETOUCH_PKT_LEN,
208 GFP_KERNEL, &onetouch->data_dma);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500209 if (!onetouch->data)
210 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700211
212 onetouch->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500213 if (!onetouch->irq)
214 goto fail2;
Matthew Dharm34008db2005-07-28 14:49:01 -0700215
216 onetouch->udev = udev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500217 onetouch->dev = input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700218
219 if (udev->manufacturer)
Dmitry Torokhov88789672005-09-15 02:01:43 -0500220 strlcpy(onetouch->name, udev->manufacturer,
221 sizeof(onetouch->name));
222 if (udev->product) {
223 if (udev->manufacturer)
224 strlcat(onetouch->name, " ", sizeof(onetouch->name));
225 strlcat(onetouch->name, udev->product, sizeof(onetouch->name));
226 }
227
Matthew Dharm34008db2005-07-28 14:49:01 -0700228 if (!strlen(onetouch->name))
Dmitry Torokhov88789672005-09-15 02:01:43 -0500229 snprintf(onetouch->name, sizeof(onetouch->name),
230 "Maxtor Onetouch %04x:%04x",
231 le16_to_cpu(udev->descriptor.idVendor),
232 le16_to_cpu(udev->descriptor.idProduct));
233
234 usb_make_path(udev, onetouch->phys, sizeof(onetouch->phys));
235 strlcat(onetouch->phys, "/input0", sizeof(onetouch->phys));
236
237 input_dev->name = onetouch->name;
238 input_dev->phys = onetouch->phys;
239 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400240 input_dev->dev.parent = &udev->dev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500241
242 set_bit(EV_KEY, input_dev->evbit);
243 set_bit(ONETOUCH_BUTTON, input_dev->keybit);
244 clear_bit(0, input_dev->keybit);
245
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400246 input_set_drvdata(input_dev, onetouch);
247
Dmitry Torokhov88789672005-09-15 02:01:43 -0500248 input_dev->open = usb_onetouch_open;
249 input_dev->close = usb_onetouch_close;
Matthew Dharm34008db2005-07-28 14:49:01 -0700250
Dan Carpenterbba90ae2013-03-01 08:14:19 +0300251 usb_fill_int_urb(onetouch->irq, udev, pipe, onetouch->data, maxp,
Matthew Dharm34008db2005-07-28 14:49:01 -0700252 usb_onetouch_irq, onetouch, endpoint->bInterval);
253 onetouch->irq->transfer_dma = onetouch->data_dma;
254 onetouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
255
256 ss->extra_destructor = onetouch_release_input;
257 ss->extra = onetouch;
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800258#ifdef CONFIG_PM
259 ss->suspend_resume_hook = usb_onetouch_pm_hook;
260#endif
Matthew Dharm34008db2005-07-28 14:49:01 -0700261
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400262 error = input_register_device(onetouch->dev);
263 if (error)
264 goto fail3;
Matthew Dharm34008db2005-07-28 14:49:01 -0700265
266 return 0;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500267
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400268 fail3: usb_free_urb(onetouch->irq);
Daniel Mack997ea582010-04-12 13:17:25 +0200269 fail2: usb_free_coherent(udev, ONETOUCH_PKT_LEN,
270 onetouch->data, onetouch->data_dma);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500271 fail1: kfree(onetouch);
272 input_free_device(input_dev);
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400273 return error;
Matthew Dharm34008db2005-07-28 14:49:01 -0700274}
275
Adrian Bunk43c1e982008-04-28 18:39:37 +0300276static void onetouch_release_input(void *onetouch_)
Matthew Dharm34008db2005-07-28 14:49:01 -0700277{
278 struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_;
279
280 if (onetouch) {
281 usb_kill_urb(onetouch->irq);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500282 input_unregister_device(onetouch->dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700283 usb_free_urb(onetouch->irq);
Daniel Mack997ea582010-04-12 13:17:25 +0200284 usb_free_coherent(onetouch->udev, ONETOUCH_PKT_LEN,
285 onetouch->data, onetouch->data_dma);
Matthew Dharm34008db2005-07-28 14:49:01 -0700286 }
287}
Alan Stern9cfb95e2009-02-12 14:48:33 -0500288
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900289static struct scsi_host_template onetouch_host_template;
290
Alan Stern9cfb95e2009-02-12 14:48:33 -0500291static int onetouch_probe(struct usb_interface *intf,
292 const struct usb_device_id *id)
293{
294 struct us_data *us;
295 int result;
296
297 result = usb_stor_probe1(&us, intf, id,
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900298 (id - onetouch_usb_ids) + onetouch_unusual_dev_list,
299 &onetouch_host_template);
Alan Stern9cfb95e2009-02-12 14:48:33 -0500300 if (result)
301 return result;
302
303 /* Use default transport and protocol */
304
305 result = usb_stor_probe2(us);
306 return result;
307}
308
309static struct usb_driver onetouch_driver = {
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900310 .name = DRV_NAME,
Alan Stern9cfb95e2009-02-12 14:48:33 -0500311 .probe = onetouch_probe,
312 .disconnect = usb_stor_disconnect,
313 .suspend = usb_stor_suspend,
314 .resume = usb_stor_resume,
315 .reset_resume = usb_stor_reset_resume,
316 .pre_reset = usb_stor_pre_reset,
317 .post_reset = usb_stor_post_reset,
318 .id_table = onetouch_usb_ids,
319 .soft_unbind = 1,
Huajun Lie73b2db2012-01-14 10:15:21 +0800320 .no_dynamic_id = 1,
Alan Stern9cfb95e2009-02-12 14:48:33 -0500321};
322
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900323module_usb_stor_driver(onetouch_driver, onetouch_host_template, DRV_NAME);