Lines Matching refs:target_freq
534 * @target_freq: target frequency to resolve.
539 * given target_freq, subject to policy (min/max) and driver limitations.
542 unsigned int target_freq)
544 target_freq = clamp_val(target_freq, policy->min, policy->max);
545 policy->cached_target_freq = target_freq;
550 idx = cpufreq_frequency_table_target(policy, target_freq,
557 return cpufreq_driver->resolve_freq(policy, target_freq);
559 return target_freq;
2076 * @target_freq: New frequency to set (may be approximate).
2083 * equal to @target_freq (CPUFREQ_RELATION_L).
2097 unsigned int target_freq)
2102 target_freq = clamp_val(target_freq, policy->min, policy->max);
2103 freq = cpufreq_driver->fast_switch(policy, target_freq);
2206 unsigned int target_freq,
2209 unsigned int old_target_freq = target_freq;
2215 /* Make sure that target_freq is within supported range */
2216 target_freq = clamp_val(target_freq, policy->min, policy->max);
2219 policy->cpu, target_freq, relation, old_target_freq);
2227 if (target_freq == policy->cur &&
2235 return cpufreq_driver->target(policy, target_freq, relation);
2240 index = cpufreq_frequency_table_target(policy, target_freq, relation);
2247 unsigned int target_freq,
2254 ret = __cpufreq_driver_target(policy, target_freq, relation);