2 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
4 * Licensed under the terms of the GNU GPL License version 2.
6 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/cpufreq.h>
13 #include <linux/timex.h>
16 #include <asm/processor.h>
17 #include <asm/cpu_device_id.h>
19 static struct cpufreq_driver longrun_driver
;
22 * longrun_{low,high}_freq is needed for the conversion of cpufreq kHz
23 * values into per cent values. In TMTA microcode, the following is valid:
24 * performance_pctg = (current_freq - low_freq)/(high_freq - low_freq)
26 static unsigned int longrun_low_freq
, longrun_high_freq
;
30 * longrun_get_policy - get the current LongRun policy
31 * @policy: struct cpufreq_policy where current policy is written into
33 * Reads the current LongRun policy by access to MSR_TMTA_LONGRUN_FLAGS
34 * and MSR_TMTA_LONGRUN_CTRL
36 static void longrun_get_policy(struct cpufreq_policy
*policy
)
40 rdmsr(MSR_TMTA_LONGRUN_FLAGS
, msr_lo
, msr_hi
);
41 pr_debug("longrun flags are %x - %x\n", msr_lo
, msr_hi
);
43 policy
->policy
= CPUFREQ_POLICY_PERFORMANCE
;
45 policy
->policy
= CPUFREQ_POLICY_POWERSAVE
;
47 rdmsr(MSR_TMTA_LONGRUN_CTRL
, msr_lo
, msr_hi
);
48 pr_debug("longrun ctrl is %x - %x\n", msr_lo
, msr_hi
);
52 if (longrun_high_freq
<= longrun_low_freq
) {
53 /* Assume degenerate Longrun table */
54 policy
->min
= policy
->max
= longrun_high_freq
;
56 policy
->min
= longrun_low_freq
+ msr_lo
*
57 ((longrun_high_freq
- longrun_low_freq
) / 100);
58 policy
->max
= longrun_low_freq
+ msr_hi
*
59 ((longrun_high_freq
- longrun_low_freq
) / 100);
66 * longrun_set_policy - sets a new CPUFreq policy
69 * Sets a new CPUFreq policy on LongRun-capable processors. This function
70 * has to be called with cpufreq_driver locked.
72 static int longrun_set_policy(struct cpufreq_policy
*policy
)
80 if (longrun_high_freq
<= longrun_low_freq
) {
81 /* Assume degenerate Longrun table */
82 pctg_lo
= pctg_hi
= 100;
84 pctg_lo
= (policy
->min
- longrun_low_freq
) /
85 ((longrun_high_freq
- longrun_low_freq
) / 100);
86 pctg_hi
= (policy
->max
- longrun_low_freq
) /
87 ((longrun_high_freq
- longrun_low_freq
) / 100);
92 if (pctg_lo
> pctg_hi
)
95 /* performance or economy mode */
96 rdmsr(MSR_TMTA_LONGRUN_FLAGS
, msr_lo
, msr_hi
);
98 switch (policy
->policy
) {
99 case CPUFREQ_POLICY_PERFORMANCE
:
100 msr_lo
|= 0x00000001;
102 case CPUFREQ_POLICY_POWERSAVE
:
105 wrmsr(MSR_TMTA_LONGRUN_FLAGS
, msr_lo
, msr_hi
);
107 /* lower and upper boundary */
108 rdmsr(MSR_TMTA_LONGRUN_CTRL
, msr_lo
, msr_hi
);
109 msr_lo
&= 0xFFFFFF80;
110 msr_hi
&= 0xFFFFFF80;
113 wrmsr(MSR_TMTA_LONGRUN_CTRL
, msr_lo
, msr_hi
);
120 * longrun_verify_poliy - verifies a new CPUFreq policy
121 * @policy: the policy to verify
123 * Validates a new CPUFreq policy. This function has to be called with
124 * cpufreq_driver locked.
126 static int longrun_verify_policy(struct cpufreq_policy
*policy
)
132 cpufreq_verify_within_cpu_limits(policy
);
134 if ((policy
->policy
!= CPUFREQ_POLICY_POWERSAVE
) &&
135 (policy
->policy
!= CPUFREQ_POLICY_PERFORMANCE
))
141 static unsigned int longrun_get(unsigned int cpu
)
143 u32 eax
, ebx
, ecx
, edx
;
148 cpuid(0x80860007, &eax
, &ebx
, &ecx
, &edx
);
149 pr_debug("cpuid eax is %u\n", eax
);
155 * longrun_determine_freqs - determines the lowest and highest possible core frequency
156 * @low_freq: an int to put the lowest frequency into
157 * @high_freq: an int to put the highest frequency into
159 * Determines the lowest and highest possible core frequencies on this CPU.
160 * This is necessary to calculate the performance percentage according to
162 * performance_pctg = (target_freq - low_freq)/(high_freq - low_freq)
164 static int longrun_determine_freqs(unsigned int *low_freq
,
165 unsigned int *high_freq
)
168 u32 save_lo
, save_hi
;
169 u32 eax
, ebx
, ecx
, edx
;
171 struct cpuinfo_x86
*c
= &cpu_data(0);
173 if (!low_freq
|| !high_freq
)
176 if (cpu_has(c
, X86_FEATURE_LRTI
)) {
177 /* if the LongRun Table Interface is present, the
178 * detection is a bit easier:
179 * For minimum frequency, read out the maximum
180 * level (msr_hi), write that into "currently
181 * selected level", and read out the frequency.
182 * For maximum frequency, read out level zero.
185 rdmsr(MSR_TMTA_LRTI_READOUT
, msr_lo
, msr_hi
);
186 wrmsr(MSR_TMTA_LRTI_READOUT
, msr_hi
, msr_hi
);
187 rdmsr(MSR_TMTA_LRTI_VOLT_MHZ
, msr_lo
, msr_hi
);
188 *low_freq
= msr_lo
* 1000; /* to kHz */
191 wrmsr(MSR_TMTA_LRTI_READOUT
, 0, msr_hi
);
192 rdmsr(MSR_TMTA_LRTI_VOLT_MHZ
, msr_lo
, msr_hi
);
193 *high_freq
= msr_lo
* 1000; /* to kHz */
195 pr_debug("longrun table interface told %u - %u kHz\n",
196 *low_freq
, *high_freq
);
198 if (*low_freq
> *high_freq
)
199 *low_freq
= *high_freq
;
203 /* set the upper border to the value determined during TSC init */
204 *high_freq
= (cpu_khz
/ 1000);
205 *high_freq
= *high_freq
* 1000;
206 pr_debug("high frequency is %u kHz\n", *high_freq
);
208 /* get current borders */
209 rdmsr(MSR_TMTA_LONGRUN_CTRL
, msr_lo
, msr_hi
);
210 save_lo
= msr_lo
& 0x0000007F;
211 save_hi
= msr_hi
& 0x0000007F;
213 /* if current perf_pctg is larger than 90%, we need to decrease the
214 * upper limit to make the calculation more accurate.
216 cpuid(0x80860007, &eax
, &ebx
, &ecx
, &edx
);
217 /* try decreasing in 10% steps, some processors react only
218 * on some barrier values */
219 for (try_hi
= 80; try_hi
> 0 && ecx
> 90; try_hi
-= 10) {
220 /* set to 0 to try_hi perf_pctg */
221 msr_lo
&= 0xFFFFFF80;
222 msr_hi
&= 0xFFFFFF80;
224 wrmsr(MSR_TMTA_LONGRUN_CTRL
, msr_lo
, msr_hi
);
226 /* read out current core MHz and current perf_pctg */
227 cpuid(0x80860007, &eax
, &ebx
, &ecx
, &edx
);
230 wrmsr(MSR_TMTA_LONGRUN_CTRL
, save_lo
, save_hi
);
232 pr_debug("percentage is %u %%, freq is %u MHz\n", ecx
, eax
);
234 /* performance_pctg = (current_freq - low_freq)/(high_freq - low_freq)
236 * low_freq * (1 - perf_pctg) = (cur_freq - high_freq * perf_pctg)
238 * high_freq * perf_pctg is stored tempoarily into "ebx".
240 ebx
= (((cpu_khz
/ 1000) * ecx
) / 100); /* to MHz */
242 if ((ecx
> 95) || (ecx
== 0) || (eax
< ebx
))
245 edx
= ((eax
- ebx
) * 100) / (100 - ecx
);
246 *low_freq
= edx
* 1000; /* back to kHz */
248 pr_debug("low frequency is %u kHz\n", *low_freq
);
250 if (*low_freq
> *high_freq
)
251 *low_freq
= *high_freq
;
257 static int longrun_cpu_init(struct cpufreq_policy
*policy
)
261 /* capability check */
262 if (policy
->cpu
!= 0)
265 /* detect low and high frequency */
266 result
= longrun_determine_freqs(&longrun_low_freq
, &longrun_high_freq
);
270 /* cpuinfo and default policy values */
271 policy
->cpuinfo
.min_freq
= longrun_low_freq
;
272 policy
->cpuinfo
.max_freq
= longrun_high_freq
;
273 longrun_get_policy(policy
);
279 static struct cpufreq_driver longrun_driver
= {
280 .flags
= CPUFREQ_CONST_LOOPS
,
281 .verify
= longrun_verify_policy
,
282 .setpolicy
= longrun_set_policy
,
284 .init
= longrun_cpu_init
,
288 static const struct x86_cpu_id longrun_ids
[] = {
289 { X86_VENDOR_TRANSMETA
, X86_FAMILY_ANY
, X86_MODEL_ANY
,
290 X86_FEATURE_LONGRUN
},
293 MODULE_DEVICE_TABLE(x86cpu
, longrun_ids
);
296 * longrun_init - initializes the Transmeta Crusoe LongRun CPUFreq driver
298 * Initializes the LongRun support.
300 static int __init
longrun_init(void)
302 if (!x86_match_cpu(longrun_ids
))
304 return cpufreq_register_driver(&longrun_driver
);
309 * longrun_exit - unregisters LongRun support
311 static void __exit
longrun_exit(void)
313 cpufreq_unregister_driver(&longrun_driver
);
317 MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>");
318 MODULE_DESCRIPTION("LongRun driver for Transmeta Crusoe and "
319 "Efficeon processors.");
320 MODULE_LICENSE("GPL");
322 module_init(longrun_init
);
323 module_exit(longrun_exit
);