wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Denis Peter, MPL AG Switzerland |
| 4 | * |
| 5 | * Part of this source has been derived from the Linux USB |
| 6 | * project. |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 9 | */ |
| 10 | #include <common.h> |
Simon Glass | 697033c | 2015-03-25 12:22:34 -0600 | [diff] [blame] | 11 | #include <dm.h> |
Hans de Goede | 0ea09df | 2014-09-20 16:54:34 +0200 | [diff] [blame] | 12 | #include <errno.h> |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 13 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 14 | #include <stdio_dev.h> |
Christian Eggers | c918261 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 15 | #include <asm/byteorder.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 16 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 17 | #include <usb.h> |
| 18 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 19 | /* |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 20 | * If overwrite_console returns 1, the stdin, stderr and stdout |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 21 | * are switched to the serial port, else the settings in the |
| 22 | * environment are used |
| 23 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 24 | #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 25 | extern int overwrite_console(void); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 26 | #else |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 27 | int overwrite_console(void) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 28 | { |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 29 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 30 | } |
| 31 | #endif |
| 32 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 33 | /* Keyboard sampling rate */ |
| 34 | #define REPEAT_RATE (40 / 4) /* 40msec -> 25cps */ |
| 35 | #define REPEAT_DELAY 10 /* 10 x REPEAT_RATE = 400msec */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 36 | |
| 37 | #define NUM_LOCK 0x53 |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 38 | #define CAPS_LOCK 0x39 |
| 39 | #define SCROLL_LOCK 0x47 |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 40 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 41 | /* Modifier bits */ |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 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) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 50 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 51 | /* Size of the keyboard buffer */ |
| 52 | #define USB_KBD_BUFFER_LEN 0x20 |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 53 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 54 | /* Device name */ |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 55 | #define DEVNAME "usbkbd" |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 56 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 57 | /* Keyboard maps */ |
| 58 | static const unsigned char usb_kbd_numkey[] = { |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 59 | '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', |
| 60 | '\r', 0x1b, '\b', '\t', ' ', '-', '=', '[', ']', |
| 61 | '\\', '#', ';', '\'', '`', ',', '.', '/' |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 62 | }; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 63 | static const unsigned char usb_kbd_numkey_shifted[] = { |
Marek Vasut | 00b7d6e | 2011-10-10 05:34:25 +0000 | [diff] [blame] | 64 | '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', |
| 65 | '\r', 0x1b, '\b', '\t', ' ', '_', '+', '{', '}', |
| 66 | '|', '~', ':', '"', '~', '<', '>', '?' |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 67 | }; |
| 68 | |
Vincent Palatin | d53da84 | 2012-01-09 12:59:36 +0000 | [diff] [blame] | 69 | static const unsigned char usb_kbd_num_keypad[] = { |
| 70 | '/', '*', '-', '+', '\r', |
| 71 | '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', |
| 72 | '.', 0, 0, 0, '=' |
| 73 | }; |
| 74 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 75 | /* |
Allen Martin | 4151a40 | 2012-11-06 13:26:03 -0800 | [diff] [blame] | 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 |
| 79 | */ |
| 80 | static const unsigned char usb_kbd_arrow[] = { |
| 81 | 0x6, 0x2, 0xe, 0x10 |
| 82 | }; |
| 83 | |
| 84 | /* |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 85 | * NOTE: It's important for the NUM, CAPS, SCROLL-lock bits to be in this |
| 86 | * order. See usb_kbd_setled() function! |
| 87 | */ |
| 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) |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 92 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 93 | #define USB_KBD_LEDMASK \ |
| 94 | (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK) |
| 95 | |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 96 | /* |
| 97 | * USB Keyboard reports are 8 bytes in boot protocol. |
| 98 | * Appendix B of HID Device Class Definition 1.11 |
| 99 | */ |
| 100 | #define USB_KBD_BOOT_REPORT_SIZE 8 |
| 101 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 102 | struct usb_kbd_pdata { |
Hans de Goede | 8f8d7d2 | 2014-09-24 14:06:10 +0200 | [diff] [blame] | 103 | unsigned long intpipe; |
| 104 | int intpktsize; |
| 105 | int intinterval; |
Hans de Goede | 8e55311 | 2014-09-24 14:06:11 +0200 | [diff] [blame] | 106 | struct int_queue *intq; |
Hans de Goede | 8f8d7d2 | 2014-09-24 14:06:10 +0200 | [diff] [blame] | 107 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 108 | uint32_t repeat_delay; |
| 109 | |
| 110 | uint32_t usb_in_pointer; |
| 111 | uint32_t usb_out_pointer; |
| 112 | uint8_t usb_kbd_buffer[USB_KBD_BUFFER_LEN]; |
| 113 | |
Allen Martin | d747538 | 2012-10-24 08:32:04 +0000 | [diff] [blame] | 114 | uint8_t *new; |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 115 | uint8_t old[USB_KBD_BOOT_REPORT_SIZE]; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 116 | |
| 117 | uint8_t flags; |
| 118 | }; |
| 119 | |
Jim Lin | 07551f2 | 2013-08-13 19:04:22 +0800 | [diff] [blame] | 120 | extern int __maybe_unused net_busy_flag; |
| 121 | |
| 122 | /* The period of time between two calls of usb_kbd_testc(). */ |
| 123 | static unsigned long __maybe_unused kbd_testc_tms; |
| 124 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 125 | /* Puts character in the queue and sets up the in and out pointer. */ |
| 126 | static void usb_kbd_put_queue(struct usb_kbd_pdata *data, char c) |
| 127 | { |
| 128 | if (data->usb_in_pointer == USB_KBD_BUFFER_LEN - 1) { |
| 129 | /* Check for buffer full. */ |
| 130 | if (data->usb_out_pointer == 0) |
| 131 | return; |
| 132 | |
| 133 | data->usb_in_pointer = 0; |
| 134 | } else { |
| 135 | /* Check for buffer full. */ |
| 136 | if (data->usb_in_pointer == data->usb_out_pointer - 1) |
| 137 | return; |
| 138 | |
| 139 | data->usb_in_pointer++; |
| 140 | } |
| 141 | |
| 142 | data->usb_kbd_buffer[data->usb_in_pointer] = c; |
| 143 | } |
| 144 | |
| 145 | /* |
| 146 | * Set the LEDs. Since this is used in the irq routine, the control job is |
| 147 | * issued with a timeout of 0. This means, that the job is queued without |
| 148 | * waiting for job completion. |
| 149 | */ |
| 150 | static void usb_kbd_setled(struct usb_device *dev) |
| 151 | { |
| 152 | struct usb_interface *iface = &dev->config.if_desc[0]; |
| 153 | struct usb_kbd_pdata *data = dev->privptr; |
Hans de Goede | 9b23938 | 2014-09-20 16:51:26 +0200 | [diff] [blame] | 154 | ALLOC_ALIGN_BUFFER(uint32_t, leds, 1, USB_DMA_MINALIGN); |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 155 | |
Hans de Goede | 9b23938 | 2014-09-20 16:51:26 +0200 | [diff] [blame] | 156 | *leds = data->flags & USB_KBD_LEDMASK; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 157 | usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 158 | USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
Hans de Goede | 9b23938 | 2014-09-20 16:51:26 +0200 | [diff] [blame] | 159 | 0x200, iface->desc.bInterfaceNumber, leds, 1, 0); |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | #define CAPITAL_MASK 0x20 |
| 163 | /* Translate the scancode in ASCII */ |
| 164 | static int usb_kbd_translate(struct usb_kbd_pdata *data, unsigned char scancode, |
| 165 | unsigned char modifier, int pressed) |
| 166 | { |
| 167 | uint8_t keycode = 0; |
| 168 | |
| 169 | /* Key released */ |
| 170 | if (pressed == 0) { |
| 171 | data->repeat_delay = 0; |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | if (pressed == 2) { |
| 176 | data->repeat_delay++; |
| 177 | if (data->repeat_delay < REPEAT_DELAY) |
| 178 | return 0; |
| 179 | |
| 180 | data->repeat_delay = REPEAT_DELAY; |
| 181 | } |
| 182 | |
| 183 | /* Alphanumeric values */ |
| 184 | if ((scancode > 3) && (scancode <= 0x1d)) { |
| 185 | keycode = scancode - 4 + 'a'; |
| 186 | |
| 187 | if (data->flags & USB_KBD_CAPSLOCK) |
| 188 | keycode &= ~CAPITAL_MASK; |
| 189 | |
| 190 | if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) { |
| 191 | /* Handle CAPSLock + Shift pressed simultaneously */ |
| 192 | if (keycode & CAPITAL_MASK) |
| 193 | keycode &= ~CAPITAL_MASK; |
| 194 | else |
| 195 | keycode |= CAPITAL_MASK; |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | if ((scancode > 0x1d) && (scancode < 0x3a)) { |
| 200 | /* Shift pressed */ |
| 201 | if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) |
| 202 | keycode = usb_kbd_numkey_shifted[scancode - 0x1e]; |
| 203 | else |
| 204 | keycode = usb_kbd_numkey[scancode - 0x1e]; |
| 205 | } |
| 206 | |
Allen Martin | 4151a40 | 2012-11-06 13:26:03 -0800 | [diff] [blame] | 207 | /* Arrow keys */ |
| 208 | if ((scancode >= 0x4f) && (scancode <= 0x52)) |
| 209 | keycode = usb_kbd_arrow[scancode - 0x4f]; |
| 210 | |
Vincent Palatin | d53da84 | 2012-01-09 12:59:36 +0000 | [diff] [blame] | 211 | /* Numeric keypad */ |
| 212 | if ((scancode >= 0x54) && (scancode <= 0x67)) |
| 213 | keycode = usb_kbd_num_keypad[scancode - 0x54]; |
| 214 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 215 | if (data->flags & USB_KBD_CTRL) |
| 216 | keycode = scancode - 0x3; |
| 217 | |
| 218 | if (pressed == 1) { |
| 219 | if (scancode == NUM_LOCK) { |
| 220 | data->flags ^= USB_KBD_NUMLOCK; |
| 221 | return 1; |
| 222 | } |
| 223 | |
| 224 | if (scancode == CAPS_LOCK) { |
| 225 | data->flags ^= USB_KBD_CAPSLOCK; |
| 226 | return 1; |
| 227 | } |
| 228 | if (scancode == SCROLL_LOCK) { |
| 229 | data->flags ^= USB_KBD_SCROLLLOCK; |
| 230 | return 1; |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | /* Report keycode if any */ |
| 235 | if (keycode) { |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 236 | debug("%c", keycode); |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 237 | usb_kbd_put_queue(data, keycode); |
| 238 | } |
| 239 | |
| 240 | return 0; |
| 241 | } |
| 242 | |
| 243 | static uint32_t usb_kbd_service_key(struct usb_device *dev, int i, int up) |
| 244 | { |
| 245 | uint32_t res = 0; |
| 246 | struct usb_kbd_pdata *data = dev->privptr; |
| 247 | uint8_t *new; |
| 248 | uint8_t *old; |
| 249 | |
| 250 | if (up) { |
| 251 | new = data->old; |
| 252 | old = data->new; |
| 253 | } else { |
| 254 | new = data->new; |
| 255 | old = data->old; |
| 256 | } |
| 257 | |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 258 | if ((old[i] > 3) && |
| 259 | (memscan(new + 2, old[i], USB_KBD_BOOT_REPORT_SIZE - 2) == |
| 260 | new + USB_KBD_BOOT_REPORT_SIZE)) { |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 261 | res |= usb_kbd_translate(data, old[i], data->new[0], up); |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 262 | } |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 263 | |
| 264 | return res; |
| 265 | } |
| 266 | |
| 267 | /* Interrupt service routine */ |
| 268 | static int usb_kbd_irq_worker(struct usb_device *dev) |
| 269 | { |
| 270 | struct usb_kbd_pdata *data = dev->privptr; |
| 271 | int i, res = 0; |
| 272 | |
| 273 | /* No combo key pressed */ |
| 274 | if (data->new[0] == 0x00) |
| 275 | data->flags &= ~USB_KBD_CTRL; |
| 276 | /* Left or Right Ctrl pressed */ |
| 277 | else if ((data->new[0] == LEFT_CNTR) || (data->new[0] == RIGHT_CNTR)) |
| 278 | data->flags |= USB_KBD_CTRL; |
| 279 | |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 280 | for (i = 2; i < USB_KBD_BOOT_REPORT_SIZE; i++) { |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 281 | res |= usb_kbd_service_key(dev, i, 0); |
| 282 | res |= usb_kbd_service_key(dev, i, 1); |
| 283 | } |
| 284 | |
| 285 | /* Key is still pressed */ |
| 286 | if ((data->new[2] > 3) && (data->old[2] == data->new[2])) |
| 287 | res |= usb_kbd_translate(data, data->new[2], data->new[0], 2); |
| 288 | |
| 289 | if (res == 1) |
| 290 | usb_kbd_setled(dev); |
| 291 | |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 292 | memcpy(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE); |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 293 | |
| 294 | return 1; |
| 295 | } |
| 296 | |
| 297 | /* Keyboard interrupt handler */ |
| 298 | static int usb_kbd_irq(struct usb_device *dev) |
| 299 | { |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 300 | if ((dev->irq_status != 0) || |
| 301 | (dev->irq_act_len != USB_KBD_BOOT_REPORT_SIZE)) { |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 302 | debug("USB KBD: Error %lX, len %d\n", |
| 303 | dev->irq_status, dev->irq_act_len); |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 304 | return 1; |
| 305 | } |
| 306 | |
| 307 | return usb_kbd_irq_worker(dev); |
| 308 | } |
| 309 | |
| 310 | /* Interrupt polling */ |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 311 | static inline void usb_kbd_poll_for_event(struct usb_device *dev) |
| 312 | { |
| 313 | #if defined(CONFIG_SYS_USB_EVENT_POLL) |
Hans de Goede | 8f8d7d2 | 2014-09-24 14:06:10 +0200 | [diff] [blame] | 314 | struct usb_kbd_pdata *data = dev->privptr; |
amartin@nvidia.com | f9636e8 | 2011-12-20 14:56:16 +0000 | [diff] [blame] | 315 | |
| 316 | /* Submit a interrupt transfer request */ |
Hans de Goede | 8f8d7d2 | 2014-09-24 14:06:10 +0200 | [diff] [blame] | 317 | usb_submit_int_msg(dev, data->intpipe, &data->new[0], data->intpktsize, |
| 318 | data->intinterval); |
amartin@nvidia.com | f9636e8 | 2011-12-20 14:56:16 +0000 | [diff] [blame] | 319 | |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 320 | usb_kbd_irq_worker(dev); |
| 321 | #elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP) |
| 322 | struct usb_interface *iface; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 323 | struct usb_kbd_pdata *data = dev->privptr; |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 324 | iface = &dev->config.if_desc[0]; |
| 325 | usb_get_report(dev, iface->desc.bInterfaceNumber, |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 326 | 1, 0, data->new, USB_KBD_BOOT_REPORT_SIZE); |
| 327 | if (memcmp(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE)) |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 328 | usb_kbd_irq_worker(dev); |
Hans de Goede | 8e55311 | 2014-09-24 14:06:11 +0200 | [diff] [blame] | 329 | #elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE) |
| 330 | struct usb_kbd_pdata *data = dev->privptr; |
| 331 | if (poll_int_queue(dev, data->intq)) { |
| 332 | usb_kbd_irq_worker(dev); |
| 333 | /* We've consumed all queued int packets, create new */ |
| 334 | destroy_int_queue(dev, data->intq); |
| 335 | data->intq = create_int_queue(dev, data->intpipe, 1, |
Hans de Goede | 8bb6c1d | 2015-01-11 20:38:28 +0100 | [diff] [blame] | 336 | USB_KBD_BOOT_REPORT_SIZE, data->new, |
| 337 | data->intinterval); |
Hans de Goede | 8e55311 | 2014-09-24 14:06:11 +0200 | [diff] [blame] | 338 | } |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 339 | #endif |
| 340 | } |
| 341 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 342 | /* test if a character is in the queue */ |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 343 | static int usb_kbd_testc(struct stdio_dev *sdev) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 344 | { |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 345 | struct stdio_dev *dev; |
| 346 | struct usb_device *usb_kbd_dev; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 347 | struct usb_kbd_pdata *data; |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 348 | |
Jim Lin | c95e2b9 | 2013-08-26 20:21:09 +0800 | [diff] [blame] | 349 | #ifdef CONFIG_CMD_NET |
| 350 | /* |
| 351 | * If net_busy_flag is 1, NET transfer is running, |
| 352 | * then we check key-pressed every second (first check may be |
| 353 | * less than 1 second) to improve TFTP booting performance. |
| 354 | */ |
| 355 | if (net_busy_flag && (get_timer(kbd_testc_tms) < CONFIG_SYS_HZ)) |
| 356 | return 0; |
| 357 | kbd_testc_tms = get_timer(0); |
| 358 | #endif |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 359 | dev = stdio_get_by_name(DEVNAME); |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 360 | usb_kbd_dev = (struct usb_device *)dev->priv; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 361 | data = usb_kbd_dev->privptr; |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 362 | |
| 363 | usb_kbd_poll_for_event(usb_kbd_dev); |
| 364 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 365 | return !(data->usb_in_pointer == data->usb_out_pointer); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 366 | } |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 367 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 368 | /* gets the character from the queue */ |
Simon Glass | 709ea54 | 2014-07-23 06:54:59 -0600 | [diff] [blame] | 369 | static int usb_kbd_getc(struct stdio_dev *sdev) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 370 | { |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 371 | struct stdio_dev *dev; |
| 372 | struct usb_device *usb_kbd_dev; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 373 | struct usb_kbd_pdata *data; |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 374 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 375 | dev = stdio_get_by_name(DEVNAME); |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 376 | usb_kbd_dev = (struct usb_device *)dev->priv; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 377 | data = usb_kbd_dev->privptr; |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 378 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 379 | while (data->usb_in_pointer == data->usb_out_pointer) |
Marek Vasut | 48c8073 | 2011-09-25 20:00:37 +0100 | [diff] [blame] | 380 | usb_kbd_poll_for_event(usb_kbd_dev); |
| 381 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 382 | if (data->usb_out_pointer == USB_KBD_BUFFER_LEN - 1) |
| 383 | data->usb_out_pointer = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 384 | else |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 385 | data->usb_out_pointer++; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 386 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 387 | return data->usb_kbd_buffer[data->usb_out_pointer]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 390 | /* probes the USB device dev for keyboard type. */ |
| 391 | static int usb_kbd_probe(struct usb_device *dev, unsigned int ifnum) |
| 392 | { |
| 393 | struct usb_interface *iface; |
| 394 | struct usb_endpoint_descriptor *ep; |
| 395 | struct usb_kbd_pdata *data; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 396 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 397 | if (dev->descriptor.bNumConfigurations != 1) |
| 398 | return 0; |
| 399 | |
| 400 | iface = &dev->config.if_desc[ifnum]; |
| 401 | |
| 402 | if (iface->desc.bInterfaceClass != 3) |
| 403 | return 0; |
| 404 | |
| 405 | if (iface->desc.bInterfaceSubClass != 1) |
| 406 | return 0; |
| 407 | |
| 408 | if (iface->desc.bInterfaceProtocol != 1) |
| 409 | return 0; |
| 410 | |
| 411 | if (iface->desc.bNumEndpoints != 1) |
| 412 | return 0; |
| 413 | |
| 414 | ep = &iface->ep_desc[0]; |
| 415 | |
| 416 | /* Check if endpoint 1 is interrupt endpoint */ |
| 417 | if (!(ep->bEndpointAddress & 0x80)) |
| 418 | return 0; |
| 419 | |
| 420 | if ((ep->bmAttributes & 3) != 3) |
| 421 | return 0; |
| 422 | |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 423 | debug("USB KBD: found set protocol...\n"); |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 424 | |
| 425 | data = malloc(sizeof(struct usb_kbd_pdata)); |
| 426 | if (!data) { |
| 427 | printf("USB KBD: Error allocating private data\n"); |
| 428 | return 0; |
| 429 | } |
| 430 | |
| 431 | /* Clear private data */ |
| 432 | memset(data, 0, sizeof(struct usb_kbd_pdata)); |
| 433 | |
Allen Martin | d747538 | 2012-10-24 08:32:04 +0000 | [diff] [blame] | 434 | /* allocate input buffer aligned and sized to USB DMA alignment */ |
Adrian Cox | 08a98b8 | 2014-04-10 14:02:44 +0100 | [diff] [blame] | 435 | data->new = memalign(USB_DMA_MINALIGN, |
| 436 | roundup(USB_KBD_BOOT_REPORT_SIZE, USB_DMA_MINALIGN)); |
Allen Martin | d747538 | 2012-10-24 08:32:04 +0000 | [diff] [blame] | 437 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 438 | /* Insert private data into USB device structure */ |
| 439 | dev->privptr = data; |
| 440 | |
| 441 | /* Set IRQ handler */ |
| 442 | dev->irq_handle = usb_kbd_irq; |
| 443 | |
Hans de Goede | 8f8d7d2 | 2014-09-24 14:06:10 +0200 | [diff] [blame] | 444 | data->intpipe = usb_rcvintpipe(dev, ep->bEndpointAddress); |
| 445 | data->intpktsize = min(usb_maxpacket(dev, data->intpipe), |
| 446 | USB_KBD_BOOT_REPORT_SIZE); |
| 447 | data->intinterval = ep->bInterval; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 448 | |
| 449 | /* We found a USB Keyboard, install it. */ |
| 450 | usb_set_protocol(dev, iface->desc.bInterfaceNumber, 0); |
| 451 | |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 452 | debug("USB KBD: found set idle...\n"); |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 453 | usb_set_idle(dev, iface->desc.bInterfaceNumber, REPEAT_RATE, 0); |
| 454 | |
Vivek Gautam | ceb4972 | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 455 | debug("USB KBD: enable interrupt pipe...\n"); |
Hans de Goede | 8e55311 | 2014-09-24 14:06:11 +0200 | [diff] [blame] | 456 | #ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE |
| 457 | data->intq = create_int_queue(dev, data->intpipe, 1, |
Hans de Goede | 8bb6c1d | 2015-01-11 20:38:28 +0100 | [diff] [blame] | 458 | USB_KBD_BOOT_REPORT_SIZE, data->new, |
| 459 | data->intinterval); |
Hans de Goede | 8e55311 | 2014-09-24 14:06:11 +0200 | [diff] [blame] | 460 | if (!data->intq) { |
| 461 | #else |
Hans de Goede | 8f8d7d2 | 2014-09-24 14:06:10 +0200 | [diff] [blame] | 462 | if (usb_submit_int_msg(dev, data->intpipe, data->new, data->intpktsize, |
| 463 | data->intinterval) < 0) { |
Hans de Goede | 8e55311 | 2014-09-24 14:06:11 +0200 | [diff] [blame] | 464 | #endif |
Vincent Palatin | 5da2dc9 | 2013-05-10 19:48:59 -0700 | [diff] [blame] | 465 | printf("Failed to get keyboard state from device %04x:%04x\n", |
| 466 | dev->descriptor.idVendor, dev->descriptor.idProduct); |
| 467 | /* Abort, we don't want to use that non-functional keyboard. */ |
| 468 | return 0; |
| 469 | } |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 470 | |
| 471 | /* Success. */ |
| 472 | return 1; |
| 473 | } |
| 474 | |
Simon Glass | 603afaf | 2015-03-25 12:22:33 -0600 | [diff] [blame] | 475 | static int probe_usb_keyboard(struct usb_device *dev) |
| 476 | { |
| 477 | char *stdinname; |
| 478 | struct stdio_dev usb_kbd_dev; |
| 479 | int error; |
| 480 | |
| 481 | /* Try probing the keyboard */ |
| 482 | if (usb_kbd_probe(dev, 0) != 1) |
| 483 | return -ENOENT; |
| 484 | |
| 485 | /* Register the keyboard */ |
| 486 | debug("USB KBD: register.\n"); |
| 487 | memset(&usb_kbd_dev, 0, sizeof(struct stdio_dev)); |
| 488 | strcpy(usb_kbd_dev.name, DEVNAME); |
| 489 | usb_kbd_dev.flags = DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM; |
| 490 | usb_kbd_dev.getc = usb_kbd_getc; |
| 491 | usb_kbd_dev.tstc = usb_kbd_testc; |
| 492 | usb_kbd_dev.priv = (void *)dev; |
| 493 | error = stdio_register(&usb_kbd_dev); |
| 494 | if (error) |
| 495 | return error; |
| 496 | |
| 497 | stdinname = getenv("stdin"); |
| 498 | #ifdef CONFIG_CONSOLE_MUX |
| 499 | error = iomux_doenv(stdin, stdinname); |
| 500 | if (error) |
| 501 | return error; |
| 502 | #else |
| 503 | /* Check if this is the standard input device. */ |
| 504 | if (strcmp(stdinname, DEVNAME)) |
| 505 | return 1; |
| 506 | |
| 507 | /* Reassign the console */ |
| 508 | if (overwrite_console()) |
| 509 | return 1; |
| 510 | |
| 511 | error = console_assign(stdin, DEVNAME); |
| 512 | if (error) |
| 513 | return error; |
| 514 | #endif |
| 515 | |
| 516 | return 0; |
| 517 | } |
| 518 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 519 | /* Search for keyboard and register it if found. */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 520 | int drv_usb_kbd_init(void) |
| 521 | { |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 522 | int error, i; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 523 | |
Simon Glass | 697033c | 2015-03-25 12:22:34 -0600 | [diff] [blame] | 524 | debug("%s: Probing for keyboard\n", __func__); |
| 525 | #ifdef CONFIG_DM_USB |
| 526 | /* |
| 527 | * TODO: We should add USB_DEVICE() declarations to each USB ethernet |
| 528 | * driver and then most of this file can be removed. |
| 529 | */ |
| 530 | struct udevice *bus; |
| 531 | struct uclass *uc; |
| 532 | int ret; |
| 533 | |
| 534 | ret = uclass_get(UCLASS_USB, &uc); |
| 535 | if (ret) |
| 536 | return ret; |
| 537 | uclass_foreach_dev(bus, uc) { |
| 538 | for (i = 0; i < USB_MAX_DEVICE; i++) { |
| 539 | struct usb_device *dev; |
| 540 | |
| 541 | dev = usb_get_dev_index(bus, i); /* get device */ |
| 542 | debug("i=%d, %p\n", i, dev); |
| 543 | if (!dev) |
| 544 | break; /* no more devices available */ |
| 545 | |
| 546 | error = probe_usb_keyboard(dev); |
| 547 | if (!error) |
| 548 | return 1; |
| 549 | if (error && error != -ENOENT) |
| 550 | return error; |
| 551 | } /* for */ |
| 552 | } |
| 553 | #else |
| 554 | /* Scan all USB Devices */ |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 555 | for (i = 0; i < USB_MAX_DEVICE; i++) { |
Simon Glass | 603afaf | 2015-03-25 12:22:33 -0600 | [diff] [blame] | 556 | struct usb_device *dev; |
| 557 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 558 | /* Get USB device. */ |
| 559 | dev = usb_get_dev_index(i); |
| 560 | if (!dev) |
Simon Glass | 603afaf | 2015-03-25 12:22:33 -0600 | [diff] [blame] | 561 | break; |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 562 | |
| 563 | if (dev->devnum == -1) |
| 564 | continue; |
| 565 | |
Simon Glass | 603afaf | 2015-03-25 12:22:33 -0600 | [diff] [blame] | 566 | error = probe_usb_keyboard(dev); |
| 567 | if (!error) |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 568 | return 1; |
Simon Glass | 603afaf | 2015-03-25 12:22:33 -0600 | [diff] [blame] | 569 | if (error && error != -ENOENT) |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 570 | return error; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 571 | } |
Simon Glass | 697033c | 2015-03-25 12:22:34 -0600 | [diff] [blame] | 572 | #endif |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 573 | |
| 574 | /* No USB Keyboard found */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 575 | return -1; |
| 576 | } |
| 577 | |
Marek Vasut | 9a8c72a | 2011-10-10 16:34:26 +0100 | [diff] [blame] | 578 | /* Deregister the keyboard. */ |
Hans de Goede | 8a8a225 | 2014-09-20 16:54:38 +0200 | [diff] [blame] | 579 | int usb_kbd_deregister(int force) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 580 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 581 | #ifdef CONFIG_SYS_STDIO_DEREGISTER |
Hans de Goede | dfe5b1c | 2014-09-24 14:06:08 +0200 | [diff] [blame] | 582 | struct stdio_dev *dev; |
| 583 | struct usb_device *usb_kbd_dev; |
| 584 | struct usb_kbd_pdata *data; |
| 585 | |
| 586 | dev = stdio_get_by_name(DEVNAME); |
| 587 | if (dev) { |
| 588 | usb_kbd_dev = (struct usb_device *)dev->priv; |
| 589 | data = usb_kbd_dev->privptr; |
| 590 | if (stdio_deregister_dev(dev, force) != 0) |
| 591 | return 1; |
Hans de Goede | 3cbcb28 | 2015-01-11 20:34:44 +0100 | [diff] [blame] | 592 | #ifdef CONFIG_CONSOLE_MUX |
| 593 | if (iomux_doenv(stdin, getenv("stdin")) != 0) |
| 594 | return 1; |
| 595 | #endif |
Hans de Goede | 8e55311 | 2014-09-24 14:06:11 +0200 | [diff] [blame] | 596 | #ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE |
| 597 | destroy_int_queue(usb_kbd_dev, data->intq); |
| 598 | #endif |
Hans de Goede | dfe5b1c | 2014-09-24 14:06:08 +0200 | [diff] [blame] | 599 | free(data->new); |
| 600 | free(data); |
| 601 | } |
Hans de Goede | 0ea09df | 2014-09-20 16:54:34 +0200 | [diff] [blame] | 602 | |
| 603 | return 0; |
Jean-Christophe PLAGNIOL-VILLARD | fea91ed | 2008-12-02 21:58:04 +0100 | [diff] [blame] | 604 | #else |
| 605 | return 1; |
| 606 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 607 | } |