diff options
author | Andrew Wu <arw@dmp.com.tw> | 2013-10-09 18:57:20 +0800 |
---|---|---|
committer | Jonathan A. Kollasch <jakllsch@kollasch.net> | 2013-10-13 19:11:48 +0200 |
commit | 3fa1a13f62fe805a4592eaa551cd9d5713613f91 (patch) | |
tree | 26ad4bba4408193ee77c2f2d5c5de3008d2bde3b /src | |
parent | 7a00ca75d70ceb336e189851dca06b363139ed96 (diff) |
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>
Reviewed-on: http://review.coreboot.org/3957
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Jonathan A. Kollasch <jakllsch@kollasch.net>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/southbridge/dmp/vortex86ex/southbridge.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/southbridge/dmp/vortex86ex/southbridge.c b/src/southbridge/dmp/vortex86ex/southbridge.c index a22fe6a3b7..d8914c0a41 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 = { |