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@gmail.com> Reviewed-on: http://review.coreboot.org/633 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
e42d639718
commit
da52aed20d
|
@ -91,7 +91,7 @@ static void get_cpu_rev(void)
|
||||||
printk(BIOS_INFO, "CPU Rev is K8_G0.\n");
|
printk(BIOS_INFO, "CPU Rev is K8_G0.\n");
|
||||||
else if (eax <= 0x100000)
|
else if (eax <= 0x100000)
|
||||||
printk(BIOS_INFO, "CPU Rev is K8_G1.\n");
|
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");
|
printk(BIOS_INFO, "CPU Rev is Fam 10.\n");
|
||||||
else
|
else
|
||||||
printk(BIOS_INFO, "CPU Rev is not recognized.\n");
|
printk(BIOS_INFO, "CPU Rev is not recognized.\n");
|
||||||
|
|
Loading…
Reference in New Issue