2 * Support for the Maxtor OneTouch USB hard drive's button
4 * Current development and maintenance by:
5 * Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu>
8 * Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se>
10 * Based on usbmouse.c (Vojtech Pavlik) and xpad.c (Marko Friedemann)
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.
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.
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
31 #include <linux/kernel.h>
32 #include <linux/input.h>
33 #include <linux/slab.h>
34 #include <linux/module.h>
35 #include <linux/usb/input.h>
40 #define DRV_NAME "ums-onetouch"
42 MODULE_DESCRIPTION("Maxtor USB OneTouch hard drive button driver");
43 MODULE_AUTHOR("Nick Sillik <n.sillik@temple.edu>");
44 MODULE_LICENSE("GPL");
46 #define ONETOUCH_PKT_LEN 0x02
47 #define ONETOUCH_BUTTON KEY_PROG1
49 static int onetouch_connect_input(struct us_data
*ss
);
50 static void onetouch_release_input(void *onetouch_
);
55 struct input_dev
*dev
; /* input device interface */
56 struct usb_device
*udev
; /* usb device */
58 struct urb
*irq
; /* urb for interrupt in report */
59 unsigned char *data
; /* input data */
61 unsigned int is_open
:1;
66 * The table of devices
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), \
72 .driver_info = (flags) }
74 static struct usb_device_id onetouch_usb_ids
[] = {
75 # include "unusual_onetouch.h"
76 { } /* Terminating entry */
78 MODULE_DEVICE_TABLE(usb
, onetouch_usb_ids
);
85 #define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
86 vendor_name, product_name, use_protocol, use_transport, \
87 init_function, Flags) \
89 .vendorName = vendor_name, \
90 .productName = product_name, \
91 .useProtocol = use_protocol, \
92 .useTransport = use_transport, \
93 .initFunction = init_function, \
96 static struct us_unusual_dev onetouch_unusual_dev_list
[] = {
97 # include "unusual_onetouch.h"
98 { } /* Terminating entry */
104 static void usb_onetouch_irq(struct urb
*urb
)
106 struct usb_onetouch
*onetouch
= urb
->context
;
107 signed char *data
= onetouch
->data
;
108 struct input_dev
*dev
= onetouch
->dev
;
109 int status
= urb
->status
;
113 case 0: /* success */
115 case -ECONNRESET
: /* unlink */
119 /* -EPIPE: should clear the halt */
124 input_report_key(dev
, ONETOUCH_BUTTON
, data
[0] & 0x02);
128 retval
= usb_submit_urb (urb
, GFP_ATOMIC
);
130 dev_err(&dev
->dev
, "can't resubmit intr, %s-%s/input0, "
131 "retval %d\n", onetouch
->udev
->bus
->bus_name
,
132 onetouch
->udev
->devpath
, retval
);
135 static int usb_onetouch_open(struct input_dev
*dev
)
137 struct usb_onetouch
*onetouch
= input_get_drvdata(dev
);
139 onetouch
->is_open
= 1;
140 onetouch
->irq
->dev
= onetouch
->udev
;
141 if (usb_submit_urb(onetouch
->irq
, GFP_KERNEL
)) {
142 dev_err(&dev
->dev
, "usb_submit_urb failed\n");
149 static void usb_onetouch_close(struct input_dev
*dev
)
151 struct usb_onetouch
*onetouch
= input_get_drvdata(dev
);
153 usb_kill_urb(onetouch
->irq
);
154 onetouch
->is_open
= 0;
158 static void usb_onetouch_pm_hook(struct us_data
*us
, int action
)
160 struct usb_onetouch
*onetouch
= (struct usb_onetouch
*) us
->extra
;
162 if (onetouch
->is_open
) {
165 usb_kill_urb(onetouch
->irq
);
168 if (usb_submit_urb(onetouch
->irq
, GFP_NOIO
) != 0)
169 dev_err(&onetouch
->irq
->dev
->dev
,
170 "usb_submit_urb failed\n");
177 #endif /* CONFIG_PM */
179 static int onetouch_connect_input(struct us_data
*ss
)
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
;
185 struct input_dev
*input_dev
;
189 interface
= ss
->pusb_intf
->cur_altsetting
;
191 if (interface
->desc
.bNumEndpoints
!= 3)
194 endpoint
= &interface
->endpoint
[2].desc
;
195 if (!usb_endpoint_is_int_in(endpoint
))
198 pipe
= usb_rcvintpipe(udev
, endpoint
->bEndpointAddress
);
199 maxp
= usb_maxpacket(udev
, pipe
, usb_pipeout(pipe
));
200 maxp
= min(maxp
, ONETOUCH_PKT_LEN
);
202 onetouch
= kzalloc(sizeof(struct usb_onetouch
), GFP_KERNEL
);
203 input_dev
= input_allocate_device();
204 if (!onetouch
|| !input_dev
)
207 onetouch
->data
= usb_alloc_coherent(udev
, ONETOUCH_PKT_LEN
,
208 GFP_KERNEL
, &onetouch
->data_dma
);
212 onetouch
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
216 onetouch
->udev
= udev
;
217 onetouch
->dev
= input_dev
;
219 if (udev
->manufacturer
)
220 strlcpy(onetouch
->name
, udev
->manufacturer
,
221 sizeof(onetouch
->name
));
223 if (udev
->manufacturer
)
224 strlcat(onetouch
->name
, " ", sizeof(onetouch
->name
));
225 strlcat(onetouch
->name
, udev
->product
, sizeof(onetouch
->name
));
228 if (!strlen(onetouch
->name
))
229 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
));
234 usb_make_path(udev
, onetouch
->phys
, sizeof(onetouch
->phys
));
235 strlcat(onetouch
->phys
, "/input0", sizeof(onetouch
->phys
));
237 input_dev
->name
= onetouch
->name
;
238 input_dev
->phys
= onetouch
->phys
;
239 usb_to_input_id(udev
, &input_dev
->id
);
240 input_dev
->dev
.parent
= &udev
->dev
;
242 set_bit(EV_KEY
, input_dev
->evbit
);
243 set_bit(ONETOUCH_BUTTON
, input_dev
->keybit
);
244 clear_bit(0, input_dev
->keybit
);
246 input_set_drvdata(input_dev
, onetouch
);
248 input_dev
->open
= usb_onetouch_open
;
249 input_dev
->close
= usb_onetouch_close
;
251 usb_fill_int_urb(onetouch
->irq
, udev
, pipe
, onetouch
->data
, maxp
,
252 usb_onetouch_irq
, onetouch
, endpoint
->bInterval
);
253 onetouch
->irq
->transfer_dma
= onetouch
->data_dma
;
254 onetouch
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
256 ss
->extra_destructor
= onetouch_release_input
;
257 ss
->extra
= onetouch
;
259 ss
->suspend_resume_hook
= usb_onetouch_pm_hook
;
262 error
= input_register_device(onetouch
->dev
);
268 fail3
: usb_free_urb(onetouch
->irq
);
269 fail2
: usb_free_coherent(udev
, ONETOUCH_PKT_LEN
,
270 onetouch
->data
, onetouch
->data_dma
);
271 fail1
: kfree(onetouch
);
272 input_free_device(input_dev
);
276 static void onetouch_release_input(void *onetouch_
)
278 struct usb_onetouch
*onetouch
= (struct usb_onetouch
*) onetouch_
;
281 usb_kill_urb(onetouch
->irq
);
282 input_unregister_device(onetouch
->dev
);
283 usb_free_urb(onetouch
->irq
);
284 usb_free_coherent(onetouch
->udev
, ONETOUCH_PKT_LEN
,
285 onetouch
->data
, onetouch
->data_dma
);
289 static struct scsi_host_template onetouch_host_template
;
291 static int onetouch_probe(struct usb_interface
*intf
,
292 const struct usb_device_id
*id
)
297 result
= usb_stor_probe1(&us
, intf
, id
,
298 (id
- onetouch_usb_ids
) + onetouch_unusual_dev_list
,
299 &onetouch_host_template
);
303 /* Use default transport and protocol */
305 result
= usb_stor_probe2(us
);
309 static struct usb_driver onetouch_driver
= {
311 .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
,
323 module_usb_stor_driver(onetouch_driver
, onetouch_host_template
, DRV_NAME
);