2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002 ELTEC Elektronik AG
|
|
|
|
* Frank Gottschling <fgottschling@eltec.de>
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* i8042.c - Intel 8042 keyboard driver routines */
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <i8042.h>
|
2015-11-11 17:05:41 +00:00
|
|
|
#include <input.h>
|
|
|
|
#include <asm/io.h>
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/* defines */
|
2015-08-24 08:00:05 +00:00
|
|
|
#define in8(p) inb(p)
|
|
|
|
#define out8(p, v) outb(v, p)
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/* locals */
|
2015-11-11 17:05:41 +00:00
|
|
|
static struct input_config config;
|
|
|
|
static bool extended;
|
2011-11-14 19:24:14 +00:00
|
|
|
|
|
|
|
static unsigned char ext_key_map[] = {
|
|
|
|
0x1c, /* keypad enter */
|
|
|
|
0x1d, /* right control */
|
|
|
|
0x35, /* keypad slash */
|
|
|
|
0x37, /* print screen */
|
|
|
|
0x38, /* right alt */
|
|
|
|
0x46, /* break */
|
|
|
|
0x47, /* editpad home */
|
|
|
|
0x48, /* editpad up */
|
|
|
|
0x49, /* editpad pgup */
|
|
|
|
0x4b, /* editpad left */
|
|
|
|
0x4d, /* editpad right */
|
|
|
|
0x4f, /* editpad end */
|
|
|
|
0x50, /* editpad dn */
|
|
|
|
0x51, /* editpad pgdn */
|
|
|
|
0x52, /* editpad ins */
|
|
|
|
0x53, /* editpad del */
|
|
|
|
0x00 /* map end */
|
|
|
|
};
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2015-08-24 08:00:04 +00:00
|
|
|
static int kbd_input_empty(void)
|
|
|
|
{
|
2015-08-24 08:00:05 +00:00
|
|
|
int kbd_timeout = KBD_TIMEOUT * 1000;
|
2015-08-24 08:00:04 +00:00
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
while ((in8(I8042_STS_REG) & STATUS_IBF) && kbd_timeout--)
|
2015-08-24 08:00:04 +00:00
|
|
|
udelay(1);
|
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
return kbd_timeout != -1;
|
2015-08-24 08:00:04 +00:00
|
|
|
}
|
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
static int kbd_output_full(void)
|
2015-08-24 08:00:04 +00:00
|
|
|
{
|
2015-08-24 08:00:05 +00:00
|
|
|
int kbd_timeout = KBD_TIMEOUT * 1000;
|
2015-08-24 08:00:04 +00:00
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
while (((in8(I8042_STS_REG) & STATUS_OBF) == 0) && kbd_timeout--)
|
2015-08-24 08:00:04 +00:00
|
|
|
udelay(1);
|
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
return kbd_timeout != -1;
|
2015-08-24 08:00:04 +00:00
|
|
|
}
|
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
static void kbd_led_set(int flags)
|
2015-08-24 08:00:04 +00:00
|
|
|
{
|
|
|
|
kbd_input_empty();
|
2015-08-24 08:00:05 +00:00
|
|
|
out8(I8042_DATA_REG, CMD_SET_KBD_LED);
|
2015-08-24 08:00:04 +00:00
|
|
|
kbd_input_empty();
|
2015-11-11 17:05:41 +00:00
|
|
|
out8(I8042_DATA_REG, flags & 0x7);
|
2015-08-24 08:00:04 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 03:17:19 +00:00
|
|
|
static int kbd_write(int reg, int value)
|
2015-08-24 08:00:04 +00:00
|
|
|
{
|
2015-10-19 03:17:19 +00:00
|
|
|
if (!kbd_input_empty())
|
2015-08-24 08:00:06 +00:00
|
|
|
return -1;
|
2015-10-19 03:17:19 +00:00
|
|
|
out8(reg, value);
|
2015-08-24 08:00:04 +00:00
|
|
|
|
2015-10-19 03:17:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kbd_read(int reg)
|
|
|
|
{
|
|
|
|
if (!kbd_output_full())
|
2015-08-24 08:00:06 +00:00
|
|
|
return -1;
|
2015-10-19 03:17:19 +00:00
|
|
|
|
|
|
|
return in8(reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kbd_cmd_read(int cmd)
|
|
|
|
{
|
|
|
|
if (kbd_write(I8042_CMD_REG, cmd))
|
2015-08-24 08:00:04 +00:00
|
|
|
return -1;
|
2015-10-19 03:17:19 +00:00
|
|
|
|
|
|
|
return kbd_read(I8042_DATA_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kbd_cmd_write(int cmd, int data)
|
|
|
|
{
|
|
|
|
if (kbd_write(I8042_CMD_REG, cmd))
|
2015-08-24 08:00:04 +00:00
|
|
|
return -1;
|
2015-10-19 03:17:19 +00:00
|
|
|
|
|
|
|
return kbd_write(I8042_DATA_REG, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kbd_reset(void)
|
|
|
|
{
|
|
|
|
int config;
|
|
|
|
|
|
|
|
/* controller self test */
|
|
|
|
if (kbd_cmd_read(CMD_SELF_TEST) != KBC_TEST_OK)
|
2015-10-19 03:17:20 +00:00
|
|
|
goto err;
|
2015-10-19 03:17:19 +00:00
|
|
|
|
|
|
|
/* keyboard reset */
|
|
|
|
if (kbd_write(I8042_DATA_REG, CMD_RESET_KBD) ||
|
|
|
|
kbd_read(I8042_DATA_REG) != KBD_ACK ||
|
|
|
|
kbd_read(I8042_DATA_REG) != KBD_POR)
|
2015-10-19 03:17:20 +00:00
|
|
|
goto err;
|
2015-08-24 08:00:04 +00:00
|
|
|
|
2015-08-24 08:00:06 +00:00
|
|
|
/* set AT translation and disable irq */
|
2015-10-19 03:17:19 +00:00
|
|
|
config = kbd_cmd_read(CMD_RD_CONFIG);
|
|
|
|
if (config == -1)
|
2015-10-19 03:17:20 +00:00
|
|
|
goto err;
|
2015-10-19 03:17:19 +00:00
|
|
|
|
2015-08-24 08:00:06 +00:00
|
|
|
config |= CONFIG_AT_TRANS;
|
|
|
|
config &= ~(CONFIG_KIRQ_EN | CONFIG_MIRQ_EN);
|
2015-10-19 03:17:19 +00:00
|
|
|
if (kbd_cmd_write(CMD_WR_CONFIG, config))
|
2015-10-19 03:17:20 +00:00
|
|
|
goto err;
|
2015-08-24 08:00:04 +00:00
|
|
|
|
2015-08-24 08:00:06 +00:00
|
|
|
/* enable keyboard */
|
2015-10-19 03:17:19 +00:00
|
|
|
if (kbd_write(I8042_CMD_REG, CMD_KBD_EN) ||
|
|
|
|
!kbd_input_empty())
|
2015-10-19 03:17:20 +00:00
|
|
|
goto err;
|
2015-08-24 08:00:04 +00:00
|
|
|
|
|
|
|
return 0;
|
2015-10-19 03:17:20 +00:00
|
|
|
err:
|
|
|
|
debug("%s: Keyboard failure\n", __func__);
|
|
|
|
return -1;
|
2015-08-24 08:00:04 +00:00
|
|
|
}
|
|
|
|
|
2011-11-14 20:18:12 +00:00
|
|
|
static int kbd_controller_present(void)
|
|
|
|
{
|
2015-08-24 08:00:05 +00:00
|
|
|
return in8(I8042_STS_REG) != 0xff;
|
2011-11-14 20:18:12 +00:00
|
|
|
}
|
|
|
|
|
2012-10-12 14:02:02 +00:00
|
|
|
/*
|
|
|
|
* Implement a weak default function for boards that optionally
|
|
|
|
* need to skip the i8042 initialization.
|
|
|
|
*/
|
|
|
|
int __weak board_i8042_skip(void)
|
|
|
|
{
|
|
|
|
/* As default, don't skip */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-11 15:15:51 +00:00
|
|
|
void i8042_flush(void)
|
|
|
|
{
|
|
|
|
int timeout;
|
|
|
|
|
|
|
|
/*
|
2015-08-24 08:00:05 +00:00
|
|
|
* The delay is to give the keyboard controller some time
|
|
|
|
* to fill the next byte.
|
2012-10-11 15:15:51 +00:00
|
|
|
*/
|
|
|
|
while (1) {
|
2015-08-24 08:00:05 +00:00
|
|
|
timeout = 100; /* wait for no longer than 100us */
|
|
|
|
while (timeout > 0 && !(in8(I8042_STS_REG) & STATUS_OBF)) {
|
2012-10-11 15:15:51 +00:00
|
|
|
udelay(1);
|
|
|
|
timeout--;
|
|
|
|
}
|
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
/* Try to pull next byte if not timeout */
|
|
|
|
if (in8(I8042_STS_REG) & STATUS_OBF)
|
2012-10-11 15:15:51 +00:00
|
|
|
in8(I8042_DATA_REG);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int i8042_disable(void)
|
|
|
|
{
|
|
|
|
if (kbd_input_empty() == 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Disable keyboard */
|
2015-08-24 08:00:05 +00:00
|
|
|
out8(I8042_CMD_REG, CMD_KBD_DIS);
|
2012-10-11 15:15:51 +00:00
|
|
|
|
|
|
|
if (kbd_input_empty() == 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
static int i8042_kbd_check(struct input_config *input)
|
|
|
|
{
|
|
|
|
if ((in8(I8042_STS_REG) & STATUS_OBF) == 0) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
bool release = false;
|
|
|
|
int scan_code;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
scan_code = in8(I8042_DATA_REG);
|
|
|
|
if (scan_code == 0xfa) {
|
|
|
|
return 0;
|
|
|
|
} else if (scan_code == 0xe0) {
|
|
|
|
extended = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (scan_code & 0x80) {
|
|
|
|
scan_code &= 0x7f;
|
|
|
|
release = true;
|
|
|
|
}
|
|
|
|
if (extended) {
|
|
|
|
extended = false;
|
|
|
|
for (i = 0; ext_key_map[i]; i++) {
|
|
|
|
if (ext_key_map[i] == scan_code) {
|
|
|
|
scan_code = 0x60 + i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* not found ? */
|
|
|
|
if (!ext_key_map[i])
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
input_add_keycode(&config, scan_code, release);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
/* i8042_kbd_init - reset keyboard and init state flags */
|
2011-11-14 19:24:14 +00:00
|
|
|
int i8042_kbd_init(void)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2011-11-14 19:24:14 +00:00
|
|
|
int keymap, try;
|
|
|
|
char *penv;
|
2015-11-11 17:05:41 +00:00
|
|
|
int ret;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2015-08-24 08:00:05 +00:00
|
|
|
if (!kbd_controller_present() || board_i8042_skip()) {
|
|
|
|
debug("i8042 keyboard controller is not present\n");
|
2011-11-14 20:18:12 +00:00
|
|
|
return -1;
|
2015-08-24 08:00:05 +00:00
|
|
|
}
|
2011-11-14 20:18:12 +00:00
|
|
|
|
2011-11-14 19:24:14 +00:00
|
|
|
/* Init keyboard device (default US layout) */
|
|
|
|
keymap = KBD_US;
|
|
|
|
penv = getenv("keymap");
|
|
|
|
if (penv != NULL) {
|
|
|
|
if (strncmp(penv, "de", 3) == 0)
|
|
|
|
keymap = KBD_GER;
|
|
|
|
}
|
|
|
|
|
2015-10-19 03:17:21 +00:00
|
|
|
for (try = 0; kbd_reset() != 0; try++) {
|
|
|
|
if (try >= KBD_RESET_TRIES)
|
|
|
|
return -1;
|
2011-11-14 19:24:14 +00:00
|
|
|
}
|
2015-08-24 08:00:05 +00:00
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
ret = input_init(&config, keymap == KBD_GER);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
config.read_keys = i8042_kbd_check;
|
|
|
|
input_allow_repeats(&config, true);
|
|
|
|
|
|
|
|
kbd_led_set(NORMAL);
|
2015-10-19 03:17:21 +00:00
|
|
|
|
|
|
|
return 0;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
/**
|
|
|
|
* check_leds() - Check the keyboard LEDs and update them it needed
|
2015-08-24 08:00:05 +00:00
|
|
|
*
|
2015-11-11 17:05:41 +00:00
|
|
|
* @ret: Value to return
|
|
|
|
* @return value of @ret
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
2015-11-11 17:05:41 +00:00
|
|
|
static int check_leds(int ret)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2015-11-11 17:05:41 +00:00
|
|
|
int leds;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
leds = input_leds_changed(&config);
|
|
|
|
if (leds >= 0)
|
|
|
|
kbd_led_set(leds);
|
2011-11-14 19:24:14 +00:00
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2015-08-24 08:00:05 +00:00
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
/* i8042_tstc - test if keyboard input is available */
|
|
|
|
int i8042_tstc(struct stdio_dev *dev)
|
|
|
|
{
|
|
|
|
return check_leds(input_tstc(&config));
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
2015-11-11 17:05:41 +00:00
|
|
|
/* i8042_getc - wait till keyboard input is available */
|
2014-07-23 12:54:59 +00:00
|
|
|
int i8042_getc(struct stdio_dev *dev)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2015-11-11 17:05:41 +00:00
|
|
|
return check_leds(input_getc(&config));
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|