summaryrefslogtreecommitdiff
path: root/payloads/libpayload/drivers/keyboard.c
diff options
context:
space:
mode:
authorShawn Nematbakhsh <shawnn@chromium.org>2013-08-23 14:12:24 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2013-09-24 01:23:17 +0200
commitdd6c4ec1ed64f3d9803cca6eb53fa5049cacdd09 (patch)
treef439cf4d92459ae36a5d8cc9aa9579b289a398f4 /payloads/libpayload/drivers/keyboard.c
parent5a7e127cd429b101814cae0a1ca3fb5de912777c (diff)
downloadcoreboot-dd6c4ec1ed64f3d9803cca6eb53fa5049cacdd09.tar.xz
libpayload: Remove unnecessary keyboard mode setting code
keyboard_init attempts to read the existing mode register, set the 'XLATE' bit, and write it back. The implementation is buggy because the keyboard may be active at the time we read the mode, and we can misinterpret scancode data as the reply to our command. It leads to problems where the KB gets disabled in firmware. In fact, setting the 'XLATE' bit is completely unnecessary, even if we desire QEMU keyboard support. We already set this bit when we initialize the keyboard in pc_keyboard_init. Basically, this code does nothing (or worse), so just remove it. Change-Id: Iab23f03fa8bced74842c33a7d263de5f449bb983 Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: http://review.coreboot.org/3883 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/libpayload/drivers/keyboard.c')
-rw-r--r--payloads/libpayload/drivers/keyboard.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/payloads/libpayload/drivers/keyboard.c b/payloads/libpayload/drivers/keyboard.c
index cfb4d0bf49..e65f08534a 100644
--- a/payloads/libpayload/drivers/keyboard.c
+++ b/payloads/libpayload/drivers/keyboard.c
@@ -31,11 +31,6 @@
#include <libpayload-config.h>
#include <libpayload.h>
-#define I8042_CMD_READ_MODE 0x20
-#define I8042_CMD_WRITE_MODE 0x60
-
-#define I8042_MODE_XLATE 0x40
-
struct layout_maps {
const char *country;
const unsigned short map[4][0x57];
@@ -261,40 +256,6 @@ int keyboard_getchar(void)
return ret;
}
-static int keyboard_wait_read(void)
-{
- int retries = 10000;
-
- while(retries-- && !(inb(0x64) & 0x01))
- udelay(50);
-
- return (retries <= 0) ? -1 : 0;
-}
-
-static int keyboard_wait_write(void)
-{
- int retries = 10000;
-
- while(retries-- && (inb(0x64) & 0x02))
- udelay(50);
-
- return (retries <= 0) ? -1 : 0;
-}
-
-static unsigned char keyboard_get_mode(void)
-{
- outb(I8042_CMD_READ_MODE, 0x64);
- keyboard_wait_read();
- return inb(0x60);
-}
-
-static void keyboard_set_mode(unsigned char mode)
-{
- outb(I8042_CMD_WRITE_MODE, 0x64);
- keyboard_wait_write();
- outb(mode, 0x60);
-}
-
/**
* Set keyboard layout
* @param country string describing the keyboard layout language.
@@ -326,29 +287,16 @@ static struct console_input_driver cons = {
void keyboard_init(void)
{
- u8 mode;
map = &keyboard_layouts[0];
/* If 0x64 returns 0xff, then we have no keyboard
* controller */
-
if (inb(0x64) == 0xFF)
return;
/* Empty keyboard buffer */
while (keyboard_havechar()) keyboard_getchar();
- /* Read the current mode */
- mode = keyboard_get_mode();
-
- /* Turn on scancode translate mode so that we can
- use the scancode set 1 tables */
-
- mode |= I8042_MODE_XLATE;
-
- /* Write the new mode */
- keyboard_set_mode(mode);
-
console_add_input_driver(&cons);
}