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>
This commit is contained in:
parent
7a00ca75d7
commit
3fa1a13f62
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue