Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 21 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/cpufreq.h> |
| 27 | #include <linux/pci.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 28 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 30 | #include <asm/cpu_device_id.h> |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "speedstep-lib.h" |
| 33 | |
| 34 | |
| 35 | /* speedstep_chipset: |
| 36 | * It is necessary to know which chipset is used. As accesses to |
| 37 | * this device occur at various places in this module, we need a |
| 38 | * static struct pci_dev * pointing to that device. |
| 39 | */ |
| 40 | static struct pci_dev *speedstep_chipset_dev; |
| 41 | |
| 42 | |
| 43 | /* speedstep_processor |
| 44 | */ |
Rusty Russell | 1cce76c | 2009-11-17 14:39:53 -0800 | [diff] [blame] | 45 | static enum speedstep_processor speedstep_processor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 47 | static u32 pmbase; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | /* |
| 50 | * There are only two frequency states for each processor. Values |
| 51 | * are in kHz for the time being. |
| 52 | */ |
| 53 | static struct cpufreq_frequency_table speedstep_freqs[] = { |
Viresh Kumar | 7f4b046 | 2014-03-28 19:11:47 +0530 | [diff] [blame] | 54 | {0, SPEEDSTEP_HIGH, 0}, |
| 55 | {0, SPEEDSTEP_LOW, 0}, |
| 56 | {0, 0, CPUFREQ_TABLE_END}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | /** |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 61 | * speedstep_find_register - read the PMBASE address |
| 62 | * |
| 63 | * Returns: -ENODEV if no register could be found |
| 64 | */ |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 65 | static int speedstep_find_register(void) |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 66 | { |
| 67 | if (!speedstep_chipset_dev) |
| 68 | return -ENODEV; |
| 69 | |
| 70 | /* get PMBASE */ |
| 71 | pci_read_config_dword(speedstep_chipset_dev, 0x40, &pmbase); |
| 72 | if (!(pmbase & 0x01)) { |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 73 | pr_err("could not find speedstep register\n"); |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 74 | return -ENODEV; |
| 75 | } |
| 76 | |
| 77 | pmbase &= 0xFFFFFFFE; |
| 78 | if (!pmbase) { |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 79 | pr_err("could not find speedstep register\n"); |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 80 | return -ENODEV; |
| 81 | } |
| 82 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 83 | pr_debug("pmbase is 0x%x\n", pmbase); |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | * speedstep_set_state - set the SpeedStep state |
| 89 | * @state: new processor frequency state (SPEEDSTEP_LOW or SPEEDSTEP_HIGH) |
| 90 | * |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 91 | * Tries to change the SpeedStep state. Can be called from |
| 92 | * smp_call_function_single. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | */ |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 94 | static void speedstep_set_state(unsigned int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | u8 pm2_blk; |
| 97 | u8 value; |
| 98 | unsigned long flags; |
| 99 | |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 100 | if (state > 0x1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | return; |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | /* Disable IRQs */ |
| 104 | local_irq_save(flags); |
| 105 | |
| 106 | /* read state */ |
| 107 | value = inb(pmbase + 0x50); |
| 108 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 109 | pr_debug("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | /* write new state */ |
| 112 | value &= 0xFE; |
| 113 | value |= state; |
| 114 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 115 | pr_debug("writing 0x%x to pmbase 0x%x + 0x50\n", value, pmbase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | /* Disable bus master arbitration */ |
| 118 | pm2_blk = inb(pmbase + 0x20); |
| 119 | pm2_blk |= 0x01; |
| 120 | outb(pm2_blk, (pmbase + 0x20)); |
| 121 | |
| 122 | /* Actual transition */ |
| 123 | outb(value, (pmbase + 0x50)); |
| 124 | |
| 125 | /* Restore bus master arbitration */ |
| 126 | pm2_blk &= 0xfe; |
| 127 | outb(pm2_blk, (pmbase + 0x20)); |
| 128 | |
| 129 | /* check if transition was successful */ |
| 130 | value = inb(pmbase + 0x50); |
| 131 | |
| 132 | /* Enable IRQs */ |
| 133 | local_irq_restore(flags); |
| 134 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 135 | pr_debug("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 137 | if (state == (value & 0x1)) |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 138 | pr_debug("change to %u MHz succeeded\n", |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 139 | speedstep_get_frequency(speedstep_processor) / 1000); |
| 140 | else |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 141 | pr_err("change failed - I/O error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | return; |
| 144 | } |
| 145 | |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 146 | /* Wrapper for smp_call_function_single. */ |
| 147 | static void _speedstep_set_state(void *_state) |
| 148 | { |
| 149 | speedstep_set_state(*(unsigned int *)_state); |
| 150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | /** |
| 153 | * speedstep_activate - activate SpeedStep control in the chipset |
| 154 | * |
| 155 | * Tries to activate the SpeedStep status and control registers. |
| 156 | * Returns -EINVAL on an unsupported chipset, and zero on success. |
| 157 | */ |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 158 | static int speedstep_activate(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
| 160 | u16 value = 0; |
| 161 | |
| 162 | if (!speedstep_chipset_dev) |
| 163 | return -EINVAL; |
| 164 | |
| 165 | pci_read_config_word(speedstep_chipset_dev, 0x00A0, &value); |
| 166 | if (!(value & 0x08)) { |
| 167 | value |= 0x08; |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 168 | pr_debug("activating SpeedStep (TM) registers\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | pci_write_config_word(speedstep_chipset_dev, 0x00A0, value); |
| 170 | } |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | |
| 176 | /** |
| 177 | * speedstep_detect_chipset - detect the Southbridge which contains SpeedStep logic |
| 178 | * |
| 179 | * Detects ICH2-M, ICH3-M and ICH4-M so far. The pci_dev points to |
| 180 | * the LPC bridge / PM module which contains all power-management |
| 181 | * functions. Returns the SPEEDSTEP_CHIPSET_-number for the detected |
| 182 | * chipset, or zero on failure. |
| 183 | */ |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 184 | static unsigned int speedstep_detect_chipset(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
| 186 | speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, |
| 187 | PCI_DEVICE_ID_INTEL_82801DB_12, |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 188 | PCI_ANY_ID, PCI_ANY_ID, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | NULL); |
| 190 | if (speedstep_chipset_dev) |
| 191 | return 4; /* 4-M */ |
| 192 | |
| 193 | speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, |
| 194 | PCI_DEVICE_ID_INTEL_82801CA_12, |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 195 | PCI_ANY_ID, PCI_ANY_ID, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | NULL); |
| 197 | if (speedstep_chipset_dev) |
| 198 | return 3; /* 3-M */ |
| 199 | |
| 200 | |
| 201 | speedstep_chipset_dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, |
| 202 | PCI_DEVICE_ID_INTEL_82801BA_10, |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 203 | PCI_ANY_ID, PCI_ANY_ID, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | NULL); |
| 205 | if (speedstep_chipset_dev) { |
| 206 | /* speedstep.c causes lockups on Dell Inspirons 8000 and |
| 207 | * 8100 which use a pretty old revision of the 82815 |
Masanari Iida | c03c301 | 2012-07-18 09:09:27 +0900 | [diff] [blame] | 208 | * host bridge. Abort on these systems. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | */ |
| 210 | static struct pci_dev *hostbridge; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | hostbridge = pci_get_subsys(PCI_VENDOR_ID_INTEL, |
| 213 | PCI_DEVICE_ID_INTEL_82815_MC, |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 214 | PCI_ANY_ID, PCI_ANY_ID, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | NULL); |
| 216 | |
| 217 | if (!hostbridge) |
| 218 | return 2; /* 2-M */ |
| 219 | |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 220 | if (hostbridge->revision < 5) { |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 221 | pr_debug("hostbridge does not support speedstep\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | speedstep_chipset_dev = NULL; |
| 223 | pci_dev_put(hostbridge); |
| 224 | return 0; |
| 225 | } |
| 226 | |
| 227 | pci_dev_put(hostbridge); |
| 228 | return 2; /* 2-M */ |
| 229 | } |
| 230 | |
| 231 | return 0; |
| 232 | } |
| 233 | |
Rusty Russell | 8dca15e | 2009-11-02 23:35:30 -0800 | [diff] [blame] | 234 | static void get_freq_data(void *_speed) |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 235 | { |
Rusty Russell | 8dca15e | 2009-11-02 23:35:30 -0800 | [diff] [blame] | 236 | unsigned int *speed = _speed; |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 237 | |
Rusty Russell | 8dca15e | 2009-11-02 23:35:30 -0800 | [diff] [blame] | 238 | *speed = speedstep_get_frequency(speedstep_processor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static unsigned int speedstep_get(unsigned int cpu) |
| 242 | { |
Rusty Russell | 8dca15e | 2009-11-02 23:35:30 -0800 | [diff] [blame] | 243 | unsigned int speed; |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 244 | |
| 245 | /* You're supposed to ensure CPU is online. */ |
Rusty Russell | 8dca15e | 2009-11-02 23:35:30 -0800 | [diff] [blame] | 246 | if (smp_call_function_single(cpu, get_freq_data, &speed, 1) != 0) |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 247 | BUG(); |
| 248 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 249 | pr_debug("detected %u kHz as current frequency\n", speed); |
Rusty Russell | 8dca15e | 2009-11-02 23:35:30 -0800 | [diff] [blame] | 250 | return speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /** |
| 254 | * speedstep_target - set a new CPUFreq policy |
| 255 | * @policy: new policy |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 256 | * @index: index of target frequency |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | * |
| 258 | * Sets a new CPUFreq policy. |
| 259 | */ |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 260 | static int speedstep_target(struct cpufreq_policy *policy, unsigned int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 262 | unsigned int policy_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 264 | policy_cpu = cpumask_any_and(policy->cpus, cpu_online_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 266 | smp_call_function_single(policy_cpu, _speedstep_set_state, &index, |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 267 | true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | return 0; |
| 270 | } |
| 271 | |
| 272 | |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 273 | struct get_freqs { |
| 274 | struct cpufreq_policy *policy; |
| 275 | int ret; |
| 276 | }; |
| 277 | |
| 278 | static void get_freqs_on_cpu(void *_get_freqs) |
| 279 | { |
| 280 | struct get_freqs *get_freqs = _get_freqs; |
| 281 | |
| 282 | get_freqs->ret = |
| 283 | speedstep_get_freqs(speedstep_processor, |
| 284 | &speedstep_freqs[SPEEDSTEP_LOW].frequency, |
| 285 | &speedstep_freqs[SPEEDSTEP_HIGH].frequency, |
| 286 | &get_freqs->policy->cpuinfo.transition_latency, |
| 287 | &speedstep_set_state); |
| 288 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | static int speedstep_cpu_init(struct cpufreq_policy *policy) |
| 291 | { |
Viresh Kumar | 4b15768 | 2013-10-03 20:29:04 +0530 | [diff] [blame] | 292 | unsigned int policy_cpu; |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 293 | struct get_freqs gf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
| 295 | /* only run on CPU to be set, or on its sibling */ |
| 296 | #ifdef CONFIG_SMP |
Bartosz Golaszewski | 265ea62 | 2015-05-26 15:11:34 +0200 | [diff] [blame] | 297 | cpumask_copy(policy->cpus, topology_sibling_cpumask(policy->cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | #endif |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 299 | policy_cpu = cpumask_any_and(policy->cpus, cpu_online_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
Mattia Dongili | 1a10760 | 2005-12-02 21:59:41 +0100 | [diff] [blame] | 301 | /* detect low and high frequency and transition latency */ |
Rusty Russell | 394122a | 2009-06-11 22:59:58 +0930 | [diff] [blame] | 302 | gf.policy = policy; |
| 303 | smp_call_function_single(policy_cpu, get_freqs_on_cpu, &gf, 1); |
| 304 | if (gf.ret) |
| 305 | return gf.ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Viresh Kumar | 5f3a2d3 | 2013-09-16 18:56:38 +0530 | [diff] [blame] | 307 | return cpufreq_table_validate_and_show(policy, speedstep_freqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 311 | static struct cpufreq_driver speedstep_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | .name = "speedstep-ich", |
Viresh Kumar | 3be1394 | 2013-10-03 20:28:28 +0530 | [diff] [blame] | 313 | .verify = cpufreq_generic_frequency_table_verify, |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 314 | .target_index = speedstep_target, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | .init = speedstep_cpu_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | .get = speedstep_get, |
Viresh Kumar | 3be1394 | 2013-10-03 20:28:28 +0530 | [diff] [blame] | 317 | .attr = cpufreq_generic_attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | }; |
| 319 | |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 320 | static const struct x86_cpu_id ss_smi_ids[] = { |
| 321 | { X86_VENDOR_INTEL, 6, 0xb, }, |
| 322 | { X86_VENDOR_INTEL, 6, 0x8, }, |
| 323 | { X86_VENDOR_INTEL, 15, 2 }, |
| 324 | {} |
| 325 | }; |
| 326 | #if 0 |
| 327 | /* Autoload or not? Do not for now. */ |
| 328 | MODULE_DEVICE_TABLE(x86cpu, ss_smi_ids); |
| 329 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
| 331 | /** |
| 332 | * speedstep_init - initializes the SpeedStep CPUFreq driver |
| 333 | * |
| 334 | * Initializes the SpeedStep support. Returns -ENODEV on unsupported |
| 335 | * devices, -EINVAL on problems during initiatization, and zero on |
| 336 | * success. |
| 337 | */ |
| 338 | static int __init speedstep_init(void) |
| 339 | { |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 340 | if (!x86_match_cpu(ss_smi_ids)) |
| 341 | return -ENODEV; |
| 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* detect processor */ |
| 344 | speedstep_processor = speedstep_detect_processor(); |
| 345 | if (!speedstep_processor) { |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 346 | pr_debug("Intel(R) SpeedStep(TM) capable processor " |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 347 | "not found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | return -ENODEV; |
| 349 | } |
| 350 | |
| 351 | /* detect chipset */ |
| 352 | if (!speedstep_detect_chipset()) { |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 353 | pr_debug("Intel(R) SpeedStep(TM) for this chipset not " |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 354 | "(yet) available.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | return -ENODEV; |
| 356 | } |
| 357 | |
| 358 | /* activate speedstep support */ |
| 359 | if (speedstep_activate()) { |
| 360 | pci_dev_put(speedstep_chipset_dev); |
| 361 | return -EINVAL; |
| 362 | } |
| 363 | |
Mattia Dongili | 9a7d82a | 2005-11-30 22:00:59 +0100 | [diff] [blame] | 364 | if (speedstep_find_register()) |
| 365 | return -ENODEV; |
| 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | return cpufreq_register_driver(&speedstep_driver); |
| 368 | } |
| 369 | |
| 370 | |
| 371 | /** |
| 372 | * speedstep_exit - unregisters SpeedStep support |
| 373 | * |
| 374 | * Unregisters SpeedStep support. |
| 375 | */ |
| 376 | static void __exit speedstep_exit(void) |
| 377 | { |
| 378 | pci_dev_put(speedstep_chipset_dev); |
| 379 | cpufreq_unregister_driver(&speedstep_driver); |
| 380 | } |
| 381 | |
| 382 | |
Dave Jones | d5e80b4 | 2014-12-19 11:20:43 -0500 | [diff] [blame] | 383 | MODULE_AUTHOR("Dave Jones, Dominik Brodowski <linux@brodo.de>"); |
Dave Jones | bbfebd6 | 2009-01-17 23:55:22 -0500 | [diff] [blame] | 384 | MODULE_DESCRIPTION("Speedstep driver for Intel mobile processors on chipsets " |
| 385 | "with ICH-M southbridges."); |
| 386 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
| 388 | module_init(speedstep_init); |
| 389 | module_exit(speedstep_exit); |