]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/usb_kbd.c
usb: dwc2: Add support for v3 snpsid value
[people/ms/u-boot.git] / common / usb_kbd.c
CommitLineData
affae2bf
WD
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 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
affae2bf
WD
9 */
10#include <common.h>
697033cb 11#include <dm.h>
0ea09dfe 12#include <errno.h>
9a8c72a6 13#include <malloc.h>
52cb4d4f 14#include <stdio_dev.h>
c918261c 15#include <asm/byteorder.h>
affae2bf 16
affae2bf
WD
17#include <usb.h>
18
affae2bf 19/*
00b7d6ec 20 * If overwrite_console returns 1, the stdin, stderr and stdout
affae2bf
WD
21 * are switched to the serial port, else the settings in the
22 * environment are used
23 */
6d0f6bcf 24#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
00b7d6ec 25extern int overwrite_console(void);
affae2bf 26#else
00b7d6ec 27int overwrite_console(void)
affae2bf 28{
00b7d6ec 29 return 0;
affae2bf
WD
30}
31#endif
32
9a8c72a6
MV
33/* Keyboard sampling rate */
34#define REPEAT_RATE (40 / 4) /* 40msec -> 25cps */
35#define REPEAT_DELAY 10 /* 10 x REPEAT_RATE = 400msec */
affae2bf
WD
36
37#define NUM_LOCK 0x53
00b7d6ec
MV
38#define CAPS_LOCK 0x39
39#define SCROLL_LOCK 0x47
affae2bf 40
affae2bf 41/* Modifier bits */
9a8c72a6
MV
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)
50
51/* Size of the keyboard buffer */
52#define USB_KBD_BUFFER_LEN 0x20
53
54/* Device name */
00b7d6ec 55#define DEVNAME "usbkbd"
affae2bf 56
9a8c72a6
MV
57/* Keyboard maps */
58static const unsigned char usb_kbd_numkey[] = {
00b7d6ec
MV
59 '1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
60 '\r', 0x1b, '\b', '\t', ' ', '-', '=', '[', ']',
61 '\\', '#', ';', '\'', '`', ',', '.', '/'
affae2bf 62};
9a8c72a6 63static const unsigned char usb_kbd_numkey_shifted[] = {
00b7d6ec
MV
64 '!', '@', '#', '$', '%', '^', '&', '*', '(', ')',
65 '\r', 0x1b, '\b', '\t', ' ', '_', '+', '{', '}',
66 '|', '~', ':', '"', '~', '<', '>', '?'
affae2bf
WD
67};
68
d53da847
VP
69static 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
4151a400
AM
75/*
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 */
80static const unsigned char usb_kbd_arrow[] = {
81 0x6, 0x2, 0xe, 0x10
82};
83
9a8c72a6
MV
84/*
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)
48c8073e 92
9a8c72a6
MV
93#define USB_KBD_LEDMASK \
94 (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK)
48c8073e 95
08a98b89
AC
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
9a8c72a6 102struct usb_kbd_pdata {
8f8d7d24
HG
103 unsigned long intpipe;
104 int intpktsize;
105 int intinterval;
8e553119 106 struct int_queue *intq;
8f8d7d24 107
9a8c72a6 108 uint32_t repeat_delay;
affae2bf 109
9a8c72a6
MV
110 uint32_t usb_in_pointer;
111 uint32_t usb_out_pointer;
112 uint8_t usb_kbd_buffer[USB_KBD_BUFFER_LEN];
48c8073e 113
d7475386 114 uint8_t *new;
08a98b89 115 uint8_t old[USB_KBD_BOOT_REPORT_SIZE];
48c8073e 116
9a8c72a6
MV
117 uint8_t flags;
118};
48c8073e 119
07551f23
JL
120extern int __maybe_unused net_busy_flag;
121
122/* The period of time between two calls of usb_kbd_testc(). */
123static unsigned long __maybe_unused kbd_testc_tms;
124
9a8c72a6
MV
125/* Puts character in the queue and sets up the in and out pointer. */
126static void usb_kbd_put_queue(struct usb_kbd_pdata *data, char c)
affae2bf 127{
9a8c72a6
MV
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;
affae2bf 132
9a8c72a6
MV
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;
affae2bf 138
9a8c72a6
MV
139 data->usb_in_pointer++;
140 }
affae2bf 141
9a8c72a6 142 data->usb_kbd_buffer[data->usb_in_pointer] = c;
affae2bf
WD
143}
144
9a8c72a6
MV
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.
affae2bf 149 */
affae2bf
WD
150static void usb_kbd_setled(struct usb_device *dev)
151{
9a8c72a6
MV
152 struct usb_interface *iface = &dev->config.if_desc[0];
153 struct usb_kbd_pdata *data = dev->privptr;
9b239381 154 ALLOC_ALIGN_BUFFER(uint32_t, leds, 1, USB_DMA_MINALIGN);
9a8c72a6 155
9b239381 156 *leds = data->flags & USB_KBD_LEDMASK;
affae2bf
WD
157 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
158 USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
9b239381 159 0x200, iface->desc.bInterfaceNumber, leds, 1, 0);
affae2bf
WD
160}
161
9a8c72a6 162#define CAPITAL_MASK 0x20
affae2bf 163/* Translate the scancode in ASCII */
9a8c72a6
MV
164static int usb_kbd_translate(struct usb_kbd_pdata *data, unsigned char scancode,
165 unsigned char modifier, int pressed)
affae2bf 166{
9a8c72a6 167 uint8_t keycode = 0;
affae2bf 168
9a8c72a6 169 /* Key released */
00b7d6ec 170 if (pressed == 0) {
9a8c72a6 171 data->repeat_delay = 0;
affae2bf
WD
172 return 0;
173 }
9a8c72a6 174
00b7d6ec 175 if (pressed == 2) {
9a8c72a6
MV
176 data->repeat_delay++;
177 if (data->repeat_delay < REPEAT_DELAY)
affae2bf 178 return 0;
9a8c72a6
MV
179
180 data->repeat_delay = REPEAT_DELAY;
affae2bf 181 }
9a8c72a6
MV
182
183 /* Alphanumeric values */
184 if ((scancode > 3) && (scancode <= 0x1d)) {
185 keycode = scancode - 4 + 'a';
186
187 if (data->flags & USB_KBD_CAPSLOCK)
00b7d6ec 188 keycode &= ~CAPITAL_MASK;
9a8c72a6
MV
189
190 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) {
191 /* Handle CAPSLock + Shift pressed simultaneously */
00b7d6ec 192 if (keycode & CAPITAL_MASK)
00b7d6ec 193 keycode &= ~CAPITAL_MASK;
affae2bf 194 else
00b7d6ec 195 keycode |= CAPITAL_MASK;
affae2bf
WD
196 }
197 }
9a8c72a6
MV
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];
affae2bf 205 }
4785a694 206
4151a400
AM
207 /* Arrow keys */
208 if ((scancode >= 0x4f) && (scancode <= 0x52))
209 keycode = usb_kbd_arrow[scancode - 0x4f];
210
d53da847
VP
211 /* Numeric keypad */
212 if ((scancode >= 0x54) && (scancode <= 0x67))
213 keycode = usb_kbd_num_keypad[scancode - 0x54];
214
9a8c72a6 215 if (data->flags & USB_KBD_CTRL)
4785a694
ZW
216 keycode = scancode - 0x3;
217
00b7d6ec
MV
218 if (pressed == 1) {
219 if (scancode == NUM_LOCK) {
9a8c72a6 220 data->flags ^= USB_KBD_NUMLOCK;
affae2bf
WD
221 return 1;
222 }
9a8c72a6 223
00b7d6ec 224 if (scancode == CAPS_LOCK) {
9a8c72a6 225 data->flags ^= USB_KBD_CAPSLOCK;
affae2bf
WD
226 return 1;
227 }
00b7d6ec 228 if (scancode == SCROLL_LOCK) {
9a8c72a6 229 data->flags ^= USB_KBD_SCROLLLOCK;
affae2bf
WD
230 return 1;
231 }
232 }
9a8c72a6
MV
233
234 /* Report keycode if any */
235 if (keycode) {
ceb4972a 236 debug("%c", keycode);
9a8c72a6 237 usb_kbd_put_queue(data, keycode);
affae2bf 238 }
9a8c72a6 239
affae2bf
WD
240 return 0;
241}
242
9a8c72a6
MV
243static 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
08a98b89
AC
258 if ((old[i] > 3) &&
259 (memscan(new + 2, old[i], USB_KBD_BOOT_REPORT_SIZE - 2) ==
260 new + USB_KBD_BOOT_REPORT_SIZE)) {
9a8c72a6 261 res |= usb_kbd_translate(data, old[i], data->new[0], up);
08a98b89 262 }
9a8c72a6
MV
263
264 return res;
265}
266
affae2bf 267/* Interrupt service routine */
48c8073e 268static int usb_kbd_irq_worker(struct usb_device *dev)
affae2bf 269{
9a8c72a6
MV
270 struct usb_kbd_pdata *data = dev->privptr;
271 int i, res = 0;
4785a694 272
9a8c72a6
MV
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;
00b7d6ec 279
08a98b89 280 for (i = 2; i < USB_KBD_BOOT_REPORT_SIZE; i++) {
9a8c72a6
MV
281 res |= usb_kbd_service_key(dev, i, 0);
282 res |= usb_kbd_service_key(dev, i, 1);
affae2bf 283 }
00b7d6ec 284
9a8c72a6
MV
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
00b7d6ec 289 if (res == 1)
affae2bf 290 usb_kbd_setled(dev);
00b7d6ec 291
08a98b89 292 memcpy(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE);
00b7d6ec 293
9a8c72a6 294 return 1;
affae2bf
WD
295}
296
9a8c72a6 297/* Keyboard interrupt handler */
48c8073e
MV
298static int usb_kbd_irq(struct usb_device *dev)
299{
08a98b89
AC
300 if ((dev->irq_status != 0) ||
301 (dev->irq_act_len != USB_KBD_BOOT_REPORT_SIZE)) {
ceb4972a
VG
302 debug("USB KBD: Error %lX, len %d\n",
303 dev->irq_status, dev->irq_act_len);
48c8073e
MV
304 return 1;
305 }
306
307 return usb_kbd_irq_worker(dev);
308}
309
9a8c72a6
MV
310/* Interrupt polling */
311static inline void usb_kbd_poll_for_event(struct usb_device *dev)
312{
313#if defined(CONFIG_SYS_USB_EVENT_POLL)
8f8d7d24 314 struct usb_kbd_pdata *data = dev->privptr;
f9636e8d
AM
315
316 /* Submit a interrupt transfer request */
8f8d7d24
HG
317 usb_submit_int_msg(dev, data->intpipe, &data->new[0], data->intpktsize,
318 data->intinterval);
f9636e8d 319
9a8c72a6
MV
320 usb_kbd_irq_worker(dev);
321#elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP)
322 struct usb_interface *iface;
323 struct usb_kbd_pdata *data = dev->privptr;
324 iface = &dev->config.if_desc[0];
325 usb_get_report(dev, iface->desc.bInterfaceNumber,
08a98b89
AC
326 1, 0, data->new, USB_KBD_BOOT_REPORT_SIZE);
327 if (memcmp(data->old, data->new, USB_KBD_BOOT_REPORT_SIZE))
9a8c72a6 328 usb_kbd_irq_worker(dev);
8e553119
HG
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,
8bb6c1d1
HG
336 USB_KBD_BOOT_REPORT_SIZE, data->new,
337 data->intinterval);
8e553119 338 }
9a8c72a6
MV
339#endif
340}
341
342/* test if a character is in the queue */
709ea543 343static int usb_kbd_testc(struct stdio_dev *sdev)
9a8c72a6
MV
344{
345 struct stdio_dev *dev;
346 struct usb_device *usb_kbd_dev;
347 struct usb_kbd_pdata *data;
348
c95e2b9e
JL
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
9a8c72a6
MV
359 dev = stdio_get_by_name(DEVNAME);
360 usb_kbd_dev = (struct usb_device *)dev->priv;
361 data = usb_kbd_dev->privptr;
362
363 usb_kbd_poll_for_event(usb_kbd_dev);
364
365 return !(data->usb_in_pointer == data->usb_out_pointer);
366}
367
368/* gets the character from the queue */
709ea543 369static int usb_kbd_getc(struct stdio_dev *sdev)
9a8c72a6
MV
370{
371 struct stdio_dev *dev;
372 struct usb_device *usb_kbd_dev;
373 struct usb_kbd_pdata *data;
374
375 dev = stdio_get_by_name(DEVNAME);
376 usb_kbd_dev = (struct usb_device *)dev->priv;
377 data = usb_kbd_dev->privptr;
378
379 while (data->usb_in_pointer == data->usb_out_pointer)
380 usb_kbd_poll_for_event(usb_kbd_dev);
381
382 if (data->usb_out_pointer == USB_KBD_BUFFER_LEN - 1)
383 data->usb_out_pointer = 0;
384 else
385 data->usb_out_pointer++;
386
387 return data->usb_kbd_buffer[data->usb_out_pointer];
388}
389
390/* probes the USB device dev for keyboard type. */
affae2bf
WD
391static int usb_kbd_probe(struct usb_device *dev, unsigned int ifnum)
392{
8f8bd565 393 struct usb_interface *iface;
affae2bf 394 struct usb_endpoint_descriptor *ep;
9a8c72a6 395 struct usb_kbd_pdata *data;
affae2bf 396
00b7d6ec
MV
397 if (dev->descriptor.bNumConfigurations != 1)
398 return 0;
9a8c72a6 399
affae2bf
WD
400 iface = &dev->config.if_desc[ifnum];
401
8f8bd565
TR
402 if (iface->desc.bInterfaceClass != 3)
403 return 0;
9a8c72a6 404
8f8bd565
TR
405 if (iface->desc.bInterfaceSubClass != 1)
406 return 0;
9a8c72a6 407
8f8bd565
TR
408 if (iface->desc.bInterfaceProtocol != 1)
409 return 0;
9a8c72a6 410
8f8bd565
TR
411 if (iface->desc.bNumEndpoints != 1)
412 return 0;
affae2bf
WD
413
414 ep = &iface->ep_desc[0];
415
9a8c72a6 416 /* Check if endpoint 1 is interrupt endpoint */
00b7d6ec
MV
417 if (!(ep->bEndpointAddress & 0x80))
418 return 0;
9a8c72a6 419
00b7d6ec
MV
420 if ((ep->bmAttributes & 3) != 3)
421 return 0;
9a8c72a6 422
ceb4972a 423 debug("USB KBD: found set protocol...\n");
9a8c72a6
MV
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
d7475386 434 /* allocate input buffer aligned and sized to USB DMA alignment */
08a98b89
AC
435 data->new = memalign(USB_DMA_MINALIGN,
436 roundup(USB_KBD_BOOT_REPORT_SIZE, USB_DMA_MINALIGN));
d7475386 437
9a8c72a6
MV
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
8f8d7d24
HG
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;
9a8c72a6
MV
448
449 /* We found a USB Keyboard, install it. */
450 usb_set_protocol(dev, iface->desc.bInterfaceNumber, 0);
451
ceb4972a 452 debug("USB KBD: found set idle...\n");
9a8c72a6
MV
453 usb_set_idle(dev, iface->desc.bInterfaceNumber, REPEAT_RATE, 0);
454
ceb4972a 455 debug("USB KBD: enable interrupt pipe...\n");
8e553119
HG
456#ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE
457 data->intq = create_int_queue(dev, data->intpipe, 1,
8bb6c1d1
HG
458 USB_KBD_BOOT_REPORT_SIZE, data->new,
459 data->intinterval);
8e553119
HG
460 if (!data->intq) {
461#else
8f8d7d24
HG
462 if (usb_submit_int_msg(dev, data->intpipe, data->new, data->intpktsize,
463 data->intinterval) < 0) {
8e553119 464#endif
5da2dc97
VP
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 }
9a8c72a6
MV
470
471 /* Success. */
affae2bf
WD
472 return 1;
473}
474
603afaf0
SG
475static 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
9a8c72a6
MV
519/* Search for keyboard and register it if found. */
520int drv_usb_kbd_init(void)
521{
9a8c72a6
MV
522 int error, i;
523
697033cb
SG
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 */
9a8c72a6 555 for (i = 0; i < USB_MAX_DEVICE; i++) {
603afaf0
SG
556 struct usb_device *dev;
557
9a8c72a6
MV
558 /* Get USB device. */
559 dev = usb_get_dev_index(i);
560 if (!dev)
603afaf0 561 break;
9a8c72a6
MV
562
563 if (dev->devnum == -1)
564 continue;
565
603afaf0
SG
566 error = probe_usb_keyboard(dev);
567 if (!error)
9a8c72a6 568 return 1;
603afaf0 569 if (error && error != -ENOENT)
9a8c72a6 570 return error;
9a8c72a6 571 }
697033cb 572#endif
9a8c72a6
MV
573
574 /* No USB Keyboard found */
575 return -1;
576}
577
578/* Deregister the keyboard. */
8a8a2257 579int usb_kbd_deregister(int force)
9a8c72a6
MV
580{
581#ifdef CONFIG_SYS_STDIO_DEREGISTER
dfe5b1c8
HG
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;
3cbcb289
HG
592#ifdef CONFIG_CONSOLE_MUX
593 if (iomux_doenv(stdin, getenv("stdin")) != 0)
594 return 1;
595#endif
8e553119
HG
596#ifdef CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE
597 destroy_int_queue(usb_kbd_dev, data->intq);
598#endif
dfe5b1c8
HG
599 free(data->new);
600 free(data);
601 }
0ea09dfe
HG
602
603 return 0;
9a8c72a6
MV
604#else
605 return 1;
606#endif
607}