aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2021-10-01 20:59:25 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-10-11 15:16:28 +0000
commit8b17cb8a8c92a8cd13d2a75c5c5a1b0fe5e1191f (patch)
tree19d63d0fb2b8b160ff7064315f19ea976c64988b
parentc3a9e5371453c9ce713ce6625105bde66ff28d76 (diff)
mb/google/guybrush: drop printk in bootblock_mainboard_early_init
bootblock_mainboard_early_init gets called before console_init. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ia5a1da336e8dfc451177a5319a656c407c9fef7d Reviewed-on: https://review.coreboot.org/c/coreboot/+/58077 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
-rw-r--r--src/mainboard/google/guybrush/bootblock.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/guybrush/bootblock.c b/src/mainboard/google/guybrush/bootblock.c
index 9c9fce7e8d..040bc52441 100644
--- a/src/mainboard/google/guybrush/bootblock.c
+++ b/src/mainboard/google/guybrush/bootblock.c
@@ -55,7 +55,8 @@ void bootblock_mainboard_early_init(void)
* the Fibocom 350 PCIe init
*/
stopwatch_init_usecs_expire(&pcie_init_timeout_sw, FC350_PCIE_INIT_DELAY_US);
- printk(BIOS_DEBUG, "Bootblock configure eSPI\n");
+
+ /* Early eSPI interface configuration */
dword = pm_read32(PM_SPI_PAD_PU_PD);
dword |= PM_ESPI_CS_USE_DATA2;