- Refactor the pc keyboard code so it will timeout if the hardware

is not working instead of haning forever.


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1779 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman 2004-11-11 11:56:00 +00:00
parent 69afe2822a
commit 029517c77a

View File

@ -3,21 +3,45 @@
#include <device/device.h> #include <device/device.h>
#include <arch/io.h> #include <arch/io.h>
static int kbd_empty_input_buffer(void)
{
unsigned long timeout;
for(timeout = 1000000; timeout && (inb(0x64) & 0x02); timeout--) {
post_code(0);
}
return !!timeout;
}
static int kbd_empty_output_buffer(void)
{
unsigned long timeout;
for(timeout = 1000000; timeout && ((inb(0x64) & 0x01) == 0); timeout--) {
post_code(0);
}
return !!timeout;
}
/* much better keyboard init courtesy ollie@sis.com.tw /* much better keyboard init courtesy ollie@sis.com.tw
TODO: Typematic Setting, the keyboard is too slow for me */ TODO: Typematic Setting, the keyboard is too slow for me */
static void pc_keyboard_init(struct pc_keyboard *keyboard) static void pc_keyboard_init(struct pc_keyboard *keyboard)
{ {
volatile unsigned char regval; unsigned char regval;
unsigned long timeout;
/* send cmd = 0xAA, self test 8042 */ /* send cmd = 0xAA, self test 8042 */
outb(0xaa, 0x64); outb(0xaa, 0x64);
/* empty input buffer or any other command/data will be lost */ /* empty input buffer or any other command/data will be lost */
while ((inb(0x64) & 0x02)) if (!kbd_empty_input_buffer()) {
post_code(0); printk_err("Keyboard input buffer would not empty\n");
return;
}
/* empty output buffer or any other command/data will be lost */ /* empty output buffer or any other command/data will be lost */
while ((inb(0x64) & 0x01) == 0) if (!kbd_empty_output_buffer()) {
post_code(1); printk_err("Keyboard output buffer would not empty\n");
return;
}
/* read self-test result, 0x55 should be returned form 0x60 */ /* read self-test result, 0x55 should be returned form 0x60 */
if ((regval = inb(0x60) != 0x55)) if ((regval = inb(0x60) != 0x55))
@ -25,29 +49,25 @@ static void pc_keyboard_init(struct pc_keyboard *keyboard)
/* enable keyboard interface */ /* enable keyboard interface */
outb(0x60, 0x64); outb(0x60, 0x64);
while ((inb(0x64) & 0x02)) kbd_empty_input_buffer();
post_code(2);
/* send cmd: enable IRQ 1 */ /* send cmd: enable IRQ 1 */
outb(0x61, 0x60); outb(0x61, 0x60);
while ((inb(0x64) & 0x02)) kbd_empty_input_buffer();
post_code(3);
/* reset kerboard and self test (keyboard side) */ /* reset kerboard and self test (keyboard side) */
outb(0xff, 0x60); outb(0xff, 0x60);
/* empty inut bufferm or any other command/data will be lost */ /* empty inut bufferm or any other command/data will be lost */
while ((inb(0x64) & 0x02)) kbd_empty_input_buffer();
post_code(4);
/* empty output buffer or any other command/data will be lost */ /* empty output buffer or any other command/data will be lost */
while ((inb(0x64) & 0x01) == 0) kbd_empty_output_buffer();
post_code(5);
if ((regval = inb(0x60) != 0xfa)) if ((regval = inb(0x60) != 0xfa))
return; return;
while ((inb(0x64) & 0x01) == 0) kbd_empty_output_buffer();
post_code(6);
if ((regval = inb(0x60) != 0xaa)) if ((regval = inb(0x60) != 0xaa))
return; return;
} }