[coreboot] New patch to review for coreboot: 95aad86 Fixes Fam10/SR5650 cpu not recognized message.

Marc Jones (marcj303@gmail.com) gerrit at coreboot.org
Tue Feb 14 01:21:34 CET 2012


Marc Jones (marcj303 at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/633

-gerrit

commit 95aad867212c87fde722934a536e14ca78f0c9f9
Author: Dave Frodin <dave.frodin at se-eng.com>
Date:   Thu Feb 2 15:08:22 2012 -0700

    Fixes Fam10/SR5650 cpu not recognized message.
    
    Extend the Family10 revisions checked byt the printk message.
    
    Change-Id: Ia94daeefb1aabfb128c577b1e0aa52cf63d5cf44
    Signed-off-by: Marc Jones <marcj303 at gmail.com>
---
 src/southbridge/amd/sr5650/early_setup.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/southbridge/amd/sr5650/early_setup.c b/src/southbridge/amd/sr5650/early_setup.c
index 50f836e..32bdd7f 100644
--- a/src/southbridge/amd/sr5650/early_setup.c
+++ b/src/southbridge/amd/sr5650/early_setup.c
@@ -91,7 +91,7 @@ static void get_cpu_rev(void)
 		printk(BIOS_INFO, "CPU Rev is K8_G0.\n");
 	else if (eax <= 0x100000)
 		printk(BIOS_INFO, "CPU Rev is K8_G1.\n");
-	else if (eax <= 0x100f00)
+	else if (eax <= 0x100fa0)
 		printk(BIOS_INFO, "CPU Rev is Fam 10.\n");
 	else
 		printk(BIOS_INFO, "CPU Rev is not recognized.\n");




More information about the coreboot mailing list