1 // SPDX-License-Identifier: GPL-2.0-only
3 * Based on documentation provided by Dave Jones. Thanks!
5 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/cpufreq.h>
14 #include <linux/ioport.h>
15 #include <linux/slab.h>
16 #include <linux/timex.h>
18 #include <linux/delay.h>
20 #include <asm/cpu_device_id.h>
24 #if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
25 #include <linux/acpi.h>
26 #include <acpi/processor.h>
29 #define EPS_BRAND_C7M 0
30 #define EPS_BRAND_C7 1
31 #define EPS_BRAND_EDEN 2
32 #define EPS_BRAND_C3 3
33 #define EPS_BRAND_C7D 4
37 #if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
40 struct cpufreq_frequency_table freq_table[];
43 static struct eps_cpu_data *eps_cpu[NR_CPUS];
45 /* Module parameters */
46 static int freq_failsafe_off;
47 static int voltage_failsafe_off;
48 static int set_max_voltage;
50 #if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
51 static int ignore_acpi_limit;
53 static struct acpi_processor_performance *eps_acpi_cpu_perf;
55 /* Minimum necessary to get acpi_processor_get_bios_limit() working */
56 static int eps_acpi_init(void)
58 eps_acpi_cpu_perf = kzalloc(sizeof(*eps_acpi_cpu_perf),
60 if (!eps_acpi_cpu_perf)
63 if (!zalloc_cpumask_var(&eps_acpi_cpu_perf->shared_cpu_map,
65 kfree(eps_acpi_cpu_perf);
66 eps_acpi_cpu_perf = NULL;
70 if (acpi_processor_register_performance(eps_acpi_cpu_perf, 0)) {
71 free_cpumask_var(eps_acpi_cpu_perf->shared_cpu_map);
72 kfree(eps_acpi_cpu_perf);
73 eps_acpi_cpu_perf = NULL;
79 static int eps_acpi_exit(struct cpufreq_policy *policy)
81 if (eps_acpi_cpu_perf) {
82 acpi_processor_unregister_performance(0);
83 free_cpumask_var(eps_acpi_cpu_perf->shared_cpu_map);
84 kfree(eps_acpi_cpu_perf);
85 eps_acpi_cpu_perf = NULL;
91 static unsigned int eps_get(unsigned int cpu)
93 struct eps_cpu_data *centaur;
98 centaur = eps_cpu[cpu];
102 /* Return current frequency */
103 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
104 return centaur->fsb * ((lo >> 8) & 0xff);
107 static int eps_set_state(struct eps_cpu_data *centaur,
108 struct cpufreq_policy *policy,
114 /* Wait while CPU is busy */
115 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
117 while (lo & ((1 << 16) | (1 << 17))) {
119 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
121 if (unlikely(i > 64)) {
125 /* Set new multiplier and voltage */
126 wrmsr(MSR_IA32_PERF_CTL, dest_state & 0xffff, 0);
127 /* Wait until transition end */
131 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
133 if (unlikely(i > 64)) {
136 } while (lo & ((1 << 16) | (1 << 17)));
140 u8 current_multiplier, current_voltage;
142 /* Print voltage and multiplier */
143 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
144 current_voltage = lo & 0xff;
145 pr_info("Current voltage = %dmV\n", current_voltage * 16 + 700);
146 current_multiplier = (lo >> 8) & 0xff;
147 pr_info("Current multiplier = %d\n", current_multiplier);
153 static int eps_target(struct cpufreq_policy *policy, unsigned int index)
155 struct eps_cpu_data *centaur;
156 unsigned int cpu = policy->cpu;
157 unsigned int dest_state;
160 if (unlikely(eps_cpu[cpu] == NULL))
162 centaur = eps_cpu[cpu];
164 /* Make frequency transition */
165 dest_state = centaur->freq_table[index].driver_data & 0xffff;
166 ret = eps_set_state(centaur, policy, dest_state);
168 pr_err("Timeout!\n");
172 static int eps_cpu_init(struct cpufreq_policy *policy)
177 u8 current_multiplier, current_voltage;
178 u8 max_multiplier, max_voltage;
179 u8 min_multiplier, min_voltage;
182 struct eps_cpu_data *centaur;
183 struct cpuinfo_x86 *c = &cpu_data(0);
184 struct cpufreq_frequency_table *f_table;
185 int k, step, voltage;
187 #if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
191 if (policy->cpu != 0)
195 pr_info("Detected VIA ");
197 switch (c->x86_model) {
199 rdmsr(0x1153, lo, hi);
200 brand = (((lo >> 2) ^ lo) >> 18) & 3;
204 rdmsr(0x1154, lo, hi);
205 brand = (((lo >> 4) ^ (lo >> 2))) & 0x000000ff;
227 /* Enable Enhanced PowerSaver */
228 rdmsrl(MSR_IA32_MISC_ENABLE, val);
229 if (!(val & MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP)) {
230 val |= MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP;
231 wrmsrl(MSR_IA32_MISC_ENABLE, val);
232 /* Can be locked at 0 */
233 rdmsrl(MSR_IA32_MISC_ENABLE, val);
234 if (!(val & MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP)) {
235 pr_info("Can't enable Enhanced PowerSaver\n");
240 /* Print voltage and multiplier */
241 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
242 current_voltage = lo & 0xff;
243 pr_info("Current voltage = %dmV\n", current_voltage * 16 + 700);
244 current_multiplier = (lo >> 8) & 0xff;
245 pr_info("Current multiplier = %d\n", current_multiplier);
248 max_voltage = hi & 0xff;
249 pr_info("Highest voltage = %dmV\n", max_voltage * 16 + 700);
250 max_multiplier = (hi >> 8) & 0xff;
251 pr_info("Highest multiplier = %d\n", max_multiplier);
252 min_voltage = (hi >> 16) & 0xff;
253 pr_info("Lowest voltage = %dmV\n", min_voltage * 16 + 700);
254 min_multiplier = (hi >> 24) & 0xff;
255 pr_info("Lowest multiplier = %d\n", min_multiplier);
258 if (current_multiplier == 0 || max_multiplier == 0
259 || min_multiplier == 0)
261 if (current_multiplier > max_multiplier
262 || max_multiplier <= min_multiplier)
264 if (current_voltage > 0x1f || max_voltage > 0x1f)
266 if (max_voltage < min_voltage
267 || current_voltage < min_voltage
268 || current_voltage > max_voltage)
271 /* Check for systems using underclocked CPU */
272 if (!freq_failsafe_off && max_multiplier != current_multiplier) {
273 pr_info("Your processor is running at different frequency then its maximum. Aborting.\n");
274 pr_info("You can use freq_failsafe_off option to disable this check.\n");
277 if (!voltage_failsafe_off && max_voltage != current_voltage) {
278 pr_info("Your processor is running at different voltage then its maximum. Aborting.\n");
279 pr_info("You can use voltage_failsafe_off option to disable this check.\n");
284 fsb = cpu_khz / current_multiplier;
286 #if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
287 /* Check for ACPI processor speed limit */
288 if (!ignore_acpi_limit && !eps_acpi_init()) {
289 if (!acpi_processor_get_bios_limit(policy->cpu, &limit)) {
290 pr_info("ACPI limit %u.%uGHz\n",
292 (limit%1000000)/10000);
293 eps_acpi_exit(policy);
294 /* Check if max_multiplier is in BIOS limits */
295 if (limit && max_multiplier * fsb > limit) {
296 pr_info("Aborting\n");
303 /* Allow user to set lower maximum voltage then that reported
305 if (brand == EPS_BRAND_C7M && set_max_voltage) {
308 /* Change mV to something hardware can use */
309 v = (set_max_voltage - 700) / 16;
310 /* Check if voltage is within limits */
311 if (v >= min_voltage && v <= max_voltage) {
312 pr_info("Setting %dmV as maximum\n", v * 16 + 700);
317 /* Calc number of p-states supported */
318 if (brand == EPS_BRAND_C7M)
319 states = max_multiplier - min_multiplier + 1;
323 /* Allocate private data and frequency table for current cpu */
324 centaur = kzalloc(struct_size(centaur, freq_table, states + 1),
328 eps_cpu[0] = centaur;
330 /* Copy basic values */
332 #if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
333 centaur->bios_limit = limit;
336 /* Fill frequency and MSR value table */
337 f_table = ¢aur->freq_table[0];
338 if (brand != EPS_BRAND_C7M) {
339 f_table[0].frequency = fsb * min_multiplier;
340 f_table[0].driver_data = (min_multiplier << 8) | min_voltage;
341 f_table[1].frequency = fsb * max_multiplier;
342 f_table[1].driver_data = (max_multiplier << 8) | max_voltage;
343 f_table[2].frequency = CPUFREQ_TABLE_END;
346 step = ((max_voltage - min_voltage) * 256)
347 / (max_multiplier - min_multiplier);
348 for (i = min_multiplier; i <= max_multiplier; i++) {
349 voltage = (k * step) / 256 + min_voltage;
350 f_table[k].frequency = fsb * i;
351 f_table[k].driver_data = (i << 8) | voltage;
354 f_table[k].frequency = CPUFREQ_TABLE_END;
357 policy->cpuinfo.transition_latency = 140000; /* 844mV -> 700mV in ns */
358 policy->freq_table = ¢aur->freq_table[0];
363 static int eps_cpu_exit(struct cpufreq_policy *policy)
365 unsigned int cpu = policy->cpu;
373 static struct cpufreq_driver eps_driver = {
374 .verify = cpufreq_generic_frequency_table_verify,
375 .target_index = eps_target,
376 .init = eps_cpu_init,
377 .exit = eps_cpu_exit,
379 .name = "e_powersaver",
380 .attr = cpufreq_generic_attr,
384 /* This driver will work only on Centaur C7 processors with
385 * Enhanced SpeedStep/PowerSaver registers */
386 static const struct x86_cpu_id eps_cpu_id[] = {
387 X86_MATCH_VENDOR_FAM_FEATURE(CENTAUR, 6, X86_FEATURE_EST, NULL),
390 MODULE_DEVICE_TABLE(x86cpu, eps_cpu_id);
392 static int __init eps_init(void)
394 if (!x86_match_cpu(eps_cpu_id) || boot_cpu_data.x86_model < 10)
396 if (cpufreq_register_driver(&eps_driver))
401 static void __exit eps_exit(void)
403 cpufreq_unregister_driver(&eps_driver);
406 /* Allow user to overclock his machine or to change frequency to higher after
407 * unloading module */
408 module_param(freq_failsafe_off, int, 0644);
409 MODULE_PARM_DESC(freq_failsafe_off, "Disable current vs max frequency check");
410 module_param(voltage_failsafe_off, int, 0644);
411 MODULE_PARM_DESC(voltage_failsafe_off, "Disable current vs max voltage check");
412 #if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
413 module_param(ignore_acpi_limit, int, 0644);
414 MODULE_PARM_DESC(ignore_acpi_limit, "Don't check ACPI's processor speed limit");
416 module_param(set_max_voltage, int, 0644);
417 MODULE_PARM_DESC(set_max_voltage, "Set maximum CPU voltage (mV) C7-M only");
419 MODULE_AUTHOR("Rafal Bilski <rafalbilski@interia.pl>");
420 MODULE_DESCRIPTION("Enhanced PowerSaver driver for VIA C7 CPU's.");
421 MODULE_LICENSE("GPL");
423 module_init(eps_init);
424 module_exit(eps_exit);