blob: 5345c73bcf622a2918df1982ba24749e2dfd0c68 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * $Id: usbmouse.c,v 1.15 2001/12/27 10:37:41 vojtech Exp $
3 *
4 * Copyright (c) 1999-2001 Vojtech Pavlik
5 *
6 * USB HIDBP Mouse support
7 */
8
9/*
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050012 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * (at your option) any later version.
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050019 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * Should you need to contact me, the author, you can do so either by
25 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
26 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
27 */
28
29#include <linux/kernel.h>
30#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
32#include <linux/init.h>
David Brownellae0dadc2006-06-13 10:04:34 -070033#include <linux/usb/input.h>
Michael Opdenacker4ef2e232007-02-21 22:51:25 +010034#include <linux/hid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
37 * Version Information
38 */
39#define DRIVER_VERSION "v1.6"
40#define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@ucw.cz>"
41#define DRIVER_DESC "USB HID Boot Protocol mouse driver"
42#define DRIVER_LICENSE "GPL"
43
44MODULE_AUTHOR(DRIVER_AUTHOR);
45MODULE_DESCRIPTION(DRIVER_DESC);
46MODULE_LICENSE(DRIVER_LICENSE);
47
48struct usb_mouse {
49 char name[128];
50 char phys[64];
51 struct usb_device *usbdev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -050052 struct input_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct urb *irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 signed char *data;
56 dma_addr_t data_dma;
57};
58
David Howells7d12e782006-10-05 14:55:46 +010059static void usb_mouse_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 struct usb_mouse *mouse = urb->context;
62 signed char *data = mouse->data;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -050063 struct input_dev *dev = mouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 int status;
65
66 switch (urb->status) {
67 case 0: /* success */
68 break;
69 case -ECONNRESET: /* unlink */
70 case -ENOENT:
71 case -ESHUTDOWN:
72 return;
73 /* -EPIPE: should clear the halt */
74 default: /* error */
75 goto resubmit;
76 }
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 input_report_key(dev, BTN_LEFT, data[0] & 0x01);
79 input_report_key(dev, BTN_RIGHT, data[0] & 0x02);
80 input_report_key(dev, BTN_MIDDLE, data[0] & 0x04);
81 input_report_key(dev, BTN_SIDE, data[0] & 0x08);
82 input_report_key(dev, BTN_EXTRA, data[0] & 0x10);
83
84 input_report_rel(dev, REL_X, data[1]);
85 input_report_rel(dev, REL_Y, data[2]);
86 input_report_rel(dev, REL_WHEEL, data[3]);
87
88 input_sync(dev);
89resubmit:
Christoph Lameter54e6ecb2006-12-06 20:33:16 -080090 status = usb_submit_urb (urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (status)
92 err ("can't resubmit intr, %s-%s/input0, status %d",
93 mouse->usbdev->bus->bus_name,
94 mouse->usbdev->devpath, status);
95}
96
97static int usb_mouse_open(struct input_dev *dev)
98{
Dmitry Torokhove0712982007-05-09 10:17:31 +020099 struct usb_mouse *mouse = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 mouse->irq->dev = mouse->usbdev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500102 if (usb_submit_urb(mouse->irq, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 return 0;
106}
107
108static void usb_mouse_close(struct input_dev *dev)
109{
Dmitry Torokhove0712982007-05-09 10:17:31 +0200110 struct usb_mouse *mouse = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500112 usb_kill_urb(mouse->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500115static int usb_mouse_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500117 struct usb_device *dev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct usb_host_interface *interface;
119 struct usb_endpoint_descriptor *endpoint;
120 struct usb_mouse *mouse;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500121 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 int pipe, maxp;
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200123 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 interface = intf->cur_altsetting;
126
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500127 if (interface->desc.bNumEndpoints != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return -ENODEV;
129
130 endpoint = &interface->endpoint[0].desc;
Luiz Fernando N. Capitulino30f36ef2006-10-26 13:03:00 -0300131 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return -ENODEV;
133
134 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
135 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
136
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500137 mouse = kzalloc(sizeof(struct usb_mouse), GFP_KERNEL);
138 input_dev = input_allocate_device();
139 if (!mouse || !input_dev)
140 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800142 mouse->data = usb_buffer_alloc(dev, 8, GFP_ATOMIC, &mouse->data_dma);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500143 if (!mouse->data)
144 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 mouse->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500147 if (!mouse->irq)
148 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 mouse->usbdev = dev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500151 mouse->dev = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 if (dev->manufacturer)
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500154 strlcpy(mouse->name, dev->manufacturer, sizeof(mouse->name));
155
156 if (dev->product) {
157 if (dev->manufacturer)
158 strlcat(mouse->name, " ", sizeof(mouse->name));
159 strlcat(mouse->name, dev->product, sizeof(mouse->name));
160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if (!strlen(mouse->name))
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500163 snprintf(mouse->name, sizeof(mouse->name),
164 "USB HIDBP Mouse %04x:%04x",
165 le16_to_cpu(dev->descriptor.idVendor),
166 le16_to_cpu(dev->descriptor.idProduct));
167
168 usb_make_path(dev, mouse->phys, sizeof(mouse->phys));
169 strlcat(mouse->phys, "/input0", sizeof(mouse->phys));
170
171 input_dev->name = mouse->name;
172 input_dev->phys = mouse->phys;
173 usb_to_input_id(dev, &input_dev->id);
Dmitry Torokhove0712982007-05-09 10:17:31 +0200174 input_dev->dev.parent = &intf->dev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500175
176 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REL);
177 input_dev->keybit[LONG(BTN_MOUSE)] = BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE);
178 input_dev->relbit[0] = BIT(REL_X) | BIT(REL_Y);
179 input_dev->keybit[LONG(BTN_MOUSE)] |= BIT(BTN_SIDE) | BIT(BTN_EXTRA);
180 input_dev->relbit[0] |= BIT(REL_WHEEL);
181
Dmitry Torokhove0712982007-05-09 10:17:31 +0200182 input_set_drvdata(input_dev, mouse);
183
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500184 input_dev->open = usb_mouse_open;
185 input_dev->close = usb_mouse_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 usb_fill_int_urb(mouse->irq, dev, pipe, mouse->data,
188 (maxp > 8 ? 8 : maxp),
189 usb_mouse_irq, mouse, endpoint->bInterval);
190 mouse->irq->transfer_dma = mouse->data_dma;
191 mouse->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
192
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200193 error = input_register_device(mouse->dev);
194 if (error)
195 goto fail3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 usb_set_intfdata(intf, mouse);
198 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500199
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200200fail3:
201 usb_free_urb(mouse->irq);
202fail2:
203 usb_buffer_free(dev, 8, mouse->data, mouse->data_dma);
204fail1:
205 input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500206 kfree(mouse);
Dmitry Torokhov5d6341c2007-04-04 10:40:57 +0200207 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210static void usb_mouse_disconnect(struct usb_interface *intf)
211{
212 struct usb_mouse *mouse = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 usb_set_intfdata(intf, NULL);
215 if (mouse) {
216 usb_kill_urb(mouse->irq);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500217 input_unregister_device(mouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 usb_free_urb(mouse->irq);
219 usb_buffer_free(interface_to_usbdev(intf), 8, mouse->data, mouse->data_dma);
220 kfree(mouse);
221 }
222}
223
224static struct usb_device_id usb_mouse_id_table [] = {
Michael Opdenacker4ef2e232007-02-21 22:51:25 +0100225 { USB_INTERFACE_INFO(USB_INTERFACE_CLASS_HID, USB_INTERFACE_SUBCLASS_BOOT,
226 USB_INTERFACE_PROTOCOL_MOUSE) },
Reiner Herrmann14acdcd2006-09-06 02:37:21 +0200227 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
230MODULE_DEVICE_TABLE (usb, usb_mouse_id_table);
231
232static struct usb_driver usb_mouse_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 .name = "usbmouse",
234 .probe = usb_mouse_probe,
235 .disconnect = usb_mouse_disconnect,
236 .id_table = usb_mouse_id_table,
237};
238
239static int __init usb_mouse_init(void)
240{
241 int retval = usb_register(&usb_mouse_driver);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500242 if (retval == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 info(DRIVER_VERSION ":" DRIVER_DESC);
244 return retval;
245}
246
247static void __exit usb_mouse_exit(void)
248{
249 usb_deregister(&usb_mouse_driver);
250}
251
252module_init(usb_mouse_init);
253module_exit(usb_mouse_exit);