Searched defs:max_freq (Results 1 - 16 of 16) sorted by relevance

/drivers/macintosh/
H A Dwindfarm_cpufreq_clamp.c23 unsigned long max_freq; local
28 max_freq = clamped ? (p->cpuinfo.min_freq) : (p->cpuinfo.max_freq);
29 cpufreq_verify_within_limits(p, 0, max_freq);
/drivers/cpufreq/
H A Dfreq_table.c25 unsigned int max_freq = 0; local
39 if (freq > max_freq)
40 max_freq = freq;
44 policy->max = policy->cpuinfo.max_freq = max_freq;
68 policy->cpuinfo.max_freq);
84 policy->cpuinfo.max_freq);
H A Delanfreq.c35 static int max_freq; variable
213 if (!max_freq)
214 max_freq = elanfreq_get_cpu_frequency(0);
218 if (elanfreq_table[i].frequency > max_freq)
252 * max_freq module parameter instead.
256 max_freq = simple_strtoul(str, &str, 0);
257 printk(KERN_WARNING "You're using the deprecated elanfreq command line option. Use elanfreq.max_freq instead, please!\n");
301 module_param(max_freq, int, 0444);
H A Dmaple-cpufreq.c208 unsigned long max_freq; local
273 max_freq = (*valp)/1000;
274 maple_cpu_freqs[0].frequency = max_freq;
275 maple_cpu_freqs[1].frequency = max_freq/2;
H A Dspeedstep-centrino.c65 unsigned max_freq; /* max clock in kHz */ member in struct:cpu_model
201 .max_freq = (max)*1000, \
262 model->model_name, model->max_freq);
H A Dcpufreq_interactive.c399 unsigned int max_freq = 0; local
411 if (pjcpu->target_freq > max_freq)
412 max_freq = pjcpu->target_freq;
415 if (max_freq != pcpu->policy->cur)
417 max_freq,
/drivers/acpi/
H A Dprocessor_thermal.c93 unsigned long max_freq = 0; local
98 max_freq = (
99 policy->cpuinfo.max_freq *
103 cpufreq_verify_within_limits(policy, 0, max_freq);
/drivers/media/dvb/frontends/
H A Ddib0090.h31 u16 max_freq; /* for every frequency less than or equal to that field: this information is correct */ member in struct:dib0090_wbd_slope
H A Ddib0070.c270 u32 max_freq; /* for every frequency less than or equal to that field: this information is correct */ member in struct:dib0070_tuning
281 u32 max_freq; /* for every frequency less than or equal to that field: this information is correct */ member in struct:dib0070_lna_match
376 while (freq > tune->max_freq) /* find the right one */
378 while (freq > lna_match->max_freq) /* find the right one */
H A Ddib0090.c114 u32 max_freq; /* for every frequency less than or equal to that field: this information is correct */ member in struct:dib0090_tuning
125 u32 max_freq; /* for every frequency less than or equal to that field: this information is correct */ member in struct:dib0090_pll
1360 while (f_MHz > wbd->max_freq)
1363 dprintk("using wbd-table-entry with max freq %d", wbd->max_freq);
1803 while (state->current_rf / 1000 > wbd->max_freq)
2084 while (state->rf_request > tune->max_freq)
2374 while (state->rf_request > tune->max_freq)
2376 while (state->rf_request > pll->max_freq)
2485 while (state->current_rf / 1000 > wbd->max_freq)
/drivers/staging/tidspbridge/include/dspbridge/
H A D_chnl_sm.h57 u32 max_freq; member in struct:opp_table_entry
/drivers/spi/
H A Dspi-dw.h104 u32 max_freq; /* max bus freq supported */ member in struct:dw_spi
/drivers/gpu/drm/i915/
H A Di915_debugfs.c882 int max_freq; local
925 max_freq = (rp_state_cap & 0xff0000) >> 16;
927 max_freq * 50);
929 max_freq = (rp_state_cap & 0xff00) >> 8;
931 max_freq * 50);
933 max_freq = rp_state_cap & 0xff;
935 max_freq * 50);
H A Dintel_display.c8294 int cur_freq, min_freq, max_freq; local
8390 max_freq = rp_state_cap & 0xff;
8403 max_freq = pcu_mbox & 0xff;
8408 dev_priv->max_delay = max_freq;
/drivers/net/wireless/bcmdhd/
H A Dsiutils.c1171 si_slowclk_freq(si_info_t *sii, bool max_freq, chipcregs_t *cc) argument
1184 return (max_freq ? (PCIMAXFREQ / 64) : (PCIMINFREQ / 64));
1186 return (max_freq ? (XTALMAXFREQ / 32) : (XTALMINFREQ / 32));
1191 return (max_freq ? LPOMAXFREQ : LPOMINFREQ);
1193 return (max_freq ? (XTALMAXFREQ / div) : (XTALMINFREQ / div));
1195 return (max_freq ? (PCIMAXFREQ / div) : (PCIMINFREQ / div));
1202 return (max_freq ? XTALMAXFREQ : (XTALMINFREQ / div));
/drivers/net/wireless/brcm80211/brcmsmac/
H A Daiutils.c779 static uint ai_slowclk_freq(struct si_pub *sih, bool max_freq, argument
788 return max_freq ? (PCIMAXFREQ / 64)
791 return max_freq ? (XTALMAXFREQ / 32)
798 return max_freq ? LPOMAXFREQ : LPOMINFREQ;
800 return max_freq ? (XTALMAXFREQ / div)
803 return max_freq ? (PCIMAXFREQ / div)
809 return max_freq ? XTALMAXFREQ : (XTALMINFREQ / div);

Completed in 247 milliseconds