blob: 79b2bf81a05908d6494206e7b9ca1674174bc064 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 1999-2001 Vojtech Pavlik
3 *
4 * USB HIDBP Mouse support
5 */
6
7/*
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050010 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * (at your option) any later version.
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Should you need to contact me, the author, you can do so either by
23 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
24 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
25 */
26
27#include <linux/kernel.h>
28#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/init.h>
David Brownellae0dadc2006-06-13 10:04:34 -070031#include <linux/usb/input.h>
Michael Opdenacker4ef2e232007-02-21 22:51:25 +010032#include <linux/hid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jiri Slaby8c19a512008-06-18 23:36:49 +020034/* for apple IDs */
35#ifdef CONFIG_USB_HID_MODULE
36#include "../hid-ids.h"
37#endif
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * Version Information
41 */
42#define DRIVER_VERSION "v1.6"
43#define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@ucw.cz>"
44#define DRIVER_DESC "USB HID Boot Protocol mouse driver"
45#define DRIVER_LICENSE "GPL"
46
47MODULE_AUTHOR(DRIVER_AUTHOR);
48MODULE_DESCRIPTION(DRIVER_DESC);
49MODULE_LICENSE(DRIVER_LICENSE);
50
51struct usb_mouse {
52 char name[128];
53 char phys[64];
54 struct usb_device *usbdev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -050055 struct input_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct urb *irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 signed char *data;
59 dma_addr_t data_dma;
60};
61
David Howells7d12e782006-10-05 14:55:46 +010062static void usb_mouse_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 struct usb_mouse *mouse = urb->context;
65 signed char *data = mouse->data;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -050066 struct input_dev *dev = mouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int status;
68
69 switch (urb->status) {
70 case 0: /* success */
71 break;
72 case -ECONNRESET: /* unlink */
73 case -ENOENT:
74 case -ESHUTDOWN:
75 return;
76 /* -EPIPE: should clear the halt */
77 default: /* error */
78 goto resubmit;
79 }
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 input_report_key(dev, BTN_LEFT, data[0] & 0x01);
82 input_report_key(dev, BTN_RIGHT, data[0] & 0x02);
83 input_report_key(dev, BTN_MIDDLE, data[0] & 0x04);
84 input_report_key(dev, BTN_SIDE, data[0] & 0x08);
85 input_report_key(dev, BTN_EXTRA, data[0] & 0x10);
86
87 input_report_rel(dev, REL_X, data[1]);
88 input_report_rel(dev, REL_Y, data[2]);
89 input_report_rel(dev, REL_WHEEL, data[3]);
90
91 input_sync(dev);
92resubmit:
Christoph Lameter54e6ecb2006-12-06 20:33:16 -080093 status = usb_submit_urb (urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (status)
95 err ("can't resubmit intr, %s-%s/input0, status %d",
96 mouse->usbdev->bus->bus_name,
97 mouse->usbdev->devpath, status);
98}
99
100static int usb_mouse_open(struct input_dev *dev)
101{
Dmitry Torokhove0712982007-05-09 10:17:31 +0200102 struct usb_mouse *mouse = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 mouse->irq->dev = mouse->usbdev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500105 if (usb_submit_urb(mouse->irq, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 return 0;
109}
110
111static void usb_mouse_close(struct input_dev *dev)
112{
Dmitry Torokhove0712982007-05-09 10:17:31 +0200113 struct usb_mouse *mouse = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500115 usb_kill_urb(mouse->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500118static int usb_mouse_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500120 struct usb_device *dev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 struct usb_host_interface *interface;
122 struct usb_endpoint_descriptor *endpoint;
123 struct usb_mouse *mouse;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500124 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 int pipe, maxp;
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200126 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 interface = intf->cur_altsetting;
129
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500130 if (interface->desc.bNumEndpoints != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return -ENODEV;
132
133 endpoint = &interface->endpoint[0].desc;
Luiz Fernando N. Capitulino30f36ef2006-10-26 13:03:00 -0300134 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return -ENODEV;
136
137 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
138 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
139
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500140 mouse = kzalloc(sizeof(struct usb_mouse), GFP_KERNEL);
141 input_dev = input_allocate_device();
142 if (!mouse || !input_dev)
143 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Daniel Mack997ea582010-04-12 13:17:25 +0200145 mouse->data = usb_alloc_coherent(dev, 8, GFP_ATOMIC, &mouse->data_dma);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500146 if (!mouse->data)
147 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 mouse->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500150 if (!mouse->irq)
151 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 mouse->usbdev = dev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500154 mouse->dev = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (dev->manufacturer)
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500157 strlcpy(mouse->name, dev->manufacturer, sizeof(mouse->name));
158
159 if (dev->product) {
160 if (dev->manufacturer)
161 strlcat(mouse->name, " ", sizeof(mouse->name));
162 strlcat(mouse->name, dev->product, sizeof(mouse->name));
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 if (!strlen(mouse->name))
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500166 snprintf(mouse->name, sizeof(mouse->name),
167 "USB HIDBP Mouse %04x:%04x",
168 le16_to_cpu(dev->descriptor.idVendor),
169 le16_to_cpu(dev->descriptor.idProduct));
170
171 usb_make_path(dev, mouse->phys, sizeof(mouse->phys));
172 strlcat(mouse->phys, "/input0", sizeof(mouse->phys));
173
174 input_dev->name = mouse->name;
175 input_dev->phys = mouse->phys;
176 usb_to_input_id(dev, &input_dev->id);
Dmitry Torokhove0712982007-05-09 10:17:31 +0200177 input_dev->dev.parent = &intf->dev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500178
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700179 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
180 input_dev->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_LEFT) |
181 BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_MIDDLE);
182 input_dev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
183 input_dev->keybit[BIT_WORD(BTN_MOUSE)] |= BIT_MASK(BTN_SIDE) |
184 BIT_MASK(BTN_EXTRA);
185 input_dev->relbit[0] |= BIT_MASK(REL_WHEEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500186
Dmitry Torokhove0712982007-05-09 10:17:31 +0200187 input_set_drvdata(input_dev, mouse);
188
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500189 input_dev->open = usb_mouse_open;
190 input_dev->close = usb_mouse_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 usb_fill_int_urb(mouse->irq, dev, pipe, mouse->data,
193 (maxp > 8 ? 8 : maxp),
194 usb_mouse_irq, mouse, endpoint->bInterval);
195 mouse->irq->transfer_dma = mouse->data_dma;
196 mouse->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
197
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200198 error = input_register_device(mouse->dev);
199 if (error)
200 goto fail3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 usb_set_intfdata(intf, mouse);
203 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500204
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200205fail3:
206 usb_free_urb(mouse->irq);
207fail2:
Daniel Mack997ea582010-04-12 13:17:25 +0200208 usb_free_coherent(dev, 8, mouse->data, mouse->data_dma);
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200209fail1:
210 input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500211 kfree(mouse);
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200212 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215static void usb_mouse_disconnect(struct usb_interface *intf)
216{
217 struct usb_mouse *mouse = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 usb_set_intfdata(intf, NULL);
220 if (mouse) {
221 usb_kill_urb(mouse->irq);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500222 input_unregister_device(mouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 usb_free_urb(mouse->irq);
Daniel Mack997ea582010-04-12 13:17:25 +0200224 usb_free_coherent(interface_to_usbdev(intf), 8, mouse->data, mouse->data_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 kfree(mouse);
226 }
227}
228
229static struct usb_device_id usb_mouse_id_table [] = {
Michael Opdenacker4ef2e232007-02-21 22:51:25 +0100230 { USB_INTERFACE_INFO(USB_INTERFACE_CLASS_HID, USB_INTERFACE_SUBCLASS_BOOT,
231 USB_INTERFACE_PROTOCOL_MOUSE) },
Reiner Herrmann14acdcd2006-09-06 02:37:21 +0200232 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
235MODULE_DEVICE_TABLE (usb, usb_mouse_id_table);
236
237static struct usb_driver usb_mouse_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .name = "usbmouse",
239 .probe = usb_mouse_probe,
240 .disconnect = usb_mouse_disconnect,
241 .id_table = usb_mouse_id_table,
242};
243
244static int __init usb_mouse_init(void)
245{
246 int retval = usb_register(&usb_mouse_driver);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500247 if (retval == 0)
Greg Kroah-Hartmanddbe3242008-10-12 00:14:23 +0200248 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
249 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return retval;
251}
252
253static void __exit usb_mouse_exit(void)
254{
255 usb_deregister(&usb_mouse_driver);
256}
257
258module_init(usb_mouse_init);
259module_exit(usb_mouse_exit);