Searched refs:hwp_req (Results 1 – 2 of 2) sorted by relevance
| /linux/tools/power/x86/x86_energy_perf_policy/ |
| H A D | x86_energy_perf_policy.c | 823 void read_hwp_request_msr(int cpu, struct msr_hwp_request *hwp_req, unsigned int msr_offset) in read_hwp_request_msr() argument 829 hwp_req->hwp_min = msr_perf_2_ratio((((msr) >> 0) & 0xff)); in read_hwp_request_msr() 830 hwp_req->hwp_max = msr_perf_2_ratio((((msr) >> 8) & 0xff)); in read_hwp_request_msr() 831 hwp_req->hwp_desired = msr_perf_2_ratio((((msr) >> 16) & 0xff)); in read_hwp_request_msr() 832 hwp_req->hwp_epp = (((msr) >> 24) & 0xff); in read_hwp_request_msr() 833 hwp_req->hwp_window = (((msr) >> 32) & 0x3ff); in read_hwp_request_msr() 834 hwp_req->hwp_use_pkg = (((msr) >> 42) & 0x1); in read_hwp_request_msr() 837 void write_hwp_request_msr(int cpu, struct msr_hwp_request *hwp_req, unsigned int msr_offset) in write_hwp_request_msr() argument 843 cpu, hwp_req->hwp_min, hwp_req->hwp_max, in write_hwp_request_msr() 844 hwp_req->hwp_desired, hwp_req->hwp_epp, in write_hwp_request_msr() [all …]
|
| /linux/drivers/cpufreq/ |
| H A D | intel_pstate.c | 2371 u64 hwp_req = READ_ONCE(cpu->hwp_req_cached); in intel_pstate_hwp_boost_up() local 2373 u32 max_limit = (hwp_req & 0xff00) >> 8; in intel_pstate_hwp_boost_up() 2374 u32 min_limit = (hwp_req & 0xff); in intel_pstate_hwp_boost_up() 2411 hwp_req = (hwp_req & ~GENMASK_ULL(7, 0)) | cpu->hwp_boost_min; in intel_pstate_hwp_boost_up() 2412 wrmsrq(MSR_HWP_REQUEST, hwp_req); in intel_pstate_hwp_boost_up()
|