blob: 4efbcfe90d369fdc60028640c74efba05d3442b6 [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/*
Allen Martin4151a402012-11-06 13:26:03 -080097 * map arrow keys to ^F/^B ^N/^P, can't really use the proper
98 * ANSI sequence for arrow keys because the queuing code breaks
99 * when a single keypress expands to 3 queue elements
100 */
101static const unsigned char usb_kbd_arrow[] = {
102 0x6, 0x2, 0xe, 0x10
103};
104
105/*
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100106 * NOTE: It's important for the NUM, CAPS, SCROLL-lock bits to be in this
107 * order. See usb_kbd_setled() function!
108 */
109#define USB_KBD_NUMLOCK (1 << 0)
110#define USB_KBD_CAPSLOCK (1 << 1)
111#define USB_KBD_SCROLLLOCK (1 << 2)
112#define USB_KBD_CTRL (1 << 3)
Marek Vasut48c80732011-09-25 20:00:37 +0100113
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100114#define USB_KBD_LEDMASK \
115 (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK)
116
117struct usb_kbd_pdata {
118 uint32_t repeat_delay;
119
120 uint32_t usb_in_pointer;
121 uint32_t usb_out_pointer;
122 uint8_t usb_kbd_buffer[USB_KBD_BUFFER_LEN];
123
Allen Martind7475382012-10-24 08:32:04 +0000124 uint8_t *new;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100125 uint8_t old[8];
126
127 uint8_t flags;
128};
129
130/* Generic keyboard event polling. */
131void usb_kbd_generic_poll(void)
132{
133 struct stdio_dev *dev;
134 struct usb_device *usb_kbd_dev;
135 struct usb_kbd_pdata *data;
136 struct usb_interface *iface;
137 struct usb_endpoint_descriptor *ep;
138 int pipe;
139 int maxp;
140
141 /* Get the pointer to USB Keyboard device pointer */
142 dev = stdio_get_by_name(DEVNAME);
143 usb_kbd_dev = (struct usb_device *)dev->priv;
144 data = usb_kbd_dev->privptr;
145 iface = &usb_kbd_dev->config.if_desc[0];
146 ep = &iface->ep_desc[0];
147 pipe = usb_rcvintpipe(usb_kbd_dev, ep->bEndpointAddress);
148
149 /* Submit a interrupt transfer request */
150 maxp = usb_maxpacket(usb_kbd_dev, pipe);
151 usb_submit_int_msg(usb_kbd_dev, pipe, data->new,
152 maxp > 8 ? 8 : maxp, ep->bInterval);
153}
154
155/* Puts character in the queue and sets up the in and out pointer. */
156static void usb_kbd_put_queue(struct usb_kbd_pdata *data, char c)
157{
158 if (data->usb_in_pointer == USB_KBD_BUFFER_LEN - 1) {
159 /* Check for buffer full. */
160 if (data->usb_out_pointer == 0)
161 return;
162
163 data->usb_in_pointer = 0;
164 } else {
165 /* Check for buffer full. */
166 if (data->usb_in_pointer == data->usb_out_pointer - 1)
167 return;
168
169 data->usb_in_pointer++;
170 }
171
172 data->usb_kbd_buffer[data->usb_in_pointer] = c;
173}
174
175/*
176 * Set the LEDs. Since this is used in the irq routine, the control job is
177 * issued with a timeout of 0. This means, that the job is queued without
178 * waiting for job completion.
179 */
180static void usb_kbd_setled(struct usb_device *dev)
181{
182 struct usb_interface *iface = &dev->config.if_desc[0];
183 struct usb_kbd_pdata *data = dev->privptr;
184 uint32_t leds = data->flags & USB_KBD_LEDMASK;
185
186 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
187 USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
188 0x200, iface->desc.bInterfaceNumber, (void *)&leds, 1, 0);
189}
190
191#define CAPITAL_MASK 0x20
192/* Translate the scancode in ASCII */
193static int usb_kbd_translate(struct usb_kbd_pdata *data, unsigned char scancode,
194 unsigned char modifier, int pressed)
195{
196 uint8_t keycode = 0;
197
198 /* Key released */
199 if (pressed == 0) {
200 data->repeat_delay = 0;
201 return 0;
202 }
203
204 if (pressed == 2) {
205 data->repeat_delay++;
206 if (data->repeat_delay < REPEAT_DELAY)
207 return 0;
208
209 data->repeat_delay = REPEAT_DELAY;
210 }
211
212 /* Alphanumeric values */
213 if ((scancode > 3) && (scancode <= 0x1d)) {
214 keycode = scancode - 4 + 'a';
215
216 if (data->flags & USB_KBD_CAPSLOCK)
217 keycode &= ~CAPITAL_MASK;
218
219 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) {
220 /* Handle CAPSLock + Shift pressed simultaneously */
221 if (keycode & CAPITAL_MASK)
222 keycode &= ~CAPITAL_MASK;
223 else
224 keycode |= CAPITAL_MASK;
225 }
226 }
227
228 if ((scancode > 0x1d) && (scancode < 0x3a)) {
229 /* Shift pressed */
230 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT))
231 keycode = usb_kbd_numkey_shifted[scancode - 0x1e];
232 else
233 keycode = usb_kbd_numkey[scancode - 0x1e];
234 }
235
Allen Martin4151a402012-11-06 13:26:03 -0800236 /* Arrow keys */
237 if ((scancode >= 0x4f) && (scancode <= 0x52))
238 keycode = usb_kbd_arrow[scancode - 0x4f];
239
Vincent Palatind53da842012-01-09 12:59:36 +0000240 /* Numeric keypad */
241 if ((scancode >= 0x54) && (scancode <= 0x67))
242 keycode = usb_kbd_num_keypad[scancode - 0x54];
243
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100244 if (data->flags & USB_KBD_CTRL)
245 keycode = scancode - 0x3;
246
247 if (pressed == 1) {
248 if (scancode == NUM_LOCK) {
249 data->flags ^= USB_KBD_NUMLOCK;
250 return 1;
251 }
252
253 if (scancode == CAPS_LOCK) {
254 data->flags ^= USB_KBD_CAPSLOCK;
255 return 1;
256 }
257 if (scancode == SCROLL_LOCK) {
258 data->flags ^= USB_KBD_SCROLLLOCK;
259 return 1;
260 }
261 }
262
263 /* Report keycode if any */
264 if (keycode) {
265 USB_KBD_PRINTF("%c", keycode);
266 usb_kbd_put_queue(data, keycode);
267 }
268
269 return 0;
270}
271
272static uint32_t usb_kbd_service_key(struct usb_device *dev, int i, int up)
273{
274 uint32_t res = 0;
275 struct usb_kbd_pdata *data = dev->privptr;
276 uint8_t *new;
277 uint8_t *old;
278
279 if (up) {
280 new = data->old;
281 old = data->new;
282 } else {
283 new = data->new;
284 old = data->old;
285 }
286
287 if ((old[i] > 3) && (memscan(new + 2, old[i], 6) == new + 8))
288 res |= usb_kbd_translate(data, old[i], data->new[0], up);
289
290 return res;
291}
292
293/* Interrupt service routine */
294static int usb_kbd_irq_worker(struct usb_device *dev)
295{
296 struct usb_kbd_pdata *data = dev->privptr;
297 int i, res = 0;
298
299 /* No combo key pressed */
300 if (data->new[0] == 0x00)
301 data->flags &= ~USB_KBD_CTRL;
302 /* Left or Right Ctrl pressed */
303 else if ((data->new[0] == LEFT_CNTR) || (data->new[0] == RIGHT_CNTR))
304 data->flags |= USB_KBD_CTRL;
305
306 for (i = 2; i < 8; i++) {
307 res |= usb_kbd_service_key(dev, i, 0);
308 res |= usb_kbd_service_key(dev, i, 1);
309 }
310
311 /* Key is still pressed */
312 if ((data->new[2] > 3) && (data->old[2] == data->new[2]))
313 res |= usb_kbd_translate(data, data->new[2], data->new[0], 2);
314
315 if (res == 1)
316 usb_kbd_setled(dev);
317
318 memcpy(data->old, data->new, 8);
319
320 return 1;
321}
322
323/* Keyboard interrupt handler */
324static int usb_kbd_irq(struct usb_device *dev)
325{
326 if ((dev->irq_status != 0) || (dev->irq_act_len != 8)) {
327 USB_KBD_PRINTF("USB KBD: Error %lX, len %d\n",
328 dev->irq_status, dev->irq_act_len);
329 return 1;
330 }
331
332 return usb_kbd_irq_worker(dev);
333}
334
335/* Interrupt polling */
Marek Vasut48c80732011-09-25 20:00:37 +0100336static inline void usb_kbd_poll_for_event(struct usb_device *dev)
337{
338#if defined(CONFIG_SYS_USB_EVENT_POLL)
amartin@nvidia.comf9636e82011-12-20 14:56:16 +0000339 struct usb_interface *iface;
340 struct usb_endpoint_descriptor *ep;
341 struct usb_kbd_pdata *data;
342 int pipe;
343 int maxp;
344
345 /* Get the pointer to USB Keyboard device pointer */
346 data = dev->privptr;
347 iface = &dev->config.if_desc[0];
348 ep = &iface->ep_desc[0];
349 pipe = usb_rcvintpipe(dev, ep->bEndpointAddress);
350
351 /* Submit a interrupt transfer request */
352 maxp = usb_maxpacket(dev, pipe);
353 usb_submit_int_msg(dev, pipe, &data->new[0],
354 maxp > 8 ? 8 : maxp, ep->bInterval);
355
Marek Vasut48c80732011-09-25 20:00:37 +0100356 usb_kbd_irq_worker(dev);
357#elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP)
358 struct usb_interface *iface;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100359 struct usb_kbd_pdata *data = dev->privptr;
Marek Vasut48c80732011-09-25 20:00:37 +0100360 iface = &dev->config.if_desc[0];
361 usb_get_report(dev, iface->desc.bInterfaceNumber,
Vincent Palatin3d173082012-01-09 08:35:09 +0000362 1, 0, data->new, sizeof(data->new));
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100363 if (memcmp(data->old, data->new, sizeof(data->new)))
Marek Vasut48c80732011-09-25 20:00:37 +0100364 usb_kbd_irq_worker(dev);
365#endif
366}
367
wdenkaffae2b2002-08-17 09:36:01 +0000368/* test if a character is in the queue */
369static int usb_kbd_testc(void)
370{
Marek Vasut48c80732011-09-25 20:00:37 +0100371 struct stdio_dev *dev;
372 struct usb_device *usb_kbd_dev;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100373 struct usb_kbd_pdata *data;
Marek Vasut48c80732011-09-25 20:00:37 +0100374
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100375 dev = stdio_get_by_name(DEVNAME);
Marek Vasut48c80732011-09-25 20:00:37 +0100376 usb_kbd_dev = (struct usb_device *)dev->priv;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100377 data = usb_kbd_dev->privptr;
Marek Vasut48c80732011-09-25 20:00:37 +0100378
379 usb_kbd_poll_for_event(usb_kbd_dev);
380
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100381 return !(data->usb_in_pointer == data->usb_out_pointer);
wdenkaffae2b2002-08-17 09:36:01 +0000382}
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100383
wdenkaffae2b2002-08-17 09:36:01 +0000384/* gets the character from the queue */
385static int usb_kbd_getc(void)
386{
Marek Vasut48c80732011-09-25 20:00:37 +0100387 struct stdio_dev *dev;
388 struct usb_device *usb_kbd_dev;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100389 struct usb_kbd_pdata *data;
Marek Vasut48c80732011-09-25 20:00:37 +0100390
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100391 dev = stdio_get_by_name(DEVNAME);
Marek Vasut48c80732011-09-25 20:00:37 +0100392 usb_kbd_dev = (struct usb_device *)dev->priv;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100393 data = usb_kbd_dev->privptr;
Marek Vasut48c80732011-09-25 20:00:37 +0100394
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100395 while (data->usb_in_pointer == data->usb_out_pointer)
Marek Vasut48c80732011-09-25 20:00:37 +0100396 usb_kbd_poll_for_event(usb_kbd_dev);
397
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100398 if (data->usb_out_pointer == USB_KBD_BUFFER_LEN - 1)
399 data->usb_out_pointer = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000400 else
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100401 data->usb_out_pointer++;
wdenkaffae2b2002-08-17 09:36:01 +0000402
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100403 return data->usb_kbd_buffer[data->usb_out_pointer];
wdenkaffae2b2002-08-17 09:36:01 +0000404}
405
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100406/* probes the USB device dev for keyboard type. */
407static int usb_kbd_probe(struct usb_device *dev, unsigned int ifnum)
408{
409 struct usb_interface *iface;
410 struct usb_endpoint_descriptor *ep;
411 struct usb_kbd_pdata *data;
412 int pipe, maxp;
wdenkaffae2b2002-08-17 09:36:01 +0000413
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100414 if (dev->descriptor.bNumConfigurations != 1)
415 return 0;
416
417 iface = &dev->config.if_desc[ifnum];
418
419 if (iface->desc.bInterfaceClass != 3)
420 return 0;
421
422 if (iface->desc.bInterfaceSubClass != 1)
423 return 0;
424
425 if (iface->desc.bInterfaceProtocol != 1)
426 return 0;
427
428 if (iface->desc.bNumEndpoints != 1)
429 return 0;
430
431 ep = &iface->ep_desc[0];
432
433 /* Check if endpoint 1 is interrupt endpoint */
434 if (!(ep->bEndpointAddress & 0x80))
435 return 0;
436
437 if ((ep->bmAttributes & 3) != 3)
438 return 0;
439
440 USB_KBD_PRINTF("USB KBD: found set protocol...\n");
441
442 data = malloc(sizeof(struct usb_kbd_pdata));
443 if (!data) {
444 printf("USB KBD: Error allocating private data\n");
445 return 0;
446 }
447
448 /* Clear private data */
449 memset(data, 0, sizeof(struct usb_kbd_pdata));
450
Allen Martind7475382012-10-24 08:32:04 +0000451 /* allocate input buffer aligned and sized to USB DMA alignment */
452 data->new = memalign(USB_DMA_MINALIGN, roundup(8, USB_DMA_MINALIGN));
453
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100454 /* Insert private data into USB device structure */
455 dev->privptr = data;
456
457 /* Set IRQ handler */
458 dev->irq_handle = usb_kbd_irq;
459
460 pipe = usb_rcvintpipe(dev, ep->bEndpointAddress);
461 maxp = usb_maxpacket(dev, pipe);
462
463 /* We found a USB Keyboard, install it. */
464 usb_set_protocol(dev, iface->desc.bInterfaceNumber, 0);
465
466 USB_KBD_PRINTF("USB KBD: found set idle...\n");
467 usb_set_idle(dev, iface->desc.bInterfaceNumber, REPEAT_RATE, 0);
468
469 USB_KBD_PRINTF("USB KBD: enable interrupt pipe...\n");
470 usb_submit_int_msg(dev, pipe, data->new, maxp > 8 ? 8 : maxp,
471 ep->bInterval);
472
473 /* Success. */
474 return 1;
475}
476
477/* Search for keyboard and register it if found. */
wdenkaffae2b2002-08-17 09:36:01 +0000478int drv_usb_kbd_init(void)
479{
Marek Vasut00b7d6e2011-10-10 05:34:25 +0000480 struct stdio_dev usb_kbd_dev, *old_dev;
wdenkaffae2b2002-08-17 09:36:01 +0000481 struct usb_device *dev;
Marek Vasut00b7d6e2011-10-10 05:34:25 +0000482 char *stdinname = getenv("stdin");
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100483 int error, i;
wdenkaffae2b2002-08-17 09:36:01 +0000484
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100485 /* Scan all USB Devices */
486 for (i = 0; i < USB_MAX_DEVICE; i++) {
487 /* Get USB device. */
488 dev = usb_get_dev_index(i);
489 if (!dev)
Ryan CHEN3b20fd82008-08-20 13:00:17 -0400490 return -1;
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100491
492 if (dev->devnum == -1)
493 continue;
494
495 /* Try probing the keyboard */
496 if (usb_kbd_probe(dev, 0) != 1)
497 continue;
498
499 /* We found a keyboard, check if it is already registered. */
500 USB_KBD_PRINTF("USB KBD: found set up device.\n");
501 old_dev = stdio_get_by_name(DEVNAME);
502 if (old_dev) {
503 /* Already registered, just return ok. */
504 USB_KBD_PRINTF("USB KBD: is already registered.\n");
505 return 1;
wdenkaffae2b2002-08-17 09:36:01 +0000506 }
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100507
508 /* Register the keyboard */
509 USB_KBD_PRINTF("USB KBD: register.\n");
510 memset(&usb_kbd_dev, 0, sizeof(struct stdio_dev));
511 strcpy(usb_kbd_dev.name, DEVNAME);
512 usb_kbd_dev.flags = DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM;
513 usb_kbd_dev.putc = NULL;
514 usb_kbd_dev.puts = NULL;
515 usb_kbd_dev.getc = usb_kbd_getc;
516 usb_kbd_dev.tstc = usb_kbd_testc;
517 usb_kbd_dev.priv = (void *)dev;
518 error = stdio_register(&usb_kbd_dev);
519 if (error)
520 return error;
521
amartin@nvidia.comfb3ef642011-12-23 10:29:48 +0000522#ifdef CONFIG_CONSOLE_MUX
523 error = iomux_doenv(stdin, stdinname);
524 if (error)
525 return error;
526#else
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100527 /* Check if this is the standard input device. */
528 if (strcmp(stdinname, DEVNAME))
529 return 1;
530
531 /* Reassign the console */
532 if (overwrite_console())
533 return 1;
534
535 error = console_assign(stdin, DEVNAME);
536 if (error)
537 return error;
amartin@nvidia.comfb3ef642011-12-23 10:29:48 +0000538#endif
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100539
540 return 1;
wdenkaffae2b2002-08-17 09:36:01 +0000541 }
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100542
543 /* No USB Keyboard found */
wdenkaffae2b2002-08-17 09:36:01 +0000544 return -1;
545}
546
Marek Vasut9a8c72a2011-10-10 16:34:26 +0100547/* Deregister the keyboard. */
wdenkaffae2b2002-08-17 09:36:01 +0000548int usb_kbd_deregister(void)
549{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200550#ifdef CONFIG_SYS_STDIO_DEREGISTER
551 return stdio_deregister(DEVNAME);
Jean-Christophe PLAGNIOL-VILLARDfea91ed2008-12-02 21:58:04 +0100552#else
553 return 1;
554#endif
wdenkaffae2b2002-08-17 09:36:01 +0000555}