diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/usb/input/usbkbd.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/usb/input/usbkbd.c')
-rw-r--r-- | drivers/usb/input/usbkbd.c | 370 |
1 files changed, 370 insertions, 0 deletions
diff --git a/drivers/usb/input/usbkbd.c b/drivers/usb/input/usbkbd.c new file mode 100644 index 000000000000..01514b0551b8 --- /dev/null +++ b/drivers/usb/input/usbkbd.c | |||
@@ -0,0 +1,370 @@ | |||
1 | /* | ||
2 | * $Id: usbkbd.c,v 1.27 2001/12/27 10:37:41 vojtech Exp $ | ||
3 | * | ||
4 | * Copyright (c) 1999-2001 Vojtech Pavlik | ||
5 | * | ||
6 | * USB HIDBP Keyboard 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 | ||
12 | * the Free Software Foundation; either version 2 of the License, or | ||
13 | * (at your option) any later version. | ||
14 | * | ||
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. | ||
19 | * | ||
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 | ||
23 | * | ||
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 | ||
27 | */ | ||
28 | |||
29 | #include <linux/kernel.h> | ||
30 | #include <linux/slab.h> | ||
31 | #include <linux/module.h> | ||
32 | #include <linux/input.h> | ||
33 | #include <linux/init.h> | ||
34 | #include <linux/usb.h> | ||
35 | |||
36 | /* | ||
37 | * Version Information | ||
38 | */ | ||
39 | #define DRIVER_VERSION "" | ||
40 | #define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@ucw.cz>" | ||
41 | #define DRIVER_DESC "USB HID Boot Protocol keyboard driver" | ||
42 | #define DRIVER_LICENSE "GPL" | ||
43 | |||
44 | MODULE_AUTHOR(DRIVER_AUTHOR); | ||
45 | MODULE_DESCRIPTION(DRIVER_DESC); | ||
46 | MODULE_LICENSE(DRIVER_LICENSE); | ||
47 | |||
48 | static unsigned char usb_kbd_keycode[256] = { | ||
49 | 0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38, | ||
50 | 50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45, 21, 44, 2, 3, | ||
51 | 4, 5, 6, 7, 8, 9, 10, 11, 28, 1, 14, 15, 57, 12, 13, 26, | ||
52 | 27, 43, 43, 39, 40, 41, 51, 52, 53, 58, 59, 60, 61, 62, 63, 64, | ||
53 | 65, 66, 67, 68, 87, 88, 99, 70,119,110,102,104,111,107,109,106, | ||
54 | 105,108,103, 69, 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71, | ||
55 | 72, 73, 82, 83, 86,127,116,117,183,184,185,186,187,188,189,190, | ||
56 | 191,192,193,194,134,138,130,132,128,129,131,137,133,135,136,113, | ||
57 | 115,114, 0, 0, 0,121, 0, 89, 93,124, 92, 94, 95, 0, 0, 0, | ||
58 | 122,123, 90, 91, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
59 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
60 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
61 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
62 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
63 | 29, 42, 56,125, 97, 54,100,126,164,166,165,163,161,115,114,113, | ||
64 | 150,158,159,128,136,177,178,176,142,152,173,140 | ||
65 | }; | ||
66 | |||
67 | struct usb_kbd { | ||
68 | struct input_dev dev; | ||
69 | struct usb_device *usbdev; | ||
70 | unsigned char old[8]; | ||
71 | struct urb *irq, *led; | ||
72 | unsigned char newleds; | ||
73 | char name[128]; | ||
74 | char phys[64]; | ||
75 | int open; | ||
76 | |||
77 | unsigned char *new; | ||
78 | struct usb_ctrlrequest *cr; | ||
79 | unsigned char *leds; | ||
80 | dma_addr_t cr_dma; | ||
81 | dma_addr_t new_dma; | ||
82 | dma_addr_t leds_dma; | ||
83 | }; | ||
84 | |||
85 | static void usb_kbd_irq(struct urb *urb, struct pt_regs *regs) | ||
86 | { | ||
87 | struct usb_kbd *kbd = urb->context; | ||
88 | int i; | ||
89 | |||
90 | switch (urb->status) { | ||
91 | case 0: /* success */ | ||
92 | break; | ||
93 | case -ECONNRESET: /* unlink */ | ||
94 | case -ENOENT: | ||
95 | case -ESHUTDOWN: | ||
96 | return; | ||
97 | /* -EPIPE: should clear the halt */ | ||
98 | default: /* error */ | ||
99 | goto resubmit; | ||
100 | } | ||
101 | |||
102 | input_regs(&kbd->dev, regs); | ||
103 | |||
104 | for (i = 0; i < 8; i++) | ||
105 | input_report_key(&kbd->dev, usb_kbd_keycode[i + 224], (kbd->new[0] >> i) & 1); | ||
106 | |||
107 | for (i = 2; i < 8; i++) { | ||
108 | |||
109 | if (kbd->old[i] > 3 && memscan(kbd->new + 2, kbd->old[i], 6) == kbd->new + 8) { | ||
110 | if (usb_kbd_keycode[kbd->old[i]]) | ||
111 | input_report_key(&kbd->dev, usb_kbd_keycode[kbd->old[i]], 0); | ||
112 | else | ||
113 | info("Unknown key (scancode %#x) released.", kbd->old[i]); | ||
114 | } | ||
115 | |||
116 | if (kbd->new[i] > 3 && memscan(kbd->old + 2, kbd->new[i], 6) == kbd->old + 8) { | ||
117 | if (usb_kbd_keycode[kbd->new[i]]) | ||
118 | input_report_key(&kbd->dev, usb_kbd_keycode[kbd->new[i]], 1); | ||
119 | else | ||
120 | info("Unknown key (scancode %#x) pressed.", kbd->new[i]); | ||
121 | } | ||
122 | } | ||
123 | |||
124 | input_sync(&kbd->dev); | ||
125 | |||
126 | memcpy(kbd->old, kbd->new, 8); | ||
127 | |||
128 | resubmit: | ||
129 | i = usb_submit_urb (urb, SLAB_ATOMIC); | ||
130 | if (i) | ||
131 | err ("can't resubmit intr, %s-%s/input0, status %d", | ||
132 | kbd->usbdev->bus->bus_name, | ||
133 | kbd->usbdev->devpath, i); | ||
134 | } | ||
135 | |||
136 | int usb_kbd_event(struct input_dev *dev, unsigned int type, unsigned int code, int value) | ||
137 | { | ||
138 | struct usb_kbd *kbd = dev->private; | ||
139 | |||
140 | if (type != EV_LED) | ||
141 | return -1; | ||
142 | |||
143 | |||
144 | kbd->newleds = (!!test_bit(LED_KANA, dev->led) << 3) | (!!test_bit(LED_COMPOSE, dev->led) << 3) | | ||
145 | (!!test_bit(LED_SCROLLL, dev->led) << 2) | (!!test_bit(LED_CAPSL, dev->led) << 1) | | ||
146 | (!!test_bit(LED_NUML, dev->led)); | ||
147 | |||
148 | if (kbd->led->status == -EINPROGRESS) | ||
149 | return 0; | ||
150 | |||
151 | if (*(kbd->leds) == kbd->newleds) | ||
152 | return 0; | ||
153 | |||
154 | *(kbd->leds) = kbd->newleds; | ||
155 | kbd->led->dev = kbd->usbdev; | ||
156 | if (usb_submit_urb(kbd->led, GFP_ATOMIC)) | ||
157 | err("usb_submit_urb(leds) failed"); | ||
158 | |||
159 | return 0; | ||
160 | } | ||
161 | |||
162 | static void usb_kbd_led(struct urb *urb, struct pt_regs *regs) | ||
163 | { | ||
164 | struct usb_kbd *kbd = urb->context; | ||
165 | |||
166 | if (urb->status) | ||
167 | warn("led urb status %d received", urb->status); | ||
168 | |||
169 | if (*(kbd->leds) == kbd->newleds) | ||
170 | return; | ||
171 | |||
172 | *(kbd->leds) = kbd->newleds; | ||
173 | kbd->led->dev = kbd->usbdev; | ||
174 | if (usb_submit_urb(kbd->led, GFP_ATOMIC)) | ||
175 | err("usb_submit_urb(leds) failed"); | ||
176 | } | ||
177 | |||
178 | static int usb_kbd_open(struct input_dev *dev) | ||
179 | { | ||
180 | struct usb_kbd *kbd = dev->private; | ||
181 | |||
182 | if (kbd->open++) | ||
183 | return 0; | ||
184 | |||
185 | kbd->irq->dev = kbd->usbdev; | ||
186 | if (usb_submit_urb(kbd->irq, GFP_KERNEL)) { | ||
187 | kbd->open--; | ||
188 | return -EIO; | ||
189 | } | ||
190 | |||
191 | return 0; | ||
192 | } | ||
193 | |||
194 | static void usb_kbd_close(struct input_dev *dev) | ||
195 | { | ||
196 | struct usb_kbd *kbd = dev->private; | ||
197 | |||
198 | if (!--kbd->open) | ||
199 | usb_kill_urb(kbd->irq); | ||
200 | } | ||
201 | |||
202 | static int usb_kbd_alloc_mem(struct usb_device *dev, struct usb_kbd *kbd) | ||
203 | { | ||
204 | if (!(kbd->irq = usb_alloc_urb(0, GFP_KERNEL))) | ||
205 | return -1; | ||
206 | if (!(kbd->led = usb_alloc_urb(0, GFP_KERNEL))) | ||
207 | return -1; | ||
208 | if (!(kbd->new = usb_buffer_alloc(dev, 8, SLAB_ATOMIC, &kbd->new_dma))) | ||
209 | return -1; | ||
210 | if (!(kbd->cr = usb_buffer_alloc(dev, sizeof(struct usb_ctrlrequest), SLAB_ATOMIC, &kbd->cr_dma))) | ||
211 | return -1; | ||
212 | if (!(kbd->leds = usb_buffer_alloc(dev, 1, SLAB_ATOMIC, &kbd->leds_dma))) | ||
213 | return -1; | ||
214 | |||
215 | return 0; | ||
216 | } | ||
217 | |||
218 | static void usb_kbd_free_mem(struct usb_device *dev, struct usb_kbd *kbd) | ||
219 | { | ||
220 | if (kbd->irq) | ||
221 | usb_free_urb(kbd->irq); | ||
222 | if (kbd->led) | ||
223 | usb_free_urb(kbd->led); | ||
224 | if (kbd->new) | ||
225 | usb_buffer_free(dev, 8, kbd->new, kbd->new_dma); | ||
226 | if (kbd->cr) | ||
227 | usb_buffer_free(dev, sizeof(struct usb_ctrlrequest), kbd->cr, kbd->cr_dma); | ||
228 | if (kbd->leds) | ||
229 | usb_buffer_free(dev, 1, kbd->leds, kbd->leds_dma); | ||
230 | } | ||
231 | |||
232 | static int usb_kbd_probe(struct usb_interface *iface, | ||
233 | const struct usb_device_id *id) | ||
234 | { | ||
235 | struct usb_device * dev = interface_to_usbdev(iface); | ||
236 | struct usb_host_interface *interface; | ||
237 | struct usb_endpoint_descriptor *endpoint; | ||
238 | struct usb_kbd *kbd; | ||
239 | int i, pipe, maxp; | ||
240 | char path[64]; | ||
241 | |||
242 | interface = iface->cur_altsetting; | ||
243 | |||
244 | if (interface->desc.bNumEndpoints != 1) | ||
245 | return -ENODEV; | ||
246 | |||
247 | endpoint = &interface->endpoint[0].desc; | ||
248 | if (!(endpoint->bEndpointAddress & 0x80)) | ||
249 | return -ENODEV; | ||
250 | if ((endpoint->bmAttributes & 3) != 3) | ||
251 | return -ENODEV; | ||
252 | |||
253 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); | ||
254 | maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe)); | ||
255 | |||
256 | if (!(kbd = kmalloc(sizeof(struct usb_kbd), GFP_KERNEL))) | ||
257 | return -ENOMEM; | ||
258 | memset(kbd, 0, sizeof(struct usb_kbd)); | ||
259 | |||
260 | if (usb_kbd_alloc_mem(dev, kbd)) { | ||
261 | usb_kbd_free_mem(dev, kbd); | ||
262 | kfree(kbd); | ||
263 | return -ENOMEM; | ||
264 | } | ||
265 | |||
266 | kbd->usbdev = dev; | ||
267 | |||
268 | kbd->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_LED) | BIT(EV_REP); | ||
269 | kbd->dev.ledbit[0] = BIT(LED_NUML) | BIT(LED_CAPSL) | BIT(LED_SCROLLL) | BIT(LED_COMPOSE) | BIT(LED_KANA); | ||
270 | |||
271 | for (i = 0; i < 255; i++) | ||
272 | set_bit(usb_kbd_keycode[i], kbd->dev.keybit); | ||
273 | clear_bit(0, kbd->dev.keybit); | ||
274 | |||
275 | kbd->dev.private = kbd; | ||
276 | kbd->dev.event = usb_kbd_event; | ||
277 | kbd->dev.open = usb_kbd_open; | ||
278 | kbd->dev.close = usb_kbd_close; | ||
279 | |||
280 | usb_fill_int_urb(kbd->irq, dev, pipe, | ||
281 | kbd->new, (maxp > 8 ? 8 : maxp), | ||
282 | usb_kbd_irq, kbd, endpoint->bInterval); | ||
283 | kbd->irq->transfer_dma = kbd->new_dma; | ||
284 | kbd->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | ||
285 | |||
286 | kbd->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE; | ||
287 | kbd->cr->bRequest = 0x09; | ||
288 | kbd->cr->wValue = cpu_to_le16(0x200); | ||
289 | kbd->cr->wIndex = cpu_to_le16(interface->desc.bInterfaceNumber); | ||
290 | kbd->cr->wLength = cpu_to_le16(1); | ||
291 | |||
292 | usb_make_path(dev, path, 64); | ||
293 | sprintf(kbd->phys, "%s/input0", path); | ||
294 | |||
295 | kbd->dev.name = kbd->name; | ||
296 | kbd->dev.phys = kbd->phys; | ||
297 | kbd->dev.id.bustype = BUS_USB; | ||
298 | kbd->dev.id.vendor = le16_to_cpu(dev->descriptor.idVendor); | ||
299 | kbd->dev.id.product = le16_to_cpu(dev->descriptor.idProduct); | ||
300 | kbd->dev.id.version = le16_to_cpu(dev->descriptor.bcdDevice); | ||
301 | kbd->dev.dev = &iface->dev; | ||
302 | |||
303 | if (dev->manufacturer) | ||
304 | strcat(kbd->name, dev->manufacturer); | ||
305 | if (dev->product) | ||
306 | sprintf(kbd->name, "%s %s", kbd->name, dev->product); | ||
307 | |||
308 | if (!strlen(kbd->name)) | ||
309 | sprintf(kbd->name, "USB HIDBP Keyboard %04x:%04x", | ||
310 | kbd->dev.id.vendor, kbd->dev.id.product); | ||
311 | |||
312 | usb_fill_control_urb(kbd->led, dev, usb_sndctrlpipe(dev, 0), | ||
313 | (void *) kbd->cr, kbd->leds, 1, | ||
314 | usb_kbd_led, kbd); | ||
315 | kbd->led->setup_dma = kbd->cr_dma; | ||
316 | kbd->led->transfer_dma = kbd->leds_dma; | ||
317 | kbd->led->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP | ||
318 | | URB_NO_SETUP_DMA_MAP); | ||
319 | |||
320 | input_register_device(&kbd->dev); | ||
321 | |||
322 | printk(KERN_INFO "input: %s on %s\n", kbd->name, path); | ||
323 | |||
324 | usb_set_intfdata(iface, kbd); | ||
325 | return 0; | ||
326 | } | ||
327 | |||
328 | static void usb_kbd_disconnect(struct usb_interface *intf) | ||
329 | { | ||
330 | struct usb_kbd *kbd = usb_get_intfdata (intf); | ||
331 | |||
332 | usb_set_intfdata(intf, NULL); | ||
333 | if (kbd) { | ||
334 | usb_kill_urb(kbd->irq); | ||
335 | input_unregister_device(&kbd->dev); | ||
336 | usb_kbd_free_mem(interface_to_usbdev(intf), kbd); | ||
337 | kfree(kbd); | ||
338 | } | ||
339 | } | ||
340 | |||
341 | static struct usb_device_id usb_kbd_id_table [] = { | ||
342 | { USB_INTERFACE_INFO(3, 1, 1) }, | ||
343 | { } /* Terminating entry */ | ||
344 | }; | ||
345 | |||
346 | MODULE_DEVICE_TABLE (usb, usb_kbd_id_table); | ||
347 | |||
348 | static struct usb_driver usb_kbd_driver = { | ||
349 | .owner = THIS_MODULE, | ||
350 | .name = "usbkbd", | ||
351 | .probe = usb_kbd_probe, | ||
352 | .disconnect = usb_kbd_disconnect, | ||
353 | .id_table = usb_kbd_id_table, | ||
354 | }; | ||
355 | |||
356 | static int __init usb_kbd_init(void) | ||
357 | { | ||
358 | int result = usb_register(&usb_kbd_driver); | ||
359 | if (result == 0) | ||
360 | info(DRIVER_VERSION ":" DRIVER_DESC); | ||
361 | return result; | ||
362 | } | ||
363 | |||
364 | static void __exit usb_kbd_exit(void) | ||
365 | { | ||
366 | usb_deregister(&usb_kbd_driver); | ||
367 | } | ||
368 | |||
369 | module_init(usb_kbd_init); | ||
370 | module_exit(usb_kbd_exit); | ||