From c06648b8c1f33e0f9d2356edc740e7661b7eb4f2 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Fri, 3 Jul 2020 14:03:16 +0200 Subject: mb/google/beltino: Move Super I/O init to bootblock MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also remove an unneeded `pch_enable_lpc` function call. Change-Id: I83158a655670d4e6cd91f6bf3332d1b6f9f655d1 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/43104 Tested-by: build bot (Jenkins) Reviewed-by: Tristan Corrick Reviewed-by: Michael Niewöhner Reviewed-by: Nico Huber Reviewed-by: Matt DeVillier --- src/mainboard/google/beltino/bootblock.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/mainboard/google/beltino/bootblock.c (limited to 'src/mainboard/google/beltino/bootblock.c') diff --git a/src/mainboard/google/beltino/bootblock.c b/src/mainboard/google/beltino/bootblock.c new file mode 100644 index 0000000000..c52059bcdc --- /dev/null +++ b/src/mainboard/google/beltino/bootblock.c @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include +#include +#include +#include +#include "onboard.h" + +void mainboard_config_superio(void) +{ + /* Early SuperIO setup */ + ite_kill_watchdog(IT8772F_GPIO_DEV); + it8772f_ac_resume_southbridge(IT8772F_SUPERIO_DEV); + ite_enable_serial(IT8772F_SERIAL_DEV, CONFIG_TTYS0_BASE); + + /* Turn on Power LED */ + set_power_led(LED_ON); +} -- cgit v1.2.3