blob: 4e8cb4ee9fcb60973355adb0703a43bc2ff3bae2 [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{
Andy Isaacsona1884b82009-12-08 00:30:21 -080097 const char *board, *product;
Andy Isaacson814e2c82009-12-08 00:29:42 -080098
Andy Isaacsona1884b82009-12-08 00:30:21 -080099 board = dmi_get_system_info(DMI_BOARD_NAME);
Andy Isaacson814e2c82009-12-08 00:29:42 -0800100 if (!board)
101 board = "";
Andy Isaacsona1884b82009-12-08 00:30:21 -0800102 product = dmi_get_system_info(DMI_PRODUCT_NAME);
103 if (!product)
104 product = "";
Andy Isaacson814e2c82009-12-08 00:29:42 -0800105
Pekka Enbergd015a092009-12-28 10:26:59 +0200106 printk(KERN_CONT "\n");
107 printk(KERN_DEFAULT "Pid: %d, comm: %.20s %s %s %.*s %s/%s\n",
Andy Isaacson814e2c82009-12-08 00:29:42 -0800108 current->pid, current->comm, print_tainted(),
109 init_utsname()->release,
110 (int)strcspn(init_utsname()->version, " "),
Andy Isaacsona1884b82009-12-08 00:30:21 -0800111 init_utsname()->version, board, product);
Andy Isaacson814e2c82009-12-08 00:29:42 -0800112}
113
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800114void flush_thread(void)
115{
116 struct task_struct *tsk = current;
117
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200118 flush_ptrace_hw_breakpoint(tsk);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800119 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
120 /*
121 * Forget coprocessor state..
122 */
123 tsk->fpu_counter = 0;
124 clear_fpu(tsk);
125 clear_used_math();
126}
127
128static void hard_disable_TSC(void)
129{
130 write_cr4(read_cr4() | X86_CR4_TSD);
131}
132
133void disable_TSC(void)
134{
135 preempt_disable();
136 if (!test_and_set_thread_flag(TIF_NOTSC))
137 /*
138 * Must flip the CPU state synchronously with
139 * TIF_NOTSC in the current running context.
140 */
141 hard_disable_TSC();
142 preempt_enable();
143}
144
145static void hard_enable_TSC(void)
146{
147 write_cr4(read_cr4() & ~X86_CR4_TSD);
148}
149
150static void enable_TSC(void)
151{
152 preempt_disable();
153 if (test_and_clear_thread_flag(TIF_NOTSC))
154 /*
155 * Must flip the CPU state synchronously with
156 * TIF_NOTSC in the current running context.
157 */
158 hard_enable_TSC();
159 preempt_enable();
160}
161
162int get_tsc_mode(unsigned long adr)
163{
164 unsigned int val;
165
166 if (test_thread_flag(TIF_NOTSC))
167 val = PR_TSC_SIGSEGV;
168 else
169 val = PR_TSC_ENABLE;
170
171 return put_user(val, (unsigned int __user *)adr);
172}
173
174int set_tsc_mode(unsigned int val)
175{
176 if (val == PR_TSC_SIGSEGV)
177 disable_TSC();
178 else if (val == PR_TSC_ENABLE)
179 enable_TSC();
180 else
181 return -EINVAL;
182
183 return 0;
184}
185
186void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
187 struct tss_struct *tss)
188{
189 struct thread_struct *prev, *next;
190
191 prev = &prev_p->thread;
192 next = &next_p->thread;
193
194 if (test_tsk_thread_flag(next_p, TIF_DS_AREA_MSR) ||
195 test_tsk_thread_flag(prev_p, TIF_DS_AREA_MSR))
196 ds_switch_to(prev_p, next_p);
197 else if (next->debugctlmsr != prev->debugctlmsr)
198 update_debugctlmsr(next->debugctlmsr);
199
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800200 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
201 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
202 /* prev and next are different */
203 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
204 hard_disable_TSC();
205 else
206 hard_enable_TSC();
207 }
208
209 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
210 /*
211 * Copy the relevant range of the IO bitmap.
212 * Normally this is 128 bytes or less:
213 */
214 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
215 max(prev->io_bitmap_max, next->io_bitmap_max));
216 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
217 /*
218 * Clear any possible leftover bits:
219 */
220 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
221 }
Avi Kivity7c68af62009-09-19 09:40:22 +0300222 propagate_user_return_notify(prev_p, next_p);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800223}
224
225int sys_fork(struct pt_regs *regs)
226{
227 return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
228}
229
230/*
231 * This is trivial, and on the face of it looks like it
232 * could equally well be done in user mode.
233 *
234 * Not so, for quite unobvious reasons - register pressure.
235 * In user mode vfork() cannot have a stack frame, and if
236 * done by calling the "clone()" system call directly, you
237 * do not have enough call-clobbered registers to hold all
238 * the information you need.
239 */
240int sys_vfork(struct pt_regs *regs)
241{
242 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
243 NULL, NULL);
244}
245
Brian Gerstf839bbc2009-12-09 19:01:56 -0500246long
247sys_clone(unsigned long clone_flags, unsigned long newsp,
248 void __user *parent_tid, void __user *child_tid, struct pt_regs *regs)
249{
250 if (!newsp)
251 newsp = regs->sp;
252 return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
253}
254
Brian Gerstdf59e7b2009-12-09 12:34:44 -0500255/*
256 * This gets run with %si containing the
257 * function to call, and %di containing
258 * the "args".
259 */
260extern void kernel_thread_helper(void);
261
262/*
263 * Create a kernel thread
264 */
265int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
266{
267 struct pt_regs regs;
268
269 memset(&regs, 0, sizeof(regs));
270
271 regs.si = (unsigned long) fn;
272 regs.di = (unsigned long) arg;
273
274#ifdef CONFIG_X86_32
275 regs.ds = __USER_DS;
276 regs.es = __USER_DS;
277 regs.fs = __KERNEL_PERCPU;
278 regs.gs = __KERNEL_STACK_CANARY;
Cyrill Gorcunov864a0922010-01-13 10:16:07 +0000279#else
280 regs.ss = __KERNEL_DS;
Brian Gerstdf59e7b2009-12-09 12:34:44 -0500281#endif
282
283 regs.orig_ax = -1;
284 regs.ip = (unsigned long) kernel_thread_helper;
285 regs.cs = __KERNEL_CS | get_kernel_rpl();
286 regs.flags = X86_EFLAGS_IF | 0x2;
287
288 /* Ok, create the new process.. */
289 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
290}
291EXPORT_SYMBOL(kernel_thread);
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -0800292
293/*
Brian Gerst11cf88b2009-12-09 19:01:53 -0500294 * sys_execve() executes a new program.
295 */
296long sys_execve(char __user *name, char __user * __user *argv,
297 char __user * __user *envp, struct pt_regs *regs)
298{
299 long error;
300 char *filename;
301
302 filename = getname(name);
303 error = PTR_ERR(filename);
304 if (IS_ERR(filename))
305 return error;
306 error = do_execve(filename, argv, envp, regs);
307
308#ifdef CONFIG_X86_32
309 if (error == 0) {
310 /* Make sure we don't return using sysenter.. */
311 set_thread_flag(TIF_IRET);
312 }
313#endif
314
315 putname(filename);
316 return error;
317}
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200318
319/*
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200320 * Idle related variables and functions
321 */
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200322unsigned long boot_option_idle_override = 0;
323EXPORT_SYMBOL(boot_option_idle_override);
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200324
325/*
326 * Powermanagement idle function, if any..
Thomas Gleixner09fd4b42008-06-09 18:04:27 +0200327 */
328void (*pm_idle)(void);
329EXPORT_SYMBOL(pm_idle);
330
331#ifdef CONFIG_X86_32
332/*
333 * This halt magic was a workaround for ancient floppy DMA
334 * wreckage. It should be safe to remove.
335 */
336static int hlt_counter;
337void disable_hlt(void)
338{
339 hlt_counter++;
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200340}
341EXPORT_SYMBOL(disable_hlt);
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200342
343void enable_hlt(void)
344{
345 hlt_counter--;
346}
347EXPORT_SYMBOL(enable_hlt);
348
349static inline int hlt_use_halt(void)
350{
351 return (!hlt_counter && boot_cpu_data.hlt_works_ok);
352}
353#else
354static inline int hlt_use_halt(void)
355{
356 return 1;
357}
358#endif
359
Thomas Gleixner4faac972008-09-22 18:54:29 +0200360/*
361 * We use this if we don't have any better
362 * idle routine..
363 */
364void default_idle(void)
365{
366 if (hlt_use_halt()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200367 trace_power_start(POWER_CSTATE, 1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200368 current_thread_info()->status &= ~TS_POLLING;
369 /*
370 * TS_POLLING-cleared state must be visible before we
371 * test NEED_RESCHED:
372 */
373 smp_mb();
374
375 if (!need_resched())
376 safe_halt(); /* enables interrupts racelessly */
377 else
378 local_irq_enable();
379 current_thread_info()->status |= TS_POLLING;
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200380 } else {
381 local_irq_enable();
382 /* loop is done by the caller */
383 cpu_relax();
384 }
385}
386#ifdef CONFIG_APM_MODULE
387EXPORT_SYMBOL(default_idle);
388#endif
389
390void stop_this_cpu(void *dummy)
391{
392 local_irq_disable();
393 /*
394 * Remove this CPU:
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200395 */
Rusty Russell4f062892009-03-13 14:49:54 +1030396 set_cpu_online(smp_processor_id(), false);
Suresh Siddha61c46282008-03-10 15:28:04 -0700397 disable_local_APIC();
398
399 for (;;) {
400 if (hlt_works(smp_processor_id()))
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200401 halt();
402 }
403}
404
405static void do_nothing(void *unused)
406{
407}
408
409/*
410 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
411 * pm_idle and update to new pm_idle value. Required while changing pm_idle
412 * handler on SMP systems.
413 *
414 * Caller must have changed pm_idle to the new value before the call. Old
415 * pm_idle value will not be used by any CPU after the return of this function.
416 */
417void cpu_idle_wait(void)
418{
419 smp_mb();
420 /* kick all the CPUs so that they exit out of pm_idle */
421 smp_call_function(do_nothing, NULL, 1);
422}
423EXPORT_SYMBOL_GPL(cpu_idle_wait);
424
425/*
426 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
427 * which can obviate IPI to trigger checking of need_resched.
428 * We execute MONITOR against need_resched and enter optimized wait state
429 * through MWAIT. Whenever someone changes need_resched, we would be woken
430 * up from MWAIT (without an IPI).
431 *
432 * New with Core Duo processors, MWAIT can take some hints based on CPU
433 * capability.
434 */
435void mwait_idle_with_hints(unsigned long ax, unsigned long cx)
436{
Arjan van de Ven61613522009-09-17 16:11:28 +0200437 trace_power_start(POWER_CSTATE, (ax>>4)+1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200438 if (!need_resched()) {
439 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
440 clflush((void *)&current_thread_info()->flags);
441
442 __monitor((void *)&current_thread_info()->flags, 0, 0);
443 smp_mb();
444 if (!need_resched())
445 __mwait(ax, cx);
446 }
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200447}
448
449/* Default MONITOR/MWAIT with no hints, used for default C1 state */
450static void mwait_idle(void)
451{
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200452 if (!need_resched()) {
Arjan van de Ven61613522009-09-17 16:11:28 +0200453 trace_power_start(POWER_CSTATE, 1);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200454 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
455 clflush((void *)&current_thread_info()->flags);
456
457 __monitor((void *)&current_thread_info()->flags, 0, 0);
458 smp_mb();
459 if (!need_resched())
460 __sti_mwait(0, 0);
461 else
462 local_irq_enable();
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200463 } else
464 local_irq_enable();
465}
466
467/*
468 * On SMP it's slightly faster (but much more power-consuming!)
469 * to poll the ->work.need_resched flag instead of waiting for the
470 * cross-CPU IPI to arrive. Use this option with caution.
471 */
472static void poll_idle(void)
473{
Arjan van de Ven61613522009-09-17 16:11:28 +0200474 trace_power_start(POWER_CSTATE, 0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200475 local_irq_enable();
476 while (!need_resched())
477 cpu_relax();
Arjan van de Ven61613522009-09-17 16:11:28 +0200478 trace_power_end(0);
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200479}
480
481/*
482 * mwait selection logic:
483 *
484 * It depends on the CPU. For AMD CPUs that support MWAIT this is
485 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
486 * then depend on a clock divisor and current Pstate of the core. If
487 * all cores of a processor are in halt state (C1) the processor can
488 * enter the C1E (C1 enhanced) state. If mwait is used this will never
489 * happen.
490 *
491 * idle=mwait overrides this decision and forces the usage of mwait.
492 */
493static int __cpuinitdata force_mwait;
494
495#define MWAIT_INFO 0x05
496#define MWAIT_ECX_EXTENDED_INFO 0x01
497#define MWAIT_EDX_C1 0xf0
498
499static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c)
500{
501 u32 eax, ebx, ecx, edx;
502
503 if (force_mwait)
504 return 1;
505
506 if (c->cpuid_level < MWAIT_INFO)
507 return 0;
508
509 cpuid(MWAIT_INFO, &eax, &ebx, &ecx, &edx);
510 /* Check, whether EDX has extended info about MWAIT */
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200511 if (!(ecx & MWAIT_ECX_EXTENDED_INFO))
512 return 1;
513
514 /*
515 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
516 * C1 supports MWAIT
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200517 */
518 return (edx & MWAIT_EDX_C1);
519}
Thomas Gleixnere9623b32008-05-16 22:55:26 +0200520
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200521/*
522 * Check for AMD CPUs, which have potentially C1E support
523 */
524static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
525{
526 if (c->x86_vendor != X86_VENDOR_AMD)
527 return 0;
528
529 if (c->x86 < 0x0F)
530 return 0;
531
532 /* Family 0x0f models < rev F do not have C1E */
533 if (c->x86 == 0x0f && c->x86_model < 0x40)
534 return 0;
535
536 return 1;
537}
538
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030539static cpumask_var_t c1e_mask;
Thomas Gleixner4faac972008-09-22 18:54:29 +0200540static int c1e_detected;
541
542void c1e_remove_cpu(int cpu)
543{
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030544 if (c1e_mask != NULL)
545 cpumask_clear_cpu(cpu, c1e_mask);
Thomas Gleixner4faac972008-09-22 18:54:29 +0200546}
547
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200548/*
549 * C1E aware idle routine. We check for C1E active in the interrupt
550 * pending message MSR. If we detect C1E, then we handle it the same
551 * way as C3 power states (local apic timer and TSC stop)
552 */
553static void c1e_idle(void)
554{
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200555 if (need_resched())
556 return;
557
558 if (!c1e_detected) {
559 u32 lo, hi;
560
561 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
562 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
563 c1e_detected = 1;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800564 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Andreas Herrmann09bfeea2008-09-18 21:12:10 +0200565 mark_tsc_unstable("TSC halt in AMD C1E");
566 printk(KERN_INFO "System has AMD C1E enabled\n");
Thomas Gleixnera8d68292008-09-22 19:02:25 +0200567 set_cpu_cap(&boot_cpu_data, X86_FEATURE_AMDC1E);
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200568 }
569 }
570
571 if (c1e_detected) {
572 int cpu = smp_processor_id();
573
Rusty Russellbc9b83d2009-03-13 14:49:49 +1030574 if (!cpumask_test_cpu(cpu, c1e_mask)) {
575 cpumask_set_cpu(cpu, c1e_mask);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200576 /*
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700577 * Force broadcast so ACPI can not interfere.
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200578 */
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200579 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
580 &cpu);
581 printk(KERN_INFO "Switch to broadcast mode on CPU%d\n",
582 cpu);
583 }
584 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200585
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200586 default_idle();
Thomas Gleixner0beefa22008-06-17 09:12:03 +0200587
588 /*
589 * The switch back from broadcast mode needs to be
590 * called with interrupts disabled.
591 */
592 local_irq_disable();
593 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
594 local_irq_enable();
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200595 } else
596 default_idle();
597}
598
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200599void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
600{
Ingo Molnar3e5095d2009-01-27 17:07:08 +0100601#ifdef CONFIG_SMP
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200602 if (pm_idle == poll_idle && smp_num_siblings > 1) {
Mike Travisd6dd6922010-03-05 13:10:38 -0600603 printk_once(KERN_WARNING "WARNING: polling idle and HT enabled,"
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200604 " performance may degrade.\n");
605 }
606#endif
607 if (pm_idle)
608 return;
609
610 if (cpu_has(c, X86_FEATURE_MWAIT) && mwait_usable(c)) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700611 /*
Suresh Siddha61c46282008-03-10 15:28:04 -0700612 * One CPU supports mwait => All CPUs supports mwait
613 */
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200614 printk(KERN_INFO "using mwait in idle threads.\n");
615 pm_idle = mwait_idle;
Thomas Gleixneraa276e12008-06-09 19:15:00 +0200616 } else if (check_c1e_idle(c)) {
617 printk(KERN_INFO "using C1E aware idle routine\n");
618 pm_idle = c1e_idle;
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200619 } else
620 pm_idle = default_idle;
Suresh Siddha61c46282008-03-10 15:28:04 -0700621}
622
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030623void __init init_c1e_mask(void)
624{
625 /* If we're using c1e_idle, we need to allocate c1e_mask. */
Li Zefan79f55992009-06-15 14:58:26 +0800626 if (pm_idle == c1e_idle)
627 zalloc_cpumask_var(&c1e_mask, GFP_KERNEL);
Rusty Russell30e1e6d2009-03-17 14:50:34 +1030628}
629
Suresh Siddha61c46282008-03-10 15:28:04 -0700630static int __init idle_setup(char *str)
631{
Cyrill Gorcunovab6bc3e2008-07-05 15:53:36 +0400632 if (!str)
633 return -EINVAL;
634
Suresh Siddha61c46282008-03-10 15:28:04 -0700635 if (!strcmp(str, "poll")) {
636 printk("using polling idle threads.\n");
637 pm_idle = poll_idle;
638 } else if (!strcmp(str, "mwait"))
639 force_mwait = 1;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800640 else if (!strcmp(str, "halt")) {
641 /*
642 * When the boot option of idle=halt is added, halt is
643 * forced to be used for CPU idle. In such case CPU C2/C3
644 * won't be used again.
645 * To continue to load the CPU idle driver, don't touch
646 * the boot_option_idle_override.
647 */
648 pm_idle = default_idle;
649 idle_halt = 1;
650 return 0;
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800651 } else if (!strcmp(str, "nomwait")) {
652 /*
653 * If the boot option of "idle=nomwait" is added,
654 * it means that mwait will be disabled for CPU C2/C3
655 * states. In such case it won't touch the variable
656 * of boot_option_idle_override.
657 */
658 idle_nomwait = 1;
659 return 0;
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800660 } else
Suresh Siddha61c46282008-03-10 15:28:04 -0700661 return -1;
662
663 boot_option_idle_override = 1;
664 return 0;
665}
666early_param("idle", idle_setup);
667
Amerigo Wang9d62dcd2009-05-11 22:05:28 -0400668unsigned long arch_align_stack(unsigned long sp)
669{
670 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
671 sp -= get_random_int() % 8192;
672 return sp & ~0xf;
673}
674
675unsigned long arch_randomize_brk(struct mm_struct *mm)
676{
677 unsigned long range_end = mm->brk + 0x02000000;
678 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
679}
680