Tim Wawrzynczak has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/52062 )
Change subject: mb/google/brya: Move early GPIO config earlier ......................................................................
mb/google/brya: Move early GPIO config earlier
The recent refactor of console UART GPIOs to mainboard's bootblock caused brya boards to lose the first ~5 lines of the logs from bootblock. Rename bootblock_mainboard_init to bootblock_mainboard_early_init so that the UART pads will be ready by the time the console is initialized.
BUG=b:184319828 TEST=First lines from report_platform.c are now seen in UART output
Signed-off-by: Tim Wawrzynczak twawrzynczak@chromium.org Change-Id: I4a4fadcc091bf9b1c9894f9afaf42baff63c73a3 --- M src/mainboard/google/brya/bootblock.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/52062/1
diff --git a/src/mainboard/google/brya/bootblock.c b/src/mainboard/google/brya/bootblock.c index 817dd0f..1815615 100644 --- a/src/mainboard/google/brya/bootblock.c +++ b/src/mainboard/google/brya/bootblock.c @@ -3,7 +3,7 @@ #include <baseboard/variants.h> #include <bootblock_common.h>
-void bootblock_mainboard_init(void) +void bootblock_mainboard_early_init(void) { const struct pad_config *pads; size_t num;