blob: d91815e614cf167e07b20b2deef8c573c2fd916a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * cpufreq driver for Enhanced SpeedStep, as found in Intel's Pentium
3 * M (part of the Centrino chipset).
4 *
Jeremy Fitzhardinge491b07c2006-06-21 13:15:48 -07005 * Since the original Pentium M, most new Intel CPUs support Enhanced
6 * SpeedStep.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Despite the "SpeedStep" in the name, this is almost entirely unlike
9 * traditional SpeedStep.
10 *
11 * Modelled on speedstep.c
12 *
13 * Copyright (C) 2003 Jeremy Fitzhardinge <jeremy@goop.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/cpufreq.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080020#include <linux/sched.h> /* current */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/delay.h>
22#include <linux/compiler.h>
23
24#ifdef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI
25#include <linux/acpi.h>
26#include <acpi/processor.h>
27#endif
28
29#include <asm/msr.h>
30#include <asm/processor.h>
31#include <asm/cpufeature.h>
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define PFX "speedstep-centrino: "
Jeremy Fitzhardinge491b07c2006-06-21 13:15:48 -070034#define MAINTAINER "cpufreq@lists.linux.org.uk"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "speedstep-centrino", msg)
37
38
39struct cpu_id
40{
41 __u8 x86; /* CPU family */
42 __u8 x86_model; /* model */
43 __u8 x86_mask; /* stepping */
44};
45
46enum {
47 CPU_BANIAS,
48 CPU_DOTHAN_A1,
49 CPU_DOTHAN_A2,
50 CPU_DOTHAN_B0,
Dave Jones82828642005-05-31 19:03:43 -070051 CPU_MP4HT_D0,
52 CPU_MP4HT_E0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
55static const struct cpu_id cpu_ids[] = {
56 [CPU_BANIAS] = { 6, 9, 5 },
57 [CPU_DOTHAN_A1] = { 6, 13, 1 },
58 [CPU_DOTHAN_A2] = { 6, 13, 2 },
59 [CPU_DOTHAN_B0] = { 6, 13, 6 },
Dave Jones82828642005-05-31 19:03:43 -070060 [CPU_MP4HT_D0] = {15, 3, 4 },
61 [CPU_MP4HT_E0] = {15, 4, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
Tobias Klauser38e548e2005-11-07 00:58:31 -080063#define N_IDS ARRAY_SIZE(cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65struct cpu_model
66{
67 const struct cpu_id *cpu_id;
68 const char *model_name;
69 unsigned max_freq; /* max clock in kHz */
70
71 struct cpufreq_frequency_table *op_points; /* clock/voltage pairs */
72};
73static int centrino_verify_cpu_id(const struct cpuinfo_x86 *c, const struct cpu_id *x);
74
75/* Operating points for current CPU */
76static struct cpu_model *centrino_model[NR_CPUS];
77static const struct cpu_id *centrino_cpu[NR_CPUS];
78
79static struct cpufreq_driver centrino_driver;
80
81#ifdef CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE
82
83/* Computes the correct form for IA32_PERF_CTL MSR for a particular
84 frequency/voltage operating point; frequency in MHz, volts in mV.
85 This is stored as "index" in the structure. */
86#define OP(mhz, mv) \
87 { \
88 .frequency = (mhz) * 1000, \
89 .index = (((mhz)/100) << 8) | ((mv - 700) / 16) \
90 }
91
92/*
93 * These voltage tables were derived from the Intel Pentium M
94 * datasheet, document 25261202.pdf, Table 5. I have verified they
95 * are consistent with my IBM ThinkPad X31, which has a 1.3GHz Pentium
96 * M.
97 */
98
99/* Ultra Low Voltage Intel Pentium M processor 900MHz (Banias) */
100static struct cpufreq_frequency_table banias_900[] =
101{
102 OP(600, 844),
103 OP(800, 988),
104 OP(900, 1004),
105 { .frequency = CPUFREQ_TABLE_END }
106};
107
108/* Ultra Low Voltage Intel Pentium M processor 1000MHz (Banias) */
109static struct cpufreq_frequency_table banias_1000[] =
110{
111 OP(600, 844),
112 OP(800, 972),
113 OP(900, 988),
114 OP(1000, 1004),
115 { .frequency = CPUFREQ_TABLE_END }
116};
117
118/* Low Voltage Intel Pentium M processor 1.10GHz (Banias) */
119static struct cpufreq_frequency_table banias_1100[] =
120{
121 OP( 600, 956),
122 OP( 800, 1020),
123 OP( 900, 1100),
124 OP(1000, 1164),
125 OP(1100, 1180),
126 { .frequency = CPUFREQ_TABLE_END }
127};
128
129
130/* Low Voltage Intel Pentium M processor 1.20GHz (Banias) */
131static struct cpufreq_frequency_table banias_1200[] =
132{
133 OP( 600, 956),
134 OP( 800, 1004),
135 OP( 900, 1020),
136 OP(1000, 1100),
137 OP(1100, 1164),
138 OP(1200, 1180),
139 { .frequency = CPUFREQ_TABLE_END }
140};
141
142/* Intel Pentium M processor 1.30GHz (Banias) */
143static struct cpufreq_frequency_table banias_1300[] =
144{
145 OP( 600, 956),
146 OP( 800, 1260),
147 OP(1000, 1292),
148 OP(1200, 1356),
149 OP(1300, 1388),
150 { .frequency = CPUFREQ_TABLE_END }
151};
152
153/* Intel Pentium M processor 1.40GHz (Banias) */
154static struct cpufreq_frequency_table banias_1400[] =
155{
156 OP( 600, 956),
157 OP( 800, 1180),
158 OP(1000, 1308),
159 OP(1200, 1436),
160 OP(1400, 1484),
161 { .frequency = CPUFREQ_TABLE_END }
162};
163
164/* Intel Pentium M processor 1.50GHz (Banias) */
165static struct cpufreq_frequency_table banias_1500[] =
166{
167 OP( 600, 956),
168 OP( 800, 1116),
169 OP(1000, 1228),
170 OP(1200, 1356),
171 OP(1400, 1452),
172 OP(1500, 1484),
173 { .frequency = CPUFREQ_TABLE_END }
174};
175
176/* Intel Pentium M processor 1.60GHz (Banias) */
177static struct cpufreq_frequency_table banias_1600[] =
178{
179 OP( 600, 956),
180 OP( 800, 1036),
181 OP(1000, 1164),
182 OP(1200, 1276),
183 OP(1400, 1420),
184 OP(1600, 1484),
185 { .frequency = CPUFREQ_TABLE_END }
186};
187
188/* Intel Pentium M processor 1.70GHz (Banias) */
189static struct cpufreq_frequency_table banias_1700[] =
190{
191 OP( 600, 956),
192 OP( 800, 1004),
193 OP(1000, 1116),
194 OP(1200, 1228),
195 OP(1400, 1308),
196 OP(1700, 1484),
197 { .frequency = CPUFREQ_TABLE_END }
198};
199#undef OP
200
201#define _BANIAS(cpuid, max, name) \
202{ .cpu_id = cpuid, \
203 .model_name = "Intel(R) Pentium(R) M processor " name "MHz", \
204 .max_freq = (max)*1000, \
205 .op_points = banias_##max, \
206}
207#define BANIAS(max) _BANIAS(&cpu_ids[CPU_BANIAS], max, #max)
208
209/* CPU models, their operating frequency range, and freq/voltage
210 operating points */
211static struct cpu_model models[] =
212{
213 _BANIAS(&cpu_ids[CPU_BANIAS], 900, " 900"),
214 BANIAS(1000),
215 BANIAS(1100),
216 BANIAS(1200),
217 BANIAS(1300),
218 BANIAS(1400),
219 BANIAS(1500),
220 BANIAS(1600),
221 BANIAS(1700),
222
223 /* NULL model_name is a wildcard */
224 { &cpu_ids[CPU_DOTHAN_A1], NULL, 0, NULL },
225 { &cpu_ids[CPU_DOTHAN_A2], NULL, 0, NULL },
226 { &cpu_ids[CPU_DOTHAN_B0], NULL, 0, NULL },
Dave Jones82828642005-05-31 19:03:43 -0700227 { &cpu_ids[CPU_MP4HT_D0], NULL, 0, NULL },
228 { &cpu_ids[CPU_MP4HT_E0], NULL, 0, NULL },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 { NULL, }
231};
232#undef _BANIAS
233#undef BANIAS
234
235static int centrino_cpu_init_table(struct cpufreq_policy *policy)
236{
237 struct cpuinfo_x86 *cpu = &cpu_data[policy->cpu];
238 struct cpu_model *model;
239
240 for(model = models; model->cpu_id != NULL; model++)
241 if (centrino_verify_cpu_id(cpu, model->cpu_id) &&
242 (model->model_name == NULL ||
243 strcmp(cpu->x86_model_id, model->model_name) == 0))
244 break;
245
246 if (model->cpu_id == NULL) {
247 /* No match at all */
Jan Beulich8c362a52006-04-26 15:41:22 +0200248 dprintk("no support for CPU model \"%s\": "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 "send /proc/cpuinfo to " MAINTAINER "\n",
250 cpu->x86_model_id);
251 return -ENOENT;
252 }
253
254 if (model->op_points == NULL) {
255 /* Matched a non-match */
Jan Beulich8c362a52006-04-26 15:41:22 +0200256 dprintk("no table support for CPU model \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 cpu->x86_model_id);
258#ifndef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI
Jan Beulich8c362a52006-04-26 15:41:22 +0200259 dprintk("try compiling with CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif
261 return -ENOENT;
262 }
263
264 centrino_model[policy->cpu] = model;
265
266 dprintk("found \"%s\": max frequency: %dkHz\n",
267 model->model_name, model->max_freq);
268
269 return 0;
270}
271
272#else
273static inline int centrino_cpu_init_table(struct cpufreq_policy *policy) { return -ENODEV; }
274#endif /* CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE */
275
276static int centrino_verify_cpu_id(const struct cpuinfo_x86 *c, const struct cpu_id *x)
277{
278 if ((c->x86 == x->x86) &&
279 (c->x86_model == x->x86_model) &&
280 (c->x86_mask == x->x86_mask))
281 return 1;
282 return 0;
283}
284
285/* To be called only after centrino_model is initialized */
286static unsigned extract_clock(unsigned msr, unsigned int cpu, int failsafe)
287{
288 int i;
289
290 /*
291 * Extract clock in kHz from PERF_CTL value
292 * for centrino, as some DSDTs are buggy.
293 * Ideally, this can be done using the acpi_data structure.
294 */
295 if ((centrino_cpu[cpu] == &cpu_ids[CPU_BANIAS]) ||
296 (centrino_cpu[cpu] == &cpu_ids[CPU_DOTHAN_A1]) ||
297 (centrino_cpu[cpu] == &cpu_ids[CPU_DOTHAN_B0])) {
298 msr = (msr >> 8) & 0xff;
299 return msr * 100000;
300 }
301
302 if ((!centrino_model[cpu]) || (!centrino_model[cpu]->op_points))
303 return 0;
304
305 msr &= 0xffff;
306 for (i=0;centrino_model[cpu]->op_points[i].frequency != CPUFREQ_TABLE_END; i++) {
307 if (msr == centrino_model[cpu]->op_points[i].index)
308 return centrino_model[cpu]->op_points[i].frequency;
309 }
310 if (failsafe)
311 return centrino_model[cpu]->op_points[i-1].frequency;
312 else
313 return 0;
314}
315
316/* Return the current CPU frequency in kHz */
317static unsigned int get_cur_freq(unsigned int cpu)
318{
319 unsigned l, h;
320 unsigned clock_freq;
321 cpumask_t saved_mask;
322
323 saved_mask = current->cpus_allowed;
324 set_cpus_allowed(current, cpumask_of_cpu(cpu));
325 if (smp_processor_id() != cpu)
326 return 0;
327
328 rdmsr(MSR_IA32_PERF_STATUS, l, h);
329 clock_freq = extract_clock(l, cpu, 0);
330
331 if (unlikely(clock_freq == 0)) {
332 /*
333 * On some CPUs, we can see transient MSR values (which are
334 * not present in _PSS), while CPU is doing some automatic
335 * P-state transition (like TM2). Get the last freq set
336 * in PERF_CTL.
337 */
338 rdmsr(MSR_IA32_PERF_CTL, l, h);
339 clock_freq = extract_clock(l, cpu, 1);
340 }
341
342 set_cpus_allowed(current, saved_mask);
343 return clock_freq;
344}
345
346
347#ifdef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI
348
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500349static struct acpi_processor_performance *acpi_perf_data[NR_CPUS];
350
351/*
352 * centrino_cpu_early_init_acpi - Do the preregistering with ACPI P-States
353 * library
354 *
355 * Before doing the actual init, we need to do _PSD related setup whenever
356 * supported by the BIOS. These are handled by this early_init routine.
357 */
358static int centrino_cpu_early_init_acpi(void)
359{
360 unsigned int i, j;
361 struct acpi_processor_performance *data;
362
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700363 for_each_possible_cpu(i) {
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500364 data = kzalloc(sizeof(struct acpi_processor_performance),
365 GFP_KERNEL);
366 if (!data) {
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700367 for_each_possible_cpu(j) {
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500368 kfree(acpi_perf_data[j]);
369 acpi_perf_data[j] = NULL;
370 }
371 return (-ENOMEM);
372 }
373 acpi_perf_data[i] = data;
374 }
375
376 acpi_processor_preregister_performance(acpi_perf_data);
377 return 0;
378}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380/*
381 * centrino_cpu_init_acpi - register with ACPI P-States library
382 *
383 * Register with the ACPI P-States library (part of drivers/acpi/processor.c)
384 * in order to determine correct frequency and voltage pairings by reading
385 * the _PSS of the ACPI DSDT or SSDT tables.
386 */
387static int centrino_cpu_init_acpi(struct cpufreq_policy *policy)
388{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 unsigned long cur_freq;
390 int result = 0, i;
391 unsigned int cpu = policy->cpu;
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500392 struct acpi_processor_performance *p;
393
394 p = acpi_perf_data[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /* register with ACPI core */
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500397 if (acpi_processor_register_performance(p, cpu)) {
Linus Torvalds37224472006-06-23 07:52:36 -0700398 dprintk(PFX "obtaining ACPI data failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -EIO;
400 }
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500401 policy->cpus = p->shared_cpu_map;
402 policy->shared_type = p->shared_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* verify the acpi_data */
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500405 if (p->state_count <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 dprintk("No P-States\n");
407 result = -ENODEV;
408 goto err_unreg;
409 }
410
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500411 if ((p->control_register.space_id != ACPI_ADR_SPACE_FIXED_HARDWARE) ||
412 (p->status_register.space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 dprintk("Invalid control/status registers (%x - %x)\n",
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500414 p->control_register.space_id, p->status_register.space_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 result = -EIO;
416 goto err_unreg;
417 }
418
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500419 for (i=0; i<p->state_count; i++) {
420 if (p->states[i].control != p->states[i].status) {
Mika Kukkonen123411f2005-08-07 23:13:00 +0300421 dprintk("Different control (%llu) and status values (%llu)\n",
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500422 p->states[i].control, p->states[i].status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 result = -EINVAL;
424 goto err_unreg;
425 }
426
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500427 if (!p->states[i].core_frequency) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 dprintk("Zero core frequency for state %u\n", i);
429 result = -EINVAL;
430 goto err_unreg;
431 }
432
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500433 if (p->states[i].core_frequency > p->states[0].core_frequency) {
Mika Kukkonen123411f2005-08-07 23:13:00 +0300434 dprintk("P%u has larger frequency (%llu) than P0 (%llu), skipping\n", i,
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500435 p->states[i].core_frequency, p->states[0].core_frequency);
436 p->states[i].core_frequency = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 continue;
438 }
439 }
440
Dave Jonesbfdc7082005-10-20 15:16:15 -0700441 centrino_model[cpu] = kzalloc(sizeof(struct cpu_model), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (!centrino_model[cpu]) {
443 result = -ENOMEM;
444 goto err_unreg;
445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 centrino_model[cpu]->model_name=NULL;
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500448 centrino_model[cpu]->max_freq = p->states[0].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 centrino_model[cpu]->op_points = kmalloc(sizeof(struct cpufreq_frequency_table) *
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500450 (p->state_count + 1), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (!centrino_model[cpu]->op_points) {
452 result = -ENOMEM;
453 goto err_kfree;
454 }
455
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500456 for (i=0; i<p->state_count; i++) {
457 centrino_model[cpu]->op_points[i].index = p->states[i].control;
458 centrino_model[cpu]->op_points[i].frequency = p->states[i].core_frequency * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 dprintk("adding state %i with frequency %u and control value %04x\n",
460 i, centrino_model[cpu]->op_points[i].frequency, centrino_model[cpu]->op_points[i].index);
461 }
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500462 centrino_model[cpu]->op_points[p->state_count].frequency = CPUFREQ_TABLE_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 cur_freq = get_cur_freq(cpu);
465
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500466 for (i=0; i<p->state_count; i++) {
467 if (!p->states[i].core_frequency) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 dprintk("skipping state %u\n", i);
469 centrino_model[cpu]->op_points[i].frequency = CPUFREQ_ENTRY_INVALID;
470 continue;
471 }
472
473 if (extract_clock(centrino_model[cpu]->op_points[i].index, cpu, 0) !=
474 (centrino_model[cpu]->op_points[i].frequency)) {
475 dprintk("Invalid encoded frequency (%u vs. %u)\n",
476 extract_clock(centrino_model[cpu]->op_points[i].index, cpu, 0),
477 centrino_model[cpu]->op_points[i].frequency);
478 result = -EINVAL;
479 goto err_kfree_all;
480 }
481
482 if (cur_freq == centrino_model[cpu]->op_points[i].frequency)
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500483 p->state = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
486 /* notify BIOS that we exist */
487 acpi_processor_notify_smm(THIS_MODULE);
488
489 return 0;
490
491 err_kfree_all:
492 kfree(centrino_model[cpu]->op_points);
493 err_kfree:
494 kfree(centrino_model[cpu]);
495 err_unreg:
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500496 acpi_processor_unregister_performance(p, cpu);
Linus Torvalds37224472006-06-23 07:52:36 -0700497 dprintk(PFX "invalid ACPI data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return (result);
499}
500#else
501static inline int centrino_cpu_init_acpi(struct cpufreq_policy *policy) { return -ENODEV; }
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500502static inline int centrino_cpu_early_init_acpi(void) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#endif
504
505static int centrino_cpu_init(struct cpufreq_policy *policy)
506{
507 struct cpuinfo_x86 *cpu = &cpu_data[policy->cpu];
508 unsigned freq;
509 unsigned l, h;
510 int ret;
511 int i;
512
513 /* Only Intel makes Enhanced Speedstep-capable CPUs */
514 if (cpu->x86_vendor != X86_VENDOR_INTEL || !cpu_has(cpu, X86_FEATURE_EST))
515 return -ENODEV;
516
Dave Jones8ad54962006-02-28 00:37:44 -0500517 if (cpu_has(cpu, X86_FEATURE_CONSTANT_TSC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 centrino_driver.flags |= CPUFREQ_CONST_LOOPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (centrino_cpu_init_acpi(policy)) {
521 if (policy->cpu != 0)
522 return -ENODEV;
523
Venkatesh Pallipadif914be72005-08-29 13:54:55 -0700524 for (i = 0; i < N_IDS; i++)
525 if (centrino_verify_cpu_id(cpu, &cpu_ids[i]))
526 break;
527
528 if (i != N_IDS)
529 centrino_cpu[policy->cpu] = &cpu_ids[i];
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (!centrino_cpu[policy->cpu]) {
Jan Beulich8c362a52006-04-26 15:41:22 +0200532 dprintk("found unsupported CPU with "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 "Enhanced SpeedStep: send /proc/cpuinfo to "
534 MAINTAINER "\n");
535 return -ENODEV;
536 }
537
538 if (centrino_cpu_init_table(policy)) {
539 return -ENODEV;
540 }
541 }
542
543 /* Check to see if Enhanced SpeedStep is enabled, and try to
544 enable it if not. */
545 rdmsr(MSR_IA32_MISC_ENABLE, l, h);
546
547 if (!(l & (1<<16))) {
548 l |= (1<<16);
549 dprintk("trying to enable Enhanced SpeedStep (%x)\n", l);
550 wrmsr(MSR_IA32_MISC_ENABLE, l, h);
551
552 /* check to see if it stuck */
553 rdmsr(MSR_IA32_MISC_ENABLE, l, h);
554 if (!(l & (1<<16))) {
555 printk(KERN_INFO PFX "couldn't enable Enhanced SpeedStep\n");
556 return -ENODEV;
557 }
558 }
559
560 freq = get_cur_freq(policy->cpu);
561
562 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
563 policy->cpuinfo.transition_latency = 10000; /* 10uS transition latency */
564 policy->cur = freq;
565
566 dprintk("centrino_cpu_init: cur=%dkHz\n", policy->cur);
567
568 ret = cpufreq_frequency_table_cpuinfo(policy, centrino_model[policy->cpu]->op_points);
569 if (ret)
570 return (ret);
571
572 cpufreq_frequency_table_get_attr(centrino_model[policy->cpu]->op_points, policy->cpu);
573
574 return 0;
575}
576
577static int centrino_cpu_exit(struct cpufreq_policy *policy)
578{
579 unsigned int cpu = policy->cpu;
580
581 if (!centrino_model[cpu])
582 return -ENODEV;
583
584 cpufreq_frequency_table_put_attr(cpu);
585
586#ifdef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI
587 if (!centrino_model[cpu]->model_name) {
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500588 static struct acpi_processor_performance *p;
589
590 if (acpi_perf_data[cpu]) {
591 p = acpi_perf_data[cpu];
592 dprintk("unregistering and freeing ACPI data\n");
593 acpi_processor_unregister_performance(p, cpu);
594 kfree(centrino_model[cpu]->op_points);
595 kfree(centrino_model[cpu]);
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598#endif
599
600 centrino_model[cpu] = NULL;
601
602 return 0;
603}
604
605/**
606 * centrino_verify - verifies a new CPUFreq policy
607 * @policy: new policy
608 *
609 * Limit must be within this model's frequency range at least one
610 * border included.
611 */
612static int centrino_verify (struct cpufreq_policy *policy)
613{
614 return cpufreq_frequency_table_verify(policy, centrino_model[policy->cpu]->op_points);
615}
616
617/**
618 * centrino_setpolicy - set a new CPUFreq policy
619 * @policy: new policy
620 * @target_freq: the target frequency
621 * @relation: how that frequency relates to achieved frequency (CPUFREQ_RELATION_L or CPUFREQ_RELATION_H)
622 *
623 * Sets a new CPUFreq policy.
624 */
625static int centrino_target (struct cpufreq_policy *policy,
626 unsigned int target_freq,
627 unsigned int relation)
628{
629 unsigned int newstate = 0;
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500630 unsigned int msr, oldmsr = 0, h = 0, cpu = policy->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct cpufreq_freqs freqs;
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500632 cpumask_t online_policy_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 cpumask_t saved_mask;
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500634 cpumask_t set_mask;
635 cpumask_t covered_cpus;
636 int retval = 0;
637 unsigned int j, k, first_cpu, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500639 if (unlikely(centrino_model[cpu] == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -ENODEV;
641
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500642 if (unlikely(cpufreq_frequency_table_target(policy,
643 centrino_model[cpu]->op_points,
644 target_freq,
645 relation,
646 &newstate))) {
647 return -EINVAL;
648 }
649
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500650#ifdef CONFIG_HOTPLUG_CPU
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500651 /* cpufreq holds the hotplug lock, so we are safe from here on */
652 cpus_and(online_policy_cpus, cpu_online_map, policy->cpus);
Andrew Morton7e1f19e2006-03-28 17:03:00 -0500653#else
654 online_policy_cpus = policy->cpus;
655#endif
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 saved_mask = current->cpus_allowed;
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500658 first_cpu = 1;
659 cpus_clear(covered_cpus);
660 for_each_cpu_mask(j, online_policy_cpus) {
661 /*
662 * Support for SMP systems.
663 * Make sure we are running on CPU that wants to change freq
664 */
665 cpus_clear(set_mask);
666 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ANY)
667 cpus_or(set_mask, set_mask, online_policy_cpus);
668 else
669 cpu_set(j, set_mask);
670
671 set_cpus_allowed(current, set_mask);
672 if (unlikely(!cpu_isset(smp_processor_id(), set_mask))) {
673 dprintk("couldn't limit to CPUs in this domain\n");
674 retval = -EAGAIN;
675 if (first_cpu) {
676 /* We haven't started the transition yet. */
677 goto migrate_end;
678 }
679 break;
680 }
681
682 msr = centrino_model[cpu]->op_points[newstate].index;
683
684 if (first_cpu) {
685 rdmsr(MSR_IA32_PERF_CTL, oldmsr, h);
686 if (msr == (oldmsr & 0xffff)) {
687 dprintk("no change needed - msr was and needs "
688 "to be %x\n", oldmsr);
689 retval = 0;
690 goto migrate_end;
691 }
692
693 freqs.old = extract_clock(oldmsr, cpu, 0);
694 freqs.new = extract_clock(msr, cpu, 0);
695
696 dprintk("target=%dkHz old=%d new=%d msr=%04x\n",
697 target_freq, freqs.old, freqs.new, msr);
698
699 for_each_cpu_mask(k, online_policy_cpus) {
700 freqs.cpu = k;
701 cpufreq_notify_transition(&freqs,
702 CPUFREQ_PRECHANGE);
703 }
704
705 first_cpu = 0;
706 /* all but 16 LSB are reserved, treat them with care */
707 oldmsr &= ~0xffff;
708 msr &= 0xffff;
709 oldmsr |= msr;
710 }
711
712 wrmsr(MSR_IA32_PERF_CTL, oldmsr, h);
713 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ANY)
714 break;
715
716 cpu_set(j, covered_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500719 for_each_cpu_mask(k, online_policy_cpus) {
720 freqs.cpu = k;
721 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500724 if (unlikely(retval)) {
725 /*
726 * We have failed halfway through the frequency change.
727 * We have sent callbacks to policy->cpus and
728 * MSRs have already been written on coverd_cpus.
729 * Best effort undo..
730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500732 if (!cpus_empty(covered_cpus)) {
733 for_each_cpu_mask(j, covered_cpus) {
734 set_cpus_allowed(current, cpumask_of_cpu(j));
735 wrmsr(MSR_IA32_PERF_CTL, oldmsr, h);
736 }
737 }
738
739 tmp = freqs.new;
740 freqs.new = freqs.old;
741 freqs.old = tmp;
742 for_each_cpu_mask(j, online_policy_cpus) {
743 freqs.cpu = j;
744 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
745 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749migrate_end:
750 set_cpus_allowed(current, saved_mask);
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754static struct freq_attr* centrino_attr[] = {
755 &cpufreq_freq_attr_scaling_available_freqs,
756 NULL,
757};
758
759static struct cpufreq_driver centrino_driver = {
760 .name = "centrino", /* should be speedstep-centrino,
761 but there's a 16 char limit */
762 .init = centrino_cpu_init,
763 .exit = centrino_cpu_exit,
764 .verify = centrino_verify,
765 .target = centrino_target,
766 .get = get_cur_freq,
767 .attr = centrino_attr,
768 .owner = THIS_MODULE,
769};
770
771
772/**
773 * centrino_init - initializes the Enhanced SpeedStep CPUFreq driver
774 *
775 * Initializes the Enhanced SpeedStep support. Returns -ENODEV on
776 * unsupported devices, -ENOENT if there's no voltage table for this
777 * particular CPU model, -EINVAL on problems during initiatization,
778 * and zero on success.
779 *
780 * This is quite picky. Not only does the CPU have to advertise the
781 * "est" flag in the cpuid capability flags, we look for a specific
782 * CPU model and stepping, and we need to have the exact model name in
783 * our voltage tables. That is, be paranoid about not releasing
784 * someone's valuable magic smoke.
785 */
786static int __init centrino_init(void)
787{
788 struct cpuinfo_x86 *cpu = cpu_data;
789
790 if (!cpu_has(cpu, X86_FEATURE_EST))
791 return -ENODEV;
792
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500793 centrino_cpu_early_init_acpi();
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return cpufreq_register_driver(&centrino_driver);
796}
797
798static void __exit centrino_exit(void)
799{
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500800#ifdef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI
801 unsigned int j;
802#endif
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 cpufreq_unregister_driver(&centrino_driver);
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500805
806#ifdef CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700807 for_each_possible_cpu(j) {
Venkatesh Pallipadic52851b2005-12-14 15:05:00 -0500808 kfree(acpi_perf_data[j]);
809 acpi_perf_data[j] = NULL;
810 }
811#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814MODULE_AUTHOR ("Jeremy Fitzhardinge <jeremy@goop.org>");
815MODULE_DESCRIPTION ("Enhanced SpeedStep driver for Intel Pentium M processors.");
816MODULE_LICENSE ("GPL");
817
818late_initcall(centrino_init);
819module_exit(centrino_exit);