blob: 39a5009a41a6b5b05fdb549083b8be0fae628a4c [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Matthew Dharm34008db2005-07-28 14:49:01 -07002/*
3 * Support for the Maxtor OneTouch USB hard drive's button
4 *
5 * Current development and maintenance by:
6 * Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu>
7 *
8 * Initial work by:
Dmitry Torokhov88789672005-09-15 02:01:43 -05009 * Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se>
Matthew Dharm34008db2005-07-28 14:49:01 -070010 *
11 * Based on usbmouse.c (Vojtech Pavlik) and xpad.c (Marko Friedemann)
12 *
13 */
Matthew Dharm34008db2005-07-28 14:49:01 -070014#include <linux/kernel.h>
15#include <linux/input.h>
Matthew Dharm34008db2005-07-28 14:49:01 -070016#include <linux/slab.h>
17#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070018#include <linux/usb/input.h>
Matthew Dharm34008db2005-07-28 14:49:01 -070019#include "usb.h"
Matthew Dharm34008db2005-07-28 14:49:01 -070020#include "debug.h"
Akinobu Mitaaa519be2015-05-06 18:24:21 +090021#include "scsiglue.h"
22
23#define DRV_NAME "ums-onetouch"
Matthew Dharm34008db2005-07-28 14:49:01 -070024
Maciej Grela4246b062009-02-28 12:39:20 -080025MODULE_DESCRIPTION("Maxtor USB OneTouch hard drive button driver");
26MODULE_AUTHOR("Nick Sillik <n.sillik@temple.edu>");
27MODULE_LICENSE("GPL");
28
Alan Stern9cfb95e2009-02-12 14:48:33 -050029#define ONETOUCH_PKT_LEN 0x02
30#define ONETOUCH_BUTTON KEY_PROG1
31
32static int onetouch_connect_input(struct us_data *ss);
Adrian Bunk43c1e982008-04-28 18:39:37 +030033static void onetouch_release_input(void *onetouch_);
Matthew Dharm34008db2005-07-28 14:49:01 -070034
35struct usb_onetouch {
36 char name[128];
37 char phys[64];
Dmitry Torokhov88789672005-09-15 02:01:43 -050038 struct input_dev *dev; /* input device interface */
Matthew Dharm34008db2005-07-28 14:49:01 -070039 struct usb_device *udev; /* usb device */
40
41 struct urb *irq; /* urb for interrupt in report */
42 unsigned char *data; /* input data */
43 dma_addr_t data_dma;
Matthew Dharm7931e1c2005-12-04 21:56:51 -080044 unsigned int is_open:1;
Matthew Dharm34008db2005-07-28 14:49:01 -070045};
46
Alan Stern9cfb95e2009-02-12 14:48:33 -050047
48/*
49 * The table of devices
50 */
51#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
52 vendorName, productName, useProtocol, useTransport, \
53 initFunction, flags) \
54{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
Sebastian Andrzej Siewiorf61870e2012-08-28 22:37:13 +020055 .driver_info = (flags) }
Alan Stern9cfb95e2009-02-12 14:48:33 -050056
Felipe Balbie2c83f02011-11-15 09:53:36 +020057static struct usb_device_id onetouch_usb_ids[] = {
Alan Stern9cfb95e2009-02-12 14:48:33 -050058# include "unusual_onetouch.h"
59 { } /* Terminating entry */
60};
61MODULE_DEVICE_TABLE(usb, onetouch_usb_ids);
62
63#undef UNUSUAL_DEV
64
65/*
66 * The flags table
67 */
68#define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
69 vendor_name, product_name, use_protocol, use_transport, \
70 init_function, Flags) \
71{ \
72 .vendorName = vendor_name, \
73 .productName = product_name, \
74 .useProtocol = use_protocol, \
75 .useTransport = use_transport, \
76 .initFunction = init_function, \
77}
78
79static struct us_unusual_dev onetouch_unusual_dev_list[] = {
80# include "unusual_onetouch.h"
81 { } /* Terminating entry */
82};
83
84#undef UNUSUAL_DEV
85
86
David Howells7d12e782006-10-05 14:55:46 +010087static void usb_onetouch_irq(struct urb *urb)
Matthew Dharm34008db2005-07-28 14:49:01 -070088{
89 struct usb_onetouch *onetouch = urb->context;
90 signed char *data = onetouch->data;
Dmitry Torokhov88789672005-09-15 02:01:43 -050091 struct input_dev *dev = onetouch->dev;
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -070092 int status = urb->status;
93 int retval;
Matthew Dharm34008db2005-07-28 14:49:01 -070094
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -070095 switch (status) {
Matthew Dharm34008db2005-07-28 14:49:01 -070096 case 0: /* success */
97 break;
98 case -ECONNRESET: /* unlink */
99 case -ENOENT:
100 case -ESHUTDOWN:
101 return;
102 /* -EPIPE: should clear the halt */
103 default: /* error */
104 goto resubmit;
105 }
106
Dmitry Torokhov88789672005-09-15 02:01:43 -0500107 input_report_key(dev, ONETOUCH_BUTTON, data[0] & 0x02);
Matthew Dharm34008db2005-07-28 14:49:01 -0700108 input_sync(dev);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500109
Matthew Dharm34008db2005-07-28 14:49:01 -0700110resubmit:
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700111 retval = usb_submit_urb (urb, GFP_ATOMIC);
112 if (retval)
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700113 dev_err(&dev->dev, "can't resubmit intr, %s-%s/input0, "
114 "retval %d\n", onetouch->udev->bus->bus_name,
Greg Kroah-Hartman62e5a332007-07-18 10:58:02 -0700115 onetouch->udev->devpath, retval);
Matthew Dharm34008db2005-07-28 14:49:01 -0700116}
117
118static int usb_onetouch_open(struct input_dev *dev)
119{
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400120 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700121
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800122 onetouch->is_open = 1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700123 onetouch->irq->dev = onetouch->udev;
124 if (usb_submit_urb(onetouch->irq, GFP_KERNEL)) {
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700125 dev_err(&dev->dev, "usb_submit_urb failed\n");
Matthew Dharm34008db2005-07-28 14:49:01 -0700126 return -EIO;
127 }
128
129 return 0;
130}
131
132static void usb_onetouch_close(struct input_dev *dev)
133{
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400134 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700135
136 usb_kill_urb(onetouch->irq);
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800137 onetouch->is_open = 0;
Matthew Dharm34008db2005-07-28 14:49:01 -0700138}
139
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800140#ifdef CONFIG_PM
141static void usb_onetouch_pm_hook(struct us_data *us, int action)
142{
143 struct usb_onetouch *onetouch = (struct usb_onetouch *) us->extra;
144
145 if (onetouch->is_open) {
146 switch (action) {
147 case US_SUSPEND:
148 usb_kill_urb(onetouch->irq);
149 break;
150 case US_RESUME:
Oliver Neukume5dc8ae2009-08-26 19:56:12 +0200151 if (usb_submit_urb(onetouch->irq, GFP_NOIO) != 0)
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700152 dev_err(&onetouch->irq->dev->dev,
153 "usb_submit_urb failed\n");
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800154 break;
155 default:
156 break;
157 }
158 }
159}
160#endif /* CONFIG_PM */
161
Alan Stern9cfb95e2009-02-12 14:48:33 -0500162static int onetouch_connect_input(struct us_data *ss)
Matthew Dharm34008db2005-07-28 14:49:01 -0700163{
164 struct usb_device *udev = ss->pusb_dev;
165 struct usb_host_interface *interface;
166 struct usb_endpoint_descriptor *endpoint;
167 struct usb_onetouch *onetouch;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500168 struct input_dev *input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700169 int pipe, maxp;
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400170 int error = -ENOMEM;
Matthew Dharm34008db2005-07-28 14:49:01 -0700171
172 interface = ss->pusb_intf->cur_altsetting;
173
Nick Sillikd6450e12005-08-17 13:37:34 -0400174 if (interface->desc.bNumEndpoints != 3)
Matthew Dharm34008db2005-07-28 14:49:01 -0700175 return -ENODEV;
Nick Sillikd6450e12005-08-17 13:37:34 -0400176
177 endpoint = &interface->endpoint[2].desc;
Luiz Fernando N. Capitulino66722a12006-10-26 13:02:55 -0300178 if (!usb_endpoint_is_int_in(endpoint))
Matthew Dharm34008db2005-07-28 14:49:01 -0700179 return -ENODEV;
180
181 pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);
182 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
Dan Carpenterbba90ae2013-03-01 08:14:19 +0300183 maxp = min(maxp, ONETOUCH_PKT_LEN);
Matthew Dharm34008db2005-07-28 14:49:01 -0700184
Dmitry Torokhov88789672005-09-15 02:01:43 -0500185 onetouch = kzalloc(sizeof(struct usb_onetouch), GFP_KERNEL);
186 input_dev = input_allocate_device();
187 if (!onetouch || !input_dev)
188 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700189
Daniel Mack997ea582010-04-12 13:17:25 +0200190 onetouch->data = usb_alloc_coherent(udev, ONETOUCH_PKT_LEN,
191 GFP_KERNEL, &onetouch->data_dma);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500192 if (!onetouch->data)
193 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700194
195 onetouch->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500196 if (!onetouch->irq)
197 goto fail2;
Matthew Dharm34008db2005-07-28 14:49:01 -0700198
199 onetouch->udev = udev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500200 onetouch->dev = input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700201
202 if (udev->manufacturer)
Dmitry Torokhov88789672005-09-15 02:01:43 -0500203 strlcpy(onetouch->name, udev->manufacturer,
204 sizeof(onetouch->name));
205 if (udev->product) {
206 if (udev->manufacturer)
207 strlcat(onetouch->name, " ", sizeof(onetouch->name));
208 strlcat(onetouch->name, udev->product, sizeof(onetouch->name));
209 }
210
Matthew Dharm34008db2005-07-28 14:49:01 -0700211 if (!strlen(onetouch->name))
Dmitry Torokhov88789672005-09-15 02:01:43 -0500212 snprintf(onetouch->name, sizeof(onetouch->name),
213 "Maxtor Onetouch %04x:%04x",
214 le16_to_cpu(udev->descriptor.idVendor),
215 le16_to_cpu(udev->descriptor.idProduct));
216
217 usb_make_path(udev, onetouch->phys, sizeof(onetouch->phys));
218 strlcat(onetouch->phys, "/input0", sizeof(onetouch->phys));
219
220 input_dev->name = onetouch->name;
221 input_dev->phys = onetouch->phys;
222 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400223 input_dev->dev.parent = &udev->dev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500224
225 set_bit(EV_KEY, input_dev->evbit);
226 set_bit(ONETOUCH_BUTTON, input_dev->keybit);
227 clear_bit(0, input_dev->keybit);
228
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400229 input_set_drvdata(input_dev, onetouch);
230
Dmitry Torokhov88789672005-09-15 02:01:43 -0500231 input_dev->open = usb_onetouch_open;
232 input_dev->close = usb_onetouch_close;
Matthew Dharm34008db2005-07-28 14:49:01 -0700233
Dan Carpenterbba90ae2013-03-01 08:14:19 +0300234 usb_fill_int_urb(onetouch->irq, udev, pipe, onetouch->data, maxp,
Matthew Dharm34008db2005-07-28 14:49:01 -0700235 usb_onetouch_irq, onetouch, endpoint->bInterval);
236 onetouch->irq->transfer_dma = onetouch->data_dma;
237 onetouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
238
239 ss->extra_destructor = onetouch_release_input;
240 ss->extra = onetouch;
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800241#ifdef CONFIG_PM
242 ss->suspend_resume_hook = usb_onetouch_pm_hook;
243#endif
Matthew Dharm34008db2005-07-28 14:49:01 -0700244
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400245 error = input_register_device(onetouch->dev);
246 if (error)
247 goto fail3;
Matthew Dharm34008db2005-07-28 14:49:01 -0700248
249 return 0;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500250
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400251 fail3: usb_free_urb(onetouch->irq);
Daniel Mack997ea582010-04-12 13:17:25 +0200252 fail2: usb_free_coherent(udev, ONETOUCH_PKT_LEN,
253 onetouch->data, onetouch->data_dma);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500254 fail1: kfree(onetouch);
255 input_free_device(input_dev);
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400256 return error;
Matthew Dharm34008db2005-07-28 14:49:01 -0700257}
258
Adrian Bunk43c1e982008-04-28 18:39:37 +0300259static void onetouch_release_input(void *onetouch_)
Matthew Dharm34008db2005-07-28 14:49:01 -0700260{
261 struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_;
262
263 if (onetouch) {
264 usb_kill_urb(onetouch->irq);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500265 input_unregister_device(onetouch->dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700266 usb_free_urb(onetouch->irq);
Daniel Mack997ea582010-04-12 13:17:25 +0200267 usb_free_coherent(onetouch->udev, ONETOUCH_PKT_LEN,
268 onetouch->data, onetouch->data_dma);
Matthew Dharm34008db2005-07-28 14:49:01 -0700269 }
270}
Alan Stern9cfb95e2009-02-12 14:48:33 -0500271
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900272static struct scsi_host_template onetouch_host_template;
273
Alan Stern9cfb95e2009-02-12 14:48:33 -0500274static int onetouch_probe(struct usb_interface *intf,
275 const struct usb_device_id *id)
276{
277 struct us_data *us;
278 int result;
279
280 result = usb_stor_probe1(&us, intf, id,
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900281 (id - onetouch_usb_ids) + onetouch_unusual_dev_list,
282 &onetouch_host_template);
Alan Stern9cfb95e2009-02-12 14:48:33 -0500283 if (result)
284 return result;
285
286 /* Use default transport and protocol */
287
288 result = usb_stor_probe2(us);
289 return result;
290}
291
292static struct usb_driver onetouch_driver = {
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900293 .name = DRV_NAME,
Alan Stern9cfb95e2009-02-12 14:48:33 -0500294 .probe = onetouch_probe,
295 .disconnect = usb_stor_disconnect,
296 .suspend = usb_stor_suspend,
297 .resume = usb_stor_resume,
298 .reset_resume = usb_stor_reset_resume,
299 .pre_reset = usb_stor_pre_reset,
300 .post_reset = usb_stor_post_reset,
301 .id_table = onetouch_usb_ids,
302 .soft_unbind = 1,
Huajun Lie73b2db2012-01-14 10:15:21 +0800303 .no_dynamic_id = 1,
Alan Stern9cfb95e2009-02-12 14:48:33 -0500304};
305
Akinobu Mitaaa519be2015-05-06 18:24:21 +0900306module_usb_stor_driver(onetouch_driver, onetouch_host_template, DRV_NAME);