[PATCH] slab: remove SLAB_ATOMIC
[linux-2.6/x86.git] / drivers / usb / input / usbmouse.c
blob64a33e420cfbabb3b6758f25353c67b4b02ee55e
1 /*
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
7 */
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
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>
36 * Version Information
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"
43 MODULE_AUTHOR(DRIVER_AUTHOR);
44 MODULE_DESCRIPTION(DRIVER_DESC);
45 MODULE_LICENSE(DRIVER_LICENSE);
47 struct usb_mouse {
48 char name[128];
49 char phys[64];
50 struct usb_device *usbdev;
51 struct input_dev *dev;
52 struct urb *irq;
54 signed char *data;
55 dma_addr_t data_dma;
58 static void usb_mouse_irq(struct urb *urb)
60 struct usb_mouse *mouse = urb->context;
61 signed char *data = mouse->data;
62 struct input_dev *dev = mouse->dev;
63 int status;
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;
77 input_report_key(dev, BTN_LEFT, data[0] & 0x01);
78 input_report_key(dev, BTN_RIGHT, data[0] & 0x02);
79 input_report_key(dev, BTN_MIDDLE, data[0] & 0x04);
80 input_report_key(dev, BTN_SIDE, data[0] & 0x08);
81 input_report_key(dev, BTN_EXTRA, data[0] & 0x10);
83 input_report_rel(dev, REL_X, data[1]);
84 input_report_rel(dev, REL_Y, data[2]);
85 input_report_rel(dev, REL_WHEEL, data[3]);
87 input_sync(dev);
88 resubmit:
89 status = usb_submit_urb (urb, GFP_ATOMIC);
90 if (status)
91 err ("can't resubmit intr, %s-%s/input0, status %d",
92 mouse->usbdev->bus->bus_name,
93 mouse->usbdev->devpath, status);
96 static int usb_mouse_open(struct input_dev *dev)
98 struct usb_mouse *mouse = dev->private;
100 mouse->irq->dev = mouse->usbdev;
101 if (usb_submit_urb(mouse->irq, GFP_KERNEL))
102 return -EIO;
104 return 0;
107 static void usb_mouse_close(struct input_dev *dev)
109 struct usb_mouse *mouse = dev->private;
111 usb_kill_urb(mouse->irq);
114 static int usb_mouse_probe(struct usb_interface *intf, const struct usb_device_id *id)
116 struct usb_device *dev = interface_to_usbdev(intf);
117 struct usb_host_interface *interface;
118 struct usb_endpoint_descriptor *endpoint;
119 struct usb_mouse *mouse;
120 struct input_dev *input_dev;
121 int pipe, maxp;
123 interface = intf->cur_altsetting;
125 if (interface->desc.bNumEndpoints != 1)
126 return -ENODEV;
128 endpoint = &interface->endpoint[0].desc;
129 if (!usb_endpoint_is_int_in(endpoint))
130 return -ENODEV;
132 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
133 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
135 mouse = kzalloc(sizeof(struct usb_mouse), GFP_KERNEL);
136 input_dev = input_allocate_device();
137 if (!mouse || !input_dev)
138 goto fail1;
140 mouse->data = usb_buffer_alloc(dev, 8, GFP_ATOMIC, &mouse->data_dma);
141 if (!mouse->data)
142 goto fail1;
144 mouse->irq = usb_alloc_urb(0, GFP_KERNEL);
145 if (!mouse->irq)
146 goto fail2;
148 mouse->usbdev = dev;
149 mouse->dev = input_dev;
151 if (dev->manufacturer)
152 strlcpy(mouse->name, dev->manufacturer, sizeof(mouse->name));
154 if (dev->product) {
155 if (dev->manufacturer)
156 strlcat(mouse->name, " ", sizeof(mouse->name));
157 strlcat(mouse->name, dev->product, sizeof(mouse->name));
160 if (!strlen(mouse->name))
161 snprintf(mouse->name, sizeof(mouse->name),
162 "USB HIDBP Mouse %04x:%04x",
163 le16_to_cpu(dev->descriptor.idVendor),
164 le16_to_cpu(dev->descriptor.idProduct));
166 usb_make_path(dev, mouse->phys, sizeof(mouse->phys));
167 strlcat(mouse->phys, "/input0", sizeof(mouse->phys));
169 input_dev->name = mouse->name;
170 input_dev->phys = mouse->phys;
171 usb_to_input_id(dev, &input_dev->id);
172 input_dev->cdev.dev = &intf->dev;
174 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REL);
175 input_dev->keybit[LONG(BTN_MOUSE)] = BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE);
176 input_dev->relbit[0] = BIT(REL_X) | BIT(REL_Y);
177 input_dev->keybit[LONG(BTN_MOUSE)] |= BIT(BTN_SIDE) | BIT(BTN_EXTRA);
178 input_dev->relbit[0] |= BIT(REL_WHEEL);
180 input_dev->private = mouse;
181 input_dev->open = usb_mouse_open;
182 input_dev->close = usb_mouse_close;
184 usb_fill_int_urb(mouse->irq, dev, pipe, mouse->data,
185 (maxp > 8 ? 8 : maxp),
186 usb_mouse_irq, mouse, endpoint->bInterval);
187 mouse->irq->transfer_dma = mouse->data_dma;
188 mouse->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
190 input_register_device(mouse->dev);
192 usb_set_intfdata(intf, mouse);
193 return 0;
195 fail2: usb_buffer_free(dev, 8, mouse->data, mouse->data_dma);
196 fail1: input_free_device(input_dev);
197 kfree(mouse);
198 return -ENOMEM;
201 static void usb_mouse_disconnect(struct usb_interface *intf)
203 struct usb_mouse *mouse = usb_get_intfdata (intf);
205 usb_set_intfdata(intf, NULL);
206 if (mouse) {
207 usb_kill_urb(mouse->irq);
208 input_unregister_device(mouse->dev);
209 usb_free_urb(mouse->irq);
210 usb_buffer_free(interface_to_usbdev(intf), 8, mouse->data, mouse->data_dma);
211 kfree(mouse);
215 static struct usb_device_id usb_mouse_id_table [] = {
216 { USB_INTERFACE_INFO(3, 1, 2) },
217 { } /* Terminating entry */
220 MODULE_DEVICE_TABLE (usb, usb_mouse_id_table);
222 static struct usb_driver usb_mouse_driver = {
223 .name = "usbmouse",
224 .probe = usb_mouse_probe,
225 .disconnect = usb_mouse_disconnect,
226 .id_table = usb_mouse_id_table,
229 static int __init usb_mouse_init(void)
231 int retval = usb_register(&usb_mouse_driver);
232 if (retval == 0)
233 info(DRIVER_VERSION ":" DRIVER_DESC);
234 return retval;
237 static void __exit usb_mouse_exit(void)
239 usb_deregister(&usb_mouse_driver);
242 module_init(usb_mouse_init);
243 module_exit(usb_mouse_exit);