[coreboot-gerrit] Patch set updated for coreboot: mainboard/asus/kgpe-d16: Move memory test before IMD setup

Timothy Pearson (tpearson@raptorengineeringinc.com) gerrit at coreboot.org
Tue Jan 26 21:47:23 CET 2016


Timothy Pearson (tpearson at raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13151

-gerrit

commit 9177bbca852766ed46e17a8bf859615fb02042f2
Author: Timothy Pearson <tpearson at raptorengineeringinc.com>
Date:   Tue Nov 24 14:11:54 2015 -0600

    mainboard/asus/kgpe-d16: Move memory test before IMD setup
    
    Change-Id: Ic6fbf6688e4c2adc85e4eb9fa17e79d29dda58c0
    Signed-off-by: Timothy Pearson <tpearson at raptorengineeringinc.com>
---
 src/mainboard/asus/kgpe-d16/romstage.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mainboard/asus/kgpe-d16/romstage.c b/src/mainboard/asus/kgpe-d16/romstage.c
index c29ac5f..13af96f 100644
--- a/src/mainboard/asus/kgpe-d16/romstage.c
+++ b/src/mainboard/asus/kgpe-d16/romstage.c
@@ -541,6 +541,10 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
 	raminit_amdmct(sysinfo);
 	timestamp_add_now(TS_AFTER_INITRAM);
 
+#ifdef TEST_MEMORY
+	execute_memory_test();
+#endif
+
 #if !IS_ENABLED(CONFIG_LATE_CBMEM_INIT)
 	if (s3resume)
 		cbmem_initialize();
@@ -565,10 +569,6 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
 
 	timestamp_add_now(TS_END_ROMSTAGE);
 
-#ifdef TEST_MEMORY
-	execute_memory_test();
-#endif
-
 	post_cache_as_ram();	// BSP switch stack to ram, copy then execute LB.
 	post_code(0x43);	// Should never see this post code.
 }



More information about the coreboot-gerrit mailing list