blob: 9f8444b84ddeed65d2f7029e4ecf1216ed5dfa02 [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>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100028#include <linux/prctl.h>
29#include <linux/init_task.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040030#include <linux/export.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031#include <linux/kallsyms.h>
32#include <linux/mqueue.h>
33#include <linux/hardirq.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100034#include <linux/utsname.h>
Steven Rostedt6794c782009-02-09 21:10:27 -080035#include <linux/ftrace.h>
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010036#include <linux/kernel_stat.h>
Anton Blanchardd8390882009-02-22 01:50:03 +000037#include <linux/personality.h>
38#include <linux/random.h>
K.Prasad5aae8a52010-06-15 11:35:19 +053039#include <linux/hw_breakpoint.h>
Anton Blanchard7b051f62014-10-13 20:27:15 +110040#include <linux/uaccess.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100041
42#include <asm/pgtable.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043#include <asm/io.h>
44#include <asm/processor.h>
45#include <asm/mmu.h>
46#include <asm/prom.h>
Michael Ellerman76032de2005-11-07 13:12:03 +110047#include <asm/machdep.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110048#include <asm/time.h>
David Howellsae3a1972012-03-28 18:30:02 +010049#include <asm/runlatch.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010050#include <asm/syscalls.h>
David Howellsae3a1972012-03-28 18:30:02 +010051#include <asm/switch_to.h>
Michael Neulingfb096922013-02-13 16:21:37 +000052#include <asm/tm.h>
David Howellsae3a1972012-03-28 18:30:02 +010053#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
Anton Blanchard7cedd602014-02-04 16:08:51 +110057#include <asm/code-patching.h>
Luis Machadod6a61bf2008-07-24 02:10:41 +100058#include <linux/kprobes.h>
59#include <linux/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100060
Michael Neuling8b3c34c2013-02-13 16:21:32 +000061/* Transactional Memory debug */
62#ifdef TM_DEBUG_SW
63#define TM_DEBUG(x...) printk(KERN_INFO x)
64#else
65#define TM_DEBUG(x...) do { } while(0)
66#endif
67
Paul Mackerras14cf11a2005-09-26 16:04:21 +100068extern unsigned long _get_SP(void);
69
Paul Mackerrasd31626f2014-01-13 15:56:29 +110070#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110071static void check_if_tm_restore_required(struct task_struct *tsk)
Paul Mackerrasd31626f2014-01-13 15:56:29 +110072{
73 /*
74 * If we are saving the current thread's registers, and the
75 * thread is in a transactional state, set the TIF_RESTORE_TM
76 * bit so that we know to restore the registers before
77 * returning to userspace.
78 */
79 if (tsk == current && tsk->thread.regs &&
80 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
81 !test_thread_flag(TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +053082 tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +110083 set_thread_flag(TIF_RESTORE_TM);
84 }
Paul Mackerrasd31626f2014-01-13 15:56:29 +110085}
Paul Mackerrasd31626f2014-01-13 15:56:29 +110086#else
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110087static inline void check_if_tm_restore_required(struct task_struct *tsk) { }
Paul Mackerrasd31626f2014-01-13 15:56:29 +110088#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
89
Anton Blanchard3eb5d582015-10-29 11:44:06 +110090bool strict_msr_control;
91EXPORT_SYMBOL(strict_msr_control);
92
93static int __init enable_strict_msr_control(char *str)
94{
95 strict_msr_control = true;
96 pr_info("Enabling strict facility control\n");
97
98 return 0;
99}
100early_param("ppc_strict_facility_enable", enable_strict_msr_control);
101
102void msr_check_and_set(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100103{
104 unsigned long oldmsr = mfmsr();
105 unsigned long newmsr;
106
107 newmsr = oldmsr | bits;
108
109#ifdef CONFIG_VSX
110 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
111 newmsr |= MSR_VSX;
112#endif
113
114 if (oldmsr != newmsr)
115 mtmsr_isync(newmsr);
116}
117
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100118void __msr_check_and_clear(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100119{
120 unsigned long oldmsr = mfmsr();
121 unsigned long newmsr;
122
123 newmsr = oldmsr & ~bits;
124
125#ifdef CONFIG_VSX
126 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
127 newmsr &= ~MSR_VSX;
128#endif
129
130 if (oldmsr != newmsr)
131 mtmsr_isync(newmsr);
132}
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100133EXPORT_SYMBOL(__msr_check_and_clear);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100134
Kevin Hao037f0ee2013-07-14 17:02:05 +0800135#ifdef CONFIG_PPC_FPU
Anton Blanchard98da5812015-10-29 11:44:01 +1100136void giveup_fpu(struct task_struct *tsk)
137{
Anton Blanchard98da5812015-10-29 11:44:01 +1100138 check_if_tm_restore_required(tsk);
139
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100140 msr_check_and_set(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100141 __giveup_fpu(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100142 msr_check_and_clear(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100143}
144EXPORT_SYMBOL(giveup_fpu);
145
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000146/*
147 * Make sure the floating-point register state in the
148 * the thread_struct is up to date for task tsk.
149 */
150void flush_fp_to_thread(struct task_struct *tsk)
151{
152 if (tsk->thread.regs) {
153 /*
154 * We need to disable preemption here because if we didn't,
155 * another process could get scheduled after the regs->msr
156 * test but before we have finished saving the FP registers
157 * to the thread_struct. That process could take over the
158 * FPU, and then when we get scheduled again we would store
159 * bogus values for the remaining FP registers.
160 */
161 preempt_disable();
162 if (tsk->thread.regs->msr & MSR_FP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000163 /*
164 * This should only ever be called for current or
165 * for a stopped child process. Since we save away
Anton Blanchardaf1bbc32015-10-29 11:43:57 +1100166 * the FP register state on context switch,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000167 * there is something wrong if a stopped child appears
168 * to still have its FP state in the CPU registers.
169 */
170 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100171 giveup_fpu(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000172 }
173 preempt_enable();
174 }
175}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000176EXPORT_SYMBOL_GPL(flush_fp_to_thread);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100177#endif /* CONFIG_PPC_FPU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000178
179void enable_kernel_fp(void)
180{
181 WARN_ON(preemptible());
182
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100183 msr_check_and_set(MSR_FP);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100184
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100185 if (current->thread.regs && (current->thread.regs->msr & MSR_FP))
186 __giveup_fpu(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000187}
188EXPORT_SYMBOL(enable_kernel_fp);
189
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000190#ifdef CONFIG_ALTIVEC
Anton Blanchard98da5812015-10-29 11:44:01 +1100191void giveup_altivec(struct task_struct *tsk)
192{
Anton Blanchard98da5812015-10-29 11:44:01 +1100193 check_if_tm_restore_required(tsk);
194
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100195 msr_check_and_set(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100196 __giveup_altivec(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100197 msr_check_and_clear(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100198}
199EXPORT_SYMBOL(giveup_altivec);
200
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000201void enable_kernel_altivec(void)
202{
203 WARN_ON(preemptible());
204
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100205 msr_check_and_set(MSR_VEC);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100206
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100207 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC))
208 __giveup_altivec(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000209}
210EXPORT_SYMBOL(enable_kernel_altivec);
211
212/*
213 * Make sure the VMX/Altivec register state in the
214 * the thread_struct is up to date for task tsk.
215 */
216void flush_altivec_to_thread(struct task_struct *tsk)
217{
218 if (tsk->thread.regs) {
219 preempt_disable();
220 if (tsk->thread.regs->msr & MSR_VEC) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000221 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100222 giveup_altivec(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000223 }
224 preempt_enable();
225 }
226}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000227EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000228#endif /* CONFIG_ALTIVEC */
229
Michael Neulingce48b212008-06-25 14:07:18 +1000230#ifdef CONFIG_VSX
Anton Blancharda7d623d2015-10-29 11:44:02 +1100231void giveup_vsx(struct task_struct *tsk)
232{
Anton Blancharda7d623d2015-10-29 11:44:02 +1100233 check_if_tm_restore_required(tsk);
234
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100235 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100236 if (tsk->thread.regs->msr & MSR_FP)
237 __giveup_fpu(tsk);
238 if (tsk->thread.regs->msr & MSR_VEC)
239 __giveup_altivec(tsk);
240 __giveup_vsx(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100241 msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100242}
243EXPORT_SYMBOL(giveup_vsx);
244
Michael Neulingce48b212008-06-25 14:07:18 +1000245void enable_kernel_vsx(void)
246{
247 WARN_ON(preemptible());
248
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100249 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100250
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100251 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX)) {
252 if (current->thread.regs->msr & MSR_FP)
253 __giveup_fpu(current);
254 if (current->thread.regs->msr & MSR_VEC)
255 __giveup_altivec(current);
256 __giveup_vsx(current);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100257 }
Michael Neulingce48b212008-06-25 14:07:18 +1000258}
259EXPORT_SYMBOL(enable_kernel_vsx);
Michael Neulingce48b212008-06-25 14:07:18 +1000260
261void flush_vsx_to_thread(struct task_struct *tsk)
262{
263 if (tsk->thread.regs) {
264 preempt_disable();
265 if (tsk->thread.regs->msr & MSR_VSX) {
Michael Neulingce48b212008-06-25 14:07:18 +1000266 BUG_ON(tsk != current);
Michael Neulingce48b212008-06-25 14:07:18 +1000267 giveup_vsx(tsk);
268 }
269 preempt_enable();
270 }
271}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000272EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000273#endif /* CONFIG_VSX */
274
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000275#ifdef CONFIG_SPE
Anton Blanchard98da5812015-10-29 11:44:01 +1100276void giveup_spe(struct task_struct *tsk)
277{
Anton Blanchard98da5812015-10-29 11:44:01 +1100278 check_if_tm_restore_required(tsk);
279
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100280 msr_check_and_set(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100281 __giveup_spe(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100282 msr_check_and_clear(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100283}
284EXPORT_SYMBOL(giveup_spe);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000285
286void enable_kernel_spe(void)
287{
288 WARN_ON(preemptible());
289
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100290 msr_check_and_set(MSR_SPE);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100291
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100292 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE))
293 __giveup_spe(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000294}
295EXPORT_SYMBOL(enable_kernel_spe);
296
297void flush_spe_to_thread(struct task_struct *tsk)
298{
299 if (tsk->thread.regs) {
300 preempt_disable();
301 if (tsk->thread.regs->msr & MSR_SPE) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000302 BUG_ON(tsk != current);
yu liu685659e2011-06-14 18:34:25 -0500303 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500304 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000305 }
306 preempt_enable();
307 }
308}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000309#endif /* CONFIG_SPE */
310
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000311#ifdef CONFIG_PPC_ADV_DEBUG_REGS
312void do_send_trap(struct pt_regs *regs, unsigned long address,
313 unsigned long error_code, int signal_code, int breakpt)
314{
315 siginfo_t info;
316
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000317 current->thread.trap_nr = signal_code;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000318 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
319 11, SIGSEGV) == NOTIFY_STOP)
320 return;
321
322 /* Deliver the signal to userspace */
323 info.si_signo = SIGTRAP;
324 info.si_errno = breakpt; /* breakpoint or watchpoint id */
325 info.si_code = signal_code;
326 info.si_addr = (void __user *)address;
327 force_sig_info(SIGTRAP, &info, current);
328}
329#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000330void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000331 unsigned long error_code)
332{
333 siginfo_t info;
334
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000335 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000336 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
337 11, SIGSEGV) == NOTIFY_STOP)
338 return;
339
Michael Neuling9422de32012-12-20 14:06:44 +0000340 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000341 return;
342
Michael Neuling9422de32012-12-20 14:06:44 +0000343 /* Clear the breakpoint */
344 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000345
346 /* Deliver the signal to userspace */
347 info.si_signo = SIGTRAP;
348 info.si_errno = 0;
349 info.si_code = TRAP_HWBKPT;
350 info.si_addr = (void __user *)address;
351 force_sig_info(SIGTRAP, &info, current);
352}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000353#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000354
Michael Neuling9422de32012-12-20 14:06:44 +0000355static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100356
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000357#ifdef CONFIG_PPC_ADV_DEBUG_REGS
358/*
359 * Set the debug registers back to their default "safe" values.
360 */
361static void set_debug_reg_defaults(struct thread_struct *thread)
362{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530363 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000364#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530365 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000366#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530367 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000368#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530369 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000370#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530371 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000372#ifdef CONFIG_BOOKE
373 /*
374 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
375 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530376 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000377 DBCR1_IAC3US | DBCR1_IAC4US;
378 /*
379 * Force Data Address Compare User/Supervisor bits to be User-only
380 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
381 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530382 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000383#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530384 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000385#endif
386}
387
Scott Woodf5f97212013-11-22 15:52:29 -0600388static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000389{
Scott Wood6cecf762013-05-13 14:14:53 +0000390 /*
391 * We could have inherited MSR_DE from userspace, since
392 * it doesn't get cleared on exception entry. Make sure
393 * MSR_DE is clear before we enable any debug events.
394 */
395 mtmsr(mfmsr() & ~MSR_DE);
396
Scott Woodf5f97212013-11-22 15:52:29 -0600397 mtspr(SPRN_IAC1, debug->iac1);
398 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000399#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600400 mtspr(SPRN_IAC3, debug->iac3);
401 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000402#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600403 mtspr(SPRN_DAC1, debug->dac1);
404 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000405#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600406 mtspr(SPRN_DVC1, debug->dvc1);
407 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000408#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600409 mtspr(SPRN_DBCR0, debug->dbcr0);
410 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000411#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600412 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000413#endif
414}
415/*
416 * Unless neither the old or new thread are making use of the
417 * debug registers, set the debug registers from the values
418 * stored in the new thread.
419 */
Scott Woodf5f97212013-11-22 15:52:29 -0600420void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000421{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530422 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600423 || (new_debug->dbcr0 & DBCR0_IDM))
424 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000425}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530426EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000427#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000428#ifndef CONFIG_HAVE_HW_BREAKPOINT
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000429static void set_debug_reg_defaults(struct thread_struct *thread)
430{
Michael Neuling9422de32012-12-20 14:06:44 +0000431 thread->hw_brk.address = 0;
432 thread->hw_brk.type = 0;
Michael Neulingb9818c32013-01-10 14:25:34 +0000433 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000434}
K.Prasade0780b72011-02-10 04:44:35 +0000435#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000436#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
437
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000438#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000439static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
440{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000441 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000442#ifdef CONFIG_PPC_47x
443 isync();
444#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000445 return 0;
446}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000447#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000448static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
449{
Michael Ellermancab0af92005-11-03 15:30:49 +1100450 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000451 if (cpu_has_feature(CPU_FTR_DABRX))
452 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100453 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000454}
Michael Neuling9422de32012-12-20 14:06:44 +0000455#else
456static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
457{
458 return -EINVAL;
459}
460#endif
461
462static inline int set_dabr(struct arch_hw_breakpoint *brk)
463{
464 unsigned long dabr, dabrx;
465
466 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
467 dabrx = ((brk->type >> 3) & 0x7);
468
469 if (ppc_md.set_dabr)
470 return ppc_md.set_dabr(dabr, dabrx);
471
472 return __set_dabr(dabr, dabrx);
473}
474
Michael Neulingbf99de32012-12-20 14:06:45 +0000475static inline int set_dawr(struct arch_hw_breakpoint *brk)
476{
Michael Neuling05d694e2013-01-24 15:02:58 +0000477 unsigned long dawr, dawrx, mrd;
Michael Neulingbf99de32012-12-20 14:06:45 +0000478
479 dawr = brk->address;
480
481 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
482 << (63 - 58); //* read/write bits */
483 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
484 << (63 - 59); //* translate */
485 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
486 >> 3; //* PRIM bits */
Michael Neuling05d694e2013-01-24 15:02:58 +0000487 /* dawr length is stored in field MDR bits 48:53. Matches range in
488 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
489 0b111111=64DW.
490 brk->len is in bytes.
491 This aligns up to double word size, shifts and does the bias.
492 */
493 mrd = ((brk->len + 7) >> 3) - 1;
494 dawrx |= (mrd & 0x3f) << (63 - 53);
Michael Neulingbf99de32012-12-20 14:06:45 +0000495
496 if (ppc_md.set_dawr)
497 return ppc_md.set_dawr(dawr, dawrx);
498 mtspr(SPRN_DAWR, dawr);
499 mtspr(SPRN_DAWRX, dawrx);
500 return 0;
501}
502
Paul Gortmaker21f58502014-04-29 15:25:17 -0400503void __set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000504{
Christoph Lameter69111ba2014-10-21 15:23:25 -0500505 memcpy(this_cpu_ptr(&current_brk), brk, sizeof(*brk));
Michael Neuling9422de32012-12-20 14:06:44 +0000506
Michael Neulingbf99de32012-12-20 14:06:45 +0000507 if (cpu_has_feature(CPU_FTR_DAWR))
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400508 set_dawr(brk);
509 else
510 set_dabr(brk);
Michael Neuling9422de32012-12-20 14:06:44 +0000511}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000512
Paul Gortmaker21f58502014-04-29 15:25:17 -0400513void set_breakpoint(struct arch_hw_breakpoint *brk)
514{
515 preempt_disable();
516 __set_breakpoint(brk);
517 preempt_enable();
518}
519
Paul Mackerras06d67d52005-10-10 22:29:05 +1000520#ifdef CONFIG_PPC64
521DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000522#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000523
Michael Neuling9422de32012-12-20 14:06:44 +0000524static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
525 struct arch_hw_breakpoint *b)
526{
527 if (a->address != b->address)
528 return false;
529 if (a->type != b->type)
530 return false;
531 if (a->len != b->len)
532 return false;
533 return true;
534}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100535
Michael Neulingfb096922013-02-13 16:21:37 +0000536#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100537static void tm_reclaim_thread(struct thread_struct *thr,
538 struct thread_info *ti, uint8_t cause)
539{
540 unsigned long msr_diff = 0;
541
542 /*
543 * If FP/VSX registers have been already saved to the
544 * thread_struct, move them to the transact_fp array.
545 * We clear the TIF_RESTORE_TM bit since after the reclaim
546 * the thread will no longer be transactional.
547 */
548 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +0530549 msr_diff = thr->ckpt_regs.msr & ~thr->regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100550 if (msr_diff & MSR_FP)
551 memcpy(&thr->transact_fp, &thr->fp_state,
552 sizeof(struct thread_fp_state));
553 if (msr_diff & MSR_VEC)
554 memcpy(&thr->transact_vr, &thr->vr_state,
555 sizeof(struct thread_vr_state));
556 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
557 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
558 }
559
560 tm_reclaim(thr, thr->regs->msr, cause);
561
562 /* Having done the reclaim, we now have the checkpointed
563 * FP/VSX values in the registers. These might be valid
564 * even if we have previously called enable_kernel_fp() or
565 * flush_fp_to_thread(), so update thr->regs->msr to
566 * indicate their current validity.
567 */
568 thr->regs->msr |= msr_diff;
569}
570
571void tm_reclaim_current(uint8_t cause)
572{
573 tm_enable();
574 tm_reclaim_thread(&current->thread, current_thread_info(), cause);
575}
576
Michael Neulingfb096922013-02-13 16:21:37 +0000577static inline void tm_reclaim_task(struct task_struct *tsk)
578{
579 /* We have to work out if we're switching from/to a task that's in the
580 * middle of a transaction.
581 *
582 * In switching we need to maintain a 2nd register state as
583 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
584 * checkpointed (tbegin) state in ckpt_regs and saves the transactional
585 * (current) FPRs into oldtask->thread.transact_fpr[].
586 *
587 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
588 */
589 struct thread_struct *thr = &tsk->thread;
590
591 if (!thr->regs)
592 return;
593
594 if (!MSR_TM_ACTIVE(thr->regs->msr))
595 goto out_and_saveregs;
596
597 /* Stash the original thread MSR, as giveup_fpu et al will
598 * modify it. We hold onto it to see whether the task used
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100599 * FP & vector regs. If the TIF_RESTORE_TM flag is set,
Anshuman Khandual829023d2015-07-06 16:24:10 +0530600 * ckpt_regs.msr is already set.
Michael Neulingfb096922013-02-13 16:21:37 +0000601 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100602 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
Anshuman Khandual829023d2015-07-06 16:24:10 +0530603 thr->ckpt_regs.msr = thr->regs->msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000604
605 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
606 "ccr=%lx, msr=%lx, trap=%lx)\n",
607 tsk->pid, thr->regs->nip,
608 thr->regs->ccr, thr->regs->msr,
609 thr->regs->trap);
610
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100611 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000612
613 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
614 tsk->pid);
615
616out_and_saveregs:
617 /* Always save the regs here, even if a transaction's not active.
618 * This context-switches a thread's TM info SPRs. We do it here to
619 * be consistent with the restore path (in recheckpoint) which
620 * cannot happen later in _switch().
621 */
622 tm_save_sprs(thr);
623}
624
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100625extern void __tm_recheckpoint(struct thread_struct *thread,
626 unsigned long orig_msr);
627
628void tm_recheckpoint(struct thread_struct *thread,
629 unsigned long orig_msr)
630{
631 unsigned long flags;
632
633 /* We really can't be interrupted here as the TEXASR registers can't
634 * change and later in the trecheckpoint code, we have a userspace R1.
635 * So let's hard disable over this region.
636 */
637 local_irq_save(flags);
638 hard_irq_disable();
639
640 /* The TM SPRs are restored here, so that TEXASR.FS can be set
641 * before the trecheckpoint and no explosion occurs.
642 */
643 tm_restore_sprs(thread);
644
645 __tm_recheckpoint(thread, orig_msr);
646
647 local_irq_restore(flags);
648}
649
Michael Neulingbc2a9402013-02-13 16:21:40 +0000650static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000651{
652 unsigned long msr;
653
654 if (!cpu_has_feature(CPU_FTR_TM))
655 return;
656
657 /* Recheckpoint the registers of the thread we're about to switch to.
658 *
659 * If the task was using FP, we non-lazily reload both the original and
660 * the speculative FP register states. This is because the kernel
661 * doesn't see if/when a TM rollback occurs, so if we take an FP
662 * unavoidable later, we are unable to determine which set of FP regs
663 * need to be restored.
664 */
665 if (!new->thread.regs)
666 return;
667
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100668 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
669 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000670 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100671 }
Anshuman Khandual829023d2015-07-06 16:24:10 +0530672 msr = new->thread.ckpt_regs.msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000673 /* Recheckpoint to restore original checkpointed register state. */
674 TM_DEBUG("*** tm_recheckpoint of pid %d "
675 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
676 new->pid, new->thread.regs->msr, msr);
677
678 /* This loads the checkpointed FP/VEC state, if used */
679 tm_recheckpoint(&new->thread, msr);
680
681 /* This loads the speculative FP/VEC state, if used */
682 if (msr & MSR_FP) {
683 do_load_up_transact_fpu(&new->thread);
684 new->thread.regs->msr |=
685 (MSR_FP | new->thread.fpexc_mode);
686 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000687#ifdef CONFIG_ALTIVEC
Michael Neulingfb096922013-02-13 16:21:37 +0000688 if (msr & MSR_VEC) {
689 do_load_up_transact_altivec(&new->thread);
690 new->thread.regs->msr |= MSR_VEC;
691 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000692#endif
Michael Neulingfb096922013-02-13 16:21:37 +0000693 /* We may as well turn on VSX too since all the state is restored now */
694 if (msr & MSR_VSX)
695 new->thread.regs->msr |= MSR_VSX;
696
697 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
698 "(kernel msr 0x%lx)\n",
699 new->pid, mfmsr());
700}
701
702static inline void __switch_to_tm(struct task_struct *prev)
703{
704 if (cpu_has_feature(CPU_FTR_TM)) {
705 tm_enable();
706 tm_reclaim_task(prev);
707 }
708}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100709
710/*
711 * This is called if we are on the way out to userspace and the
712 * TIF_RESTORE_TM flag is set. It checks if we need to reload
713 * FP and/or vector state and does so if necessary.
714 * If userspace is inside a transaction (whether active or
715 * suspended) and FP/VMX/VSX instructions have ever been enabled
716 * inside that transaction, then we have to keep them enabled
717 * and keep the FP/VMX/VSX state loaded while ever the transaction
718 * continues. The reason is that if we didn't, and subsequently
719 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
720 * we don't know whether it's the same transaction, and thus we
721 * don't know which of the checkpointed state and the transactional
722 * state to use.
723 */
724void restore_tm_state(struct pt_regs *regs)
725{
726 unsigned long msr_diff;
727
728 clear_thread_flag(TIF_RESTORE_TM);
729 if (!MSR_TM_ACTIVE(regs->msr))
730 return;
731
Anshuman Khandual829023d2015-07-06 16:24:10 +0530732 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100733 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
734 if (msr_diff & MSR_FP) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100735 msr_check_and_set(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100736 load_fp_state(&current->thread.fp_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100737 msr_check_and_clear(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100738 regs->msr |= current->thread.fpexc_mode;
739 }
740 if (msr_diff & MSR_VEC) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100741 msr_check_and_set(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100742 load_vr_state(&current->thread.vr_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100743 msr_check_and_clear(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100744 }
745 regs->msr |= msr_diff;
746}
747
Michael Neulingfb096922013-02-13 16:21:37 +0000748#else
749#define tm_recheckpoint_new_task(new)
750#define __switch_to_tm(prev)
751#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +0000752
Anton Blanchard152d5232015-10-29 11:43:55 +1100753static inline void save_sprs(struct thread_struct *t)
754{
755#ifdef CONFIG_ALTIVEC
756 if (cpu_has_feature(cpu_has_feature(CPU_FTR_ALTIVEC)))
757 t->vrsave = mfspr(SPRN_VRSAVE);
758#endif
759#ifdef CONFIG_PPC_BOOK3S_64
760 if (cpu_has_feature(CPU_FTR_DSCR))
761 t->dscr = mfspr(SPRN_DSCR);
762
763 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
764 t->bescr = mfspr(SPRN_BESCR);
765 t->ebbhr = mfspr(SPRN_EBBHR);
766 t->ebbrr = mfspr(SPRN_EBBRR);
767
768 t->fscr = mfspr(SPRN_FSCR);
769
770 /*
771 * Note that the TAR is not available for use in the kernel.
772 * (To provide this, the TAR should be backed up/restored on
773 * exception entry/exit instead, and be in pt_regs. FIXME,
774 * this should be in pt_regs anyway (for debug).)
775 */
776 t->tar = mfspr(SPRN_TAR);
777 }
778#endif
779}
780
781static inline void restore_sprs(struct thread_struct *old_thread,
782 struct thread_struct *new_thread)
783{
784#ifdef CONFIG_ALTIVEC
785 if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
786 old_thread->vrsave != new_thread->vrsave)
787 mtspr(SPRN_VRSAVE, new_thread->vrsave);
788#endif
789#ifdef CONFIG_PPC_BOOK3S_64
790 if (cpu_has_feature(CPU_FTR_DSCR)) {
791 u64 dscr = get_paca()->dscr_default;
792 u64 fscr = old_thread->fscr & ~FSCR_DSCR;
793
794 if (new_thread->dscr_inherit) {
795 dscr = new_thread->dscr;
796 fscr |= FSCR_DSCR;
797 }
798
799 if (old_thread->dscr != dscr)
800 mtspr(SPRN_DSCR, dscr);
801
802 if (old_thread->fscr != fscr)
803 mtspr(SPRN_FSCR, fscr);
804 }
805
806 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
807 if (old_thread->bescr != new_thread->bescr)
808 mtspr(SPRN_BESCR, new_thread->bescr);
809 if (old_thread->ebbhr != new_thread->ebbhr)
810 mtspr(SPRN_EBBHR, new_thread->ebbhr);
811 if (old_thread->ebbrr != new_thread->ebbrr)
812 mtspr(SPRN_EBBRR, new_thread->ebbrr);
813
814 if (old_thread->tar != new_thread->tar)
815 mtspr(SPRN_TAR, new_thread->tar);
816 }
817#endif
818}
819
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000820struct task_struct *__switch_to(struct task_struct *prev,
821 struct task_struct *new)
822{
823 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000824 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700825#ifdef CONFIG_PPC_BOOK3S_64
826 struct ppc64_tlb_batch *batch;
827#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000828
Anton Blanchard152d5232015-10-29 11:43:55 +1100829 new_thread = &new->thread;
830 old_thread = &current->thread;
831
Michael Neuling7ba5fef2013-10-02 17:15:14 +1000832 WARN_ON(!irqs_disabled());
833
Anton Blanchard152d5232015-10-29 11:43:55 +1100834 /*
835 * We need to save SPRs before treclaim/trecheckpoint as these will
836 * change a number of them.
Michael Neulingc2d52642013-08-09 17:29:30 +1000837 */
Anton Blanchard152d5232015-10-29 11:43:55 +1100838 save_sprs(&prev->thread);
Michael Neulingc2d52642013-08-09 17:29:30 +1000839
Michael Neulingbc2a9402013-02-13 16:21:40 +0000840 __switch_to_tm(prev);
841
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000842 if (prev->thread.regs && (prev->thread.regs->msr & MSR_FP))
843 giveup_fpu(prev);
844#ifdef CONFIG_ALTIVEC
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000845 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VEC))
846 giveup_altivec(prev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000847#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000848#ifdef CONFIG_VSX
849 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VSX))
Michael Neuling7c292172008-07-11 16:29:12 +1000850 /* VMX and FPU registers are already save here */
851 __giveup_vsx(prev);
Michael Neulingce48b212008-06-25 14:07:18 +1000852#endif /* CONFIG_VSX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000853#ifdef CONFIG_SPE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000854 if ((prev->thread.regs && (prev->thread.regs->msr & MSR_SPE)))
855 giveup_spe(prev);
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000856#endif /* CONFIG_SPE */
857
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000858#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Scott Woodf5f97212013-11-22 15:52:29 -0600859 switch_booke_debug_regs(&new->thread.debug);
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000860#else
K.Prasad5aae8a52010-06-15 11:35:19 +0530861/*
862 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
863 * schedule DABR
864 */
865#ifndef CONFIG_HAVE_HW_BREAKPOINT
Christoph Lameter69111ba2014-10-21 15:23:25 -0500866 if (unlikely(!hw_brk_match(this_cpu_ptr(&current_brk), &new->thread.hw_brk)))
Paul Gortmaker21f58502014-04-29 15:25:17 -0400867 __set_breakpoint(&new->thread.hw_brk);
K.Prasad5aae8a52010-06-15 11:35:19 +0530868#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000869#endif
870
Paul Mackerras06d67d52005-10-10 22:29:05 +1000871#ifdef CONFIG_PPC64
872 /*
873 * Collect processor utilization data per process
874 */
875 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Christoph Lameter69111ba2014-10-21 15:23:25 -0500876 struct cpu_usage *cu = this_cpu_ptr(&cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000877 long unsigned start_tb, current_tb;
878 start_tb = old_thread->start_tb;
879 cu->current_tb = current_tb = mfspr(SPRN_PURR);
880 old_thread->accum_tb += (current_tb - start_tb);
881 new_thread->start_tb = current_tb;
882 }
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700883#endif /* CONFIG_PPC64 */
884
885#ifdef CONFIG_PPC_BOOK3S_64
Christoph Lameter69111ba2014-10-21 15:23:25 -0500886 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700887 if (batch->active) {
888 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
889 if (batch->index)
890 __flush_tlb_pending(batch);
891 batch->active = 0;
892 }
893#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000894
Anton Blanchard44387e92008-03-17 15:27:09 +1100895 /*
896 * We can't take a PMU exception inside _switch() since there is a
897 * window where the kernel stack SLB and the kernel stack are out
898 * of sync. Hard disable here.
899 */
900 hard_irq_disable();
Michael Neulingbc2a9402013-02-13 16:21:40 +0000901
902 tm_recheckpoint_new_task(new);
903
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000904 last = _switch(old_thread, new_thread);
905
Anton Blanchard152d5232015-10-29 11:43:55 +1100906 /* Need to recalculate these after calling _switch() */
907 old_thread = &last->thread;
908 new_thread = &current->thread;
909
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700910#ifdef CONFIG_PPC_BOOK3S_64
911 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
912 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500913 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700914 batch->active = 1;
915 }
916#endif /* CONFIG_PPC_BOOK3S_64 */
917
Anton Blanchard152d5232015-10-29 11:43:55 +1100918 restore_sprs(old_thread, new_thread);
919
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000920 return last;
921}
922
Paul Mackerras06d67d52005-10-10 22:29:05 +1000923static int instructions_to_print = 16;
924
Paul Mackerras06d67d52005-10-10 22:29:05 +1000925static void show_instructions(struct pt_regs *regs)
926{
927 int i;
928 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
929 sizeof(int));
930
931 printk("Instruction dump:");
932
933 for (i = 0; i < instructions_to_print; i++) {
934 int instr;
935
936 if (!(i % 8))
937 printk("\n");
938
Scott Wood0de2d822007-09-28 04:38:55 +1000939#if !defined(CONFIG_BOOKE)
940 /* If executing with the IMMU off, adjust pc rather
941 * than print XXXXXXXX.
942 */
943 if (!(regs->msr & MSR_IR))
944 pc = (unsigned long)phys_to_virt(pc);
945#endif
946
Anton Blanchard00ae36d2006-10-13 12:17:16 +1000947 if (!__kernel_text_address(pc) ||
Anton Blanchard7b051f62014-10-13 20:27:15 +1100948 probe_kernel_address((unsigned int __user *)pc, instr)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +0000949 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +1000950 } else {
951 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +0000952 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000953 else
Ira Snyder40c8cef2012-01-06 12:34:07 +0000954 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000955 }
956
957 pc += sizeof(int);
958 }
959
960 printk("\n");
961}
962
963static struct regbit {
964 unsigned long bit;
965 const char *name;
966} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000967#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
968 {MSR_SF, "SF"},
969 {MSR_HV, "HV"},
970#endif
971 {MSR_VEC, "VEC"},
972 {MSR_VSX, "VSX"},
973#ifdef CONFIG_BOOKE
974 {MSR_CE, "CE"},
975#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000976 {MSR_EE, "EE"},
977 {MSR_PR, "PR"},
978 {MSR_FP, "FP"},
979 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000980#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +0000981 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000982#else
983 {MSR_SE, "SE"},
984 {MSR_BE, "BE"},
985#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000986 {MSR_IR, "IR"},
987 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000988 {MSR_PMM, "PMM"},
989#ifndef CONFIG_BOOKE
990 {MSR_RI, "RI"},
991 {MSR_LE, "LE"},
992#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000993 {0, NULL}
994};
995
996static void printbits(unsigned long val, struct regbit *bits)
997{
998 const char *sep = "";
999
1000 printk("<");
1001 for (; bits->bit; ++bits)
1002 if (val & bits->bit) {
1003 printk("%s%s", sep, bits->name);
1004 sep = ",";
1005 }
1006 printk(">");
1007}
1008
1009#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001010#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001011#define REGS_PER_LINE 4
1012#define LAST_VOLATILE 13
1013#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001014#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001015#define REGS_PER_LINE 8
1016#define LAST_VOLATILE 12
1017#endif
1018
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001019void show_regs(struct pt_regs * regs)
1020{
1021 int i, trap;
1022
Tejun Heoa43cb952013-04-30 15:27:17 -07001023 show_regs_print_info(KERN_DEFAULT);
1024
Paul Mackerras06d67d52005-10-10 22:29:05 +10001025 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
1026 regs->nip, regs->link, regs->ctr);
1027 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001028 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001029 printk("MSR: "REG" ", regs->msr);
1030 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001031 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001032 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +00001033 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001034 printk("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001035 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001036#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001037 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001038#else
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001039 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
1040#endif
1041#ifdef CONFIG_PPC64
1042 printk("SOFTE: %ld ", regs->softe);
1043#endif
1044#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001045 if (MSR_TM_ACTIVE(regs->msr))
1046 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001047#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001048
1049 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001050 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +00001051 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001052 printk(REG " ", regs->gpr[i]);
1053 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001054 break;
1055 }
1056 printk("\n");
1057#ifdef CONFIG_KALLSYMS
1058 /*
1059 * Lookup NIP late so we have the best change of getting the
1060 * above info out without failing
1061 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001062 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1063 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001064#endif
1065 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001066 if (!user_mode(regs))
1067 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001068}
1069
1070void exit_thread(void)
1071{
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001072}
1073
1074void flush_thread(void)
1075{
K.Prasade0780b72011-02-10 04:44:35 +00001076#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301077 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001078#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001079 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001080#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001081}
1082
1083void
1084release_thread(struct task_struct *t)
1085{
1086}
1087
1088/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001089 * this gets called so that we can store coprocessor state into memory and
1090 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001091 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001092int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001093{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001094 flush_fp_to_thread(src);
1095 flush_altivec_to_thread(src);
1096 flush_vsx_to_thread(src);
1097 flush_spe_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001098 /*
1099 * Flush TM state out so we can copy it. __switch_to_tm() does this
1100 * flush but it removes the checkpointed state from the current CPU and
1101 * transitions the CPU out of TM mode. Hence we need to call
1102 * tm_recheckpoint_new_task() (on the same task) to restore the
1103 * checkpointed state back and the TM mode.
1104 */
1105 __switch_to_tm(src);
1106 tm_recheckpoint_new_task(src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001107
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001108 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001109
1110 clear_task_ebb(dst);
1111
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001112 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001113}
1114
Michael Ellermancec15482014-07-10 12:29:21 +10001115static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1116{
1117#ifdef CONFIG_PPC_STD_MMU_64
1118 unsigned long sp_vsid;
1119 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1120
1121 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1122 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1123 << SLB_VSID_SHIFT_1T;
1124 else
1125 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1126 << SLB_VSID_SHIFT;
1127 sp_vsid |= SLB_VSID_KERNEL | llp;
1128 p->thread.ksp_vsid = sp_vsid;
1129#endif
1130}
1131
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001132/*
1133 * Copy a thread..
1134 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001135
Alex Dowad6eca8932015-03-13 20:14:46 +02001136/*
1137 * Copy architecture-specific thread state
1138 */
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -07001139int copy_thread(unsigned long clone_flags, unsigned long usp,
Alex Dowad6eca8932015-03-13 20:14:46 +02001140 unsigned long kthread_arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001141{
1142 struct pt_regs *childregs, *kregs;
1143 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001144 extern void ret_from_kernel_thread(void);
1145 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001146 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001147
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001148 /* Copy registers */
1149 sp -= sizeof(struct pt_regs);
1150 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001151 if (unlikely(p->flags & PF_KTHREAD)) {
Alex Dowad6eca8932015-03-13 20:14:46 +02001152 /* kernel thread */
Al Viro138d1ce2012-10-11 08:41:43 -04001153 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -04001154 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001155 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001156 /* function */
1157 if (usp)
1158 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001159#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001160 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -04001161 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001162#endif
Alex Dowad6eca8932015-03-13 20:14:46 +02001163 childregs->gpr[15] = kthread_arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001164 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001165 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001166 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001167 } else {
Alex Dowad6eca8932015-03-13 20:14:46 +02001168 /* user thread */
Al Viroafa86fc2012-10-22 22:51:14 -04001169 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001170 CHECK_FULL_REGS(regs);
1171 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001172 if (usp)
1173 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001174 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001175 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001176 if (clone_flags & CLONE_SETTLS) {
1177#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +00001178 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +10001179 childregs->gpr[13] = childregs->gpr[6];
1180 else
1181#endif
1182 childregs->gpr[2] = childregs->gpr[6];
1183 }
Al Viro58254e12012-09-12 18:32:42 -04001184
1185 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001186 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001187 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001188
1189 /*
1190 * The way this works is that at some point in the future
1191 * some task will call _switch to switch to the new task.
1192 * That will pop off the stack frame created below and start
1193 * the new task running at ret_from_fork. The new task will
1194 * do some house keeping and then return from the fork or clone
1195 * system call, using the stack frame created above.
1196 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001197 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001198 sp -= sizeof(struct pt_regs);
1199 kregs = (struct pt_regs *) sp;
1200 sp -= STACK_FRAME_OVERHEAD;
1201 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001202#ifdef CONFIG_PPC32
Kumar Gala85218822008-04-28 16:21:22 +10001203 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1204 _ALIGN_UP(sizeof(struct thread_info), 16);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001205#endif
Oleg Nesterov28d170ab2013-04-21 06:47:59 +00001206#ifdef CONFIG_HAVE_HW_BREAKPOINT
1207 p->thread.ptrace_bps[0] = NULL;
1208#endif
1209
Paul Mackerras18461962013-09-10 20:21:10 +10001210 p->thread.fp_save_area = NULL;
1211#ifdef CONFIG_ALTIVEC
1212 p->thread.vr_save_area = NULL;
1213#endif
1214
Michael Ellermancec15482014-07-10 12:29:21 +10001215 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001216
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001217#ifdef CONFIG_PPC64
1218 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001219 p->thread.dscr_inherit = current->thread.dscr_inherit;
1220 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001221 }
Haren Myneni92779242012-12-06 21:49:56 +00001222 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1223 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001224#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001225 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001226 return 0;
1227}
1228
1229/*
1230 * Set up a thread for executing a new program
1231 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001232void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001233{
Michael Ellerman90eac722005-10-21 16:01:33 +10001234#ifdef CONFIG_PPC64
1235 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
1236#endif
1237
Paul Mackerras06d67d52005-10-10 22:29:05 +10001238 /*
1239 * If we exec out of a kernel thread then thread.regs will not be
1240 * set. Do it now.
1241 */
1242 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001243 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1244 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001245 }
1246
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001247 memset(regs->gpr, 0, sizeof(regs->gpr));
1248 regs->ctr = 0;
1249 regs->link = 0;
1250 regs->xer = 0;
1251 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001252 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001253
Roland McGrath474f8192007-09-24 16:52:44 -07001254 /*
1255 * We have just cleared all the nonvolatile GPRs, so make
1256 * FULL_REGS(regs) return true. This is necessary to allow
1257 * ptrace to examine the thread immediately after exec.
1258 */
1259 regs->trap &= ~1UL;
1260
Paul Mackerras06d67d52005-10-10 22:29:05 +10001261#ifdef CONFIG_PPC32
1262 regs->mq = 0;
1263 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001264 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001265#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001266 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001267 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001268
Rusty Russell94af3ab2013-11-20 22:15:02 +11001269 if (is_elf2_task()) {
1270 /* Look ma, no function descriptors! */
1271 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001272
Rusty Russell94af3ab2013-11-20 22:15:02 +11001273 /*
1274 * Ulrich says:
1275 * The latest iteration of the ABI requires that when
1276 * calling a function (at its global entry point),
1277 * the caller must ensure r12 holds the entry point
1278 * address (so that the function can quickly
1279 * establish addressability).
1280 */
1281 regs->gpr[12] = start;
1282 /* Make sure that's restored on entry to userspace. */
1283 set_thread_flag(TIF_RESTOREALL);
1284 } else {
1285 unsigned long toc;
1286
1287 /* start is a relocated pointer to the function
1288 * descriptor for the elf _start routine. The first
1289 * entry in the function descriptor is the entry
1290 * address of _start and the second entry is the TOC
1291 * value we need to use.
1292 */
1293 __get_user(entry, (unsigned long __user *)start);
1294 __get_user(toc, (unsigned long __user *)start+1);
1295
1296 /* Check whether the e_entry function descriptor entries
1297 * need to be relocated before we can use them.
1298 */
1299 if (load_addr != 0) {
1300 entry += load_addr;
1301 toc += load_addr;
1302 }
1303 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001304 }
1305 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001306 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001307 } else {
1308 regs->nip = start;
1309 regs->gpr[2] = 0;
1310 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001311 }
1312#endif
Michael Neulingce48b212008-06-25 14:07:18 +10001313#ifdef CONFIG_VSX
1314 current->thread.used_vsr = 0;
1315#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001316 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001317 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001318#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001319 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1320 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001321 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001322 current->thread.vrsave = 0;
1323 current->thread.used_vr = 0;
1324#endif /* CONFIG_ALTIVEC */
1325#ifdef CONFIG_SPE
1326 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1327 current->thread.acc = 0;
1328 current->thread.spefscr = 0;
1329 current->thread.used_spe = 0;
1330#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001331#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1332 if (cpu_has_feature(CPU_FTR_TM))
1333 regs->msr |= MSR_TM;
1334 current->thread.tm_tfhar = 0;
1335 current->thread.tm_texasr = 0;
1336 current->thread.tm_tfiar = 0;
1337#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001338}
Anton Blancharde1802b02014-08-20 08:00:02 +10001339EXPORT_SYMBOL(start_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001340
1341#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1342 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1343
1344int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1345{
1346 struct pt_regs *regs = tsk->thread.regs;
1347
1348 /* This is a bit hairy. If we are an SPE enabled processor
1349 * (have embedded fp) we store the IEEE exception enable flags in
1350 * fpexc_mode. fpexc_mode is also used for setting FP exception
1351 * mode (asyn, precise, disabled) for 'Classic' FP. */
1352 if (val & PR_FP_EXC_SW_ENABLE) {
1353#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001354 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001355 /*
1356 * When the sticky exception bits are set
1357 * directly by userspace, it must call prctl
1358 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1359 * in the existing prctl settings) or
1360 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1361 * the bits being set). <fenv.h> functions
1362 * saving and restoring the whole
1363 * floating-point environment need to do so
1364 * anyway to restore the prctl settings from
1365 * the saved environment.
1366 */
1367 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001368 tsk->thread.fpexc_mode = val &
1369 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1370 return 0;
1371 } else {
1372 return -EINVAL;
1373 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001374#else
1375 return -EINVAL;
1376#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001377 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001378
1379 /* on a CONFIG_SPE this does not hurt us. The bits that
1380 * __pack_fe01 use do not overlap with bits used for
1381 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1382 * on CONFIG_SPE implementations are reserved so writing to
1383 * them does not change anything */
1384 if (val > PR_FP_EXC_PRECISE)
1385 return -EINVAL;
1386 tsk->thread.fpexc_mode = __pack_fe01(val);
1387 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1388 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1389 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001390 return 0;
1391}
1392
1393int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1394{
1395 unsigned int val;
1396
1397 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1398#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001399 if (cpu_has_feature(CPU_FTR_SPE)) {
1400 /*
1401 * When the sticky exception bits are set
1402 * directly by userspace, it must call prctl
1403 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1404 * in the existing prctl settings) or
1405 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1406 * the bits being set). <fenv.h> functions
1407 * saving and restoring the whole
1408 * floating-point environment need to do so
1409 * anyway to restore the prctl settings from
1410 * the saved environment.
1411 */
1412 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001413 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001414 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001415 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001416#else
1417 return -EINVAL;
1418#endif
1419 else
1420 val = __unpack_fe01(tsk->thread.fpexc_mode);
1421 return put_user(val, (unsigned int __user *) adr);
1422}
1423
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001424int set_endian(struct task_struct *tsk, unsigned int val)
1425{
1426 struct pt_regs *regs = tsk->thread.regs;
1427
1428 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1429 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1430 return -EINVAL;
1431
1432 if (regs == NULL)
1433 return -EINVAL;
1434
1435 if (val == PR_ENDIAN_BIG)
1436 regs->msr &= ~MSR_LE;
1437 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1438 regs->msr |= MSR_LE;
1439 else
1440 return -EINVAL;
1441
1442 return 0;
1443}
1444
1445int get_endian(struct task_struct *tsk, unsigned long adr)
1446{
1447 struct pt_regs *regs = tsk->thread.regs;
1448 unsigned int val;
1449
1450 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1451 !cpu_has_feature(CPU_FTR_REAL_LE))
1452 return -EINVAL;
1453
1454 if (regs == NULL)
1455 return -EINVAL;
1456
1457 if (regs->msr & MSR_LE) {
1458 if (cpu_has_feature(CPU_FTR_REAL_LE))
1459 val = PR_ENDIAN_LITTLE;
1460 else
1461 val = PR_ENDIAN_PPC_LITTLE;
1462 } else
1463 val = PR_ENDIAN_BIG;
1464
1465 return put_user(val, (unsigned int __user *)adr);
1466}
1467
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001468int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1469{
1470 tsk->thread.align_ctl = val;
1471 return 0;
1472}
1473
1474int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1475{
1476 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1477}
1478
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001479static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1480 unsigned long nbytes)
1481{
1482 unsigned long stack_page;
1483 unsigned long cpu = task_cpu(p);
1484
1485 /*
1486 * Avoid crashing if the stack has overflowed and corrupted
1487 * task_cpu(p), which is in the thread_info struct.
1488 */
1489 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1490 stack_page = (unsigned long) hardirq_ctx[cpu];
1491 if (sp >= stack_page + sizeof(struct thread_struct)
1492 && sp <= stack_page + THREAD_SIZE - nbytes)
1493 return 1;
1494
1495 stack_page = (unsigned long) softirq_ctx[cpu];
1496 if (sp >= stack_page + sizeof(struct thread_struct)
1497 && sp <= stack_page + THREAD_SIZE - nbytes)
1498 return 1;
1499 }
1500 return 0;
1501}
1502
Anton Blanchard2f251942006-03-27 11:46:18 +11001503int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001504 unsigned long nbytes)
1505{
Al Viro0cec6fd2006-01-12 01:06:02 -08001506 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001507
1508 if (sp >= stack_page + sizeof(struct thread_struct)
1509 && sp <= stack_page + THREAD_SIZE - nbytes)
1510 return 1;
1511
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001512 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001513}
1514
Anton Blanchard2f251942006-03-27 11:46:18 +11001515EXPORT_SYMBOL(validate_sp);
1516
Paul Mackerras06d67d52005-10-10 22:29:05 +10001517unsigned long get_wchan(struct task_struct *p)
1518{
1519 unsigned long ip, sp;
1520 int count = 0;
1521
1522 if (!p || p == current || p->state == TASK_RUNNING)
1523 return 0;
1524
1525 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001526 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001527 return 0;
1528
1529 do {
1530 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001531 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001532 return 0;
1533 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001534 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001535 if (!in_sched_functions(ip))
1536 return ip;
1537 }
1538 } while (count++ < 16);
1539 return 0;
1540}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001541
Johannes Bergc4d04be2008-11-20 03:24:07 +00001542static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001543
1544void show_stack(struct task_struct *tsk, unsigned long *stack)
1545{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001546 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001547 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001548 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001549#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1550 int curr_frame = current->curr_ret_stack;
1551 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001552 unsigned long rth = (unsigned long)return_to_handler;
Steven Rostedt6794c782009-02-09 21:10:27 -08001553#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001554
1555 sp = (unsigned long) stack;
1556 if (tsk == NULL)
1557 tsk = current;
1558 if (sp == 0) {
1559 if (tsk == current)
Anton Blanchardacf620e2014-10-13 19:41:39 +11001560 sp = current_stack_pointer();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001561 else
1562 sp = tsk->thread.ksp;
1563 }
1564
Paul Mackerras06d67d52005-10-10 22:29:05 +10001565 lr = 0;
1566 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001567 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001568 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001569 return;
1570
1571 stack = (unsigned long *) sp;
1572 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001573 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001574 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001575 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001576#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Anton Blanchard7d56c652014-09-17 17:07:03 +10001577 if ((ip == rth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001578 printk(" (%pS)",
1579 (void *)current->ret_stack[curr_frame].ret);
1580 curr_frame--;
1581 }
1582#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001583 if (firstframe)
1584 printk(" (unreliable)");
1585 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001586 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001587 firstframe = 0;
1588
1589 /*
1590 * See if this is an exception frame.
1591 * We look for the "regshere" marker in the current frame.
1592 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001593 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1594 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001595 struct pt_regs *regs = (struct pt_regs *)
1596 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001597 lr = regs->link;
Paul Mackerras9be9be22014-06-12 16:53:08 +10001598 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001599 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001600 firstframe = 1;
1601 }
1602
1603 sp = newsp;
1604 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001605}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001606
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001607#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001608/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001609void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001610{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001611 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001612 unsigned long ctrl;
1613
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001614 ctrl = mfspr(SPRN_CTRLF);
1615 ctrl |= CTRL_RUNLATCH;
1616 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001617
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001618 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001619}
1620
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001621/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001622void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001623{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001624 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001625 unsigned long ctrl;
1626
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001627 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001628
Anton Blanchard4138d652010-08-06 03:28:19 +00001629 ctrl = mfspr(SPRN_CTRLF);
1630 ctrl &= ~CTRL_RUNLATCH;
1631 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001632}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001633#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001634
Anton Blanchardd8390882009-02-22 01:50:03 +00001635unsigned long arch_align_stack(unsigned long sp)
1636{
1637 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1638 sp -= get_random_int() & ~PAGE_MASK;
1639 return sp & ~0xf;
1640}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001641
1642static inline unsigned long brk_rnd(void)
1643{
1644 unsigned long rnd = 0;
1645
1646 /* 8MB for 32bit, 1GB for 64bit */
1647 if (is_32bit_task())
1648 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1649 else
1650 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1651
1652 return rnd << PAGE_SHIFT;
1653}
1654
1655unsigned long arch_randomize_brk(struct mm_struct *mm)
1656{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001657 unsigned long base = mm->brk;
1658 unsigned long ret;
1659
Kumar Galace7a35c2009-10-16 07:05:17 +00001660#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001661 /*
1662 * If we are using 1TB segments and we are allowed to randomise
1663 * the heap, we can put it above 1TB so it is backed by a 1TB
1664 * segment. Otherwise the heap will be in the bottom 1TB
1665 * which always uses 256MB segments and this may result in a
1666 * performance penalty.
1667 */
1668 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1669 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1670#endif
1671
1672 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001673
1674 if (ret < mm->brk)
1675 return mm->brk;
1676
1677 return ret;
1678}
Anton Blanchard501cb162009-02-22 01:50:07 +00001679