The keyboard driver mixed up the key press/release events for the
authorStefan Reinauer <stepan@coresystems.de>
Tue, 2 Sep 2008 09:35:43 +0000 (09:35 +0000)
committerStefan Reinauer <stepan@openbios.org>
Tue, 2 Sep 2008 09:35:43 +0000 (09:35 +0000)
special keys.

Patrick Georgi explained:
The |0x80 codes are "break codes", that means, codes that are emitted
when the key transitions from pressed to non-pressed, so the modifier
was always in the wrong state, as soon as you pressed shift for the
first time.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3558 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

payloads/libpayload/drivers/keyboard.c

index 970dec94c7a3d2e06dcf466c99dd33a2ce6c7450..96285d0d15a7a2fcb6e4afb60ae32726409894b9 100644 (file)
@@ -79,7 +79,7 @@ unsigned char keyboard_get_scancode(void)
 
 int keyboard_getchar(void)
 {
-       static int modifier;
+       static int modifier = 0;
        unsigned char ch;
        int shift;
        int ret = 0;
@@ -91,17 +91,17 @@ int keyboard_getchar(void)
        switch (ch) {
        case 0x36:
        case 0x2a:
-               modifier &= ~MOD_SHIFT;
+               modifier |= MOD_SHIFT;
                break;
        case 0x80 | 0x36:
        case 0x80 | 0x2a:
-               modifier |= MOD_SHIFT;
+               modifier &= ~MOD_SHIFT;
                break;
        case 0x1d:
-               modifier &= ~MOD_CTRL;
+               modifier |= MOD_CTRL;
                break;
        case 0x80 | 0x1d:
-               modifier |= MOD_CTRL;
+               modifier &= ~MOD_CTRL;
                break;
        case 0x3a:
                if (modifier & MOD_CAPSLOCK)