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/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 DEFINE_TRACE(power_start
);
29 DEFINE_TRACE(power_end
);
31 int arch_dup_task_struct(struct task_struct
*dst
, struct task_struct
*src
)
34 if (src
->thread
.xstate
) {
35 dst
->thread
.xstate
= kmem_cache_alloc(task_xstate_cachep
,
37 if (!dst
->thread
.xstate
)
39 WARN_ON((unsigned long)dst
->thread
.xstate
& 15);
40 memcpy(dst
->thread
.xstate
, src
->thread
.xstate
, xstate_size
);
45 void free_thread_xstate(struct task_struct
*tsk
)
47 if (tsk
->thread
.xstate
) {
48 kmem_cache_free(task_xstate_cachep
, tsk
->thread
.xstate
);
49 tsk
->thread
.xstate
= NULL
;
52 WARN(tsk
->thread
.ds_ctx
, "leaking DS context\n");
55 void free_thread_info(struct thread_info
*ti
)
57 free_thread_xstate(ti
->task
);
58 free_pages((unsigned long)ti
, get_order(THREAD_SIZE
));
61 void arch_task_cache_init(void)
64 kmem_cache_create("task_xstate", xstate_size
,
65 __alignof__(union thread_xstate
),
66 SLAB_PANIC
| SLAB_NOTRACK
, NULL
);
70 * Free current thread data structures etc..
72 void exit_thread(void)
74 struct task_struct
*me
= current
;
75 struct thread_struct
*t
= &me
->thread
;
76 unsigned long *bp
= t
->io_bitmap_ptr
;
79 struct tss_struct
*tss
= &per_cpu(init_tss
, get_cpu());
81 t
->io_bitmap_ptr
= NULL
;
82 clear_thread_flag(TIF_IO_BITMAP
);
84 * Careful, clear this in the TSS too:
86 memset(tss
->io_bitmap
, 0xff, t
->io_bitmap_max
);
93 void flush_thread(void)
95 struct task_struct
*tsk
= current
;
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
);
103 set_tsk_thread_flag(tsk
, TIF_IA32
);
104 current_thread_info()->status
|= TS_COMPAT
;
109 clear_tsk_thread_flag(tsk
, TIF_DEBUG
);
111 tsk
->thread
.debugreg0
= 0;
112 tsk
->thread
.debugreg1
= 0;
113 tsk
->thread
.debugreg2
= 0;
114 tsk
->thread
.debugreg3
= 0;
115 tsk
->thread
.debugreg6
= 0;
116 tsk
->thread
.debugreg7
= 0;
117 memset(tsk
->thread
.tls_array
, 0, sizeof(tsk
->thread
.tls_array
));
119 * Forget coprocessor state..
121 tsk
->fpu_counter
= 0;
126 static void hard_disable_TSC(void)
128 write_cr4(read_cr4() | X86_CR4_TSD
);
131 void disable_TSC(void)
134 if (!test_and_set_thread_flag(TIF_NOTSC
))
136 * Must flip the CPU state synchronously with
137 * TIF_NOTSC in the current running context.
143 static void hard_enable_TSC(void)
145 write_cr4(read_cr4() & ~X86_CR4_TSD
);
148 static void enable_TSC(void)
151 if (test_and_clear_thread_flag(TIF_NOTSC
))
153 * Must flip the CPU state synchronously with
154 * TIF_NOTSC in the current running context.
160 int get_tsc_mode(unsigned long adr
)
164 if (test_thread_flag(TIF_NOTSC
))
165 val
= PR_TSC_SIGSEGV
;
169 return put_user(val
, (unsigned int __user
*)adr
);
172 int set_tsc_mode(unsigned int val
)
174 if (val
== PR_TSC_SIGSEGV
)
176 else if (val
== PR_TSC_ENABLE
)
184 void __switch_to_xtra(struct task_struct
*prev_p
, struct task_struct
*next_p
,
185 struct tss_struct
*tss
)
187 struct thread_struct
*prev
, *next
;
189 prev
= &prev_p
->thread
;
190 next
= &next_p
->thread
;
192 if (test_tsk_thread_flag(next_p
, TIF_DS_AREA_MSR
) ||
193 test_tsk_thread_flag(prev_p
, TIF_DS_AREA_MSR
))
194 ds_switch_to(prev_p
, next_p
);
195 else if (next
->debugctlmsr
!= prev
->debugctlmsr
)
196 update_debugctlmsr(next
->debugctlmsr
);
198 if (test_tsk_thread_flag(next_p
, TIF_DEBUG
)) {
199 set_debugreg(next
->debugreg0
, 0);
200 set_debugreg(next
->debugreg1
, 1);
201 set_debugreg(next
->debugreg2
, 2);
202 set_debugreg(next
->debugreg3
, 3);
204 set_debugreg(next
->debugreg6
, 6);
205 set_debugreg(next
->debugreg7
, 7);
208 if (test_tsk_thread_flag(prev_p
, TIF_NOTSC
) ^
209 test_tsk_thread_flag(next_p
, TIF_NOTSC
)) {
210 /* prev and next are different */
211 if (test_tsk_thread_flag(next_p
, TIF_NOTSC
))
217 if (test_tsk_thread_flag(next_p
, TIF_IO_BITMAP
)) {
219 * Copy the relevant range of the IO bitmap.
220 * Normally this is 128 bytes or less:
222 memcpy(tss
->io_bitmap
, next
->io_bitmap_ptr
,
223 max(prev
->io_bitmap_max
, next
->io_bitmap_max
));
224 } else if (test_tsk_thread_flag(prev_p
, TIF_IO_BITMAP
)) {
226 * Clear any possible leftover bits:
228 memset(tss
->io_bitmap
, 0xff, prev
->io_bitmap_max
);
232 int sys_fork(struct pt_regs
*regs
)
234 return do_fork(SIGCHLD
, regs
->sp
, regs
, 0, NULL
, NULL
);
238 * This is trivial, and on the face of it looks like it
239 * could equally well be done in user mode.
241 * Not so, for quite unobvious reasons - register pressure.
242 * In user mode vfork() cannot have a stack frame, and if
243 * done by calling the "clone()" system call directly, you
244 * do not have enough call-clobbered registers to hold all
245 * the information you need.
247 int sys_vfork(struct pt_regs
*regs
)
249 return do_fork(CLONE_VFORK
| CLONE_VM
| SIGCHLD
, regs
->sp
, regs
, 0,
255 * Idle related variables and functions
257 unsigned long boot_option_idle_override
= 0;
258 EXPORT_SYMBOL(boot_option_idle_override
);
261 * Powermanagement idle function, if any..
263 void (*pm_idle
)(void);
264 EXPORT_SYMBOL(pm_idle
);
268 * This halt magic was a workaround for ancient floppy DMA
269 * wreckage. It should be safe to remove.
271 static int hlt_counter
;
272 void disable_hlt(void)
276 EXPORT_SYMBOL(disable_hlt
);
278 void enable_hlt(void)
282 EXPORT_SYMBOL(enable_hlt
);
284 static inline int hlt_use_halt(void)
286 return (!hlt_counter
&& boot_cpu_data
.hlt_works_ok
);
289 static inline int hlt_use_halt(void)
296 * We use this if we don't have any better
299 void default_idle(void)
301 if (hlt_use_halt()) {
302 struct power_trace it
;
304 trace_power_start(&it
, POWER_CSTATE
, 1);
305 current_thread_info()->status
&= ~TS_POLLING
;
307 * TS_POLLING-cleared state must be visible before we
313 safe_halt(); /* enables interrupts racelessly */
316 current_thread_info()->status
|= TS_POLLING
;
317 trace_power_end(&it
);
320 /* loop is done by the caller */
324 #ifdef CONFIG_APM_MODULE
325 EXPORT_SYMBOL(default_idle
);
328 void stop_this_cpu(void *dummy
)
334 set_cpu_online(smp_processor_id(), false);
335 disable_local_APIC();
338 if (hlt_works(smp_processor_id()))
343 static void do_nothing(void *unused
)
348 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
349 * pm_idle and update to new pm_idle value. Required while changing pm_idle
350 * handler on SMP systems.
352 * Caller must have changed pm_idle to the new value before the call. Old
353 * pm_idle value will not be used by any CPU after the return of this function.
355 void cpu_idle_wait(void)
358 /* kick all the CPUs so that they exit out of pm_idle */
359 smp_call_function(do_nothing
, NULL
, 1);
361 EXPORT_SYMBOL_GPL(cpu_idle_wait
);
364 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
365 * which can obviate IPI to trigger checking of need_resched.
366 * We execute MONITOR against need_resched and enter optimized wait state
367 * through MWAIT. Whenever someone changes need_resched, we would be woken
368 * up from MWAIT (without an IPI).
370 * New with Core Duo processors, MWAIT can take some hints based on CPU
373 void mwait_idle_with_hints(unsigned long ax
, unsigned long cx
)
375 struct power_trace it
;
377 trace_power_start(&it
, POWER_CSTATE
, (ax
>>4)+1);
378 if (!need_resched()) {
379 if (cpu_has(¤t_cpu_data
, X86_FEATURE_CLFLUSH_MONITOR
))
380 clflush((void *)¤t_thread_info()->flags
);
382 __monitor((void *)¤t_thread_info()->flags
, 0, 0);
387 trace_power_end(&it
);
390 /* Default MONITOR/MWAIT with no hints, used for default C1 state */
391 static void mwait_idle(void)
393 struct power_trace it
;
394 if (!need_resched()) {
395 trace_power_start(&it
, POWER_CSTATE
, 1);
396 if (cpu_has(¤t_cpu_data
, X86_FEATURE_CLFLUSH_MONITOR
))
397 clflush((void *)¤t_thread_info()->flags
);
399 __monitor((void *)¤t_thread_info()->flags
, 0, 0);
405 trace_power_end(&it
);
411 * On SMP it's slightly faster (but much more power-consuming!)
412 * to poll the ->work.need_resched flag instead of waiting for the
413 * cross-CPU IPI to arrive. Use this option with caution.
415 static void poll_idle(void)
417 struct power_trace it
;
419 trace_power_start(&it
, POWER_CSTATE
, 0);
421 while (!need_resched())
423 trace_power_end(&it
);
427 * mwait selection logic:
429 * It depends on the CPU. For AMD CPUs that support MWAIT this is
430 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
431 * then depend on a clock divisor and current Pstate of the core. If
432 * all cores of a processor are in halt state (C1) the processor can
433 * enter the C1E (C1 enhanced) state. If mwait is used this will never
436 * idle=mwait overrides this decision and forces the usage of mwait.
438 static int __cpuinitdata force_mwait
;
440 #define MWAIT_INFO 0x05
441 #define MWAIT_ECX_EXTENDED_INFO 0x01
442 #define MWAIT_EDX_C1 0xf0
444 static int __cpuinit
mwait_usable(const struct cpuinfo_x86
*c
)
446 u32 eax
, ebx
, ecx
, edx
;
451 if (c
->cpuid_level
< MWAIT_INFO
)
454 cpuid(MWAIT_INFO
, &eax
, &ebx
, &ecx
, &edx
);
455 /* Check, whether EDX has extended info about MWAIT */
456 if (!(ecx
& MWAIT_ECX_EXTENDED_INFO
))
460 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
463 return (edx
& MWAIT_EDX_C1
);
467 * Check for AMD CPUs, which have potentially C1E support
469 static int __cpuinit
check_c1e_idle(const struct cpuinfo_x86
*c
)
471 if (c
->x86_vendor
!= X86_VENDOR_AMD
)
477 /* Family 0x0f models < rev F do not have C1E */
478 if (c
->x86
== 0x0f && c
->x86_model
< 0x40)
484 static cpumask_var_t c1e_mask
;
485 static int c1e_detected
;
487 void c1e_remove_cpu(int cpu
)
489 if (c1e_mask
!= NULL
)
490 cpumask_clear_cpu(cpu
, c1e_mask
);
494 * C1E aware idle routine. We check for C1E active in the interrupt
495 * pending message MSR. If we detect C1E, then we handle it the same
496 * way as C3 power states (local apic timer and TSC stop)
498 static void c1e_idle(void)
506 rdmsr(MSR_K8_INT_PENDING_MSG
, lo
, hi
);
507 if (lo
& K8_INTP_C1E_ACTIVE_MASK
) {
509 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC
))
510 mark_tsc_unstable("TSC halt in AMD C1E");
511 printk(KERN_INFO
"System has AMD C1E enabled\n");
512 set_cpu_cap(&boot_cpu_data
, X86_FEATURE_AMDC1E
);
517 int cpu
= smp_processor_id();
519 if (!cpumask_test_cpu(cpu
, c1e_mask
)) {
520 cpumask_set_cpu(cpu
, c1e_mask
);
522 * Force broadcast so ACPI can not interfere. Needs
523 * to run with interrupts enabled as it uses
527 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE
,
529 printk(KERN_INFO
"Switch to broadcast mode on CPU%d\n",
533 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER
, &cpu
);
538 * The switch back from broadcast mode needs to be
539 * called with interrupts disabled.
542 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT
, &cpu
);
548 void __cpuinit
select_idle_routine(const struct cpuinfo_x86
*c
)
551 if (pm_idle
== poll_idle
&& smp_num_siblings
> 1) {
552 printk(KERN_WARNING
"WARNING: polling idle and HT enabled,"
553 " performance may degrade.\n");
559 if (cpu_has(c
, X86_FEATURE_MWAIT
) && mwait_usable(c
)) {
561 * One CPU supports mwait => All CPUs supports mwait
563 printk(KERN_INFO
"using mwait in idle threads.\n");
564 pm_idle
= mwait_idle
;
565 } else if (check_c1e_idle(c
)) {
566 printk(KERN_INFO
"using C1E aware idle routine\n");
569 pm_idle
= default_idle
;
572 void __init
init_c1e_mask(void)
574 /* If we're using c1e_idle, we need to allocate c1e_mask. */
575 if (pm_idle
== c1e_idle
) {
576 alloc_cpumask_var(&c1e_mask
, GFP_KERNEL
);
577 cpumask_clear(c1e_mask
);
581 static int __init
idle_setup(char *str
)
586 if (!strcmp(str
, "poll")) {
587 printk("using polling idle threads.\n");
589 } else if (!strcmp(str
, "mwait"))
591 else if (!strcmp(str
, "halt")) {
593 * When the boot option of idle=halt is added, halt is
594 * forced to be used for CPU idle. In such case CPU C2/C3
595 * won't be used again.
596 * To continue to load the CPU idle driver, don't touch
597 * the boot_option_idle_override.
599 pm_idle
= default_idle
;
602 } else if (!strcmp(str
, "nomwait")) {
604 * If the boot option of "idle=nomwait" is added,
605 * it means that mwait will be disabled for CPU C2/C3
606 * states. In such case it won't touch the variable
607 * of boot_option_idle_override.
614 boot_option_idle_override
= 1;
617 early_param("idle", idle_setup
);
619 unsigned long arch_align_stack(unsigned long sp
)
621 if (!(current
->personality
& ADDR_NO_RANDOMIZE
) && randomize_va_space
)
622 sp
-= get_random_int() % 8192;
626 unsigned long arch_randomize_brk(struct mm_struct
*mm
)
628 unsigned long range_end
= mm
->brk
+ 0x02000000;
629 return randomize_range(mm
->brk
, range_end
, 0) ? : mm
->brk
;