Lines Matching refs:target
163 * This data is used in Atom platforms, where in addition to target P state,
751 * target CPU before the EPP update and restarted after it,
1915 int target, avg_pstate;
1925 target = global.no_turbo || global.turbo_disabled ?
1927 target += target >> 2;
1928 target = mul_fp(target, busy_frac);
1929 if (target < cpu->pstate.min_pstate)
1930 target = cpu->pstate.min_pstate;
1934 * current target, add 50% of the difference to the target to reduce
1940 if (avg_pstate > target)
1941 target += (avg_pstate - target) >> 1;
1943 return target;
2726 .target = intel_cpufreq_target,