summaryrefslogtreecommitdiff
path: root/payloads
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2020-10-24 18:00:19 +0200
committerHung-Te Lin <hungte@chromium.org>2020-12-23 03:29:32 +0000
commita69d682a0b2c6f197f9524e0bd8f0be5561c15fc (patch)
tree3d8602009138107a2015de813f29e72a0accde44 /payloads
parent0e1d19baa6f1b1d2c11a7d9e548f70f7c1b7a50e (diff)
downloadcoreboot-a69d682a0b2c6f197f9524e0bd8f0be5561c15fc.tar.xz
libpayload/keyboard: Revise scancode set and translation config
Some background first: The original XT keyboards used what we call scancode set #1 today. The PC/AT keyboards introduced scancode set #2, but for compatibility, its controller translated scancodes back to set #1 by default. Newer keyboards (maybe all we have to deal with) also support switching the scancode set. This means the translation option in the controller and the scancode set selection in the keyboard have to match. In libpayload, we only support set #1 scancodes. So we either need the controller's trans- lation on and set #2 selected in the keyboard, or the controller's translation off and set #1 selected in the keyboard. Valid configurations: * SET #1 + XLATE off * SET #2 + XLATE on Both with and without the PC_KEYBOARD_AT_TRANSLATED option, we were only configuring one of the two settings, leaving room for invalid configurations. With this change, we try to select scancode set #2 first, which seems to be the most supported one, and configure the controller's translation accordingly. We try to fall back to set #1 on failure. We also keep translation disabled during configuration steps to ensure that the controller doesn't accidentally translate confi- guration data. On the coreboot side, we leave the controller's translation at its default setting, unless DRIVERS_PS2_KEYBOARD is enabled. The latter enables the translation unconditionally. For QEMU this means that the option effectively toggles the translation, as QEMU's controller has it disabled by default. This probably made a lot of earlier testing inconsistent. Fixes: commit a95a6bf646 (libpayload/drivers/i8402/kbd: Fix qemu) The reset introduced there effectively reverted the scancode selection made before (because 2 is the default). It's unclear if later changes to the code were only necessary to work around it. Change-Id: Iad85af516a7b9f9c0269ff9652ed15ee81700057 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46724 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/libpayload/Kconfig4
-rw-r--r--payloads/libpayload/drivers/i8042/i8042.h3
-rw-r--r--payloads/libpayload/drivers/i8042/keyboard.c63
3 files changed, 17 insertions, 53 deletions
diff --git a/payloads/libpayload/Kconfig b/payloads/libpayload/Kconfig
index f5b81a9f00..7a502b5853 100644
--- a/payloads/libpayload/Kconfig
+++ b/payloads/libpayload/Kconfig
@@ -375,10 +375,6 @@ config PC_KEYBOARD
default y if ARCH_X86 # uses IO
default n
-config PC_KEYBOARD_AT_TRANSLATED
- bool "AT Translation keyboard device"
- default n
-
config PC_KEYBOARD_LAYOUT_US
bool "English (US) keyboard layout"
depends on PC_KEYBOARD
diff --git a/payloads/libpayload/drivers/i8042/i8042.h b/payloads/libpayload/drivers/i8042/i8042.h
index 6d15d1e0c5..bcb42fd13d 100644
--- a/payloads/libpayload/drivers/i8042/i8042.h
+++ b/payloads/libpayload/drivers/i8042/i8042.h
@@ -56,9 +56,6 @@
#define I8042_MODE_SCROLL_LOCK_ON (1 << 0)
#define I8042_MODE_SCROLL_LOCK_OFF (0 << 0)
#define I8042_KBCMD_SET_SCANCODE 0xf0
-#define I8042_SCANCODE_SET_1 (1)
-#define I8042_SCANCODE_SET_2 (2)
-#define I8042_SCANCODE_SET_3 (3)
#define I8042_KBCMD_SET_TYPEMATIC 0xf3
#define I8042_KBCMD_EN 0xf4
#define I8042_KBCMD_DEFAULT_DIS 0xf5
diff --git a/payloads/libpayload/drivers/i8042/keyboard.c b/payloads/libpayload/drivers/i8042/keyboard.c
index 2dec3a38f2..22747ff79d 100644
--- a/payloads/libpayload/drivers/i8042/keyboard.c
+++ b/payloads/libpayload/drivers/i8042/keyboard.c
@@ -313,55 +313,22 @@ static struct console_input_driver cons = {
.input_type = CONSOLE_INPUT_TYPE_EC,
};
-/* Enable keyboard translated */
-static bool enable_translated(void)
+static bool set_scancode_set(const unsigned char set)
{
- if (!i8042_cmd(I8042_CMD_RD_CMD_BYTE)) {
- int cmd = i8042_read_data_ps2();
- cmd |= I8042_CMD_BYTE_XLATE;
- if (!i8042_cmd(I8042_CMD_WR_CMD_BYTE)) {
- i8042_write_data(cmd);
- } else {
- printf("ERROR: i8042_cmd WR_CMD failed!\n");
- return false;
- }
- } else {
- printf("ERROR: i8042_cmd RD_CMD failed!\n");
+ bool ret;
+
+ if (set < 1 || set > 3)
return false;
- }
- return true;
-}
-/* Set scancode set 1 */
-static bool set_scancode_set(void)
-{
- bool ret;
ret = keyboard_cmd(I8042_KBCMD_SET_SCANCODE);
if (!ret) {
printf("ERROR: Keyboard set scancode failed!\n");
return ret;
}
- ret = keyboard_cmd(I8042_SCANCODE_SET_1);
- if (!ret) {
- printf("ERROR: Keyboard scancode set#1 failed!\n");
- return ret;
- }
-
- /*
- * Set default parameters.
- * Fix for broken QEMU PS/2 make scancodes.
- */
- ret = keyboard_cmd(I8042_KBCMD_SET_DEFAULT);
+ ret = keyboard_cmd(set);
if (!ret) {
- printf("ERROR: Keyboard set default params failed!\n");
- return ret;
- }
-
- /* Enable scanning */
- ret = keyboard_cmd(I8042_KBCMD_EN);
- if (!ret) {
- printf("ERROR: Keyboard enable scanning failed!\n");
+ printf("ERROR: Keyboard scancode set#%u failed!\n", set);
return ret;
}
@@ -383,13 +350,17 @@ void keyboard_init(void)
/* Enable first PS/2 port */
i8042_cmd(I8042_CMD_EN_KB);
- if (CONFIG(LP_PC_KEYBOARD_AT_TRANSLATED)) {
- if (!enable_translated())
- return;
- } else {
- if (!set_scancode_set())
- return;
- }
+ i8042_set_kbd_translation(false);
+
+ if (set_scancode_set(2))
+ i8042_set_kbd_translation(true);
+ else if (!set_scancode_set(1))
+ return; /* give up, leave keyboard input disabled */
+
+ /* Enable scanning */
+ const bool ret = keyboard_cmd(I8042_KBCMD_EN);
+ if (!ret)
+ printf("ERROR: Keyboard enable scanning failed!\n");
console_add_input_driver(&cons);
}