blob: 90cf1250a005e95dfa5da38aa641b7ba5d17f253 [file] [log] [blame]
Suresh Siddha61c46282008-03-10 15:28:04 -07001#include <linux/errno.h>
2#include <linux/kernel.h>
3#include <linux/mm.h>
4#include <linux/smp.h>
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -08005#include <linux/prctl.h>
Suresh Siddha61c46282008-03-10 15:28:04 -07006#include <linux/slab.h>
7#include <linux/sched.h>
Peter Zijlstra7f424a82008-04-25 17:39:01 +02008#include <linux/module.h>
9#include <linux/pm.h>
Thomas Gleixneraa276e12008-06-09 19:15:00 +020010#include <linux/clockchips.h>
Amerigo Wang9d62dcd2009-05-11 22:05:28 -040011#include <linux/random.h>
Avi Kivity7c68af62009-09-19 09:40:22 +030012#include <linux/user-return-notifier.h>
Andy Isaacson814e2c82009-12-08 00:29:42 -080013#include <linux/dmi.h>
14#include <linux/utsname.h>
Arjan van de Ven61613522009-09-17 16:11:28 +020015#include <trace/events/power.h>
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020016#include <linux/hw_breakpoint.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080017#include <asm/system.h>
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +010018#include <asm/apic.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053019#include <asm/syscalls.h>
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080020#include <asm/idle.h>
21#include <asm/uaccess.h>
22#include <asm/i387.h>
Markus Metzger2311f0d2009-04-03 16:43:46 +020023#include <asm/ds.h>
K.Prasad66cb5912009-06-01 23:44:55 +053024#include <asm/debugreg.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080025
26unsigned long idle_halt;
27EXPORT_SYMBOL(idle_halt);
Zhao Yakuida5e09a2008-06-24 18:01:09 +080028unsigned long idle_nomwait;
29EXPORT_SYMBOL(idle_nomwait);
Suresh Siddha61c46282008-03-10 15:28:04 -070030
Suresh Siddhaaa283f42008-03-10 15:28:05 -070031struct kmem_cache *task_xstate_cachep;
Suresh Siddha61c46282008-03-10 15:28:04 -070032
33int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
34{
35 *dst = *src;
Suresh Siddhaaa283f42008-03-10 15:28:05 -070036 if (src->thread.xstate) {
37 dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
38 GFP_KERNEL);
39 if (!dst->thread.xstate)
40 return -ENOMEM;
41 WARN_ON((unsigned long)dst->thread.xstate & 15);
42 memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
43 }
Suresh Siddha61c46282008-03-10 15:28:04 -070044 return 0;
45}
46
Suresh Siddhaaa283f42008-03-10 15:28:05 -070047void free_thread_xstate(struct task_struct *tsk)
48{
49 if (tsk->thread.xstate) {
50 kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
51 tsk->thread.xstate = NULL;
52 }
Markus Metzger2311f0d2009-04-03 16:43:46 +020053
54 WARN(tsk->thread.ds_ctx, "leaking DS context\n");
Suresh Siddhaaa283f42008-03-10 15:28:05 -070055}
56
Suresh Siddha61c46282008-03-10 15:28:04 -070057void free_thread_info(struct thread_info *ti)
58{
Suresh Siddhaaa283f42008-03-10 15:28:05 -070059 free_thread_xstate(ti->task);
Suresh Siddha1679f272008-04-16 10:27:53 +020060 free_pages((unsigned long)ti, get_order(THREAD_SIZE));
Suresh Siddha61c46282008-03-10 15:28:04 -070061}
62
63void arch_task_cache_init(void)
64{
65 task_xstate_cachep =
66 kmem_cache_create("task_xstate", xstate_size,
67 __alignof__(union thread_xstate),
Vegard Nossum2dff4402008-05-31 15:56:17 +020068 SLAB_PANIC | SLAB_NOTRACK, NULL);
Suresh Siddha61c46282008-03-10 15:28:04 -070069}
Peter Zijlstra7f424a82008-04-25 17:39:01 +020070
Thomas Gleixner00dba562008-06-09 18:35:28 +020071/*
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080072 * Free current thread data structures etc..
73 */
74void exit_thread(void)
75{
76 struct task_struct *me = current;
77 struct thread_struct *t = &me->thread;
Thomas Gleixner250981e2009-03-16 13:07:21 +010078 unsigned long *bp = t->io_bitmap_ptr;
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080079
Thomas Gleixner250981e2009-03-16 13:07:21 +010080 if (bp) {
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080081 struct tss_struct *tss = &per_cpu(init_tss, get_cpu());
82
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080083 t->io_bitmap_ptr = NULL;
84 clear_thread_flag(TIF_IO_BITMAP);
85 /*
86 * Careful, clear this in the TSS too:
87 */
88 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
89 t->io_bitmap_max = 0;
90 put_cpu();
Thomas Gleixner250981e2009-03-16 13:07:21 +010091 kfree(bp);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080092 }
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080093}
94
Andy Isaacson814e2c82009-12-08 00:29:42 -080095void show_regs_common(void)
96{
97 const char *board;
98
99 board = dmi_get_system_info(DMI_PRODUCT_NAME);
100 if (!board)
101 board = "";
102
103 printk("\n");
104 printk(KERN_INFO "Pid: %d, comm: %.20s %s %s %.*s %s\n",
105 current->pid, current->comm, print_tainted(),
106 init_utsname()->release,
107 (int)strcspn(init_utsname()->version, " "),
108 init_utsname()->version, board);
109}
110
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800111void flush_thread(void)
112{
113 struct task_struct *tsk = current;
114
115#ifdef CONFIG_X86_64
116 if (test_tsk_thread_flag(tsk, TIF_ABI_PENDING)) {
117 clear_tsk_thread_flag(tsk, TIF_ABI_PENDING);
118 if (test_tsk_thread_flag(tsk, TIF_IA32)) {
119 clear_tsk_thread_flag(tsk, TIF_IA32);
120 } else {
121 set_tsk_thread_flag(tsk, TIF_IA32);
122 current_thread_info()->status |= TS_COMPAT;
123 }
124 }
125#endif
126
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200127 flush_ptrace_hw_breakpoint(tsk);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800128 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
129 /*
130 * Forget coprocessor state..
131 */
132 tsk->fpu_counter = 0;
133 clear_fpu(tsk);
134 clear_used_math();
135}
136
137static void hard_disable_TSC(void)
138{
139 write_cr4(read_cr4() | X86_CR4_TSD);
140}
141
142void disable_TSC(void)
143{
144 preempt_disable();
145 if (!test_and_set_thread_flag(TIF_NOTSC))
146 /*
147 * Must flip the CPU state synchronously with
148 * TIF_NOTSC in the current running context.
149 */
150 hard_disable_TSC();
151 preempt_enable();
152}
153
154static void hard_enable_TSC(void)
155{
156 write_cr4(read_cr4() & ~X86_CR4_TSD);
157}
158
159static void enable_TSC(void)
160{
161 preempt_disable();
162 if (test_and_clear_thread_flag(TIF_NOTSC))
163 /*
164 * Must flip the CPU state synchronously with
165 * TIF_NOTSC in the current running context.
166 */
167 hard_enable_TSC();
168 preempt_enable();
169}
170
171int get_tsc_mode(unsigned long adr)
172{
173 unsigned int val;
174
175 if (test_thread_flag(TIF_NOTSC))
176 val = PR_TSC_SIGSEGV;
177 else
178 val = PR_TSC_ENABLE;
179
180 return put_user(val, (unsigned int __user *)adr);
181}
182
183int set_tsc_mode(unsigned int val)
184{
185 if (val == PR_TSC_SIGSEGV)
186 disable_TSC();
187 else if (val == PR_TSC_ENABLE)
188 enable_TSC();
189 else
190 return -EINVAL;
191
192 return 0;
193}
194
195void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
196 struct tss_struct *tss)
197{
198 struct thread_struct *prev, *next;
199
200 prev = &prev_p->thread;
201 next = &next_p->thread;
202
203 if (test_tsk_thread_flag(next_p, TIF_DS_AREA_MSR) ||
204 test_tsk_thread_flag(prev_p, TIF_DS_AREA_MSR))
205 ds_switch_to(prev_p, next_p);
206 else if (next->debugctlmsr != prev->debugctlmsr)
207 update_debugctlmsr(next->debugctlmsr);
208
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800209 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
210 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
211 /* prev and next are different */
212 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
213 hard_disable_TSC();
214 else
215 hard_enable_TSC();
216 }
217
218 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
219 /*
220 * Copy the relevant range of the IO bitmap.
221 * Normally this is 128 bytes or less:
222 */
223 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
224 max(prev->io_bitmap_max, next->io_bitmap_max));
225 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
226 /*
227 * Clear any possible leftover bits:
228 */
229 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
230 }
Avi Kivity7c68af62009-09-19 09:40:22 +0300231 propagate_user_return_notify(prev_p, next_p);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800232}
233
234int sys_fork(struct pt_regs *regs)
235{
236 return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
237}
238
239/*
240 * This is trivial, and on the face of it looks like it
241 * could equally well be done in user mode.
242 *
243 * Not so, for quite unobvious reasons - register pressure.
244 * In user mode vfork() cannot have a stack frame, and if
245 * done by calling the "clone()" system call directly, you
246 * do not have enough call-clobbered registers to hold all
247 * the information you need.
248 */
249int sys_vfork(struct pt_regs *regs)
250{
251 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
252 NULL, NULL);
253}
254
255
256/*
Thomas Gleixner00dba562008-06-09 18:35:28 +0200257 * Idle related variables and functions
258 */
259unsigned long boot_option_idle_override = 0;
260EXPORT_SYMBOL(boot_option_idle_override);
261
262/*
263 * Powermanagement idle function, if any..
264 */
265void (*pm_idle)(void);
266EXPORT_SYMBOL(pm_idle);
267
268#ifdef CONFIG_X86_32
269/*
270 * This halt magic was a workaround for ancient floppy DMA
271 * wreckage. It should be safe to remove.
272 */
273static int hlt_counter;
274void disable_hlt(void)
275{
276 hlt_counter++;
277}
278EXPORT_SYMBOL(disable_hlt);
279
280void enable_hlt(void)
281{
282 hlt_counter--;
283}
284EXPORT_SYMBOL(enable_hlt);
285
286static inline int hlt_use_halt(void)
287{
288 return (!hlt_counter && boot_cpu_data.hlt_works_ok);
289}
290#else
291static inline int hlt_use_halt(void)
292{
293 return 1;
294}
295#endif
296
297/*
298 * We use this if we don't have any better
299 * idle routine..
300 */
301void default_idle(void)
302{
303 if (hlt_use_halt()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200304 trace_power_start(POWER_CSTATE, 1);
Thomas Gleixner00dba562008-06-09 18:35:28 +0200305 current_thread_info()->status &= ~TS_POLLING;
306 /*
307 * TS_POLLING-cleared state must be visible before we
308 * test NEED_RESCHED:
309 */
310 smp_mb();
311
312 if (!need_resched())
313 safe_halt(); /* enables interrupts racelessly */
314 else
315 local_irq_enable();
316 current_thread_info()->status |= TS_POLLING;
317 } else {
318 local_irq_enable();
319 /* loop is done by the caller */
320 cpu_relax();
321 }
322}
323#ifdef CONFIG_APM_MODULE
324EXPORT_SYMBOL(default_idle);
325#endif
326
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +0100327void stop_this_cpu(void *dummy)
328{
329 local_irq_disable();
330 /*
331 * Remove this CPU:
332 */
Rusty Russell4f062892009-03-13 14:49:54 +1030333 set_cpu_online(smp_processor_id(), false);
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +0100334 disable_local_APIC();
335
336 for (;;) {
337 if (hlt_works(smp_processor_id()))
338 halt();
339 }
340}
341
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200342static void do_nothing(void *unused)
343{
344}
345
346/*
347 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
348 * pm_idle and update to new pm_idle value. Required while changing pm_idle
349 * handler on SMP systems.
350 *
351 * Caller must have changed pm_idle to the new value before the call. Old
352 * pm_idle value will not be used by any CPU after the return of this function.
353 */
354void cpu_idle_wait(void)
355{
356 smp_mb();
357 /* kick all the CPUs so that they exit out of pm_idle */
Ingo Molnar127a2372008-06-27 11:48:22 +0200358 smp_call_function(do_nothing, NULL, 1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200359}
360EXPORT_SYMBOL_GPL(cpu_idle_wait);
361
362/*
363 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
364 * which can obviate IPI to trigger checking of need_resched.
365 * We execute MONITOR against need_resched and enter optimized wait state
366 * through MWAIT. Whenever someone changes need_resched, we would be woken
367 * up from MWAIT (without an IPI).
368 *
369 * New with Core Duo processors, MWAIT can take some hints based on CPU
370 * capability.
371 */
372void mwait_idle_with_hints(unsigned long ax, unsigned long cx)
373{
Arjan van de Ven61613522009-09-17 16:11:28 +0200374 trace_power_start(POWER_CSTATE, (ax>>4)+1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200375 if (!need_resched()) {
Pallipadi, Venkateshe736ad52009-02-06 16:52:05 -0800376 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
377 clflush((void *)&current_thread_info()->flags);
378
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200379 __monitor((void *)&current_thread_info()->flags, 0, 0);
380 smp_mb();
381 if (!need_resched())
382 __mwait(ax, cx);
383 }
384}
385
386/* Default MONITOR/MWAIT with no hints, used for default C1 state */
387static void mwait_idle(void)
388{
389 if (!need_resched()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200390 trace_power_start(POWER_CSTATE, 1);
Pallipadi, Venkateshe736ad52009-02-06 16:52:05 -0800391 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
392 clflush((void *)&current_thread_info()->flags);
393
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200394 __monitor((void *)&current_thread_info()->flags, 0, 0);
395 smp_mb();
396 if (!need_resched())
397 __sti_mwait(0, 0);
398 else
399 local_irq_enable();
400 } else
401 local_irq_enable();
402}
403
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200404/*
405 * On SMP it's slightly faster (but much more power-consuming!)
406 * to poll the ->work.need_resched flag instead of waiting for the
407 * cross-CPU IPI to arrive. Use this option with caution.
408 */
409static void poll_idle(void)
410{
Arjan van de Ven61613522009-09-17 16:11:28 +0200411 trace_power_start(POWER_CSTATE, 0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200412 local_irq_enable();
Joe Korty2c7e9fd2008-08-27 10:35:06 -0400413 while (!need_resched())
414 cpu_relax();
Arjan van de Ven61613522009-09-17 16:11:28 +0200415 trace_power_end(0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200416}
417
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200418/*
419 * mwait selection logic:
420 *
421 * It depends on the CPU. For AMD CPUs that support MWAIT this is
422 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
423 * then depend on a clock divisor and current Pstate of the core. If
424 * all cores of a processor are in halt state (C1) the processor can
425 * enter the C1E (C1 enhanced) state. If mwait is used this will never
426 * happen.
427 *
428 * idle=mwait overrides this decision and forces the usage of mwait.
429 */
Jan Beulich08ad8af2008-07-18 13:45:20 +0100430static int __cpuinitdata force_mwait;
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200431
432#define MWAIT_INFO 0x05
433#define MWAIT_ECX_EXTENDED_INFO 0x01
434#define MWAIT_EDX_C1 0xf0
435
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200436static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c)
437{
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200438 u32 eax, ebx, ecx, edx;
439
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200440 if (force_mwait)
441 return 1;
442
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200443 if (c->cpuid_level < MWAIT_INFO)
444 return 0;
445
446 cpuid(MWAIT_INFO, &eax, &ebx, &ecx, &edx);
447 /* Check, whether EDX has extended info about MWAIT */
448 if (!(ecx & MWAIT_ECX_EXTENDED_INFO))
449 return 1;
450
451 /*
452 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
453 * C1 supports MWAIT
454 */
455 return (edx & MWAIT_EDX_C1);
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200456}
457
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200458/*
459 * Check for AMD CPUs, which have potentially C1E support
460 */
461static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
462{
463 if (c->x86_vendor != X86_VENDOR_AMD)
464 return 0;
465
466 if (c->x86 < 0x0F)
467 return 0;
468
469 /* Family 0x0f models < rev F do not have C1E */
470 if (c->x86 == 0x0f && c->x86_model < 0x40)
471 return 0;
472
473 return 1;
474}
475
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030476static cpumask_var_t c1e_mask;
Thomas Gleixner4faac972008-09-22 18:54:29 +0200477static int c1e_detected;
478
479void c1e_remove_cpu(int cpu)
480{
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030481 if (c1e_mask != NULL)
482 cpumask_clear_cpu(cpu, c1e_mask);
Thomas Gleixner4faac972008-09-22 18:54:29 +0200483}
484
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200485/*
486 * C1E aware idle routine. We check for C1E active in the interrupt
487 * pending message MSR. If we detect C1E, then we handle it the same
488 * way as C3 power states (local apic timer and TSC stop)
489 */
490static void c1e_idle(void)
491{
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200492 if (need_resched())
493 return;
494
495 if (!c1e_detected) {
496 u32 lo, hi;
497
498 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
499 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
500 c1e_detected = 1;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800501 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Andreas Herrmann09bfeea2008-09-18 21:12:10 +0200502 mark_tsc_unstable("TSC halt in AMD C1E");
503 printk(KERN_INFO "System has AMD C1E enabled\n");
Thomas Gleixnera8d68292008-09-22 19:02:25 +0200504 set_cpu_cap(&boot_cpu_data, X86_FEATURE_AMDC1E);
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200505 }
506 }
507
508 if (c1e_detected) {
509 int cpu = smp_processor_id();
510
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030511 if (!cpumask_test_cpu(cpu, c1e_mask)) {
512 cpumask_set_cpu(cpu, c1e_mask);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200513 /*
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700514 * Force broadcast so ACPI can not interfere.
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200515 */
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200516 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
517 &cpu);
518 printk(KERN_INFO "Switch to broadcast mode on CPU%d\n",
519 cpu);
520 }
521 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200522
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200523 default_idle();
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200524
525 /*
526 * The switch back from broadcast mode needs to be
527 * called with interrupts disabled.
528 */
529 local_irq_disable();
530 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
531 local_irq_enable();
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200532 } else
533 default_idle();
534}
535
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200536void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
537{
Ingo Molnar3e5095d2009-01-27 17:07:08 +0100538#ifdef CONFIG_SMP
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200539 if (pm_idle == poll_idle && smp_num_siblings > 1) {
540 printk(KERN_WARNING "WARNING: polling idle and HT enabled,"
541 " performance may degrade.\n");
542 }
543#endif
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200544 if (pm_idle)
545 return;
546
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200547 if (cpu_has(c, X86_FEATURE_MWAIT) && mwait_usable(c)) {
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200548 /*
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200549 * One CPU supports mwait => All CPUs supports mwait
550 */
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200551 printk(KERN_INFO "using mwait in idle threads.\n");
552 pm_idle = mwait_idle;
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200553 } else if (check_c1e_idle(c)) {
554 printk(KERN_INFO "using C1E aware idle routine\n");
555 pm_idle = c1e_idle;
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200556 } else
557 pm_idle = default_idle;
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200558}
559
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030560void __init init_c1e_mask(void)
561{
562 /* If we're using c1e_idle, we need to allocate c1e_mask. */
Li Zefan79f55992009-06-15 14:58:26 +0800563 if (pm_idle == c1e_idle)
564 zalloc_cpumask_var(&c1e_mask, GFP_KERNEL);
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030565}
566
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200567static int __init idle_setup(char *str)
568{
Cyrill Gorcunovab6bc3e2008-07-05 15:53:36 +0400569 if (!str)
570 return -EINVAL;
571
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200572 if (!strcmp(str, "poll")) {
573 printk("using polling idle threads.\n");
574 pm_idle = poll_idle;
575 } else if (!strcmp(str, "mwait"))
576 force_mwait = 1;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800577 else if (!strcmp(str, "halt")) {
578 /*
579 * When the boot option of idle=halt is added, halt is
580 * forced to be used for CPU idle. In such case CPU C2/C3
581 * won't be used again.
582 * To continue to load the CPU idle driver, don't touch
583 * the boot_option_idle_override.
584 */
585 pm_idle = default_idle;
586 idle_halt = 1;
587 return 0;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800588 } else if (!strcmp(str, "nomwait")) {
589 /*
590 * If the boot option of "idle=nomwait" is added,
591 * it means that mwait will be disabled for CPU C2/C3
592 * states. In such case it won't touch the variable
593 * of boot_option_idle_override.
594 */
595 idle_nomwait = 1;
596 return 0;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800597 } else
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200598 return -1;
599
600 boot_option_idle_override = 1;
601 return 0;
602}
603early_param("idle", idle_setup);
604
Amerigo Wang9d62dcd2009-05-11 22:05:28 -0400605unsigned long arch_align_stack(unsigned long sp)
606{
607 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
608 sp -= get_random_int() % 8192;
609 return sp & ~0xf;
610}
611
612unsigned long arch_randomize_brk(struct mm_struct *mm)
613{
614 unsigned long range_end = mm->brk + 0x02000000;
615 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
616}
617