blob: b0a0321e4bb6370c8b50fac1b7858303c47fb51d [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002 * Derived from "arch/i386/kernel/process.c"
3 * Copyright (C) 1995 Linus Torvalds
4 *
5 * Updated and modified by Cort Dougan (cort@cs.nmt.edu) and
6 * Paul Mackerras (paulus@cs.anu.edu.au)
7 *
8 * PowerPC version
9 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
Paul Mackerras14cf11a2005-09-26 16:04:21 +100017#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/smp.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100022#include <linux/stddef.h>
23#include <linux/unistd.h>
24#include <linux/ptrace.h>
25#include <linux/slab.h>
26#include <linux/user.h>
27#include <linux/elf.h>
28#include <linux/init.h>
29#include <linux/prctl.h>
30#include <linux/init_task.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040031#include <linux/export.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100032#include <linux/kallsyms.h>
33#include <linux/mqueue.h>
34#include <linux/hardirq.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100035#include <linux/utsname.h>
Steven Rostedt6794c782009-02-09 21:10:27 -080036#include <linux/ftrace.h>
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010037#include <linux/kernel_stat.h>
Anton Blanchardd8390882009-02-22 01:50:03 +000038#include <linux/personality.h>
39#include <linux/random.h>
K.Prasad5aae8a52010-06-15 11:35:19 +053040#include <linux/hw_breakpoint.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100041
42#include <asm/pgtable.h>
43#include <asm/uaccess.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100044#include <asm/io.h>
45#include <asm/processor.h>
46#include <asm/mmu.h>
47#include <asm/prom.h>
Michael Ellerman76032de2005-11-07 13:12:03 +110048#include <asm/machdep.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110049#include <asm/time.h>
David Howellsae3a1972012-03-28 18:30:02 +010050#include <asm/runlatch.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010051#include <asm/syscalls.h>
David Howellsae3a1972012-03-28 18:30:02 +010052#include <asm/switch_to.h>
53#include <asm/debug.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100054#ifdef CONFIG_PPC64
55#include <asm/firmware.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100056#endif
Luis Machadod6a61bf2008-07-24 02:10:41 +100057#include <linux/kprobes.h>
58#include <linux/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100059
Michael Neuling8b3c34c2013-02-13 16:21:32 +000060/* Transactional Memory debug */
61#ifdef TM_DEBUG_SW
62#define TM_DEBUG(x...) printk(KERN_INFO x)
63#else
64#define TM_DEBUG(x...) do { } while(0)
65#endif
66
Paul Mackerras14cf11a2005-09-26 16:04:21 +100067extern unsigned long _get_SP(void);
68
69#ifndef CONFIG_SMP
70struct task_struct *last_task_used_math = NULL;
71struct task_struct *last_task_used_altivec = NULL;
Michael Neulingce48b212008-06-25 14:07:18 +100072struct task_struct *last_task_used_vsx = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100073struct task_struct *last_task_used_spe = NULL;
74#endif
75
Paul Mackerras14cf11a2005-09-26 16:04:21 +100076/*
77 * Make sure the floating-point register state in the
78 * the thread_struct is up to date for task tsk.
79 */
80void flush_fp_to_thread(struct task_struct *tsk)
81{
82 if (tsk->thread.regs) {
83 /*
84 * We need to disable preemption here because if we didn't,
85 * another process could get scheduled after the regs->msr
86 * test but before we have finished saving the FP registers
87 * to the thread_struct. That process could take over the
88 * FPU, and then when we get scheduled again we would store
89 * bogus values for the remaining FP registers.
90 */
91 preempt_disable();
92 if (tsk->thread.regs->msr & MSR_FP) {
93#ifdef CONFIG_SMP
94 /*
95 * This should only ever be called for current or
96 * for a stopped child process. Since we save away
97 * the FP register state on context switch on SMP,
98 * there is something wrong if a stopped child appears
99 * to still have its FP state in the CPU registers.
100 */
101 BUG_ON(tsk != current);
102#endif
Kumar Gala0ee6c152007-08-28 21:15:53 -0500103 giveup_fpu(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000104 }
105 preempt_enable();
106 }
107}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000108EXPORT_SYMBOL_GPL(flush_fp_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000109
110void enable_kernel_fp(void)
111{
112 WARN_ON(preemptible());
113
114#ifdef CONFIG_SMP
115 if (current->thread.regs && (current->thread.regs->msr & MSR_FP))
116 giveup_fpu(current);
117 else
118 giveup_fpu(NULL); /* just enables FP for kernel */
119#else
120 giveup_fpu(last_task_used_math);
121#endif /* CONFIG_SMP */
122}
123EXPORT_SYMBOL(enable_kernel_fp);
124
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000125#ifdef CONFIG_ALTIVEC
126void enable_kernel_altivec(void)
127{
128 WARN_ON(preemptible());
129
130#ifdef CONFIG_SMP
131 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC))
132 giveup_altivec(current);
133 else
Anton Blanchard35000872012-04-15 20:56:45 +0000134 giveup_altivec_notask();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000135#else
136 giveup_altivec(last_task_used_altivec);
137#endif /* CONFIG_SMP */
138}
139EXPORT_SYMBOL(enable_kernel_altivec);
140
141/*
142 * Make sure the VMX/Altivec register state in the
143 * the thread_struct is up to date for task tsk.
144 */
145void flush_altivec_to_thread(struct task_struct *tsk)
146{
147 if (tsk->thread.regs) {
148 preempt_disable();
149 if (tsk->thread.regs->msr & MSR_VEC) {
150#ifdef CONFIG_SMP
151 BUG_ON(tsk != current);
152#endif
Kumar Gala0ee6c152007-08-28 21:15:53 -0500153 giveup_altivec(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000154 }
155 preempt_enable();
156 }
157}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000158EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000159#endif /* CONFIG_ALTIVEC */
160
Michael Neulingce48b212008-06-25 14:07:18 +1000161#ifdef CONFIG_VSX
162#if 0
163/* not currently used, but some crazy RAID module might want to later */
164void enable_kernel_vsx(void)
165{
166 WARN_ON(preemptible());
167
168#ifdef CONFIG_SMP
169 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX))
170 giveup_vsx(current);
171 else
172 giveup_vsx(NULL); /* just enable vsx for kernel - force */
173#else
174 giveup_vsx(last_task_used_vsx);
175#endif /* CONFIG_SMP */
176}
177EXPORT_SYMBOL(enable_kernel_vsx);
178#endif
179
Michael Neuling7c292172008-07-11 16:29:12 +1000180void giveup_vsx(struct task_struct *tsk)
181{
182 giveup_fpu(tsk);
183 giveup_altivec(tsk);
184 __giveup_vsx(tsk);
185}
186
Michael Neulingce48b212008-06-25 14:07:18 +1000187void flush_vsx_to_thread(struct task_struct *tsk)
188{
189 if (tsk->thread.regs) {
190 preempt_disable();
191 if (tsk->thread.regs->msr & MSR_VSX) {
192#ifdef CONFIG_SMP
193 BUG_ON(tsk != current);
194#endif
195 giveup_vsx(tsk);
196 }
197 preempt_enable();
198 }
199}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000200EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000201#endif /* CONFIG_VSX */
202
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000203#ifdef CONFIG_SPE
204
205void enable_kernel_spe(void)
206{
207 WARN_ON(preemptible());
208
209#ifdef CONFIG_SMP
210 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE))
211 giveup_spe(current);
212 else
213 giveup_spe(NULL); /* just enable SPE for kernel - force */
214#else
215 giveup_spe(last_task_used_spe);
216#endif /* __SMP __ */
217}
218EXPORT_SYMBOL(enable_kernel_spe);
219
220void flush_spe_to_thread(struct task_struct *tsk)
221{
222 if (tsk->thread.regs) {
223 preempt_disable();
224 if (tsk->thread.regs->msr & MSR_SPE) {
225#ifdef CONFIG_SMP
226 BUG_ON(tsk != current);
227#endif
yu liu685659e2011-06-14 18:34:25 -0500228 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500229 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000230 }
231 preempt_enable();
232 }
233}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000234#endif /* CONFIG_SPE */
235
Paul Mackerras5388fb12006-01-11 22:11:39 +1100236#ifndef CONFIG_SMP
Paul Mackerras48abec02005-11-30 13:20:54 +1100237/*
238 * If we are doing lazy switching of CPU state (FP, altivec or SPE),
239 * and the current task has some state, discard it.
240 */
Paul Mackerras5388fb12006-01-11 22:11:39 +1100241void discard_lazy_cpu_state(void)
Paul Mackerras48abec02005-11-30 13:20:54 +1100242{
Paul Mackerras48abec02005-11-30 13:20:54 +1100243 preempt_disable();
244 if (last_task_used_math == current)
245 last_task_used_math = NULL;
246#ifdef CONFIG_ALTIVEC
247 if (last_task_used_altivec == current)
248 last_task_used_altivec = NULL;
249#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000250#ifdef CONFIG_VSX
251 if (last_task_used_vsx == current)
252 last_task_used_vsx = NULL;
253#endif /* CONFIG_VSX */
Paul Mackerras48abec02005-11-30 13:20:54 +1100254#ifdef CONFIG_SPE
255 if (last_task_used_spe == current)
256 last_task_used_spe = NULL;
257#endif
258 preempt_enable();
Paul Mackerras48abec02005-11-30 13:20:54 +1100259}
Paul Mackerras5388fb12006-01-11 22:11:39 +1100260#endif /* CONFIG_SMP */
Paul Mackerras48abec02005-11-30 13:20:54 +1100261
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000262#ifdef CONFIG_PPC_ADV_DEBUG_REGS
263void do_send_trap(struct pt_regs *regs, unsigned long address,
264 unsigned long error_code, int signal_code, int breakpt)
265{
266 siginfo_t info;
267
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000268 current->thread.trap_nr = signal_code;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000269 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
270 11, SIGSEGV) == NOTIFY_STOP)
271 return;
272
273 /* Deliver the signal to userspace */
274 info.si_signo = SIGTRAP;
275 info.si_errno = breakpt; /* breakpoint or watchpoint id */
276 info.si_code = signal_code;
277 info.si_addr = (void __user *)address;
278 force_sig_info(SIGTRAP, &info, current);
279}
280#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000281void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000282 unsigned long error_code)
283{
284 siginfo_t info;
285
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000286 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000287 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
288 11, SIGSEGV) == NOTIFY_STOP)
289 return;
290
Michael Neuling9422de32012-12-20 14:06:44 +0000291 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000292 return;
293
Michael Neuling9422de32012-12-20 14:06:44 +0000294 /* Clear the breakpoint */
295 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000296
297 /* Deliver the signal to userspace */
298 info.si_signo = SIGTRAP;
299 info.si_errno = 0;
300 info.si_code = TRAP_HWBKPT;
301 info.si_addr = (void __user *)address;
302 force_sig_info(SIGTRAP, &info, current);
303}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000304#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000305
Michael Neuling9422de32012-12-20 14:06:44 +0000306static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100307
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000308#ifdef CONFIG_PPC_ADV_DEBUG_REGS
309/*
310 * Set the debug registers back to their default "safe" values.
311 */
312static void set_debug_reg_defaults(struct thread_struct *thread)
313{
314 thread->iac1 = thread->iac2 = 0;
315#if CONFIG_PPC_ADV_DEBUG_IACS > 2
316 thread->iac3 = thread->iac4 = 0;
317#endif
318 thread->dac1 = thread->dac2 = 0;
319#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
320 thread->dvc1 = thread->dvc2 = 0;
321#endif
322 thread->dbcr0 = 0;
323#ifdef CONFIG_BOOKE
324 /*
325 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
326 */
327 thread->dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US | \
328 DBCR1_IAC3US | DBCR1_IAC4US;
329 /*
330 * Force Data Address Compare User/Supervisor bits to be User-only
331 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
332 */
333 thread->dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
334#else
335 thread->dbcr1 = 0;
336#endif
337}
338
339static void prime_debug_regs(struct thread_struct *thread)
340{
341 mtspr(SPRN_IAC1, thread->iac1);
342 mtspr(SPRN_IAC2, thread->iac2);
343#if CONFIG_PPC_ADV_DEBUG_IACS > 2
344 mtspr(SPRN_IAC3, thread->iac3);
345 mtspr(SPRN_IAC4, thread->iac4);
346#endif
347 mtspr(SPRN_DAC1, thread->dac1);
348 mtspr(SPRN_DAC2, thread->dac2);
349#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
350 mtspr(SPRN_DVC1, thread->dvc1);
351 mtspr(SPRN_DVC2, thread->dvc2);
352#endif
353 mtspr(SPRN_DBCR0, thread->dbcr0);
354 mtspr(SPRN_DBCR1, thread->dbcr1);
355#ifdef CONFIG_BOOKE
356 mtspr(SPRN_DBCR2, thread->dbcr2);
357#endif
358}
359/*
360 * Unless neither the old or new thread are making use of the
361 * debug registers, set the debug registers from the values
362 * stored in the new thread.
363 */
364static void switch_booke_debug_regs(struct thread_struct *new_thread)
365{
366 if ((current->thread.dbcr0 & DBCR0_IDM)
367 || (new_thread->dbcr0 & DBCR0_IDM))
368 prime_debug_regs(new_thread);
369}
370#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000371#ifndef CONFIG_HAVE_HW_BREAKPOINT
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000372static void set_debug_reg_defaults(struct thread_struct *thread)
373{
Michael Neuling9422de32012-12-20 14:06:44 +0000374 thread->hw_brk.address = 0;
375 thread->hw_brk.type = 0;
Michael Neulingb9818c32013-01-10 14:25:34 +0000376 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000377}
K.Prasade0780b72011-02-10 04:44:35 +0000378#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000379#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
380
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000381#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000382static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
383{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000384 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000385#ifdef CONFIG_PPC_47x
386 isync();
387#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000388 return 0;
389}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000390#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000391static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
392{
Michael Ellermancab0af92005-11-03 15:30:49 +1100393 mtspr(SPRN_DABR, dabr);
Michael Neuling4474ef02012-09-06 21:24:56 +0000394 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100395 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000396}
Michael Neuling9422de32012-12-20 14:06:44 +0000397#else
398static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
399{
400 return -EINVAL;
401}
402#endif
403
404static inline int set_dabr(struct arch_hw_breakpoint *brk)
405{
406 unsigned long dabr, dabrx;
407
408 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
409 dabrx = ((brk->type >> 3) & 0x7);
410
411 if (ppc_md.set_dabr)
412 return ppc_md.set_dabr(dabr, dabrx);
413
414 return __set_dabr(dabr, dabrx);
415}
416
Michael Neulingbf99de32012-12-20 14:06:45 +0000417static inline int set_dawr(struct arch_hw_breakpoint *brk)
418{
Michael Neuling05d694e2013-01-24 15:02:58 +0000419 unsigned long dawr, dawrx, mrd;
Michael Neulingbf99de32012-12-20 14:06:45 +0000420
421 dawr = brk->address;
422
423 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
424 << (63 - 58); //* read/write bits */
425 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
426 << (63 - 59); //* translate */
427 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
428 >> 3; //* PRIM bits */
Michael Neuling05d694e2013-01-24 15:02:58 +0000429 /* dawr length is stored in field MDR bits 48:53. Matches range in
430 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
431 0b111111=64DW.
432 brk->len is in bytes.
433 This aligns up to double word size, shifts and does the bias.
434 */
435 mrd = ((brk->len + 7) >> 3) - 1;
436 dawrx |= (mrd & 0x3f) << (63 - 53);
Michael Neulingbf99de32012-12-20 14:06:45 +0000437
438 if (ppc_md.set_dawr)
439 return ppc_md.set_dawr(dawr, dawrx);
440 mtspr(SPRN_DAWR, dawr);
441 mtspr(SPRN_DAWRX, dawrx);
442 return 0;
443}
444
Michael Neulingb9818c32013-01-10 14:25:34 +0000445int set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000446{
447 __get_cpu_var(current_brk) = *brk;
448
Michael Neulingbf99de32012-12-20 14:06:45 +0000449 if (cpu_has_feature(CPU_FTR_DAWR))
450 return set_dawr(brk);
451
Michael Neuling9422de32012-12-20 14:06:44 +0000452 return set_dabr(brk);
453}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000454
Paul Mackerras06d67d52005-10-10 22:29:05 +1000455#ifdef CONFIG_PPC64
456DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000457#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000458
Michael Neuling9422de32012-12-20 14:06:44 +0000459static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
460 struct arch_hw_breakpoint *b)
461{
462 if (a->address != b->address)
463 return false;
464 if (a->type != b->type)
465 return false;
466 if (a->len != b->len)
467 return false;
468 return true;
469}
470
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000471struct task_struct *__switch_to(struct task_struct *prev,
472 struct task_struct *new)
473{
474 struct thread_struct *new_thread, *old_thread;
475 unsigned long flags;
476 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700477#ifdef CONFIG_PPC_BOOK3S_64
478 struct ppc64_tlb_batch *batch;
479#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000480
481#ifdef CONFIG_SMP
482 /* avoid complexity of lazy save/restore of fpu
483 * by just saving it every time we switch out if
484 * this task used the fpu during the last quantum.
485 *
486 * If it tries to use the fpu again, it'll trap and
487 * reload its fp regs. So we don't have to do a restore
488 * every switch, just a save.
489 * -- Cort
490 */
491 if (prev->thread.regs && (prev->thread.regs->msr & MSR_FP))
492 giveup_fpu(prev);
493#ifdef CONFIG_ALTIVEC
494 /*
495 * If the previous thread used altivec in the last quantum
496 * (thus changing altivec regs) then save them.
497 * We used to check the VRSAVE register but not all apps
498 * set it, so we don't rely on it now (and in fact we need
499 * to save & restore VSCR even if VRSAVE == 0). -- paulus
500 *
501 * On SMP we always save/restore altivec regs just to avoid the
502 * complexity of changing processors.
503 * -- Cort
504 */
505 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VEC))
506 giveup_altivec(prev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000507#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000508#ifdef CONFIG_VSX
509 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VSX))
Michael Neuling7c292172008-07-11 16:29:12 +1000510 /* VMX and FPU registers are already save here */
511 __giveup_vsx(prev);
Michael Neulingce48b212008-06-25 14:07:18 +1000512#endif /* CONFIG_VSX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000513#ifdef CONFIG_SPE
514 /*
515 * If the previous thread used spe in the last quantum
516 * (thus changing spe regs) then save them.
517 *
518 * On SMP we always save/restore spe regs just to avoid the
519 * complexity of changing processors.
520 */
521 if ((prev->thread.regs && (prev->thread.regs->msr & MSR_SPE)))
522 giveup_spe(prev);
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000523#endif /* CONFIG_SPE */
524
525#else /* CONFIG_SMP */
526#ifdef CONFIG_ALTIVEC
527 /* Avoid the trap. On smp this this never happens since
528 * we don't set last_task_used_altivec -- Cort
529 */
530 if (new->thread.regs && last_task_used_altivec == new)
531 new->thread.regs->msr |= MSR_VEC;
532#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000533#ifdef CONFIG_VSX
534 if (new->thread.regs && last_task_used_vsx == new)
535 new->thread.regs->msr |= MSR_VSX;
536#endif /* CONFIG_VSX */
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000537#ifdef CONFIG_SPE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000538 /* Avoid the trap. On smp this this never happens since
539 * we don't set last_task_used_spe
540 */
541 if (new->thread.regs && last_task_used_spe == new)
542 new->thread.regs->msr |= MSR_SPE;
543#endif /* CONFIG_SPE */
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000544
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000545#endif /* CONFIG_SMP */
546
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000547#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000548 switch_booke_debug_regs(&new->thread);
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000549#else
K.Prasad5aae8a52010-06-15 11:35:19 +0530550/*
551 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
552 * schedule DABR
553 */
554#ifndef CONFIG_HAVE_HW_BREAKPOINT
Michael Neuling9422de32012-12-20 14:06:44 +0000555 if (unlikely(hw_brk_match(&__get_cpu_var(current_brk), &new->thread.hw_brk)))
Michael Neulingb9818c32013-01-10 14:25:34 +0000556 set_breakpoint(&new->thread.hw_brk);
K.Prasad5aae8a52010-06-15 11:35:19 +0530557#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000558#endif
559
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000560
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000561 new_thread = &new->thread;
562 old_thread = &current->thread;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000563
564#ifdef CONFIG_PPC64
565 /*
566 * Collect processor utilization data per process
567 */
568 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
569 struct cpu_usage *cu = &__get_cpu_var(cpu_usage_array);
570 long unsigned start_tb, current_tb;
571 start_tb = old_thread->start_tb;
572 cu->current_tb = current_tb = mfspr(SPRN_PURR);
573 old_thread->accum_tb += (current_tb - start_tb);
574 new_thread->start_tb = current_tb;
575 }
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700576#endif /* CONFIG_PPC64 */
577
578#ifdef CONFIG_PPC_BOOK3S_64
579 batch = &__get_cpu_var(ppc64_tlb_batch);
580 if (batch->active) {
581 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
582 if (batch->index)
583 __flush_tlb_pending(batch);
584 batch->active = 0;
585 }
586#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000587
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000588 local_irq_save(flags);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100589
Anton Blanchard44387e92008-03-17 15:27:09 +1100590 /*
591 * We can't take a PMU exception inside _switch() since there is a
592 * window where the kernel stack SLB and the kernel stack are out
593 * of sync. Hard disable here.
594 */
595 hard_irq_disable();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000596 last = _switch(old_thread, new_thread);
597
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700598#ifdef CONFIG_PPC_BOOK3S_64
599 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
600 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
601 batch = &__get_cpu_var(ppc64_tlb_batch);
602 batch->active = 1;
603 }
604#endif /* CONFIG_PPC_BOOK3S_64 */
605
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000606 local_irq_restore(flags);
607
608 return last;
609}
610
Paul Mackerras06d67d52005-10-10 22:29:05 +1000611static int instructions_to_print = 16;
612
Paul Mackerras06d67d52005-10-10 22:29:05 +1000613static void show_instructions(struct pt_regs *regs)
614{
615 int i;
616 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
617 sizeof(int));
618
619 printk("Instruction dump:");
620
621 for (i = 0; i < instructions_to_print; i++) {
622 int instr;
623
624 if (!(i % 8))
625 printk("\n");
626
Scott Wood0de2d822007-09-28 04:38:55 +1000627#if !defined(CONFIG_BOOKE)
628 /* If executing with the IMMU off, adjust pc rather
629 * than print XXXXXXXX.
630 */
631 if (!(regs->msr & MSR_IR))
632 pc = (unsigned long)phys_to_virt(pc);
633#endif
634
Stephen Rothwellaf308372006-03-23 17:38:10 +1100635 /* We use __get_user here *only* to avoid an OOPS on a
636 * bad address because the pc *should* only be a
637 * kernel address.
638 */
Anton Blanchard00ae36d2006-10-13 12:17:16 +1000639 if (!__kernel_text_address(pc) ||
640 __get_user(instr, (unsigned int __user *)pc)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +0000641 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +1000642 } else {
643 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +0000644 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000645 else
Ira Snyder40c8cef2012-01-06 12:34:07 +0000646 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000647 }
648
649 pc += sizeof(int);
650 }
651
652 printk("\n");
653}
654
655static struct regbit {
656 unsigned long bit;
657 const char *name;
658} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000659#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
660 {MSR_SF, "SF"},
661 {MSR_HV, "HV"},
662#endif
663 {MSR_VEC, "VEC"},
664 {MSR_VSX, "VSX"},
665#ifdef CONFIG_BOOKE
666 {MSR_CE, "CE"},
667#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000668 {MSR_EE, "EE"},
669 {MSR_PR, "PR"},
670 {MSR_FP, "FP"},
671 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000672#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +0000673 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000674#else
675 {MSR_SE, "SE"},
676 {MSR_BE, "BE"},
677#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000678 {MSR_IR, "IR"},
679 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000680 {MSR_PMM, "PMM"},
681#ifndef CONFIG_BOOKE
682 {MSR_RI, "RI"},
683 {MSR_LE, "LE"},
684#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000685 {0, NULL}
686};
687
688static void printbits(unsigned long val, struct regbit *bits)
689{
690 const char *sep = "";
691
692 printk("<");
693 for (; bits->bit; ++bits)
694 if (val & bits->bit) {
695 printk("%s%s", sep, bits->name);
696 sep = ",";
697 }
698 printk(">");
699}
700
701#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500702#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000703#define REGS_PER_LINE 4
704#define LAST_VOLATILE 13
705#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500706#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000707#define REGS_PER_LINE 8
708#define LAST_VOLATILE 12
709#endif
710
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000711void show_regs(struct pt_regs * regs)
712{
713 int i, trap;
714
Paul Mackerras06d67d52005-10-10 22:29:05 +1000715 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
716 regs->nip, regs->link, regs->ctr);
717 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700718 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000719 printk("MSR: "REG" ", regs->msr);
720 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500721 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100722#ifdef CONFIG_PPC64
723 printk("SOFTE: %ld\n", regs->softe);
724#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000725 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +0000726 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
727 printk("CFAR: "REG"\n", regs->orig_gpr3);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000728 if (trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +0000729#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Kumar Gala14170782007-07-26 00:46:15 -0500730 printk("DEAR: "REG", ESR: "REG"\n", regs->dar, regs->dsisr);
731#else
Anton Blanchard70718542011-01-11 19:44:30 +0000732 printk("DAR: "REG", DSISR: %08lx\n", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -0500733#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000734 printk("TASK = %p[%d] '%s' THREAD: %p",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700735 current, task_pid_nr(current), current->comm, task_thread_info(current));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000736
737#ifdef CONFIG_SMP
Hugh Dickins79ccd1b2008-02-09 05:25:13 +1100738 printk(" CPU: %d", raw_smp_processor_id());
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000739#endif /* CONFIG_SMP */
740
741 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +1000742 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +0000743 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000744 printk(REG " ", regs->gpr[i]);
745 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000746 break;
747 }
748 printk("\n");
749#ifdef CONFIG_KALLSYMS
750 /*
751 * Lookup NIP late so we have the best change of getting the
752 * above info out without failing
753 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +1000754 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
755 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000756#endif
757 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000758 if (!user_mode(regs))
759 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000760}
761
762void exit_thread(void)
763{
Paul Mackerras48abec02005-11-30 13:20:54 +1100764 discard_lazy_cpu_state();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000765}
766
767void flush_thread(void)
768{
Paul Mackerras48abec02005-11-30 13:20:54 +1100769 discard_lazy_cpu_state();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000770
K.Prasade0780b72011-02-10 04:44:35 +0000771#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +0530772 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +0000773#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000774 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +0000775#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000776}
777
778void
779release_thread(struct task_struct *t)
780{
781}
782
783/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700784 * this gets called so that we can store coprocessor state into memory and
785 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000786 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700787int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000788{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700789 flush_fp_to_thread(src);
790 flush_altivec_to_thread(src);
791 flush_vsx_to_thread(src);
792 flush_spe_to_thread(src);
K.Prasad5aae8a52010-06-15 11:35:19 +0530793#ifdef CONFIG_HAVE_HW_BREAKPOINT
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700794 flush_ptrace_hw_breakpoint(src);
K.Prasad5aae8a52010-06-15 11:35:19 +0530795#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700796
797 *dst = *src;
798 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000799}
800
801/*
802 * Copy a thread..
803 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000804extern unsigned long dscr_default; /* defined in arch/powerpc/kernel/sysfs.c */
805
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700806int copy_thread(unsigned long clone_flags, unsigned long usp,
Al Viroafa86fc2012-10-22 22:51:14 -0400807 unsigned long arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000808{
809 struct pt_regs *childregs, *kregs;
810 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -0400811 extern void ret_from_kernel_thread(void);
812 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -0800813 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000814
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000815 /* Copy registers */
816 sp -= sizeof(struct pt_regs);
817 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -0400818 if (unlikely(p->flags & PF_KTHREAD)) {
Al Viro138d1ce2012-10-11 08:41:43 -0400819 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -0400820 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000821 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Al Viro53b50f92012-10-21 16:50:34 -0400822 childregs->gpr[14] = usp; /* function */
Al Viro58254e12012-09-12 18:32:42 -0400823#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -0800824 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -0400825 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000826#endif
Al Viro58254e12012-09-12 18:32:42 -0400827 childregs->gpr[15] = arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000828 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -0400829 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -0400830 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000831 } else {
Al Viroafa86fc2012-10-22 22:51:14 -0400832 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -0400833 CHECK_FULL_REGS(regs);
834 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -0400835 if (usp)
836 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000837 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -0400838 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000839 if (clone_flags & CLONE_SETTLS) {
840#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +0000841 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +1000842 childregs->gpr[13] = childregs->gpr[6];
843 else
844#endif
845 childregs->gpr[2] = childregs->gpr[6];
846 }
Al Viro58254e12012-09-12 18:32:42 -0400847
848 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000849 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000850 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000851
852 /*
853 * The way this works is that at some point in the future
854 * some task will call _switch to switch to the new task.
855 * That will pop off the stack frame created below and start
856 * the new task running at ret_from_fork. The new task will
857 * do some house keeping and then return from the fork or clone
858 * system call, using the stack frame created above.
859 */
860 sp -= sizeof(struct pt_regs);
861 kregs = (struct pt_regs *) sp;
862 sp -= STACK_FRAME_OVERHEAD;
863 p->thread.ksp = sp;
Kumar Gala85218822008-04-28 16:21:22 +1000864 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
865 _ALIGN_UP(sizeof(struct thread_info), 16);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000866
Benjamin Herrenschmidt94491682009-06-02 21:17:45 +0000867#ifdef CONFIG_PPC_STD_MMU_64
Matt Evans44ae3ab2011-04-06 19:48:50 +0000868 if (mmu_has_feature(MMU_FTR_SLB)) {
Paul Mackerras1189be62007-10-11 20:37:10 +1000869 unsigned long sp_vsid;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100870 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000871
Matt Evans44ae3ab2011-04-06 19:48:50 +0000872 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
Paul Mackerras1189be62007-10-11 20:37:10 +1000873 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
874 << SLB_VSID_SHIFT_1T;
875 else
876 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
877 << SLB_VSID_SHIFT;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100878 sp_vsid |= SLB_VSID_KERNEL | llp;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000879 p->thread.ksp_vsid = sp_vsid;
880 }
Benjamin Herrenschmidt747bea92009-07-23 23:15:27 +0000881#endif /* CONFIG_PPC_STD_MMU_64 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000882#ifdef CONFIG_PPC64
883 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +0000884 p->thread.dscr_inherit = current->thread.dscr_inherit;
885 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000886 }
Haren Myneni92779242012-12-06 21:49:56 +0000887 if (cpu_has_feature(CPU_FTR_HAS_PPR))
888 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000889#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000890 /*
891 * The PPC64 ABI makes use of a TOC to contain function
892 * pointers. The function (ret_from_except) is actually a pointer
893 * to the TOC entry. The first entry is a pointer to the actual
894 * function.
Al Viro58254e12012-09-12 18:32:42 -0400895 */
Benjamin Herrenschmidt747bea92009-07-23 23:15:27 +0000896#ifdef CONFIG_PPC64
Al Viro58254e12012-09-12 18:32:42 -0400897 kregs->nip = *((unsigned long *)f);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000898#else
Al Viro58254e12012-09-12 18:32:42 -0400899 kregs->nip = (unsigned long)f;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000900#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000901 return 0;
902}
903
904/*
905 * Set up a thread for executing a new program
906 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000907void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000908{
Michael Ellerman90eac722005-10-21 16:01:33 +1000909#ifdef CONFIG_PPC64
910 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
911#endif
912
Paul Mackerras06d67d52005-10-10 22:29:05 +1000913 /*
914 * If we exec out of a kernel thread then thread.regs will not be
915 * set. Do it now.
916 */
917 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -0800918 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
919 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000920 }
921
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000922 memset(regs->gpr, 0, sizeof(regs->gpr));
923 regs->ctr = 0;
924 regs->link = 0;
925 regs->xer = 0;
926 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000927 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000928
Roland McGrath474f8192007-09-24 16:52:44 -0700929 /*
930 * We have just cleared all the nonvolatile GPRs, so make
931 * FULL_REGS(regs) return true. This is necessary to allow
932 * ptrace to examine the thread immediately after exec.
933 */
934 regs->trap &= ~1UL;
935
Paul Mackerras06d67d52005-10-10 22:29:05 +1000936#ifdef CONFIG_PPC32
937 regs->mq = 0;
938 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000939 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000940#else
Denis Kirjanov9904b002010-07-29 22:04:39 +0000941 if (!is_32bit_task()) {
Michael Ellerman90eac722005-10-21 16:01:33 +1000942 unsigned long entry, toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000943
944 /* start is a relocated pointer to the function descriptor for
945 * the elf _start routine. The first entry in the function
946 * descriptor is the entry address of _start and the second
947 * entry is the TOC value we need to use.
948 */
949 __get_user(entry, (unsigned long __user *)start);
950 __get_user(toc, (unsigned long __user *)start+1);
951
952 /* Check whether the e_entry function descriptor entries
953 * need to be relocated before we can use them.
954 */
955 if (load_addr != 0) {
956 entry += load_addr;
957 toc += load_addr;
958 }
959 regs->nip = entry;
960 regs->gpr[2] = toc;
961 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +1000962 } else {
963 regs->nip = start;
964 regs->gpr[2] = 0;
965 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000966 }
967#endif
968
Paul Mackerras48abec02005-11-30 13:20:54 +1100969 discard_lazy_cpu_state();
Michael Neulingce48b212008-06-25 14:07:18 +1000970#ifdef CONFIG_VSX
971 current->thread.used_vsr = 0;
972#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000973 memset(current->thread.fpr, 0, sizeof(current->thread.fpr));
David Gibson25c8a782005-10-27 16:27:25 +1000974 current->thread.fpscr.val = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000975#ifdef CONFIG_ALTIVEC
976 memset(current->thread.vr, 0, sizeof(current->thread.vr));
977 memset(&current->thread.vscr, 0, sizeof(current->thread.vscr));
Paul Mackerras06d67d52005-10-10 22:29:05 +1000978 current->thread.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000979 current->thread.vrsave = 0;
980 current->thread.used_vr = 0;
981#endif /* CONFIG_ALTIVEC */
982#ifdef CONFIG_SPE
983 memset(current->thread.evr, 0, sizeof(current->thread.evr));
984 current->thread.acc = 0;
985 current->thread.spefscr = 0;
986 current->thread.used_spe = 0;
987#endif /* CONFIG_SPE */
988}
989
990#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
991 | PR_FP_EXC_RES | PR_FP_EXC_INV)
992
993int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
994{
995 struct pt_regs *regs = tsk->thread.regs;
996
997 /* This is a bit hairy. If we are an SPE enabled processor
998 * (have embedded fp) we store the IEEE exception enable flags in
999 * fpexc_mode. fpexc_mode is also used for setting FP exception
1000 * mode (asyn, precise, disabled) for 'Classic' FP. */
1001 if (val & PR_FP_EXC_SW_ENABLE) {
1002#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001003 if (cpu_has_feature(CPU_FTR_SPE)) {
1004 tsk->thread.fpexc_mode = val &
1005 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1006 return 0;
1007 } else {
1008 return -EINVAL;
1009 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001010#else
1011 return -EINVAL;
1012#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001013 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001014
1015 /* on a CONFIG_SPE this does not hurt us. The bits that
1016 * __pack_fe01 use do not overlap with bits used for
1017 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1018 * on CONFIG_SPE implementations are reserved so writing to
1019 * them does not change anything */
1020 if (val > PR_FP_EXC_PRECISE)
1021 return -EINVAL;
1022 tsk->thread.fpexc_mode = __pack_fe01(val);
1023 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1024 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1025 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001026 return 0;
1027}
1028
1029int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1030{
1031 unsigned int val;
1032
1033 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1034#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001035 if (cpu_has_feature(CPU_FTR_SPE))
1036 val = tsk->thread.fpexc_mode;
1037 else
1038 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001039#else
1040 return -EINVAL;
1041#endif
1042 else
1043 val = __unpack_fe01(tsk->thread.fpexc_mode);
1044 return put_user(val, (unsigned int __user *) adr);
1045}
1046
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001047int set_endian(struct task_struct *tsk, unsigned int val)
1048{
1049 struct pt_regs *regs = tsk->thread.regs;
1050
1051 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1052 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1053 return -EINVAL;
1054
1055 if (regs == NULL)
1056 return -EINVAL;
1057
1058 if (val == PR_ENDIAN_BIG)
1059 regs->msr &= ~MSR_LE;
1060 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1061 regs->msr |= MSR_LE;
1062 else
1063 return -EINVAL;
1064
1065 return 0;
1066}
1067
1068int get_endian(struct task_struct *tsk, unsigned long adr)
1069{
1070 struct pt_regs *regs = tsk->thread.regs;
1071 unsigned int val;
1072
1073 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1074 !cpu_has_feature(CPU_FTR_REAL_LE))
1075 return -EINVAL;
1076
1077 if (regs == NULL)
1078 return -EINVAL;
1079
1080 if (regs->msr & MSR_LE) {
1081 if (cpu_has_feature(CPU_FTR_REAL_LE))
1082 val = PR_ENDIAN_LITTLE;
1083 else
1084 val = PR_ENDIAN_PPC_LITTLE;
1085 } else
1086 val = PR_ENDIAN_BIG;
1087
1088 return put_user(val, (unsigned int __user *)adr);
1089}
1090
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001091int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1092{
1093 tsk->thread.align_ctl = val;
1094 return 0;
1095}
1096
1097int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1098{
1099 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1100}
1101
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001102static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1103 unsigned long nbytes)
1104{
1105 unsigned long stack_page;
1106 unsigned long cpu = task_cpu(p);
1107
1108 /*
1109 * Avoid crashing if the stack has overflowed and corrupted
1110 * task_cpu(p), which is in the thread_info struct.
1111 */
1112 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1113 stack_page = (unsigned long) hardirq_ctx[cpu];
1114 if (sp >= stack_page + sizeof(struct thread_struct)
1115 && sp <= stack_page + THREAD_SIZE - nbytes)
1116 return 1;
1117
1118 stack_page = (unsigned long) softirq_ctx[cpu];
1119 if (sp >= stack_page + sizeof(struct thread_struct)
1120 && sp <= stack_page + THREAD_SIZE - nbytes)
1121 return 1;
1122 }
1123 return 0;
1124}
1125
Anton Blanchard2f251942006-03-27 11:46:18 +11001126int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001127 unsigned long nbytes)
1128{
Al Viro0cec6fd2006-01-12 01:06:02 -08001129 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001130
1131 if (sp >= stack_page + sizeof(struct thread_struct)
1132 && sp <= stack_page + THREAD_SIZE - nbytes)
1133 return 1;
1134
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001135 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001136}
1137
Anton Blanchard2f251942006-03-27 11:46:18 +11001138EXPORT_SYMBOL(validate_sp);
1139
Paul Mackerras06d67d52005-10-10 22:29:05 +10001140unsigned long get_wchan(struct task_struct *p)
1141{
1142 unsigned long ip, sp;
1143 int count = 0;
1144
1145 if (!p || p == current || p->state == TASK_RUNNING)
1146 return 0;
1147
1148 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001149 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001150 return 0;
1151
1152 do {
1153 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001154 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001155 return 0;
1156 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001157 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001158 if (!in_sched_functions(ip))
1159 return ip;
1160 }
1161 } while (count++ < 16);
1162 return 0;
1163}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001164
Johannes Bergc4d04be2008-11-20 03:24:07 +00001165static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001166
1167void show_stack(struct task_struct *tsk, unsigned long *stack)
1168{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001169 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001170 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001171 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001172#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1173 int curr_frame = current->curr_ret_stack;
1174 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001175 unsigned long rth = (unsigned long)return_to_handler;
1176 unsigned long mrth = -1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001177#ifdef CONFIG_PPC64
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001178 extern void mod_return_to_handler(void);
1179 rth = *(unsigned long *)rth;
1180 mrth = (unsigned long)mod_return_to_handler;
1181 mrth = *(unsigned long *)mrth;
Steven Rostedt6794c782009-02-09 21:10:27 -08001182#endif
1183#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001184
1185 sp = (unsigned long) stack;
1186 if (tsk == NULL)
1187 tsk = current;
1188 if (sp == 0) {
1189 if (tsk == current)
1190 asm("mr %0,1" : "=r" (sp));
1191 else
1192 sp = tsk->thread.ksp;
1193 }
1194
Paul Mackerras06d67d52005-10-10 22:29:05 +10001195 lr = 0;
1196 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001197 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001198 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001199 return;
1200
1201 stack = (unsigned long *) sp;
1202 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001203 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001204 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001205 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001206#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001207 if ((ip == rth || ip == mrth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001208 printk(" (%pS)",
1209 (void *)current->ret_stack[curr_frame].ret);
1210 curr_frame--;
1211 }
1212#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001213 if (firstframe)
1214 printk(" (unreliable)");
1215 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001216 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001217 firstframe = 0;
1218
1219 /*
1220 * See if this is an exception frame.
1221 * We look for the "regshere" marker in the current frame.
1222 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001223 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1224 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001225 struct pt_regs *regs = (struct pt_regs *)
1226 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001227 lr = regs->link;
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001228 printk("--- Exception: %lx at %pS\n LR = %pS\n",
1229 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001230 firstframe = 1;
1231 }
1232
1233 sp = newsp;
1234 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001235}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001236
1237void dump_stack(void)
1238{
1239 show_stack(current, NULL);
1240}
1241EXPORT_SYMBOL(dump_stack);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001242
1243#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001244/* Called with hard IRQs off */
1245void __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001246{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001247 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001248 unsigned long ctrl;
1249
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001250 ctrl = mfspr(SPRN_CTRLF);
1251 ctrl |= CTRL_RUNLATCH;
1252 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001253
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001254 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001255}
1256
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001257/* Called with hard IRQs off */
Anton Blanchard4138d652010-08-06 03:28:19 +00001258void __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001259{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001260 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001261 unsigned long ctrl;
1262
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001263 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001264
Anton Blanchard4138d652010-08-06 03:28:19 +00001265 ctrl = mfspr(SPRN_CTRLF);
1266 ctrl &= ~CTRL_RUNLATCH;
1267 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001268}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001269#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001270
Anton Blanchardd8390882009-02-22 01:50:03 +00001271unsigned long arch_align_stack(unsigned long sp)
1272{
1273 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1274 sp -= get_random_int() & ~PAGE_MASK;
1275 return sp & ~0xf;
1276}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001277
1278static inline unsigned long brk_rnd(void)
1279{
1280 unsigned long rnd = 0;
1281
1282 /* 8MB for 32bit, 1GB for 64bit */
1283 if (is_32bit_task())
1284 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1285 else
1286 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1287
1288 return rnd << PAGE_SHIFT;
1289}
1290
1291unsigned long arch_randomize_brk(struct mm_struct *mm)
1292{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001293 unsigned long base = mm->brk;
1294 unsigned long ret;
1295
Kumar Galace7a35c2009-10-16 07:05:17 +00001296#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001297 /*
1298 * If we are using 1TB segments and we are allowed to randomise
1299 * the heap, we can put it above 1TB so it is backed by a 1TB
1300 * segment. Otherwise the heap will be in the bottom 1TB
1301 * which always uses 256MB segments and this may result in a
1302 * performance penalty.
1303 */
1304 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1305 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1306#endif
1307
1308 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001309
1310 if (ret < mm->brk)
1311 return mm->brk;
1312
1313 return ret;
1314}
Anton Blanchard501cb162009-02-22 01:50:07 +00001315
1316unsigned long randomize_et_dyn(unsigned long base)
1317{
1318 unsigned long ret = PAGE_ALIGN(base + brk_rnd());
1319
1320 if (ret < base)
1321 return base;
1322
1323 return ret;
1324}