2 * $Id: usbmouse.c,v 1.15 2001/12/27 10:37:41 vojtech Exp $
4 * Copyright (c) 1999-2001 Vojtech Pavlik
6 * USB HIDBP Mouse support
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
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * 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.
20 * 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
24 * 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
29 #include <linux/kernel.h>
30 #include <linux/slab.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/usb/input.h>
34 #include <linux/hid.h>
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"
44 MODULE_AUTHOR(DRIVER_AUTHOR
);
45 MODULE_DESCRIPTION(DRIVER_DESC
);
46 MODULE_LICENSE(DRIVER_LICENSE
);
51 struct usb_device
*usbdev
;
52 struct input_dev
*dev
;
59 static void usb_mouse_irq(struct urb
*urb
)
61 struct usb_mouse
*mouse
= urb
->context
;
62 signed char *data
= mouse
->data
;
63 struct input_dev
*dev
= mouse
->dev
;
66 switch (urb
->status
) {
69 case -ECONNRESET
: /* unlink */
73 /* -EPIPE: should clear the halt */
78 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);
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]);
90 status
= usb_submit_urb (urb
, GFP_ATOMIC
);
92 err ("can't resubmit intr, %s-%s/input0, status %d",
93 mouse
->usbdev
->bus
->bus_name
,
94 mouse
->usbdev
->devpath
, status
);
97 static int usb_mouse_open(struct input_dev
*dev
)
99 struct usb_mouse
*mouse
= input_get_drvdata(dev
);
101 mouse
->irq
->dev
= mouse
->usbdev
;
102 if (usb_submit_urb(mouse
->irq
, GFP_KERNEL
))
108 static void usb_mouse_close(struct input_dev
*dev
)
110 struct usb_mouse
*mouse
= input_get_drvdata(dev
);
112 usb_kill_urb(mouse
->irq
);
115 static int usb_mouse_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
117 struct usb_device
*dev
= interface_to_usbdev(intf
);
118 struct usb_host_interface
*interface
;
119 struct usb_endpoint_descriptor
*endpoint
;
120 struct usb_mouse
*mouse
;
121 struct input_dev
*input_dev
;
125 interface
= intf
->cur_altsetting
;
127 if (interface
->desc
.bNumEndpoints
!= 1)
130 endpoint
= &interface
->endpoint
[0].desc
;
131 if (!usb_endpoint_is_int_in(endpoint
))
134 #ifdef CONFIG_USB_HID
135 if (usbhid_lookup_quirk(le16_to_cpu(dev
->descriptor
.idVendor
),
136 le16_to_cpu(dev
->descriptor
.idProduct
))
137 & (HID_QUIRK_IGNORE
|HID_QUIRK_IGNORE_MOUSE
)) {
142 pipe
= usb_rcvintpipe(dev
, endpoint
->bEndpointAddress
);
143 maxp
= usb_maxpacket(dev
, pipe
, usb_pipeout(pipe
));
145 mouse
= kzalloc(sizeof(struct usb_mouse
), GFP_KERNEL
);
146 input_dev
= input_allocate_device();
147 if (!mouse
|| !input_dev
)
150 mouse
->data
= usb_buffer_alloc(dev
, 8, GFP_ATOMIC
, &mouse
->data_dma
);
154 mouse
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
159 mouse
->dev
= input_dev
;
161 if (dev
->manufacturer
)
162 strlcpy(mouse
->name
, dev
->manufacturer
, sizeof(mouse
->name
));
165 if (dev
->manufacturer
)
166 strlcat(mouse
->name
, " ", sizeof(mouse
->name
));
167 strlcat(mouse
->name
, dev
->product
, sizeof(mouse
->name
));
170 if (!strlen(mouse
->name
))
171 snprintf(mouse
->name
, sizeof(mouse
->name
),
172 "USB HIDBP Mouse %04x:%04x",
173 le16_to_cpu(dev
->descriptor
.idVendor
),
174 le16_to_cpu(dev
->descriptor
.idProduct
));
176 usb_make_path(dev
, mouse
->phys
, sizeof(mouse
->phys
));
177 strlcat(mouse
->phys
, "/input0", sizeof(mouse
->phys
));
179 input_dev
->name
= mouse
->name
;
180 input_dev
->phys
= mouse
->phys
;
181 usb_to_input_id(dev
, &input_dev
->id
);
182 input_dev
->dev
.parent
= &intf
->dev
;
184 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_REL
);
185 input_dev
->keybit
[BIT_WORD(BTN_MOUSE
)] = BIT_MASK(BTN_LEFT
) |
186 BIT_MASK(BTN_RIGHT
) | BIT_MASK(BTN_MIDDLE
);
187 input_dev
->relbit
[0] = BIT_MASK(REL_X
) | BIT_MASK(REL_Y
);
188 input_dev
->keybit
[BIT_WORD(BTN_MOUSE
)] |= BIT_MASK(BTN_SIDE
) |
190 input_dev
->relbit
[0] |= BIT_MASK(REL_WHEEL
);
192 input_set_drvdata(input_dev
, mouse
);
194 input_dev
->open
= usb_mouse_open
;
195 input_dev
->close
= usb_mouse_close
;
197 usb_fill_int_urb(mouse
->irq
, dev
, pipe
, mouse
->data
,
198 (maxp
> 8 ? 8 : maxp
),
199 usb_mouse_irq
, mouse
, endpoint
->bInterval
);
200 mouse
->irq
->transfer_dma
= mouse
->data_dma
;
201 mouse
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
203 error
= input_register_device(mouse
->dev
);
207 usb_set_intfdata(intf
, mouse
);
211 usb_free_urb(mouse
->irq
);
213 usb_buffer_free(dev
, 8, mouse
->data
, mouse
->data_dma
);
215 input_free_device(input_dev
);
220 static void usb_mouse_disconnect(struct usb_interface
*intf
)
222 struct usb_mouse
*mouse
= usb_get_intfdata (intf
);
224 usb_set_intfdata(intf
, NULL
);
226 usb_kill_urb(mouse
->irq
);
227 input_unregister_device(mouse
->dev
);
228 usb_free_urb(mouse
->irq
);
229 usb_buffer_free(interface_to_usbdev(intf
), 8, mouse
->data
, mouse
->data_dma
);
234 static struct usb_device_id usb_mouse_id_table
[] = {
235 { USB_INTERFACE_INFO(USB_INTERFACE_CLASS_HID
, USB_INTERFACE_SUBCLASS_BOOT
,
236 USB_INTERFACE_PROTOCOL_MOUSE
) },
237 { } /* Terminating entry */
240 MODULE_DEVICE_TABLE (usb
, usb_mouse_id_table
);
242 static struct usb_driver usb_mouse_driver
= {
244 .probe
= usb_mouse_probe
,
245 .disconnect
= usb_mouse_disconnect
,
246 .id_table
= usb_mouse_id_table
,
249 static int __init
usb_mouse_init(void)
251 int retval
= usb_register(&usb_mouse_driver
);
253 info(DRIVER_VERSION
":" DRIVER_DESC
);
257 static void __exit
usb_mouse_exit(void)
259 usb_deregister(&usb_mouse_driver
);
262 module_init(usb_mouse_init
);
263 module_exit(usb_mouse_exit
);