blob: 50f6c01f44ec687c650a95f385519366785edd92 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/keyboard.c
3 *
4 * Written for linux by Johan Myreen as a translation from
5 * the assembly version by Linus (with diacriticals added)
6 *
7 * Some additional features added by Christoph Niemann (ChN), March 1993
8 *
9 * Loadable keymaps by Risto Kankkunen, May 1993
10 *
11 * Diacriticals redone & other small changes, aeb@cwi.nl, June 1993
12 * Added decr/incr_console, dynamic keymaps, Unicode support,
13 * dynamic function/string keys, led setting, Sept 1994
14 * `Sticky' modifier keys, 951006.
15 *
16 * 11-11-96: SAK should now work in the raw mode (Martin Mares)
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -050017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Modified to provide 'generic' keyboard support by Hamish Macdonald
19 * Merge with the m68k keyboard driver and split-off of the PC low-level
20 * parts by Geert Uytterhoeven, May 1997
21 *
22 * 27-05-97: Added support for the Magic SysRq Key (Martin Mares)
23 * 30-07-98: Dead keys redone, aeb@cwi.nl.
24 * 21-08-02: Converted to input API, major cleanup. (Vojtech Pavlik)
25 */
26
Jan Engelhardt759448f2007-07-15 23:40:40 -070027#include <linux/consolemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/sched.h>
30#include <linux/tty.h>
31#include <linux/tty_flip.h>
32#include <linux/mm.h>
33#include <linux/string.h>
34#include <linux/init.h>
35#include <linux/slab.h>
David Howells7d12e782006-10-05 14:55:46 +010036#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <linux/kbd_kern.h>
39#include <linux/kbd_diacr.h>
40#include <linux/vt_kern.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/input.h>
Adrian Bunk83cc5ed2006-06-25 05:47:41 -070042#include <linux/reboot.h>
Samuel Thibault41ab4392007-10-18 23:39:12 -070043#include <linux/notifier.h>
Julia Lawallb39b0442008-04-17 09:28:25 -040044#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046extern void ctrl_alt_del(void);
47
48/*
49 * Exported functions/variables
50 */
51
52#define KBD_DEFMODE ((1 << VC_REPEAT) | (1 << VC_META))
53
54/*
55 * Some laptops take the 789uiojklm,. keys as number pad when NumLock is on.
56 * This seems a good reason to start with NumLock off. On HIL keyboards
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -050057 * of PARISC machines however there is no NumLock key and everyone expects the keypad
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 * to be used for numbers.
59 */
60
61#if defined(CONFIG_PARISC) && (defined(CONFIG_KEYBOARD_HIL) || defined(CONFIG_KEYBOARD_HIL_OLD))
62#define KBD_DEFLEDS (1 << VC_NUMLOCK)
63#else
64#define KBD_DEFLEDS 0
65#endif
66
67#define KBD_DEFLOCK 0
68
69void compute_shiftstate(void);
70
71/*
72 * Handler Tables.
73 */
74
75#define K_HANDLERS\
76 k_self, k_fn, k_spec, k_pad,\
77 k_dead, k_cons, k_cur, k_shift,\
78 k_meta, k_ascii, k_lock, k_lowercase,\
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -050079 k_slock, k_dead2, k_brl, k_ignore
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -050081typedef void (k_handler_fn)(struct vc_data *vc, unsigned char value,
David Howells7d12e782006-10-05 14:55:46 +010082 char up_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static k_handler_fn K_HANDLERS;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070084static k_handler_fn *k_handler[16] = { K_HANDLERS };
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#define FN_HANDLERS\
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -050087 fn_null, fn_enter, fn_show_ptregs, fn_show_mem,\
88 fn_show_state, fn_send_intr, fn_lastcons, fn_caps_toggle,\
89 fn_num, fn_hold, fn_scroll_forw, fn_scroll_back,\
90 fn_boot_it, fn_caps_on, fn_compose, fn_SAK,\
91 fn_dec_console, fn_inc_console, fn_spawn_con, fn_bare_num
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
David Howells7d12e782006-10-05 14:55:46 +010093typedef void (fn_handler_fn)(struct vc_data *vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static fn_handler_fn FN_HANDLERS;
95static fn_handler_fn *fn_handler[] = { FN_HANDLERS };
96
97/*
98 * Variables exported for vt_ioctl.c
99 */
100
101/* maximum values each key_handler can handle */
102const int max_vals[] = {
103 255, ARRAY_SIZE(func_table) - 1, ARRAY_SIZE(fn_handler) - 1, NR_PAD - 1,
104 NR_DEAD - 1, 255, 3, NR_SHIFT - 1, 255, NR_ASCII - 1, NR_LOCK - 1,
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500105 255, NR_LOCK - 1, 255, NR_BRL - 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
108const int NR_TYPES = ARRAY_SIZE(max_vals);
109
110struct kbd_struct kbd_table[MAX_NR_CONSOLES];
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700111EXPORT_SYMBOL_GPL(kbd_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static struct kbd_struct *kbd = kbd_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Eric W. Biederman81af8d62006-10-02 02:17:13 -0700114struct vt_spawn_console vt_spawn_con = {
Milind Arun Choudharyccc94252007-05-08 00:30:09 -0700115 .lock = __SPIN_LOCK_UNLOCKED(vt_spawn_con.lock),
Eric W. Biederman81af8d62006-10-02 02:17:13 -0700116 .pid = NULL,
117 .sig = 0,
118};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/*
121 * Variables exported for vt.c
122 */
123
124int shift_state = 0;
125
126/*
127 * Internal Data.
128 */
129
130static struct input_handler kbd_handler;
Dmitry Torokhov21cea582009-11-29 23:40:58 -0800131static DEFINE_SPINLOCK(kbd_event_lock);
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700132static unsigned long key_down[BITS_TO_LONGS(KEY_CNT)]; /* keyboard key bitmap */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static unsigned char shift_down[NR_SHIFT]; /* shift state counters.. */
134static int dead_key_next;
135static int npadch = -1; /* -1 or number assembled on pad */
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500136static unsigned int diacr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static char rep; /* flag telling character repeat */
138
139static unsigned char ledstate = 0xff; /* undefined */
140static unsigned char ledioctl;
141
142static struct ledptr {
143 unsigned int *addr;
144 unsigned int mask;
145 unsigned char valid:1;
146} ledptrs[3];
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
Samuel Thibault41ab4392007-10-18 23:39:12 -0700149 * Notifier list for console keyboard events
150 */
151static ATOMIC_NOTIFIER_HEAD(keyboard_notifier_list);
152
153int register_keyboard_notifier(struct notifier_block *nb)
154{
155 return atomic_notifier_chain_register(&keyboard_notifier_list, nb);
156}
157EXPORT_SYMBOL_GPL(register_keyboard_notifier);
158
159int unregister_keyboard_notifier(struct notifier_block *nb)
160{
161 return atomic_notifier_chain_unregister(&keyboard_notifier_list, nb);
162}
163EXPORT_SYMBOL_GPL(unregister_keyboard_notifier);
164
165/*
Marvin Raaijmakersc8e4c772007-03-14 22:50:42 -0400166 * Translation of scancodes to keycodes. We set them on only the first
167 * keyboard in the list that accepts the scancode and keycode.
168 * Explanation for not choosing the first attached keyboard anymore:
169 * USB keyboards for example have two event devices: one for all "normal"
170 * keys and one for extra function keys (like "volume up", "make coffee",
171 * etc.). So this means that scancodes for the extra function keys won't
172 * be valid for the first event device, but will be for the second.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800174
175struct getset_keycode_data {
176 unsigned int scancode;
177 unsigned int keycode;
178 int error;
179};
180
181static int getkeycode_helper(struct input_handle *handle, void *data)
182{
183 struct getset_keycode_data *d = data;
184
185 d->error = input_get_keycode(handle->dev, d->scancode, &d->keycode);
186
187 return d->error == 0; /* stop as soon as we successfully get one */
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190int getkeycode(unsigned int scancode)
191{
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800192 struct getset_keycode_data d = { scancode, 0, -ENODEV };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800194 input_handler_for_each_handle(&kbd_handler, &d, getkeycode_helper);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800196 return d.error ?: d.keycode;
197}
198
199static int setkeycode_helper(struct input_handle *handle, void *data)
200{
201 struct getset_keycode_data *d = data;
202
203 d->error = input_set_keycode(handle->dev, d->scancode, d->keycode);
204
205 return d->error == 0; /* stop as soon as we successfully set one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208int setkeycode(unsigned int scancode, unsigned int keycode)
209{
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800210 struct getset_keycode_data d = { scancode, keycode, -ENODEV };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800212 input_handler_for_each_handle(&kbd_handler, &d, setkeycode_helper);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800214 return d.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/*
Dmitry Torokhov18f7ad52009-12-15 16:26:53 -0800218 * Making beeps and bells. Note that we prefer beeps to bells, but when
219 * shutting the sound off we do both.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800221
222static int kd_sound_helper(struct input_handle *handle, void *data)
223{
224 unsigned int *hz = data;
225 struct input_dev *dev = handle->dev;
226
227 if (test_bit(EV_SND, dev->evbit)) {
Dmitry Torokhov18f7ad52009-12-15 16:26:53 -0800228 if (test_bit(SND_TONE, dev->sndbit)) {
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800229 input_inject_event(handle, EV_SND, SND_TONE, *hz);
Dmitry Torokhov18f7ad52009-12-15 16:26:53 -0800230 if (*hz)
231 return 0;
232 }
233 if (test_bit(SND_BELL, dev->sndbit))
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800234 input_inject_event(handle, EV_SND, SND_BELL, *hz ? 1 : 0);
235 }
236
237 return 0;
238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static void kd_nosound(unsigned long ignored)
241{
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800242 static unsigned int zero;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800244 input_handler_for_each_handle(&kbd_handler, &zero, kd_sound_helper);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700247static DEFINE_TIMER(kd_mksound_timer, kd_nosound, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249void kd_mksound(unsigned int hz, unsigned int ticks)
250{
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800251 del_timer_sync(&kd_mksound_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800253 input_handler_for_each_handle(&kbd_handler, &hz, kd_sound_helper);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800255 if (hz && ticks)
256 mod_timer(&kd_mksound_timer, jiffies + ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
Samuel Thibaultf7511d52008-04-30 00:54:51 -0700258EXPORT_SYMBOL(kd_mksound);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260/*
261 * Setting the keyboard rate.
262 */
263
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800264static int kbd_rate_helper(struct input_handle *handle, void *data)
265{
266 struct input_dev *dev = handle->dev;
267 struct kbd_repeat *rep = data;
268
269 if (test_bit(EV_REP, dev->evbit)) {
270
271 if (rep[0].delay > 0)
272 input_inject_event(handle,
273 EV_REP, REP_DELAY, rep[0].delay);
274 if (rep[0].period > 0)
275 input_inject_event(handle,
276 EV_REP, REP_PERIOD, rep[0].period);
277
278 rep[1].delay = dev->rep[REP_DELAY];
279 rep[1].period = dev->rep[REP_PERIOD];
280 }
281
282 return 0;
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285int kbd_rate(struct kbd_repeat *rep)
286{
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800287 struct kbd_repeat data[2] = { *rep };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800289 input_handler_for_each_handle(&kbd_handler, data, kbd_rate_helper);
290 *rep = data[1]; /* Copy currently used settings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293}
294
295/*
296 * Helper Functions.
297 */
298static void put_queue(struct vc_data *vc, int ch)
299{
300 struct tty_struct *tty = vc->vc_tty;
301
302 if (tty) {
303 tty_insert_flip_char(tty, ch, 0);
304 con_schedule_flip(tty);
305 }
306}
307
308static void puts_queue(struct vc_data *vc, char *cp)
309{
310 struct tty_struct *tty = vc->vc_tty;
311
312 if (!tty)
313 return;
314
315 while (*cp) {
316 tty_insert_flip_char(tty, *cp, 0);
317 cp++;
318 }
319 con_schedule_flip(tty);
320}
321
322static void applkey(struct vc_data *vc, int key, char mode)
323{
324 static char buf[] = { 0x1b, 'O', 0x00, 0x00 };
325
326 buf[1] = (mode ? 'O' : '[');
327 buf[2] = key;
328 puts_queue(vc, buf);
329}
330
331/*
332 * Many other routines do put_queue, but I think either
333 * they produce ASCII, or they produce some user-assigned
334 * string, and in both cases we might assume that it is
Jan Engelhardt759448f2007-07-15 23:40:40 -0700335 * in utf-8 already.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
Jan Engelhardt759448f2007-07-15 23:40:40 -0700337static void to_utf8(struct vc_data *vc, uint c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 if (c < 0x80)
340 /* 0******* */
341 put_queue(vc, c);
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500342 else if (c < 0x800) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* 110***** 10****** */
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500344 put_queue(vc, 0xc0 | (c >> 6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 put_queue(vc, 0x80 | (c & 0x3f));
Jan Engelhardt759448f2007-07-15 23:40:40 -0700346 } else if (c < 0x10000) {
347 if (c >= 0xD800 && c < 0xE000)
348 return;
349 if (c == 0xFFFF)
350 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* 1110**** 10****** 10****** */
352 put_queue(vc, 0xe0 | (c >> 12));
353 put_queue(vc, 0x80 | ((c >> 6) & 0x3f));
354 put_queue(vc, 0x80 | (c & 0x3f));
Jan Engelhardt759448f2007-07-15 23:40:40 -0700355 } else if (c < 0x110000) {
356 /* 11110*** 10****** 10****** 10****** */
357 put_queue(vc, 0xf0 | (c >> 18));
358 put_queue(vc, 0x80 | ((c >> 12) & 0x3f));
359 put_queue(vc, 0x80 | ((c >> 6) & 0x3f));
360 put_queue(vc, 0x80 | (c & 0x3f));
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500364/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * Called after returning from RAW mode or when changing consoles - recompute
366 * shift_down[] and shift_state from key_down[] maybe called when keymap is
367 * undefined, so that shiftkey release is seen
368 */
369void compute_shiftstate(void)
370{
371 unsigned int i, j, k, sym, val;
372
373 shift_state = 0;
374 memset(shift_down, 0, sizeof(shift_down));
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 for (i = 0; i < ARRAY_SIZE(key_down); i++) {
377
378 if (!key_down[i])
379 continue;
380
381 k = i * BITS_PER_LONG;
382
383 for (j = 0; j < BITS_PER_LONG; j++, k++) {
384
385 if (!test_bit(k, key_down))
386 continue;
387
388 sym = U(key_maps[0][k]);
389 if (KTYP(sym) != KT_SHIFT && KTYP(sym) != KT_SLOCK)
390 continue;
391
392 val = KVAL(sym);
393 if (val == KVAL(K_CAPSSHIFT))
394 val = KVAL(K_SHIFT);
395
396 shift_down[val]++;
397 shift_state |= (1 << val);
398 }
399 }
400}
401
402/*
403 * We have a combining character DIACR here, followed by the character CH.
404 * If the combination occurs in the table, return the corresponding value.
405 * Otherwise, if CH is a space or equals DIACR, return DIACR.
406 * Otherwise, conclude that DIACR was not combining after all,
407 * queue it and return CH.
408 */
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500409static unsigned int handle_diacr(struct vc_data *vc, unsigned int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500411 unsigned int d = diacr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 unsigned int i;
413
414 diacr = 0;
415
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500416 if ((d & ~0xff) == BRL_UC_ROW) {
417 if ((ch & ~0xff) == BRL_UC_ROW)
418 return d | ch;
419 } else {
420 for (i = 0; i < accent_table_size; i++)
421 if (accent_table[i].diacr == d && accent_table[i].base == ch)
422 return accent_table[i].result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500425 if (ch == ' ' || ch == (BRL_UC_ROW|0) || ch == d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return d;
427
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500428 if (kbd->kbdmode == VC_UNICODE)
Samuel Thibault04c71972007-10-16 23:27:04 -0700429 to_utf8(vc, d);
430 else {
431 int c = conv_uni_to_8bit(d);
432 if (c != -1)
433 put_queue(vc, c);
434 }
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return ch;
437}
438
439/*
440 * Special function handlers
441 */
David Howells7d12e782006-10-05 14:55:46 +0100442static void fn_enter(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 if (diacr) {
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500445 if (kbd->kbdmode == VC_UNICODE)
Samuel Thibault04c71972007-10-16 23:27:04 -0700446 to_utf8(vc, diacr);
447 else {
448 int c = conv_uni_to_8bit(diacr);
449 if (c != -1)
450 put_queue(vc, c);
451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 diacr = 0;
453 }
454 put_queue(vc, 13);
455 if (vc_kbd_mode(kbd, VC_CRLF))
456 put_queue(vc, 10);
457}
458
David Howells7d12e782006-10-05 14:55:46 +0100459static void fn_caps_toggle(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 if (rep)
462 return;
463 chg_vc_kbd_led(kbd, VC_CAPSLOCK);
464}
465
David Howells7d12e782006-10-05 14:55:46 +0100466static void fn_caps_on(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 if (rep)
469 return;
470 set_vc_kbd_led(kbd, VC_CAPSLOCK);
471}
472
David Howells7d12e782006-10-05 14:55:46 +0100473static void fn_show_ptregs(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
David Howells7d12e782006-10-05 14:55:46 +0100475 struct pt_regs *regs = get_irq_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (regs)
477 show_regs(regs);
478}
479
David Howells7d12e782006-10-05 14:55:46 +0100480static void fn_hold(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct tty_struct *tty = vc->vc_tty;
483
484 if (rep || !tty)
485 return;
486
487 /*
488 * Note: SCROLLOCK will be set (cleared) by stop_tty (start_tty);
489 * these routines are also activated by ^S/^Q.
490 * (And SCROLLOCK can also be set by the ioctl KDSKBLED.)
491 */
492 if (tty->stopped)
493 start_tty(tty);
494 else
495 stop_tty(tty);
496}
497
David Howells7d12e782006-10-05 14:55:46 +0100498static void fn_num(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 if (vc_kbd_mode(kbd,VC_APPLIC))
501 applkey(vc, 'P', 1);
502 else
David Howells7d12e782006-10-05 14:55:46 +0100503 fn_bare_num(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
506/*
507 * Bind this to Shift-NumLock if you work in application keypad mode
508 * but want to be able to change the NumLock flag.
509 * Bind this to NumLock if you prefer that the NumLock key always
510 * changes the NumLock flag.
511 */
David Howells7d12e782006-10-05 14:55:46 +0100512static void fn_bare_num(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 if (!rep)
515 chg_vc_kbd_led(kbd, VC_NUMLOCK);
516}
517
David Howells7d12e782006-10-05 14:55:46 +0100518static void fn_lastcons(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 /* switch to the last used console, ChN */
521 set_console(last_console);
522}
523
David Howells7d12e782006-10-05 14:55:46 +0100524static void fn_dec_console(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 int i, cur = fg_console;
527
528 /* Currently switching? Queue this next switch relative to that. */
529 if (want_console != -1)
530 cur = want_console;
531
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500532 for (i = cur - 1; i != cur; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (i == -1)
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500534 i = MAX_NR_CONSOLES - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (vc_cons_allocated(i))
536 break;
537 }
538 set_console(i);
539}
540
David Howells7d12e782006-10-05 14:55:46 +0100541static void fn_inc_console(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 int i, cur = fg_console;
544
545 /* Currently switching? Queue this next switch relative to that. */
546 if (want_console != -1)
547 cur = want_console;
548
549 for (i = cur+1; i != cur; i++) {
550 if (i == MAX_NR_CONSOLES)
551 i = 0;
552 if (vc_cons_allocated(i))
553 break;
554 }
555 set_console(i);
556}
557
David Howells7d12e782006-10-05 14:55:46 +0100558static void fn_send_intr(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct tty_struct *tty = vc->vc_tty;
561
562 if (!tty)
563 return;
564 tty_insert_flip_char(tty, 0, TTY_BREAK);
565 con_schedule_flip(tty);
566}
567
David Howells7d12e782006-10-05 14:55:46 +0100568static void fn_scroll_forw(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 scrollfront(vc, 0);
571}
572
David Howells7d12e782006-10-05 14:55:46 +0100573static void fn_scroll_back(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 scrollback(vc, 0);
576}
577
David Howells7d12e782006-10-05 14:55:46 +0100578static void fn_show_mem(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 show_mem();
581}
582
David Howells7d12e782006-10-05 14:55:46 +0100583static void fn_show_state(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 show_state();
586}
587
David Howells7d12e782006-10-05 14:55:46 +0100588static void fn_boot_it(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 ctrl_alt_del();
591}
592
David Howells7d12e782006-10-05 14:55:46 +0100593static void fn_compose(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 dead_key_next = 1;
596}
597
David Howells7d12e782006-10-05 14:55:46 +0100598static void fn_spawn_con(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Eric W. Biederman81af8d62006-10-02 02:17:13 -0700600 spin_lock(&vt_spawn_con.lock);
601 if (vt_spawn_con.pid)
602 if (kill_pid(vt_spawn_con.pid, vt_spawn_con.sig, 1)) {
603 put_pid(vt_spawn_con.pid);
604 vt_spawn_con.pid = NULL;
605 }
606 spin_unlock(&vt_spawn_con.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
David Howells7d12e782006-10-05 14:55:46 +0100609static void fn_SAK(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Eric W. Biederman8b6312f2007-02-10 01:44:34 -0800611 struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work;
Eric W. Biederman8b6312f2007-02-10 01:44:34 -0800612 schedule_work(SAK_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
David Howells7d12e782006-10-05 14:55:46 +0100615static void fn_null(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 compute_shiftstate();
618}
619
620/*
621 * Special key handlers
622 */
David Howells7d12e782006-10-05 14:55:46 +0100623static void k_ignore(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625}
626
David Howells7d12e782006-10-05 14:55:46 +0100627static void k_spec(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 if (up_flag)
630 return;
631 if (value >= ARRAY_SIZE(fn_handler))
632 return;
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -0500633 if ((kbd->kbdmode == VC_RAW ||
634 kbd->kbdmode == VC_MEDIUMRAW) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 value != KVAL(K_SAK))
636 return; /* SAK is allowed even in raw mode */
David Howells7d12e782006-10-05 14:55:46 +0100637 fn_handler[value](vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
David Howells7d12e782006-10-05 14:55:46 +0100640static void k_lowercase(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 printk(KERN_ERR "keyboard.c: k_lowercase was called - impossible\n");
643}
644
David Howells7d12e782006-10-05 14:55:46 +0100645static void k_unicode(struct vc_data *vc, unsigned int value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 if (up_flag)
648 return; /* no action, if this is a key release */
649
650 if (diacr)
651 value = handle_diacr(vc, value);
652
653 if (dead_key_next) {
654 dead_key_next = 0;
655 diacr = value;
656 return;
657 }
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500658 if (kbd->kbdmode == VC_UNICODE)
Samuel Thibault04c71972007-10-16 23:27:04 -0700659 to_utf8(vc, value);
660 else {
661 int c = conv_uni_to_8bit(value);
662 if (c != -1)
663 put_queue(vc, c);
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
668 * Handle dead key. Note that we now may have several
669 * dead keys modifying the same character. Very useful
670 * for Vietnamese.
671 */
David Howells7d12e782006-10-05 14:55:46 +0100672static void k_deadunicode(struct vc_data *vc, unsigned int value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 if (up_flag)
675 return;
676 diacr = (diacr ? handle_diacr(vc, value) : value);
677}
678
David Howells7d12e782006-10-05 14:55:46 +0100679static void k_self(struct vc_data *vc, unsigned char value, char up_flag)
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500680{
Jiri Bohacd2187eb2008-06-12 15:21:51 -0700681 k_unicode(vc, conv_8bit_to_uni(value), up_flag);
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500682}
683
David Howells7d12e782006-10-05 14:55:46 +0100684static void k_dead2(struct vc_data *vc, unsigned char value, char up_flag)
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500685{
David Howells7d12e782006-10-05 14:55:46 +0100686 k_deadunicode(vc, value, up_flag);
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689/*
690 * Obsolete - for backwards compatibility only
691 */
David Howells7d12e782006-10-05 14:55:46 +0100692static void k_dead(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Andreas Mohr0f5e5602006-06-05 00:18:00 -0400694 static const unsigned char ret_diacr[NR_DEAD] = {'`', '\'', '^', '~', '"', ',' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 value = ret_diacr[value];
David Howells7d12e782006-10-05 14:55:46 +0100696 k_deadunicode(vc, value, up_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
David Howells7d12e782006-10-05 14:55:46 +0100699static void k_cons(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 if (up_flag)
702 return;
703 set_console(value);
704}
705
David Howells7d12e782006-10-05 14:55:46 +0100706static void k_fn(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 unsigned v;
709
710 if (up_flag)
711 return;
712 v = value;
713 if (v < ARRAY_SIZE(func_table)) {
714 if (func_table[value])
715 puts_queue(vc, func_table[value]);
716 } else
717 printk(KERN_ERR "k_fn called with value=%d\n", value);
718}
719
David Howells7d12e782006-10-05 14:55:46 +0100720static void k_cur(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Brandon Philipse52b29c2006-11-04 22:09:08 -0500722 static const char cur_chars[] = "BDCA";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (up_flag)
725 return;
726 applkey(vc, cur_chars[value], vc_kbd_mode(kbd, VC_CKMODE));
727}
728
David Howells7d12e782006-10-05 14:55:46 +0100729static void k_pad(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Andreas Mohr0f5e5602006-06-05 00:18:00 -0400731 static const char pad_chars[] = "0123456789+-*/\015,.?()#";
732 static const char app_map[] = "pqrstuvwxylSRQMnnmPQS";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (up_flag)
735 return; /* no action, if this is a key release */
736
737 /* kludge... shift forces cursor/number keys */
738 if (vc_kbd_mode(kbd, VC_APPLIC) && !shift_down[KG_SHIFT]) {
739 applkey(vc, app_map[value], 1);
740 return;
741 }
742
743 if (!vc_kbd_led(kbd, VC_NUMLOCK))
744 switch (value) {
745 case KVAL(K_PCOMMA):
746 case KVAL(K_PDOT):
David Howells7d12e782006-10-05 14:55:46 +0100747 k_fn(vc, KVAL(K_REMOVE), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return;
749 case KVAL(K_P0):
David Howells7d12e782006-10-05 14:55:46 +0100750 k_fn(vc, KVAL(K_INSERT), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return;
752 case KVAL(K_P1):
David Howells7d12e782006-10-05 14:55:46 +0100753 k_fn(vc, KVAL(K_SELECT), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return;
755 case KVAL(K_P2):
David Howells7d12e782006-10-05 14:55:46 +0100756 k_cur(vc, KVAL(K_DOWN), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return;
758 case KVAL(K_P3):
David Howells7d12e782006-10-05 14:55:46 +0100759 k_fn(vc, KVAL(K_PGDN), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return;
761 case KVAL(K_P4):
David Howells7d12e782006-10-05 14:55:46 +0100762 k_cur(vc, KVAL(K_LEFT), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return;
764 case KVAL(K_P6):
David Howells7d12e782006-10-05 14:55:46 +0100765 k_cur(vc, KVAL(K_RIGHT), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return;
767 case KVAL(K_P7):
David Howells7d12e782006-10-05 14:55:46 +0100768 k_fn(vc, KVAL(K_FIND), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return;
770 case KVAL(K_P8):
David Howells7d12e782006-10-05 14:55:46 +0100771 k_cur(vc, KVAL(K_UP), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return;
773 case KVAL(K_P9):
David Howells7d12e782006-10-05 14:55:46 +0100774 k_fn(vc, KVAL(K_PGUP), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return;
776 case KVAL(K_P5):
777 applkey(vc, 'G', vc_kbd_mode(kbd, VC_APPLIC));
778 return;
779 }
780
781 put_queue(vc, pad_chars[value]);
782 if (value == KVAL(K_PENTER) && vc_kbd_mode(kbd, VC_CRLF))
783 put_queue(vc, 10);
784}
785
David Howells7d12e782006-10-05 14:55:46 +0100786static void k_shift(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 int old_state = shift_state;
789
790 if (rep)
791 return;
792 /*
793 * Mimic typewriter:
794 * a CapsShift key acts like Shift but undoes CapsLock
795 */
796 if (value == KVAL(K_CAPSSHIFT)) {
797 value = KVAL(K_SHIFT);
798 if (!up_flag)
799 clr_vc_kbd_led(kbd, VC_CAPSLOCK);
800 }
801
802 if (up_flag) {
803 /*
804 * handle the case that two shift or control
805 * keys are depressed simultaneously
806 */
807 if (shift_down[value])
808 shift_down[value]--;
809 } else
810 shift_down[value]++;
811
812 if (shift_down[value])
813 shift_state |= (1 << value);
814 else
815 shift_state &= ~(1 << value);
816
817 /* kludge */
818 if (up_flag && shift_state != old_state && npadch != -1) {
819 if (kbd->kbdmode == VC_UNICODE)
Jan Engelhardt759448f2007-07-15 23:40:40 -0700820 to_utf8(vc, npadch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 else
822 put_queue(vc, npadch & 0xff);
823 npadch = -1;
824 }
825}
826
David Howells7d12e782006-10-05 14:55:46 +0100827static void k_meta(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 if (up_flag)
830 return;
831
832 if (vc_kbd_mode(kbd, VC_META)) {
833 put_queue(vc, '\033');
834 put_queue(vc, value);
835 } else
836 put_queue(vc, value | 0x80);
837}
838
David Howells7d12e782006-10-05 14:55:46 +0100839static void k_ascii(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 int base;
842
843 if (up_flag)
844 return;
845
846 if (value < 10) {
847 /* decimal input of code, while Alt depressed */
848 base = 10;
849 } else {
850 /* hexadecimal input of code, while AltGr depressed */
851 value -= 10;
852 base = 16;
853 }
854
855 if (npadch == -1)
856 npadch = value;
857 else
858 npadch = npadch * base + value;
859}
860
David Howells7d12e782006-10-05 14:55:46 +0100861static void k_lock(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 if (up_flag || rep)
864 return;
865 chg_vc_kbd_lock(kbd, value);
866}
867
David Howells7d12e782006-10-05 14:55:46 +0100868static void k_slock(struct vc_data *vc, unsigned char value, char up_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
David Howells7d12e782006-10-05 14:55:46 +0100870 k_shift(vc, value, up_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (up_flag || rep)
872 return;
873 chg_vc_kbd_slock(kbd, value);
874 /* try to make Alt, oops, AltGr and such work */
875 if (!key_maps[kbd->lockstate ^ kbd->slockstate]) {
876 kbd->slockstate = 0;
877 chg_vc_kbd_slock(kbd, value);
878 }
879}
880
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500881/* by default, 300ms interval for combination release */
Samuel Thibault77426d72006-04-26 00:14:10 -0400882static unsigned brl_timeout = 300;
883MODULE_PARM_DESC(brl_timeout, "Braille keys release delay in ms (0 for commit on first key release)");
884module_param(brl_timeout, uint, 0644);
885
886static unsigned brl_nbchords = 1;
887MODULE_PARM_DESC(brl_nbchords, "Number of chords that produce a braille pattern (0 for dead chords)");
888module_param(brl_nbchords, uint, 0644);
889
David Howells7d12e782006-10-05 14:55:46 +0100890static void k_brlcommit(struct vc_data *vc, unsigned int pattern, char up_flag)
Samuel Thibault77426d72006-04-26 00:14:10 -0400891{
892 static unsigned long chords;
893 static unsigned committed;
894
895 if (!brl_nbchords)
David Howells7d12e782006-10-05 14:55:46 +0100896 k_deadunicode(vc, BRL_UC_ROW | pattern, up_flag);
Samuel Thibault77426d72006-04-26 00:14:10 -0400897 else {
898 committed |= pattern;
899 chords++;
900 if (chords == brl_nbchords) {
David Howells7d12e782006-10-05 14:55:46 +0100901 k_unicode(vc, BRL_UC_ROW | committed, up_flag);
Samuel Thibault77426d72006-04-26 00:14:10 -0400902 chords = 0;
903 committed = 0;
904 }
905 }
906}
907
David Howells7d12e782006-10-05 14:55:46 +0100908static void k_brl(struct vc_data *vc, unsigned char value, char up_flag)
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500909{
910 static unsigned pressed,committing;
911 static unsigned long releasestart;
912
913 if (kbd->kbdmode != VC_UNICODE) {
914 if (!up_flag)
915 printk("keyboard mode must be unicode for braille patterns\n");
916 return;
917 }
918
919 if (!value) {
David Howells7d12e782006-10-05 14:55:46 +0100920 k_unicode(vc, BRL_UC_ROW, up_flag);
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500921 return;
922 }
923
924 if (value > 8)
925 return;
926
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500927 if (up_flag) {
928 if (brl_timeout) {
929 if (!committing ||
Julia Lawallb39b0442008-04-17 09:28:25 -0400930 time_after(jiffies,
931 releasestart + msecs_to_jiffies(brl_timeout))) {
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500932 committing = pressed;
933 releasestart = jiffies;
934 }
935 pressed &= ~(1 << (value - 1));
936 if (!pressed) {
937 if (committing) {
David Howells7d12e782006-10-05 14:55:46 +0100938 k_brlcommit(vc, committing, 0);
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500939 committing = 0;
940 }
941 }
942 } else {
943 if (committing) {
David Howells7d12e782006-10-05 14:55:46 +0100944 k_brlcommit(vc, committing, 0);
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -0500945 committing = 0;
946 }
947 pressed &= ~(1 << (value - 1));
948 }
949 } else {
950 pressed |= 1 << (value - 1);
951 if (!brl_timeout)
952 committing = pressed;
953 }
954}
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956/*
957 * The leds display either (i) the status of NumLock, CapsLock, ScrollLock,
958 * or (ii) whatever pattern of lights people want to show using KDSETLED,
959 * or (iii) specified bits of specified words in kernel memory.
960 */
961unsigned char getledstate(void)
962{
963 return ledstate;
964}
965
966void setledstate(struct kbd_struct *kbd, unsigned int led)
967{
968 if (!(led & ~7)) {
969 ledioctl = led;
970 kbd->ledmode = LED_SHOW_IOCTL;
971 } else
972 kbd->ledmode = LED_SHOW_FLAGS;
973 set_leds();
974}
975
976static inline unsigned char getleds(void)
977{
978 struct kbd_struct *kbd = kbd_table + fg_console;
979 unsigned char leds;
980 int i;
981
982 if (kbd->ledmode == LED_SHOW_IOCTL)
983 return ledioctl;
984
985 leds = kbd->ledflagstate;
986
987 if (kbd->ledmode == LED_SHOW_MEM) {
988 for (i = 0; i < 3; i++)
989 if (ledptrs[i].valid) {
990 if (*ledptrs[i].addr & ledptrs[i].mask)
991 leds |= (1 << i);
992 else
993 leds &= ~(1 << i);
994 }
995 }
996 return leds;
997}
998
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800999static int kbd_update_leds_helper(struct input_handle *handle, void *data)
1000{
1001 unsigned char leds = *(unsigned char *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Dmitry Torokhov66d2a592009-12-01 21:54:35 -08001003 if (test_bit(EV_LED, handle->dev->evbit)) {
1004 input_inject_event(handle, EV_LED, LED_SCROLLL, !!(leds & 0x01));
1005 input_inject_event(handle, EV_LED, LED_NUML, !!(leds & 0x02));
1006 input_inject_event(handle, EV_LED, LED_CAPSL, !!(leds & 0x04));
1007 input_inject_event(handle, EV_SYN, SYN_REPORT, 0);
1008 }
1009
1010 return 0;
1011}
1012
1013/*
1014 * This is the tasklet that updates LED state on all keyboards
1015 * attached to the box. The reason we use tasklet is that we
1016 * need to handle the scenario when keyboard handler is not
1017 * registered yet but we already getting updates form VT to
1018 * update led state.
1019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020static void kbd_bh(unsigned long dummy)
1021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 unsigned char leds = getleds();
1023
1024 if (leds != ledstate) {
Dmitry Torokhov66d2a592009-12-01 21:54:35 -08001025 input_handler_for_each_handle(&kbd_handler, &leds,
1026 kbd_update_leds_helper);
1027 ledstate = leds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
1031DECLARE_TASKLET_DISABLED(keyboard_tasklet, kbd_bh, 0);
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033#if defined(CONFIG_X86) || defined(CONFIG_IA64) || defined(CONFIG_ALPHA) ||\
Adrian Bunk0b57ee92005-12-22 21:03:47 -08001034 defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) ||\
1035 defined(CONFIG_PARISC) || defined(CONFIG_SUPERH) ||\
Hans-Christian Egtvedt3a4e8322007-12-04 13:15:41 +01001036 (defined(CONFIG_ARM) && defined(CONFIG_KEYBOARD_ATKBD) && !defined(CONFIG_ARCH_RPC)) ||\
1037 defined(CONFIG_AVR32)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039#define HW_RAW(dev) (test_bit(EV_MSC, dev->evbit) && test_bit(MSC_RAW, dev->mscbit) &&\
1040 ((dev)->id.bustype == BUS_I8042) && ((dev)->id.vendor == 0x0001) && ((dev)->id.product == 0x0001))
1041
Andreas Mohr0f5e5602006-06-05 00:18:00 -04001042static const unsigned short x86_keycodes[256] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
1044 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
1045 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
1046 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
1047 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
1048 80, 81, 82, 83, 84,118, 86, 87, 88,115,120,119,121,112,123, 92,
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001049 284,285,309, 0,312, 91,327,328,329,331,333,335,336,337,338,339,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 367,288,302,304,350, 89,334,326,267,126,268,269,125,347,348,349,
1051 360,261,262,263,268,376,100,101,321,316,373,286,289,102,351,355,
Hans de Goede72a42f22007-07-03 01:55:18 -04001052 103,104,105,275,287,279,258,106,274,107,294,364,358,363,362,361,
1053 291,108,381,281,290,272,292,305,280, 99,112,257,306,359,113,114,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 264,117,271,374,379,265,266, 93, 94, 95, 85,259,375,260, 90,116,
1055 377,109,111,277,278,282,283,295,296,297,299,300,301,293,303,307,
1056 308,310,313,314,315,317,318,319,320,357,322,323,324,325,276,330,
1057 332,340,365,342,343,344,345,346,356,270,341,368,369,370,371,372 };
1058
Adrian Bunk0b57ee92005-12-22 21:03:47 -08001059#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060static int sparc_l1_a_state = 0;
1061extern void sun_do_break(void);
1062#endif
1063
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001064static int emulate_raw(struct vc_data *vc, unsigned int keycode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 unsigned char up_flag)
1066{
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001067 int code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 switch (keycode) {
1070 case KEY_PAUSE:
1071 put_queue(vc, 0xe1);
1072 put_queue(vc, 0x1d | up_flag);
1073 put_queue(vc, 0x45 | up_flag);
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001074 break;
1075
Jerome Pinotb9ab58d2006-06-26 01:51:23 -04001076 case KEY_HANGEUL:
Dmitry Torokhov0ae051a2006-06-26 01:52:34 -04001077 if (!up_flag)
1078 put_queue(vc, 0xf2);
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001079 break;
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 case KEY_HANJA:
Dmitry Torokhov0ae051a2006-06-26 01:52:34 -04001082 if (!up_flag)
1083 put_queue(vc, 0xf1);
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001086 case KEY_SYSRQ:
1087 /*
1088 * Real AT keyboards (that's what we're trying
1089 * to emulate here emit 0xe0 0x2a 0xe0 0x37 when
1090 * pressing PrtSc/SysRq alone, but simply 0x54
1091 * when pressing Alt+PrtSc/SysRq.
1092 */
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -07001093 if (test_bit(KEY_LEFTALT, key_down) ||
1094 test_bit(KEY_RIGHTALT, key_down)) {
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001095 put_queue(vc, 0x54 | up_flag);
1096 } else {
1097 put_queue(vc, 0xe0);
1098 put_queue(vc, 0x2a | up_flag);
1099 put_queue(vc, 0xe0);
1100 put_queue(vc, 0x37 | up_flag);
1101 }
1102 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001104 default:
1105 if (keycode > 255)
1106 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001108 code = x86_keycodes[keycode];
1109 if (!code)
1110 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Dmitry Torokhov896cdc72006-07-19 01:14:25 -04001112 if (code & 0x100)
1113 put_queue(vc, 0xe0);
1114 put_queue(vc, (code & 0x7f) | up_flag);
1115
1116 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
1119 return 0;
1120}
1121
1122#else
1123
1124#define HW_RAW(dev) 0
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126static int emulate_raw(struct vc_data *vc, unsigned int keycode, unsigned char up_flag)
1127{
1128 if (keycode > 127)
1129 return -1;
1130
1131 put_queue(vc, keycode | up_flag);
1132 return 0;
1133}
1134#endif
1135
1136static void kbd_rawcode(unsigned char data)
1137{
1138 struct vc_data *vc = vc_cons[fg_console].d;
Alan Jenkins0c09b2a2009-11-18 00:40:48 -08001139 kbd = kbd_table + vc->vc_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (kbd->kbdmode == VC_RAW)
1141 put_queue(vc, data);
1142}
1143
David Howells7d12e782006-10-05 14:55:46 +01001144static void kbd_keycode(unsigned int keycode, int down, int hw_raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
1146 struct vc_data *vc = vc_cons[fg_console].d;
1147 unsigned short keysym, *key_map;
1148 unsigned char type, raw_mode;
1149 struct tty_struct *tty;
1150 int shift_final;
Samuel Thibault41ab4392007-10-18 23:39:12 -07001151 struct keyboard_notifier_param param = { .vc = vc, .value = keycode, .down = down };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 tty = vc->vc_tty;
1154
1155 if (tty && (!tty->driver_data)) {
1156 /* No driver data? Strange. Okay we fix it then. */
1157 tty->driver_data = vc;
1158 }
1159
Alan Jenkins0c09b2a2009-11-18 00:40:48 -08001160 kbd = kbd_table + vc->vc_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Adrian Bunk0b57ee92005-12-22 21:03:47 -08001162#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (keycode == KEY_STOP)
1164 sparc_l1_a_state = down;
1165#endif
1166
1167 rep = (down == 2);
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if ((raw_mode = (kbd->kbdmode == VC_RAW)) && !hw_raw)
1170 if (emulate_raw(vc, keycode, !down << 7))
Dmitry Torokhov9e35d202007-04-12 01:30:52 -04001171 if (keycode < BTN_MISC && printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 printk(KERN_WARNING "keyboard.c: can't emulate rawmode for keycode %d\n", keycode);
1173
Adrian Bunk0b57ee92005-12-22 21:03:47 -08001174#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (keycode == KEY_A && sparc_l1_a_state) {
1176 sparc_l1_a_state = 0;
1177 sun_do_break();
1178 }
1179#endif
1180
1181 if (kbd->kbdmode == VC_MEDIUMRAW) {
1182 /*
1183 * This is extended medium raw mode, with keys above 127
1184 * encoded as 0, high 7 bits, low 7 bits, with the 0 bearing
1185 * the 'up' flag if needed. 0 is reserved, so this shouldn't
1186 * interfere with anything else. The two bytes after 0 will
1187 * always have the up flag set not to interfere with older
1188 * applications. This allows for 16384 different keycodes,
1189 * which should be enough.
1190 */
1191 if (keycode < 128) {
1192 put_queue(vc, keycode | (!down << 7));
1193 } else {
1194 put_queue(vc, !down << 7);
1195 put_queue(vc, (keycode >> 7) | 0x80);
1196 put_queue(vc, keycode | 0x80);
1197 }
1198 raw_mode = 1;
1199 }
1200
1201 if (down)
1202 set_bit(keycode, key_down);
1203 else
1204 clear_bit(keycode, key_down);
1205
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001206 if (rep &&
1207 (!vc_kbd_mode(kbd, VC_REPEAT) ||
Alan Coxf34d7a52008-04-30 00:54:13 -07001208 (tty && !L_ECHO(tty) && tty_chars_in_buffer(tty)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /*
1210 * Don't repeat a key if the input buffers are not empty and the
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001211 * characters get aren't echoed locally. This makes key repeat
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 * usable with slow applications and under heavy loads.
1213 */
1214 return;
1215 }
1216
Samuel Thibault41ab4392007-10-18 23:39:12 -07001217 param.shift = shift_final = (shift_state | kbd->slockstate) ^ kbd->lockstate;
Karl Dahlke0beb4f62008-04-15 01:30:32 -04001218 param.ledstate = kbd->ledflagstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 key_map = key_maps[shift_final];
1220
Samuel Thibault41ab4392007-10-18 23:39:12 -07001221 if (atomic_notifier_call_chain(&keyboard_notifier_list, KBD_KEYCODE, &param) == NOTIFY_STOP || !key_map) {
1222 atomic_notifier_call_chain(&keyboard_notifier_list, KBD_UNBOUND_KEYCODE, &param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 compute_shiftstate();
1224 kbd->slockstate = 0;
1225 return;
1226 }
1227
Dmitry Torokhov161c6092008-10-08 23:42:26 -04001228 if (keycode >= NR_KEYS)
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -05001229 if (keycode >= KEY_BRL_DOT1 && keycode <= KEY_BRL_DOT8)
Samuel Thibault46a96542009-11-25 22:28:20 -08001230 keysym = U(K(KT_BRL, keycode - KEY_BRL_DOT1 + 1));
Samuel Thibaultb9ec4e12006-04-02 00:10:28 -05001231 else
1232 return;
1233 else
1234 keysym = key_map[keycode];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 type = KTYP(keysym);
1237
1238 if (type < 0xf0) {
Samuel Thibault41ab4392007-10-18 23:39:12 -07001239 param.value = keysym;
1240 if (atomic_notifier_call_chain(&keyboard_notifier_list, KBD_UNICODE, &param) == NOTIFY_STOP)
1241 return;
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001242 if (down && !raw_mode)
1243 to_utf8(vc, keysym);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return;
1245 }
1246
1247 type -= 0xf0;
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (type == KT_LETTER) {
1250 type = KT_LATIN;
1251 if (vc_kbd_led(kbd, VC_CAPSLOCK)) {
1252 key_map = key_maps[shift_final ^ (1 << KG_SHIFT)];
1253 if (key_map)
1254 keysym = key_map[keycode];
1255 }
1256 }
Samuel Thibault41ab4392007-10-18 23:39:12 -07001257 param.value = keysym;
1258
1259 if (atomic_notifier_call_chain(&keyboard_notifier_list, KBD_KEYSYM, &param) == NOTIFY_STOP)
1260 return;
1261
1262 if (raw_mode && type != KT_SPEC && type != KT_SHIFT)
1263 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
David Howells7d12e782006-10-05 14:55:46 +01001265 (*k_handler[type])(vc, keysym & 0xff, !down);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Karl Dahlke0beb4f62008-04-15 01:30:32 -04001267 param.ledstate = kbd->ledflagstate;
Samuel Thibault41ab4392007-10-18 23:39:12 -07001268 atomic_notifier_call_chain(&keyboard_notifier_list, KBD_POST_KEYSYM, &param);
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (type != KT_SLOCK)
1271 kbd->slockstate = 0;
1272}
1273
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001274static void kbd_event(struct input_handle *handle, unsigned int event_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 unsigned int event_code, int value)
1276{
Dmitry Torokhov21cea582009-11-29 23:40:58 -08001277 /* We are called with interrupts disabled, just take the lock */
1278 spin_lock(&kbd_event_lock);
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (event_type == EV_MSC && event_code == MSC_RAW && HW_RAW(handle->dev))
1281 kbd_rawcode(value);
1282 if (event_type == EV_KEY)
David Howells7d12e782006-10-05 14:55:46 +01001283 kbd_keycode(event_code, value, HW_RAW(handle->dev));
Dmitry Torokhov21cea582009-11-29 23:40:58 -08001284
1285 spin_unlock(&kbd_event_lock);
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 tasklet_schedule(&keyboard_tasklet);
1288 do_poke_blanked_console = 1;
1289 schedule_console_callback();
1290}
1291
Dmitry Torokhov0b7024ac2010-02-02 21:08:26 -08001292static bool kbd_match(struct input_handler *handler, struct input_dev *dev)
1293{
1294 int i;
1295
1296 if (test_bit(EV_SND, dev->evbit))
1297 return true;
1298
1299 if (test_bit(EV_KEY, dev->evbit))
1300 for (i = KEY_RESERVED; i < BTN_MISC; i++)
1301 if (test_bit(i, dev->keybit))
1302 return true;
1303
1304 return false;
1305}
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307/*
1308 * When a keyboard (or other input device) is found, the kbd_connect
1309 * function is called. The function then looks at the device, and if it
1310 * likes it, it can open it and get events from it. In this (kbd_connect)
1311 * function, we should decide which VT to bind that keyboard to initially.
1312 */
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001313static int kbd_connect(struct input_handler *handler, struct input_dev *dev,
1314 const struct input_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 struct input_handle *handle;
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001317 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Dmitry Torokhov22479e12006-08-04 22:51:51 -04001319 handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
1320 if (!handle)
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001321 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 handle->dev = dev;
1324 handle->handler = handler;
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001325 handle->name = "kbd";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001327 error = input_register_handle(handle);
1328 if (error)
1329 goto err_free_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001331 error = input_open_device(handle);
1332 if (error)
1333 goto err_unregister_handle;
1334
1335 return 0;
1336
1337 err_unregister_handle:
1338 input_unregister_handle(handle);
1339 err_free_handle:
1340 kfree(handle);
1341 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
1344static void kbd_disconnect(struct input_handle *handle)
1345{
1346 input_close_device(handle);
Dmitry Torokhov5b2a0822007-04-12 01:29:46 -04001347 input_unregister_handle(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 kfree(handle);
1349}
1350
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -04001351/*
1352 * Start keyboard handler on the new keyboard by refreshing LED state to
1353 * match the rest of the system.
1354 */
1355static void kbd_start(struct input_handle *handle)
1356{
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -04001357 tasklet_disable(&keyboard_tasklet);
Dmitry Torokhov66d2a592009-12-01 21:54:35 -08001358
1359 if (ledstate != 0xff)
1360 kbd_update_leds_helper(handle, &ledstate);
1361
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -04001362 tasklet_enable(&keyboard_tasklet);
1363}
1364
Dmitry Torokhov66e66112006-09-14 01:31:59 -04001365static const struct input_device_id kbd_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 {
1367 .flags = INPUT_DEVICE_ID_MATCH_EVBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001368 .evbit = { BIT_MASK(EV_KEY) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 },
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 {
1372 .flags = INPUT_DEVICE_ID_MATCH_EVBIT,
Jiri Slaby7b19ada2007-10-18 23:40:32 -07001373 .evbit = { BIT_MASK(EV_SND) },
Dmitry Torokhovfe1e8602005-09-10 12:03:38 -05001374 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 { }, /* Terminating entry */
1377};
1378
1379MODULE_DEVICE_TABLE(input, kbd_ids);
1380
1381static struct input_handler kbd_handler = {
1382 .event = kbd_event,
Dmitry Torokhov0b7024ac2010-02-02 21:08:26 -08001383 .match = kbd_match,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .connect = kbd_connect,
1385 .disconnect = kbd_disconnect,
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -04001386 .start = kbd_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 .name = "kbd",
1388 .id_table = kbd_ids,
1389};
1390
1391int __init kbd_init(void)
1392{
1393 int i;
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001394 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Dmitry Torokhov2b192902006-07-19 01:13:26 -04001396 for (i = 0; i < MAX_NR_CONSOLES; i++) {
1397 kbd_table[i].ledflagstate = KBD_DEFLEDS;
1398 kbd_table[i].default_ledflagstate = KBD_DEFLEDS;
1399 kbd_table[i].ledmode = LED_SHOW_FLAGS;
1400 kbd_table[i].lockstate = KBD_DEFLOCK;
1401 kbd_table[i].slockstate = 0;
1402 kbd_table[i].modeflags = KBD_DEFMODE;
Bill Nottingham2e8ecb92007-10-16 23:29:38 -07001403 kbd_table[i].kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
Dmitry Torokhov2b192902006-07-19 01:13:26 -04001404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Dmitry Torokhov4263cf02006-09-14 01:32:39 -04001406 error = input_register_handler(&kbd_handler);
1407 if (error)
1408 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 tasklet_enable(&keyboard_tasklet);
1411 tasklet_schedule(&keyboard_tasklet);
1412
1413 return 0;
1414}