3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
7 * Copyright (C) 1999-2002 Harald Koerfgen <hkoerfg@web.de>
8 * Copyright (C) 2001, 2002, 2003, 2004 Maciej W. Rozycki
12 #include <linux/errno.h>
13 #include <linux/tty.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/kbd_ll.h>
18 #include <linux/kbd_kern.h>
19 #include <linux/vt_kern.h>
21 #include <asm/keyboard.h>
22 #include <asm/dec/tc.h>
23 #include <asm/dec/machtype.h>
24 #include <asm/dec/serial.h>
29 * Only handle DECstations that have an LK201 interface.
30 * Maxine uses LK501 at the Access.Bus and various DECsystems
31 * have no keyboard interface at all.
33 #define LK_IFACE (mips_machtype == MACH_DS23100 || \
34 mips_machtype == MACH_DS5000_200 || \
35 mips_machtype == MACH_DS5000_1XX || \
36 mips_machtype == MACH_DS5000_2X0)
38 * These use the Z8530 SCC. Others use the DZ11.
40 #define LK_IFACE_ZS (mips_machtype == MACH_DS5000_1XX || \
41 mips_machtype == MACH_DS5000_2X0)
43 /* Simple translation table for the SysRq keys */
45 #ifdef CONFIG_MAGIC_SYSRQ
47 * Actually no translation at all, at least until we figure out
48 * how to define SysRq for LK201 and friends. --macro
50 unsigned char lk201_sysrq_xlate[128];
51 unsigned char *kbd_sysrq_xlate = lk201_sysrq_xlate;
53 unsigned char kbd_sysrq_key = -1;
58 static int __init lk201_init(void *);
59 static void __init lk201_info(void *);
60 static void lk201_rx_char(unsigned char, unsigned char);
62 static struct dec_serial_hook lk201_hook = {
63 .init_channel = lk201_init,
64 .init_info = lk201_info,
68 .cflags = B4800 | CS8 | CSTOPB | CLOCAL,
72 * This is used during keyboard initialisation
74 static unsigned char lk201_reset_string[] = {
76 LK_CMD_MODE(LK_MODE_RPT_DOWN, 1),
77 LK_CMD_MODE(LK_MODE_RPT_DOWN, 2),
78 LK_CMD_MODE(LK_MODE_RPT_DOWN, 3),
79 LK_CMD_MODE(LK_MODE_RPT_DOWN, 4),
80 LK_CMD_MODE(LK_MODE_DOWN_UP, 5),
81 LK_CMD_MODE(LK_MODE_DOWN_UP, 6),
82 LK_CMD_MODE(LK_MODE_RPT_DOWN, 7),
83 LK_CMD_MODE(LK_MODE_RPT_DOWN, 8),
84 LK_CMD_MODE(LK_MODE_RPT_DOWN, 9),
85 LK_CMD_MODE(LK_MODE_RPT_DOWN, 10),
86 LK_CMD_MODE(LK_MODE_RPT_DOWN, 11),
87 LK_CMD_MODE(LK_MODE_RPT_DOWN, 12),
88 LK_CMD_MODE(LK_MODE_DOWN, 13),
89 LK_CMD_MODE(LK_MODE_RPT_DOWN, 14),
91 LK_CMD_ENB_BELL, LK_PARAM_VOLUME(4),
94 static void *lk201_handle;
96 static int lk201_send(unsigned char ch)
98 if (lk201_hook.poll_tx_char(lk201_handle, ch)) {
99 printk(KERN_ERR "lk201: transmit timeout\n");
105 static inline int lk201_get_id(void)
107 return lk201_send(LK_CMD_REQ_ID);
110 static int lk201_reset(void)
114 for (i = 0; i < sizeof(lk201_reset_string); i++) {
115 r = lk201_send(lk201_reset_string[i]);
122 static void lk201_report(unsigned char id[6])
124 char *report = "lk201: keyboard attached, ";
127 case LK_STAT_PWRUP_OK:
128 printk(KERN_INFO "%sself-test OK\n", report);
130 case LK_STAT_PWRUP_KDOWN:
131 /* The keyboard will resend the power-up ID
132 after all keys are released, so we don't
133 bother handling the error specially. Still
134 there may be a short-circuit inside.
136 printk(KERN_ERR "%skey down (stuck?), code: 0x%02x\n",
139 case LK_STAT_PWRUP_ERROR:
140 printk(KERN_ERR "%sself-test failure\n", report);
143 printk(KERN_ERR "%sunknown error: 0x%02x\n",
148 static void lk201_id(unsigned char id[6])
151 * Report whether there is an LK201 or an LK401
152 * The LK401 has ALT keys...
156 printk(KERN_INFO "lk201: LK201 detected\n");
159 printk(KERN_INFO "lk201: LK401 detected\n");
162 printk(KERN_INFO "lk201: LK443 detected\n");
165 printk(KERN_INFO "lk201: LK421 detected\n");
169 "lk201: unknown keyboard detected, ID %d\n", id[4]);
170 printk(KERN_WARNING "lk201: ... please report to "
171 "<linux-mips@linux-mips.org>\n");
175 #define DEFAULT_KEYB_REP_DELAY (250/5) /* [5ms] */
176 #define DEFAULT_KEYB_REP_RATE 30 /* [cps] */
178 static struct kbd_repeat kbdrate = {
179 DEFAULT_KEYB_REP_DELAY,
180 DEFAULT_KEYB_REP_RATE
183 static void parse_kbd_rate(struct kbd_repeat *r)
186 r->delay = kbdrate.delay;
188 r->rate = kbdrate.rate;
202 static int write_kbd_rate(struct kbd_repeat *rep)
207 delay = rep->delay / 5;
209 for (i = 0; i < 4; i++) {
210 if (lk201_hook.poll_tx_char(lk201_handle,
213 if (lk201_hook.poll_tx_char(lk201_handle,
214 LK_PARAM_DELAY(delay)))
216 if (lk201_hook.poll_tx_char(lk201_handle,
217 LK_PARAM_RATE(rate)))
223 static int lk201_kbd_rate(struct kbd_repeat *rep)
230 if (write_kbd_rate(rep)) {
231 memcpy(rep, &kbdrate, sizeof(struct kbd_repeat));
235 memcpy(&kbdrate, rep, sizeof(struct kbd_repeat));
240 static void lk201_kd_mksound(unsigned int hz, unsigned int ticks)
246 * Can't set frequency and we "approximate"
247 * duration by volume. ;-)
254 if (lk201_hook.poll_tx_char(lk201_handle, LK_CMD_ENB_BELL))
256 if (lk201_hook.poll_tx_char(lk201_handle, LK_PARAM_VOLUME(ticks)))
258 if (lk201_hook.poll_tx_char(lk201_handle, LK_CMD_BELL))
262 void kbd_leds(unsigned char leds)
266 if (!lk201_handle) /* FIXME */
269 /* FIXME -- Only Hold and Lock LEDs for now. --macro */
275 if (lk201_hook.poll_tx_char(lk201_handle, LK_CMD_LEDS_ON))
277 if (lk201_hook.poll_tx_char(lk201_handle, LK_PARAM_LED_MASK(l)))
279 if (lk201_hook.poll_tx_char(lk201_handle, LK_CMD_LEDS_OFF))
281 if (lk201_hook.poll_tx_char(lk201_handle, LK_PARAM_LED_MASK(~l)))
285 int kbd_setkeycode(unsigned int scancode, unsigned int keycode)
290 int kbd_getkeycode(unsigned int scancode)
295 int kbd_translate(unsigned char scancode, unsigned char *keycode,
302 char kbd_unexpected_up(unsigned char keycode)
307 static void lk201_rx_char(unsigned char ch, unsigned char fl)
309 static unsigned char id[6];
312 static int shift_state = 0;
313 static int prev_scancode;
314 unsigned char c = scancodeRemap[ch];
316 if (fl != TTY_NORMAL && fl != TTY_OVERRUN) {
317 printk(KERN_ERR "lk201: keyboard receive error: 0x%02x\n", fl);
321 /* Assume this is a power-up ID. */
322 if (ch == LK_STAT_PWRUP_ID && !id_i) {
327 /* Handle the power-up sequence. */
331 /* OK, the power-up concluded. */
333 if (id[2] == LK_STAT_PWRUP_OK)
337 printk(KERN_ERR "lk201: keyboard power-up "
338 "error, skipping initialization\n");
340 } else if (id_i == 6) {
341 /* We got the ID; report it and start operation. */
349 /* Everything else is a scancode/status response. */
352 case LK_STAT_RESUME_ERR:
354 case LK_STAT_INHIBIT_ACK:
355 case LK_STAT_TEST_ACK:
356 case LK_STAT_MODE_KEYDOWN:
357 case LK_STAT_MODE_ACK:
360 shift_state ^= LK_LOCK;
361 handle_scancode(c, (shift_state & LK_LOCK) ? 1 : 0);
364 shift_state ^= LK_SHIFT;
365 handle_scancode(c, (shift_state & LK_SHIFT) ? 1 : 0);
368 shift_state ^= LK_CTRL;
369 handle_scancode(c, (shift_state & LK_CTRL) ? 1 : 0);
372 shift_state ^= LK_COMP;
373 handle_scancode(c, (shift_state & LK_COMP) ? 1 : 0);
376 if (shift_state & LK_SHIFT)
377 handle_scancode(scancodeRemap[LK_KEY_SHIFT], 0);
378 if (shift_state & LK_CTRL)
379 handle_scancode(scancodeRemap[LK_KEY_CTRL], 0);
380 if (shift_state & LK_COMP)
381 handle_scancode(scancodeRemap[LK_KEY_COMP], 0);
382 if (shift_state & LK_LOCK)
383 handle_scancode(scancodeRemap[LK_KEY_LOCK], 0);
387 handle_scancode(prev_scancode, 1);
391 handle_scancode(c, 1);
394 tasklet_schedule(&keyboard_tasklet);
397 static void __init lk201_info(void *handle)
401 static int __init lk201_init(void *handle)
403 /* First install handlers. */
404 lk201_handle = handle;
405 kbd_rate = lk201_kbd_rate;
406 kd_mksound = lk201_kd_mksound;
408 lk201_hook.rx_char = lk201_rx_char;
410 /* Then just issue a reset -- the handlers will do the rest. */
411 lk201_send(LK_CMD_POWER_UP);
416 void __init kbd_init_hw(void)
418 /* Maxine uses LK501 at the Access.Bus. */
422 printk(KERN_INFO "lk201: DECstation LK keyboard driver v0.05.\n");
426 * kbd_init_hw() is being called before
427 * rs_init() so just register the kbd hook
428 * and let zs_init do the rest :-)
430 if (!register_dec_serial_hook(KEYB_LINE, &lk201_hook))
431 unregister_dec_serial_hook(KEYB_LINE);
434 * TODO: modify dz.c to allow similar hooks
435 * for LK201 handling on DS2100, DS3100, and DS5000/200
437 printk(KERN_ERR "lk201: support for DZ11 not yet ready.\n");