[CPUFREQ] Move PMBASE reading away and do it only once at initialization time
[linux-2.6/verdex.git] / arch / i386 / kernel / cpu / cpufreq / speedstep-ich.c
blobb425cd3d1838377aee89ad50411b2f51b6d40306
1 /*
2 * (C) 2001 Dave Jones, Arjan van de ven.
3 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
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.
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.
13 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
17 /*********************************************************************
18 * SPEEDSTEP - DEFINITIONS *
19 *********************************************************************/
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>
28 #include "speedstep-lib.h"
31 /* speedstep_chipset:
32 * It is necessary to know which chipset is used. As accesses to
33 * this device occur at various places in this module, we need a
34 * static struct pci_dev * pointing to that device.
36 static struct pci_dev *speedstep_chipset_dev;
39 /* speedstep_processor
41 static unsigned int speedstep_processor = 0;
43 static u32 pmbase;
46 * There are only two frequency states for each processor. Values
47 * are in kHz for the time being.
49 static struct cpufreq_frequency_table speedstep_freqs[] = {
50 {SPEEDSTEP_HIGH, 0},
51 {SPEEDSTEP_LOW, 0},
52 {0, CPUFREQ_TABLE_END},
56 #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "speedstep-ich", msg)
59 /**
60 * speedstep_find_register - read the PMBASE address
62 * Returns: -ENODEV if no register could be found
64 static int speedstep_find_register (void)
66 if (!speedstep_chipset_dev)
67 return -ENODEV;
69 /* get PMBASE */
70 pci_read_config_dword(speedstep_chipset_dev, 0x40, &pmbase);
71 if (!(pmbase & 0x01)) {
72 printk(KERN_ERR "speedstep-ich: could not find speedstep register\n");
73 return -ENODEV;
76 pmbase &= 0xFFFFFFFE;
77 if (!pmbase) {
78 printk(KERN_ERR "speedstep-ich: could not find speedstep register\n");
79 return -ENODEV;
82 dprintk("pmbase is 0x%x\n", pmbase);
83 return 0;
86 /**
87 * speedstep_set_state - set the SpeedStep state
88 * @state: new processor frequency state (SPEEDSTEP_LOW or SPEEDSTEP_HIGH)
90 * Tries to change the SpeedStep state.
92 static void speedstep_set_state (unsigned int state)
94 u8 pm2_blk;
95 u8 value;
96 unsigned long flags;
98 if (state > 0x1)
99 return;
101 /* Disable IRQs */
102 local_irq_save(flags);
104 /* read state */
105 value = inb(pmbase + 0x50);
107 dprintk("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value);
109 /* write new state */
110 value &= 0xFE;
111 value |= state;
113 dprintk("writing 0x%x to pmbase 0x%x + 0x50\n", value, pmbase);
115 /* Disable bus master arbitration */
116 pm2_blk = inb(pmbase + 0x20);
117 pm2_blk |= 0x01;
118 outb(pm2_blk, (pmbase + 0x20));
120 /* Actual transition */
121 outb(value, (pmbase + 0x50));
123 /* Restore bus master arbitration */
124 pm2_blk &= 0xfe;
125 outb(pm2_blk, (pmbase + 0x20));
127 /* check if transition was successful */
128 value = inb(pmbase + 0x50);
130 /* Enable IRQs */
131 local_irq_restore(flags);
133 dprintk("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value);
135 if (state == (value & 0x1)) {
136 dprintk("change to %u MHz succeeded\n", (speedstep_get_processor_frequency(speedstep_processor) / 1000));
137 } else {
138 printk (KERN_ERR "cpufreq: change failed - I/O error\n");
141 return;
146 * speedstep_activate - activate SpeedStep control in the chipset
148 * Tries to activate the SpeedStep status and control registers.
149 * Returns -EINVAL on an unsupported chipset, and zero on success.
151 static int speedstep_activate (void)
153 u16 value = 0;
155 if (!speedstep_chipset_dev)
156 return -EINVAL;
158 pci_read_config_word(speedstep_chipset_dev, 0x00A0, &value);
159 if (!(value & 0x08)) {
160 value |= 0x08;
161 dprintk("activating SpeedStep (TM) registers\n");
162 pci_write_config_word(speedstep_chipset_dev, 0x00A0, value);
165 return 0;
170 * speedstep_detect_chipset - detect the Southbridge which contains SpeedStep logic
172 * Detects ICH2-M, ICH3-M and ICH4-M so far. The pci_dev points to
173 * the LPC bridge / PM module which contains all power-management
174 * functions. Returns the SPEEDSTEP_CHIPSET_-number for the detected
175 * chipset, or zero on failure.
177 static unsigned int speedstep_detect_chipset (void)
179 speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
180 PCI_DEVICE_ID_INTEL_82801DB_12,
181 PCI_ANY_ID,
182 PCI_ANY_ID,
183 NULL);
184 if (speedstep_chipset_dev)
185 return 4; /* 4-M */
187 speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
188 PCI_DEVICE_ID_INTEL_82801CA_12,
189 PCI_ANY_ID,
190 PCI_ANY_ID,
191 NULL);
192 if (speedstep_chipset_dev)
193 return 3; /* 3-M */
196 speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL,
197 PCI_DEVICE_ID_INTEL_82801BA_10,
198 PCI_ANY_ID,
199 PCI_ANY_ID,
200 NULL);
201 if (speedstep_chipset_dev) {
202 /* speedstep.c causes lockups on Dell Inspirons 8000 and
203 * 8100 which use a pretty old revision of the 82815
204 * host brige. Abort on these systems.
206 static struct pci_dev *hostbridge;
207 u8 rev = 0;
209 hostbridge = pci_get_subsys(PCI_VENDOR_ID_INTEL,
210 PCI_DEVICE_ID_INTEL_82815_MC,
211 PCI_ANY_ID,
212 PCI_ANY_ID,
213 NULL);
215 if (!hostbridge)
216 return 2; /* 2-M */
218 pci_read_config_byte(hostbridge, PCI_REVISION_ID, &rev);
219 if (rev < 5) {
220 dprintk("hostbridge does not support speedstep\n");
221 speedstep_chipset_dev = NULL;
222 pci_dev_put(hostbridge);
223 return 0;
226 pci_dev_put(hostbridge);
227 return 2; /* 2-M */
230 return 0;
233 static unsigned int _speedstep_get(cpumask_t cpus)
235 unsigned int speed;
236 cpumask_t cpus_allowed;
238 cpus_allowed = current->cpus_allowed;
239 set_cpus_allowed(current, cpus);
240 speed = speedstep_get_processor_frequency(speedstep_processor);
241 set_cpus_allowed(current, cpus_allowed);
242 dprintk("detected %u kHz as current frequency\n", speed);
243 return speed;
246 static unsigned int speedstep_get(unsigned int cpu)
248 return _speedstep_get(cpumask_of_cpu(cpu));
252 * speedstep_target - set a new CPUFreq policy
253 * @policy: new policy
254 * @target_freq: the target frequency
255 * @relation: how that frequency relates to achieved frequency (CPUFREQ_RELATION_L or CPUFREQ_RELATION_H)
257 * Sets a new CPUFreq policy.
259 static int speedstep_target (struct cpufreq_policy *policy,
260 unsigned int target_freq,
261 unsigned int relation)
263 unsigned int newstate = 0;
264 struct cpufreq_freqs freqs;
265 cpumask_t cpus_allowed;
266 int i;
268 if (cpufreq_frequency_table_target(policy, &speedstep_freqs[0], target_freq, relation, &newstate))
269 return -EINVAL;
271 freqs.old = _speedstep_get(policy->cpus);
272 freqs.new = speedstep_freqs[newstate].frequency;
273 freqs.cpu = policy->cpu;
275 dprintk("transiting from %u to %u kHz\n", freqs.old, freqs.new);
277 /* no transition necessary */
278 if (freqs.old == freqs.new)
279 return 0;
281 cpus_allowed = current->cpus_allowed;
283 for_each_cpu_mask(i, policy->cpus) {
284 freqs.cpu = i;
285 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
288 /* switch to physical CPU where state is to be changed */
289 set_cpus_allowed(current, policy->cpus);
291 speedstep_set_state(newstate);
293 /* allow to be run on all CPUs */
294 set_cpus_allowed(current, cpus_allowed);
296 for_each_cpu_mask(i, policy->cpus) {
297 freqs.cpu = i;
298 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
301 return 0;
306 * speedstep_verify - verifies a new CPUFreq policy
307 * @policy: new policy
309 * Limit must be within speedstep_low_freq and speedstep_high_freq, with
310 * at least one border included.
312 static int speedstep_verify (struct cpufreq_policy *policy)
314 return cpufreq_frequency_table_verify(policy, &speedstep_freqs[0]);
318 static int speedstep_cpu_init(struct cpufreq_policy *policy)
320 int result = 0;
321 unsigned int speed;
322 cpumask_t cpus_allowed;
324 /* only run on CPU to be set, or on its sibling */
325 #ifdef CONFIG_SMP
326 policy->cpus = cpu_sibling_map[policy->cpu];
327 #endif
329 cpus_allowed = current->cpus_allowed;
330 set_cpus_allowed(current, policy->cpus);
332 /* detect low and high frequency and transition latency */
333 result = speedstep_get_freqs(speedstep_processor,
334 &speedstep_freqs[SPEEDSTEP_LOW].frequency,
335 &speedstep_freqs[SPEEDSTEP_HIGH].frequency,
336 &policy->cpuinfo.transition_latency,
337 &speedstep_set_state);
338 set_cpus_allowed(current, cpus_allowed);
339 if (result)
340 return result;
342 /* get current speed setting */
343 speed = _speedstep_get(policy->cpus);
344 if (!speed)
345 return -EIO;
347 dprintk("currently at %s speed setting - %i MHz\n",
348 (speed == speedstep_freqs[SPEEDSTEP_LOW].frequency) ? "low" : "high",
349 (speed / 1000));
351 /* cpuinfo and default policy values */
352 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
353 policy->cur = speed;
355 result = cpufreq_frequency_table_cpuinfo(policy, speedstep_freqs);
356 if (result)
357 return (result);
359 cpufreq_frequency_table_get_attr(speedstep_freqs, policy->cpu);
361 return 0;
365 static int speedstep_cpu_exit(struct cpufreq_policy *policy)
367 cpufreq_frequency_table_put_attr(policy->cpu);
368 return 0;
371 static struct freq_attr* speedstep_attr[] = {
372 &cpufreq_freq_attr_scaling_available_freqs,
373 NULL,
377 static struct cpufreq_driver speedstep_driver = {
378 .name = "speedstep-ich",
379 .verify = speedstep_verify,
380 .target = speedstep_target,
381 .init = speedstep_cpu_init,
382 .exit = speedstep_cpu_exit,
383 .get = speedstep_get,
384 .owner = THIS_MODULE,
385 .attr = speedstep_attr,
390 * speedstep_init - initializes the SpeedStep CPUFreq driver
392 * Initializes the SpeedStep support. Returns -ENODEV on unsupported
393 * devices, -EINVAL on problems during initiatization, and zero on
394 * success.
396 static int __init speedstep_init(void)
398 /* detect processor */
399 speedstep_processor = speedstep_detect_processor();
400 if (!speedstep_processor) {
401 dprintk("Intel(R) SpeedStep(TM) capable processor not found\n");
402 return -ENODEV;
405 /* detect chipset */
406 if (!speedstep_detect_chipset()) {
407 dprintk("Intel(R) SpeedStep(TM) for this chipset not (yet) available.\n");
408 return -ENODEV;
411 /* activate speedstep support */
412 if (speedstep_activate()) {
413 pci_dev_put(speedstep_chipset_dev);
414 return -EINVAL;
417 if (speedstep_find_register())
418 return -ENODEV;
420 return cpufreq_register_driver(&speedstep_driver);
425 * speedstep_exit - unregisters SpeedStep support
427 * Unregisters SpeedStep support.
429 static void __exit speedstep_exit(void)
431 pci_dev_put(speedstep_chipset_dev);
432 cpufreq_unregister_driver(&speedstep_driver);
436 MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>, Dominik Brodowski <linux@brodo.de>");
437 MODULE_DESCRIPTION ("Speedstep driver for Intel mobile processors on chipsets with ICH-M southbridges.");
438 MODULE_LICENSE ("GPL");
440 module_init(speedstep_init);
441 module_exit(speedstep_exit);