diff options
author | Nico Huber <nico.h@gmx.de> | 2020-11-01 19:49:55 +0100 |
---|---|---|
committer | Hung-Te Lin <hungte@chromium.org> | 2020-12-24 08:19:18 +0000 |
commit | 828f6b428e541363b386d579afc1740059d01739 (patch) | |
tree | 9045d11c331e60d3686c054b2c7ff756e391d768 /payloads/libpayload/drivers/i8042 | |
parent | f7faac151abfedca5f56d7587edf4e54030f8015 (diff) | |
download | coreboot-828f6b428e541363b386d579afc1740059d01739.tar.xz |
libpayload/keyboard: Avoid races around input draining
Draining the keyboard's buffer is only possible when the keyboard
port is enabled. We should also disable input scanning before, as
the buffer could be filled again with new keystrokes otherwise.
Change-Id: Ibac9c0d04880ff4a3efda5ac53da2f9731f6602c
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47085
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'payloads/libpayload/drivers/i8042')
-rw-r--r-- | payloads/libpayload/drivers/i8042/keyboard.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/payloads/libpayload/drivers/i8042/keyboard.c b/payloads/libpayload/drivers/i8042/keyboard.c index 46afdc03f0..9da3902168 100644 --- a/payloads/libpayload/drivers/i8042/keyboard.c +++ b/payloads/libpayload/drivers/i8042/keyboard.c @@ -374,11 +374,13 @@ void keyboard_init(void) if (!i8042_probe() || !i8042_has_ps2()) return; - keyboard_drain_input(); - /* Enable first PS/2 port */ i8042_cmd(I8042_CMD_EN_KB); + /* Disable scanning */ + keyboard_cmd(I8042_KBCMD_DEFAULT_DIS); + keyboard_drain_input(); + i8042_set_kbd_translation(false); if (set_scancode_set(2)) @@ -404,10 +406,9 @@ void keyboard_disconnect(void) if (!i8042_has_ps2()) return; - keyboard_drain_input(); - /* Disable scanning */ keyboard_cmd(I8042_KBCMD_DEFAULT_DIS); + keyboard_drain_input(); /* Send keyboard disconnect command */ i8042_cmd(I8042_CMD_DIS_KB); |