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