Home
last modified time | relevance | path

Searched refs:hwp_req (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/tools/power/x86/x86_energy_perf_policy/
Dx86_energy_perf_policy.c812 void read_hwp_request(int cpu, struct msr_hwp_request *hwp_req, unsigned int msr_offset) in read_hwp_request() argument
818 hwp_req->hwp_min = msr_perf_2_ratio((((msr) >> 0) & 0xff)); in read_hwp_request()
819 hwp_req->hwp_max = msr_perf_2_ratio((((msr) >> 8) & 0xff)); in read_hwp_request()
820 hwp_req->hwp_desired = msr_perf_2_ratio((((msr) >> 16) & 0xff)); in read_hwp_request()
821 hwp_req->hwp_epp = (((msr) >> 24) & 0xff); in read_hwp_request()
822 hwp_req->hwp_window = (((msr) >> 32) & 0x3ff); in read_hwp_request()
823 hwp_req->hwp_use_pkg = (((msr) >> 42) & 0x1); in read_hwp_request()
826 void write_hwp_request(int cpu, struct msr_hwp_request *hwp_req, unsigned int msr_offset) in write_hwp_request() argument
832 cpu, hwp_req->hwp_min, hwp_req->hwp_max, in write_hwp_request()
833 hwp_req->hwp_desired, hwp_req->hwp_epp, in write_hwp_request()
[all …]
/linux-6.1.9/drivers/cpufreq/
Dintel_pstate.c2037 u64 hwp_req = READ_ONCE(cpu->hwp_req_cached); in intel_pstate_hwp_boost_up() local
2039 u32 max_limit = (hwp_req & 0xff00) >> 8; in intel_pstate_hwp_boost_up()
2040 u32 min_limit = (hwp_req & 0xff); in intel_pstate_hwp_boost_up()
2077 hwp_req = (hwp_req & ~GENMASK_ULL(7, 0)) | cpu->hwp_boost_min; in intel_pstate_hwp_boost_up()
2078 wrmsrl(MSR_HWP_REQUEST, hwp_req); in intel_pstate_hwp_boost_up()