From cfe0235c6fb5574b54139c6e7bd31da974e4ef23 Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Tue, 21 May 2013 10:11:07 -0700 Subject: slippy: Run EC init as part of mainboard init step This will log and clear EC events so they do not take effect when the SMI handler is enabled. Change-Id: I5ef563f7cedc8977410cc3f69e2655fc4e14c9eb Signed-off-by: Duncan Laurie Reviewed-on: https://gerrit.chromium.org/gerrit/56055 Reviewed-by: Aaron Durbin Reviewed-on: http://review.coreboot.org/4178 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc --- src/mainboard/google/slippy/mainboard.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/mainboard') diff --git a/src/mainboard/google/slippy/mainboard.c b/src/mainboard/google/slippy/mainboard.c index 8efe77b657..f8d164886e 100644 --- a/src/mainboard/google/slippy/mainboard.c +++ b/src/mainboard/google/slippy/mainboard.c @@ -35,6 +35,7 @@ #include #include "hda_verb.h" #include +#include "ec.h" void mainboard_suspend_resume(void) { @@ -139,11 +140,17 @@ static void verb_setup(void) cim_verb_data_size = sizeof(mainboard_cim_verb_data); } +static void mainboard_init(device_t dev) +{ + slippy_ec_init(); +} + // mainboard_enable is executed as first thing after // enumerate_buses(). static void mainboard_enable(device_t dev) { + dev->ops->init = mainboard_init; #if CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN /* Install custom int15 handler for VGA OPROM */ mainboard_interrupt_handlers(0x15, &int15_handler); -- cgit v1.2.3