blob: 3ae5a7a3a500dc2ddf392ba730736ade952057d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (C) 2001 Dave Jones, Arjan van de ven.
3 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
4 *
5 * Licensed under the terms of the GNU GPL License version 2.
6 * Based upon reverse engineered information, and on Intel documentation
7 * for chipsets ICH2-M and ICH3-M.
8 *
9 * Many thanks to Ducrot Bruno for finding and fixing the last
10 * "missing link" for ICH2-M/ICH3-M support, and to Thomas Winkler
11 * for extensive testing.
12 *
13 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
14 */
15
16
17/*********************************************************************
18 * SPEEDSTEP - DEFINITIONS *
19 *********************************************************************/
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/cpufreq.h>
25#include <linux/pci.h>
26#include <linux/slab.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040027#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include "speedstep-lib.h"
30
31
32/* speedstep_chipset:
33 * It is necessary to know which chipset is used. As accesses to
34 * this device occur at various places in this module, we need a
35 * static struct pci_dev * pointing to that device.
36 */
37static struct pci_dev *speedstep_chipset_dev;
38
39
40/* speedstep_processor
41 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050042static unsigned int speedstep_processor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Mattia Dongili9a7d82a2005-11-30 22:00:59 +010044static u32 pmbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * There are only two frequency states for each processor. Values
48 * are in kHz for the time being.
49 */
50static struct cpufreq_frequency_table speedstep_freqs[] = {
51 {SPEEDSTEP_HIGH, 0},
52 {SPEEDSTEP_LOW, 0},
53 {0, CPUFREQ_TABLE_END},
54};
55
56
Dave Jonesbbfebd62009-01-17 23:55:22 -050057#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \
58 "speedstep-ich", msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60
61/**
Mattia Dongili9a7d82a2005-11-30 22:00:59 +010062 * speedstep_find_register - read the PMBASE address
63 *
64 * Returns: -ENODEV if no register could be found
65 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050066static int speedstep_find_register(void)
Mattia Dongili9a7d82a2005-11-30 22:00:59 +010067{
68 if (!speedstep_chipset_dev)
69 return -ENODEV;
70
71 /* get PMBASE */
72 pci_read_config_dword(speedstep_chipset_dev, 0x40, &pmbase);
73 if (!(pmbase & 0x01)) {
74 printk(KERN_ERR "speedstep-ich: could not find speedstep register\n");
75 return -ENODEV;
76 }
77
78 pmbase &= 0xFFFFFFFE;
79 if (!pmbase) {
80 printk(KERN_ERR "speedstep-ich: could not find speedstep register\n");
81 return -ENODEV;
82 }
83
84 dprintk("pmbase is 0x%x\n", pmbase);
85 return 0;
86}
87
88/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * speedstep_set_state - set the SpeedStep state
90 * @state: new processor frequency state (SPEEDSTEP_LOW or SPEEDSTEP_HIGH)
91 *
Rusty Russell394122a2009-06-11 22:59:58 +093092 * Tries to change the SpeedStep state. Can be called from
93 * smp_call_function_single.
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050095static void speedstep_set_state(unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 u8 pm2_blk;
98 u8 value;
99 unsigned long flags;
100
Mattia Dongili9a7d82a2005-11-30 22:00:59 +0100101 if (state > 0x1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 /* Disable IRQs */
105 local_irq_save(flags);
106
107 /* read state */
108 value = inb(pmbase + 0x50);
109
110 dprintk("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value);
111
112 /* write new state */
113 value &= 0xFE;
114 value |= state;
115
116 dprintk("writing 0x%x to pmbase 0x%x + 0x50\n", value, pmbase);
117
118 /* Disable bus master arbitration */
119 pm2_blk = inb(pmbase + 0x20);
120 pm2_blk |= 0x01;
121 outb(pm2_blk, (pmbase + 0x20));
122
123 /* Actual transition */
124 outb(value, (pmbase + 0x50));
125
126 /* Restore bus master arbitration */
127 pm2_blk &= 0xfe;
128 outb(pm2_blk, (pmbase + 0x20));
129
130 /* check if transition was successful */
131 value = inb(pmbase + 0x50);
132
133 /* Enable IRQs */
134 local_irq_restore(flags);
135
136 dprintk("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value);
137
Dave Jonesbbfebd62009-01-17 23:55:22 -0500138 if (state == (value & 0x1))
139 dprintk("change to %u MHz succeeded\n",
140 speedstep_get_frequency(speedstep_processor) / 1000);
141 else
142 printk(KERN_ERR "cpufreq: change failed - I/O error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 return;
145}
146
Rusty Russell394122a2009-06-11 22:59:58 +0930147/* Wrapper for smp_call_function_single. */
148static void _speedstep_set_state(void *_state)
149{
150 speedstep_set_state(*(unsigned int *)_state);
151}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/**
154 * speedstep_activate - activate SpeedStep control in the chipset
155 *
156 * Tries to activate the SpeedStep status and control registers.
157 * Returns -EINVAL on an unsupported chipset, and zero on success.
158 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500159static int speedstep_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 u16 value = 0;
162
163 if (!speedstep_chipset_dev)
164 return -EINVAL;
165
166 pci_read_config_word(speedstep_chipset_dev, 0x00A0, &value);
167 if (!(value & 0x08)) {
168 value |= 0x08;
169 dprintk("activating SpeedStep (TM) registers\n");
170 pci_write_config_word(speedstep_chipset_dev, 0x00A0, value);
171 }
172
173 return 0;
174}
175
176
177/**
178 * speedstep_detect_chipset - detect the Southbridge which contains SpeedStep logic
179 *
180 * Detects ICH2-M, ICH3-M and ICH4-M so far. The pci_dev points to
181 * the LPC bridge / PM module which contains all power-management
182 * functions. Returns the SPEEDSTEP_CHIPSET_-number for the detected
183 * chipset, or zero on failure.
184 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500185static unsigned int speedstep_detect_chipset(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
188 PCI_DEVICE_ID_INTEL_82801DB_12,
Dave Jonesbbfebd62009-01-17 23:55:22 -0500189 PCI_ANY_ID, PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 NULL);
191 if (speedstep_chipset_dev)
192 return 4; /* 4-M */
193
194 speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
195 PCI_DEVICE_ID_INTEL_82801CA_12,
Dave Jonesbbfebd62009-01-17 23:55:22 -0500196 PCI_ANY_ID, PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 NULL);
198 if (speedstep_chipset_dev)
199 return 3; /* 3-M */
200
201
202 speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
203 PCI_DEVICE_ID_INTEL_82801BA_10,
Dave Jonesbbfebd62009-01-17 23:55:22 -0500204 PCI_ANY_ID, PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 NULL);
206 if (speedstep_chipset_dev) {
207 /* speedstep.c causes lockups on Dell Inspirons 8000 and
208 * 8100 which use a pretty old revision of the 82815
209 * host brige. Abort on these systems.
210 */
211 static struct pci_dev *hostbridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 hostbridge = pci_get_subsys(PCI_VENDOR_ID_INTEL,
214 PCI_DEVICE_ID_INTEL_82815_MC,
Dave Jonesbbfebd62009-01-17 23:55:22 -0500215 PCI_ANY_ID, PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 NULL);
217
218 if (!hostbridge)
219 return 2; /* 2-M */
220
Auke Kok44c10132007-06-08 15:46:36 -0700221 if (hostbridge->revision < 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 dprintk("hostbridge does not support speedstep\n");
223 speedstep_chipset_dev = NULL;
224 pci_dev_put(hostbridge);
225 return 0;
226 }
227
228 pci_dev_put(hostbridge);
229 return 2; /* 2-M */
230 }
231
232 return 0;
233}
234
Rusty Russell8dca15e2009-11-02 23:35:30 -0800235static void get_freq_data(void *_speed)
Rusty Russell394122a2009-06-11 22:59:58 +0930236{
Rusty Russell8dca15e2009-11-02 23:35:30 -0800237 unsigned int *speed = _speed;
Rusty Russell394122a2009-06-11 22:59:58 +0930238
Rusty Russell8dca15e2009-11-02 23:35:30 -0800239 *speed = speedstep_get_frequency(speedstep_processor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242static unsigned int speedstep_get(unsigned int cpu)
243{
Rusty Russell8dca15e2009-11-02 23:35:30 -0800244 unsigned int speed;
Rusty Russell394122a2009-06-11 22:59:58 +0930245
246 /* You're supposed to ensure CPU is online. */
Rusty Russell8dca15e2009-11-02 23:35:30 -0800247 if (smp_call_function_single(cpu, get_freq_data, &speed, 1) != 0)
Rusty Russell394122a2009-06-11 22:59:58 +0930248 BUG();
249
Rusty Russell8dca15e2009-11-02 23:35:30 -0800250 dprintk("detected %u kHz as current frequency\n", speed);
251 return speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254/**
255 * speedstep_target - set a new CPUFreq policy
256 * @policy: new policy
257 * @target_freq: the target frequency
Dave Jonesbbfebd62009-01-17 23:55:22 -0500258 * @relation: how that frequency relates to achieved frequency
259 * (CPUFREQ_RELATION_L or CPUFREQ_RELATION_H)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 *
261 * Sets a new CPUFreq policy.
262 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500263static int speedstep_target(struct cpufreq_policy *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 unsigned int target_freq,
265 unsigned int relation)
266{
Rusty Russell394122a2009-06-11 22:59:58 +0930267 unsigned int newstate = 0, policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct cpufreq_freqs freqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int i;
270
Dave Jonesbbfebd62009-01-17 23:55:22 -0500271 if (cpufreq_frequency_table_target(policy, &speedstep_freqs[0],
272 target_freq, relation, &newstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return -EINVAL;
274
Rusty Russell394122a2009-06-11 22:59:58 +0930275 policy_cpu = cpumask_any_and(policy->cpus, cpu_online_mask);
276 freqs.old = speedstep_get(policy_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 freqs.new = speedstep_freqs[newstate].frequency;
278 freqs.cpu = policy->cpu;
279
280 dprintk("transiting from %u to %u kHz\n", freqs.old, freqs.new);
281
282 /* no transition necessary */
283 if (freqs.old == freqs.new)
284 return 0;
285
Rusty Russell835481d2009-01-04 05:18:06 -0800286 for_each_cpu(i, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 freqs.cpu = i;
288 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
289 }
290
Rusty Russell394122a2009-06-11 22:59:58 +0930291 smp_call_function_single(policy_cpu, _speedstep_set_state, &newstate,
292 true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Rusty Russell835481d2009-01-04 05:18:06 -0800294 for_each_cpu(i, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 freqs.cpu = i;
296 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
297 }
298
299 return 0;
300}
301
302
303/**
304 * speedstep_verify - verifies a new CPUFreq policy
305 * @policy: new policy
306 *
307 * Limit must be within speedstep_low_freq and speedstep_high_freq, with
308 * at least one border included.
309 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500310static int speedstep_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 return cpufreq_frequency_table_verify(policy, &speedstep_freqs[0]);
313}
314
Rusty Russell394122a2009-06-11 22:59:58 +0930315struct get_freqs {
316 struct cpufreq_policy *policy;
317 int ret;
318};
319
320static void get_freqs_on_cpu(void *_get_freqs)
321{
322 struct get_freqs *get_freqs = _get_freqs;
323
324 get_freqs->ret =
325 speedstep_get_freqs(speedstep_processor,
326 &speedstep_freqs[SPEEDSTEP_LOW].frequency,
327 &speedstep_freqs[SPEEDSTEP_HIGH].frequency,
328 &get_freqs->policy->cpuinfo.transition_latency,
329 &speedstep_set_state);
330}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332static int speedstep_cpu_init(struct cpufreq_policy *policy)
333{
Rusty Russell394122a2009-06-11 22:59:58 +0930334 int result;
335 unsigned int policy_cpu, speed;
336 struct get_freqs gf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /* only run on CPU to be set, or on its sibling */
339#ifdef CONFIG_SMP
Rusty Russell7ad728f2009-03-13 14:49:50 +1030340 cpumask_copy(policy->cpus, cpu_sibling_mask(policy->cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#endif
Rusty Russell394122a2009-06-11 22:59:58 +0930342 policy_cpu = cpumask_any_and(policy->cpus, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Mattia Dongili1a107602005-12-02 21:59:41 +0100344 /* detect low and high frequency and transition latency */
Rusty Russell394122a2009-06-11 22:59:58 +0930345 gf.policy = policy;
346 smp_call_function_single(policy_cpu, get_freqs_on_cpu, &gf, 1);
347 if (gf.ret)
348 return gf.ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 /* get current speed setting */
Rusty Russell394122a2009-06-11 22:59:58 +0930351 speed = speedstep_get(policy_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (!speed)
353 return -EIO;
354
355 dprintk("currently at %s speed setting - %i MHz\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500356 (speed == speedstep_freqs[SPEEDSTEP_LOW].frequency)
357 ? "low" : "high",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 (speed / 1000));
359
360 /* cpuinfo and default policy values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 policy->cur = speed;
362
363 result = cpufreq_frequency_table_cpuinfo(policy, speedstep_freqs);
364 if (result)
Dave Jonesbbfebd62009-01-17 23:55:22 -0500365 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Dave Jonesbbfebd62009-01-17 23:55:22 -0500367 cpufreq_frequency_table_get_attr(speedstep_freqs, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 return 0;
370}
371
372
373static int speedstep_cpu_exit(struct cpufreq_policy *policy)
374{
375 cpufreq_frequency_table_put_attr(policy->cpu);
376 return 0;
377}
378
Dave Jonesbbfebd62009-01-17 23:55:22 -0500379static struct freq_attr *speedstep_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 &cpufreq_freq_attr_scaling_available_freqs,
381 NULL,
382};
383
384
Linus Torvalds221dee22007-02-26 14:55:48 -0800385static struct cpufreq_driver speedstep_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 .name = "speedstep-ich",
387 .verify = speedstep_verify,
388 .target = speedstep_target,
389 .init = speedstep_cpu_init,
390 .exit = speedstep_cpu_exit,
391 .get = speedstep_get,
392 .owner = THIS_MODULE,
393 .attr = speedstep_attr,
394};
395
396
397/**
398 * speedstep_init - initializes the SpeedStep CPUFreq driver
399 *
400 * Initializes the SpeedStep support. Returns -ENODEV on unsupported
401 * devices, -EINVAL on problems during initiatization, and zero on
402 * success.
403 */
404static int __init speedstep_init(void)
405{
406 /* detect processor */
407 speedstep_processor = speedstep_detect_processor();
408 if (!speedstep_processor) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500409 dprintk("Intel(R) SpeedStep(TM) capable processor "
410 "not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return -ENODEV;
412 }
413
414 /* detect chipset */
415 if (!speedstep_detect_chipset()) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500416 dprintk("Intel(R) SpeedStep(TM) for this chipset not "
417 "(yet) available.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return -ENODEV;
419 }
420
421 /* activate speedstep support */
422 if (speedstep_activate()) {
423 pci_dev_put(speedstep_chipset_dev);
424 return -EINVAL;
425 }
426
Mattia Dongili9a7d82a2005-11-30 22:00:59 +0100427 if (speedstep_find_register())
428 return -ENODEV;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return cpufreq_register_driver(&speedstep_driver);
431}
432
433
434/**
435 * speedstep_exit - unregisters SpeedStep support
436 *
437 * Unregisters SpeedStep support.
438 */
439static void __exit speedstep_exit(void)
440{
441 pci_dev_put(speedstep_chipset_dev);
442 cpufreq_unregister_driver(&speedstep_driver);
443}
444
445
Dave Jonesbbfebd62009-01-17 23:55:22 -0500446MODULE_AUTHOR("Dave Jones <davej@redhat.com>, "
447 "Dominik Brodowski <linux@brodo.de>");
448MODULE_DESCRIPTION("Speedstep driver for Intel mobile processors on chipsets "
449 "with ICH-M southbridges.");
450MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452module_init(speedstep_init);
453module_exit(speedstep_exit);