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