From 4bf70523b33757b539405cbe8413029980ec2dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Niew=C3=B6hner?= Date: Mon, 21 Dec 2020 03:46:58 +0100 Subject: mb/google/drallion: do early pad configuration in early bootstage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Do early pad configuration in early bootblock before console init, to make the console work as early as possible. The board does not do any other gpio configuration in bootblock, so this should not influence behaviour in a negative way (e.g. breaking overrides). Change-Id: I7dcf88d61c305f0598a0a79f8cfa46ef5009564b Signed-off-by: Michael Niewöhner Reviewed-on: https://review.coreboot.org/c/coreboot/+/49419 Tested-by: build bot (Jenkins) Reviewed-by: Felix Singer --- src/mainboard/google/drallion/bootblock.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mainboard') diff --git a/src/mainboard/google/drallion/bootblock.c b/src/mainboard/google/drallion/bootblock.c index 5bd5d029fd..2419a0084f 100644 --- a/src/mainboard/google/drallion/bootblock.c +++ b/src/mainboard/google/drallion/bootblock.c @@ -5,7 +5,7 @@ #include #include -static void early_config_gpio(void) +void bootblock_mainboard_early_init(void) { const struct pad_config *early_gpio_table; size_t num_gpios = 0; @@ -16,6 +16,5 @@ static void early_config_gpio(void) void bootblock_mainboard_init(void) { - early_config_gpio(); wilco_ec_early_init(); } -- cgit v1.2.3