[coreboot-gerrit] Change in coreboot[master]: soc/amd/stoneyridge: Add bootblock_fch_init

Raul Rangel (Code Review) gerrit at coreboot.org
Mon Aug 13 18:39:10 CEST 2018


Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/28059


Change subject: soc/amd/stoneyridge: Add bootblock_fch_init
......................................................................

soc/amd/stoneyridge: Add bootblock_fch_init

Add a method in bootblock that can be used for printing registers.

BUG=none
TEST=compiled grunt

Change-Id: I8dff30e589761fbad92cfc2709546dba169993d8
Signed-off-by: Raul E Rangel <rrangel at chromium.org>
---
M src/soc/amd/stoneyridge/bootblock/bootblock.c
M src/soc/amd/stoneyridge/include/soc/southbridge.h
M src/soc/amd/stoneyridge/southbridge.c
3 files changed, 7 insertions(+), 0 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/28059/1

diff --git a/src/soc/amd/stoneyridge/bootblock/bootblock.c b/src/soc/amd/stoneyridge/bootblock/bootblock.c
index 7b2c420..c2440b0 100644
--- a/src/soc/amd/stoneyridge/bootblock/bootblock.c
+++ b/src/soc/amd/stoneyridge/bootblock/bootblock.c
@@ -106,6 +106,8 @@
 	u32 val = cpuid_eax(1);
 	printk(BIOS_DEBUG, "Family_Model: %08x\n", val);
 
+	bootblock_fch_init();
+
 	/* Initialize any early i2c buses. */
 	i2c_soc_early_init();
 }
diff --git a/src/soc/amd/stoneyridge/include/soc/southbridge.h b/src/soc/amd/stoneyridge/include/soc/southbridge.h
index 64b4b46..c6f7791 100644
--- a/src/soc/amd/stoneyridge/include/soc/southbridge.h
+++ b/src/soc/amd/stoneyridge/include/soc/southbridge.h
@@ -449,6 +449,7 @@
 void xhci_pm_write32(uint8_t reg, uint32_t value);
 uint32_t xhci_pm_read32(uint8_t reg);
 void bootblock_fch_early_init(void);
+void bootblock_fch_init(void);
 /**
  * @brief Save the UMA bize returned by AGESA
  *
diff --git a/src/soc/amd/stoneyridge/southbridge.c b/src/soc/amd/stoneyridge/southbridge.c
index a6219b4..c4b8d04 100644
--- a/src/soc/amd/stoneyridge/southbridge.c
+++ b/src/soc/amd/stoneyridge/southbridge.c
@@ -621,6 +621,7 @@
 	}
 }
 
+/* Before console init */
 void bootblock_fch_early_init(void)
 {
 	int reboot = 0;
@@ -643,6 +644,9 @@
 	enable_aoac_devices();
 }
 
+/* After console init */
+void bootblock_fch_init(void) {}
+
 void sb_enable(device_t dev)
 {
 	printk(BIOS_DEBUG, "%s\n", __func__);

-- 
To view, visit https://review.coreboot.org/28059
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I8dff30e589761fbad92cfc2709546dba169993d8
Gerrit-Change-Number: 28059
Gerrit-PatchSet: 1
Gerrit-Owner: Raul Rangel <rrangel at chromium.org>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180813/5a2c64f4/attachment.html>


More information about the coreboot-gerrit mailing list