[coreboot-gerrit] New patch to review for coreboot: model_fxx: Check FID&VID Support for the BSP (too)

Urja Rannikko (urjaman@gmail.com) gerrit at coreboot.org
Thu Nov 5 18:24:28 CET 2015


Urja Rannikko (urjaman at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12336

-gerrit

commit 91895108e1f05da82bb41dea950bb8c52a4d8e6b
Author: Urja Rannikko <urjaman at gmail.com>
Date:   Thu Nov 5 19:24:11 2015 +0200

    model_fxx: Check FID&VID Support for the BSP (too)
    
    Tested in the direction that now my Sempron 2800+ / K8V-X boots.
    
    Change-Id: I76196176635bb0f6ac284c8cb3b72212774fdfe4
    Signed-off-by: Urja Rannikko <urjaman at gmail.com>
---
 src/cpu/amd/model_fxx/fidvid.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/cpu/amd/model_fxx/fidvid.c b/src/cpu/amd/model_fxx/fidvid.c
index a005c46..be66378 100644
--- a/src/cpu/amd/model_fxx/fidvid.c
+++ b/src/cpu/amd/model_fxx/fidvid.c
@@ -536,6 +536,10 @@ static void init_fidvid_bsp(unsigned bsp_apicid)
 	unsigned i;
 #endif
 
+	if((cpuid_edx(0x80000007)&0x06)!=0x06) {
+		return; /* FID/VID change not supported */
+	}
+
 	msr_t msr;
 	msr = rdmsr(0xc0010042);
 	fid_max = ((msr.lo >> 16) & 0x3f);	/* max fid */



More information about the coreboot-gerrit mailing list