[coreboot-gerrit] Change in coreboot[master]: cpu/intel/fsp_model_206ax: [For Test] Use IA32_MCG_CAP to read num_banks

Elyes HAOUAS (Code Review) gerrit at coreboot.org
Thu Oct 11 17:12:46 CEST 2018


Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/29034


Change subject: cpu/intel/fsp_model_206ax: [For Test] Use IA32_MCG_CAP to read num_banks
......................................................................

cpu/intel/fsp_model_206ax: [For Test] Use IA32_MCG_CAP to read num_banks

Change-Id: I3f3428ae2b7747d93487de9b49c8c4f651ef093b
Signed-off-by: Elyes HAOUAS <ehaouas at noos.fr>
---
M src/cpu/intel/fsp_model_206ax/model_206ax_init.c
1 file changed, 4 insertions(+), 1 deletion(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/34/29034/1

diff --git a/src/cpu/intel/fsp_model_206ax/model_206ax_init.c b/src/cpu/intel/fsp_model_206ax/model_206ax_init.c
index 3eb07b0..b4d7030 100644
--- a/src/cpu/intel/fsp_model_206ax/model_206ax_init.c
+++ b/src/cpu/intel/fsp_model_206ax/model_206ax_init.c
@@ -241,10 +241,13 @@
 {
 	msr_t msr;
 	int i;
+	int num_banks;
 
+	msr = rdmsr(IA32_MCG_CAP);
+	num_banks = msr.lo & 0xff;
 	msr.lo = msr.hi = 0;
 	/* This should only be done on a cold boot */
-	for (i = 0; i < 7; i++)
+	for (i = 0; i < num_banks; i++)
 		wrmsr(IA32_MC0_STATUS + (i * 4), msr);
 }
 

-- 
To view, visit https://review.coreboot.org/29034
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3f3428ae2b7747d93487de9b49c8c4f651ef093b
Gerrit-Change-Number: 29034
Gerrit-PatchSet: 1
Gerrit-Owner: Elyes HAOUAS <ehaouas at noos.fr>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20181011/c0de668b/attachment.html>


More information about the coreboot-gerrit mailing list