Lines Matching defs:max_pstate

125  * @max_pstate:		Max P state possible for this platform
127 * This can be higher than the max_pstate which can
133 * @max_freq: @max_pstate frequency in cpufreq units
141 int max_pstate;
542 return cpu->pstate.max_pstate;
581 pr_debug("CPU%d: HWP_CAP guaranteed = %d\n", cpu->cpu, cpu->pstate.max_pstate);
592 cpu->pstate.max_freq = rounddown(cpu->pstate.max_pstate * scaling,
1192 cpu->pstate.max_pstate = HWP_GUARANTEED_PERF(cap);
1202 cpu->pstate.max_freq = cpu->pstate.max_pstate * scaling;
1563 no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1;
1632 int pct = cpu->pstate.max_pstate * 100 / cpu->pstate.turbo_pstate;
2102 if (pstate > cpudata->pstate.max_pstate)
2148 int_tofp(cpudata->pstate.max_pstate -
2208 int max_pstate;
2213 max_pstate = (plat_info >> 8) & 0xFF;
2217 return max_pstate;
2231 max_pstate = tar_levels;
2232 pr_debug("max_pstate=TAC %x\n", max_pstate);
2236 return max_pstate;
2342 cpu->pstate.max_pstate = pstate_funcs.get_max(cpu->cpu);
2348 cpu->pstate.max_freq = cpu->pstate.max_pstate * perf_ctl_scaling;
2547 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
2570 int max_pstate = max(min_pstate, cpu->max_perf_ratio);
2572 return clamp_t(int, pstate, min_pstate, max_pstate);
2940 cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate &&
3188 int max_pstate = policy->strict_target ?
3191 intel_cpufreq_hwp_update(cpu, target_pstate, max_pstate,
3249 int cap_pstate, min_pstate, max_pstate, target_pstate;
3274 max_pstate = min(cap_pstate, cpu->max_perf_ratio);
3275 if (max_pstate < min_pstate)
3276 max_pstate = min_pstate;
3278 target_pstate = clamp_t(int, target_pstate, min_pstate, max_pstate);
3280 intel_cpufreq_hwp_update(cpu, min_pstate, max_pstate, target_pstate, true);