blob: 8328009416d72b30c69a50d3a443021a87750a4d [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>
K.Prasad66cb5912009-06-01 23:44:55 +053023#include <asm/debugreg.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080024
25unsigned long idle_halt;
26EXPORT_SYMBOL(idle_halt);
Zhao Yakuida5e09a2008-06-24 18:01:09 +080027unsigned long idle_nomwait;
28EXPORT_SYMBOL(idle_nomwait);
Suresh Siddha61c46282008-03-10 15:28:04 -070029
Suresh Siddhaaa283f42008-03-10 15:28:05 -070030struct kmem_cache *task_xstate_cachep;
Suresh Siddha61c46282008-03-10 15:28:04 -070031
32int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
33{
34 *dst = *src;
Suresh Siddhaaa283f42008-03-10 15:28:05 -070035 if (src->thread.xstate) {
36 dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
37 GFP_KERNEL);
38 if (!dst->thread.xstate)
39 return -ENOMEM;
40 WARN_ON((unsigned long)dst->thread.xstate & 15);
41 memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
42 }
Suresh Siddha61c46282008-03-10 15:28:04 -070043 return 0;
44}
45
Suresh Siddhaaa283f42008-03-10 15:28:05 -070046void free_thread_xstate(struct task_struct *tsk)
47{
48 if (tsk->thread.xstate) {
49 kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
50 tsk->thread.xstate = NULL;
51 }
52}
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
Brian Gerst3bef4442010-01-13 10:45:55 -050092void show_regs(struct pt_regs *regs)
93{
94 show_registers(regs);
95 show_trace(NULL, regs, (unsigned long *)kernel_stack_pointer(regs),
96 regs->bp);
97}
98
Andy Isaacson814e2c82009-12-08 00:29:42 -080099void show_regs_common(void)
100{
Andy Isaacsona1884b82009-12-08 00:30:21 -0800101 const char *board, *product;
Andy Isaacson814e2c82009-12-08 00:29:42 -0800102
Andy Isaacsona1884b82009-12-08 00:30:21 -0800103 board = dmi_get_system_info(DMI_BOARD_NAME);
Andy Isaacson814e2c82009-12-08 00:29:42 -0800104 if (!board)
105 board = "";
Andy Isaacsona1884b82009-12-08 00:30:21 -0800106 product = dmi_get_system_info(DMI_PRODUCT_NAME);
107 if (!product)
108 product = "";
Andy Isaacson814e2c82009-12-08 00:29:42 -0800109
Pekka Enbergd015a092009-12-28 10:26:59 +0200110 printk(KERN_CONT "\n");
111 printk(KERN_DEFAULT "Pid: %d, comm: %.20s %s %s %.*s %s/%s\n",
Andy Isaacson814e2c82009-12-08 00:29:42 -0800112 current->pid, current->comm, print_tainted(),
113 init_utsname()->release,
114 (int)strcspn(init_utsname()->version, " "),
Andy Isaacsona1884b82009-12-08 00:30:21 -0800115 init_utsname()->version, board, product);
Andy Isaacson814e2c82009-12-08 00:29:42 -0800116}
117
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800118void flush_thread(void)
119{
120 struct task_struct *tsk = current;
121
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200122 flush_ptrace_hw_breakpoint(tsk);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800123 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
124 /*
125 * Forget coprocessor state..
126 */
127 tsk->fpu_counter = 0;
128 clear_fpu(tsk);
129 clear_used_math();
130}
131
132static void hard_disable_TSC(void)
133{
134 write_cr4(read_cr4() | X86_CR4_TSD);
135}
136
137void disable_TSC(void)
138{
139 preempt_disable();
140 if (!test_and_set_thread_flag(TIF_NOTSC))
141 /*
142 * Must flip the CPU state synchronously with
143 * TIF_NOTSC in the current running context.
144 */
145 hard_disable_TSC();
146 preempt_enable();
147}
148
149static void hard_enable_TSC(void)
150{
151 write_cr4(read_cr4() & ~X86_CR4_TSD);
152}
153
154static void enable_TSC(void)
155{
156 preempt_disable();
157 if (test_and_clear_thread_flag(TIF_NOTSC))
158 /*
159 * Must flip the CPU state synchronously with
160 * TIF_NOTSC in the current running context.
161 */
162 hard_enable_TSC();
163 preempt_enable();
164}
165
166int get_tsc_mode(unsigned long adr)
167{
168 unsigned int val;
169
170 if (test_thread_flag(TIF_NOTSC))
171 val = PR_TSC_SIGSEGV;
172 else
173 val = PR_TSC_ENABLE;
174
175 return put_user(val, (unsigned int __user *)adr);
176}
177
178int set_tsc_mode(unsigned int val)
179{
180 if (val == PR_TSC_SIGSEGV)
181 disable_TSC();
182 else if (val == PR_TSC_ENABLE)
183 enable_TSC();
184 else
185 return -EINVAL;
186
187 return 0;
188}
189
190void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
191 struct tss_struct *tss)
192{
193 struct thread_struct *prev, *next;
194
195 prev = &prev_p->thread;
196 next = &next_p->thread;
197
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100198 if (test_tsk_thread_flag(prev_p, TIF_BLOCKSTEP) ^
199 test_tsk_thread_flag(next_p, TIF_BLOCKSTEP)) {
200 unsigned long debugctl = get_debugctlmsr();
201
202 debugctl &= ~DEBUGCTLMSR_BTF;
203 if (test_tsk_thread_flag(next_p, TIF_BLOCKSTEP))
204 debugctl |= DEBUGCTLMSR_BTF;
205
206 update_debugctlmsr(debugctl);
207 }
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
Brian Gerstf839bbc2009-12-09 19:01:56 -0500255long
256sys_clone(unsigned long clone_flags, unsigned long newsp,
257 void __user *parent_tid, void __user *child_tid, struct pt_regs *regs)
258{
259 if (!newsp)
260 newsp = regs->sp;
261 return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
262}
263
Brian Gerstdf59e7b2009-12-09 12:34:44 -0500264/*
265 * This gets run with %si containing the
266 * function to call, and %di containing
267 * the "args".
268 */
269extern void kernel_thread_helper(void);
270
271/*
272 * Create a kernel thread
273 */
274int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
275{
276 struct pt_regs regs;
277
278 memset(&regs, 0, sizeof(regs));
279
280 regs.si = (unsigned long) fn;
281 regs.di = (unsigned long) arg;
282
283#ifdef CONFIG_X86_32
284 regs.ds = __USER_DS;
285 regs.es = __USER_DS;
286 regs.fs = __KERNEL_PERCPU;
287 regs.gs = __KERNEL_STACK_CANARY;
Cyrill Gorcunov864a0922010-01-13 10:16:07 +0000288#else
289 regs.ss = __KERNEL_DS;
Brian Gerstdf59e7b2009-12-09 12:34:44 -0500290#endif
291
292 regs.orig_ax = -1;
293 regs.ip = (unsigned long) kernel_thread_helper;
294 regs.cs = __KERNEL_CS | get_kernel_rpl();
295 regs.flags = X86_EFLAGS_IF | 0x2;
296
297 /* Ok, create the new process.. */
298 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
299}
300EXPORT_SYMBOL(kernel_thread);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800301
302/*
Brian Gerst11cf88b2009-12-09 19:01:53 -0500303 * sys_execve() executes a new program.
304 */
305long sys_execve(char __user *name, char __user * __user *argv,
306 char __user * __user *envp, struct pt_regs *regs)
307{
308 long error;
309 char *filename;
310
311 filename = getname(name);
312 error = PTR_ERR(filename);
313 if (IS_ERR(filename))
314 return error;
315 error = do_execve(filename, argv, envp, regs);
316
317#ifdef CONFIG_X86_32
318 if (error == 0) {
319 /* Make sure we don't return using sysenter.. */
320 set_thread_flag(TIF_IRET);
321 }
322#endif
323
324 putname(filename);
325 return error;
326}
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200327
328/*
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200329 * Idle related variables and functions
330 */
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200331unsigned long boot_option_idle_override = 0;
332EXPORT_SYMBOL(boot_option_idle_override);
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200333
334/*
335 * Powermanagement idle function, if any..
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200336 */
337void (*pm_idle)(void);
338EXPORT_SYMBOL(pm_idle);
339
340#ifdef CONFIG_X86_32
341/*
342 * This halt magic was a workaround for ancient floppy DMA
343 * wreckage. It should be safe to remove.
344 */
345static int hlt_counter;
346void disable_hlt(void)
347{
348 hlt_counter++;
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200349}
350EXPORT_SYMBOL(disable_hlt);
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200351
352void enable_hlt(void)
353{
354 hlt_counter--;
355}
356EXPORT_SYMBOL(enable_hlt);
357
358static inline int hlt_use_halt(void)
359{
360 return (!hlt_counter && boot_cpu_data.hlt_works_ok);
361}
362#else
363static inline int hlt_use_halt(void)
364{
365 return 1;
366}
367#endif
368
Thomas Gleixner4faac972008-09-22 18:54:29 +0200369/*
370 * We use this if we don't have any better
371 * idle routine..
372 */
373void default_idle(void)
374{
375 if (hlt_use_halt()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200376 trace_power_start(POWER_CSTATE, 1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200377 current_thread_info()->status &= ~TS_POLLING;
378 /*
379 * TS_POLLING-cleared state must be visible before we
380 * test NEED_RESCHED:
381 */
382 smp_mb();
383
384 if (!need_resched())
385 safe_halt(); /* enables interrupts racelessly */
386 else
387 local_irq_enable();
388 current_thread_info()->status |= TS_POLLING;
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200389 } else {
390 local_irq_enable();
391 /* loop is done by the caller */
392 cpu_relax();
393 }
394}
395#ifdef CONFIG_APM_MODULE
396EXPORT_SYMBOL(default_idle);
397#endif
398
399void stop_this_cpu(void *dummy)
400{
401 local_irq_disable();
402 /*
403 * Remove this CPU:
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200404 */
Rusty Russell4f062892009-03-13 14:49:54 +1030405 set_cpu_online(smp_processor_id(), false);
Suresh Siddha61c46282008-03-10 15:28:04 -0700406 disable_local_APIC();
407
408 for (;;) {
409 if (hlt_works(smp_processor_id()))
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200410 halt();
411 }
412}
413
414static void do_nothing(void *unused)
415{
416}
417
418/*
419 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
420 * pm_idle and update to new pm_idle value. Required while changing pm_idle
421 * handler on SMP systems.
422 *
423 * Caller must have changed pm_idle to the new value before the call. Old
424 * pm_idle value will not be used by any CPU after the return of this function.
425 */
426void cpu_idle_wait(void)
427{
428 smp_mb();
429 /* kick all the CPUs so that they exit out of pm_idle */
430 smp_call_function(do_nothing, NULL, 1);
431}
432EXPORT_SYMBOL_GPL(cpu_idle_wait);
433
434/*
435 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
436 * which can obviate IPI to trigger checking of need_resched.
437 * We execute MONITOR against need_resched and enter optimized wait state
438 * through MWAIT. Whenever someone changes need_resched, we would be woken
439 * up from MWAIT (without an IPI).
440 *
441 * New with Core Duo processors, MWAIT can take some hints based on CPU
442 * capability.
443 */
444void mwait_idle_with_hints(unsigned long ax, unsigned long cx)
445{
Arjan van de Ven61613522009-09-17 16:11:28 +0200446 trace_power_start(POWER_CSTATE, (ax>>4)+1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200447 if (!need_resched()) {
448 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
449 clflush((void *)&current_thread_info()->flags);
450
451 __monitor((void *)&current_thread_info()->flags, 0, 0);
452 smp_mb();
453 if (!need_resched())
454 __mwait(ax, cx);
455 }
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200456}
457
458/* Default MONITOR/MWAIT with no hints, used for default C1 state */
459static void mwait_idle(void)
460{
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200461 if (!need_resched()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200462 trace_power_start(POWER_CSTATE, 1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200463 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
464 clflush((void *)&current_thread_info()->flags);
465
466 __monitor((void *)&current_thread_info()->flags, 0, 0);
467 smp_mb();
468 if (!need_resched())
469 __sti_mwait(0, 0);
470 else
471 local_irq_enable();
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200472 } else
473 local_irq_enable();
474}
475
476/*
477 * On SMP it's slightly faster (but much more power-consuming!)
478 * to poll the ->work.need_resched flag instead of waiting for the
479 * cross-CPU IPI to arrive. Use this option with caution.
480 */
481static void poll_idle(void)
482{
Arjan van de Ven61613522009-09-17 16:11:28 +0200483 trace_power_start(POWER_CSTATE, 0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200484 local_irq_enable();
485 while (!need_resched())
486 cpu_relax();
Arjan van de Ven61613522009-09-17 16:11:28 +0200487 trace_power_end(0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200488}
489
490/*
491 * mwait selection logic:
492 *
493 * It depends on the CPU. For AMD CPUs that support MWAIT this is
494 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
495 * then depend on a clock divisor and current Pstate of the core. If
496 * all cores of a processor are in halt state (C1) the processor can
497 * enter the C1E (C1 enhanced) state. If mwait is used this will never
498 * happen.
499 *
500 * idle=mwait overrides this decision and forces the usage of mwait.
501 */
502static int __cpuinitdata force_mwait;
503
504#define MWAIT_INFO 0x05
505#define MWAIT_ECX_EXTENDED_INFO 0x01
506#define MWAIT_EDX_C1 0xf0
507
508static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c)
509{
510 u32 eax, ebx, ecx, edx;
511
512 if (force_mwait)
513 return 1;
514
515 if (c->cpuid_level < MWAIT_INFO)
516 return 0;
517
518 cpuid(MWAIT_INFO, &eax, &ebx, &ecx, &edx);
519 /* Check, whether EDX has extended info about MWAIT */
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200520 if (!(ecx & MWAIT_ECX_EXTENDED_INFO))
521 return 1;
522
523 /*
524 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
525 * C1 supports MWAIT
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200526 */
527 return (edx & MWAIT_EDX_C1);
528}
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200529
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200530/*
531 * Check for AMD CPUs, which have potentially C1E support
532 */
533static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
534{
535 if (c->x86_vendor != X86_VENDOR_AMD)
536 return 0;
537
538 if (c->x86 < 0x0F)
539 return 0;
540
541 /* Family 0x0f models < rev F do not have C1E */
542 if (c->x86 == 0x0f && c->x86_model < 0x40)
543 return 0;
544
545 return 1;
546}
547
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030548static cpumask_var_t c1e_mask;
Thomas Gleixner4faac972008-09-22 18:54:29 +0200549static int c1e_detected;
550
551void c1e_remove_cpu(int cpu)
552{
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030553 if (c1e_mask != NULL)
554 cpumask_clear_cpu(cpu, c1e_mask);
Thomas Gleixner4faac972008-09-22 18:54:29 +0200555}
556
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200557/*
558 * C1E aware idle routine. We check for C1E active in the interrupt
559 * pending message MSR. If we detect C1E, then we handle it the same
560 * way as C3 power states (local apic timer and TSC stop)
561 */
562static void c1e_idle(void)
563{
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200564 if (need_resched())
565 return;
566
567 if (!c1e_detected) {
568 u32 lo, hi;
569
570 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
571 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
572 c1e_detected = 1;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800573 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Andreas Herrmann09bfeea2008-09-18 21:12:10 +0200574 mark_tsc_unstable("TSC halt in AMD C1E");
575 printk(KERN_INFO "System has AMD C1E enabled\n");
Thomas Gleixnera8d68292008-09-22 19:02:25 +0200576 set_cpu_cap(&boot_cpu_data, X86_FEATURE_AMDC1E);
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200577 }
578 }
579
580 if (c1e_detected) {
581 int cpu = smp_processor_id();
582
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030583 if (!cpumask_test_cpu(cpu, c1e_mask)) {
584 cpumask_set_cpu(cpu, c1e_mask);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200585 /*
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700586 * Force broadcast so ACPI can not interfere.
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200587 */
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200588 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
589 &cpu);
590 printk(KERN_INFO "Switch to broadcast mode on CPU%d\n",
591 cpu);
592 }
593 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200594
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200595 default_idle();
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200596
597 /*
598 * The switch back from broadcast mode needs to be
599 * called with interrupts disabled.
600 */
601 local_irq_disable();
602 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
603 local_irq_enable();
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200604 } else
605 default_idle();
606}
607
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200608void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
609{
Ingo Molnar3e5095d2009-01-27 17:07:08 +0100610#ifdef CONFIG_SMP
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200611 if (pm_idle == poll_idle && smp_num_siblings > 1) {
Mike Travisd6dd6922010-03-05 13:10:38 -0600612 printk_once(KERN_WARNING "WARNING: polling idle and HT enabled,"
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200613 " performance may degrade.\n");
614 }
615#endif
616 if (pm_idle)
617 return;
618
619 if (cpu_has(c, X86_FEATURE_MWAIT) && mwait_usable(c)) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700620 /*
Suresh Siddha61c46282008-03-10 15:28:04 -0700621 * One CPU supports mwait => All CPUs supports mwait
622 */
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200623 printk(KERN_INFO "using mwait in idle threads.\n");
624 pm_idle = mwait_idle;
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200625 } else if (check_c1e_idle(c)) {
626 printk(KERN_INFO "using C1E aware idle routine\n");
627 pm_idle = c1e_idle;
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200628 } else
629 pm_idle = default_idle;
Suresh Siddha61c46282008-03-10 15:28:04 -0700630}
631
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030632void __init init_c1e_mask(void)
633{
634 /* If we're using c1e_idle, we need to allocate c1e_mask. */
Li Zefan79f55992009-06-15 14:58:26 +0800635 if (pm_idle == c1e_idle)
636 zalloc_cpumask_var(&c1e_mask, GFP_KERNEL);
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030637}
638
Suresh Siddha61c46282008-03-10 15:28:04 -0700639static int __init idle_setup(char *str)
640{
Cyrill Gorcunovab6bc3e2008-07-05 15:53:36 +0400641 if (!str)
642 return -EINVAL;
643
Suresh Siddha61c46282008-03-10 15:28:04 -0700644 if (!strcmp(str, "poll")) {
645 printk("using polling idle threads.\n");
646 pm_idle = poll_idle;
647 } else if (!strcmp(str, "mwait"))
648 force_mwait = 1;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800649 else if (!strcmp(str, "halt")) {
650 /*
651 * When the boot option of idle=halt is added, halt is
652 * forced to be used for CPU idle. In such case CPU C2/C3
653 * won't be used again.
654 * To continue to load the CPU idle driver, don't touch
655 * the boot_option_idle_override.
656 */
657 pm_idle = default_idle;
658 idle_halt = 1;
659 return 0;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800660 } else if (!strcmp(str, "nomwait")) {
661 /*
662 * If the boot option of "idle=nomwait" is added,
663 * it means that mwait will be disabled for CPU C2/C3
664 * states. In such case it won't touch the variable
665 * of boot_option_idle_override.
666 */
667 idle_nomwait = 1;
668 return 0;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800669 } else
Suresh Siddha61c46282008-03-10 15:28:04 -0700670 return -1;
671
672 boot_option_idle_override = 1;
673 return 0;
674}
675early_param("idle", idle_setup);
676
Amerigo Wang9d62dcd2009-05-11 22:05:28 -0400677unsigned long arch_align_stack(unsigned long sp)
678{
679 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
680 sp -= get_random_int() % 8192;
681 return sp & ~0xf;
682}
683
684unsigned long arch_randomize_brk(struct mm_struct *mm)
685{
686 unsigned long range_end = mm->brk + 0x02000000;
687 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
688}
689