blob: d35369392feda4b8939e5a47f91da758b95f2743 [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"
38#include "onetouch.h"
39#include "debug.h"
40
41void onetouch_release_input(void *onetouch_);
42
43struct usb_onetouch {
44 char name[128];
45 char phys[64];
Dmitry Torokhov88789672005-09-15 02:01:43 -050046 struct input_dev *dev; /* input device interface */
Matthew Dharm34008db2005-07-28 14:49:01 -070047 struct usb_device *udev; /* usb device */
48
49 struct urb *irq; /* urb for interrupt in report */
50 unsigned char *data; /* input data */
51 dma_addr_t data_dma;
Matthew Dharm7931e1c2005-12-04 21:56:51 -080052 unsigned int is_open:1;
Matthew Dharm34008db2005-07-28 14:49:01 -070053};
54
David Howells7d12e782006-10-05 14:55:46 +010055static void usb_onetouch_irq(struct urb *urb)
Matthew Dharm34008db2005-07-28 14:49:01 -070056{
57 struct usb_onetouch *onetouch = urb->context;
58 signed char *data = onetouch->data;
Dmitry Torokhov88789672005-09-15 02:01:43 -050059 struct input_dev *dev = onetouch->dev;
Matthew Dharm34008db2005-07-28 14:49:01 -070060 int status;
61
62 switch (urb->status) {
63 case 0: /* success */
64 break;
65 case -ECONNRESET: /* unlink */
66 case -ENOENT:
67 case -ESHUTDOWN:
68 return;
69 /* -EPIPE: should clear the halt */
70 default: /* error */
71 goto resubmit;
72 }
73
Dmitry Torokhov88789672005-09-15 02:01:43 -050074 input_report_key(dev, ONETOUCH_BUTTON, data[0] & 0x02);
Matthew Dharm34008db2005-07-28 14:49:01 -070075 input_sync(dev);
Dmitry Torokhov88789672005-09-15 02:01:43 -050076
Matthew Dharm34008db2005-07-28 14:49:01 -070077resubmit:
Christoph Lameter54e6ecb2006-12-06 20:33:16 -080078 status = usb_submit_urb (urb, GFP_ATOMIC);
Matthew Dharm34008db2005-07-28 14:49:01 -070079 if (status)
80 err ("can't resubmit intr, %s-%s/input0, status %d",
81 onetouch->udev->bus->bus_name,
82 onetouch->udev->devpath, status);
83}
84
85static int usb_onetouch_open(struct input_dev *dev)
86{
Dmitry Torokhov09b70022007-05-08 00:31:30 -040087 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -070088
Matthew Dharm7931e1c2005-12-04 21:56:51 -080089 onetouch->is_open = 1;
Matthew Dharm34008db2005-07-28 14:49:01 -070090 onetouch->irq->dev = onetouch->udev;
91 if (usb_submit_urb(onetouch->irq, GFP_KERNEL)) {
92 err("usb_submit_urb failed");
93 return -EIO;
94 }
95
96 return 0;
97}
98
99static void usb_onetouch_close(struct input_dev *dev)
100{
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400101 struct usb_onetouch *onetouch = input_get_drvdata(dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700102
103 usb_kill_urb(onetouch->irq);
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800104 onetouch->is_open = 0;
Matthew Dharm34008db2005-07-28 14:49:01 -0700105}
106
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800107#ifdef CONFIG_PM
108static void usb_onetouch_pm_hook(struct us_data *us, int action)
109{
110 struct usb_onetouch *onetouch = (struct usb_onetouch *) us->extra;
111
112 if (onetouch->is_open) {
113 switch (action) {
114 case US_SUSPEND:
115 usb_kill_urb(onetouch->irq);
116 break;
117 case US_RESUME:
118 if (usb_submit_urb(onetouch->irq, GFP_KERNEL) != 0)
119 err("usb_submit_urb failed");
120 break;
121 default:
122 break;
123 }
124 }
125}
126#endif /* CONFIG_PM */
127
Matthew Dharm34008db2005-07-28 14:49:01 -0700128int onetouch_connect_input(struct us_data *ss)
129{
130 struct usb_device *udev = ss->pusb_dev;
131 struct usb_host_interface *interface;
132 struct usb_endpoint_descriptor *endpoint;
133 struct usb_onetouch *onetouch;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500134 struct input_dev *input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700135 int pipe, maxp;
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400136 int error = -ENOMEM;
Matthew Dharm34008db2005-07-28 14:49:01 -0700137
138 interface = ss->pusb_intf->cur_altsetting;
139
Nick Sillikd6450e12005-08-17 13:37:34 -0400140 if (interface->desc.bNumEndpoints != 3)
Matthew Dharm34008db2005-07-28 14:49:01 -0700141 return -ENODEV;
Nick Sillikd6450e12005-08-17 13:37:34 -0400142
143 endpoint = &interface->endpoint[2].desc;
Luiz Fernando N. Capitulino66722a12006-10-26 13:02:55 -0300144 if (!usb_endpoint_is_int_in(endpoint))
Matthew Dharm34008db2005-07-28 14:49:01 -0700145 return -ENODEV;
146
147 pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);
148 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
149
Dmitry Torokhov88789672005-09-15 02:01:43 -0500150 onetouch = kzalloc(sizeof(struct usb_onetouch), GFP_KERNEL);
151 input_dev = input_allocate_device();
152 if (!onetouch || !input_dev)
153 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700154
Nick Sillikd6450e12005-08-17 13:37:34 -0400155 onetouch->data = usb_buffer_alloc(udev, ONETOUCH_PKT_LEN,
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800156 GFP_ATOMIC, &onetouch->data_dma);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500157 if (!onetouch->data)
158 goto fail1;
Matthew Dharm34008db2005-07-28 14:49:01 -0700159
160 onetouch->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500161 if (!onetouch->irq)
162 goto fail2;
Matthew Dharm34008db2005-07-28 14:49:01 -0700163
164 onetouch->udev = udev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500165 onetouch->dev = input_dev;
Matthew Dharm34008db2005-07-28 14:49:01 -0700166
167 if (udev->manufacturer)
Dmitry Torokhov88789672005-09-15 02:01:43 -0500168 strlcpy(onetouch->name, udev->manufacturer,
169 sizeof(onetouch->name));
170 if (udev->product) {
171 if (udev->manufacturer)
172 strlcat(onetouch->name, " ", sizeof(onetouch->name));
173 strlcat(onetouch->name, udev->product, sizeof(onetouch->name));
174 }
175
Matthew Dharm34008db2005-07-28 14:49:01 -0700176 if (!strlen(onetouch->name))
Dmitry Torokhov88789672005-09-15 02:01:43 -0500177 snprintf(onetouch->name, sizeof(onetouch->name),
178 "Maxtor Onetouch %04x:%04x",
179 le16_to_cpu(udev->descriptor.idVendor),
180 le16_to_cpu(udev->descriptor.idProduct));
181
182 usb_make_path(udev, onetouch->phys, sizeof(onetouch->phys));
183 strlcat(onetouch->phys, "/input0", sizeof(onetouch->phys));
184
185 input_dev->name = onetouch->name;
186 input_dev->phys = onetouch->phys;
187 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400188 input_dev->dev.parent = &udev->dev;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500189
190 set_bit(EV_KEY, input_dev->evbit);
191 set_bit(ONETOUCH_BUTTON, input_dev->keybit);
192 clear_bit(0, input_dev->keybit);
193
Dmitry Torokhov09b70022007-05-08 00:31:30 -0400194 input_set_drvdata(input_dev, onetouch);
195
Dmitry Torokhov88789672005-09-15 02:01:43 -0500196 input_dev->open = usb_onetouch_open;
197 input_dev->close = usb_onetouch_close;
Matthew Dharm34008db2005-07-28 14:49:01 -0700198
199 usb_fill_int_urb(onetouch->irq, udev, pipe, onetouch->data,
200 (maxp > 8 ? 8 : maxp),
201 usb_onetouch_irq, onetouch, endpoint->bInterval);
202 onetouch->irq->transfer_dma = onetouch->data_dma;
203 onetouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
204
205 ss->extra_destructor = onetouch_release_input;
206 ss->extra = onetouch;
Matthew Dharm7931e1c2005-12-04 21:56:51 -0800207#ifdef CONFIG_PM
208 ss->suspend_resume_hook = usb_onetouch_pm_hook;
209#endif
Matthew Dharm34008db2005-07-28 14:49:01 -0700210
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400211 error = input_register_device(onetouch->dev);
212 if (error)
213 goto fail3;
Matthew Dharm34008db2005-07-28 14:49:01 -0700214
215 return 0;
Dmitry Torokhov88789672005-09-15 02:01:43 -0500216
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400217 fail3: usb_free_urb(onetouch->irq);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500218 fail2: usb_buffer_free(udev, ONETOUCH_PKT_LEN,
219 onetouch->data, onetouch->data_dma);
220 fail1: kfree(onetouch);
221 input_free_device(input_dev);
Dmitry Torokhov17efe152006-08-01 22:45:28 -0400222 return error;
Matthew Dharm34008db2005-07-28 14:49:01 -0700223}
224
225void onetouch_release_input(void *onetouch_)
226{
227 struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_;
228
229 if (onetouch) {
230 usb_kill_urb(onetouch->irq);
Dmitry Torokhov88789672005-09-15 02:01:43 -0500231 input_unregister_device(onetouch->dev);
Matthew Dharm34008db2005-07-28 14:49:01 -0700232 usb_free_urb(onetouch->irq);
233 usb_buffer_free(onetouch->udev, ONETOUCH_PKT_LEN,
234 onetouch->data, onetouch->data_dma);
Matthew Dharm34008db2005-07-28 14:49:01 -0700235 }
236}