]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/input/input.c
input: Handle caps lock
[people/ms/u-boot.git] / drivers / input / input.c
CommitLineData
9bc590e5
SG
1/*
2 * Translate key codes into ASCII
3 *
4 * Copyright (c) 2011 The Chromium OS Authors.
5 * (C) Copyright 2004 DENX Software Engineering, Wolfgang Denk, wd@denx.de
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
9bc590e5
SG
8 */
9
10#include <common.h>
92778b27 11#include <errno.h>
9bc590e5
SG
12#include <stdio_dev.h>
13#include <input.h>
14#include <linux/input.h>
15
16enum {
17 /* These correspond to the lights on the keyboard */
18 FLAG_NUM_LOCK = 1 << 0,
19 FLAG_CAPS_LOCK = 1 << 1,
20 FLAG_SCROLL_LOCK = 1 << 2,
21
22 /* Special flag ORed with key code to indicate release */
23 KEY_RELEASE = 1 << 15,
24 KEY_MASK = 0xfff,
25};
26
27/*
28 * These takes map key codes to ASCII. 0xff means no key, or special key.
29 * Three tables are provided - one for plain keys, one for when the shift
30 * 'modifier' key is pressed and one for when the ctrl modifier key is
31 * pressed.
32 */
33static const uchar kbd_plain_xlate[] = {
34 0xff, 0x1b, '1', '2', '3', '4', '5', '6',
35 '7', '8', '9', '0', '-', '=', '\b', '\t', /* 0x00 - 0x0f */
36 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i',
37 'o', 'p', '[', ']', '\r', 0xff, 'a', 's', /* 0x10 - 0x1f */
38 'd', 'f', 'g', 'h', 'j', 'k', 'l', ';',
39 '\'', '`', 0xff, '\\', 'z', 'x', 'c', 'v', /* 0x20 - 0x2f */
40 'b', 'n', 'm', ',' , '.', '/', 0xff, 0xff, 0xff,
41 ' ', 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x30 - 0x3f */
42 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, '7',
43 '8', '9', '-', '4', '5', '6', '+', '1', /* 0x40 - 0x4f */
44 '2', '3', '0', '.', 0xff, 0xff, 0xff, 0xff,
45 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x50 - 0x5F */
77c7f045 46 '\r', 0xff, '/', '*',
9bc590e5
SG
47};
48
49static unsigned char kbd_shift_xlate[] = {
50 0xff, 0x1b, '!', '@', '#', '$', '%', '^',
51 '&', '*', '(', ')', '_', '+', '\b', '\t', /* 0x00 - 0x0f */
52 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I',
53 'O', 'P', '{', '}', '\r', 0xff, 'A', 'S', /* 0x10 - 0x1f */
54 'D', 'F', 'G', 'H', 'J', 'K', 'L', ':',
55 '"', '~', 0xff, '|', 'Z', 'X', 'C', 'V', /* 0x20 - 0x2f */
56 'B', 'N', 'M', '<', '>', '?', 0xff, 0xff, 0xff,
57 ' ', 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x30 - 0x3f */
58 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, '7',
59 '8', '9', '-', '4', '5', '6', '+', '1', /* 0x40 - 0x4f */
60 '2', '3', '0', '.', 0xff, 0xff, 0xff, 0xff, 0xff,
61 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x50 - 0x5F */
77c7f045 62 '\r', 0xff, '/', '*',
9bc590e5
SG
63};
64
65static unsigned char kbd_ctrl_xlate[] = {
66 0xff, 0x1b, '1', 0x00, '3', '4', '5', 0x1E,
67 '7', '8', '9', '0', 0x1F, '=', '\b', '\t', /* 0x00 - 0x0f */
2e5513bd 68 0x11, 0x17, 0x05, 0x12, 0x14, 0x19, 0x15, 0x09,
9bc590e5
SG
69 0x0f, 0x10, 0x1b, 0x1d, '\n', 0xff, 0x01, 0x13, /* 0x10 - 0x1f */
70 0x04, 0x06, 0x08, 0x09, 0x0a, 0x0b, 0x0c, ';',
71 '\'', '~', 0x00, 0x1c, 0x1a, 0x18, 0x03, 0x16, /* 0x20 - 0x2f */
72 0x02, 0x0e, 0x0d, '<', '>', '?', 0xff, 0xff,
73 0xff, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x30 - 0x3f */
74 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, '7',
75 '8', '9', '-', '4', '5', '6', '+', '1', /* 0x40 - 0x4f */
76 '2', '3', '0', '.', 0xff, 0xff, 0xff, 0xff,
77 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x50 - 0x5F */
77c7f045 78 '\r', 0xff, '/', '*',
9bc590e5
SG
79};
80
b1d7a187
SG
81static const uchar kbd_plain_xlate_german[] = {
82 0xff, 0x1b, '1', '2', '3', '4', '5', '6', /* scan 00-07 */
83 '7', '8', '9', '0', 0xe1, '\'', 0x08, '\t', /* scan 08-0F */
84 'q', 'w', 'e', 'r', 't', 'z', 'u', 'i', /* scan 10-17 */
85 'o', 'p', 0x81, '+', '\r', 0xff, 'a', 's', /* scan 18-1F */
86 'd', 'f', 'g', 'h', 'j', 'k', 'l', 0x94, /* scan 20-27 */
87 0x84, '^', 0xff, '#', 'y', 'x', 'c', 'v', /* scan 28-2F */
88 'b', 'n', 'm', ',', '.', '-', 0xff, '*', /* scan 30-37 */
89 ' ', ' ', 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 38-3F */
90 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, '7', /* scan 40-47 */
91 '8', '9', '-', '4', '5', '6', '+', '1', /* scan 48-4F */
92 '2', '3', '0', ',', 0xff, 0xff, '<', 0xff, /* scan 50-57 */
93 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 58-5F */
94 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 60-67 */
95 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 68-6F */
96 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 70-77 */
97 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 78-7F */
98 '\r', 0xff, '/', '*',
99};
100
101static unsigned char kbd_shift_xlate_german[] = {
102 0xff, 0x1b, '!', '"', 0x15, '$', '%', '&', /* scan 00-07 */
103 '/', '(', ')', '=', '?', '`', 0x08, '\t', /* scan 08-0F */
104 'Q', 'W', 'E', 'R', 'T', 'Z', 'U', 'I', /* scan 10-17 */
105 'O', 'P', 0x9a, '*', '\r', 0xff, 'A', 'S', /* scan 18-1F */
106 'D', 'F', 'G', 'H', 'J', 'K', 'L', 0x99, /* scan 20-27 */
107 0x8e, 0xf8, 0xff, '\'', 'Y', 'X', 'C', 'V', /* scan 28-2F */
108 'B', 'N', 'M', ';', ':', '_', 0xff, '*', /* scan 30-37 */
109 ' ', ' ', 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 38-3F */
110 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, '7', /* scan 40-47 */
111 '8', '9', '-', '4', '5', '6', '+', '1', /* scan 48-4F */
112 '2', '3', '0', ',', 0xff, 0xff, '>', 0xff, /* scan 50-57 */
113 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 58-5F */
114 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 60-67 */
115 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 68-6F */
116 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 70-77 */
117 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 78-7F */
118 '\r', 0xff, '/', '*',
119};
120
121static unsigned char kbd_right_alt_xlate_german[] = {
122 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 00-07 */
123 '{', '[', ']', '}', '\\', 0xff, 0xff, 0xff, /* scan 08-0F */
124 '@', 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 10-17 */
125 0xff, 0xff, 0xff, '~', 0xff, 0xff, 0xff, 0xff, /* scan 18-1F */
126 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 20-27 */
127 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 28-2F */
128 0xff, 0xff, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 30-37 */
129 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 38-3F */
130 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 40-47 */
131 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* scan 48-4F */
132 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, '|', 0xff, /* scan 50-57 */
133};
134
135enum kbd_mask {
136 KBD_ENGLISH = 1 << 0,
137 KBD_GERMAN = 1 << 1,
138};
139
140static struct kbd_entry {
141 int kbd_mask; /* Which languages this is for */
142 int left_keycode; /* Left keycode to select this map */
143 int right_keycode; /* Right keycode to select this map */
144 const uchar *xlate; /* Ascii code for each keycode */
145 int num_entries; /* Number of entries in xlate */
146} kbd_entry[] = {
147 { KBD_ENGLISH, -1, -1,
148 kbd_plain_xlate, ARRAY_SIZE(kbd_plain_xlate) },
149 { KBD_GERMAN, -1, -1,
150 kbd_plain_xlate_german, ARRAY_SIZE(kbd_plain_xlate_german) },
151 { KBD_ENGLISH, KEY_LEFTSHIFT, KEY_RIGHTSHIFT,
152 kbd_shift_xlate, ARRAY_SIZE(kbd_shift_xlate) },
153 { KBD_GERMAN, KEY_LEFTSHIFT, KEY_RIGHTSHIFT,
154 kbd_shift_xlate_german, ARRAY_SIZE(kbd_shift_xlate_german) },
155 { KBD_ENGLISH | KBD_GERMAN, KEY_LEFTCTRL, KEY_RIGHTCTRL,
156 kbd_ctrl_xlate, ARRAY_SIZE(kbd_ctrl_xlate) },
157 { KBD_GERMAN, -1, KEY_RIGHTALT,
158 kbd_right_alt_xlate_german,
159 ARRAY_SIZE(kbd_right_alt_xlate_german) },
160 {},
161};
162
44abe47d
HTL
163/*
164 * Scan key code to ANSI 3.64 escape sequence table. This table is
165 * incomplete in that it does not include all possible extra keys.
166 */
167static struct {
168 int kbd_scan_code;
169 char *escape;
170} kbd_to_ansi364[] = {
171 { KEY_UP, "\033[A"},
172 { KEY_DOWN, "\033[B"},
173 { KEY_RIGHT, "\033[C"},
174 { KEY_LEFT, "\033[D"},
175};
176
177/* Maximum number of output characters that an ANSI sequence expands to */
178#define ANSI_CHAR_MAX 3
9bc590e5 179
c14e94e5 180static int input_queue_ascii(struct input_config *config, int ch)
9bc590e5
SG
181{
182 if (config->fifo_in + 1 == INPUT_BUFFER_LEN) {
183 if (!config->fifo_out)
184 return -1; /* buffer full */
185 else
186 config->fifo_in = 0;
187 } else {
188 if (config->fifo_in + 1 == config->fifo_out)
189 return -1; /* buffer full */
190 config->fifo_in++;
191 }
3a85e436 192 debug(" {%02x} ", ch);
9bc590e5
SG
193 config->fifo[config->fifo_in] = (uchar)ch;
194
195 return 0;
196}
197
198int input_tstc(struct input_config *config)
199{
200 if (config->fifo_in == config->fifo_out && config->read_keys) {
201 if (!(*config->read_keys)(config))
202 return 0;
203 }
204 return config->fifo_in != config->fifo_out;
205}
206
207int input_getc(struct input_config *config)
208{
209 int err = 0;
210
211 while (config->fifo_in == config->fifo_out) {
212 if (config->read_keys)
213 err = (*config->read_keys)(config);
214 if (err)
215 return -1;
216 }
217
218 if (++config->fifo_out == INPUT_BUFFER_LEN)
219 config->fifo_out = 0;
220
221 return config->fifo[config->fifo_out];
222}
223
224/**
225 * Process a modifier/special key press or release and decide which key
226 * translation array should be used as a result.
227 *
228 * TODO: Should keep track of modifier press/release
229 *
230 * @param config Input state
231 * @param key Key code to process
232 * @param release 0 if a press, 1 if a release
233 * @return pointer to keycode->ascii translation table that should be used
234 */
235static struct input_key_xlate *process_modifier(struct input_config *config,
236 int key, int release)
237{
238 struct input_key_xlate *table;
9bc590e5
SG
239 int i;
240
241 /* Start with the main table, and see what modifiers change it */
242 assert(config->num_tables > 0);
243 table = &config->table[0];
244 for (i = 1; i < config->num_tables; i++) {
245 struct input_key_xlate *tab = &config->table[i];
246
247 if (key == tab->left_keycode || key == tab->right_keycode)
248 table = tab;
249 }
250
251 /* Handle the lighted keys */
252 if (!release) {
a683d0d3
SG
253 int flip = -1;
254
9bc590e5
SG
255 switch (key) {
256 case KEY_SCROLLLOCK:
257 flip = FLAG_SCROLL_LOCK;
258 break;
259 case KEY_NUMLOCK:
260 flip = FLAG_NUM_LOCK;
261 break;
262 case KEY_CAPSLOCK:
263 flip = FLAG_CAPS_LOCK;
264 break;
265 }
9bc590e5 266
a683d0d3
SG
267 if (flip != -1) {
268 int leds = 0;
269
270 config->leds ^= flip;
271 if (config->flags & FLAG_NUM_LOCK)
272 leds |= INPUT_LED_NUM;
273 if (config->flags & FLAG_CAPS_LOCK)
274 leds |= INPUT_LED_CAPS;
275 if (config->flags & FLAG_SCROLL_LOCK)
276 leds |= INPUT_LED_SCROLL;
277 config->leds = leds;
278 }
9bc590e5
SG
279 }
280
281 return table;
282}
283
284/**
285 * Search an int array for a key value
286 *
287 * @param array Array to search
288 * @param count Number of elements in array
289 * @param key Key value to find
290 * @return element where value was first found, -1 if none
291 */
292static int array_search(int *array, int count, int key)
293{
294 int i;
295
296 for (i = 0; i < count; i++) {
297 if (array[i] == key)
298 return i;
299 }
300
301 return -1;
302}
303
304/**
305 * Sort an array so that those elements that exist in the ordering are
306 * first in the array, and in the same order as the ordering. The algorithm
307 * is O(count * ocount) and designed for small arrays.
308 *
309 * TODO: Move this to common / lib?
310 *
311 * @param dest Array with elements to sort, also destination array
312 * @param count Number of elements to sort
313 * @param order Array containing ordering elements
314 * @param ocount Number of ordering elements
315 * @return number of elements in dest that are in order (these will be at the
316 * start of dest).
317 */
318static int sort_array_by_ordering(int *dest, int count, int *order,
319 int ocount)
320{
321 int temp[count];
322 int dest_count;
323 int same; /* number of elements which are the same */
324 int i;
325
326 /* setup output items, copy items to be sorted into our temp area */
327 memcpy(temp, dest, count * sizeof(*dest));
328 dest_count = 0;
329
330 /* work through the ordering, move over the elements we agree on */
331 for (i = 0; i < ocount; i++) {
332 if (array_search(temp, count, order[i]) != -1)
333 dest[dest_count++] = order[i];
334 }
335 same = dest_count;
336
337 /* now move over the elements that are not in the ordering */
338 for (i = 0; i < count; i++) {
339 if (array_search(order, ocount, temp[i]) == -1)
340 dest[dest_count++] = temp[i];
341 }
342 assert(dest_count == count);
343 return same;
344}
345
346/**
347 * Check a list of key codes against the previous key scan
348 *
349 * Given a list of new key codes, we check how many of these are the same
350 * as last time.
351 *
352 * @param config Input state
353 * @param keycode List of key codes to examine
354 * @param num_keycodes Number of key codes
355 * @param same Returns number of key codes which are the same
356 */
357static int input_check_keycodes(struct input_config *config,
358 int keycode[], int num_keycodes, int *same)
359{
360 /* Select the 'plain' xlate table to start with */
361 if (!config->num_tables) {
362 debug("%s: No xlate tables: cannot decode keys\n", __func__);
363 return -1;
364 }
365
366 /* sort the keycodes into the same order as the previous ones */
367 *same = sort_array_by_ordering(keycode, num_keycodes,
368 config->prev_keycodes, config->num_prev_keycodes);
369
370 memcpy(config->prev_keycodes, keycode, num_keycodes * sizeof(int));
371 config->num_prev_keycodes = num_keycodes;
372
373 return *same != num_keycodes;
374}
375
376/**
44abe47d
HTL
377 * Checks and converts a special key code into ANSI 3.64 escape sequence.
378 *
379 * @param config Input state
380 * @param keycode Key code to examine
381 * @param output_ch Buffer to place output characters into. It should
382 * be at least ANSI_CHAR_MAX bytes long, to allow for
383 * an ANSI sequence.
384 * @param max_chars Maximum number of characters to add to output_ch
385 * @return number of characters output, if the key was converted, otherwise 0.
386 * This may be larger than max_chars, in which case the overflow
387 * characters are not output.
388 */
389static int input_keycode_to_ansi364(struct input_config *config,
390 int keycode, char output_ch[], int max_chars)
391{
392 const char *escape;
393 int ch_count;
394 int i;
395
396 for (i = ch_count = 0; i < ARRAY_SIZE(kbd_to_ansi364); i++) {
397 if (keycode != kbd_to_ansi364[i].kbd_scan_code)
398 continue;
399 for (escape = kbd_to_ansi364[i].escape; *escape; escape++) {
400 if (ch_count < max_chars)
401 output_ch[ch_count] = *escape;
402 ch_count++;
403 }
404 return ch_count;
405 }
406
407 return 0;
408}
409
410/**
411 * Converts and queues a list of key codes in escaped ASCII string form
9bc590e5
SG
412 * Convert a list of key codes into ASCII
413 *
414 * You must call input_check_keycodes() before this. It turns the keycode
44abe47d 415 * list into a list of ASCII characters and sends them to the input layer.
9bc590e5
SG
416 *
417 * Characters which were seen last time do not generate fresh ASCII output.
44abe47d
HTL
418 * The output (calls to queue_ascii) may be longer than num_keycodes, if the
419 * keycode contains special keys that was encoded to longer escaped sequence.
9bc590e5
SG
420 *
421 * @param config Input state
422 * @param keycode List of key codes to examine
423 * @param num_keycodes Number of key codes
44abe47d
HTL
424 * @param output_ch Buffer to place output characters into. It should
425 * be at last ANSI_CHAR_MAX * num_keycodes, to allow for
426 * ANSI sequences.
427 * @param max_chars Maximum number of characters to add to output_ch
9bc590e5 428 * @param same Number of key codes which are the same
44abe47d
HTL
429 * @return number of characters written into output_ch, or -1 if we would
430 * exceed max_chars chars.
9bc590e5
SG
431 */
432static int input_keycodes_to_ascii(struct input_config *config,
44abe47d
HTL
433 int keycode[], int num_keycodes, char output_ch[],
434 int max_chars, int same)
9bc590e5
SG
435{
436 struct input_key_xlate *table;
44abe47d 437 int ch_count = 0;
9bc590e5
SG
438 int i;
439
440 table = &config->table[0];
441
442 /* deal with modifiers first */
443 for (i = 0; i < num_keycodes; i++) {
444 int key = keycode[i] & KEY_MASK;
445
446 if (key >= table->num_entries || table->xlate[key] == 0xff) {
447 table = process_modifier(config, key,
448 keycode[i] & KEY_RELEASE);
449 }
450 }
451
44abe47d
HTL
452 /* Start conversion by looking for the first new keycode (by same). */
453 for (i = same; i < num_keycodes; i++) {
9bc590e5 454 int key = keycode[i];
ba420342 455 int ch;
9bc590e5 456
44abe47d
HTL
457 /*
458 * For a normal key (with an ASCII value), add it; otherwise
459 * translate special key to escape sequence if possible.
460 */
ba420342
SG
461 if (key < table->num_entries) {
462 ch = table->xlate[key];
463 if ((config->flags & FLAG_CAPS_LOCK) &&
464 ch >= 'a' && ch <= 'z')
465 ch -= 'a' - 'A';
466 if (ch_count < max_chars && ch != 0xff)
467 output_ch[ch_count++] = (uchar)ch;
44abe47d
HTL
468 } else {
469 ch_count += input_keycode_to_ansi364(config, key,
470 output_ch, max_chars);
9bc590e5
SG
471 }
472 }
473
44abe47d
HTL
474 if (ch_count > max_chars) {
475 debug("%s: Output char buffer overflow size=%d, need=%d\n",
476 __func__, max_chars, ch_count);
477 return -1;
478 }
479
9bc590e5
SG
480 /* ok, so return keys */
481 return ch_count;
482}
483
3a85e436
SG
484static int _input_send_keycodes(struct input_config *config, int keycode[],
485 int num_keycodes, bool do_send)
9bc590e5 486{
44abe47d 487 char ch[num_keycodes * ANSI_CHAR_MAX];
9bc590e5
SG
488 int count, i, same = 0;
489 int is_repeat = 0;
490 unsigned delay_ms;
491
492 config->modifiers = 0;
493 if (!input_check_keycodes(config, keycode, num_keycodes, &same)) {
494 /*
495 * Same as last time - is it time for another repeat?
496 * TODO(sjg@chromium.org) We drop repeats here and since
497 * the caller may not call in again for a while, our
498 * auto-repeat speed is not quite correct. We should
499 * insert another character if we later realise that we
500 * have missed a repeat slot.
501 */
0b186c08
SG
502 is_repeat = config->allow_repeats || (config->repeat_rate_ms &&
503 (int)get_timer(config->next_repeat_ms) >= 0);
9bc590e5
SG
504 if (!is_repeat)
505 return 0;
506 }
507
508 count = input_keycodes_to_ascii(config, keycode, num_keycodes,
44abe47d 509 ch, sizeof(ch), is_repeat ? 0 : same);
3a85e436
SG
510 if (do_send) {
511 for (i = 0; i < count; i++)
512 input_queue_ascii(config, ch[i]);
513 }
9bc590e5
SG
514 delay_ms = is_repeat ?
515 config->repeat_rate_ms :
516 config->repeat_delay_ms;
517
518 config->next_repeat_ms = get_timer(0) + delay_ms;
44abe47d
HTL
519
520 return count;
9bc590e5
SG
521}
522
3a85e436
SG
523int input_send_keycodes(struct input_config *config, int keycode[],
524 int num_keycodes)
525{
526 return _input_send_keycodes(config, keycode, num_keycodes, true);
527}
528
529int input_add_keycode(struct input_config *config, int new_keycode,
530 bool release)
531{
532 int keycode[INPUT_MAX_MODIFIERS + 1];
533 int count, i;
534
535 /* Add the old keycodes which are not removed by this new one */
536 for (i = 0, count = 0; i < config->num_prev_keycodes; i++) {
537 int code = config->prev_keycodes[i];
538
539 if (new_keycode == code) {
540 if (release)
541 continue;
542 new_keycode = -1;
543 }
544 keycode[count++] = code;
545 }
546
547 if (!release && new_keycode != -1)
548 keycode[count++] = new_keycode;
549 debug("\ncodes for %02x/%d: ", new_keycode, release);
550 for (i = 0; i < count; i++)
551 debug("%02x ", keycode[i]);
552 debug("\n");
553
554 /* Don't output any ASCII characters if this is a key release */
555 return _input_send_keycodes(config, keycode, count, !release);
556}
557
9bc590e5
SG
558int input_add_table(struct input_config *config, int left_keycode,
559 int right_keycode, const uchar *xlate, int num_entries)
560{
561 struct input_key_xlate *table;
562
563 if (config->num_tables == INPUT_MAX_MODIFIERS) {
564 debug("%s: Too many modifier tables\n", __func__);
565 return -1;
566 }
567
568 table = &config->table[config->num_tables++];
569 table->left_keycode = left_keycode;
570 table->right_keycode = right_keycode;
571 table->xlate = xlate;
572 table->num_entries = num_entries;
573
574 return 0;
575}
576
1b1d3e64 577void input_set_delays(struct input_config *config, int repeat_delay_ms,
9bc590e5
SG
578 int repeat_rate_ms)
579{
9bc590e5
SG
580 config->repeat_delay_ms = repeat_delay_ms;
581 config->repeat_rate_ms = repeat_rate_ms;
1b1d3e64
SG
582}
583
0b186c08
SG
584void input_allow_repeats(struct input_config *config, bool allow_repeats)
585{
586 config->allow_repeats = allow_repeats;
587}
588
b1d7a187 589int input_add_tables(struct input_config *config, bool german)
66877b0f 590{
b1d7a187
SG
591 struct kbd_entry *entry;
592 int mask;
66877b0f
SG
593 int ret;
594
b1d7a187
SG
595 mask = german ? KBD_GERMAN : KBD_ENGLISH;
596 for (entry = kbd_entry; entry->kbd_mask; entry++) {
597 if (!(mask & entry->kbd_mask))
598 continue;
599 ret = input_add_table(config, entry->left_keycode,
600 entry->right_keycode, entry->xlate,
601 entry->num_entries);
602 if (ret)
603 return ret;
604 }
605
606 return 0;
66877b0f
SG
607}
608
1b1d3e64
SG
609int input_init(struct input_config *config, int leds)
610{
611 memset(config, '\0', sizeof(*config));
612 config->leds = leds;
9bc590e5
SG
613
614 return 0;
615}
616
617int input_stdio_register(struct stdio_dev *dev)
618{
619 int error;
620
621 error = stdio_register(dev);
622
623 /* check if this is the standard input device */
624 if (!error && strcmp(getenv("stdin"), dev->name) == 0) {
625 /* reassign the console */
626 if (OVERWRITE_CONSOLE ||
627 console_assign(stdin, dev->name))
628 return -1;
629 }
630
631 return 0;
632}