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