blob: 19f01db1caa299f8217b778b12772fd789fc013f [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
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 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 *
26 */
27#include <common.h>
Marek Vasut9a8c72a2011-10-10 16:34:26 +010028#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020029#include <stdio_dev.h>
Christian Eggersc9182612008-05-21 22:12:00 +020030#include <asm/byteorder.h>
wdenkaffae2b2002-08-17 09:36:01 +000031
wdenkaffae2b2002-08-17 09:36:01 +000032#include <usb.h>
33
Marek Vasut9a8c72a2011-10-10 16:34:26 +010034#ifdef USB_KBD_DEBUG
35#define USB_KBD_PRINTF(fmt, args...) printf(fmt, ##args)
36#else
37#define USB_KBD_PRINTF(fmt, args...)
38#endif
39
wdenkaffae2b2002-08-17 09:36:01 +000040/*
Marek Vasut00b7d6e2011-10-10 05:34:25 +000041 * If overwrite_console returns 1, the stdin, stderr and stdout
wdenkaffae2b2002-08-17 09:36:01 +000042 * are switched to the serial port, else the settings in the
43 * environment are used
44 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Marek Vasut00b7d6e2011-10-10 05:34:25 +000046extern int overwrite_console(void);
wdenkaffae2b2002-08-17 09:36:01 +000047#else
Marek Vasut00b7d6e2011-10-10 05:34:25 +000048int overwrite_console(void)
wdenkaffae2b2002-08-17 09:36:01 +000049{
Marek Vasut00b7d6e2011-10-10 05:34:25 +000050 return 0;
wdenkaffae2b2002-08-17 09:36:01 +000051}
52#endif
53
Marek Vasut9a8c72a2011-10-10 16:34:26 +010054/* Keyboard sampling rate */
55#define REPEAT_RATE (40 / 4) /* 40msec -> 25cps */
56#define REPEAT_DELAY 10 /* 10 x REPEAT_RATE = 400msec */
wdenkaffae2b2002-08-17 09:36:01 +000057
58#define NUM_LOCK 0x53
Marek Vasut00b7d6e2011-10-10 05:34:25 +000059#define CAPS_LOCK 0x39
60#define SCROLL_LOCK 0x47
wdenkaffae2b2002-08-17 09:36:01 +000061
wdenkaffae2b2002-08-17 09:36:01 +000062/* Modifier bits */
Marek Vasut9a8c72a2011-10-10 16:34:26 +010063#define LEFT_CNTR (1 << 0)
64#define LEFT_SHIFT (1 << 1)
65#define LEFT_ALT (1 << 2)
66#define LEFT_GUI (1 << 3)
67#define RIGHT_CNTR (1 << 4)
68#define RIGHT_SHIFT (1 << 5)
69#define RIGHT_ALT (1 << 6)
70#define RIGHT_GUI (1 << 7)
wdenkaffae2b2002-08-17 09:36:01 +000071
Marek Vasut9a8c72a2011-10-10 16:34:26 +010072/* Size of the keyboard buffer */
73#define USB_KBD_BUFFER_LEN 0x20
wdenkaffae2b2002-08-17 09:36:01 +000074
Marek Vasut9a8c72a2011-10-10 16:34:26 +010075/* Device name */
Marek Vasut00b7d6e2011-10-10 05:34:25 +000076#define DEVNAME "usbkbd"
wdenkaffae2b2002-08-17 09:36:01 +000077
Marek Vasut9a8c72a2011-10-10 16:34:26 +010078/* Keyboard maps */
79static const unsigned char usb_kbd_numkey[] = {
Marek Vasut00b7d6e2011-10-10 05:34:25 +000080 '1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
81 '\r', 0x1b, '\b', '\t', ' ', '-', '=', '[', ']',
82 '\\', '#', ';', '\'', '`', ',', '.', '/'
wdenkaffae2b2002-08-17 09:36:01 +000083};
Marek Vasut9a8c72a2011-10-10 16:34:26 +010084static const unsigned char usb_kbd_numkey_shifted[] = {
Marek Vasut00b7d6e2011-10-10 05:34:25 +000085 '!', '@', '#', '$', '%', '^', '&', '*', '(', ')',
86 '\r', 0x1b, '\b', '\t', ' ', '_', '+', '{', '}',
87 '|', '~', ':', '"', '~', '<', '>', '?'
wdenkaffae2b2002-08-17 09:36:01 +000088};
89
Vincent Palatind53da842012-01-09 12:59:36 +000090static const unsigned char usb_kbd_num_keypad[] = {
91 '/', '*', '-', '+', '\r',
92 '1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
93 '.', 0, 0, 0, '='
94};
95
Marek Vasut9a8c72a2011-10-10 16:34:26 +010096/*
97 * NOTE: It's important for the NUM, CAPS, SCROLL-lock bits to be in this
98 * order. See usb_kbd_setled() function!
99 */
100#define USB_KBD_NUMLOCK (1 << 0)
101#define USB_KBD_CAPSLOCK (1 << 1)
102#define USB_KBD_SCROLLLOCK (1 << 2)
103#define USB_KBD_CTRL (1 << 3)
Marek Vasut48c80732011-09-25 20:00:37 +0100104
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100105#define USB_KBD_LEDMASK \
106 (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK)
107
108struct usb_kbd_pdata {
109 uint32_t repeat_delay;
110
111 uint32_t usb_in_pointer;
112 uint32_t usb_out_pointer;
113 uint8_t usb_kbd_buffer[USB_KBD_BUFFER_LEN];
114
115 uint8_t new[8];
116 uint8_t old[8];
117
118 uint8_t flags;
119};
120
121/* Generic keyboard event polling. */
122void usb_kbd_generic_poll(void)
123{
124 struct stdio_dev *dev;
125 struct usb_device *usb_kbd_dev;
126 struct usb_kbd_pdata *data;
127 struct usb_interface *iface;
128 struct usb_endpoint_descriptor *ep;
129 int pipe;
130 int maxp;
131
132 /* Get the pointer to USB Keyboard device pointer */
133 dev = stdio_get_by_name(DEVNAME);
134 usb_kbd_dev = (struct usb_device *)dev->priv;
135 data = usb_kbd_dev->privptr;
136 iface = &usb_kbd_dev->config.if_desc[0];
137 ep = &iface->ep_desc[0];
138 pipe = usb_rcvintpipe(usb_kbd_dev, ep->bEndpointAddress);
139
140 /* Submit a interrupt transfer request */
141 maxp = usb_maxpacket(usb_kbd_dev, pipe);
142 usb_submit_int_msg(usb_kbd_dev, pipe, data->new,
143 maxp > 8 ? 8 : maxp, ep->bInterval);
144}
145
146/* Puts character in the queue and sets up the in and out pointer. */
147static void usb_kbd_put_queue(struct usb_kbd_pdata *data, char c)
148{
149 if (data->usb_in_pointer == USB_KBD_BUFFER_LEN - 1) {
150 /* Check for buffer full. */
151 if (data->usb_out_pointer == 0)
152 return;
153
154 data->usb_in_pointer = 0;
155 } else {
156 /* Check for buffer full. */
157 if (data->usb_in_pointer == data->usb_out_pointer - 1)
158 return;
159
160 data->usb_in_pointer++;
161 }
162
163 data->usb_kbd_buffer[data->usb_in_pointer] = c;
164}
165
166/*
167 * Set the LEDs. Since this is used in the irq routine, the control job is
168 * issued with a timeout of 0. This means, that the job is queued without
169 * waiting for job completion.
170 */
171static void usb_kbd_setled(struct usb_device *dev)
172{
173 struct usb_interface *iface = &dev->config.if_desc[0];
174 struct usb_kbd_pdata *data = dev->privptr;
175 uint32_t leds = data->flags & USB_KBD_LEDMASK;
176
177 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
178 USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
179 0x200, iface->desc.bInterfaceNumber, (void *)&leds, 1, 0);
180}
181
182#define CAPITAL_MASK 0x20
183/* Translate the scancode in ASCII */
184static int usb_kbd_translate(struct usb_kbd_pdata *data, unsigned char scancode,
185 unsigned char modifier, int pressed)
186{
187 uint8_t keycode = 0;
188
189 /* Key released */
190 if (pressed == 0) {
191 data->repeat_delay = 0;
192 return 0;
193 }
194
195 if (pressed == 2) {
196 data->repeat_delay++;
197 if (data->repeat_delay < REPEAT_DELAY)
198 return 0;
199
200 data->repeat_delay = REPEAT_DELAY;
201 }
202
203 /* Alphanumeric values */
204 if ((scancode > 3) && (scancode <= 0x1d)) {
205 keycode = scancode - 4 + 'a';
206
207 if (data->flags & USB_KBD_CAPSLOCK)
208 keycode &= ~CAPITAL_MASK;
209
210 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) {
211 /* Handle CAPSLock + Shift pressed simultaneously */
212 if (keycode & CAPITAL_MASK)
213 keycode &= ~CAPITAL_MASK;
214 else
215 keycode |= CAPITAL_MASK;
216 }
217 }
218
219 if ((scancode > 0x1d) && (scancode < 0x3a)) {
220 /* Shift pressed */
221 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT))
222 keycode = usb_kbd_numkey_shifted[scancode - 0x1e];
223 else
224 keycode = usb_kbd_numkey[scancode - 0x1e];
225 }
226
Vincent Palatind53da842012-01-09 12:59:36 +0000227 /* Numeric keypad */
228 if ((scancode >= 0x54) && (scancode <= 0x67))
229 keycode = usb_kbd_num_keypad[scancode - 0x54];
230
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100231 if (data->flags & USB_KBD_CTRL)
232 keycode = scancode - 0x3;
233
234 if (pressed == 1) {
235 if (scancode == NUM_LOCK) {
236 data->flags ^= USB_KBD_NUMLOCK;
237 return 1;
238 }
239
240 if (scancode == CAPS_LOCK) {
241 data->flags ^= USB_KBD_CAPSLOCK;
242 return 1;
243 }
244 if (scancode == SCROLL_LOCK) {
245 data->flags ^= USB_KBD_SCROLLLOCK;
246 return 1;
247 }
248 }
249
250 /* Report keycode if any */
251 if (keycode) {
252 USB_KBD_PRINTF("%c", keycode);
253 usb_kbd_put_queue(data, keycode);
254 }
255
256 return 0;
257}
258
259static uint32_t usb_kbd_service_key(struct usb_device *dev, int i, int up)
260{
261 uint32_t res = 0;
262 struct usb_kbd_pdata *data = dev->privptr;
263 uint8_t *new;
264 uint8_t *old;
265
266 if (up) {
267 new = data->old;
268 old = data->new;
269 } else {
270 new = data->new;
271 old = data->old;
272 }
273
274 if ((old[i] > 3) && (memscan(new + 2, old[i], 6) == new + 8))
275 res |= usb_kbd_translate(data, old[i], data->new[0], up);
276
277 return res;
278}
279
280/* Interrupt service routine */
281static int usb_kbd_irq_worker(struct usb_device *dev)
282{
283 struct usb_kbd_pdata *data = dev->privptr;
284 int i, res = 0;
285
286 /* No combo key pressed */
287 if (data->new[0] == 0x00)
288 data->flags &= ~USB_KBD_CTRL;
289 /* Left or Right Ctrl pressed */
290 else if ((data->new[0] == LEFT_CNTR) || (data->new[0] == RIGHT_CNTR))
291 data->flags |= USB_KBD_CTRL;
292
293 for (i = 2; i < 8; i++) {
294 res |= usb_kbd_service_key(dev, i, 0);
295 res |= usb_kbd_service_key(dev, i, 1);
296 }
297
298 /* Key is still pressed */
299 if ((data->new[2] > 3) && (data->old[2] == data->new[2]))
300 res |= usb_kbd_translate(data, data->new[2], data->new[0], 2);
301
302 if (res == 1)
303 usb_kbd_setled(dev);
304
305 memcpy(data->old, data->new, 8);
306
307 return 1;
308}
309
310/* Keyboard interrupt handler */
311static int usb_kbd_irq(struct usb_device *dev)
312{
313 if ((dev->irq_status != 0) || (dev->irq_act_len != 8)) {
314 USB_KBD_PRINTF("USB KBD: Error %lX, len %d\n",
315 dev->irq_status, dev->irq_act_len);
316 return 1;
317 }
318
319 return usb_kbd_irq_worker(dev);
320}
321
322/* Interrupt polling */
Marek Vasut48c80732011-09-25 20:00:37 +0100323static inline void usb_kbd_poll_for_event(struct usb_device *dev)
324{
325#if defined(CONFIG_SYS_USB_EVENT_POLL)
amartin@nvidia.comf9636e82011-12-20 14:56:16 +0000326 struct usb_interface *iface;
327 struct usb_endpoint_descriptor *ep;
328 struct usb_kbd_pdata *data;
329 int pipe;
330 int maxp;
331
332 /* Get the pointer to USB Keyboard device pointer */
333 data = dev->privptr;
334 iface = &dev->config.if_desc[0];
335 ep = &iface->ep_desc[0];
336 pipe = usb_rcvintpipe(dev, ep->bEndpointAddress);
337
338 /* Submit a interrupt transfer request */
339 maxp = usb_maxpacket(dev, pipe);
340 usb_submit_int_msg(dev, pipe, &data->new[0],
341 maxp > 8 ? 8 : maxp, ep->bInterval);
342
Marek Vasut48c80732011-09-25 20:00:37 +0100343 usb_kbd_irq_worker(dev);
344#elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP)
345 struct usb_interface *iface;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100346 struct usb_kbd_pdata *data = dev->privptr;
Marek Vasut48c80732011-09-25 20:00:37 +0100347 iface = &dev->config.if_desc[0];
348 usb_get_report(dev, iface->desc.bInterfaceNumber,
Vincent Palatin3d173082012-01-09 08:35:09 +0000349 1, 0, data->new, sizeof(data->new));
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100350 if (memcmp(data->old, data->new, sizeof(data->new)))
Marek Vasut48c80732011-09-25 20:00:37 +0100351 usb_kbd_irq_worker(dev);
352#endif
353}
354
wdenkaffae2b2002-08-17 09:36:01 +0000355/* test if a character is in the queue */
356static int usb_kbd_testc(void)
357{
Marek Vasut48c80732011-09-25 20:00:37 +0100358 struct stdio_dev *dev;
359 struct usb_device *usb_kbd_dev;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100360 struct usb_kbd_pdata *data;
Marek Vasut48c80732011-09-25 20:00:37 +0100361
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100362 dev = stdio_get_by_name(DEVNAME);
Marek Vasut48c80732011-09-25 20:00:37 +0100363 usb_kbd_dev = (struct usb_device *)dev->priv;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100364 data = usb_kbd_dev->privptr;
Marek Vasut48c80732011-09-25 20:00:37 +0100365
366 usb_kbd_poll_for_event(usb_kbd_dev);
367
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100368 return !(data->usb_in_pointer == data->usb_out_pointer);
wdenkaffae2b2002-08-17 09:36:01 +0000369}
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100370
wdenkaffae2b2002-08-17 09:36:01 +0000371/* gets the character from the queue */
372static int usb_kbd_getc(void)
373{
Marek Vasut48c80732011-09-25 20:00:37 +0100374 struct stdio_dev *dev;
375 struct usb_device *usb_kbd_dev;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100376 struct usb_kbd_pdata *data;
Marek Vasut48c80732011-09-25 20:00:37 +0100377
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100378 dev = stdio_get_by_name(DEVNAME);
Marek Vasut48c80732011-09-25 20:00:37 +0100379 usb_kbd_dev = (struct usb_device *)dev->priv;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100380 data = usb_kbd_dev->privptr;
Marek Vasut48c80732011-09-25 20:00:37 +0100381
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100382 while (data->usb_in_pointer == data->usb_out_pointer)
Marek Vasut48c80732011-09-25 20:00:37 +0100383 usb_kbd_poll_for_event(usb_kbd_dev);
384
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100385 if (data->usb_out_pointer == USB_KBD_BUFFER_LEN - 1)
386 data->usb_out_pointer = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000387 else
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100388 data->usb_out_pointer++;
wdenkaffae2b2002-08-17 09:36:01 +0000389
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100390 return data->usb_kbd_buffer[data->usb_out_pointer];
wdenkaffae2b2002-08-17 09:36:01 +0000391}
392
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100393/* probes the USB device dev for keyboard type. */
394static int usb_kbd_probe(struct usb_device *dev, unsigned int ifnum)
395{
396 struct usb_interface *iface;
397 struct usb_endpoint_descriptor *ep;
398 struct usb_kbd_pdata *data;
399 int pipe, maxp;
wdenkaffae2b2002-08-17 09:36:01 +0000400
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100401 if (dev->descriptor.bNumConfigurations != 1)
402 return 0;
403
404 iface = &dev->config.if_desc[ifnum];
405
406 if (iface->desc.bInterfaceClass != 3)
407 return 0;
408
409 if (iface->desc.bInterfaceSubClass != 1)
410 return 0;
411
412 if (iface->desc.bInterfaceProtocol != 1)
413 return 0;
414
415 if (iface->desc.bNumEndpoints != 1)
416 return 0;
417
418 ep = &iface->ep_desc[0];
419
420 /* Check if endpoint 1 is interrupt endpoint */
421 if (!(ep->bEndpointAddress & 0x80))
422 return 0;
423
424 if ((ep->bmAttributes & 3) != 3)
425 return 0;
426
427 USB_KBD_PRINTF("USB KBD: found set protocol...\n");
428
429 data = malloc(sizeof(struct usb_kbd_pdata));
430 if (!data) {
431 printf("USB KBD: Error allocating private data\n");
432 return 0;
433 }
434
435 /* Clear private data */
436 memset(data, 0, sizeof(struct usb_kbd_pdata));
437
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
444 pipe = usb_rcvintpipe(dev, ep->bEndpointAddress);
445 maxp = usb_maxpacket(dev, pipe);
446
447 /* We found a USB Keyboard, install it. */
448 usb_set_protocol(dev, iface->desc.bInterfaceNumber, 0);
449
450 USB_KBD_PRINTF("USB KBD: found set idle...\n");
451 usb_set_idle(dev, iface->desc.bInterfaceNumber, REPEAT_RATE, 0);
452
453 USB_KBD_PRINTF("USB KBD: enable interrupt pipe...\n");
454 usb_submit_int_msg(dev, pipe, data->new, maxp > 8 ? 8 : maxp,
455 ep->bInterval);
456
457 /* Success. */
458 return 1;
459}
460
461/* Search for keyboard and register it if found. */
wdenkaffae2b2002-08-17 09:36:01 +0000462int drv_usb_kbd_init(void)
463{
Marek Vasut00b7d6e2011-10-10 05:34:25 +0000464 struct stdio_dev usb_kbd_dev, *old_dev;
wdenkaffae2b2002-08-17 09:36:01 +0000465 struct usb_device *dev;
Marek Vasut00b7d6e2011-10-10 05:34:25 +0000466 char *stdinname = getenv("stdin");
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100467 int error, i;
wdenkaffae2b2002-08-17 09:36:01 +0000468
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100469 /* Scan all USB Devices */
470 for (i = 0; i < USB_MAX_DEVICE; i++) {
471 /* Get USB device. */
472 dev = usb_get_dev_index(i);
473 if (!dev)
Ryan CHEN3b20fd82008-08-20 13:00:17 -0400474 return -1;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100475
476 if (dev->devnum == -1)
477 continue;
478
479 /* Try probing the keyboard */
480 if (usb_kbd_probe(dev, 0) != 1)
481 continue;
482
483 /* We found a keyboard, check if it is already registered. */
484 USB_KBD_PRINTF("USB KBD: found set up device.\n");
485 old_dev = stdio_get_by_name(DEVNAME);
486 if (old_dev) {
487 /* Already registered, just return ok. */
488 USB_KBD_PRINTF("USB KBD: is already registered.\n");
489 return 1;
wdenkaffae2b2002-08-17 09:36:01 +0000490 }
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100491
492 /* Register the keyboard */
493 USB_KBD_PRINTF("USB KBD: register.\n");
494 memset(&usb_kbd_dev, 0, sizeof(struct stdio_dev));
495 strcpy(usb_kbd_dev.name, DEVNAME);
496 usb_kbd_dev.flags = DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM;
497 usb_kbd_dev.putc = NULL;
498 usb_kbd_dev.puts = NULL;
499 usb_kbd_dev.getc = usb_kbd_getc;
500 usb_kbd_dev.tstc = usb_kbd_testc;
501 usb_kbd_dev.priv = (void *)dev;
502 error = stdio_register(&usb_kbd_dev);
503 if (error)
504 return error;
505
amartin@nvidia.comfb3ef642011-12-23 10:29:48 +0000506#ifdef CONFIG_CONSOLE_MUX
507 error = iomux_doenv(stdin, stdinname);
508 if (error)
509 return error;
510#else
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100511 /* Check if this is the standard input device. */
512 if (strcmp(stdinname, DEVNAME))
513 return 1;
514
515 /* Reassign the console */
516 if (overwrite_console())
517 return 1;
518
519 error = console_assign(stdin, DEVNAME);
520 if (error)
521 return error;
amartin@nvidia.comfb3ef642011-12-23 10:29:48 +0000522#endif
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100523
524 return 1;
wdenkaffae2b2002-08-17 09:36:01 +0000525 }
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100526
527 /* No USB Keyboard found */
wdenkaffae2b2002-08-17 09:36:01 +0000528 return -1;
529}
530
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100531/* Deregister the keyboard. */
wdenkaffae2b2002-08-17 09:36:01 +0000532int usb_kbd_deregister(void)
533{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200534#ifdef CONFIG_SYS_STDIO_DEREGISTER
535 return stdio_deregister(DEVNAME);
Jean-Christophe PLAGNIOL-VILLARDfea91ed2008-12-02 21:58:04 +0100536#else
537 return 1;
538#endif
wdenkaffae2b2002-08-17 09:36:01 +0000539}