3 * Denis Peter, MPL AG Switzerland
5 * Part of this source has been derived from the Linux USB
8 * SPDX-License-Identifier: GPL-2.0+
14 #include <stdio_dev.h>
15 #include <asm/byteorder.h>
20 * If overwrite_console returns 1, the stdin, stderr and stdout
21 * are switched to the serial port, else the settings in the
22 * environment are used
24 #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
25 extern int overwrite_console(void);
27 int overwrite_console(void)
33 /* Keyboard sampling rate */
34 #define REPEAT_RATE 40 /* 40msec -> 25cps */
35 #define REPEAT_DELAY 10 /* 10 x REPEAT_RATE = 400msec */
38 #define CAPS_LOCK 0x39
39 #define SCROLL_LOCK 0x47
42 #define LEFT_CNTR (1 << 0)
43 #define LEFT_SHIFT (1 << 1)
44 #define LEFT_ALT (1 << 2)
45 #define LEFT_GUI (1 << 3)
46 #define RIGHT_CNTR (1 << 4)
47 #define RIGHT_SHIFT (1 << 5)
48 #define RIGHT_ALT (1 << 6)
49 #define RIGHT_GUI (1 << 7)
51 /* Size of the keyboard buffer */
52 #define USB_KBD_BUFFER_LEN 0x20
55 #define DEVNAME "usbkbd"
58 static const unsigned char usb_kbd_numkey[] = {
59 '1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
60 '\r', 0x1b, '\b', '\t', ' ', '-', '=', '[', ']',
61 '\\', '#', ';', '\'', '`', ',', '.', '/'
63 static const unsigned char usb_kbd_numkey_shifted[] = {
64 '!', '@', '#', '$', '%', '^', '&', '*', '(', ')',
65 '\r', 0x1b, '\b', '\t', ' ', '_', '+', '{', '}',
66 '|', '~', ':', '"', '~', '<', '>', '?'
69 static const unsigned char usb_kbd_num_keypad[] = {
70 '/', '*', '-', '+', '\r',
71 '1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
76 * map arrow keys to ^F/^B ^N/^P, can't really use the proper
77 * ANSI sequence for arrow keys because the queuing code breaks
78 * when a single keypress expands to 3 queue elements
80 static const unsigned char usb_kbd_arrow[] = {
85 * NOTE: It's important for the NUM, CAPS, SCROLL-lock bits to be in this
86 * order. See usb_kbd_setled() function!
88 #define USB_KBD_NUMLOCK (1 << 0)
89 #define USB_KBD_CAPSLOCK (1 << 1)
90 #define USB_KBD_SCROLLLOCK (1 << 2)
91 #define USB_KBD_CTRL (1 << 3)
93 #define USB_KBD_LEDMASK \
94 (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK)
97 * USB Keyboard reports are 8 bytes in boot protocol.
98 * Appendix B of HID Device Class Definition 1.11
100 #define USB_KBD_BOOT_REPORT_SIZE 8
102 struct usb_kbd_pdata {
103 unsigned long intpipe;
106 unsigned long last_report;
107 struct int_queue *intq;
109 uint32_t repeat_delay;
111 uint32_t usb_in_pointer;
112 uint32_t usb_out_pointer;
113 uint8_t usb_kbd_buffer[USB_KBD_BUFFER_LEN];
116 uint8_t old[USB_KBD_BOOT_REPORT_SIZE];
121 extern int __maybe_unused net_busy_flag;
123 /* The period of time between two calls of usb_kbd_testc(). */
124 static unsigned long __maybe_unused kbd_testc_tms;
126 /* Puts character in the queue and sets up the in and out pointer. */
127 static void usb_kbd_put_queue(struct usb_kbd_pdata *data, char c)
129 if (data->usb_in_pointer == USB_KBD_BUFFER_LEN - 1) {
130 /* Check for buffer full. */
131 if (data->usb_out_pointer == 0)
134 data->usb_in_pointer = 0;
136 /* Check for buffer full. */
137 if (data->usb_in_pointer == data->usb_out_pointer - 1)
140 data->usb_in_pointer++;
143 data->usb_kbd_buffer[data->usb_in_pointer] = c;
147 * Set the LEDs. Since this is used in the irq routine, the control job is
148 * issued with a timeout of 0. This means, that the job is queued without
149 * waiting for job completion.
151 static void usb_kbd_setled(struct usb_device *dev)
153 struct usb_interface *iface = &dev->config.if_desc[0];
154 struct usb_kbd_pdata *data = dev->privptr;
155 ALLOC_ALIGN_BUFFER(uint32_t, leds, 1, USB_DMA_MINALIGN);
157 *leds = data->flags & USB_KBD_LEDMASK;
158 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
159 USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
160 0x200, iface->desc.bInterfaceNumber, leds, 1, 0);
163 #define CAPITAL_MASK 0x20
164 /* Translate the scancode in ASCII */
165 static int usb_kbd_translate(struct usb_kbd_pdata *data, unsigned char scancode,
166 unsigned char modifier, int pressed)
172 data->repeat_delay = 0;
177 data->repeat_delay++;
178 if (data->repeat_delay < REPEAT_DELAY)
181 data->repeat_delay = REPEAT_DELAY;
184 /* Alphanumeric values */
185 if ((scancode > 3) && (scancode <= 0x1d)) {
186 keycode = scancode - 4 + 'a';
188 if (data->flags & USB_KBD_CAPSLOCK)
189 keycode &= ~CAPITAL_MASK;
191 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) {
192 /* Handle CAPSLock + Shift pressed simultaneously */
193 if (keycode & CAPITAL_MASK)
194 keycode &= ~CAPITAL_MASK;
196 keycode |= CAPITAL_MASK;
200 if ((scancode > 0x1d) && (scancode < 0x3a)) {
202 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT))
203 keycode = usb_kbd_numkey_shifted[scancode - 0x1e];
205 keycode = usb_kbd_numkey[scancode - 0x1e];
209 if ((scancode >= 0x4f) && (scancode <= 0x52))
210 keycode = usb_kbd_arrow[scancode - 0x4f];
213 if ((scancode >= 0x54) && (scancode <= 0x67))
214 keycode = usb_kbd_num_keypad[scancode - 0x54];
216 if (data->flags & USB_KBD_CTRL)
217 keycode = scancode - 0x3;
220 if (scancode == NUM_LOCK) {
221 data->flags ^= USB_KBD_NUMLOCK;
225 if (scancode == CAPS_LOCK) {
226 data->flags ^= USB_KBD_CAPSLOCK;
229 if (scancode == SCROLL_LOCK) {
230 data->flags ^= USB_KBD_SCROLLLOCK;
235 /* Report keycode if any */
237 debug("%c", keycode);
238 usb_kbd_put_queue(data, keycode);
244 static uint32_t usb_kbd_service_key(struct usb_device *dev, int i, int up)
247 struct usb_kbd_pdata *data = dev->privptr;
260 (memscan(new + 2, old[i], USB_KBD_BOOT_REPORT_SIZE - 2) ==
261 new + USB_KBD_BOOT_REPORT_SIZE)) {
262 res |= usb_kbd_translate(data, old[i], data->new[0], up);
268 /* Interrupt service routine */
269 static int usb_kbd_irq_worker(struct usb_device *dev)
271 struct usb_kbd_pdata *data = dev->privptr;
274 /* No combo key pressed */
275 if (data->new[0] == 0x00)
276 data->flags &= ~USB_KBD_CTRL;
277 /* Left or Right Ctrl pressed */
278 else if ((data->new[0] == LEFT_CNTR) || (data->new[0] == RIGHT_CNTR))
279 data->flags |= USB_KBD_CTRL;
281 for (i = 2; i < USB_KBD_BOOT_REPORT_SIZE; i++) {
282 res |= usb_kbd_service_key(dev, i, 0);
283 res |= usb_kbd_service_key(dev, i, 1);
286 /* Key is still pressed */
287 if ((data->new[2] > 3) && (data->old[2] == data->new[2]))
288 res |= usb_kbd_translate(data, data->new[2], data->new[0], 2);
293 memcpy(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE);
298 /* Keyboard interrupt handler */
299 static int usb_kbd_irq(struct usb_device *dev)
301 if ((dev->irq_status != 0) ||
302 (dev->irq_act_len != USB_KBD_BOOT_REPORT_SIZE)) {
303 debug("USB KBD: Error %lX, len %d\n",
304 dev->irq_status, dev->irq_act_len);
308 return usb_kbd_irq_worker(dev);
311 /* Interrupt polling */
312 static inline void usb_kbd_poll_for_event(struct usb_device *dev)
314 #if defined(CONFIG_SYS_USB_EVENT_POLL)
315 struct usb_kbd_pdata *data = dev->privptr;
317 /* Submit a interrupt transfer request */
318 usb_submit_int_msg(dev, data->intpipe, &data->new[0], data->intpktsize,
321 usb_kbd_irq_worker(dev);
322 #elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP) || \
323 defined(CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE)
324 #if defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP)
325 struct usb_interface *iface;
326 struct usb_kbd_pdata *data = dev->privptr;
327 iface = &dev->config.if_desc[0];
328 usb_get_report(dev, iface->desc.bInterfaceNumber,
329 1, 0, data->new, USB_KBD_BOOT_REPORT_SIZE);
330 if (memcmp(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE)) {
331 usb_kbd_irq_worker(dev);
333 struct usb_kbd_pdata *data = dev->privptr;
334 if (poll_int_queue(dev, data->intq)) {
335 usb_kbd_irq_worker(dev);
336 /* We've consumed all queued int packets, create new */
337 destroy_int_queue(dev, data->intq);
338 data->intq = create_int_queue(dev, data->intpipe, 1,
339 USB_KBD_BOOT_REPORT_SIZE, data->new,
342 data->last_report = get_timer(0);
343 /* Repeat last usb hid report every REPEAT_RATE ms for keyrepeat */
344 } else if (data->last_report != -1 &&
345 get_timer(data->last_report) > REPEAT_RATE) {
346 usb_kbd_irq_worker(dev);
347 data->last_report = get_timer(0);
352 /* test if a character is in the queue */
353 static int usb_kbd_testc(struct stdio_dev *sdev)
355 struct stdio_dev *dev;
356 struct usb_device *usb_kbd_dev;
357 struct usb_kbd_pdata *data;
359 #ifdef CONFIG_CMD_NET
361 * If net_busy_flag is 1, NET transfer is running,
362 * then we check key-pressed every second (first check may be
363 * less than 1 second) to improve TFTP booting performance.
365 if (net_busy_flag && (get_timer(kbd_testc_tms) < CONFIG_SYS_HZ))
367 kbd_testc_tms = get_timer(0);
369 dev = stdio_get_by_name(DEVNAME);
370 usb_kbd_dev = (struct usb_device *)dev->priv;
371 data = usb_kbd_dev->privptr;
373 usb_kbd_poll_for_event(usb_kbd_dev);
375 return !(data->usb_in_pointer == data->usb_out_pointer);
378 /* gets the character from the queue */
379 static int usb_kbd_getc(struct stdio_dev *sdev)
381 struct stdio_dev *dev;
382 struct usb_device *usb_kbd_dev;
383 struct usb_kbd_pdata *data;
385 dev = stdio_get_by_name(DEVNAME);
386 usb_kbd_dev = (struct usb_device *)dev->priv;
387 data = usb_kbd_dev->privptr;
389 while (data->usb_in_pointer == data->usb_out_pointer)
390 usb_kbd_poll_for_event(usb_kbd_dev);
392 if (data->usb_out_pointer == USB_KBD_BUFFER_LEN - 1)
393 data->usb_out_pointer = 0;
395 data->usb_out_pointer++;
397 return data->usb_kbd_buffer[data->usb_out_pointer];
400 /* probes the USB device dev for keyboard type. */
401 static int usb_kbd_probe(struct usb_device *dev, unsigned int ifnum)
403 struct usb_interface *iface;
404 struct usb_endpoint_descriptor *ep;
405 struct usb_kbd_pdata *data;
407 if (dev->descriptor.bNumConfigurations != 1)
410 iface = &dev->config.if_desc[ifnum];
412 if (iface->desc.bInterfaceClass != 3)
415 if (iface->desc.bInterfaceSubClass != 1)
418 if (iface->desc.bInterfaceProtocol != 1)
421 if (iface->desc.bNumEndpoints != 1)
424 ep = &iface->ep_desc[0];
426 /* Check if endpoint 1 is interrupt endpoint */
427 if (!(ep->bEndpointAddress & 0x80))
430 if ((ep->bmAttributes & 3) != 3)
433 debug("USB KBD: found set protocol...\n");
435 data = malloc(sizeof(struct usb_kbd_pdata));
437 printf("USB KBD: Error allocating private data\n");
441 /* Clear private data */
442 memset(data, 0, sizeof(struct usb_kbd_pdata));
444 /* allocate input buffer aligned and sized to USB DMA alignment */
445 data->new = memalign(USB_DMA_MINALIGN,
446 roundup(USB_KBD_BOOT_REPORT_SIZE, USB_DMA_MINALIGN));
448 /* Insert private data into USB device structure */
451 /* Set IRQ handler */
452 dev->irq_handle = usb_kbd_irq;
454 data->intpipe = usb_rcvintpipe(dev, ep->bEndpointAddress);
455 data->intpktsize = min(usb_maxpacket(dev, data->intpipe),
456 USB_KBD_BOOT_REPORT_SIZE);
457 data->intinterval = ep->bInterval;
458 data->last_report = -1;
460 /* We found a USB Keyboard, install it. */
461 usb_set_protocol(dev, iface->desc.bInterfaceNumber, 0);
463 #if !defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP) && \
464 !defined(CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE)
465 debug("USB KBD: found set idle...\n");
466 usb_set_idle(dev, iface->desc.bInterfaceNumber, REPEAT_RATE / 4, 0);
469 debug("USB KBD: enable interrupt pipe...\n");
470 #ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE
471 data->intq = create_int_queue(dev, data->intpipe, 1,
472 USB_KBD_BOOT_REPORT_SIZE, data->new,
476 if (usb_submit_int_msg(dev, data->intpipe, data->new, data->intpktsize,
477 data->intinterval) < 0) {
479 printf("Failed to get keyboard state from device %04x:%04x\n",
480 dev->descriptor.idVendor, dev->descriptor.idProduct);
481 /* Abort, we don't want to use that non-functional keyboard. */
489 static int probe_usb_keyboard(struct usb_device *dev)
492 struct stdio_dev usb_kbd_dev;
495 /* Try probing the keyboard */
496 if (usb_kbd_probe(dev, 0) != 1)
499 /* Register the keyboard */
500 debug("USB KBD: register.\n");
501 memset(&usb_kbd_dev, 0, sizeof(struct stdio_dev));
502 strcpy(usb_kbd_dev.name, DEVNAME);
503 usb_kbd_dev.flags = DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM;
504 usb_kbd_dev.getc = usb_kbd_getc;
505 usb_kbd_dev.tstc = usb_kbd_testc;
506 usb_kbd_dev.priv = (void *)dev;
507 error = stdio_register(&usb_kbd_dev);
511 stdinname = getenv("stdin");
512 #ifdef CONFIG_CONSOLE_MUX
513 error = iomux_doenv(stdin, stdinname);
517 /* Check if this is the standard input device. */
518 if (strcmp(stdinname, DEVNAME))
521 /* Reassign the console */
522 if (overwrite_console())
525 error = console_assign(stdin, DEVNAME);
533 /* Search for keyboard and register it if found. */
534 int drv_usb_kbd_init(void)
538 debug("%s: Probing for keyboard\n", __func__);
541 * TODO: We should add USB_DEVICE() declarations to each USB ethernet
542 * driver and then most of this file can be removed.
548 ret = uclass_get(UCLASS_USB, &uc);
551 uclass_foreach_dev(bus, uc) {
552 for (i = 0; i < USB_MAX_DEVICE; i++) {
553 struct usb_device *dev;
555 dev = usb_get_dev_index(bus, i); /* get device */
556 debug("i=%d, %p\n", i, dev);
558 break; /* no more devices available */
560 error = probe_usb_keyboard(dev);
563 if (error && error != -ENOENT)
568 /* Scan all USB Devices */
569 for (i = 0; i < USB_MAX_DEVICE; i++) {
570 struct usb_device *dev;
572 /* Get USB device. */
573 dev = usb_get_dev_index(i);
577 if (dev->devnum == -1)
580 error = probe_usb_keyboard(dev);
583 if (error && error != -ENOENT)
588 /* No USB Keyboard found */
592 /* Deregister the keyboard. */
593 int usb_kbd_deregister(int force)
595 #ifdef CONFIG_SYS_STDIO_DEREGISTER
596 struct stdio_dev *dev;
597 struct usb_device *usb_kbd_dev;
598 struct usb_kbd_pdata *data;
600 dev = stdio_get_by_name(DEVNAME);
602 usb_kbd_dev = (struct usb_device *)dev->priv;
603 data = usb_kbd_dev->privptr;
604 if (stdio_deregister_dev(dev, force) != 0)
606 #ifdef CONFIG_CONSOLE_MUX
607 if (iomux_doenv(stdin, getenv("stdin")) != 0)
610 #ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE
611 destroy_int_queue(usb_kbd_dev, data->intq);