Lines Matching defs:low_freq
23 * performance_pctg = (current_freq - low_freq)/(high_freq - low_freq)
151 * @low_freq: an int to put the lowest frequency into
157 * performance_pctg = (target_freq - low_freq)/(high_freq - low_freq)
159 static int longrun_determine_freqs(unsigned int *low_freq,
168 if (!low_freq || !high_freq)
183 *low_freq = msr_lo * 1000; /* to kHz */
191 *low_freq, *high_freq);
193 if (*low_freq > *high_freq)
194 *low_freq = *high_freq;
229 /* performance_pctg = (current_freq - low_freq)/(high_freq - low_freq)
231 * low_freq * (1 - perf_pctg) = (cur_freq - high_freq * perf_pctg)
241 *low_freq = edx * 1000; /* back to kHz */
243 pr_debug("low frequency is %u kHz\n", *low_freq);
245 if (*low_freq > *high_freq)
246 *low_freq = *high_freq;