blob: 8705ccedd447d2007248ad4a809b055045fcb928 [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>
Arjan van de Ven61613522009-09-17 16:11:28 +020013#include <trace/events/power.h>
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020014#include <linux/hw_breakpoint.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080015#include <asm/system.h>
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +010016#include <asm/apic.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053017#include <asm/syscalls.h>
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080018#include <asm/idle.h>
19#include <asm/uaccess.h>
20#include <asm/i387.h>
Markus Metzger2311f0d2009-04-03 16:43:46 +020021#include <asm/ds.h>
K.Prasad66cb5912009-06-01 23:44:55 +053022#include <asm/debugreg.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080023
24unsigned long idle_halt;
25EXPORT_SYMBOL(idle_halt);
Zhao Yakuida5e09a2008-06-24 18:01:09 +080026unsigned long idle_nomwait;
27EXPORT_SYMBOL(idle_nomwait);
Suresh Siddha61c46282008-03-10 15:28:04 -070028
Suresh Siddhaaa283f42008-03-10 15:28:05 -070029struct kmem_cache *task_xstate_cachep;
Suresh Siddha61c46282008-03-10 15:28:04 -070030
31int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
32{
33 *dst = *src;
Suresh Siddhaaa283f42008-03-10 15:28:05 -070034 if (src->thread.xstate) {
35 dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
36 GFP_KERNEL);
37 if (!dst->thread.xstate)
38 return -ENOMEM;
39 WARN_ON((unsigned long)dst->thread.xstate & 15);
40 memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
41 }
Suresh Siddha61c46282008-03-10 15:28:04 -070042 return 0;
43}
44
Suresh Siddhaaa283f42008-03-10 15:28:05 -070045void free_thread_xstate(struct task_struct *tsk)
46{
47 if (tsk->thread.xstate) {
48 kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
49 tsk->thread.xstate = NULL;
50 }
Markus Metzger2311f0d2009-04-03 16:43:46 +020051
52 WARN(tsk->thread.ds_ctx, "leaking DS context\n");
Suresh Siddhaaa283f42008-03-10 15:28:05 -070053}
54
Suresh Siddha61c46282008-03-10 15:28:04 -070055void free_thread_info(struct thread_info *ti)
56{
Suresh Siddhaaa283f42008-03-10 15:28:05 -070057 free_thread_xstate(ti->task);
Suresh Siddha1679f272008-04-16 10:27:53 +020058 free_pages((unsigned long)ti, get_order(THREAD_SIZE));
Suresh Siddha61c46282008-03-10 15:28:04 -070059}
60
61void arch_task_cache_init(void)
62{
63 task_xstate_cachep =
64 kmem_cache_create("task_xstate", xstate_size,
65 __alignof__(union thread_xstate),
Vegard Nossum2dff4402008-05-31 15:56:17 +020066 SLAB_PANIC | SLAB_NOTRACK, NULL);
Suresh Siddha61c46282008-03-10 15:28:04 -070067}
Peter Zijlstra7f424a82008-04-25 17:39:01 +020068
Thomas Gleixner00dba562008-06-09 18:35:28 +020069/*
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080070 * Free current thread data structures etc..
71 */
72void exit_thread(void)
73{
74 struct task_struct *me = current;
75 struct thread_struct *t = &me->thread;
Thomas Gleixner250981e2009-03-16 13:07:21 +010076 unsigned long *bp = t->io_bitmap_ptr;
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080077
Thomas Gleixner250981e2009-03-16 13:07:21 +010078 if (bp) {
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080079 struct tss_struct *tss = &per_cpu(init_tss, get_cpu());
80
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080081 t->io_bitmap_ptr = NULL;
82 clear_thread_flag(TIF_IO_BITMAP);
83 /*
84 * Careful, clear this in the TSS too:
85 */
86 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
87 t->io_bitmap_max = 0;
88 put_cpu();
Thomas Gleixner250981e2009-03-16 13:07:21 +010089 kfree(bp);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080090 }
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080091}
92
93void flush_thread(void)
94{
95 struct task_struct *tsk = current;
96
97#ifdef CONFIG_X86_64
98 if (test_tsk_thread_flag(tsk, TIF_ABI_PENDING)) {
99 clear_tsk_thread_flag(tsk, TIF_ABI_PENDING);
100 if (test_tsk_thread_flag(tsk, TIF_IA32)) {
101 clear_tsk_thread_flag(tsk, TIF_IA32);
102 } else {
103 set_tsk_thread_flag(tsk, TIF_IA32);
104 current_thread_info()->status |= TS_COMPAT;
105 }
106 }
107#endif
108
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200109 flush_ptrace_hw_breakpoint(tsk);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800110 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
111 /*
112 * Forget coprocessor state..
113 */
114 tsk->fpu_counter = 0;
115 clear_fpu(tsk);
116 clear_used_math();
117}
118
119static void hard_disable_TSC(void)
120{
121 write_cr4(read_cr4() | X86_CR4_TSD);
122}
123
124void disable_TSC(void)
125{
126 preempt_disable();
127 if (!test_and_set_thread_flag(TIF_NOTSC))
128 /*
129 * Must flip the CPU state synchronously with
130 * TIF_NOTSC in the current running context.
131 */
132 hard_disable_TSC();
133 preempt_enable();
134}
135
136static void hard_enable_TSC(void)
137{
138 write_cr4(read_cr4() & ~X86_CR4_TSD);
139}
140
141static void enable_TSC(void)
142{
143 preempt_disable();
144 if (test_and_clear_thread_flag(TIF_NOTSC))
145 /*
146 * Must flip the CPU state synchronously with
147 * TIF_NOTSC in the current running context.
148 */
149 hard_enable_TSC();
150 preempt_enable();
151}
152
153int get_tsc_mode(unsigned long adr)
154{
155 unsigned int val;
156
157 if (test_thread_flag(TIF_NOTSC))
158 val = PR_TSC_SIGSEGV;
159 else
160 val = PR_TSC_ENABLE;
161
162 return put_user(val, (unsigned int __user *)adr);
163}
164
165int set_tsc_mode(unsigned int val)
166{
167 if (val == PR_TSC_SIGSEGV)
168 disable_TSC();
169 else if (val == PR_TSC_ENABLE)
170 enable_TSC();
171 else
172 return -EINVAL;
173
174 return 0;
175}
176
177void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
178 struct tss_struct *tss)
179{
180 struct thread_struct *prev, *next;
181
182 prev = &prev_p->thread;
183 next = &next_p->thread;
184
185 if (test_tsk_thread_flag(next_p, TIF_DS_AREA_MSR) ||
186 test_tsk_thread_flag(prev_p, TIF_DS_AREA_MSR))
187 ds_switch_to(prev_p, next_p);
188 else if (next->debugctlmsr != prev->debugctlmsr)
189 update_debugctlmsr(next->debugctlmsr);
190
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800191 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
192 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
193 /* prev and next are different */
194 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
195 hard_disable_TSC();
196 else
197 hard_enable_TSC();
198 }
199
200 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
201 /*
202 * Copy the relevant range of the IO bitmap.
203 * Normally this is 128 bytes or less:
204 */
205 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
206 max(prev->io_bitmap_max, next->io_bitmap_max));
207 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
208 /*
209 * Clear any possible leftover bits:
210 */
211 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
212 }
Avi Kivity7c68af62009-09-19 09:40:22 +0300213 propagate_user_return_notify(prev_p, next_p);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800214}
215
216int sys_fork(struct pt_regs *regs)
217{
218 return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
219}
220
221/*
222 * This is trivial, and on the face of it looks like it
223 * could equally well be done in user mode.
224 *
225 * Not so, for quite unobvious reasons - register pressure.
226 * In user mode vfork() cannot have a stack frame, and if
227 * done by calling the "clone()" system call directly, you
228 * do not have enough call-clobbered registers to hold all
229 * the information you need.
230 */
231int sys_vfork(struct pt_regs *regs)
232{
233 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
234 NULL, NULL);
235}
236
Brian Gerstf839bbc2009-12-09 19:01:56 -0500237long
238sys_clone(unsigned long clone_flags, unsigned long newsp,
239 void __user *parent_tid, void __user *child_tid, struct pt_regs *regs)
240{
241 if (!newsp)
242 newsp = regs->sp;
243 return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
244}
245
Brian Gerstdf59e7b2009-12-09 12:34:44 -0500246/*
247 * This gets run with %si containing the
248 * function to call, and %di containing
249 * the "args".
250 */
251extern void kernel_thread_helper(void);
252
253/*
254 * Create a kernel thread
255 */
256int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
257{
258 struct pt_regs regs;
259
260 memset(&regs, 0, sizeof(regs));
261
262 regs.si = (unsigned long) fn;
263 regs.di = (unsigned long) arg;
264
265#ifdef CONFIG_X86_32
266 regs.ds = __USER_DS;
267 regs.es = __USER_DS;
268 regs.fs = __KERNEL_PERCPU;
269 regs.gs = __KERNEL_STACK_CANARY;
270#endif
271
272 regs.orig_ax = -1;
273 regs.ip = (unsigned long) kernel_thread_helper;
274 regs.cs = __KERNEL_CS | get_kernel_rpl();
275 regs.flags = X86_EFLAGS_IF | 0x2;
276
277 /* Ok, create the new process.. */
278 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
279}
280EXPORT_SYMBOL(kernel_thread);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800281
282/*
Brian Gerst11cf88b2009-12-09 19:01:53 -0500283 * sys_execve() executes a new program.
284 */
285long sys_execve(char __user *name, char __user * __user *argv,
286 char __user * __user *envp, struct pt_regs *regs)
287{
288 long error;
289 char *filename;
290
291 filename = getname(name);
292 error = PTR_ERR(filename);
293 if (IS_ERR(filename))
294 return error;
295 error = do_execve(filename, argv, envp, regs);
296
297#ifdef CONFIG_X86_32
298 if (error == 0) {
299 /* Make sure we don't return using sysenter.. */
300 set_thread_flag(TIF_IRET);
301 }
302#endif
303
304 putname(filename);
305 return error;
306}
307
308/*
Thomas Gleixner00dba562008-06-09 18:35:28 +0200309 * Idle related variables and functions
310 */
311unsigned long boot_option_idle_override = 0;
312EXPORT_SYMBOL(boot_option_idle_override);
313
314/*
315 * Powermanagement idle function, if any..
316 */
317void (*pm_idle)(void);
318EXPORT_SYMBOL(pm_idle);
319
320#ifdef CONFIG_X86_32
321/*
322 * This halt magic was a workaround for ancient floppy DMA
323 * wreckage. It should be safe to remove.
324 */
325static int hlt_counter;
326void disable_hlt(void)
327{
328 hlt_counter++;
329}
330EXPORT_SYMBOL(disable_hlt);
331
332void enable_hlt(void)
333{
334 hlt_counter--;
335}
336EXPORT_SYMBOL(enable_hlt);
337
338static inline int hlt_use_halt(void)
339{
340 return (!hlt_counter && boot_cpu_data.hlt_works_ok);
341}
342#else
343static inline int hlt_use_halt(void)
344{
345 return 1;
346}
347#endif
348
349/*
350 * We use this if we don't have any better
351 * idle routine..
352 */
353void default_idle(void)
354{
355 if (hlt_use_halt()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200356 trace_power_start(POWER_CSTATE, 1);
Thomas Gleixner00dba562008-06-09 18:35:28 +0200357 current_thread_info()->status &= ~TS_POLLING;
358 /*
359 * TS_POLLING-cleared state must be visible before we
360 * test NEED_RESCHED:
361 */
362 smp_mb();
363
364 if (!need_resched())
365 safe_halt(); /* enables interrupts racelessly */
366 else
367 local_irq_enable();
368 current_thread_info()->status |= TS_POLLING;
369 } else {
370 local_irq_enable();
371 /* loop is done by the caller */
372 cpu_relax();
373 }
374}
375#ifdef CONFIG_APM_MODULE
376EXPORT_SYMBOL(default_idle);
377#endif
378
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +0100379void stop_this_cpu(void *dummy)
380{
381 local_irq_disable();
382 /*
383 * Remove this CPU:
384 */
Rusty Russell4f062892009-03-13 14:49:54 +1030385 set_cpu_online(smp_processor_id(), false);
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +0100386 disable_local_APIC();
387
388 for (;;) {
389 if (hlt_works(smp_processor_id()))
390 halt();
391 }
392}
393
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200394static void do_nothing(void *unused)
395{
396}
397
398/*
399 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
400 * pm_idle and update to new pm_idle value. Required while changing pm_idle
401 * handler on SMP systems.
402 *
403 * Caller must have changed pm_idle to the new value before the call. Old
404 * pm_idle value will not be used by any CPU after the return of this function.
405 */
406void cpu_idle_wait(void)
407{
408 smp_mb();
409 /* kick all the CPUs so that they exit out of pm_idle */
Ingo Molnar127a2372008-06-27 11:48:22 +0200410 smp_call_function(do_nothing, NULL, 1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200411}
412EXPORT_SYMBOL_GPL(cpu_idle_wait);
413
414/*
415 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
416 * which can obviate IPI to trigger checking of need_resched.
417 * We execute MONITOR against need_resched and enter optimized wait state
418 * through MWAIT. Whenever someone changes need_resched, we would be woken
419 * up from MWAIT (without an IPI).
420 *
421 * New with Core Duo processors, MWAIT can take some hints based on CPU
422 * capability.
423 */
424void mwait_idle_with_hints(unsigned long ax, unsigned long cx)
425{
Arjan van de Ven61613522009-09-17 16:11:28 +0200426 trace_power_start(POWER_CSTATE, (ax>>4)+1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200427 if (!need_resched()) {
Pallipadi, Venkateshe736ad52009-02-06 16:52:05 -0800428 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
429 clflush((void *)&current_thread_info()->flags);
430
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200431 __monitor((void *)&current_thread_info()->flags, 0, 0);
432 smp_mb();
433 if (!need_resched())
434 __mwait(ax, cx);
435 }
436}
437
438/* Default MONITOR/MWAIT with no hints, used for default C1 state */
439static void mwait_idle(void)
440{
441 if (!need_resched()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200442 trace_power_start(POWER_CSTATE, 1);
Pallipadi, Venkateshe736ad52009-02-06 16:52:05 -0800443 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
444 clflush((void *)&current_thread_info()->flags);
445
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200446 __monitor((void *)&current_thread_info()->flags, 0, 0);
447 smp_mb();
448 if (!need_resched())
449 __sti_mwait(0, 0);
450 else
451 local_irq_enable();
452 } else
453 local_irq_enable();
454}
455
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200456/*
457 * On SMP it's slightly faster (but much more power-consuming!)
458 * to poll the ->work.need_resched flag instead of waiting for the
459 * cross-CPU IPI to arrive. Use this option with caution.
460 */
461static void poll_idle(void)
462{
Arjan van de Ven61613522009-09-17 16:11:28 +0200463 trace_power_start(POWER_CSTATE, 0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200464 local_irq_enable();
Joe Korty2c7e9fd2008-08-27 10:35:06 -0400465 while (!need_resched())
466 cpu_relax();
Arjan van de Ven61613522009-09-17 16:11:28 +0200467 trace_power_end(0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200468}
469
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200470/*
471 * mwait selection logic:
472 *
473 * It depends on the CPU. For AMD CPUs that support MWAIT this is
474 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
475 * then depend on a clock divisor and current Pstate of the core. If
476 * all cores of a processor are in halt state (C1) the processor can
477 * enter the C1E (C1 enhanced) state. If mwait is used this will never
478 * happen.
479 *
480 * idle=mwait overrides this decision and forces the usage of mwait.
481 */
Jan Beulich08ad8af2008-07-18 13:45:20 +0100482static int __cpuinitdata force_mwait;
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200483
484#define MWAIT_INFO 0x05
485#define MWAIT_ECX_EXTENDED_INFO 0x01
486#define MWAIT_EDX_C1 0xf0
487
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200488static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c)
489{
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200490 u32 eax, ebx, ecx, edx;
491
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200492 if (force_mwait)
493 return 1;
494
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200495 if (c->cpuid_level < MWAIT_INFO)
496 return 0;
497
498 cpuid(MWAIT_INFO, &eax, &ebx, &ecx, &edx);
499 /* Check, whether EDX has extended info about MWAIT */
500 if (!(ecx & MWAIT_ECX_EXTENDED_INFO))
501 return 1;
502
503 /*
504 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
505 * C1 supports MWAIT
506 */
507 return (edx & MWAIT_EDX_C1);
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200508}
509
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200510/*
511 * Check for AMD CPUs, which have potentially C1E support
512 */
513static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
514{
515 if (c->x86_vendor != X86_VENDOR_AMD)
516 return 0;
517
518 if (c->x86 < 0x0F)
519 return 0;
520
521 /* Family 0x0f models < rev F do not have C1E */
522 if (c->x86 == 0x0f && c->x86_model < 0x40)
523 return 0;
524
525 return 1;
526}
527
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030528static cpumask_var_t c1e_mask;
Thomas Gleixner4faac972008-09-22 18:54:29 +0200529static int c1e_detected;
530
531void c1e_remove_cpu(int cpu)
532{
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030533 if (c1e_mask != NULL)
534 cpumask_clear_cpu(cpu, c1e_mask);
Thomas Gleixner4faac972008-09-22 18:54:29 +0200535}
536
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200537/*
538 * C1E aware idle routine. We check for C1E active in the interrupt
539 * pending message MSR. If we detect C1E, then we handle it the same
540 * way as C3 power states (local apic timer and TSC stop)
541 */
542static void c1e_idle(void)
543{
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200544 if (need_resched())
545 return;
546
547 if (!c1e_detected) {
548 u32 lo, hi;
549
550 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
551 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
552 c1e_detected = 1;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800553 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Andreas Herrmann09bfeea2008-09-18 21:12:10 +0200554 mark_tsc_unstable("TSC halt in AMD C1E");
555 printk(KERN_INFO "System has AMD C1E enabled\n");
Thomas Gleixnera8d68292008-09-22 19:02:25 +0200556 set_cpu_cap(&boot_cpu_data, X86_FEATURE_AMDC1E);
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200557 }
558 }
559
560 if (c1e_detected) {
561 int cpu = smp_processor_id();
562
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030563 if (!cpumask_test_cpu(cpu, c1e_mask)) {
564 cpumask_set_cpu(cpu, c1e_mask);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200565 /*
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700566 * Force broadcast so ACPI can not interfere.
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200567 */
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200568 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
569 &cpu);
570 printk(KERN_INFO "Switch to broadcast mode on CPU%d\n",
571 cpu);
572 }
573 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200574
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200575 default_idle();
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200576
577 /*
578 * The switch back from broadcast mode needs to be
579 * called with interrupts disabled.
580 */
581 local_irq_disable();
582 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
583 local_irq_enable();
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200584 } else
585 default_idle();
586}
587
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200588void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
589{
Ingo Molnar3e5095d2009-01-27 17:07:08 +0100590#ifdef CONFIG_SMP
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200591 if (pm_idle == poll_idle && smp_num_siblings > 1) {
592 printk(KERN_WARNING "WARNING: polling idle and HT enabled,"
593 " performance may degrade.\n");
594 }
595#endif
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200596 if (pm_idle)
597 return;
598
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200599 if (cpu_has(c, X86_FEATURE_MWAIT) && mwait_usable(c)) {
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200600 /*
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200601 * One CPU supports mwait => All CPUs supports mwait
602 */
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200603 printk(KERN_INFO "using mwait in idle threads.\n");
604 pm_idle = mwait_idle;
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200605 } else if (check_c1e_idle(c)) {
606 printk(KERN_INFO "using C1E aware idle routine\n");
607 pm_idle = c1e_idle;
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200608 } else
609 pm_idle = default_idle;
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200610}
611
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030612void __init init_c1e_mask(void)
613{
614 /* If we're using c1e_idle, we need to allocate c1e_mask. */
Li Zefan79f55992009-06-15 14:58:26 +0800615 if (pm_idle == c1e_idle)
616 zalloc_cpumask_var(&c1e_mask, GFP_KERNEL);
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030617}
618
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200619static int __init idle_setup(char *str)
620{
Cyrill Gorcunovab6bc3e2008-07-05 15:53:36 +0400621 if (!str)
622 return -EINVAL;
623
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200624 if (!strcmp(str, "poll")) {
625 printk("using polling idle threads.\n");
626 pm_idle = poll_idle;
627 } else if (!strcmp(str, "mwait"))
628 force_mwait = 1;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800629 else if (!strcmp(str, "halt")) {
630 /*
631 * When the boot option of idle=halt is added, halt is
632 * forced to be used for CPU idle. In such case CPU C2/C3
633 * won't be used again.
634 * To continue to load the CPU idle driver, don't touch
635 * the boot_option_idle_override.
636 */
637 pm_idle = default_idle;
638 idle_halt = 1;
639 return 0;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800640 } else if (!strcmp(str, "nomwait")) {
641 /*
642 * If the boot option of "idle=nomwait" is added,
643 * it means that mwait will be disabled for CPU C2/C3
644 * states. In such case it won't touch the variable
645 * of boot_option_idle_override.
646 */
647 idle_nomwait = 1;
648 return 0;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800649 } else
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200650 return -1;
651
652 boot_option_idle_override = 1;
653 return 0;
654}
655early_param("idle", idle_setup);
656
Amerigo Wang9d62dcd2009-05-11 22:05:28 -0400657unsigned long arch_align_stack(unsigned long sp)
658{
659 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
660 sp -= get_random_int() % 8192;
661 return sp & ~0xf;
662}
663
664unsigned long arch_randomize_brk(struct mm_struct *mm)
665{
666 unsigned long range_end = mm->brk + 0x02000000;
667 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
668}
669