aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/idle
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-08-15 14:17:52 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-15 14:17:52 -0400
commit5a4179460cb50d939a2ae713cf88fcbff75f2c1c (patch)
treef41bfc36bbb14be449aaeecf01df592a5fd553f4 /drivers/idle
parent5d7cb157025b3b4852f38e6e5e97d06ef12c1d78 (diff)
parent4725fd3ce970c27a1678fb0809bfc7c2f4ac3e4f (diff)
Merge branch 'idle-release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6
* 'idle-release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6: intel_idle: recognize Lincroft Atom Processor intel_idle: no longer EXPERIMENTAL intel_idle: disable module support intel_idle: add support for Westmere-EX intel_idle: delete power_policy modparam, and choose substate functions intel_idle: delete substates DEBUG modparam
Diffstat (limited to 'drivers/idle')
-rw-r--r--drivers/idle/Kconfig3
-rwxr-xr-xdrivers/idle/intel_idle.c61
2 files changed, 8 insertions, 56 deletions
diff --git a/drivers/idle/Kconfig b/drivers/idle/Kconfig
index fb5c5186d4aa..8489eb58a52c 100644
--- a/drivers/idle/Kconfig
+++ b/drivers/idle/Kconfig
@@ -1,9 +1,8 @@
1config INTEL_IDLE 1config INTEL_IDLE
2 tristate "Cpuidle Driver for Intel Processors" 2 bool "Cpuidle Driver for Intel Processors"
3 depends on CPU_IDLE 3 depends on CPU_IDLE
4 depends on X86 4 depends on X86
5 depends on CPU_SUP_INTEL 5 depends on CPU_SUP_INTEL
6 depends on EXPERIMENTAL
7 help 6 help
8 Enable intel_idle, a cpuidle driver that includes knowledge of 7 Enable intel_idle, a cpuidle driver that includes knowledge of
9 native Intel hardware idle features. The acpi_idle driver 8 native Intel hardware idle features. The acpi_idle driver
diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c
index 03d202b1ff27..a10152bb1427 100755
--- a/drivers/idle/intel_idle.c
+++ b/drivers/idle/intel_idle.c
@@ -77,10 +77,8 @@ static struct cpuidle_driver intel_idle_driver = {
77}; 77};
78/* intel_idle.max_cstate=0 disables driver */ 78/* intel_idle.max_cstate=0 disables driver */
79static int max_cstate = MWAIT_MAX_NUM_CSTATES - 1; 79static int max_cstate = MWAIT_MAX_NUM_CSTATES - 1;
80static int power_policy = 7; /* 0 = max perf; 15 = max powersave */
81 80
82static unsigned int substates; 81static unsigned int mwait_substates;
83static int (*choose_substate)(int);
84 82
85/* Reliable LAPIC Timer States, bit 1 for C1 etc. */ 83/* Reliable LAPIC Timer States, bit 1 for C1 etc. */
86static unsigned int lapic_timer_reliable_states; 84static unsigned int lapic_timer_reliable_states;
@@ -168,41 +166,6 @@ static struct cpuidle_state atom_cstates[MWAIT_MAX_NUM_CSTATES] = {
168 .enter = NULL }, /* disabled */ 166 .enter = NULL }, /* disabled */
169}; 167};
170 168
171/*
172 * choose_tunable_substate()
173 *
174 * Run-time decision on which C-state substate to invoke
175 * If power_policy = 0, choose shallowest substate (0)
176 * If power_policy = 15, choose deepest substate
177 * If power_policy = middle, choose middle substate etc.
178 */
179static int choose_tunable_substate(int cstate)
180{
181 unsigned int num_substates;
182 unsigned int substate_choice;
183
184 power_policy &= 0xF; /* valid range: 0-15 */
185 cstate &= 7; /* valid range: 0-7 */
186
187 num_substates = (substates >> ((cstate) * 4)) & MWAIT_SUBSTATE_MASK;
188
189 if (num_substates <= 1)
190 return 0;
191
192 substate_choice = ((power_policy + (power_policy + 1) *
193 (num_substates - 1)) / 16);
194
195 return substate_choice;
196}
197
198/*
199 * choose_zero_substate()
200 */
201static int choose_zero_substate(int cstate)
202{
203 return 0;
204}
205
206/** 169/**
207 * intel_idle 170 * intel_idle
208 * @dev: cpuidle_device 171 * @dev: cpuidle_device
@@ -220,8 +183,6 @@ static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state)
220 183
221 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1; 184 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1;
222 185
223 eax = eax + (choose_substate)(cstate);
224
225 local_irq_disable(); 186 local_irq_disable();
226 187
227 if (!(lapic_timer_reliable_states & (1 << (cstate)))) 188 if (!(lapic_timer_reliable_states & (1 << (cstate))))
@@ -259,7 +220,7 @@ static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state)
259 */ 220 */
260static int intel_idle_probe(void) 221static int intel_idle_probe(void)
261{ 222{
262 unsigned int eax, ebx, ecx, edx; 223 unsigned int eax, ebx, ecx;
263 224
264 if (max_cstate == 0) { 225 if (max_cstate == 0) {
265 pr_debug(PREFIX "disabled\n"); 226 pr_debug(PREFIX "disabled\n");
@@ -275,17 +236,13 @@ static int intel_idle_probe(void)
275 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF) 236 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
276 return -ENODEV; 237 return -ENODEV;
277 238
278 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &edx); 239 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates);
279 240
280 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) || 241 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
281 !(ecx & CPUID5_ECX_INTERRUPT_BREAK)) 242 !(ecx & CPUID5_ECX_INTERRUPT_BREAK))
282 return -ENODEV; 243 return -ENODEV;
283#ifdef DEBUG
284 if (substates == 0) /* can over-ride via modparam */
285#endif
286 substates = edx;
287 244
288 pr_debug(PREFIX "MWAIT substates: 0x%x\n", substates); 245 pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates);
289 246
290 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */ 247 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */
291 lapic_timer_reliable_states = 0xFFFFFFFF; 248 lapic_timer_reliable_states = 0xFFFFFFFF;
@@ -299,18 +256,18 @@ static int intel_idle_probe(void)
299 case 0x1E: /* Core i7 and i5 Processor - Lynnfield Jasper Forest */ 256 case 0x1E: /* Core i7 and i5 Processor - Lynnfield Jasper Forest */
300 case 0x1F: /* Core i7 and i5 Processor - Nehalem */ 257 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
301 case 0x2E: /* Nehalem-EX Xeon */ 258 case 0x2E: /* Nehalem-EX Xeon */
259 case 0x2F: /* Westmere-EX Xeon */
302 lapic_timer_reliable_states = (1 << 1); /* C1 */ 260 lapic_timer_reliable_states = (1 << 1); /* C1 */
303 261
304 case 0x25: /* Westmere */ 262 case 0x25: /* Westmere */
305 case 0x2C: /* Westmere */ 263 case 0x2C: /* Westmere */
306 cpuidle_state_table = nehalem_cstates; 264 cpuidle_state_table = nehalem_cstates;
307 choose_substate = choose_tunable_substate;
308 break; 265 break;
309 266
310 case 0x1C: /* 28 - Atom Processor */ 267 case 0x1C: /* 28 - Atom Processor */
268 case 0x26: /* 38 - Lincroft Atom Processor */
311 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */ 269 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
312 cpuidle_state_table = atom_cstates; 270 cpuidle_state_table = atom_cstates;
313 choose_substate = choose_zero_substate;
314 break; 271 break;
315#ifdef FUTURE_USE 272#ifdef FUTURE_USE
316 case 0x17: /* 23 - Core 2 Duo */ 273 case 0x17: /* 23 - Core 2 Duo */
@@ -376,7 +333,7 @@ static int intel_idle_cpuidle_devices_init(void)
376 } 333 }
377 334
378 /* does the state exist in CPUID.MWAIT? */ 335 /* does the state exist in CPUID.MWAIT? */
379 num_substates = (substates >> ((cstate) * 4)) 336 num_substates = (mwait_substates >> ((cstate) * 4))
380 & MWAIT_SUBSTATE_MASK; 337 & MWAIT_SUBSTATE_MASK;
381 if (num_substates == 0) 338 if (num_substates == 0)
382 continue; 339 continue;
@@ -450,11 +407,7 @@ static void __exit intel_idle_exit(void)
450module_init(intel_idle_init); 407module_init(intel_idle_init);
451module_exit(intel_idle_exit); 408module_exit(intel_idle_exit);
452 409
453module_param(power_policy, int, 0644);
454module_param(max_cstate, int, 0444); 410module_param(max_cstate, int, 0444);
455#ifdef DEBUG
456module_param(substates, int, 0444);
457#endif
458 411
459MODULE_AUTHOR("Len Brown <len.brown@intel.com>"); 412MODULE_AUTHOR("Len Brown <len.brown@intel.com>");
460MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION); 413MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION);