[coreboot-gerrit] New patch to review for coreboot: c12a381 baytrail: Configure MSR for 2-core and 4-core P-state configutation

Marc Jones (marc.jones@se-eng.com) gerrit at coreboot.org
Tue Oct 28 00:05:49 CET 2014


Marc Jones (marc.jones at se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7213

-gerrit

commit c12a38117dc1f68e82863d78a21cb8385a354d38
Author: Duncan Laurie <dlaurie at chromium.org>
Date:   Fri Mar 28 10:52:13 2014 -0700

    baytrail: Configure MSR for 2-core and 4-core P-state configutation
    
    Suggested settings to try for performace regression:
    
    2-core systems:
    - MSR_PMG_CST_CONFIG_CONTROL clear bit 11 (SINGLE_PCTL)
    - MSR_POWER_MISC clear bit 2,3
    - \_PR.CPUx._PSD coordination set to 0xFE (HW_ALL)
    
    4-core systems:
    - MSR_PMG_CST_CONFIG_CONTROL clear bit 11 (SINGLE_PCTL)
    - MSR_POWER_MISC clear bit 2,3
    - \_PR.CPUx._PSD coordination set to 0xFC (SW_ALL)
    
    BUG=chrome-os-partner:26211
    BRANCH=baytrail
    TEST=emerge-rambi chromeos-coreboot-rambi
    
    Change-Id: Ib68a86525204ae47a820c269257a7b8df9300a6a
    Signed-off-by: Duncan Laurie <dlaurie at chromium.org>
    Reviewed-on: https://chromium-review.googlesource.com/192573
    Tested-by: Shawn Nematbakhsh <shawnn at chromium.org>
    Commit-Queue: Shawn Nematbakhsh <shawnn at chromium.org>
    (cherry picked from commit 8c8c0be0000043610eaa56926eff978f352819b8)
    Signed-off-by: Marc Jones <marc.jones at se-eng.com>
---
 src/soc/intel/baytrail/acpi.c |  3 +--
 src/soc/intel/baytrail/cpu.c  | 32 ++++----------------------------
 2 files changed, 5 insertions(+), 30 deletions(-)

diff --git a/src/soc/intel/baytrail/acpi.c b/src/soc/intel/baytrail/acpi.c
index 67e8c0c..aae0c99 100644
--- a/src/soc/intel/baytrail/acpi.c
+++ b/src/soc/intel/baytrail/acpi.c
@@ -354,8 +354,7 @@ static int generate_P_state_entries(int core, int cores_per_package)
 	vid_min = pattrs->iacore_vids[IACORE_LFM];
 
 	/* Set P-states coordination type based on MSR disable bit */
-	msr = rdmsr(MSR_PMG_CST_CONFIG_CONTROL);
-	coord_type = (msr.lo & SINGLE_PCTL) ? SW_ALL : HW_ALL;
+	coord_type = (pattrs->num_cpus > 2) ? SW_ALL : HW_ALL;
 
 	/* Max Non-Turbo Frequency */
 	clock_max = (ratio_max * pattrs->bclk_khz) / 1000;
diff --git a/src/soc/intel/baytrail/cpu.c b/src/soc/intel/baytrail/cpu.c
index 97d1f04..e8f95ae 100644
--- a/src/soc/intel/baytrail/cpu.c
+++ b/src/soc/intel/baytrail/cpu.c
@@ -68,37 +68,16 @@ const struct reg_script package_msr_script[] = {
 
 /* Core level MSRs */
 const struct reg_script core_msr_script[] = {
-	/* Dynamic L2 shrink enable and threshold */
-	REG_MSR_RMW(MSR_PMG_CST_CONFIG_CONTROL, ~0x3f000f, 0xe0008),
+	/* Dynamic L2 shrink enable and threshold, clear SINGLE_PCTL bit 11 */
+	REG_MSR_RMW(MSR_PMG_CST_CONFIG_CONTROL, ~0x3f080f, 0xe0008),
+	REG_MSR_RMW(MSR_POWER_MISC,
+		    ~(ENABLE_ULFM_AUTOCM_MASK | ENABLE_INDP_AUTOCM_MASK), 0),
 	/* Disable C1E */
 	REG_MSR_RMW(MSR_POWER_CTL, ~0x2, 0),
 	REG_MSR_OR(MSR_POWER_MISC, 0x44),
 	REG_SCRIPT_END
 };
 
-/* Enable hardware coordination for 2-core, disable for 4-core */
-static void baytrail_set_pstate_coord(void)
-{
-	const struct pattrs *pattrs = pattrs_get();
-	msr_t pmg_cst = rdmsr(MSR_PMG_CST_CONFIG_CONTROL);
-	msr_t power_misc = rdmsr(MSR_POWER_MISC);
-
-	if (pattrs->num_cpus > 2) {
-		/* Disable hardware coordination */
-		pmg_cst.lo |= SINGLE_PCTL;
-		power_misc.lo &= ~(ENABLE_ULFM_AUTOCM_MASK |
-				   ENABLE_INDP_AUTOCM_MASK);
-	} else {
-		/* Enable hardware coordination */
-		pmg_cst.lo &= ~SINGLE_PCTL;
-		power_misc.lo |= (ENABLE_ULFM_AUTOCM_MASK |
-				  ENABLE_INDP_AUTOCM_MASK);
-	}
-
-	wrmsr(MSR_PMG_CST_CONFIG_CONTROL, pmg_cst);
-	wrmsr(MSR_POWER_MISC, power_misc);
-}
-
 void baytrail_init_cpus(device_t dev)
 {
 	struct bus *cpu_bus = dev->link_list;
@@ -156,9 +135,6 @@ static void baytrail_core_init(device_t cpu)
 	/* Set core MSRs */
 	reg_script_run(core_msr_script);
 
-	/* Set P-State coordination */
-	baytrail_set_pstate_coord();
-
 	/* Set this core to max frequency ratio */
 	set_max_freq();
 }



More information about the coreboot-gerrit mailing list