1 #include <linux/errno.h>
2 #include <linux/kernel.h>
5 #include <linux/prctl.h>
6 #include <linux/slab.h>
7 #include <linux/sched.h>
8 #include <linux/module.h>
10 #include <linux/clockchips.h>
11 #include <linux/random.h>
12 #include <trace/events/power.h>
13 #include <asm/system.h>
15 #include <asm/syscalls.h>
17 #include <asm/uaccess.h>
21 unsigned long idle_halt
;
22 EXPORT_SYMBOL(idle_halt
);
23 unsigned long idle_nomwait
;
24 EXPORT_SYMBOL(idle_nomwait
);
26 struct kmem_cache
*task_xstate_cachep
;
28 int arch_dup_task_struct(struct task_struct
*dst
, struct task_struct
*src
)
31 if (src
->thread
.xstate
) {
32 dst
->thread
.xstate
= kmem_cache_alloc(task_xstate_cachep
,
34 if (!dst
->thread
.xstate
)
36 WARN_ON((unsigned long)dst
->thread
.xstate
& 15);
37 memcpy(dst
->thread
.xstate
, src
->thread
.xstate
, xstate_size
);
42 void free_thread_xstate(struct task_struct
*tsk
)
44 if (tsk
->thread
.xstate
) {
45 kmem_cache_free(task_xstate_cachep
, tsk
->thread
.xstate
);
46 tsk
->thread
.xstate
= NULL
;
49 WARN(tsk
->thread
.ds_ctx
, "leaking DS context\n");
52 void free_thread_info(struct thread_info
*ti
)
54 free_thread_xstate(ti
->task
);
55 free_pages((unsigned long)ti
, get_order(THREAD_SIZE
));
58 void arch_task_cache_init(void)
61 kmem_cache_create("task_xstate", xstate_size
,
62 __alignof__(union thread_xstate
),
63 SLAB_PANIC
| SLAB_NOTRACK
, NULL
);
67 * Free current thread data structures etc..
69 void exit_thread(void)
71 struct task_struct
*me
= current
;
72 struct thread_struct
*t
= &me
->thread
;
73 unsigned long *bp
= t
->io_bitmap_ptr
;
76 struct tss_struct
*tss
= &per_cpu(init_tss
, get_cpu());
78 t
->io_bitmap_ptr
= NULL
;
79 clear_thread_flag(TIF_IO_BITMAP
);
81 * Careful, clear this in the TSS too:
83 memset(tss
->io_bitmap
, 0xff, t
->io_bitmap_max
);
90 void flush_thread(void)
92 struct task_struct
*tsk
= current
;
95 if (test_tsk_thread_flag(tsk
, TIF_ABI_PENDING
)) {
96 clear_tsk_thread_flag(tsk
, TIF_ABI_PENDING
);
97 if (test_tsk_thread_flag(tsk
, TIF_IA32
)) {
98 clear_tsk_thread_flag(tsk
, TIF_IA32
);
100 set_tsk_thread_flag(tsk
, TIF_IA32
);
101 current_thread_info()->status
|= TS_COMPAT
;
106 clear_tsk_thread_flag(tsk
, TIF_DEBUG
);
108 tsk
->thread
.debugreg0
= 0;
109 tsk
->thread
.debugreg1
= 0;
110 tsk
->thread
.debugreg2
= 0;
111 tsk
->thread
.debugreg3
= 0;
112 tsk
->thread
.debugreg6
= 0;
113 tsk
->thread
.debugreg7
= 0;
114 memset(tsk
->thread
.tls_array
, 0, sizeof(tsk
->thread
.tls_array
));
116 * Forget coprocessor state..
118 tsk
->fpu_counter
= 0;
123 static void hard_disable_TSC(void)
125 write_cr4(read_cr4() | X86_CR4_TSD
);
128 void disable_TSC(void)
131 if (!test_and_set_thread_flag(TIF_NOTSC
))
133 * Must flip the CPU state synchronously with
134 * TIF_NOTSC in the current running context.
140 static void hard_enable_TSC(void)
142 write_cr4(read_cr4() & ~X86_CR4_TSD
);
145 static void enable_TSC(void)
148 if (test_and_clear_thread_flag(TIF_NOTSC
))
150 * Must flip the CPU state synchronously with
151 * TIF_NOTSC in the current running context.
157 int get_tsc_mode(unsigned long adr
)
161 if (test_thread_flag(TIF_NOTSC
))
162 val
= PR_TSC_SIGSEGV
;
166 return put_user(val
, (unsigned int __user
*)adr
);
169 int set_tsc_mode(unsigned int val
)
171 if (val
== PR_TSC_SIGSEGV
)
173 else if (val
== PR_TSC_ENABLE
)
181 void __switch_to_xtra(struct task_struct
*prev_p
, struct task_struct
*next_p
,
182 struct tss_struct
*tss
)
184 struct thread_struct
*prev
, *next
;
186 prev
= &prev_p
->thread
;
187 next
= &next_p
->thread
;
189 if (test_tsk_thread_flag(next_p
, TIF_DS_AREA_MSR
) ||
190 test_tsk_thread_flag(prev_p
, TIF_DS_AREA_MSR
))
191 ds_switch_to(prev_p
, next_p
);
192 else if (next
->debugctlmsr
!= prev
->debugctlmsr
)
193 update_debugctlmsr(next
->debugctlmsr
);
195 if (test_tsk_thread_flag(next_p
, TIF_DEBUG
)) {
196 set_debugreg(next
->debugreg0
, 0);
197 set_debugreg(next
->debugreg1
, 1);
198 set_debugreg(next
->debugreg2
, 2);
199 set_debugreg(next
->debugreg3
, 3);
201 set_debugreg(next
->debugreg6
, 6);
202 set_debugreg(next
->debugreg7
, 7);
205 if (test_tsk_thread_flag(prev_p
, TIF_NOTSC
) ^
206 test_tsk_thread_flag(next_p
, TIF_NOTSC
)) {
207 /* prev and next are different */
208 if (test_tsk_thread_flag(next_p
, TIF_NOTSC
))
214 if (test_tsk_thread_flag(next_p
, TIF_IO_BITMAP
)) {
216 * Copy the relevant range of the IO bitmap.
217 * Normally this is 128 bytes or less:
219 memcpy(tss
->io_bitmap
, next
->io_bitmap_ptr
,
220 max(prev
->io_bitmap_max
, next
->io_bitmap_max
));
221 } else if (test_tsk_thread_flag(prev_p
, TIF_IO_BITMAP
)) {
223 * Clear any possible leftover bits:
225 memset(tss
->io_bitmap
, 0xff, prev
->io_bitmap_max
);
229 int sys_fork(struct pt_regs
*regs
)
231 return do_fork(SIGCHLD
, regs
->sp
, regs
, 0, NULL
, NULL
);
235 * This is trivial, and on the face of it looks like it
236 * could equally well be done in user mode.
238 * Not so, for quite unobvious reasons - register pressure.
239 * In user mode vfork() cannot have a stack frame, and if
240 * done by calling the "clone()" system call directly, you
241 * do not have enough call-clobbered registers to hold all
242 * the information you need.
244 int sys_vfork(struct pt_regs
*regs
)
246 return do_fork(CLONE_VFORK
| CLONE_VM
| SIGCHLD
, regs
->sp
, regs
, 0,
252 * Idle related variables and functions
254 unsigned long boot_option_idle_override
= 0;
255 EXPORT_SYMBOL(boot_option_idle_override
);
258 * Powermanagement idle function, if any..
260 void (*pm_idle
)(void);
261 EXPORT_SYMBOL(pm_idle
);
265 * This halt magic was a workaround for ancient floppy DMA
266 * wreckage. It should be safe to remove.
268 static int hlt_counter
;
269 void disable_hlt(void)
273 EXPORT_SYMBOL(disable_hlt
);
275 void enable_hlt(void)
279 EXPORT_SYMBOL(enable_hlt
);
281 static inline int hlt_use_halt(void)
283 return (!hlt_counter
&& boot_cpu_data
.hlt_works_ok
);
286 static inline int hlt_use_halt(void)
293 * We use this if we don't have any better
296 void default_idle(void)
298 if (hlt_use_halt()) {
299 trace_power_start(POWER_CSTATE
, 1);
300 current_thread_info()->status
&= ~TS_POLLING
;
302 * TS_POLLING-cleared state must be visible before we
308 safe_halt(); /* enables interrupts racelessly */
311 current_thread_info()->status
|= TS_POLLING
;
314 /* loop is done by the caller */
318 #ifdef CONFIG_APM_MODULE
319 EXPORT_SYMBOL(default_idle
);
322 void stop_this_cpu(void *dummy
)
328 set_cpu_online(smp_processor_id(), false);
329 disable_local_APIC();
332 if (hlt_works(smp_processor_id()))
337 static void do_nothing(void *unused
)
342 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
343 * pm_idle and update to new pm_idle value. Required while changing pm_idle
344 * handler on SMP systems.
346 * Caller must have changed pm_idle to the new value before the call. Old
347 * pm_idle value will not be used by any CPU after the return of this function.
349 void cpu_idle_wait(void)
352 /* kick all the CPUs so that they exit out of pm_idle */
353 smp_call_function(do_nothing
, NULL
, 1);
355 EXPORT_SYMBOL_GPL(cpu_idle_wait
);
358 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
359 * which can obviate IPI to trigger checking of need_resched.
360 * We execute MONITOR against need_resched and enter optimized wait state
361 * through MWAIT. Whenever someone changes need_resched, we would be woken
362 * up from MWAIT (without an IPI).
364 * New with Core Duo processors, MWAIT can take some hints based on CPU
367 void mwait_idle_with_hints(unsigned long ax
, unsigned long cx
)
369 trace_power_start(POWER_CSTATE
, (ax
>>4)+1);
370 if (!need_resched()) {
371 if (cpu_has(¤t_cpu_data
, X86_FEATURE_CLFLUSH_MONITOR
))
372 clflush((void *)¤t_thread_info()->flags
);
374 __monitor((void *)¤t_thread_info()->flags
, 0, 0);
381 /* Default MONITOR/MWAIT with no hints, used for default C1 state */
382 static void mwait_idle(void)
384 if (!need_resched()) {
385 trace_power_start(POWER_CSTATE
, 1);
386 if (cpu_has(¤t_cpu_data
, X86_FEATURE_CLFLUSH_MONITOR
))
387 clflush((void *)¤t_thread_info()->flags
);
389 __monitor((void *)¤t_thread_info()->flags
, 0, 0);
400 * On SMP it's slightly faster (but much more power-consuming!)
401 * to poll the ->work.need_resched flag instead of waiting for the
402 * cross-CPU IPI to arrive. Use this option with caution.
404 static void poll_idle(void)
406 trace_power_start(POWER_CSTATE
, 0);
408 while (!need_resched())
414 * mwait selection logic:
416 * It depends on the CPU. For AMD CPUs that support MWAIT this is
417 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
418 * then depend on a clock divisor and current Pstate of the core. If
419 * all cores of a processor are in halt state (C1) the processor can
420 * enter the C1E (C1 enhanced) state. If mwait is used this will never
423 * idle=mwait overrides this decision and forces the usage of mwait.
425 static int __cpuinitdata force_mwait
;
427 #define MWAIT_INFO 0x05
428 #define MWAIT_ECX_EXTENDED_INFO 0x01
429 #define MWAIT_EDX_C1 0xf0
431 static int __cpuinit
mwait_usable(const struct cpuinfo_x86
*c
)
433 u32 eax
, ebx
, ecx
, edx
;
438 if (c
->cpuid_level
< MWAIT_INFO
)
441 cpuid(MWAIT_INFO
, &eax
, &ebx
, &ecx
, &edx
);
442 /* Check, whether EDX has extended info about MWAIT */
443 if (!(ecx
& MWAIT_ECX_EXTENDED_INFO
))
447 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
450 return (edx
& MWAIT_EDX_C1
);
454 * Check for AMD CPUs, which have potentially C1E support
456 static int __cpuinit
check_c1e_idle(const struct cpuinfo_x86
*c
)
458 if (c
->x86_vendor
!= X86_VENDOR_AMD
)
464 /* Family 0x0f models < rev F do not have C1E */
465 if (c
->x86
== 0x0f && c
->x86_model
< 0x40)
471 static cpumask_var_t c1e_mask
;
472 static int c1e_detected
;
474 void c1e_remove_cpu(int cpu
)
476 if (c1e_mask
!= NULL
)
477 cpumask_clear_cpu(cpu
, c1e_mask
);
481 * C1E aware idle routine. We check for C1E active in the interrupt
482 * pending message MSR. If we detect C1E, then we handle it the same
483 * way as C3 power states (local apic timer and TSC stop)
485 static void c1e_idle(void)
493 rdmsr(MSR_K8_INT_PENDING_MSG
, lo
, hi
);
494 if (lo
& K8_INTP_C1E_ACTIVE_MASK
) {
496 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC
))
497 mark_tsc_unstable("TSC halt in AMD C1E");
498 printk(KERN_INFO
"System has AMD C1E enabled\n");
499 set_cpu_cap(&boot_cpu_data
, X86_FEATURE_AMDC1E
);
504 int cpu
= smp_processor_id();
506 if (!cpumask_test_cpu(cpu
, c1e_mask
)) {
507 cpumask_set_cpu(cpu
, c1e_mask
);
509 * Force broadcast so ACPI can not interfere.
511 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE
,
513 printk(KERN_INFO
"Switch to broadcast mode on CPU%d\n",
516 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER
, &cpu
);
521 * The switch back from broadcast mode needs to be
522 * called with interrupts disabled.
525 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT
, &cpu
);
531 void __cpuinit
select_idle_routine(const struct cpuinfo_x86
*c
)
534 if (pm_idle
== poll_idle
&& smp_num_siblings
> 1) {
535 printk(KERN_WARNING
"WARNING: polling idle and HT enabled,"
536 " performance may degrade.\n");
542 if (cpu_has(c
, X86_FEATURE_MWAIT
) && mwait_usable(c
)) {
544 * One CPU supports mwait => All CPUs supports mwait
546 printk(KERN_INFO
"using mwait in idle threads.\n");
547 pm_idle
= mwait_idle
;
548 } else if (check_c1e_idle(c
)) {
549 printk(KERN_INFO
"using C1E aware idle routine\n");
552 pm_idle
= default_idle
;
555 void __init
init_c1e_mask(void)
557 /* If we're using c1e_idle, we need to allocate c1e_mask. */
558 if (pm_idle
== c1e_idle
)
559 zalloc_cpumask_var(&c1e_mask
, GFP_KERNEL
);
562 static int __init
idle_setup(char *str
)
567 if (!strcmp(str
, "poll")) {
568 printk("using polling idle threads.\n");
570 } else if (!strcmp(str
, "mwait"))
572 else if (!strcmp(str
, "halt")) {
574 * When the boot option of idle=halt is added, halt is
575 * forced to be used for CPU idle. In such case CPU C2/C3
576 * won't be used again.
577 * To continue to load the CPU idle driver, don't touch
578 * the boot_option_idle_override.
580 pm_idle
= default_idle
;
583 } else if (!strcmp(str
, "nomwait")) {
585 * If the boot option of "idle=nomwait" is added,
586 * it means that mwait will be disabled for CPU C2/C3
587 * states. In such case it won't touch the variable
588 * of boot_option_idle_override.
595 boot_option_idle_override
= 1;
598 early_param("idle", idle_setup
);
600 unsigned long arch_align_stack(unsigned long sp
)
602 if (!(current
->personality
& ADDR_NO_RANDOMIZE
) && randomize_va_space
)
603 sp
-= get_random_int() % 8192;
607 unsigned long arch_randomize_brk(struct mm_struct
*mm
)
609 unsigned long range_end
= mm
->brk
+ 0x02000000;
610 return randomize_range(mm
->brk
, range_end
, 0) ? : mm
->brk
;