[coreboot-gerrit] New patch to review for coreboot: amd/car: don't apply Fam10h Errata 343 fix to Fam0Fh

Jonathan A. Kollasch (jakllsch@kollasch.net) gerrit at coreboot.org
Tue Nov 24 17:16:21 CET 2015


Jonathan A. Kollasch (jakllsch at kollasch.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12528

-gerrit

commit 3b62f24e4e41f5ddac2c83afc362aca78c678503
Author: Jonathan A. Kollasch <jakllsch at kollasch.net>
Date:   Tue Nov 24 10:15:22 2015 -0600

    amd/car: don't apply Fam10h Errata 343 fix to Fam0Fh
    
    Change-Id: Id215d2822b78917939c28f7a922a94e02e5d15bf
    Signed-off-by: Jonathan A. Kollasch <jakllsch at kollasch.net>
---
 src/cpu/amd/car/post_cache_as_ram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cpu/amd/car/post_cache_as_ram.c b/src/cpu/amd/car/post_cache_as_ram.c
index 2c11777..c1218d1 100644
--- a/src/cpu/amd/car/post_cache_as_ram.c
+++ b/src/cpu/amd/car/post_cache_as_ram.c
@@ -121,7 +121,7 @@ void post_cache_as_ram(void)
 	prepare_romstage_ramstack(resume_backup_memory);
 
 	/* from here don't store more data in CAR */
-	if (family < 0x6f) {
+	if (family < 0x6f && family > 0xf) {
 		/* Family 10h or earlier */
 		vErrata343();
 	}



More information about the coreboot-gerrit mailing list