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 Vasut7534a3e2011-10-10 16:34:26 +010028#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020029#include <stdio_dev.h>
Christian Eggers4e0e8d02008-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 Vasut7534a3e2011-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 Vasutb9300982011-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-VILLARD03836942008-10-16 15:01:15 +020045#ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
Marek Vasutb9300982011-10-10 05:34:25 +000046extern int overwrite_console(void);
wdenkaffae2b2002-08-17 09:36:01 +000047#else
Marek Vasutb9300982011-10-10 05:34:25 +000048int overwrite_console(void)
wdenkaffae2b2002-08-17 09:36:01 +000049{
Marek Vasutb9300982011-10-10 05:34:25 +000050 return 0;
wdenkaffae2b2002-08-17 09:36:01 +000051}
52#endif
53
Marek Vasut7534a3e2011-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 Vasutb9300982011-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 Vasut7534a3e2011-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 Vasut7534a3e2011-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 Vasut7534a3e2011-10-10 16:34:26 +010075/* Device name */
Marek Vasutb9300982011-10-10 05:34:25 +000076#define DEVNAME "usbkbd"
wdenkaffae2b2002-08-17 09:36:01 +000077
Marek Vasut7534a3e2011-10-10 16:34:26 +010078/* Keyboard maps */
79static const unsigned char usb_kbd_numkey[] = {
Marek Vasutb9300982011-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 Vasut7534a3e2011-10-10 16:34:26 +010084static const unsigned char usb_kbd_numkey_shifted[] = {
Marek Vasutb9300982011-10-10 05:34:25 +000085 '!', '@', '#', '$', '%', '^', '&', '*', '(', ')',
86 '\r', 0x1b, '\b', '\t', ' ', '_', '+', '{', '}',
87 '|', '~', ':', '"', '~', '<', '>', '?'
wdenkaffae2b2002-08-17 09:36:01 +000088};
89
Vincent Palatin92f6a622012-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 Vasut7534a3e2011-10-10 16:34:26 +010096/*
Allen Martin1bfb4cd2012-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 Vasut7534a3e2011-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 Vasut82cf9a42011-09-25 20:00:37 +0100113
Marek Vasut7534a3e2011-10-10 16:34:26 +0100114#define USB_KBD_LEDMASK \
115 (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK)
Marek Vasut82cf9a42011-09-25 20:00:37 +0100116
Marek Vasut7534a3e2011-10-10 16:34:26 +0100117struct usb_kbd_pdata {
118 uint32_t repeat_delay;
wdenkaffae2b2002-08-17 09:36:01 +0000119
Marek Vasut7534a3e2011-10-10 16:34:26 +0100120 uint32_t usb_in_pointer;
121 uint32_t usb_out_pointer;
122 uint8_t usb_kbd_buffer[USB_KBD_BUFFER_LEN];
Marek Vasut82cf9a42011-09-25 20:00:37 +0100123
Allen Martinef769ca2012-10-24 08:32:04 +0000124 uint8_t *new;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100125 uint8_t old[8];
Marek Vasut82cf9a42011-09-25 20:00:37 +0100126
Marek Vasut7534a3e2011-10-10 16:34:26 +0100127 uint8_t flags;
128};
Marek Vasut82cf9a42011-09-25 20:00:37 +0100129
Marek Vasut7534a3e2011-10-10 16:34:26 +0100130/* Generic keyboard event polling. */
131void usb_kbd_generic_poll(void)
wdenkaffae2b2002-08-17 09:36:01 +0000132{
Marek Vasut82cf9a42011-09-25 20:00:37 +0100133 struct stdio_dev *dev;
134 struct usb_device *usb_kbd_dev;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100135 struct usb_kbd_pdata *data;
136 struct usb_interface *iface;
137 struct usb_endpoint_descriptor *ep;
138 int pipe;
139 int maxp;
Marek Vasut82cf9a42011-09-25 20:00:37 +0100140
Marek Vasut7534a3e2011-10-10 16:34:26 +0100141 /* Get the pointer to USB Keyboard device pointer */
142 dev = stdio_get_by_name(DEVNAME);
Marek Vasut82cf9a42011-09-25 20:00:37 +0100143 usb_kbd_dev = (struct usb_device *)dev->priv;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100144 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);
wdenkaffae2b2002-08-17 09:36:01 +0000148
Marek Vasut7534a3e2011-10-10 16:34:26 +0100149 /* 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);
wdenkaffae2b2002-08-17 09:36:01 +0000153}
154
Marek Vasut7534a3e2011-10-10 16:34:26 +0100155/* 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)
wdenkaffae2b2002-08-17 09:36:01 +0000157{
Marek Vasut7534a3e2011-10-10 16:34:26 +0100158 if (data->usb_in_pointer == USB_KBD_BUFFER_LEN - 1) {
159 /* Check for buffer full. */
160 if (data->usb_out_pointer == 0)
161 return;
wdenkaffae2b2002-08-17 09:36:01 +0000162
Marek Vasut7534a3e2011-10-10 16:34:26 +0100163 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;
wdenkaffae2b2002-08-17 09:36:01 +0000168
Marek Vasut7534a3e2011-10-10 16:34:26 +0100169 data->usb_in_pointer++;
170 }
wdenkaffae2b2002-08-17 09:36:01 +0000171
Marek Vasut7534a3e2011-10-10 16:34:26 +0100172 data->usb_kbd_buffer[data->usb_in_pointer] = c;
wdenkaffae2b2002-08-17 09:36:01 +0000173}
174
Marek Vasut7534a3e2011-10-10 16:34:26 +0100175/*
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.
wdenkaffae2b2002-08-17 09:36:01 +0000179 */
wdenkaffae2b2002-08-17 09:36:01 +0000180static void usb_kbd_setled(struct usb_device *dev)
181{
Marek Vasut7534a3e2011-10-10 16:34:26 +0100182 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
wdenkaffae2b2002-08-17 09:36:01 +0000186 usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
187 USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
Tom Rix83b9e1d2009-10-31 12:37:38 -0500188 0x200, iface->desc.bInterfaceNumber, (void *)&leds, 1, 0);
wdenkaffae2b2002-08-17 09:36:01 +0000189}
190
Marek Vasut7534a3e2011-10-10 16:34:26 +0100191#define CAPITAL_MASK 0x20
wdenkaffae2b2002-08-17 09:36:01 +0000192/* Translate the scancode in ASCII */
Marek Vasut7534a3e2011-10-10 16:34:26 +0100193static int usb_kbd_translate(struct usb_kbd_pdata *data, unsigned char scancode,
194 unsigned char modifier, int pressed)
wdenkaffae2b2002-08-17 09:36:01 +0000195{
Marek Vasut7534a3e2011-10-10 16:34:26 +0100196 uint8_t keycode = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000197
Marek Vasut7534a3e2011-10-10 16:34:26 +0100198 /* Key released */
Marek Vasutb9300982011-10-10 05:34:25 +0000199 if (pressed == 0) {
Marek Vasut7534a3e2011-10-10 16:34:26 +0100200 data->repeat_delay = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000201 return 0;
202 }
Marek Vasut7534a3e2011-10-10 16:34:26 +0100203
Marek Vasutb9300982011-10-10 05:34:25 +0000204 if (pressed == 2) {
Marek Vasut7534a3e2011-10-10 16:34:26 +0100205 data->repeat_delay++;
206 if (data->repeat_delay < REPEAT_DELAY)
wdenkaffae2b2002-08-17 09:36:01 +0000207 return 0;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100208
209 data->repeat_delay = REPEAT_DELAY;
wdenkaffae2b2002-08-17 09:36:01 +0000210 }
Marek Vasut7534a3e2011-10-10 16:34:26 +0100211
212 /* Alphanumeric values */
213 if ((scancode > 3) && (scancode <= 0x1d)) {
214 keycode = scancode - 4 + 'a';
215
216 if (data->flags & USB_KBD_CAPSLOCK)
Marek Vasutb9300982011-10-10 05:34:25 +0000217 keycode &= ~CAPITAL_MASK;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100218
219 if (modifier & (LEFT_SHIFT | RIGHT_SHIFT)) {
220 /* Handle CAPSLock + Shift pressed simultaneously */
Marek Vasutb9300982011-10-10 05:34:25 +0000221 if (keycode & CAPITAL_MASK)
Marek Vasutb9300982011-10-10 05:34:25 +0000222 keycode &= ~CAPITAL_MASK;
wdenkaffae2b2002-08-17 09:36:01 +0000223 else
Marek Vasutb9300982011-10-10 05:34:25 +0000224 keycode |= CAPITAL_MASK;
wdenkaffae2b2002-08-17 09:36:01 +0000225 }
226 }
Marek Vasut7534a3e2011-10-10 16:34:26 +0100227
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];
wdenkaffae2b2002-08-17 09:36:01 +0000234 }
Zhang Wei37cc4f02008-01-03 10:51:15 +0800235
Allen Martin1bfb4cd2012-11-06 13:26:03 -0800236 /* Arrow keys */
237 if ((scancode >= 0x4f) && (scancode <= 0x52))
238 keycode = usb_kbd_arrow[scancode - 0x4f];
239
Vincent Palatin92f6a622012-01-09 12:59:36 +0000240 /* Numeric keypad */
241 if ((scancode >= 0x54) && (scancode <= 0x67))
242 keycode = usb_kbd_num_keypad[scancode - 0x54];
243
Marek Vasut7534a3e2011-10-10 16:34:26 +0100244 if (data->flags & USB_KBD_CTRL)
Zhang Wei37cc4f02008-01-03 10:51:15 +0800245 keycode = scancode - 0x3;
246
Marek Vasutb9300982011-10-10 05:34:25 +0000247 if (pressed == 1) {
248 if (scancode == NUM_LOCK) {
Marek Vasut7534a3e2011-10-10 16:34:26 +0100249 data->flags ^= USB_KBD_NUMLOCK;
wdenkaffae2b2002-08-17 09:36:01 +0000250 return 1;
251 }
Marek Vasut7534a3e2011-10-10 16:34:26 +0100252
Marek Vasutb9300982011-10-10 05:34:25 +0000253 if (scancode == CAPS_LOCK) {
Marek Vasut7534a3e2011-10-10 16:34:26 +0100254 data->flags ^= USB_KBD_CAPSLOCK;
wdenkaffae2b2002-08-17 09:36:01 +0000255 return 1;
256 }
Marek Vasutb9300982011-10-10 05:34:25 +0000257 if (scancode == SCROLL_LOCK) {
Marek Vasut7534a3e2011-10-10 16:34:26 +0100258 data->flags ^= USB_KBD_SCROLLLOCK;
wdenkaffae2b2002-08-17 09:36:01 +0000259 return 1;
260 }
261 }
Marek Vasut7534a3e2011-10-10 16:34:26 +0100262
263 /* Report keycode if any */
264 if (keycode) {
Marek Vasutb9300982011-10-10 05:34:25 +0000265 USB_KBD_PRINTF("%c", keycode);
Marek Vasut7534a3e2011-10-10 16:34:26 +0100266 usb_kbd_put_queue(data, keycode);
wdenkaffae2b2002-08-17 09:36:01 +0000267 }
Marek Vasut7534a3e2011-10-10 16:34:26 +0100268
wdenkaffae2b2002-08-17 09:36:01 +0000269 return 0;
270}
271
Marek Vasut7534a3e2011-10-10 16:34:26 +0100272static 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
wdenkaffae2b2002-08-17 09:36:01 +0000293/* Interrupt service routine */
Marek Vasut82cf9a42011-09-25 20:00:37 +0100294static int usb_kbd_irq_worker(struct usb_device *dev)
wdenkaffae2b2002-08-17 09:36:01 +0000295{
Marek Vasut7534a3e2011-10-10 16:34:26 +0100296 struct usb_kbd_pdata *data = dev->privptr;
297 int i, res = 0;
wdenkaffae2b2002-08-17 09:36:01 +0000298
Marek Vasut7534a3e2011-10-10 16:34:26 +0100299 /* 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;
Zhang Wei37cc4f02008-01-03 10:51:15 +0800305
wdenkaffae2b2002-08-17 09:36:01 +0000306 for (i = 2; i < 8; i++) {
Marek Vasut7534a3e2011-10-10 16:34:26 +0100307 res |= usb_kbd_service_key(dev, i, 0);
308 res |= usb_kbd_service_key(dev, i, 1);
wdenkaffae2b2002-08-17 09:36:01 +0000309 }
Marek Vasutb9300982011-10-10 05:34:25 +0000310
Marek Vasut7534a3e2011-10-10 16:34:26 +0100311 /* 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
Marek Vasutb9300982011-10-10 05:34:25 +0000315 if (res == 1)
wdenkaffae2b2002-08-17 09:36:01 +0000316 usb_kbd_setled(dev);
Marek Vasutb9300982011-10-10 05:34:25 +0000317
Marek Vasut7534a3e2011-10-10 16:34:26 +0100318 memcpy(data->old, data->new, 8);
Marek Vasutb9300982011-10-10 05:34:25 +0000319
Marek Vasut7534a3e2011-10-10 16:34:26 +0100320 return 1;
wdenkaffae2b2002-08-17 09:36:01 +0000321}
322
Marek Vasut7534a3e2011-10-10 16:34:26 +0100323/* Keyboard interrupt handler */
Marek Vasut82cf9a42011-09-25 20:00:37 +0100324static int usb_kbd_irq(struct usb_device *dev)
325{
326 if ((dev->irq_status != 0) || (dev->irq_act_len != 8)) {
Marek Vasut7534a3e2011-10-10 16:34:26 +0100327 USB_KBD_PRINTF("USB KBD: Error %lX, len %d\n",
Marek Vasut82cf9a42011-09-25 20:00:37 +0100328 dev->irq_status, dev->irq_act_len);
329 return 1;
330 }
331
332 return usb_kbd_irq_worker(dev);
333}
334
Marek Vasut7534a3e2011-10-10 16:34:26 +0100335/* Interrupt polling */
336static inline void usb_kbd_poll_for_event(struct usb_device *dev)
337{
338#if defined(CONFIG_SYS_USB_EVENT_POLL)
amartin@nvidia.com185da952011-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 Vasut7534a3e2011-10-10 16:34:26 +0100356 usb_kbd_irq_worker(dev);
357#elif defined(CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP)
358 struct usb_interface *iface;
359 struct usb_kbd_pdata *data = dev->privptr;
360 iface = &dev->config.if_desc[0];
361 usb_get_report(dev, iface->desc.bInterfaceNumber,
Vincent Palatinf3f3a5d2012-01-09 08:35:09 +0000362 1, 0, data->new, sizeof(data->new));
Marek Vasut7534a3e2011-10-10 16:34:26 +0100363 if (memcmp(data->old, data->new, sizeof(data->new)))
364 usb_kbd_irq_worker(dev);
365#endif
366}
367
368/* test if a character is in the queue */
369static int usb_kbd_testc(void)
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 usb_kbd_poll_for_event(usb_kbd_dev);
380
381 return !(data->usb_in_pointer == data->usb_out_pointer);
382}
383
384/* gets the character from the queue */
385static int usb_kbd_getc(void)
386{
387 struct stdio_dev *dev;
388 struct usb_device *usb_kbd_dev;
389 struct usb_kbd_pdata *data;
390
391 dev = stdio_get_by_name(DEVNAME);
392 usb_kbd_dev = (struct usb_device *)dev->priv;
393 data = usb_kbd_dev->privptr;
394
395 while (data->usb_in_pointer == data->usb_out_pointer)
396 usb_kbd_poll_for_event(usb_kbd_dev);
397
398 if (data->usb_out_pointer == USB_KBD_BUFFER_LEN - 1)
399 data->usb_out_pointer = 0;
400 else
401 data->usb_out_pointer++;
402
403 return data->usb_kbd_buffer[data->usb_out_pointer];
404}
405
406/* probes the USB device dev for keyboard type. */
wdenkaffae2b2002-08-17 09:36:01 +0000407static int usb_kbd_probe(struct usb_device *dev, unsigned int ifnum)
408{
Tom Rix83b9e1d2009-10-31 12:37:38 -0500409 struct usb_interface *iface;
wdenkaffae2b2002-08-17 09:36:01 +0000410 struct usb_endpoint_descriptor *ep;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100411 struct usb_kbd_pdata *data;
Marek Vasutb9300982011-10-10 05:34:25 +0000412 int pipe, maxp;
wdenkaffae2b2002-08-17 09:36:01 +0000413
Marek Vasutb9300982011-10-10 05:34:25 +0000414 if (dev->descriptor.bNumConfigurations != 1)
415 return 0;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100416
wdenkaffae2b2002-08-17 09:36:01 +0000417 iface = &dev->config.if_desc[ifnum];
418
Tom Rix83b9e1d2009-10-31 12:37:38 -0500419 if (iface->desc.bInterfaceClass != 3)
420 return 0;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100421
Tom Rix83b9e1d2009-10-31 12:37:38 -0500422 if (iface->desc.bInterfaceSubClass != 1)
423 return 0;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100424
Tom Rix83b9e1d2009-10-31 12:37:38 -0500425 if (iface->desc.bInterfaceProtocol != 1)
426 return 0;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100427
Tom Rix83b9e1d2009-10-31 12:37:38 -0500428 if (iface->desc.bNumEndpoints != 1)
429 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000430
431 ep = &iface->ep_desc[0];
432
Marek Vasut7534a3e2011-10-10 16:34:26 +0100433 /* Check if endpoint 1 is interrupt endpoint */
Marek Vasutb9300982011-10-10 05:34:25 +0000434 if (!(ep->bEndpointAddress & 0x80))
435 return 0;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100436
Marek Vasutb9300982011-10-10 05:34:25 +0000437 if ((ep->bmAttributes & 3) != 3)
438 return 0;
Marek Vasut7534a3e2011-10-10 16:34:26 +0100439
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 Martinef769ca2012-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 Vasut7534a3e2011-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
wdenkaffae2b2002-08-17 09:36:01 +0000460 pipe = usb_rcvintpipe(dev, ep->bEndpointAddress);
461 maxp = usb_maxpacket(dev, pipe);
Marek Vasut7534a3e2011-10-10 16:34:26 +0100462
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,
Marek Vasutb9300982011-10-10 05:34:25 +0000471 ep->bInterval);
Marek Vasut7534a3e2011-10-10 16:34:26 +0100472
473 /* Success. */
wdenkaffae2b2002-08-17 09:36:01 +0000474 return 1;
475}
476
Marek Vasut7534a3e2011-10-10 16:34:26 +0100477/* Search for keyboard and register it if found. */
478int drv_usb_kbd_init(void)
479{
480 struct stdio_dev usb_kbd_dev, *old_dev;
481 struct usb_device *dev;
482 char *stdinname = getenv("stdin");
483 int error, i;
484
485 /* 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)
490 return -1;
491
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;
506 }
507
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.comc9d62022011-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 Vasut7534a3e2011-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.comc9d62022011-12-23 10:29:48 +0000538#endif
Marek Vasut7534a3e2011-10-10 16:34:26 +0100539
540 return 1;
541 }
542
543 /* No USB Keyboard found */
544 return -1;
545}
546
547/* Deregister the keyboard. */
548int usb_kbd_deregister(void)
549{
550#ifdef CONFIG_SYS_STDIO_DEREGISTER
551 return stdio_deregister(DEVNAME);
552#else
553 return 1;
554#endif
555}