Lines Matching refs:target_pstate

2310 	int target_pstate;
2314 target_pstate = get_target_pstate(cpu);
2315 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
2316 trace_cpu_frequency(target_pstate * cpu->pstate.scaling, cpu->cpu);
2317 intel_pstate_update_pstate(cpu, target_pstate);
2885 u32 target_pstate, bool fast_switch)
2889 pstate_funcs.get_val(cpu, target_pstate));
2892 pstate_funcs.get_val(cpu, target_pstate));
2896 int target_pstate, bool fast_switch)
2901 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
2904 target_pstate : cpu->max_perf_ratio;
2906 intel_cpufreq_hwp_update(cpu, target_pstate, max_pstate, 0,
2908 } else if (target_pstate != old_pstate) {
2909 intel_cpufreq_perf_ctl_update(cpu, target_pstate, fast_switch);
2912 cpu->pstate.current_pstate = target_pstate;
2917 return target_pstate;
2926 int target_pstate;
2935 target_pstate = intel_pstate_freq_to_hwp_rel(cpu, freqs.new, relation);
2936 target_pstate = intel_cpufreq_update_pstate(policy, target_pstate, false);
2938 freqs.new = target_pstate * cpu->pstate.scaling;
2949 int target_pstate;
2953 target_pstate = intel_pstate_freq_to_hwp(cpu, target_freq);
2955 target_pstate = intel_cpufreq_update_pstate(policy, target_pstate, true);
2957 return target_pstate * cpu->pstate.scaling;
2968 int cap_pstate, min_pstate, max_pstate, target_pstate;
2976 target_pstate = cap_pstate;
2978 target_pstate = DIV_ROUND_UP(cap_pstate * target_perf, capacity);
2997 target_pstate = clamp_t(int, target_pstate, min_pstate, max_pstate);
2999 intel_cpufreq_hwp_update(cpu, min_pstate, max_pstate, target_pstate, true);
3001 cpu->pstate.current_pstate = target_pstate;