From f6b7fd9db3251d5581645e3ad7bd645ac8f666dc Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Tue, 21 May 2013 10:11:07 -0700 Subject: [PATCH] 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. BUG=chrome-os-partner:19035 BRANCH=none TEST=manual: ensure system does not shut down when booting after lidclose/lidopen sequence on EC console. Change-Id: I5ef563f7cedc8977410cc3f69e2655fc4e14c9eb Signed-off-by: Duncan Laurie Reviewed-on: https://gerrit.chromium.org/gerrit/56055 Reviewed-by: Aaron Durbin --- src/mainboard/google/slippy/mainboard.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/mainboard/google/slippy/mainboard.c b/src/mainboard/google/slippy/mainboard.c index c91be1958c..c13d0bbd1c 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);