blob: 446935b671d989e72e270752fffa77e33a5348ae [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
36 * Version Information
37 */
38#define DRIVER_VERSION "v1.6"
39#define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@ucw.cz>"
40#define DRIVER_DESC "USB HID Boot Protocol mouse driver"
41#define DRIVER_LICENSE "GPL"
42
43MODULE_AUTHOR(DRIVER_AUTHOR);
44MODULE_DESCRIPTION(DRIVER_DESC);
45MODULE_LICENSE(DRIVER_LICENSE);
46
47struct usb_mouse {
48 char name[128];
49 char phys[64];
50 struct usb_device *usbdev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -050051 struct input_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct urb *irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 signed char *data;
55 dma_addr_t data_dma;
56};
57
58static void usb_mouse_irq(struct urb *urb, struct pt_regs *regs)
59{
60 struct usb_mouse *mouse = urb->context;
61 signed char *data = mouse->data;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -050062 struct input_dev *dev = mouse->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 int status;
64
65 switch (urb->status) {
66 case 0: /* success */
67 break;
68 case -ECONNRESET: /* unlink */
69 case -ENOENT:
70 case -ESHUTDOWN:
71 return;
72 /* -EPIPE: should clear the halt */
73 default: /* error */
74 goto resubmit;
75 }
76
77 input_regs(dev, regs);
78
79 input_report_key(dev, BTN_LEFT, data[0] & 0x01);
80 input_report_key(dev, BTN_RIGHT, data[0] & 0x02);
81 input_report_key(dev, BTN_MIDDLE, data[0] & 0x04);
82 input_report_key(dev, BTN_SIDE, data[0] & 0x08);
83 input_report_key(dev, BTN_EXTRA, data[0] & 0x10);
84
85 input_report_rel(dev, REL_X, data[1]);
86 input_report_rel(dev, REL_Y, data[2]);
87 input_report_rel(dev, REL_WHEEL, data[3]);
88
89 input_sync(dev);
90resubmit:
91 status = usb_submit_urb (urb, SLAB_ATOMIC);
92 if (status)
93 err ("can't resubmit intr, %s-%s/input0, status %d",
94 mouse->usbdev->bus->bus_name,
95 mouse->usbdev->devpath, status);
96}
97
98static int usb_mouse_open(struct input_dev *dev)
99{
100 struct usb_mouse *mouse = dev->private;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 mouse->irq->dev = mouse->usbdev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500103 if (usb_submit_urb(mouse->irq, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 return 0;
107}
108
109static void usb_mouse_close(struct input_dev *dev)
110{
111 struct usb_mouse *mouse = dev->private;
112
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500113 usb_kill_urb(mouse->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500116static int usb_mouse_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500118 struct usb_device *dev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct usb_host_interface *interface;
120 struct usb_endpoint_descriptor *endpoint;
121 struct usb_mouse *mouse;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500122 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 int pipe, maxp;
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;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500131 if (!(endpoint->bEndpointAddress & USB_DIR_IN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return -ENODEV;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500133 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -ENODEV;
135
136 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
137 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
138
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500139 mouse = kzalloc(sizeof(struct usb_mouse), GFP_KERNEL);
140 input_dev = input_allocate_device();
141 if (!mouse || !input_dev)
142 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 mouse->data = usb_buffer_alloc(dev, 8, SLAB_ATOMIC, &mouse->data_dma);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500145 if (!mouse->data)
146 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 mouse->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500149 if (!mouse->irq)
150 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 mouse->usbdev = dev;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500153 mouse->dev = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 if (dev->manufacturer)
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500156 strlcpy(mouse->name, dev->manufacturer, sizeof(mouse->name));
157
158 if (dev->product) {
159 if (dev->manufacturer)
160 strlcat(mouse->name, " ", sizeof(mouse->name));
161 strlcat(mouse->name, dev->product, sizeof(mouse->name));
162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 if (!strlen(mouse->name))
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500165 snprintf(mouse->name, sizeof(mouse->name),
166 "USB HIDBP Mouse %04x:%04x",
167 le16_to_cpu(dev->descriptor.idVendor),
168 le16_to_cpu(dev->descriptor.idProduct));
169
170 usb_make_path(dev, mouse->phys, sizeof(mouse->phys));
171 strlcat(mouse->phys, "/input0", sizeof(mouse->phys));
172
173 input_dev->name = mouse->name;
174 input_dev->phys = mouse->phys;
175 usb_to_input_id(dev, &input_dev->id);
176 input_dev->cdev.dev = &intf->dev;
177
178 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REL);
179 input_dev->keybit[LONG(BTN_MOUSE)] = BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE);
180 input_dev->relbit[0] = BIT(REL_X) | BIT(REL_Y);
181 input_dev->keybit[LONG(BTN_MOUSE)] |= BIT(BTN_SIDE) | BIT(BTN_EXTRA);
182 input_dev->relbit[0] |= BIT(REL_WHEEL);
183
184 input_dev->private = mouse;
185 input_dev->open = usb_mouse_open;
186 input_dev->close = usb_mouse_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 usb_fill_int_urb(mouse->irq, dev, pipe, mouse->data,
189 (maxp > 8 ? 8 : maxp),
190 usb_mouse_irq, mouse, endpoint->bInterval);
191 mouse->irq->transfer_dma = mouse->data_dma;
192 mouse->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
193
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500194 input_register_device(mouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 usb_set_intfdata(intf, mouse);
197 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500198
199fail2: usb_buffer_free(dev, 8, mouse->data, mouse->data_dma);
200fail1: input_free_device(input_dev);
201 kfree(mouse);
202 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205static void usb_mouse_disconnect(struct usb_interface *intf)
206{
207 struct usb_mouse *mouse = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 usb_set_intfdata(intf, NULL);
210 if (mouse) {
211 usb_kill_urb(mouse->irq);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500212 input_unregister_device(mouse->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 usb_free_urb(mouse->irq);
214 usb_buffer_free(interface_to_usbdev(intf), 8, mouse->data, mouse->data_dma);
215 kfree(mouse);
216 }
217}
218
219static struct usb_device_id usb_mouse_id_table [] = {
220 { USB_INTERFACE_INFO(3, 1, 2) },
221 { } /* Terminating entry */
222};
223
224MODULE_DEVICE_TABLE (usb, usb_mouse_id_table);
225
226static struct usb_driver usb_mouse_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .name = "usbmouse",
228 .probe = usb_mouse_probe,
229 .disconnect = usb_mouse_disconnect,
230 .id_table = usb_mouse_id_table,
231};
232
233static int __init usb_mouse_init(void)
234{
235 int retval = usb_register(&usb_mouse_driver);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500236 if (retval == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 info(DRIVER_VERSION ":" DRIVER_DESC);
238 return retval;
239}
240
241static void __exit usb_mouse_exit(void)
242{
243 usb_deregister(&usb_mouse_driver);
244}
245
246module_init(usb_mouse_init);
247module_exit(usb_mouse_exit);