| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 8 | *	Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se> | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 9 | * | 
|  | 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 Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 31 | #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 Brownell | ae0dadc | 2006-06-13 10:04:34 -0700 | [diff] [blame] | 36 | #include <linux/usb/input.h> | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 37 | #include "usb.h" | 
|  | 38 | #include "onetouch.h" | 
|  | 39 | #include "debug.h" | 
|  | 40 |  | 
| Adrian Bunk | 43c1e98 | 2008-04-28 18:39:37 +0300 | [diff] [blame] | 41 | static void onetouch_release_input(void *onetouch_); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 42 |  | 
|  | 43 | struct usb_onetouch { | 
|  | 44 | char name[128]; | 
|  | 45 | char phys[64]; | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 46 | struct input_dev *dev;	/* input device interface */ | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 47 | 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 Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 52 | unsigned int is_open:1; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 53 | }; | 
|  | 54 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 55 | static void usb_onetouch_irq(struct urb *urb) | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 56 | { | 
|  | 57 | struct usb_onetouch *onetouch = urb->context; | 
|  | 58 | signed char *data = onetouch->data; | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 59 | struct input_dev *dev = onetouch->dev; | 
| Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 60 | int status = urb->status; | 
|  | 61 | int retval; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 62 |  | 
| Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 63 | switch (status) { | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 64 | case 0:			/* success */ | 
|  | 65 | break; | 
|  | 66 | case -ECONNRESET:	/* unlink */ | 
|  | 67 | case -ENOENT: | 
|  | 68 | case -ESHUTDOWN: | 
|  | 69 | return; | 
|  | 70 | /* -EPIPE:  should clear the halt */ | 
|  | 71 | default:		/* error */ | 
|  | 72 | goto resubmit; | 
|  | 73 | } | 
|  | 74 |  | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 75 | input_report_key(dev, ONETOUCH_BUTTON, data[0] & 0x02); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 76 | input_sync(dev); | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 77 |  | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 78 | resubmit: | 
| Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 79 | retval = usb_submit_urb (urb, GFP_ATOMIC); | 
|  | 80 | if (retval) | 
| Greg Kroah-Hartman | 802f389 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 81 | dev_err(&dev->dev, "can't resubmit intr, %s-%s/input0, " | 
|  | 82 | "retval %d\n", onetouch->udev->bus->bus_name, | 
| Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 83 | onetouch->udev->devpath, retval); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 84 | } | 
|  | 85 |  | 
|  | 86 | static int usb_onetouch_open(struct input_dev *dev) | 
|  | 87 | { | 
| Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 88 | struct usb_onetouch *onetouch = input_get_drvdata(dev); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 89 |  | 
| Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 90 | onetouch->is_open = 1; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 91 | onetouch->irq->dev = onetouch->udev; | 
|  | 92 | if (usb_submit_urb(onetouch->irq, GFP_KERNEL)) { | 
| Greg Kroah-Hartman | 802f389 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 93 | dev_err(&dev->dev, "usb_submit_urb failed\n"); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 94 | return -EIO; | 
|  | 95 | } | 
|  | 96 |  | 
|  | 97 | return 0; | 
|  | 98 | } | 
|  | 99 |  | 
|  | 100 | static void usb_onetouch_close(struct input_dev *dev) | 
|  | 101 | { | 
| Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 102 | struct usb_onetouch *onetouch = input_get_drvdata(dev); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 103 |  | 
|  | 104 | usb_kill_urb(onetouch->irq); | 
| Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 105 | onetouch->is_open = 0; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 106 | } | 
|  | 107 |  | 
| Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 108 | #ifdef CONFIG_PM | 
|  | 109 | static void usb_onetouch_pm_hook(struct us_data *us, int action) | 
|  | 110 | { | 
|  | 111 | struct usb_onetouch *onetouch = (struct usb_onetouch *) us->extra; | 
|  | 112 |  | 
|  | 113 | if (onetouch->is_open) { | 
|  | 114 | switch (action) { | 
|  | 115 | case US_SUSPEND: | 
|  | 116 | usb_kill_urb(onetouch->irq); | 
|  | 117 | break; | 
|  | 118 | case US_RESUME: | 
|  | 119 | if (usb_submit_urb(onetouch->irq, GFP_KERNEL) != 0) | 
| Greg Kroah-Hartman | 802f389 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 120 | dev_err(&onetouch->irq->dev->dev, | 
|  | 121 | "usb_submit_urb failed\n"); | 
| Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 122 | break; | 
|  | 123 | default: | 
|  | 124 | break; | 
|  | 125 | } | 
|  | 126 | } | 
|  | 127 | } | 
|  | 128 | #endif /* CONFIG_PM */ | 
|  | 129 |  | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 130 | int onetouch_connect_input(struct us_data *ss) | 
|  | 131 | { | 
|  | 132 | struct usb_device *udev = ss->pusb_dev; | 
|  | 133 | struct usb_host_interface *interface; | 
|  | 134 | struct usb_endpoint_descriptor *endpoint; | 
|  | 135 | struct usb_onetouch *onetouch; | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 136 | struct input_dev *input_dev; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 137 | int pipe, maxp; | 
| Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 138 | int error = -ENOMEM; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 139 |  | 
|  | 140 | interface = ss->pusb_intf->cur_altsetting; | 
|  | 141 |  | 
| Nick Sillik | d6450e1 | 2005-08-17 13:37:34 -0400 | [diff] [blame] | 142 | if (interface->desc.bNumEndpoints != 3) | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 143 | return -ENODEV; | 
| Nick Sillik | d6450e1 | 2005-08-17 13:37:34 -0400 | [diff] [blame] | 144 |  | 
|  | 145 | endpoint = &interface->endpoint[2].desc; | 
| Luiz Fernando N. Capitulino | 66722a1 | 2006-10-26 13:02:55 -0300 | [diff] [blame] | 146 | if (!usb_endpoint_is_int_in(endpoint)) | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 147 | return -ENODEV; | 
|  | 148 |  | 
|  | 149 | pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress); | 
|  | 150 | maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe)); | 
|  | 151 |  | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 152 | onetouch = kzalloc(sizeof(struct usb_onetouch), GFP_KERNEL); | 
|  | 153 | input_dev = input_allocate_device(); | 
|  | 154 | if (!onetouch || !input_dev) | 
|  | 155 | goto fail1; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 156 |  | 
| Nick Sillik | d6450e1 | 2005-08-17 13:37:34 -0400 | [diff] [blame] | 157 | onetouch->data = usb_buffer_alloc(udev, ONETOUCH_PKT_LEN, | 
| Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 158 | GFP_ATOMIC, &onetouch->data_dma); | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 159 | if (!onetouch->data) | 
|  | 160 | goto fail1; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 161 |  | 
|  | 162 | onetouch->irq = usb_alloc_urb(0, GFP_KERNEL); | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 163 | if (!onetouch->irq) | 
|  | 164 | goto fail2; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 165 |  | 
|  | 166 | onetouch->udev = udev; | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 167 | onetouch->dev = input_dev; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 168 |  | 
|  | 169 | if (udev->manufacturer) | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 170 | strlcpy(onetouch->name, udev->manufacturer, | 
|  | 171 | sizeof(onetouch->name)); | 
|  | 172 | if (udev->product) { | 
|  | 173 | if (udev->manufacturer) | 
|  | 174 | strlcat(onetouch->name, " ", sizeof(onetouch->name)); | 
|  | 175 | strlcat(onetouch->name, udev->product, sizeof(onetouch->name)); | 
|  | 176 | } | 
|  | 177 |  | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 178 | if (!strlen(onetouch->name)) | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 179 | snprintf(onetouch->name, sizeof(onetouch->name), | 
|  | 180 | "Maxtor Onetouch %04x:%04x", | 
|  | 181 | le16_to_cpu(udev->descriptor.idVendor), | 
|  | 182 | le16_to_cpu(udev->descriptor.idProduct)); | 
|  | 183 |  | 
|  | 184 | usb_make_path(udev, onetouch->phys, sizeof(onetouch->phys)); | 
|  | 185 | strlcat(onetouch->phys, "/input0", sizeof(onetouch->phys)); | 
|  | 186 |  | 
|  | 187 | input_dev->name = onetouch->name; | 
|  | 188 | input_dev->phys = onetouch->phys; | 
|  | 189 | usb_to_input_id(udev, &input_dev->id); | 
| Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 190 | input_dev->dev.parent = &udev->dev; | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 191 |  | 
|  | 192 | set_bit(EV_KEY, input_dev->evbit); | 
|  | 193 | set_bit(ONETOUCH_BUTTON, input_dev->keybit); | 
|  | 194 | clear_bit(0, input_dev->keybit); | 
|  | 195 |  | 
| Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 196 | input_set_drvdata(input_dev, onetouch); | 
|  | 197 |  | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 198 | input_dev->open = usb_onetouch_open; | 
|  | 199 | input_dev->close = usb_onetouch_close; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 200 |  | 
|  | 201 | usb_fill_int_urb(onetouch->irq, udev, pipe, onetouch->data, | 
|  | 202 | (maxp > 8 ? 8 : maxp), | 
|  | 203 | usb_onetouch_irq, onetouch, endpoint->bInterval); | 
|  | 204 | onetouch->irq->transfer_dma = onetouch->data_dma; | 
|  | 205 | onetouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | 
|  | 206 |  | 
|  | 207 | ss->extra_destructor = onetouch_release_input; | 
|  | 208 | ss->extra = onetouch; | 
| Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 209 | #ifdef CONFIG_PM | 
|  | 210 | ss->suspend_resume_hook = usb_onetouch_pm_hook; | 
|  | 211 | #endif | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 212 |  | 
| Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 213 | error = input_register_device(onetouch->dev); | 
|  | 214 | if (error) | 
|  | 215 | goto fail3; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 216 |  | 
|  | 217 | return 0; | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 218 |  | 
| Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 219 | fail3:	usb_free_urb(onetouch->irq); | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 220 | fail2:	usb_buffer_free(udev, ONETOUCH_PKT_LEN, | 
|  | 221 | onetouch->data, onetouch->data_dma); | 
|  | 222 | fail1:	kfree(onetouch); | 
|  | 223 | input_free_device(input_dev); | 
| Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 224 | return error; | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 225 | } | 
|  | 226 |  | 
| Adrian Bunk | 43c1e98 | 2008-04-28 18:39:37 +0300 | [diff] [blame] | 227 | static void onetouch_release_input(void *onetouch_) | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 228 | { | 
|  | 229 | struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_; | 
|  | 230 |  | 
|  | 231 | if (onetouch) { | 
|  | 232 | usb_kill_urb(onetouch->irq); | 
| Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 233 | input_unregister_device(onetouch->dev); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 234 | usb_free_urb(onetouch->irq); | 
|  | 235 | usb_buffer_free(onetouch->udev, ONETOUCH_PKT_LEN, | 
|  | 236 | onetouch->data, onetouch->data_dma); | 
| Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 237 | } | 
|  | 238 | } |