Lines Matching defs:min

150  * @min:		VID data for this platform corresponding to
154 * @ratio: Ratio of (vid max - vid min) /
162 int min;
222 * @hwp_boost_min: Last HWP boosted min performance
590 * Cast the min P-state value retrieved via pstate_funcs.get_min() to
972 int max, min;
977 min = cpu_data->min_perf_ratio;
980 min = max;
985 value |= HWP_MIN_PERF(min);
1072 /* Set EPP to min */
1800 vid_fp = cpudata->vid.min + mul_fp(
1804 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
1849 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
1852 cpudata->vid.max - cpudata->vid.min,
2101 * If, P0 (Turbo max) = P1 (Guaranteed max) = min:
2103 * If, P0 (Turbo max) > P1 (Guaranteed max) = min:
2105 * If, P0 (Turbo max) = P1 (Guaranteed max) > min:
2107 * (min + p1)/2 and P1.
2108 * If, P0 (Turbo max) > P1 (Guaranteed max) > min:
2110 * (min + p1)/2, P1 and P0.
2113 /* If max and min are equal or already at max, nothing to boost */
2120 /* level at half way mark between min and guranteed */
2584 cpu->min_perf_ratio = min(cpu->min_perf_ratio, max_policy_perf);
2585 cpu->max_perf_ratio = min(max_policy_perf, global_max);
2589 cpu->min_perf_ratio = min(cpu->min_perf_ratio,
2613 intel_pstate_update_perf_limits(cpu, policy->min, policy->max);
2640 policy->cur = policy->min;
2766 policy->min = policy->cpuinfo.min_freq;
2817 intel_pstate_update_perf_limits(cpu, policy->min, policy->max);
2860 static void intel_cpufreq_hwp_update(struct cpudata *cpu, u32 min, u32 max,
2866 value |= HWP_MIN_PERF(min);
2993 max_pstate = min(cap_pstate, cpu->max_perf_ratio);
3052 dev_err(dev, "Failed to add min-freq constraint (%d)\n", ret);