Lines Matching refs:min_pstate

137 	int	min_pstate;  member
544 cpu->pstate.min_freq = cpu->pstate.min_pstate * perf_ctl_scaling; in intel_pstate_hybrid_hwp_adjust()
549 cpu->pstate.min_pstate = DIV_ROUND_UP(cpu->pstate.min_freq, scaling); in intel_pstate_hybrid_hwp_adjust()
570 (cpu->pstate.min_pstate * 100 / turbo_pstate) : 0; in min_perf_pct_min()
1204 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1; in show_turbo_pct()
1205 no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1; in show_turbo_pct()
1228 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1; in show_num_pstates()
1752 int_tofp(pstate - cpudata->pstate.min_pstate), in atom_get_val()
1805 cpudata->pstate.min_pstate)); in atom_get_vid()
1976 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate); in intel_pstate_set_min_pstate()
1981 int pstate = max(cpu->pstate.min_pstate, cpu->max_perf_ratio); in intel_pstate_max_within_limits()
1992 cpu->pstate.min_pstate = pstate_funcs.get_min(cpu->cpu); in intel_pstate_get_cpu_pstates()
2013 cpu->pstate.min_freq = cpu->pstate.min_pstate * perf_ctl_scaling; in intel_pstate_get_cpu_pstates()
2216 if (target < cpu->pstate.min_pstate) in get_target_pstate()
2217 target = cpu->pstate.min_pstate; in get_target_pstate()
2235 int min_pstate = max(cpu->pstate.min_pstate, cpu->min_perf_ratio); in intel_pstate_prepare_request() local
2236 int max_pstate = max(min_pstate, cpu->max_perf_ratio); in intel_pstate_prepare_request()
2238 return clamp_t(int, pstate, min_pstate, max_pstate); in intel_pstate_prepare_request()
2927 int cap_pstate, min_pstate, max_pstate, target_pstate; in intel_cpufreq_adjust_perf() local
2939 min_pstate = cap_pstate; in intel_cpufreq_adjust_perf()
2941 min_pstate = DIV_ROUND_UP(cap_pstate * min_perf, capacity); in intel_cpufreq_adjust_perf()
2943 if (min_pstate < cpu->pstate.min_pstate) in intel_cpufreq_adjust_perf()
2944 min_pstate = cpu->pstate.min_pstate; in intel_cpufreq_adjust_perf()
2946 if (min_pstate < cpu->min_perf_ratio) in intel_cpufreq_adjust_perf()
2947 min_pstate = cpu->min_perf_ratio; in intel_cpufreq_adjust_perf()
2950 if (max_pstate < min_pstate) in intel_cpufreq_adjust_perf()
2951 max_pstate = min_pstate; in intel_cpufreq_adjust_perf()
2953 target_pstate = clamp_t(int, target_pstate, min_pstate, max_pstate); in intel_cpufreq_adjust_perf()
2955 intel_cpufreq_hwp_update(cpu, min_pstate, max_pstate, target_pstate, true); in intel_cpufreq_adjust_perf()