xeon_sp/cpx: Enable ACPI P-state support
Implement ACPI P-state support to enable driver acpi_cpufreq. This patch leverages code from the Skylake project. Tested=On OCP Delta Lake cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies 1501000 1500000 1400000 1300000 1200000 1100000 1000000 900000 800000 Change-Id: I3bf3ad7f82fbf196a2134a8138b10176fc8be2cc Signed-off-by: Jingle Hsu <jingle_hsu@wiwynn.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44404 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Johnny Lin <Johnny_Lin@wiwynn.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
7749c34a11
commit
a41b12cd7b
@ -72,6 +72,10 @@ config FSP_TEMP_RAM_SIZE
|
|||||||
config SOC_INTEL_COMMON_BLOCK_P2SB
|
config SOC_INTEL_COMMON_BLOCK_P2SB
|
||||||
def_bool y
|
def_bool y
|
||||||
|
|
||||||
|
config CPU_BCLK_MHZ
|
||||||
|
int
|
||||||
|
default 100
|
||||||
|
|
||||||
select CACHE_MRC_SETTINGS
|
select CACHE_MRC_SETTINGS
|
||||||
|
|
||||||
# CPX-SP has 2 IMCs, 3 channels per IMC, 2 DIMMs per channel
|
# CPX-SP has 2 IMCs, 3 channels per IMC, 2 DIMMs per channel
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <cf9_reset.h>
|
#include <cf9_reset.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
|
#include <cpu/intel/turbo.h>
|
||||||
#include <cpu/x86/smm.h>
|
#include <cpu/x86/smm.h>
|
||||||
#include <device/pci.h>
|
#include <device/pci.h>
|
||||||
#include <intelblocks/acpi.h>
|
#include <intelblocks/acpi.h>
|
||||||
@ -16,6 +17,7 @@
|
|||||||
#include <soc/acpi.h>
|
#include <soc/acpi.h>
|
||||||
#include <soc/cpu.h>
|
#include <soc/cpu.h>
|
||||||
#include <soc/iomap.h>
|
#include <soc/iomap.h>
|
||||||
|
#include <soc/msr.h>
|
||||||
#include <soc/nvs.h>
|
#include <soc/nvs.h>
|
||||||
#include <soc/pci_devs.h>
|
#include <soc/pci_devs.h>
|
||||||
#include <soc/pm.h>
|
#include <soc/pm.h>
|
||||||
@ -231,6 +233,133 @@ unsigned long acpi_fill_madt(unsigned long current)
|
|||||||
return acpi_madt_irq_overrides(current);
|
return acpi_madt_irq_overrides(current);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int calculate_power(int tdp, int p1_ratio, int ratio)
|
||||||
|
{
|
||||||
|
u32 m;
|
||||||
|
u32 power;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* M = ((1.1 - ((p1_ratio - ratio) * 0.00625)) / 1.1) ^ 2
|
||||||
|
*
|
||||||
|
* Power = (ratio / p1_ratio) * m * tdp
|
||||||
|
*/
|
||||||
|
|
||||||
|
m = (110000 - ((p1_ratio - ratio) * 625)) / 11;
|
||||||
|
m = (m * m) / 1000;
|
||||||
|
|
||||||
|
power = ((ratio * 100000 / p1_ratio) / 100);
|
||||||
|
power *= (m / 100) * (tdp / 1000);
|
||||||
|
power /= 1000;
|
||||||
|
|
||||||
|
return (int)power;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void cpx_generate_p_state_entries(int core, int cores_per_package)
|
||||||
|
{
|
||||||
|
int ratio_min, ratio_max, ratio_turbo, ratio_step;
|
||||||
|
int coord_type, power_max, power_unit, num_entries;
|
||||||
|
int ratio, power, clock, clock_max;
|
||||||
|
msr_t msr;
|
||||||
|
|
||||||
|
/* Determine P-state coordination type from MISC_PWR_MGMT[0] */
|
||||||
|
msr = rdmsr(MSR_MISC_PWR_MGMT);
|
||||||
|
if (msr.lo & MISC_PWR_MGMT_EIST_HW_DIS)
|
||||||
|
coord_type = SW_ANY;
|
||||||
|
else
|
||||||
|
coord_type = HW_ALL;
|
||||||
|
|
||||||
|
/* Get bus ratio limits and calculate clock speeds */
|
||||||
|
msr = rdmsr(MSR_PLATFORM_INFO);
|
||||||
|
ratio_min = (msr.hi >> (40-32)) & 0xff; /* Max Efficiency Ratio */
|
||||||
|
|
||||||
|
/* Determine if this CPU has configurable TDP */
|
||||||
|
if (cpu_config_tdp_levels()) {
|
||||||
|
/* Set max ratio to nominal TDP ratio */
|
||||||
|
msr = rdmsr(MSR_CONFIG_TDP_NOMINAL);
|
||||||
|
ratio_max = msr.lo & 0xff;
|
||||||
|
} else {
|
||||||
|
/* Max Non-Turbo Ratio */
|
||||||
|
ratio_max = (msr.lo >> 8) & 0xff;
|
||||||
|
}
|
||||||
|
clock_max = ratio_max * CONFIG_CPU_BCLK_MHZ;
|
||||||
|
|
||||||
|
/* Calculate CPU TDP in mW */
|
||||||
|
msr = rdmsr(MSR_PKG_POWER_SKU_UNIT);
|
||||||
|
power_unit = 2 << ((msr.lo & 0xf) - 1);
|
||||||
|
msr = rdmsr(MSR_PKG_POWER_SKU);
|
||||||
|
power_max = ((msr.lo & 0x7fff) / power_unit) * 1000;
|
||||||
|
|
||||||
|
/* Write _PCT indicating use of FFixedHW */
|
||||||
|
acpigen_write_empty_PCT();
|
||||||
|
|
||||||
|
/* Write _PPC with no limit on supported P-state */
|
||||||
|
acpigen_write_PPC_NVS();
|
||||||
|
|
||||||
|
/* Write PSD indicating configured coordination type */
|
||||||
|
acpigen_write_PSD_package(core, 1, coord_type);
|
||||||
|
|
||||||
|
/* Add P-state entries in _PSS table */
|
||||||
|
acpigen_write_name("_PSS");
|
||||||
|
|
||||||
|
/* Determine ratio points */
|
||||||
|
ratio_step = PSS_RATIO_STEP;
|
||||||
|
num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
|
||||||
|
if (num_entries > PSS_MAX_ENTRIES) {
|
||||||
|
ratio_step += 1;
|
||||||
|
num_entries = ((ratio_max - ratio_min) / ratio_step) + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* P[T] is Turbo state if enabled */
|
||||||
|
if (get_turbo_state() == TURBO_ENABLED) {
|
||||||
|
/* _PSS package count including Turbo */
|
||||||
|
acpigen_write_package(num_entries + 2);
|
||||||
|
|
||||||
|
msr = rdmsr(MSR_TURBO_RATIO_LIMIT);
|
||||||
|
ratio_turbo = msr.lo & 0xff;
|
||||||
|
|
||||||
|
/* Add entry for Turbo ratio */
|
||||||
|
acpigen_write_PSS_package(
|
||||||
|
clock_max + 1, /* MHz */
|
||||||
|
power_max, /* mW */
|
||||||
|
PSS_LATENCY_TRANSITION, /* lat1 */
|
||||||
|
PSS_LATENCY_BUSMASTER, /* lat2 */
|
||||||
|
ratio_turbo << 8, /* control */
|
||||||
|
ratio_turbo << 8); /* status */
|
||||||
|
} else {
|
||||||
|
/* _PSS package count without Turbo */
|
||||||
|
acpigen_write_package(num_entries + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* First regular entry is max non-turbo ratio */
|
||||||
|
acpigen_write_PSS_package(
|
||||||
|
clock_max, /* MHz */
|
||||||
|
power_max, /* mW */
|
||||||
|
PSS_LATENCY_TRANSITION, /* lat1 */
|
||||||
|
PSS_LATENCY_BUSMASTER, /* lat2 */
|
||||||
|
ratio_max << 8, /* control */
|
||||||
|
ratio_max << 8); /* status */
|
||||||
|
|
||||||
|
/* Generate the remaining entries */
|
||||||
|
for (ratio = ratio_min + ((num_entries - 1) * ratio_step);
|
||||||
|
ratio >= ratio_min; ratio -= ratio_step) {
|
||||||
|
|
||||||
|
/* Calculate power at this ratio */
|
||||||
|
power = calculate_power(power_max, ratio_max, ratio);
|
||||||
|
clock = ratio * CONFIG_CPU_BCLK_MHZ;
|
||||||
|
//clock = 1;
|
||||||
|
acpigen_write_PSS_package(
|
||||||
|
clock, /* MHz */
|
||||||
|
power, /* mW */
|
||||||
|
PSS_LATENCY_TRANSITION, /* lat1 */
|
||||||
|
PSS_LATENCY_BUSMASTER, /* lat2 */
|
||||||
|
ratio << 8, /* control */
|
||||||
|
ratio << 8); /* status */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fix package length */
|
||||||
|
acpigen_pop_len();
|
||||||
|
}
|
||||||
|
|
||||||
void generate_cpu_entries(const struct device *device)
|
void generate_cpu_entries(const struct device *device)
|
||||||
{
|
{
|
||||||
int core_id, cpu_id, pcontrol_blk = ACPI_BASE_ADDRESS;
|
int core_id, cpu_id, pcontrol_blk = ACPI_BASE_ADDRESS;
|
||||||
@ -255,7 +384,8 @@ void generate_cpu_entries(const struct device *device)
|
|||||||
|
|
||||||
/* NOTE: Intel idle driver doesn't use ACPI C-state tables */
|
/* NOTE: Intel idle driver doesn't use ACPI C-state tables */
|
||||||
|
|
||||||
/* TODO: Soc specific power states generation */
|
/* Generate P-state tables */
|
||||||
|
cpx_generate_p_state_entries(core_id, threads_per_package);
|
||||||
acpigen_pop_len();
|
acpigen_pop_len();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -132,7 +132,7 @@ static void set_max_turbo_freq(void)
|
|||||||
wrmsr(IA32_PERF_CTL, perf_ctl);
|
wrmsr(IA32_PERF_CTL, perf_ctl);
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "cpu: frequency set to %d\n",
|
printk(BIOS_DEBUG, "cpu: frequency set to %d\n",
|
||||||
((perf_ctl.lo >> 8) & 0xff) * CPU_BCLK);
|
((perf_ctl.lo >> 8) & 0xff) * CONFIG_CPU_BCLK_MHZ);
|
||||||
FUNC_EXIT();
|
FUNC_EXIT();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,12 @@ typedef struct {
|
|||||||
uint8_t buf[32];
|
uint8_t buf[32];
|
||||||
} MEM_BLK;
|
} MEM_BLK;
|
||||||
|
|
||||||
|
/* P-state configuration */
|
||||||
|
#define PSS_MAX_ENTRIES 16
|
||||||
|
#define PSS_RATIO_STEP 1
|
||||||
|
#define PSS_LATENCY_TRANSITION 10
|
||||||
|
#define PSS_LATENCY_BUSMASTER 10
|
||||||
|
|
||||||
unsigned long northbridge_write_acpi_tables(const struct device *device,
|
unsigned long northbridge_write_acpi_tables(const struct device *device,
|
||||||
unsigned long current, struct acpi_rsdp *rsdp);
|
unsigned long current, struct acpi_rsdp *rsdp);
|
||||||
|
|
||||||
|
@ -9,9 +9,6 @@
|
|||||||
#define CPUID_COOPERLAKE_SP_A0 0x05065a
|
#define CPUID_COOPERLAKE_SP_A0 0x05065a
|
||||||
#define CPUID_COOPERLAKE_SP_A1 0x05065b
|
#define CPUID_COOPERLAKE_SP_A1 0x05065b
|
||||||
|
|
||||||
/* CPU bus clock is fixed at 100MHz */
|
|
||||||
#define CPU_BCLK 100
|
|
||||||
|
|
||||||
void cpx_init_cpus(struct device *dev);
|
void cpx_init_cpus(struct device *dev);
|
||||||
msr_t read_msr_ppin(void);
|
msr_t read_msr_ppin(void);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user