Andrew Wu (arw@dmp.com.tw) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3957
-gerrit
commit 1e744efd87cb47177aea33b743cf92e18c7a9293 Author: Andrew Wu arw@dmp.com.tw Date: Wed Oct 9 18:57:20 2013 +0800
dmp/vortex86ex: Initialize PS/2 keyboard.
Call pc_keyboard_init function in southbridge. It makes PS/2 keyboard work in coreinfo payload.
Change-Id: Idb79f87b09eeeade94e966fb8769dec7578e2cf5 Signed-off-by: Andrew Wu arw@dmp.com.tw --- src/southbridge/dmp/vortex86ex/southbridge.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/southbridge/dmp/vortex86ex/southbridge.c b/src/southbridge/dmp/vortex86ex/southbridge.c index a22fe6a..d8914c0 100644 --- a/src/southbridge/dmp/vortex86ex/southbridge.c +++ b/src/southbridge/dmp/vortex86ex/southbridge.c @@ -23,6 +23,7 @@ #include <device/pci_ops.h> #include <device/pci_ids.h> #include <pc80/mc146818rtc.h> +#include <pc80/keyboard.h> #include <string.h> #include "arch/io.h" #include "chip.h" @@ -570,6 +571,7 @@ static void southbridge_init(struct device *dev)
fix_cmos_rtc_time(); rtc_init(0); + pc_keyboard_init(0); }
static struct device_operations vortex_sb_ops = {