]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/process.c
hw-breakpoint: Move asm-generic/hw_breakpoint.h to linux/hw_breakpoint.h
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / process.c
CommitLineData
61c4628b
SS
1#include <linux/errno.h>
2#include <linux/kernel.h>
3#include <linux/mm.h>
4#include <linux/smp.h>
389d1fb1 5#include <linux/prctl.h>
61c4628b
SS
6#include <linux/slab.h>
7#include <linux/sched.h>
7f424a8b
PZ
8#include <linux/module.h>
9#include <linux/pm.h>
aa276e1c 10#include <linux/clockchips.h>
9d62dcdf 11#include <linux/random.h>
61613521 12#include <trace/events/power.h>
c1e3b377 13#include <asm/system.h>
d3ec5cae 14#include <asm/apic.h>
2c1b284e 15#include <asm/syscalls.h>
389d1fb1
JF
16#include <asm/idle.h>
17#include <asm/uaccess.h>
18#include <asm/i387.h>
2311f0de 19#include <asm/ds.h>
66cb5917
P
20#include <asm/debugreg.h>
21#include <asm/hw_breakpoint.h>
c1e3b377
ZY
22
23unsigned long idle_halt;
24EXPORT_SYMBOL(idle_halt);
da5e09a1
ZY
25unsigned long idle_nomwait;
26EXPORT_SYMBOL(idle_nomwait);
61c4628b 27
aa283f49 28struct kmem_cache *task_xstate_cachep;
61c4628b
SS
29
30int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
31{
32 *dst = *src;
aa283f49
SS
33 if (src->thread.xstate) {
34 dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
35 GFP_KERNEL);
36 if (!dst->thread.xstate)
37 return -ENOMEM;
38 WARN_ON((unsigned long)dst->thread.xstate & 15);
39 memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
40 }
61c4628b
SS
41 return 0;
42}
43
aa283f49 44void free_thread_xstate(struct task_struct *tsk)
61c4628b 45{
aa283f49
SS
46 if (tsk->thread.xstate) {
47 kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
48 tsk->thread.xstate = NULL;
49 }
66cb5917
P
50 if (unlikely(test_tsk_thread_flag(tsk, TIF_DEBUG)))
51 flush_thread_hw_breakpoint(tsk);
2311f0de
MM
52
53 WARN(tsk->thread.ds_ctx, "leaking DS context\n");
aa283f49
SS
54}
55
aa283f49
SS
56void free_thread_info(struct thread_info *ti)
57{
58 free_thread_xstate(ti->task);
1679f271 59 free_pages((unsigned long)ti, get_order(THREAD_SIZE));
61c4628b
SS
60}
61
62void arch_task_cache_init(void)
63{
64 task_xstate_cachep =
65 kmem_cache_create("task_xstate", xstate_size,
66 __alignof__(union thread_xstate),
2dff4405 67 SLAB_PANIC | SLAB_NOTRACK, NULL);
61c4628b 68}
7f424a8b 69
389d1fb1
JF
70/*
71 * Free current thread data structures etc..
72 */
73void exit_thread(void)
74{
75 struct task_struct *me = current;
76 struct thread_struct *t = &me->thread;
250981e6 77 unsigned long *bp = t->io_bitmap_ptr;
389d1fb1 78
250981e6 79 if (bp) {
389d1fb1
JF
80 struct tss_struct *tss = &per_cpu(init_tss, get_cpu());
81
389d1fb1
JF
82 t->io_bitmap_ptr = NULL;
83 clear_thread_flag(TIF_IO_BITMAP);
84 /*
85 * Careful, clear this in the TSS too:
86 */
87 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
88 t->io_bitmap_max = 0;
89 put_cpu();
250981e6 90 kfree(bp);
389d1fb1 91 }
389d1fb1
JF
92}
93
94void flush_thread(void)
95{
96 struct task_struct *tsk = current;
97
98#ifdef CONFIG_X86_64
99 if (test_tsk_thread_flag(tsk, TIF_ABI_PENDING)) {
100 clear_tsk_thread_flag(tsk, TIF_ABI_PENDING);
101 if (test_tsk_thread_flag(tsk, TIF_IA32)) {
102 clear_tsk_thread_flag(tsk, TIF_IA32);
103 } else {
104 set_tsk_thread_flag(tsk, TIF_IA32);
105 current_thread_info()->status |= TS_COMPAT;
106 }
107 }
108#endif
109
66cb5917
P
110 if (unlikely(test_tsk_thread_flag(tsk, TIF_DEBUG)))
111 flush_thread_hw_breakpoint(tsk);
389d1fb1
JF
112 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
113 /*
114 * Forget coprocessor state..
115 */
116 tsk->fpu_counter = 0;
117 clear_fpu(tsk);
118 clear_used_math();
119}
120
121static void hard_disable_TSC(void)
122{
123 write_cr4(read_cr4() | X86_CR4_TSD);
124}
125
126void disable_TSC(void)
127{
128 preempt_disable();
129 if (!test_and_set_thread_flag(TIF_NOTSC))
130 /*
131 * Must flip the CPU state synchronously with
132 * TIF_NOTSC in the current running context.
133 */
134 hard_disable_TSC();
135 preempt_enable();
136}
137
138static void hard_enable_TSC(void)
139{
140 write_cr4(read_cr4() & ~X86_CR4_TSD);
141}
142
143static void enable_TSC(void)
144{
145 preempt_disable();
146 if (test_and_clear_thread_flag(TIF_NOTSC))
147 /*
148 * Must flip the CPU state synchronously with
149 * TIF_NOTSC in the current running context.
150 */
151 hard_enable_TSC();
152 preempt_enable();
153}
154
155int get_tsc_mode(unsigned long adr)
156{
157 unsigned int val;
158
159 if (test_thread_flag(TIF_NOTSC))
160 val = PR_TSC_SIGSEGV;
161 else
162 val = PR_TSC_ENABLE;
163
164 return put_user(val, (unsigned int __user *)adr);
165}
166
167int set_tsc_mode(unsigned int val)
168{
169 if (val == PR_TSC_SIGSEGV)
170 disable_TSC();
171 else if (val == PR_TSC_ENABLE)
172 enable_TSC();
173 else
174 return -EINVAL;
175
176 return 0;
177}
178
179void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
180 struct tss_struct *tss)
181{
182 struct thread_struct *prev, *next;
183
184 prev = &prev_p->thread;
185 next = &next_p->thread;
186
187 if (test_tsk_thread_flag(next_p, TIF_DS_AREA_MSR) ||
188 test_tsk_thread_flag(prev_p, TIF_DS_AREA_MSR))
189 ds_switch_to(prev_p, next_p);
190 else if (next->debugctlmsr != prev->debugctlmsr)
191 update_debugctlmsr(next->debugctlmsr);
192
389d1fb1
JF
193 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
194 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
195 /* prev and next are different */
196 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
197 hard_disable_TSC();
198 else
199 hard_enable_TSC();
200 }
201
202 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
203 /*
204 * Copy the relevant range of the IO bitmap.
205 * Normally this is 128 bytes or less:
206 */
207 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
208 max(prev->io_bitmap_max, next->io_bitmap_max));
209 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
210 /*
211 * Clear any possible leftover bits:
212 */
213 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
214 }
215}
216
217int sys_fork(struct pt_regs *regs)
218{
219 return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
220}
221
222/*
223 * This is trivial, and on the face of it looks like it
224 * could equally well be done in user mode.
225 *
226 * Not so, for quite unobvious reasons - register pressure.
227 * In user mode vfork() cannot have a stack frame, and if
228 * done by calling the "clone()" system call directly, you
229 * do not have enough call-clobbered registers to hold all
230 * the information you need.
231 */
232int sys_vfork(struct pt_regs *regs)
233{
234 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
235 NULL, NULL);
236}
237
238
00dba564
TG
239/*
240 * Idle related variables and functions
241 */
242unsigned long boot_option_idle_override = 0;
243EXPORT_SYMBOL(boot_option_idle_override);
244
245/*
246 * Powermanagement idle function, if any..
247 */
248void (*pm_idle)(void);
249EXPORT_SYMBOL(pm_idle);
250
251#ifdef CONFIG_X86_32
252/*
253 * This halt magic was a workaround for ancient floppy DMA
254 * wreckage. It should be safe to remove.
255 */
256static int hlt_counter;
257void disable_hlt(void)
258{
259 hlt_counter++;
260}
261EXPORT_SYMBOL(disable_hlt);
262
263void enable_hlt(void)
264{
265 hlt_counter--;
266}
267EXPORT_SYMBOL(enable_hlt);
268
269static inline int hlt_use_halt(void)
270{
271 return (!hlt_counter && boot_cpu_data.hlt_works_ok);
272}
273#else
274static inline int hlt_use_halt(void)
275{
276 return 1;
277}
278#endif
279
280/*
281 * We use this if we don't have any better
282 * idle routine..
283 */
284void default_idle(void)
285{
286 if (hlt_use_halt()) {
61613521 287 trace_power_start(POWER_CSTATE, 1);
00dba564
TG
288 current_thread_info()->status &= ~TS_POLLING;
289 /*
290 * TS_POLLING-cleared state must be visible before we
291 * test NEED_RESCHED:
292 */
293 smp_mb();
294
295 if (!need_resched())
296 safe_halt(); /* enables interrupts racelessly */
297 else
298 local_irq_enable();
299 current_thread_info()->status |= TS_POLLING;
300 } else {
301 local_irq_enable();
302 /* loop is done by the caller */
303 cpu_relax();
304 }
305}
306#ifdef CONFIG_APM_MODULE
307EXPORT_SYMBOL(default_idle);
308#endif
309
d3ec5cae
IV
310void stop_this_cpu(void *dummy)
311{
312 local_irq_disable();
313 /*
314 * Remove this CPU:
315 */
4f062896 316 set_cpu_online(smp_processor_id(), false);
d3ec5cae
IV
317 disable_local_APIC();
318
319 for (;;) {
320 if (hlt_works(smp_processor_id()))
321 halt();
322 }
323}
324
7f424a8b
PZ
325static void do_nothing(void *unused)
326{
327}
328
329/*
330 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
331 * pm_idle and update to new pm_idle value. Required while changing pm_idle
332 * handler on SMP systems.
333 *
334 * Caller must have changed pm_idle to the new value before the call. Old
335 * pm_idle value will not be used by any CPU after the return of this function.
336 */
337void cpu_idle_wait(void)
338{
339 smp_mb();
340 /* kick all the CPUs so that they exit out of pm_idle */
127a237a 341 smp_call_function(do_nothing, NULL, 1);
7f424a8b
PZ
342}
343EXPORT_SYMBOL_GPL(cpu_idle_wait);
344
345/*
346 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
347 * which can obviate IPI to trigger checking of need_resched.
348 * We execute MONITOR against need_resched and enter optimized wait state
349 * through MWAIT. Whenever someone changes need_resched, we would be woken
350 * up from MWAIT (without an IPI).
351 *
352 * New with Core Duo processors, MWAIT can take some hints based on CPU
353 * capability.
354 */
355void mwait_idle_with_hints(unsigned long ax, unsigned long cx)
356{
61613521 357 trace_power_start(POWER_CSTATE, (ax>>4)+1);
7f424a8b 358 if (!need_resched()) {
e736ad54
PV
359 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
360 clflush((void *)&current_thread_info()->flags);
361
7f424a8b
PZ
362 __monitor((void *)&current_thread_info()->flags, 0, 0);
363 smp_mb();
364 if (!need_resched())
365 __mwait(ax, cx);
366 }
367}
368
369/* Default MONITOR/MWAIT with no hints, used for default C1 state */
370static void mwait_idle(void)
371{
372 if (!need_resched()) {
61613521 373 trace_power_start(POWER_CSTATE, 1);
e736ad54
PV
374 if (cpu_has(&current_cpu_data, X86_FEATURE_CLFLUSH_MONITOR))
375 clflush((void *)&current_thread_info()->flags);
376
7f424a8b
PZ
377 __monitor((void *)&current_thread_info()->flags, 0, 0);
378 smp_mb();
379 if (!need_resched())
380 __sti_mwait(0, 0);
381 else
382 local_irq_enable();
383 } else
384 local_irq_enable();
385}
386
7f424a8b
PZ
387/*
388 * On SMP it's slightly faster (but much more power-consuming!)
389 * to poll the ->work.need_resched flag instead of waiting for the
390 * cross-CPU IPI to arrive. Use this option with caution.
391 */
392static void poll_idle(void)
393{
61613521 394 trace_power_start(POWER_CSTATE, 0);
7f424a8b 395 local_irq_enable();
2c7e9fd4
JK
396 while (!need_resched())
397 cpu_relax();
61613521 398 trace_power_end(0);
7f424a8b
PZ
399}
400
e9623b35
TG
401/*
402 * mwait selection logic:
403 *
404 * It depends on the CPU. For AMD CPUs that support MWAIT this is
405 * wrong. Family 0x10 and 0x11 CPUs will enter C1 on HLT. Powersavings
406 * then depend on a clock divisor and current Pstate of the core. If
407 * all cores of a processor are in halt state (C1) the processor can
408 * enter the C1E (C1 enhanced) state. If mwait is used this will never
409 * happen.
410 *
411 * idle=mwait overrides this decision and forces the usage of mwait.
412 */
08ad8afa 413static int __cpuinitdata force_mwait;
09fd4b4e
TG
414
415#define MWAIT_INFO 0x05
416#define MWAIT_ECX_EXTENDED_INFO 0x01
417#define MWAIT_EDX_C1 0xf0
418
e9623b35
TG
419static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c)
420{
09fd4b4e
TG
421 u32 eax, ebx, ecx, edx;
422
e9623b35
TG
423 if (force_mwait)
424 return 1;
425
09fd4b4e
TG
426 if (c->cpuid_level < MWAIT_INFO)
427 return 0;
428
429 cpuid(MWAIT_INFO, &eax, &ebx, &ecx, &edx);
430 /* Check, whether EDX has extended info about MWAIT */
431 if (!(ecx & MWAIT_ECX_EXTENDED_INFO))
432 return 1;
433
434 /*
435 * edx enumeratios MONITOR/MWAIT extensions. Check, whether
436 * C1 supports MWAIT
437 */
438 return (edx & MWAIT_EDX_C1);
e9623b35
TG
439}
440
aa276e1c
TG
441/*
442 * Check for AMD CPUs, which have potentially C1E support
443 */
444static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
445{
446 if (c->x86_vendor != X86_VENDOR_AMD)
447 return 0;
448
449 if (c->x86 < 0x0F)
450 return 0;
451
452 /* Family 0x0f models < rev F do not have C1E */
453 if (c->x86 == 0x0f && c->x86_model < 0x40)
454 return 0;
455
456 return 1;
457}
458
bc9b83dd 459static cpumask_var_t c1e_mask;
4faac97d
TG
460static int c1e_detected;
461
462void c1e_remove_cpu(int cpu)
463{
30e1e6d1
RR
464 if (c1e_mask != NULL)
465 cpumask_clear_cpu(cpu, c1e_mask);
4faac97d
TG
466}
467
aa276e1c
TG
468/*
469 * C1E aware idle routine. We check for C1E active in the interrupt
470 * pending message MSR. If we detect C1E, then we handle it the same
471 * way as C3 power states (local apic timer and TSC stop)
472 */
473static void c1e_idle(void)
474{
aa276e1c
TG
475 if (need_resched())
476 return;
477
478 if (!c1e_detected) {
479 u32 lo, hi;
480
481 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
482 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
483 c1e_detected = 1;
40fb1715 484 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
09bfeea1
AH
485 mark_tsc_unstable("TSC halt in AMD C1E");
486 printk(KERN_INFO "System has AMD C1E enabled\n");
a8d68290 487 set_cpu_cap(&boot_cpu_data, X86_FEATURE_AMDC1E);
aa276e1c
TG
488 }
489 }
490
491 if (c1e_detected) {
492 int cpu = smp_processor_id();
493
bc9b83dd
RR
494 if (!cpumask_test_cpu(cpu, c1e_mask)) {
495 cpumask_set_cpu(cpu, c1e_mask);
0beefa20 496 /*
f833bab8 497 * Force broadcast so ACPI can not interfere.
0beefa20 498 */
aa276e1c
TG
499 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
500 &cpu);
501 printk(KERN_INFO "Switch to broadcast mode on CPU%d\n",
502 cpu);
503 }
504 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
0beefa20 505
aa276e1c 506 default_idle();
0beefa20
TG
507
508 /*
509 * The switch back from broadcast mode needs to be
510 * called with interrupts disabled.
511 */
512 local_irq_disable();
513 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
514 local_irq_enable();
aa276e1c
TG
515 } else
516 default_idle();
517}
518
7f424a8b
PZ
519void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
520{
3e5095d1 521#ifdef CONFIG_SMP
7f424a8b
PZ
522 if (pm_idle == poll_idle && smp_num_siblings > 1) {
523 printk(KERN_WARNING "WARNING: polling idle and HT enabled,"
524 " performance may degrade.\n");
525 }
526#endif
6ddd2a27
TG
527 if (pm_idle)
528 return;
529
e9623b35 530 if (cpu_has(c, X86_FEATURE_MWAIT) && mwait_usable(c)) {
7f424a8b 531 /*
7f424a8b
PZ
532 * One CPU supports mwait => All CPUs supports mwait
533 */
6ddd2a27
TG
534 printk(KERN_INFO "using mwait in idle threads.\n");
535 pm_idle = mwait_idle;
aa276e1c
TG
536 } else if (check_c1e_idle(c)) {
537 printk(KERN_INFO "using C1E aware idle routine\n");
538 pm_idle = c1e_idle;
6ddd2a27
TG
539 } else
540 pm_idle = default_idle;
7f424a8b
PZ
541}
542
30e1e6d1
RR
543void __init init_c1e_mask(void)
544{
545 /* If we're using c1e_idle, we need to allocate c1e_mask. */
79f55997
LZ
546 if (pm_idle == c1e_idle)
547 zalloc_cpumask_var(&c1e_mask, GFP_KERNEL);
30e1e6d1
RR
548}
549
7f424a8b
PZ
550static int __init idle_setup(char *str)
551{
ab6bc3e3
CG
552 if (!str)
553 return -EINVAL;
554
7f424a8b
PZ
555 if (!strcmp(str, "poll")) {
556 printk("using polling idle threads.\n");
557 pm_idle = poll_idle;
558 } else if (!strcmp(str, "mwait"))
559 force_mwait = 1;
c1e3b377
ZY
560 else if (!strcmp(str, "halt")) {
561 /*
562 * When the boot option of idle=halt is added, halt is
563 * forced to be used for CPU idle. In such case CPU C2/C3
564 * won't be used again.
565 * To continue to load the CPU idle driver, don't touch
566 * the boot_option_idle_override.
567 */
568 pm_idle = default_idle;
569 idle_halt = 1;
570 return 0;
da5e09a1
ZY
571 } else if (!strcmp(str, "nomwait")) {
572 /*
573 * If the boot option of "idle=nomwait" is added,
574 * it means that mwait will be disabled for CPU C2/C3
575 * states. In such case it won't touch the variable
576 * of boot_option_idle_override.
577 */
578 idle_nomwait = 1;
579 return 0;
c1e3b377 580 } else
7f424a8b
PZ
581 return -1;
582
583 boot_option_idle_override = 1;
584 return 0;
585}
586early_param("idle", idle_setup);
587
9d62dcdf
AW
588unsigned long arch_align_stack(unsigned long sp)
589{
590 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
591 sp -= get_random_int() % 8192;
592 return sp & ~0xf;
593}
594
595unsigned long arch_randomize_brk(struct mm_struct *mm)
596{
597 unsigned long range_end = mm->brk + 0x02000000;
598 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
599}
600