]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
affae2bf WD |
2 | /* |
3 | * (C) Copyright 2001 | |
4 | * Denis Peter, MPL AG Switzerland | |
5 | * | |
6 | * Part of this source has been derived from the Linux USB | |
7 | * project. | |
affae2bf WD |
8 | */ |
9 | #include <common.h> | |
24b852a7 | 10 | #include <console.h> |
697033cb | 11 | #include <dm.h> |
0ea09dfe | 12 | #include <errno.h> |
9a8c72a6 | 13 | #include <malloc.h> |
cf92e05c | 14 | #include <memalign.h> |
52cb4d4f | 15 | #include <stdio_dev.h> |
f8f3e0e5 | 16 | #include <watchdog.h> |
c918261c | 17 | #include <asm/byteorder.h> |
affae2bf | 18 | |
affae2bf WD |
19 | #include <usb.h> |
20 | ||
affae2bf | 21 | /* |
00b7d6ec | 22 | * If overwrite_console returns 1, the stdin, stderr and stdout |
affae2bf WD |
23 | * are switched to the serial port, else the settings in the |
24 | * environment are used | |
25 | */ | |
6d0f6bcf | 26 | #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE |
00b7d6ec | 27 | extern int overwrite_console(void); |
affae2bf | 28 | #else |
00b7d6ec | 29 | int overwrite_console(void) |
affae2bf | 30 | { |
00b7d6ec | 31 | return 0; |
affae2bf WD |
32 | } |
33 | #endif | |
34 | ||
9a8c72a6 | 35 | /* Keyboard sampling rate */ |
8454c84a | 36 | #define REPEAT_RATE 40 /* 40msec -> 25cps */ |
9a8c72a6 | 37 | #define REPEAT_DELAY 10 /* 10 x REPEAT_RATE = 400msec */ |
affae2bf WD |
38 | |
39 | #define NUM_LOCK 0x53 | |
00b7d6ec MV |
40 | #define CAPS_LOCK 0x39 |
41 | #define SCROLL_LOCK 0x47 | |
affae2bf | 42 | |
affae2bf | 43 | /* Modifier bits */ |
9a8c72a6 MV |
44 | #define LEFT_CNTR (1 << 0) |
45 | #define LEFT_SHIFT (1 << 1) | |
46 | #define LEFT_ALT (1 << 2) | |
47 | #define LEFT_GUI (1 << 3) | |
48 | #define RIGHT_CNTR (1 << 4) | |
49 | #define RIGHT_SHIFT (1 << 5) | |
50 | #define RIGHT_ALT (1 << 6) | |
51 | #define RIGHT_GUI (1 << 7) | |
52 | ||
53 | /* Size of the keyboard buffer */ | |
54 | #define USB_KBD_BUFFER_LEN 0x20 | |
55 | ||
56 | /* Device name */ | |
00b7d6ec | 57 | #define DEVNAME "usbkbd" |
affae2bf | 58 | |
9a8c72a6 MV |
59 | /* Keyboard maps */ |
60 | static const unsigned char usb_kbd_numkey[] = { | |
00b7d6ec MV |
61 | '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', |
62 | '\r', 0x1b, '\b', '\t', ' ', '-', '=', '[', ']', | |
63 | '\\', '#', ';', '\'', '`', ',', '.', '/' | |
affae2bf | 64 | }; |
9a8c72a6 | 65 | static const unsigned char usb_kbd_numkey_shifted[] = { |
00b7d6ec MV |
66 | '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', |
67 | '\r', 0x1b, '\b', '\t', ' ', '_', '+', '{', '}', | |
68 | '|', '~', ':', '"', '~', '<', '>', '?' | |
affae2bf WD |
69 | }; |
70 | ||
d53da847 VP |
71 | static const unsigned char usb_kbd_num_keypad[] = { |
72 | '/', '*', '-', '+', '\r', | |
73 | '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', | |
74 | '.', 0, 0, 0, '=' | |
75 | }; | |
76 | ||
4151a400 AM |
77 | /* |
78 | * map arrow keys to ^F/^B ^N/^P, can't really use the proper | |
79 | * ANSI sequence for arrow keys because the queuing code breaks | |
80 | * when a single keypress expands to 3 queue elements | |
81 | */ | |
82 | static const unsigned char usb_kbd_arrow[] = { | |
83 | 0x6, 0x2, 0xe, 0x10 | |
84 | }; | |
85 | ||
9a8c72a6 MV |
86 | /* |
87 | * NOTE: It's important for the NUM, CAPS, SCROLL-lock bits to be in this | |
88 | * order. See usb_kbd_setled() function! | |
89 | */ | |
90 | #define USB_KBD_NUMLOCK (1 << 0) | |
91 | #define USB_KBD_CAPSLOCK (1 << 1) | |
92 | #define USB_KBD_SCROLLLOCK (1 << 2) | |
93 | #define USB_KBD_CTRL (1 << 3) | |
48c8073e | 94 | |
9a8c72a6 MV |
95 | #define USB_KBD_LEDMASK \ |
96 | (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK) | |
48c8073e | 97 | |
08a98b89 AC |
98 | /* |
99 | * USB Keyboard reports are 8 bytes in boot protocol. | |
100 | * Appendix B of HID Device Class Definition 1.11 | |
101 | */ | |
102 | #define USB_KBD_BOOT_REPORT_SIZE 8 | |
103 | ||
9a8c72a6 | 104 | struct usb_kbd_pdata { |
8f8d7d24 HG |
105 | unsigned long intpipe; |
106 | int intpktsize; | |
107 | int intinterval; | |
8454c84a | 108 | unsigned long last_report; |
8e553119 | 109 | struct int_queue *intq; |
8f8d7d24 | 110 | |
9a8c72a6 | 111 | uint32_t repeat_delay; |
affae2bf | 112 | |
9a8c72a6 MV |
113 | uint32_t usb_in_pointer; |
114 | uint32_t usb_out_pointer; | |
115 | uint8_t usb_kbd_buffer[USB_KBD_BUFFER_LEN]; | |
48c8073e | 116 | |
d7475386 | 117 | uint8_t *new; |
08a98b89 | 118 | uint8_t old[USB_KBD_BOOT_REPORT_SIZE]; |
48c8073e | 119 | |
9a8c72a6 MV |
120 | uint8_t flags; |
121 | }; | |
48c8073e | 122 | |
07551f23 JL |
123 | extern int __maybe_unused net_busy_flag; |
124 | ||
125 | /* The period of time between two calls of usb_kbd_testc(). */ | |
126 | static unsigned long __maybe_unused kbd_testc_tms; | |
127 | ||
9a8c72a6 MV |
128 | /* Puts character in the queue and sets up the in and out pointer. */ |
129 | static void usb_kbd_put_queue(struct usb_kbd_pdata *data, char c) | |
affae2bf | 130 | { |
9a8c72a6 MV |
131 | if (data->usb_in_pointer == USB_KBD_BUFFER_LEN - 1) { |
132 | /* Check for buffer full. */ | |
133 | if (data->usb_out_pointer == 0) | |
134 | return; | |
affae2bf | 135 | |
9a8c72a6 MV |
136 | data->usb_in_pointer = 0; |
137 | } else { | |
138 | /* Check for buffer full. */ | |
139 | if (data->usb_in_pointer == data->usb_out_pointer - 1) | |
140 | return; | |
affae2bf | 141 | |
9a8c72a6 MV |
142 | data->usb_in_pointer++; |
143 | } | |
affae2bf | 144 | |
9a8c72a6 | 145 | data->usb_kbd_buffer[data->usb_in_pointer] = c; |
affae2bf WD |
146 | } |
147 | ||
c99ffd72 AP |
148 | static void usb_kbd_put_sequence(struct usb_kbd_pdata *data, char *s) |
149 | { | |
150 | for (; *s; s++) | |
151 | usb_kbd_put_queue(data, *s); | |
152 | } | |
153 | ||
9a8c72a6 MV |
154 | /* |
155 | * Set the LEDs. Since this is used in the irq routine, the control job is | |
156 | * issued with a timeout of 0. This means, that the job is queued without | |
157 | * waiting for job completion. | |
affae2bf | 158 | */ |
affae2bf WD |
159 | static void usb_kbd_setled(struct usb_device *dev) |
160 | { | |
9a8c72a6 MV |
161 | struct usb_interface *iface = &dev->config.if_desc[0]; |
162 | struct usb_kbd_pdata *data = dev->privptr; | |
9b239381 | 163 | ALLOC_ALIGN_BUFFER(uint32_t, leds, 1, USB_DMA_MINALIGN); |
9a8c72a6 | 164 | |
9b239381 | 165 | *leds = data->flags & USB_KBD_LEDMASK; |
affae2bf WD |
166 | usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
167 | USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE, | |
9b239381 | 168 | 0x200, iface->desc.bInterfaceNumber, leds, 1, 0); |
affae2bf WD |
169 | } |
170 | ||
9a8c72a6 | 171 | #define CAPITAL_MASK 0x20 |
affae2bf | 172 | /* Translate the scancode in ASCII */ |
9a8c72a6 MV |
173 | static int usb_kbd_translate(struct usb_kbd_pdata *data, unsigned char scancode, |
174 | unsigned char modifier, int pressed) | |
affae2bf | 175 | { |
9a8c72a6 | 176 | uint8_t keycode = 0; |
affae2bf | 177 | |
9a8c72a6 | 178 | /* Key released */ |
00b7d6ec | 179 | if (pressed == 0) { |
9a8c72a6 | 180 | data->repeat_delay = 0; |
affae2bf WD |
181 | return 0; |
182 | } | |
9a8c72a6 | 183 | |
00b7d6ec | 184 | if (pressed == 2) { |
9a8c72a6 MV |
185 | data->repeat_delay++; |
186 | if (data->repeat_delay < REPEAT_DELAY) | |
affae2bf | 187 | return 0; |
9a8c72a6 MV |
188 | |
189 | data->repeat_delay = REPEAT_DELAY; | |
affae2bf | 190 | } |
9a8c72a6 MV |
191 | |
192 | /* Alphanumeric values */ | |
193 | if ((scancode > 3) && (scancode <= 0x1d)) { | |
194 | keycode = scancode - 4 + 'a'; | |
195 | ||
196 | if (data->flags & USB_KBD_CAPSLOCK) | |
00b7d6ec | 197 | keycode &= ~CAPITAL_MASK; |
9a8c72a6 MV |
198 | |
199 | if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) { | |
200 | /* Handle CAPSLock + Shift pressed simultaneously */ | |
00b7d6ec | 201 | if (keycode & CAPITAL_MASK) |
00b7d6ec | 202 | keycode &= ~CAPITAL_MASK; |
affae2bf | 203 | else |
00b7d6ec | 204 | keycode |= CAPITAL_MASK; |
affae2bf WD |
205 | } |
206 | } | |
9a8c72a6 | 207 | |
bdbcbe75 | 208 | if ((scancode > 0x1d) && (scancode < 0x39)) { |
9a8c72a6 MV |
209 | /* Shift pressed */ |
210 | if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) | |
211 | keycode = usb_kbd_numkey_shifted[scancode - 0x1e]; | |
212 | else | |
213 | keycode = usb_kbd_numkey[scancode - 0x1e]; | |
affae2bf | 214 | } |
4785a694 | 215 | |
4151a400 AM |
216 | /* Arrow keys */ |
217 | if ((scancode >= 0x4f) && (scancode <= 0x52)) | |
218 | keycode = usb_kbd_arrow[scancode - 0x4f]; | |
219 | ||
d53da847 VP |
220 | /* Numeric keypad */ |
221 | if ((scancode >= 0x54) && (scancode <= 0x67)) | |
222 | keycode = usb_kbd_num_keypad[scancode - 0x54]; | |
223 | ||
9a8c72a6 | 224 | if (data->flags & USB_KBD_CTRL) |
4785a694 ZW |
225 | keycode = scancode - 0x3; |
226 | ||
00b7d6ec MV |
227 | if (pressed == 1) { |
228 | if (scancode == NUM_LOCK) { | |
9a8c72a6 | 229 | data->flags ^= USB_KBD_NUMLOCK; |
affae2bf WD |
230 | return 1; |
231 | } | |
9a8c72a6 | 232 | |
00b7d6ec | 233 | if (scancode == CAPS_LOCK) { |
9a8c72a6 | 234 | data->flags ^= USB_KBD_CAPSLOCK; |
affae2bf WD |
235 | return 1; |
236 | } | |
00b7d6ec | 237 | if (scancode == SCROLL_LOCK) { |
9a8c72a6 | 238 | data->flags ^= USB_KBD_SCROLLLOCK; |
affae2bf WD |
239 | return 1; |
240 | } | |
241 | } | |
9a8c72a6 MV |
242 | |
243 | /* Report keycode if any */ | |
c99ffd72 | 244 | if (keycode) |
ceb4972a | 245 | debug("%c", keycode); |
c99ffd72 AP |
246 | |
247 | switch (keycode) { | |
248 | case 0x0e: /* Down arrow key */ | |
249 | usb_kbd_put_sequence(data, "\e[B"); | |
250 | break; | |
251 | case 0x10: /* Up arrow key */ | |
252 | usb_kbd_put_sequence(data, "\e[A"); | |
253 | break; | |
254 | case 0x06: /* Right arrow key */ | |
255 | usb_kbd_put_sequence(data, "\e[C"); | |
256 | break; | |
257 | case 0x02: /* Left arrow key */ | |
258 | usb_kbd_put_sequence(data, "\e[D"); | |
259 | break; | |
260 | default: | |
9a8c72a6 | 261 | usb_kbd_put_queue(data, keycode); |
c99ffd72 | 262 | break; |
affae2bf | 263 | } |
9a8c72a6 | 264 | |
affae2bf WD |
265 | return 0; |
266 | } | |
267 | ||
9a8c72a6 MV |
268 | static uint32_t usb_kbd_service_key(struct usb_device *dev, int i, int up) |
269 | { | |
270 | uint32_t res = 0; | |
271 | struct usb_kbd_pdata *data = dev->privptr; | |
272 | uint8_t *new; | |
273 | uint8_t *old; | |
274 | ||
275 | if (up) { | |
276 | new = data->old; | |
277 | old = data->new; | |
278 | } else { | |
279 | new = data->new; | |
280 | old = data->old; | |
281 | } | |
282 | ||
08a98b89 AC |
283 | if ((old[i] > 3) && |
284 | (memscan(new + 2, old[i], USB_KBD_BOOT_REPORT_SIZE - 2) == | |
285 | new + USB_KBD_BOOT_REPORT_SIZE)) { | |
9a8c72a6 | 286 | res |= usb_kbd_translate(data, old[i], data->new[0], up); |
08a98b89 | 287 | } |
9a8c72a6 MV |
288 | |
289 | return res; | |
290 | } | |
291 | ||
affae2bf | 292 | /* Interrupt service routine */ |
48c8073e | 293 | static int usb_kbd_irq_worker(struct usb_device *dev) |
affae2bf | 294 | { |
9a8c72a6 MV |
295 | struct usb_kbd_pdata *data = dev->privptr; |
296 | int i, res = 0; | |
4785a694 | 297 | |
9a8c72a6 MV |
298 | /* No combo key pressed */ |
299 | if (data->new[0] == 0x00) | |
300 | data->flags &= ~USB_KBD_CTRL; | |
301 | /* Left or Right Ctrl pressed */ | |
302 | else if ((data->new[0] == LEFT_CNTR) || (data->new[0] == RIGHT_CNTR)) | |
303 | data->flags |= USB_KBD_CTRL; | |
00b7d6ec | 304 | |
08a98b89 | 305 | for (i = 2; i < USB_KBD_BOOT_REPORT_SIZE; i++) { |
9a8c72a6 MV |
306 | res |= usb_kbd_service_key(dev, i, 0); |
307 | res |= usb_kbd_service_key(dev, i, 1); | |
affae2bf | 308 | } |
00b7d6ec | 309 | |
9a8c72a6 MV |
310 | /* Key is still pressed */ |
311 | if ((data->new[2] > 3) && (data->old[2] == data->new[2])) | |
312 | res |= usb_kbd_translate(data, data->new[2], data->new[0], 2); | |
313 | ||
00b7d6ec | 314 | if (res == 1) |
affae2bf | 315 | usb_kbd_setled(dev); |
00b7d6ec | 316 | |
08a98b89 | 317 | memcpy(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE); |
00b7d6ec | 318 | |
9a8c72a6 | 319 | return 1; |
affae2bf WD |
320 | } |
321 | ||
9a8c72a6 | 322 | /* Keyboard interrupt handler */ |
48c8073e MV |
323 | static int usb_kbd_irq(struct usb_device *dev) |
324 | { | |
08a98b89 AC |
325 | if ((dev->irq_status != 0) || |
326 | (dev->irq_act_len != USB_KBD_BOOT_REPORT_SIZE)) { | |
ceb4972a VG |
327 | debug("USB KBD: Error %lX, len %d\n", |
328 | dev->irq_status, dev->irq_act_len); | |
48c8073e MV |
329 | return 1; |
330 | } | |
331 | ||
332 | return usb_kbd_irq_worker(dev); | |
333 | } | |
334 | ||
9a8c72a6 MV |
335 | /* Interrupt polling */ |
336 | static inline void usb_kbd_poll_for_event(struct usb_device *dev) | |
337 | { | |
8454c84a | 338 | #if defined(CONFIG_SYS_USB_EVENT_POLL) |
8f8d7d24 | 339 | struct usb_kbd_pdata *data = dev->privptr; |
f9636e8d AM |
340 | |
341 | /* Submit a interrupt transfer request */ | |
8f8d7d24 HG |
342 | usb_submit_int_msg(dev, data->intpipe, &data->new[0], data->intpktsize, |
343 | data->intinterval); | |
f9636e8d | 344 | |
9a8c72a6 | 345 | usb_kbd_irq_worker(dev); |
8454c84a HG |
346 | #elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP) || \ |
347 | defined(CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE) | |
348 | #if defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP) | |
9a8c72a6 MV |
349 | struct usb_interface *iface; |
350 | struct usb_kbd_pdata *data = dev->privptr; | |
351 | iface = &dev->config.if_desc[0]; | |
352 | usb_get_report(dev, iface->desc.bInterfaceNumber, | |
08a98b89 | 353 | 1, 0, data->new, USB_KBD_BOOT_REPORT_SIZE); |
8454c84a | 354 | if (memcmp(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE)) { |
9a8c72a6 | 355 | usb_kbd_irq_worker(dev); |
8454c84a | 356 | #else |
8e553119 HG |
357 | struct usb_kbd_pdata *data = dev->privptr; |
358 | if (poll_int_queue(dev, data->intq)) { | |
359 | usb_kbd_irq_worker(dev); | |
360 | /* We've consumed all queued int packets, create new */ | |
361 | destroy_int_queue(dev, data->intq); | |
362 | data->intq = create_int_queue(dev, data->intpipe, 1, | |
8bb6c1d1 HG |
363 | USB_KBD_BOOT_REPORT_SIZE, data->new, |
364 | data->intinterval); | |
8454c84a HG |
365 | #endif |
366 | data->last_report = get_timer(0); | |
367 | /* Repeat last usb hid report every REPEAT_RATE ms for keyrepeat */ | |
368 | } else if (data->last_report != -1 && | |
369 | get_timer(data->last_report) > REPEAT_RATE) { | |
370 | usb_kbd_irq_worker(dev); | |
371 | data->last_report = get_timer(0); | |
8e553119 | 372 | } |
9a8c72a6 MV |
373 | #endif |
374 | } | |
375 | ||
376 | /* test if a character is in the queue */ | |
709ea543 | 377 | static int usb_kbd_testc(struct stdio_dev *sdev) |
9a8c72a6 MV |
378 | { |
379 | struct stdio_dev *dev; | |
380 | struct usb_device *usb_kbd_dev; | |
381 | struct usb_kbd_pdata *data; | |
382 | ||
c95e2b9e JL |
383 | #ifdef CONFIG_CMD_NET |
384 | /* | |
385 | * If net_busy_flag is 1, NET transfer is running, | |
386 | * then we check key-pressed every second (first check may be | |
387 | * less than 1 second) to improve TFTP booting performance. | |
388 | */ | |
389 | if (net_busy_flag && (get_timer(kbd_testc_tms) < CONFIG_SYS_HZ)) | |
390 | return 0; | |
391 | kbd_testc_tms = get_timer(0); | |
392 | #endif | |
4fb67f47 | 393 | dev = stdio_get_by_name(sdev->name); |
9a8c72a6 MV |
394 | usb_kbd_dev = (struct usb_device *)dev->priv; |
395 | data = usb_kbd_dev->privptr; | |
396 | ||
397 | usb_kbd_poll_for_event(usb_kbd_dev); | |
398 | ||
399 | return !(data->usb_in_pointer == data->usb_out_pointer); | |
400 | } | |
401 | ||
402 | /* gets the character from the queue */ | |
709ea543 | 403 | static int usb_kbd_getc(struct stdio_dev *sdev) |
9a8c72a6 MV |
404 | { |
405 | struct stdio_dev *dev; | |
406 | struct usb_device *usb_kbd_dev; | |
407 | struct usb_kbd_pdata *data; | |
408 | ||
4fb67f47 | 409 | dev = stdio_get_by_name(sdev->name); |
9a8c72a6 MV |
410 | usb_kbd_dev = (struct usb_device *)dev->priv; |
411 | data = usb_kbd_dev->privptr; | |
412 | ||
f8f3e0e5 MS |
413 | while (data->usb_in_pointer == data->usb_out_pointer) { |
414 | WATCHDOG_RESET(); | |
9a8c72a6 | 415 | usb_kbd_poll_for_event(usb_kbd_dev); |
f8f3e0e5 | 416 | } |
9a8c72a6 MV |
417 | |
418 | if (data->usb_out_pointer == USB_KBD_BUFFER_LEN - 1) | |
419 | data->usb_out_pointer = 0; | |
420 | else | |
421 | data->usb_out_pointer++; | |
422 | ||
423 | return data->usb_kbd_buffer[data->usb_out_pointer]; | |
424 | } | |
425 | ||
426 | /* probes the USB device dev for keyboard type. */ | |
34ab37ee | 427 | static int usb_kbd_probe_dev(struct usb_device *dev, unsigned int ifnum) |
affae2bf | 428 | { |
8f8bd565 | 429 | struct usb_interface *iface; |
affae2bf | 430 | struct usb_endpoint_descriptor *ep; |
9a8c72a6 | 431 | struct usb_kbd_pdata *data; |
affae2bf | 432 | |
00b7d6ec MV |
433 | if (dev->descriptor.bNumConfigurations != 1) |
434 | return 0; | |
9a8c72a6 | 435 | |
affae2bf WD |
436 | iface = &dev->config.if_desc[ifnum]; |
437 | ||
2cdb58eb | 438 | if (iface->desc.bInterfaceClass != USB_CLASS_HID) |
8f8bd565 | 439 | return 0; |
9a8c72a6 | 440 | |
2cdb58eb | 441 | if (iface->desc.bInterfaceSubClass != USB_SUB_HID_BOOT) |
8f8bd565 | 442 | return 0; |
9a8c72a6 | 443 | |
2cdb58eb | 444 | if (iface->desc.bInterfaceProtocol != USB_PROT_HID_KEYBOARD) |
8f8bd565 | 445 | return 0; |
9a8c72a6 | 446 | |
8f8bd565 TR |
447 | if (iface->desc.bNumEndpoints != 1) |
448 | return 0; | |
affae2bf WD |
449 | |
450 | ep = &iface->ep_desc[0]; | |
451 | ||
9a8c72a6 | 452 | /* Check if endpoint 1 is interrupt endpoint */ |
00b7d6ec MV |
453 | if (!(ep->bEndpointAddress & 0x80)) |
454 | return 0; | |
9a8c72a6 | 455 | |
00b7d6ec MV |
456 | if ((ep->bmAttributes & 3) != 3) |
457 | return 0; | |
9a8c72a6 | 458 | |
ceb4972a | 459 | debug("USB KBD: found set protocol...\n"); |
9a8c72a6 MV |
460 | |
461 | data = malloc(sizeof(struct usb_kbd_pdata)); | |
462 | if (!data) { | |
463 | printf("USB KBD: Error allocating private data\n"); | |
464 | return 0; | |
465 | } | |
466 | ||
467 | /* Clear private data */ | |
468 | memset(data, 0, sizeof(struct usb_kbd_pdata)); | |
469 | ||
d7475386 | 470 | /* allocate input buffer aligned and sized to USB DMA alignment */ |
08a98b89 AC |
471 | data->new = memalign(USB_DMA_MINALIGN, |
472 | roundup(USB_KBD_BOOT_REPORT_SIZE, USB_DMA_MINALIGN)); | |
d7475386 | 473 | |
9a8c72a6 MV |
474 | /* Insert private data into USB device structure */ |
475 | dev->privptr = data; | |
476 | ||
477 | /* Set IRQ handler */ | |
478 | dev->irq_handle = usb_kbd_irq; | |
479 | ||
8f8d7d24 HG |
480 | data->intpipe = usb_rcvintpipe(dev, ep->bEndpointAddress); |
481 | data->intpktsize = min(usb_maxpacket(dev, data->intpipe), | |
482 | USB_KBD_BOOT_REPORT_SIZE); | |
483 | data->intinterval = ep->bInterval; | |
8454c84a | 484 | data->last_report = -1; |
9a8c72a6 MV |
485 | |
486 | /* We found a USB Keyboard, install it. */ | |
487 | usb_set_protocol(dev, iface->desc.bInterfaceNumber, 0); | |
488 | ||
de451493 | 489 | debug("USB KBD: found set idle...\n"); |
8454c84a HG |
490 | #if !defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP) && \ |
491 | !defined(CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE) | |
8454c84a | 492 | usb_set_idle(dev, iface->desc.bInterfaceNumber, REPEAT_RATE / 4, 0); |
de451493 HG |
493 | #else |
494 | usb_set_idle(dev, iface->desc.bInterfaceNumber, 0, 0); | |
8454c84a | 495 | #endif |
9a8c72a6 | 496 | |
ceb4972a | 497 | debug("USB KBD: enable interrupt pipe...\n"); |
8e553119 HG |
498 | #ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE |
499 | data->intq = create_int_queue(dev, data->intpipe, 1, | |
8bb6c1d1 HG |
500 | USB_KBD_BOOT_REPORT_SIZE, data->new, |
501 | data->intinterval); | |
8e553119 | 502 | if (!data->intq) { |
e4b70d80 SW |
503 | #elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP) |
504 | if (usb_get_report(dev, iface->desc.bInterfaceNumber, | |
505 | 1, 0, data->new, USB_KBD_BOOT_REPORT_SIZE) < 0) { | |
8e553119 | 506 | #else |
8f8d7d24 HG |
507 | if (usb_submit_int_msg(dev, data->intpipe, data->new, data->intpktsize, |
508 | data->intinterval) < 0) { | |
8e553119 | 509 | #endif |
5da2dc97 VP |
510 | printf("Failed to get keyboard state from device %04x:%04x\n", |
511 | dev->descriptor.idVendor, dev->descriptor.idProduct); | |
512 | /* Abort, we don't want to use that non-functional keyboard. */ | |
513 | return 0; | |
514 | } | |
9a8c72a6 MV |
515 | |
516 | /* Success. */ | |
affae2bf WD |
517 | return 1; |
518 | } | |
519 | ||
603afaf0 SG |
520 | static int probe_usb_keyboard(struct usb_device *dev) |
521 | { | |
522 | char *stdinname; | |
523 | struct stdio_dev usb_kbd_dev; | |
524 | int error; | |
525 | ||
526 | /* Try probing the keyboard */ | |
34ab37ee | 527 | if (usb_kbd_probe_dev(dev, 0) != 1) |
603afaf0 SG |
528 | return -ENOENT; |
529 | ||
530 | /* Register the keyboard */ | |
531 | debug("USB KBD: register.\n"); | |
532 | memset(&usb_kbd_dev, 0, sizeof(struct stdio_dev)); | |
533 | strcpy(usb_kbd_dev.name, DEVNAME); | |
1caf934a | 534 | usb_kbd_dev.flags = DEV_FLAGS_INPUT; |
603afaf0 SG |
535 | usb_kbd_dev.getc = usb_kbd_getc; |
536 | usb_kbd_dev.tstc = usb_kbd_testc; | |
537 | usb_kbd_dev.priv = (void *)dev; | |
538 | error = stdio_register(&usb_kbd_dev); | |
539 | if (error) | |
540 | return error; | |
541 | ||
00caae6d | 542 | stdinname = env_get("stdin"); |
b0265429 | 543 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
603afaf0 SG |
544 | error = iomux_doenv(stdin, stdinname); |
545 | if (error) | |
546 | return error; | |
547 | #else | |
548 | /* Check if this is the standard input device. */ | |
549 | if (strcmp(stdinname, DEVNAME)) | |
550 | return 1; | |
551 | ||
552 | /* Reassign the console */ | |
553 | if (overwrite_console()) | |
554 | return 1; | |
555 | ||
556 | error = console_assign(stdin, DEVNAME); | |
557 | if (error) | |
558 | return error; | |
559 | #endif | |
560 | ||
561 | return 0; | |
562 | } | |
563 | ||
fd09c205 | 564 | #if !CONFIG_IS_ENABLED(DM_USB) |
9a8c72a6 MV |
565 | /* Search for keyboard and register it if found. */ |
566 | int drv_usb_kbd_init(void) | |
567 | { | |
9a8c72a6 MV |
568 | int error, i; |
569 | ||
697033cb | 570 | debug("%s: Probing for keyboard\n", __func__); |
697033cb | 571 | /* Scan all USB Devices */ |
9a8c72a6 | 572 | for (i = 0; i < USB_MAX_DEVICE; i++) { |
603afaf0 SG |
573 | struct usb_device *dev; |
574 | ||
9a8c72a6 MV |
575 | /* Get USB device. */ |
576 | dev = usb_get_dev_index(i); | |
577 | if (!dev) | |
603afaf0 | 578 | break; |
9a8c72a6 MV |
579 | |
580 | if (dev->devnum == -1) | |
581 | continue; | |
582 | ||
603afaf0 SG |
583 | error = probe_usb_keyboard(dev); |
584 | if (!error) | |
9a8c72a6 | 585 | return 1; |
603afaf0 | 586 | if (error && error != -ENOENT) |
9a8c72a6 | 587 | return error; |
9a8c72a6 MV |
588 | } |
589 | ||
590 | /* No USB Keyboard found */ | |
591 | return -1; | |
592 | } | |
593 | ||
594 | /* Deregister the keyboard. */ | |
8a8a2257 | 595 | int usb_kbd_deregister(int force) |
9a8c72a6 | 596 | { |
869588de | 597 | #if CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER) |
dfe5b1c8 HG |
598 | struct stdio_dev *dev; |
599 | struct usb_device *usb_kbd_dev; | |
600 | struct usb_kbd_pdata *data; | |
601 | ||
602 | dev = stdio_get_by_name(DEVNAME); | |
603 | if (dev) { | |
604 | usb_kbd_dev = (struct usb_device *)dev->priv; | |
605 | data = usb_kbd_dev->privptr; | |
606 | if (stdio_deregister_dev(dev, force) != 0) | |
607 | return 1; | |
b0265429 | 608 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
00caae6d | 609 | if (iomux_doenv(stdin, env_get("stdin")) != 0) |
3cbcb289 HG |
610 | return 1; |
611 | #endif | |
8e553119 HG |
612 | #ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE |
613 | destroy_int_queue(usb_kbd_dev, data->intq); | |
614 | #endif | |
dfe5b1c8 HG |
615 | free(data->new); |
616 | free(data); | |
617 | } | |
0ea09dfe HG |
618 | |
619 | return 0; | |
9a8c72a6 MV |
620 | #else |
621 | return 1; | |
622 | #endif | |
623 | } | |
34ab37ee | 624 | |
9a80e714 HG |
625 | #endif |
626 | ||
fd09c205 | 627 | #if CONFIG_IS_ENABLED(DM_USB) |
34ab37ee SG |
628 | |
629 | static int usb_kbd_probe(struct udevice *dev) | |
630 | { | |
631 | struct usb_device *udev = dev_get_parent_priv(dev); | |
34ab37ee | 632 | |
8319aeb1 | 633 | return probe_usb_keyboard(udev); |
34ab37ee SG |
634 | } |
635 | ||
8a834870 SG |
636 | static int usb_kbd_remove(struct udevice *dev) |
637 | { | |
638 | struct usb_device *udev = dev_get_parent_priv(dev); | |
639 | struct usb_kbd_pdata *data; | |
640 | struct stdio_dev *sdev; | |
641 | int ret; | |
642 | ||
643 | sdev = stdio_get_by_name(DEVNAME); | |
644 | if (!sdev) { | |
645 | ret = -ENXIO; | |
646 | goto err; | |
647 | } | |
648 | data = udev->privptr; | |
649 | if (stdio_deregister_dev(sdev, true)) { | |
650 | ret = -EPERM; | |
651 | goto err; | |
652 | } | |
b0265429 | 653 | #if CONFIG_IS_ENABLED(CONSOLE_MUX) |
00caae6d | 654 | if (iomux_doenv(stdin, env_get("stdin"))) { |
8a834870 SG |
655 | ret = -ENOLINK; |
656 | goto err; | |
657 | } | |
658 | #endif | |
659 | #ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE | |
660 | destroy_int_queue(udev, data->intq); | |
661 | #endif | |
662 | free(data->new); | |
663 | free(data); | |
664 | ||
665 | return 0; | |
666 | err: | |
667 | printf("%s: warning, ret=%d", __func__, ret); | |
668 | return ret; | |
669 | } | |
670 | ||
34ab37ee SG |
671 | static const struct udevice_id usb_kbd_ids[] = { |
672 | { .compatible = "usb-keyboard" }, | |
673 | { } | |
674 | }; | |
675 | ||
676 | U_BOOT_DRIVER(usb_kbd) = { | |
677 | .name = "usb_kbd", | |
678 | .id = UCLASS_KEYBOARD, | |
679 | .of_match = usb_kbd_ids, | |
680 | .probe = usb_kbd_probe, | |
8a834870 | 681 | .remove = usb_kbd_remove, |
34ab37ee SG |
682 | }; |
683 | ||
34ab37ee SG |
684 | static const struct usb_device_id kbd_id_table[] = { |
685 | { | |
686 | .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS | | |
687 | USB_DEVICE_ID_MATCH_INT_SUBCLASS | | |
688 | USB_DEVICE_ID_MATCH_INT_PROTOCOL, | |
689 | .bInterfaceClass = USB_CLASS_HID, | |
2cdb58eb SG |
690 | .bInterfaceSubClass = USB_SUB_HID_BOOT, |
691 | .bInterfaceProtocol = USB_PROT_HID_KEYBOARD, | |
34ab37ee SG |
692 | }, |
693 | { } /* Terminating entry */ | |
694 | }; | |
695 | ||
696 | U_BOOT_USB_DEVICE(usb_kbd, kbd_id_table); | |
697 | ||
698 | #endif |