blob: 744508e7cfdd051e3896fe5ec28d5d3da0f3c16c [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>
Arjan van de Ven61613522009-09-17 16:11:28 +020012#include <trace/events/power.h>
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020013#include <linux/hw_breakpoint.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080014#include <asm/system.h>
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +010015#include <asm/apic.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053016#include <asm/syscalls.h>
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080017#include <asm/idle.h>
18#include <asm/uaccess.h>
19#include <asm/i387.h>
Markus Metzger2311f0d2009-04-03 16:43:46 +020020#include <asm/ds.h>
K.Prasad66cb5912009-06-01 23:44:55 +053021#include <asm/debugreg.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080022
23unsigned long idle_halt;
24EXPORT_SYMBOL(idle_halt);
Zhao Yakuida5e09a2008-06-24 18:01:09 +080025unsigned long idle_nomwait;
26EXPORT_SYMBOL(idle_nomwait);
Suresh Siddha61c46282008-03-10 15:28:04 -070027
Suresh Siddhaaa283f42008-03-10 15:28:05 -070028struct kmem_cache *task_xstate_cachep;
Suresh Siddha61c46282008-03-10 15:28:04 -070029
30int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
31{
32 *dst = *src;
Suresh Siddhaaa283f42008-03-10 15:28:05 -070033 if (src->thread.xstate) {
34 dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
35 GFP_KERNEL);
36 if (!dst->thread.xstate)
37 return -ENOMEM;
38 WARN_ON((unsigned long)dst->thread.xstate & 15);
39 memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
40 }
Suresh Siddha61c46282008-03-10 15:28:04 -070041 return 0;
42}
43
Suresh Siddhaaa283f42008-03-10 15:28:05 -070044void free_thread_xstate(struct task_struct *tsk)
45{
46 if (tsk->thread.xstate) {
47 kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
48 tsk->thread.xstate = NULL;
49 }
Markus Metzger2311f0d2009-04-03 16:43:46 +020050
51 WARN(tsk->thread.ds_ctx, "leaking DS context\n");
Suresh Siddhaaa283f42008-03-10 15:28:05 -070052}
53
Suresh Siddha61c46282008-03-10 15:28:04 -070054void free_thread_info(struct thread_info *ti)
55{
Suresh Siddhaaa283f42008-03-10 15:28:05 -070056 free_thread_xstate(ti->task);
Suresh Siddha1679f272008-04-16 10:27:53 +020057 free_pages((unsigned long)ti, get_order(THREAD_SIZE));
Suresh Siddha61c46282008-03-10 15:28:04 -070058}
59
60void arch_task_cache_init(void)
61{
62 task_xstate_cachep =
63 kmem_cache_create("task_xstate", xstate_size,
64 __alignof__(union thread_xstate),
Vegard Nossum2dff4402008-05-31 15:56:17 +020065 SLAB_PANIC | SLAB_NOTRACK, NULL);
Suresh Siddha61c46282008-03-10 15:28:04 -070066}
Peter Zijlstra7f424a82008-04-25 17:39:01 +020067
Thomas Gleixner00dba562008-06-09 18:35:28 +020068/*
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080069 * Free current thread data structures etc..
70 */
71void exit_thread(void)
72{
73 struct task_struct *me = current;
74 struct thread_struct *t = &me->thread;
Thomas Gleixner250981e2009-03-16 13:07:21 +010075 unsigned long *bp = t->io_bitmap_ptr;
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080076
Thomas Gleixner250981e2009-03-16 13:07:21 +010077 if (bp) {
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080078 struct tss_struct *tss = &per_cpu(init_tss, get_cpu());
79
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080080 t->io_bitmap_ptr = NULL;
81 clear_thread_flag(TIF_IO_BITMAP);
82 /*
83 * Careful, clear this in the TSS too:
84 */
85 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
86 t->io_bitmap_max = 0;
87 put_cpu();
Thomas Gleixner250981e2009-03-16 13:07:21 +010088 kfree(bp);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080089 }
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080090}
91
92void flush_thread(void)
93{
94 struct task_struct *tsk = current;
95
96#ifdef CONFIG_X86_64
97 if (test_tsk_thread_flag(tsk, TIF_ABI_PENDING)) {
98 clear_tsk_thread_flag(tsk, TIF_ABI_PENDING);
99 if (test_tsk_thread_flag(tsk, TIF_IA32)) {
100 clear_tsk_thread_flag(tsk, TIF_IA32);
101 } else {
102 set_tsk_thread_flag(tsk, TIF_IA32);
103 current_thread_info()->status |= TS_COMPAT;
104 }
105 }
106#endif
107
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200108 flush_ptrace_hw_breakpoint(tsk);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800109 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
110 /*
111 * Forget coprocessor state..
112 */
113 tsk->fpu_counter = 0;
114 clear_fpu(tsk);
115 clear_used_math();
116}
117
118static void hard_disable_TSC(void)
119{
120 write_cr4(read_cr4() | X86_CR4_TSD);
121}
122
123void disable_TSC(void)
124{
125 preempt_disable();
126 if (!test_and_set_thread_flag(TIF_NOTSC))
127 /*
128 * Must flip the CPU state synchronously with
129 * TIF_NOTSC in the current running context.
130 */
131 hard_disable_TSC();
132 preempt_enable();
133}
134
135static void hard_enable_TSC(void)
136{
137 write_cr4(read_cr4() & ~X86_CR4_TSD);
138}
139
140static void enable_TSC(void)
141{
142 preempt_disable();
143 if (test_and_clear_thread_flag(TIF_NOTSC))
144 /*
145 * Must flip the CPU state synchronously with
146 * TIF_NOTSC in the current running context.
147 */
148 hard_enable_TSC();
149 preempt_enable();
150}
151
152int get_tsc_mode(unsigned long adr)
153{
154 unsigned int val;
155
156 if (test_thread_flag(TIF_NOTSC))
157 val = PR_TSC_SIGSEGV;
158 else
159 val = PR_TSC_ENABLE;
160
161 return put_user(val, (unsigned int __user *)adr);
162}
163
164int set_tsc_mode(unsigned int val)
165{
166 if (val == PR_TSC_SIGSEGV)
167 disable_TSC();
168 else if (val == PR_TSC_ENABLE)
169 enable_TSC();
170 else
171 return -EINVAL;
172
173 return 0;
174}
175
176void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
177 struct tss_struct *tss)
178{
179 struct thread_struct *prev, *next;
180
181 prev = &prev_p->thread;
182 next = &next_p->thread;
183
184 if (test_tsk_thread_flag(next_p, TIF_DS_AREA_MSR) ||
185 test_tsk_thread_flag(prev_p, TIF_DS_AREA_MSR))
186 ds_switch_to(prev_p, next_p);
187 else if (next->debugctlmsr != prev->debugctlmsr)
188 update_debugctlmsr(next->debugctlmsr);
189
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800190 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
191 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
192 /* prev and next are different */
193 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
194 hard_disable_TSC();
195 else
196 hard_enable_TSC();
197 }
198
199 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
200 /*
201 * Copy the relevant range of the IO bitmap.
202 * Normally this is 128 bytes or less:
203 */
204 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
205 max(prev->io_bitmap_max, next->io_bitmap_max));
206 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
207 /*
208 * Clear any possible leftover bits:
209 */
210 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
211 }
212}
213
214int sys_fork(struct pt_regs *regs)
215{
216 return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
217}
218
219/*
220 * This is trivial, and on the face of it looks like it
221 * could equally well be done in user mode.
222 *
223 * Not so, for quite unobvious reasons - register pressure.
224 * In user mode vfork() cannot have a stack frame, and if
225 * done by calling the "clone()" system call directly, you
226 * do not have enough call-clobbered registers to hold all
227 * the information you need.
228 */
229int sys_vfork(struct pt_regs *regs)
230{
231 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
232 NULL, NULL);
233}
234
235
236/*
Thomas Gleixner00dba562008-06-09 18:35:28 +0200237 * Idle related variables and functions
238 */
239unsigned long boot_option_idle_override = 0;
240EXPORT_SYMBOL(boot_option_idle_override);
241
242/*
243 * Powermanagement idle function, if any..
244 */
245void (*pm_idle)(void);
246EXPORT_SYMBOL(pm_idle);
247
248#ifdef CONFIG_X86_32
249/*
250 * This halt magic was a workaround for ancient floppy DMA
251 * wreckage. It should be safe to remove.
252 */
253static int hlt_counter;
254void disable_hlt(void)
255{
256 hlt_counter++;
257}
258EXPORT_SYMBOL(disable_hlt);
259
260void enable_hlt(void)
261{
262 hlt_counter--;
263}
264EXPORT_SYMBOL(enable_hlt);
265
266static inline int hlt_use_halt(void)
267{
268 return (!hlt_counter && boot_cpu_data.hlt_works_ok);
269}
270#else
271static inline int hlt_use_halt(void)
272{
273 return 1;
274}
275#endif
276
277/*
278 * We use this if we don't have any better
279 * idle routine..
280 */
281void default_idle(void)
282{
283 if (hlt_use_halt()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200284 trace_power_start(POWER_CSTATE, 1);
Thomas Gleixner00dba562008-06-09 18:35:28 +0200285 current_thread_info()->status &= ~TS_POLLING;
286 /*
287 * TS_POLLING-cleared state must be visible before we
288 * test NEED_RESCHED:
289 */
290 smp_mb();
291
292 if (!need_resched())
293 safe_halt(); /* enables interrupts racelessly */
294 else
295 local_irq_enable();
296 current_thread_info()->status |= TS_POLLING;
297 } else {
298 local_irq_enable();
299 /* loop is done by the caller */
300 cpu_relax();
301 }
302}
303#ifdef CONFIG_APM_MODULE
304EXPORT_SYMBOL(default_idle);
305#endif
306
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +0100307void stop_this_cpu(void *dummy)
308{
309 local_irq_disable();
310 /*
311 * Remove this CPU:
312 */
Rusty Russell4f062892009-03-13 14:49:54 +1030313 set_cpu_online(smp_processor_id(), false);
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +0100314 disable_local_APIC();
315
316 for (;;) {
317 if (hlt_works(smp_processor_id()))
318 halt();
319 }
320}
321
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200322static void do_nothing(void *unused)
323{
324}
325
326/*
327 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
328 * pm_idle and update to new pm_idle value. Required while changing pm_idle
329 * handler on SMP systems.
330 *
331 * Caller must have changed pm_idle to the new value before the call. Old
332 * pm_idle value will not be used by any CPU after the return of this function.
333 */
334void cpu_idle_wait(void)
335{
336 smp_mb();
337 /* kick all the CPUs so that they exit out of pm_idle */
Ingo Molnar127a2372008-06-27 11:48:22 +0200338 smp_call_function(do_nothing, NULL, 1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200339}
340EXPORT_SYMBOL_GPL(cpu_idle_wait);
341
342/*
343 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
344 * which can obviate IPI to trigger checking of need_resched.
345 * We execute MONITOR against need_resched and enter optimized wait state
346 * through MWAIT. Whenever someone changes need_resched, we would be woken
347 * up from MWAIT (without an IPI).
348 *
349 * New with Core Duo processors, MWAIT can take some hints based on CPU
350 * capability.
351 */
352void mwait_idle_with_hints(unsigned long ax, unsigned long cx)
353{
Arjan van de Ven61613522009-09-17 16:11:28 +0200354 trace_power_start(POWER_CSTATE, (ax>>4)+1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200355 if (!need_resched()) {
Pallipadi, Venkateshe736ad52009-02-06 16:52:05 -0800356 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
357 clflush((void *)&current_thread_info()->flags);
358
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200359 __monitor((void *)&current_thread_info()->flags, 0, 0);
360 smp_mb();
361 if (!need_resched())
362 __mwait(ax, cx);
363 }
364}
365
366/* Default MONITOR/MWAIT with no hints, used for default C1 state */
367static void mwait_idle(void)
368{
369 if (!need_resched()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200370 trace_power_start(POWER_CSTATE, 1);
Pallipadi, Venkateshe736ad52009-02-06 16:52:05 -0800371 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
372 clflush((void *)&current_thread_info()->flags);
373
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200374 __monitor((void *)&current_thread_info()->flags, 0, 0);
375 smp_mb();
376 if (!need_resched())
377 __sti_mwait(0, 0);
378 else
379 local_irq_enable();
380 } else
381 local_irq_enable();
382}
383
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200384/*
385 * On SMP it's slightly faster (but much more power-consuming!)
386 * to poll the ->work.need_resched flag instead of waiting for the
387 * cross-CPU IPI to arrive. Use this option with caution.
388 */
389static void poll_idle(void)
390{
Arjan van de Ven61613522009-09-17 16:11:28 +0200391 trace_power_start(POWER_CSTATE, 0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200392 local_irq_enable();
Joe Korty2c7e9fd2008-08-27 10:35:06 -0400393 while (!need_resched())
394 cpu_relax();
Arjan van de Ven61613522009-09-17 16:11:28 +0200395 trace_power_end(0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200396}
397
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200398/*
399 * mwait selection logic:
400 *
401 * It depends on the CPU. For AMD CPUs that support MWAIT this is
402 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
403 * then depend on a clock divisor and current Pstate of the core. If
404 * all cores of a processor are in halt state (C1) the processor can
405 * enter the C1E (C1 enhanced) state. If mwait is used this will never
406 * happen.
407 *
408 * idle=mwait overrides this decision and forces the usage of mwait.
409 */
Jan Beulich08ad8af2008-07-18 13:45:20 +0100410static int __cpuinitdata force_mwait;
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200411
412#define MWAIT_INFO 0x05
413#define MWAIT_ECX_EXTENDED_INFO 0x01
414#define MWAIT_EDX_C1 0xf0
415
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200416static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c)
417{
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200418 u32 eax, ebx, ecx, edx;
419
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200420 if (force_mwait)
421 return 1;
422
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200423 if (c->cpuid_level < MWAIT_INFO)
424 return 0;
425
426 cpuid(MWAIT_INFO, &eax, &ebx, &ecx, &edx);
427 /* Check, whether EDX has extended info about MWAIT */
428 if (!(ecx & MWAIT_ECX_EXTENDED_INFO))
429 return 1;
430
431 /*
432 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
433 * C1 supports MWAIT
434 */
435 return (edx & MWAIT_EDX_C1);
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200436}
437
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200438/*
439 * Check for AMD CPUs, which have potentially C1E support
440 */
441static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
442{
443 if (c->x86_vendor != X86_VENDOR_AMD)
444 return 0;
445
446 if (c->x86 < 0x0F)
447 return 0;
448
449 /* Family 0x0f models < rev F do not have C1E */
450 if (c->x86 == 0x0f && c->x86_model < 0x40)
451 return 0;
452
453 return 1;
454}
455
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030456static cpumask_var_t c1e_mask;
Thomas Gleixner4faac972008-09-22 18:54:29 +0200457static int c1e_detected;
458
459void c1e_remove_cpu(int cpu)
460{
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030461 if (c1e_mask != NULL)
462 cpumask_clear_cpu(cpu, c1e_mask);
Thomas Gleixner4faac972008-09-22 18:54:29 +0200463}
464
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200465/*
466 * C1E aware idle routine. We check for C1E active in the interrupt
467 * pending message MSR. If we detect C1E, then we handle it the same
468 * way as C3 power states (local apic timer and TSC stop)
469 */
470static void c1e_idle(void)
471{
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200472 if (need_resched())
473 return;
474
475 if (!c1e_detected) {
476 u32 lo, hi;
477
478 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
479 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
480 c1e_detected = 1;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800481 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Andreas Herrmann09bfeea2008-09-18 21:12:10 +0200482 mark_tsc_unstable("TSC halt in AMD C1E");
483 printk(KERN_INFO "System has AMD C1E enabled\n");
Thomas Gleixnera8d68292008-09-22 19:02:25 +0200484 set_cpu_cap(&boot_cpu_data, X86_FEATURE_AMDC1E);
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200485 }
486 }
487
488 if (c1e_detected) {
489 int cpu = smp_processor_id();
490
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030491 if (!cpumask_test_cpu(cpu, c1e_mask)) {
492 cpumask_set_cpu(cpu, c1e_mask);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200493 /*
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700494 * Force broadcast so ACPI can not interfere.
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200495 */
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200496 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
497 &cpu);
498 printk(KERN_INFO "Switch to broadcast mode on CPU%d\n",
499 cpu);
500 }
501 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200502
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200503 default_idle();
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200504
505 /*
506 * The switch back from broadcast mode needs to be
507 * called with interrupts disabled.
508 */
509 local_irq_disable();
510 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
511 local_irq_enable();
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200512 } else
513 default_idle();
514}
515
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200516void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
517{
Ingo Molnar3e5095d2009-01-27 17:07:08 +0100518#ifdef CONFIG_SMP
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200519 if (pm_idle == poll_idle && smp_num_siblings > 1) {
520 printk(KERN_WARNING "WARNING: polling idle and HT enabled,"
521 " performance may degrade.\n");
522 }
523#endif
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200524 if (pm_idle)
525 return;
526
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200527 if (cpu_has(c, X86_FEATURE_MWAIT) && mwait_usable(c)) {
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200528 /*
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200529 * One CPU supports mwait => All CPUs supports mwait
530 */
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200531 printk(KERN_INFO "using mwait in idle threads.\n");
532 pm_idle = mwait_idle;
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200533 } else if (check_c1e_idle(c)) {
534 printk(KERN_INFO "using C1E aware idle routine\n");
535 pm_idle = c1e_idle;
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200536 } else
537 pm_idle = default_idle;
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200538}
539
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030540void __init init_c1e_mask(void)
541{
542 /* If we're using c1e_idle, we need to allocate c1e_mask. */
Li Zefan79f55992009-06-15 14:58:26 +0800543 if (pm_idle == c1e_idle)
544 zalloc_cpumask_var(&c1e_mask, GFP_KERNEL);
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030545}
546
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200547static int __init idle_setup(char *str)
548{
Cyrill Gorcunovab6bc3e2008-07-05 15:53:36 +0400549 if (!str)
550 return -EINVAL;
551
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200552 if (!strcmp(str, "poll")) {
553 printk("using polling idle threads.\n");
554 pm_idle = poll_idle;
555 } else if (!strcmp(str, "mwait"))
556 force_mwait = 1;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800557 else if (!strcmp(str, "halt")) {
558 /*
559 * When the boot option of idle=halt is added, halt is
560 * forced to be used for CPU idle. In such case CPU C2/C3
561 * won't be used again.
562 * To continue to load the CPU idle driver, don't touch
563 * the boot_option_idle_override.
564 */
565 pm_idle = default_idle;
566 idle_halt = 1;
567 return 0;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800568 } else if (!strcmp(str, "nomwait")) {
569 /*
570 * If the boot option of "idle=nomwait" is added,
571 * it means that mwait will be disabled for CPU C2/C3
572 * states. In such case it won't touch the variable
573 * of boot_option_idle_override.
574 */
575 idle_nomwait = 1;
576 return 0;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800577 } else
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200578 return -1;
579
580 boot_option_idle_override = 1;
581 return 0;
582}
583early_param("idle", idle_setup);
584
Amerigo Wang9d62dcd2009-05-11 22:05:28 -0400585unsigned long arch_align_stack(unsigned long sp)
586{
587 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
588 sp -= get_random_int() % 8192;
589 return sp & ~0xf;
590}
591
592unsigned long arch_randomize_brk(struct mm_struct *mm)
593{
594 unsigned long range_end = mm->brk + 0x02000000;
595 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
596}
597