Lines Matching refs:target
158 * This data is used in Atom platforms, where in addition to target P state,
869 * target CPU before the EPP update and restarted after it,
2258 int target, avg_pstate;
2268 target = global.no_turbo || global.turbo_disabled ?
2270 target += target >> 2;
2271 target = mul_fp(target, busy_frac);
2272 if (target < cpu->pstate.min_pstate)
2273 target = cpu->pstate.min_pstate;
2277 * current target, add 50% of the difference to the target to reduce
2283 if (avg_pstate > target)
2284 target += (avg_pstate - target) >> 1;
2286 return target;
3116 .target = intel_cpufreq_target,