[coreboot-gerrit] New patch to review for coreboot: soc/apollolake: Call into FSP memory init

Andrey Petrov (andrey.petrov@intel.com) gerrit at coreboot.org
Sun Jan 24 03:33:13 CET 2016


Andrey Petrov (andrey.petrov at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13340

-gerrit

commit ce25c5af20b37957e727aa2cc1eb474682a7126b
Author: Andrey Petrov <andrey.petrov at intel.com>
Date:   Wed Oct 28 13:02:59 2015 -0700

    soc/apollolake: Call into FSP memory init
    
    This is suficient to initialize memory as long as the UPD in the FSP
    binary matched the platform. A mechanism to provide platform-specific
    UPD data is not implemented in this patch.
    
    Change-Id: Ib500095ed5b73174f74e72a372529b095c4f8411
    Signed-off-by: Andrey Petrov <andrey.petrov at intel.com>
---
 src/soc/intel/apollolake/romstage/romstage.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/soc/intel/apollolake/romstage/romstage.c b/src/soc/intel/apollolake/romstage/romstage.c
index a0d582d..57e372e 100644
--- a/src/soc/intel/apollolake/romstage/romstage.c
+++ b/src/soc/intel/apollolake/romstage/romstage.c
@@ -15,6 +15,7 @@
 #include <console/console.h>
 #include <cpu/x86/msr.h>
 #include <device/pci_def.h>
+#include <fsp/api.h>
 #include <soc/iomap.h>
 #include <soc/romstage.h>
 #include <soc/uart.h>
@@ -62,6 +63,8 @@ asmlinkage void romstage_entry(void)
 
 	soc_early_romstage_init();
 
+	fsp_memory_init();
+
 	/* This function must not return */
 	while(1)
 		;



More information about the coreboot-gerrit mailing list