xref: /linux/arch/powerpc/kernel/process.c (revision e68ef121c1f4c38edf87a3354661ceb99d522729)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
214cf11afSPaul Mackerras /*
314cf11afSPaul Mackerras  *  Derived from "arch/i386/kernel/process.c"
414cf11afSPaul Mackerras  *    Copyright (C) 1995  Linus Torvalds
514cf11afSPaul Mackerras  *
614cf11afSPaul Mackerras  *  Updated and modified by Cort Dougan (cort@cs.nmt.edu) and
714cf11afSPaul Mackerras  *  Paul Mackerras (paulus@cs.anu.edu.au)
814cf11afSPaul Mackerras  *
914cf11afSPaul Mackerras  *  PowerPC version
1014cf11afSPaul Mackerras  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
1114cf11afSPaul Mackerras  */
1214cf11afSPaul Mackerras 
1314cf11afSPaul Mackerras #include <linux/errno.h>
1414cf11afSPaul Mackerras #include <linux/sched.h>
15b17b0153SIngo Molnar #include <linux/sched/debug.h>
1629930025SIngo Molnar #include <linux/sched/task.h>
1768db0cf1SIngo Molnar #include <linux/sched/task_stack.h>
1814cf11afSPaul Mackerras #include <linux/kernel.h>
1914cf11afSPaul Mackerras #include <linux/mm.h>
2014cf11afSPaul Mackerras #include <linux/smp.h>
2114cf11afSPaul Mackerras #include <linux/stddef.h>
2214cf11afSPaul Mackerras #include <linux/unistd.h>
2314cf11afSPaul Mackerras #include <linux/ptrace.h>
2414cf11afSPaul Mackerras #include <linux/slab.h>
2514cf11afSPaul Mackerras #include <linux/user.h>
2614cf11afSPaul Mackerras #include <linux/elf.h>
2714cf11afSPaul Mackerras #include <linux/prctl.h>
2814cf11afSPaul Mackerras #include <linux/init_task.h>
294b16f8e2SPaul Gortmaker #include <linux/export.h>
3014cf11afSPaul Mackerras #include <linux/kallsyms.h>
3114cf11afSPaul Mackerras #include <linux/mqueue.h>
3214cf11afSPaul Mackerras #include <linux/hardirq.h>
3306d67d54SPaul Mackerras #include <linux/utsname.h>
346794c782SSteven Rostedt #include <linux/ftrace.h>
3579741dd3SMartin Schwidefsky #include <linux/kernel_stat.h>
36d839088cSAnton Blanchard #include <linux/personality.h>
37d839088cSAnton Blanchard #include <linux/random.h>
385aae8a53SK.Prasad #include <linux/hw_breakpoint.h>
397b051f66SAnton Blanchard #include <linux/uaccess.h>
407f92bc56SDaniel Axtens #include <linux/elf-randomize.h>
4106bb53b3SRam Pai #include <linux/pkeys.h>
42fb2d9505SChristophe Leroy #include <linux/seq_buf.h>
4314cf11afSPaul Mackerras 
4414cf11afSPaul Mackerras #include <asm/pgtable.h>
4514cf11afSPaul Mackerras #include <asm/io.h>
4614cf11afSPaul Mackerras #include <asm/processor.h>
4714cf11afSPaul Mackerras #include <asm/mmu.h>
4814cf11afSPaul Mackerras #include <asm/prom.h>
4976032de8SMichael Ellerman #include <asm/machdep.h>
50c6622f63SPaul Mackerras #include <asm/time.h>
51ae3a197eSDavid Howells #include <asm/runlatch.h>
52a7f31841SArnd Bergmann #include <asm/syscalls.h>
53ae3a197eSDavid Howells #include <asm/switch_to.h>
54fb09692eSMichael Neuling #include <asm/tm.h>
55ae3a197eSDavid Howells #include <asm/debug.h>
5606d67d54SPaul Mackerras #ifdef CONFIG_PPC64
5706d67d54SPaul Mackerras #include <asm/firmware.h>
58c2e480baSMadhavan Srinivasan #include <asm/hw_irq.h>
5906d67d54SPaul Mackerras #endif
607cedd601SAnton Blanchard #include <asm/code-patching.h>
617f92bc56SDaniel Axtens #include <asm/exec.h>
625d31a96eSMichael Ellerman #include <asm/livepatch.h>
63b92a226eSKevin Hao #include <asm/cpu_has_feature.h>
640545d543SDaniel Axtens #include <asm/asm-prototypes.h>
65c9386bfdSChristophe Leroy #include <asm/stacktrace.h>
66c1fe190cSMichael Neuling #include <asm/hw_breakpoint.h>
675d31a96eSMichael Ellerman 
68d6a61bfcSLuis Machado #include <linux/kprobes.h>
69d6a61bfcSLuis Machado #include <linux/kdebug.h>
7014cf11afSPaul Mackerras 
718b3c34cfSMichael Neuling /* Transactional Memory debug */
728b3c34cfSMichael Neuling #ifdef TM_DEBUG_SW
738b3c34cfSMichael Neuling #define TM_DEBUG(x...) printk(KERN_INFO x)
748b3c34cfSMichael Neuling #else
758b3c34cfSMichael Neuling #define TM_DEBUG(x...) do { } while(0)
768b3c34cfSMichael Neuling #endif
778b3c34cfSMichael Neuling 
7814cf11afSPaul Mackerras extern unsigned long _get_SP(void);
7914cf11afSPaul Mackerras 
80d31626f7SPaul Mackerras #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
8154820530SMichael Ellerman /*
8254820530SMichael Ellerman  * Are we running in "Suspend disabled" mode? If so we have to block any
8354820530SMichael Ellerman  * sigreturn that would get us into suspended state, and we also warn in some
8454820530SMichael Ellerman  * other paths that we should never reach with suspend disabled.
8554820530SMichael Ellerman  */
8654820530SMichael Ellerman bool tm_suspend_disabled __ro_after_init = false;
8754820530SMichael Ellerman 
88b86fd2bdSAnton Blanchard static void check_if_tm_restore_required(struct task_struct *tsk)
89d31626f7SPaul Mackerras {
90d31626f7SPaul Mackerras 	/*
91d31626f7SPaul Mackerras 	 * If we are saving the current thread's registers, and the
92d31626f7SPaul Mackerras 	 * thread is in a transactional state, set the TIF_RESTORE_TM
93d31626f7SPaul Mackerras 	 * bit so that we know to restore the registers before
94d31626f7SPaul Mackerras 	 * returning to userspace.
95d31626f7SPaul Mackerras 	 */
96d31626f7SPaul Mackerras 	if (tsk == current && tsk->thread.regs &&
97d31626f7SPaul Mackerras 	    MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
98d31626f7SPaul Mackerras 	    !test_thread_flag(TIF_RESTORE_TM)) {
99829023dfSAnshuman Khandual 		tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
100d31626f7SPaul Mackerras 		set_thread_flag(TIF_RESTORE_TM);
101d31626f7SPaul Mackerras 	}
102d31626f7SPaul Mackerras }
103dc16b553SCyril Bur 
104d31626f7SPaul Mackerras #else
105b86fd2bdSAnton Blanchard static inline void check_if_tm_restore_required(struct task_struct *tsk) { }
106d31626f7SPaul Mackerras #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
107d31626f7SPaul Mackerras 
1083eb5d588SAnton Blanchard bool strict_msr_control;
1093eb5d588SAnton Blanchard EXPORT_SYMBOL(strict_msr_control);
1103eb5d588SAnton Blanchard 
1113eb5d588SAnton Blanchard static int __init enable_strict_msr_control(char *str)
1123eb5d588SAnton Blanchard {
1133eb5d588SAnton Blanchard 	strict_msr_control = true;
1143eb5d588SAnton Blanchard 	pr_info("Enabling strict facility control\n");
1153eb5d588SAnton Blanchard 
1163eb5d588SAnton Blanchard 	return 0;
1173eb5d588SAnton Blanchard }
1183eb5d588SAnton Blanchard early_param("ppc_strict_facility_enable", enable_strict_msr_control);
1193eb5d588SAnton Blanchard 
120e2b36d59SNicholas Piggin /* notrace because it's called by restore_math */
121e2b36d59SNicholas Piggin unsigned long notrace msr_check_and_set(unsigned long bits)
122a0e72cf1SAnton Blanchard {
123a0e72cf1SAnton Blanchard 	unsigned long oldmsr = mfmsr();
124a0e72cf1SAnton Blanchard 	unsigned long newmsr;
125a0e72cf1SAnton Blanchard 
126a0e72cf1SAnton Blanchard 	newmsr = oldmsr | bits;
127a0e72cf1SAnton Blanchard 
128a0e72cf1SAnton Blanchard #ifdef CONFIG_VSX
129a0e72cf1SAnton Blanchard 	if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
130a0e72cf1SAnton Blanchard 		newmsr |= MSR_VSX;
131a0e72cf1SAnton Blanchard #endif
132a0e72cf1SAnton Blanchard 
133a0e72cf1SAnton Blanchard 	if (oldmsr != newmsr)
134a0e72cf1SAnton Blanchard 		mtmsr_isync(newmsr);
1353cee070aSCyril Bur 
1363cee070aSCyril Bur 	return newmsr;
137a0e72cf1SAnton Blanchard }
138d1c72112SSimon Guo EXPORT_SYMBOL_GPL(msr_check_and_set);
139a0e72cf1SAnton Blanchard 
140e2b36d59SNicholas Piggin /* notrace because it's called by restore_math */
141e2b36d59SNicholas Piggin void notrace __msr_check_and_clear(unsigned long bits)
142a0e72cf1SAnton Blanchard {
143a0e72cf1SAnton Blanchard 	unsigned long oldmsr = mfmsr();
144a0e72cf1SAnton Blanchard 	unsigned long newmsr;
145a0e72cf1SAnton Blanchard 
146a0e72cf1SAnton Blanchard 	newmsr = oldmsr & ~bits;
147a0e72cf1SAnton Blanchard 
148a0e72cf1SAnton Blanchard #ifdef CONFIG_VSX
149a0e72cf1SAnton Blanchard 	if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
150a0e72cf1SAnton Blanchard 		newmsr &= ~MSR_VSX;
151a0e72cf1SAnton Blanchard #endif
152a0e72cf1SAnton Blanchard 
153a0e72cf1SAnton Blanchard 	if (oldmsr != newmsr)
154a0e72cf1SAnton Blanchard 		mtmsr_isync(newmsr);
155a0e72cf1SAnton Blanchard }
1563eb5d588SAnton Blanchard EXPORT_SYMBOL(__msr_check_and_clear);
157a0e72cf1SAnton Blanchard 
158037f0eedSKevin Hao #ifdef CONFIG_PPC_FPU
1591cdf039bSMathieu Malaterre static void __giveup_fpu(struct task_struct *tsk)
1608792468dSCyril Bur {
1618eb98037SAnton Blanchard 	unsigned long msr;
1628eb98037SAnton Blanchard 
1638792468dSCyril Bur 	save_fpu(tsk);
1648eb98037SAnton Blanchard 	msr = tsk->thread.regs->msr;
165fe1ef6bcSMark Cave-Ayland 	msr &= ~(MSR_FP|MSR_FE0|MSR_FE1);
1668792468dSCyril Bur #ifdef CONFIG_VSX
1678792468dSCyril Bur 	if (cpu_has_feature(CPU_FTR_VSX))
1688eb98037SAnton Blanchard 		msr &= ~MSR_VSX;
1698792468dSCyril Bur #endif
1708eb98037SAnton Blanchard 	tsk->thread.regs->msr = msr;
1718792468dSCyril Bur }
1728792468dSCyril Bur 
17398da581eSAnton Blanchard void giveup_fpu(struct task_struct *tsk)
17498da581eSAnton Blanchard {
17598da581eSAnton Blanchard 	check_if_tm_restore_required(tsk);
17698da581eSAnton Blanchard 
177a0e72cf1SAnton Blanchard 	msr_check_and_set(MSR_FP);
17898da581eSAnton Blanchard 	__giveup_fpu(tsk);
179a0e72cf1SAnton Blanchard 	msr_check_and_clear(MSR_FP);
18098da581eSAnton Blanchard }
18198da581eSAnton Blanchard EXPORT_SYMBOL(giveup_fpu);
18298da581eSAnton Blanchard 
18314cf11afSPaul Mackerras /*
18414cf11afSPaul Mackerras  * Make sure the floating-point register state in the
18514cf11afSPaul Mackerras  * the thread_struct is up to date for task tsk.
18614cf11afSPaul Mackerras  */
18714cf11afSPaul Mackerras void flush_fp_to_thread(struct task_struct *tsk)
18814cf11afSPaul Mackerras {
18914cf11afSPaul Mackerras 	if (tsk->thread.regs) {
19014cf11afSPaul Mackerras 		/*
19114cf11afSPaul Mackerras 		 * We need to disable preemption here because if we didn't,
19214cf11afSPaul Mackerras 		 * another process could get scheduled after the regs->msr
19314cf11afSPaul Mackerras 		 * test but before we have finished saving the FP registers
19414cf11afSPaul Mackerras 		 * to the thread_struct.  That process could take over the
19514cf11afSPaul Mackerras 		 * FPU, and then when we get scheduled again we would store
19614cf11afSPaul Mackerras 		 * bogus values for the remaining FP registers.
19714cf11afSPaul Mackerras 		 */
19814cf11afSPaul Mackerras 		preempt_disable();
19914cf11afSPaul Mackerras 		if (tsk->thread.regs->msr & MSR_FP) {
20014cf11afSPaul Mackerras 			/*
20114cf11afSPaul Mackerras 			 * This should only ever be called for current or
20214cf11afSPaul Mackerras 			 * for a stopped child process.  Since we save away
203af1bbc3dSAnton Blanchard 			 * the FP register state on context switch,
20414cf11afSPaul Mackerras 			 * there is something wrong if a stopped child appears
20514cf11afSPaul Mackerras 			 * to still have its FP state in the CPU registers.
20614cf11afSPaul Mackerras 			 */
20714cf11afSPaul Mackerras 			BUG_ON(tsk != current);
208b86fd2bdSAnton Blanchard 			giveup_fpu(tsk);
20914cf11afSPaul Mackerras 		}
21014cf11afSPaul Mackerras 		preempt_enable();
21114cf11afSPaul Mackerras 	}
21214cf11afSPaul Mackerras }
213de56a948SPaul Mackerras EXPORT_SYMBOL_GPL(flush_fp_to_thread);
21414cf11afSPaul Mackerras 
21514cf11afSPaul Mackerras void enable_kernel_fp(void)
21614cf11afSPaul Mackerras {
217e909fb83SCyril Bur 	unsigned long cpumsr;
218e909fb83SCyril Bur 
21914cf11afSPaul Mackerras 	WARN_ON(preemptible());
22014cf11afSPaul Mackerras 
221e909fb83SCyril Bur 	cpumsr = msr_check_and_set(MSR_FP);
222611b0e5cSAnton Blanchard 
223d64d02ceSAnton Blanchard 	if (current->thread.regs && (current->thread.regs->msr & MSR_FP)) {
224d64d02ceSAnton Blanchard 		check_if_tm_restore_required(current);
225e909fb83SCyril Bur 		/*
226e909fb83SCyril Bur 		 * If a thread has already been reclaimed then the
227e909fb83SCyril Bur 		 * checkpointed registers are on the CPU but have definitely
228e909fb83SCyril Bur 		 * been saved by the reclaim code. Don't need to and *cannot*
229e909fb83SCyril Bur 		 * giveup as this would save  to the 'live' structure not the
230e909fb83SCyril Bur 		 * checkpointed structure.
231e909fb83SCyril Bur 		 */
2325c784c84SBreno Leitao 		if (!MSR_TM_ACTIVE(cpumsr) &&
2335c784c84SBreno Leitao 		     MSR_TM_ACTIVE(current->thread.regs->msr))
234e909fb83SCyril Bur 			return;
235a0e72cf1SAnton Blanchard 		__giveup_fpu(current);
236b86fd2bdSAnton Blanchard 	}
237d64d02ceSAnton Blanchard }
23814cf11afSPaul Mackerras EXPORT_SYMBOL(enable_kernel_fp);
239d1e1cf2eSAnton Blanchard #endif /* CONFIG_PPC_FPU */
24014cf11afSPaul Mackerras 
24114cf11afSPaul Mackerras #ifdef CONFIG_ALTIVEC
2426f515d84SCyril Bur static void __giveup_altivec(struct task_struct *tsk)
2436f515d84SCyril Bur {
2448eb98037SAnton Blanchard 	unsigned long msr;
2458eb98037SAnton Blanchard 
2466f515d84SCyril Bur 	save_altivec(tsk);
2478eb98037SAnton Blanchard 	msr = tsk->thread.regs->msr;
2488eb98037SAnton Blanchard 	msr &= ~MSR_VEC;
2496f515d84SCyril Bur #ifdef CONFIG_VSX
2506f515d84SCyril Bur 	if (cpu_has_feature(CPU_FTR_VSX))
2518eb98037SAnton Blanchard 		msr &= ~MSR_VSX;
2526f515d84SCyril Bur #endif
2538eb98037SAnton Blanchard 	tsk->thread.regs->msr = msr;
2546f515d84SCyril Bur }
2556f515d84SCyril Bur 
25698da581eSAnton Blanchard void giveup_altivec(struct task_struct *tsk)
25798da581eSAnton Blanchard {
25898da581eSAnton Blanchard 	check_if_tm_restore_required(tsk);
25998da581eSAnton Blanchard 
260a0e72cf1SAnton Blanchard 	msr_check_and_set(MSR_VEC);
26198da581eSAnton Blanchard 	__giveup_altivec(tsk);
262a0e72cf1SAnton Blanchard 	msr_check_and_clear(MSR_VEC);
26398da581eSAnton Blanchard }
26498da581eSAnton Blanchard EXPORT_SYMBOL(giveup_altivec);
26598da581eSAnton Blanchard 
26614cf11afSPaul Mackerras void enable_kernel_altivec(void)
26714cf11afSPaul Mackerras {
268e909fb83SCyril Bur 	unsigned long cpumsr;
269e909fb83SCyril Bur 
27014cf11afSPaul Mackerras 	WARN_ON(preemptible());
27114cf11afSPaul Mackerras 
272e909fb83SCyril Bur 	cpumsr = msr_check_and_set(MSR_VEC);
273611b0e5cSAnton Blanchard 
274d64d02ceSAnton Blanchard 	if (current->thread.regs && (current->thread.regs->msr & MSR_VEC)) {
275d64d02ceSAnton Blanchard 		check_if_tm_restore_required(current);
276e909fb83SCyril Bur 		/*
277e909fb83SCyril Bur 		 * If a thread has already been reclaimed then the
278e909fb83SCyril Bur 		 * checkpointed registers are on the CPU but have definitely
279e909fb83SCyril Bur 		 * been saved by the reclaim code. Don't need to and *cannot*
280e909fb83SCyril Bur 		 * giveup as this would save  to the 'live' structure not the
281e909fb83SCyril Bur 		 * checkpointed structure.
282e909fb83SCyril Bur 		 */
2835c784c84SBreno Leitao 		if (!MSR_TM_ACTIVE(cpumsr) &&
2845c784c84SBreno Leitao 		     MSR_TM_ACTIVE(current->thread.regs->msr))
285e909fb83SCyril Bur 			return;
286a0e72cf1SAnton Blanchard 		__giveup_altivec(current);
287b86fd2bdSAnton Blanchard 	}
288d64d02ceSAnton Blanchard }
28914cf11afSPaul Mackerras EXPORT_SYMBOL(enable_kernel_altivec);
29014cf11afSPaul Mackerras 
29114cf11afSPaul Mackerras /*
29214cf11afSPaul Mackerras  * Make sure the VMX/Altivec register state in the
29314cf11afSPaul Mackerras  * the thread_struct is up to date for task tsk.
29414cf11afSPaul Mackerras  */
29514cf11afSPaul Mackerras void flush_altivec_to_thread(struct task_struct *tsk)
29614cf11afSPaul Mackerras {
29714cf11afSPaul Mackerras 	if (tsk->thread.regs) {
29814cf11afSPaul Mackerras 		preempt_disable();
29914cf11afSPaul Mackerras 		if (tsk->thread.regs->msr & MSR_VEC) {
30014cf11afSPaul Mackerras 			BUG_ON(tsk != current);
301b86fd2bdSAnton Blanchard 			giveup_altivec(tsk);
30214cf11afSPaul Mackerras 		}
30314cf11afSPaul Mackerras 		preempt_enable();
30414cf11afSPaul Mackerras 	}
30514cf11afSPaul Mackerras }
306de56a948SPaul Mackerras EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
30714cf11afSPaul Mackerras #endif /* CONFIG_ALTIVEC */
30814cf11afSPaul Mackerras 
309ce48b210SMichael Neuling #ifdef CONFIG_VSX
310bf6a4d5bSCyril Bur static void __giveup_vsx(struct task_struct *tsk)
311a7d623d4SAnton Blanchard {
312dc801081SBenjamin Herrenschmidt 	unsigned long msr = tsk->thread.regs->msr;
313dc801081SBenjamin Herrenschmidt 
314dc801081SBenjamin Herrenschmidt 	/*
315dc801081SBenjamin Herrenschmidt 	 * We should never be ssetting MSR_VSX without also setting
316dc801081SBenjamin Herrenschmidt 	 * MSR_FP and MSR_VEC
317dc801081SBenjamin Herrenschmidt 	 */
318dc801081SBenjamin Herrenschmidt 	WARN_ON((msr & MSR_VSX) && !((msr & MSR_FP) && (msr & MSR_VEC)));
319dc801081SBenjamin Herrenschmidt 
320dc801081SBenjamin Herrenschmidt 	/* __giveup_fpu will clear MSR_VSX */
321dc801081SBenjamin Herrenschmidt 	if (msr & MSR_FP)
322a7d623d4SAnton Blanchard 		__giveup_fpu(tsk);
323dc801081SBenjamin Herrenschmidt 	if (msr & MSR_VEC)
324a7d623d4SAnton Blanchard 		__giveup_altivec(tsk);
325bf6a4d5bSCyril Bur }
326bf6a4d5bSCyril Bur 
327bf6a4d5bSCyril Bur static void giveup_vsx(struct task_struct *tsk)
328bf6a4d5bSCyril Bur {
329bf6a4d5bSCyril Bur 	check_if_tm_restore_required(tsk);
330bf6a4d5bSCyril Bur 
331bf6a4d5bSCyril Bur 	msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
332a7d623d4SAnton Blanchard 	__giveup_vsx(tsk);
333a0e72cf1SAnton Blanchard 	msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
334a7d623d4SAnton Blanchard }
335bf6a4d5bSCyril Bur 
336ce48b210SMichael Neuling void enable_kernel_vsx(void)
337ce48b210SMichael Neuling {
338e909fb83SCyril Bur 	unsigned long cpumsr;
339e909fb83SCyril Bur 
340ce48b210SMichael Neuling 	WARN_ON(preemptible());
341ce48b210SMichael Neuling 
342e909fb83SCyril Bur 	cpumsr = msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
343611b0e5cSAnton Blanchard 
3445a69aec9SBenjamin Herrenschmidt 	if (current->thread.regs &&
3455a69aec9SBenjamin Herrenschmidt 	    (current->thread.regs->msr & (MSR_VSX|MSR_VEC|MSR_FP))) {
346d64d02ceSAnton Blanchard 		check_if_tm_restore_required(current);
347e909fb83SCyril Bur 		/*
348e909fb83SCyril Bur 		 * If a thread has already been reclaimed then the
349e909fb83SCyril Bur 		 * checkpointed registers are on the CPU but have definitely
350e909fb83SCyril Bur 		 * been saved by the reclaim code. Don't need to and *cannot*
351e909fb83SCyril Bur 		 * giveup as this would save  to the 'live' structure not the
352e909fb83SCyril Bur 		 * checkpointed structure.
353e909fb83SCyril Bur 		 */
3545c784c84SBreno Leitao 		if (!MSR_TM_ACTIVE(cpumsr) &&
3555c784c84SBreno Leitao 		     MSR_TM_ACTIVE(current->thread.regs->msr))
356e909fb83SCyril Bur 			return;
357a0e72cf1SAnton Blanchard 		__giveup_vsx(current);
358611b0e5cSAnton Blanchard 	}
359ce48b210SMichael Neuling }
360ce48b210SMichael Neuling EXPORT_SYMBOL(enable_kernel_vsx);
361ce48b210SMichael Neuling 
362ce48b210SMichael Neuling void flush_vsx_to_thread(struct task_struct *tsk)
363ce48b210SMichael Neuling {
364ce48b210SMichael Neuling 	if (tsk->thread.regs) {
365ce48b210SMichael Neuling 		preempt_disable();
3665a69aec9SBenjamin Herrenschmidt 		if (tsk->thread.regs->msr & (MSR_VSX|MSR_VEC|MSR_FP)) {
367ce48b210SMichael Neuling 			BUG_ON(tsk != current);
368ce48b210SMichael Neuling 			giveup_vsx(tsk);
369ce48b210SMichael Neuling 		}
370ce48b210SMichael Neuling 		preempt_enable();
371ce48b210SMichael Neuling 	}
372ce48b210SMichael Neuling }
373de56a948SPaul Mackerras EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
374ce48b210SMichael Neuling #endif /* CONFIG_VSX */
375ce48b210SMichael Neuling 
37614cf11afSPaul Mackerras #ifdef CONFIG_SPE
37798da581eSAnton Blanchard void giveup_spe(struct task_struct *tsk)
37898da581eSAnton Blanchard {
37998da581eSAnton Blanchard 	check_if_tm_restore_required(tsk);
38098da581eSAnton Blanchard 
381a0e72cf1SAnton Blanchard 	msr_check_and_set(MSR_SPE);
38298da581eSAnton Blanchard 	__giveup_spe(tsk);
383a0e72cf1SAnton Blanchard 	msr_check_and_clear(MSR_SPE);
38498da581eSAnton Blanchard }
38598da581eSAnton Blanchard EXPORT_SYMBOL(giveup_spe);
38614cf11afSPaul Mackerras 
38714cf11afSPaul Mackerras void enable_kernel_spe(void)
38814cf11afSPaul Mackerras {
38914cf11afSPaul Mackerras 	WARN_ON(preemptible());
39014cf11afSPaul Mackerras 
391a0e72cf1SAnton Blanchard 	msr_check_and_set(MSR_SPE);
392611b0e5cSAnton Blanchard 
393d64d02ceSAnton Blanchard 	if (current->thread.regs && (current->thread.regs->msr & MSR_SPE)) {
394d64d02ceSAnton Blanchard 		check_if_tm_restore_required(current);
395a0e72cf1SAnton Blanchard 		__giveup_spe(current);
39614cf11afSPaul Mackerras 	}
397d64d02ceSAnton Blanchard }
39814cf11afSPaul Mackerras EXPORT_SYMBOL(enable_kernel_spe);
39914cf11afSPaul Mackerras 
40014cf11afSPaul Mackerras void flush_spe_to_thread(struct task_struct *tsk)
40114cf11afSPaul Mackerras {
40214cf11afSPaul Mackerras 	if (tsk->thread.regs) {
40314cf11afSPaul Mackerras 		preempt_disable();
40414cf11afSPaul Mackerras 		if (tsk->thread.regs->msr & MSR_SPE) {
40514cf11afSPaul Mackerras 			BUG_ON(tsk != current);
406685659eeSyu liu 			tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
4070ee6c15eSKumar Gala 			giveup_spe(tsk);
40814cf11afSPaul Mackerras 		}
40914cf11afSPaul Mackerras 		preempt_enable();
41014cf11afSPaul Mackerras 	}
41114cf11afSPaul Mackerras }
41214cf11afSPaul Mackerras #endif /* CONFIG_SPE */
41314cf11afSPaul Mackerras 
414c2085059SAnton Blanchard static unsigned long msr_all_available;
415c2085059SAnton Blanchard 
416c2085059SAnton Blanchard static int __init init_msr_all_available(void)
417c2085059SAnton Blanchard {
418c2085059SAnton Blanchard #ifdef CONFIG_PPC_FPU
419c2085059SAnton Blanchard 	msr_all_available |= MSR_FP;
420c2085059SAnton Blanchard #endif
421c2085059SAnton Blanchard #ifdef CONFIG_ALTIVEC
422c2085059SAnton Blanchard 	if (cpu_has_feature(CPU_FTR_ALTIVEC))
423c2085059SAnton Blanchard 		msr_all_available |= MSR_VEC;
424c2085059SAnton Blanchard #endif
425c2085059SAnton Blanchard #ifdef CONFIG_VSX
426c2085059SAnton Blanchard 	if (cpu_has_feature(CPU_FTR_VSX))
427c2085059SAnton Blanchard 		msr_all_available |= MSR_VSX;
428c2085059SAnton Blanchard #endif
429c2085059SAnton Blanchard #ifdef CONFIG_SPE
430c2085059SAnton Blanchard 	if (cpu_has_feature(CPU_FTR_SPE))
431c2085059SAnton Blanchard 		msr_all_available |= MSR_SPE;
432c2085059SAnton Blanchard #endif
433c2085059SAnton Blanchard 
434c2085059SAnton Blanchard 	return 0;
435c2085059SAnton Blanchard }
436c2085059SAnton Blanchard early_initcall(init_msr_all_available);
437c2085059SAnton Blanchard 
438c2085059SAnton Blanchard void giveup_all(struct task_struct *tsk)
439c2085059SAnton Blanchard {
440c2085059SAnton Blanchard 	unsigned long usermsr;
441c2085059SAnton Blanchard 
442c2085059SAnton Blanchard 	if (!tsk->thread.regs)
443c2085059SAnton Blanchard 		return;
444c2085059SAnton Blanchard 
4458205d5d9SGustavo Romero 	check_if_tm_restore_required(tsk);
4468205d5d9SGustavo Romero 
447c2085059SAnton Blanchard 	usermsr = tsk->thread.regs->msr;
448c2085059SAnton Blanchard 
449c2085059SAnton Blanchard 	if ((usermsr & msr_all_available) == 0)
450c2085059SAnton Blanchard 		return;
451c2085059SAnton Blanchard 
452c2085059SAnton Blanchard 	msr_check_and_set(msr_all_available);
453c2085059SAnton Blanchard 
45496c79b6bSBenjamin Herrenschmidt 	WARN_ON((usermsr & MSR_VSX) && !((usermsr & MSR_FP) && (usermsr & MSR_VEC)));
45596c79b6bSBenjamin Herrenschmidt 
456c2085059SAnton Blanchard #ifdef CONFIG_PPC_FPU
457c2085059SAnton Blanchard 	if (usermsr & MSR_FP)
458c2085059SAnton Blanchard 		__giveup_fpu(tsk);
459c2085059SAnton Blanchard #endif
460c2085059SAnton Blanchard #ifdef CONFIG_ALTIVEC
461c2085059SAnton Blanchard 	if (usermsr & MSR_VEC)
462c2085059SAnton Blanchard 		__giveup_altivec(tsk);
463c2085059SAnton Blanchard #endif
464c2085059SAnton Blanchard #ifdef CONFIG_SPE
465c2085059SAnton Blanchard 	if (usermsr & MSR_SPE)
466c2085059SAnton Blanchard 		__giveup_spe(tsk);
467c2085059SAnton Blanchard #endif
468c2085059SAnton Blanchard 
469c2085059SAnton Blanchard 	msr_check_and_clear(msr_all_available);
470c2085059SAnton Blanchard }
471c2085059SAnton Blanchard EXPORT_SYMBOL(giveup_all);
472c2085059SAnton Blanchard 
4736cc0c16dSNicholas Piggin #ifdef CONFIG_PPC_BOOK3S_64
4746cc0c16dSNicholas Piggin #ifdef CONFIG_PPC_FPU
4756cc0c16dSNicholas Piggin static int restore_fp(struct task_struct *tsk)
4766cc0c16dSNicholas Piggin {
4776cc0c16dSNicholas Piggin 	if (tsk->thread.load_fp) {
4786cc0c16dSNicholas Piggin 		load_fp_state(&current->thread.fp_state);
4796cc0c16dSNicholas Piggin 		current->thread.load_fp++;
4806cc0c16dSNicholas Piggin 		return 1;
4816cc0c16dSNicholas Piggin 	}
4826cc0c16dSNicholas Piggin 	return 0;
4836cc0c16dSNicholas Piggin }
4846cc0c16dSNicholas Piggin #else
4856cc0c16dSNicholas Piggin static int restore_fp(struct task_struct *tsk) { return 0; }
4866cc0c16dSNicholas Piggin #endif /* CONFIG_PPC_FPU */
4876cc0c16dSNicholas Piggin 
4886cc0c16dSNicholas Piggin #ifdef CONFIG_ALTIVEC
4896cc0c16dSNicholas Piggin #define loadvec(thr) ((thr).load_vec)
4906cc0c16dSNicholas Piggin static int restore_altivec(struct task_struct *tsk)
4916cc0c16dSNicholas Piggin {
4926cc0c16dSNicholas Piggin 	if (cpu_has_feature(CPU_FTR_ALTIVEC) && (tsk->thread.load_vec)) {
4936cc0c16dSNicholas Piggin 		load_vr_state(&tsk->thread.vr_state);
4946cc0c16dSNicholas Piggin 		tsk->thread.used_vr = 1;
4956cc0c16dSNicholas Piggin 		tsk->thread.load_vec++;
4966cc0c16dSNicholas Piggin 
4976cc0c16dSNicholas Piggin 		return 1;
4986cc0c16dSNicholas Piggin 	}
4996cc0c16dSNicholas Piggin 	return 0;
5006cc0c16dSNicholas Piggin }
5016cc0c16dSNicholas Piggin #else
5026cc0c16dSNicholas Piggin #define loadvec(thr) 0
5036cc0c16dSNicholas Piggin static inline int restore_altivec(struct task_struct *tsk) { return 0; }
5046cc0c16dSNicholas Piggin #endif /* CONFIG_ALTIVEC */
5056cc0c16dSNicholas Piggin 
5066cc0c16dSNicholas Piggin #ifdef CONFIG_VSX
5076cc0c16dSNicholas Piggin static int restore_vsx(struct task_struct *tsk)
5086cc0c16dSNicholas Piggin {
5096cc0c16dSNicholas Piggin 	if (cpu_has_feature(CPU_FTR_VSX)) {
5106cc0c16dSNicholas Piggin 		tsk->thread.used_vsr = 1;
5116cc0c16dSNicholas Piggin 		return 1;
5126cc0c16dSNicholas Piggin 	}
5136cc0c16dSNicholas Piggin 
5146cc0c16dSNicholas Piggin 	return 0;
5156cc0c16dSNicholas Piggin }
5166cc0c16dSNicholas Piggin #else
5176cc0c16dSNicholas Piggin static inline int restore_vsx(struct task_struct *tsk) { return 0; }
5186cc0c16dSNicholas Piggin #endif /* CONFIG_VSX */
5196cc0c16dSNicholas Piggin 
520e2b36d59SNicholas Piggin /*
521e2b36d59SNicholas Piggin  * The exception exit path calls restore_math() with interrupts hard disabled
522e2b36d59SNicholas Piggin  * but the soft irq state not "reconciled". ftrace code that calls
523e2b36d59SNicholas Piggin  * local_irq_save/restore causes warnings.
524e2b36d59SNicholas Piggin  *
525e2b36d59SNicholas Piggin  * Rather than complicate the exit path, just don't trace restore_math. This
526e2b36d59SNicholas Piggin  * could be done by having ftrace entry code check for this un-reconciled
527e2b36d59SNicholas Piggin  * condition where MSR[EE]=0 and PACA_IRQ_HARD_DIS is not set, and
528e2b36d59SNicholas Piggin  * temporarily fix it up for the duration of the ftrace call.
529e2b36d59SNicholas Piggin  */
530e2b36d59SNicholas Piggin void notrace restore_math(struct pt_regs *regs)
53170fe3d98SCyril Bur {
53270fe3d98SCyril Bur 	unsigned long msr;
53370fe3d98SCyril Bur 
5345c784c84SBreno Leitao 	if (!MSR_TM_ACTIVE(regs->msr) &&
535dc16b553SCyril Bur 		!current->thread.load_fp && !loadvec(current->thread))
53670fe3d98SCyril Bur 		return;
53770fe3d98SCyril Bur 
53870fe3d98SCyril Bur 	msr = regs->msr;
53970fe3d98SCyril Bur 	msr_check_and_set(msr_all_available);
54070fe3d98SCyril Bur 
54170fe3d98SCyril Bur 	/*
54270fe3d98SCyril Bur 	 * Only reload if the bit is not set in the user MSR, the bit BEING set
54370fe3d98SCyril Bur 	 * indicates that the registers are hot
54470fe3d98SCyril Bur 	 */
54570fe3d98SCyril Bur 	if ((!(msr & MSR_FP)) && restore_fp(current))
54670fe3d98SCyril Bur 		msr |= MSR_FP | current->thread.fpexc_mode;
54770fe3d98SCyril Bur 
54870fe3d98SCyril Bur 	if ((!(msr & MSR_VEC)) && restore_altivec(current))
54970fe3d98SCyril Bur 		msr |= MSR_VEC;
55070fe3d98SCyril Bur 
55170fe3d98SCyril Bur 	if ((msr & (MSR_FP | MSR_VEC)) == (MSR_FP | MSR_VEC) &&
55270fe3d98SCyril Bur 			restore_vsx(current)) {
55370fe3d98SCyril Bur 		msr |= MSR_VSX;
55470fe3d98SCyril Bur 	}
55570fe3d98SCyril Bur 
55670fe3d98SCyril Bur 	msr_check_and_clear(msr_all_available);
55770fe3d98SCyril Bur 
55870fe3d98SCyril Bur 	regs->msr = msr;
55970fe3d98SCyril Bur }
5606cc0c16dSNicholas Piggin #endif
56170fe3d98SCyril Bur 
5621cdf039bSMathieu Malaterre static void save_all(struct task_struct *tsk)
563de2a20aaSCyril Bur {
564de2a20aaSCyril Bur 	unsigned long usermsr;
565de2a20aaSCyril Bur 
566de2a20aaSCyril Bur 	if (!tsk->thread.regs)
567de2a20aaSCyril Bur 		return;
568de2a20aaSCyril Bur 
569de2a20aaSCyril Bur 	usermsr = tsk->thread.regs->msr;
570de2a20aaSCyril Bur 
571de2a20aaSCyril Bur 	if ((usermsr & msr_all_available) == 0)
572de2a20aaSCyril Bur 		return;
573de2a20aaSCyril Bur 
574de2a20aaSCyril Bur 	msr_check_and_set(msr_all_available);
575de2a20aaSCyril Bur 
57696c79b6bSBenjamin Herrenschmidt 	WARN_ON((usermsr & MSR_VSX) && !((usermsr & MSR_FP) && (usermsr & MSR_VEC)));
57796c79b6bSBenjamin Herrenschmidt 
578de2a20aaSCyril Bur 	if (usermsr & MSR_FP)
5798792468dSCyril Bur 		save_fpu(tsk);
580de2a20aaSCyril Bur 
581de2a20aaSCyril Bur 	if (usermsr & MSR_VEC)
5826f515d84SCyril Bur 		save_altivec(tsk);
583de2a20aaSCyril Bur 
584de2a20aaSCyril Bur 	if (usermsr & MSR_SPE)
585de2a20aaSCyril Bur 		__giveup_spe(tsk);
586de2a20aaSCyril Bur 
587de2a20aaSCyril Bur 	msr_check_and_clear(msr_all_available);
588c76662e8SRam Pai 	thread_pkey_regs_save(&tsk->thread);
589de2a20aaSCyril Bur }
590de2a20aaSCyril Bur 
591579e633eSAnton Blanchard void flush_all_to_thread(struct task_struct *tsk)
592579e633eSAnton Blanchard {
593579e633eSAnton Blanchard 	if (tsk->thread.regs) {
594579e633eSAnton Blanchard 		preempt_disable();
595579e633eSAnton Blanchard 		BUG_ON(tsk != current);
596579e633eSAnton Blanchard #ifdef CONFIG_SPE
597579e633eSAnton Blanchard 		if (tsk->thread.regs->msr & MSR_SPE)
598579e633eSAnton Blanchard 			tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
599579e633eSAnton Blanchard #endif
600e9013785SFelipe Rechia 		save_all(tsk);
601579e633eSAnton Blanchard 
602579e633eSAnton Blanchard 		preempt_enable();
603579e633eSAnton Blanchard 	}
604579e633eSAnton Blanchard }
605579e633eSAnton Blanchard EXPORT_SYMBOL(flush_all_to_thread);
606579e633eSAnton Blanchard 
6073bffb652SDave Kleikamp #ifdef CONFIG_PPC_ADV_DEBUG_REGS
6083bffb652SDave Kleikamp void do_send_trap(struct pt_regs *regs, unsigned long address,
60947355040SEric W. Biederman 		  unsigned long error_code, int breakpt)
6103bffb652SDave Kleikamp {
61147355040SEric W. Biederman 	current->thread.trap_nr = TRAP_HWBKPT;
6123bffb652SDave Kleikamp 	if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
6133bffb652SDave Kleikamp 			11, SIGSEGV) == NOTIFY_STOP)
6143bffb652SDave Kleikamp 		return;
6153bffb652SDave Kleikamp 
6163bffb652SDave Kleikamp 	/* Deliver the signal to userspace */
617f71dd7dcSEric W. Biederman 	force_sig_ptrace_errno_trap(breakpt, /* breakpoint or watchpoint id */
618f71dd7dcSEric W. Biederman 				    (void __user *)address);
6193bffb652SDave Kleikamp }
6203bffb652SDave Kleikamp #else	/* !CONFIG_PPC_ADV_DEBUG_REGS */
6219422de3eSMichael Neuling void do_break (struct pt_regs *regs, unsigned long address,
622d6a61bfcSLuis Machado 		    unsigned long error_code)
623d6a61bfcSLuis Machado {
62441ab5266SAnanth N Mavinakayanahalli 	current->thread.trap_nr = TRAP_HWBKPT;
625d6a61bfcSLuis Machado 	if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
626d6a61bfcSLuis Machado 			11, SIGSEGV) == NOTIFY_STOP)
627d6a61bfcSLuis Machado 		return;
628d6a61bfcSLuis Machado 
6299422de3eSMichael Neuling 	if (debugger_break_match(regs))
630d6a61bfcSLuis Machado 		return;
631d6a61bfcSLuis Machado 
6329422de3eSMichael Neuling 	/* Clear the breakpoint */
6339422de3eSMichael Neuling 	hw_breakpoint_disable();
634d6a61bfcSLuis Machado 
635d6a61bfcSLuis Machado 	/* Deliver the signal to userspace */
6362e1661d2SEric W. Biederman 	force_sig_fault(SIGTRAP, TRAP_HWBKPT, (void __user *)address);
637d6a61bfcSLuis Machado }
6383bffb652SDave Kleikamp #endif	/* CONFIG_PPC_ADV_DEBUG_REGS */
639d6a61bfcSLuis Machado 
6404a8a9379SRavi Bangoria static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk[HBP_NUM_MAX]);
641a2ceff5eSMichael Ellerman 
6423bffb652SDave Kleikamp #ifdef CONFIG_PPC_ADV_DEBUG_REGS
6433bffb652SDave Kleikamp /*
6443bffb652SDave Kleikamp  * Set the debug registers back to their default "safe" values.
6453bffb652SDave Kleikamp  */
6463bffb652SDave Kleikamp static void set_debug_reg_defaults(struct thread_struct *thread)
6473bffb652SDave Kleikamp {
64851ae8d4aSBharat Bhushan 	thread->debug.iac1 = thread->debug.iac2 = 0;
6493bffb652SDave Kleikamp #if CONFIG_PPC_ADV_DEBUG_IACS > 2
65051ae8d4aSBharat Bhushan 	thread->debug.iac3 = thread->debug.iac4 = 0;
6513bffb652SDave Kleikamp #endif
65251ae8d4aSBharat Bhushan 	thread->debug.dac1 = thread->debug.dac2 = 0;
6533bffb652SDave Kleikamp #if CONFIG_PPC_ADV_DEBUG_DVCS > 0
65451ae8d4aSBharat Bhushan 	thread->debug.dvc1 = thread->debug.dvc2 = 0;
6553bffb652SDave Kleikamp #endif
65651ae8d4aSBharat Bhushan 	thread->debug.dbcr0 = 0;
6573bffb652SDave Kleikamp #ifdef CONFIG_BOOKE
6583bffb652SDave Kleikamp 	/*
6593bffb652SDave Kleikamp 	 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
6603bffb652SDave Kleikamp 	 */
66151ae8d4aSBharat Bhushan 	thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
6623bffb652SDave Kleikamp 			DBCR1_IAC3US | DBCR1_IAC4US;
6633bffb652SDave Kleikamp 	/*
6643bffb652SDave Kleikamp 	 * Force Data Address Compare User/Supervisor bits to be User-only
6653bffb652SDave Kleikamp 	 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
6663bffb652SDave Kleikamp 	 */
66751ae8d4aSBharat Bhushan 	thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
6683bffb652SDave Kleikamp #else
66951ae8d4aSBharat Bhushan 	thread->debug.dbcr1 = 0;
6703bffb652SDave Kleikamp #endif
6713bffb652SDave Kleikamp }
6723bffb652SDave Kleikamp 
673f5f97210SScott Wood static void prime_debug_regs(struct debug_reg *debug)
6743bffb652SDave Kleikamp {
6756cecf76bSScott Wood 	/*
6766cecf76bSScott Wood 	 * We could have inherited MSR_DE from userspace, since
6776cecf76bSScott Wood 	 * it doesn't get cleared on exception entry.  Make sure
6786cecf76bSScott Wood 	 * MSR_DE is clear before we enable any debug events.
6796cecf76bSScott Wood 	 */
6806cecf76bSScott Wood 	mtmsr(mfmsr() & ~MSR_DE);
6816cecf76bSScott Wood 
682f5f97210SScott Wood 	mtspr(SPRN_IAC1, debug->iac1);
683f5f97210SScott Wood 	mtspr(SPRN_IAC2, debug->iac2);
6843bffb652SDave Kleikamp #if CONFIG_PPC_ADV_DEBUG_IACS > 2
685f5f97210SScott Wood 	mtspr(SPRN_IAC3, debug->iac3);
686f5f97210SScott Wood 	mtspr(SPRN_IAC4, debug->iac4);
6873bffb652SDave Kleikamp #endif
688f5f97210SScott Wood 	mtspr(SPRN_DAC1, debug->dac1);
689f5f97210SScott Wood 	mtspr(SPRN_DAC2, debug->dac2);
6903bffb652SDave Kleikamp #if CONFIG_PPC_ADV_DEBUG_DVCS > 0
691f5f97210SScott Wood 	mtspr(SPRN_DVC1, debug->dvc1);
692f5f97210SScott Wood 	mtspr(SPRN_DVC2, debug->dvc2);
6933bffb652SDave Kleikamp #endif
694f5f97210SScott Wood 	mtspr(SPRN_DBCR0, debug->dbcr0);
695f5f97210SScott Wood 	mtspr(SPRN_DBCR1, debug->dbcr1);
6963bffb652SDave Kleikamp #ifdef CONFIG_BOOKE
697f5f97210SScott Wood 	mtspr(SPRN_DBCR2, debug->dbcr2);
6983bffb652SDave Kleikamp #endif
6993bffb652SDave Kleikamp }
7003bffb652SDave Kleikamp /*
7013bffb652SDave Kleikamp  * Unless neither the old or new thread are making use of the
7023bffb652SDave Kleikamp  * debug registers, set the debug registers from the values
7033bffb652SDave Kleikamp  * stored in the new thread.
7043bffb652SDave Kleikamp  */
705f5f97210SScott Wood void switch_booke_debug_regs(struct debug_reg *new_debug)
7063bffb652SDave Kleikamp {
70751ae8d4aSBharat Bhushan 	if ((current->thread.debug.dbcr0 & DBCR0_IDM)
708f5f97210SScott Wood 		|| (new_debug->dbcr0 & DBCR0_IDM))
709f5f97210SScott Wood 			prime_debug_regs(new_debug);
7103bffb652SDave Kleikamp }
7113743c9b8SBharat Bhushan EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
7123bffb652SDave Kleikamp #else	/* !CONFIG_PPC_ADV_DEBUG_REGS */
713e0780b72SK.Prasad #ifndef CONFIG_HAVE_HW_BREAKPOINT
714303e6a9dSRavi Bangoria static void set_breakpoint(int i, struct arch_hw_breakpoint *brk)
715b5ac51d7SChristophe Leroy {
716b5ac51d7SChristophe Leroy 	preempt_disable();
717303e6a9dSRavi Bangoria 	__set_breakpoint(i, brk);
718b5ac51d7SChristophe Leroy 	preempt_enable();
719b5ac51d7SChristophe Leroy }
720b5ac51d7SChristophe Leroy 
7213bffb652SDave Kleikamp static void set_debug_reg_defaults(struct thread_struct *thread)
7223bffb652SDave Kleikamp {
723303e6a9dSRavi Bangoria 	int i;
724303e6a9dSRavi Bangoria 	struct arch_hw_breakpoint null_brk = {0};
725303e6a9dSRavi Bangoria 
726303e6a9dSRavi Bangoria 	for (i = 0; i < nr_wp_slots(); i++) {
727303e6a9dSRavi Bangoria 		thread->hw_brk[i] = null_brk;
728252988cbSNicholas Piggin 		if (ppc_breakpoint_available())
729303e6a9dSRavi Bangoria 			set_breakpoint(i, &thread->hw_brk[i]);
730303e6a9dSRavi Bangoria 	}
731303e6a9dSRavi Bangoria }
732303e6a9dSRavi Bangoria 
733303e6a9dSRavi Bangoria static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
734303e6a9dSRavi Bangoria 				struct arch_hw_breakpoint *b)
735303e6a9dSRavi Bangoria {
736303e6a9dSRavi Bangoria 	if (a->address != b->address)
737303e6a9dSRavi Bangoria 		return false;
738303e6a9dSRavi Bangoria 	if (a->type != b->type)
739303e6a9dSRavi Bangoria 		return false;
740303e6a9dSRavi Bangoria 	if (a->len != b->len)
741303e6a9dSRavi Bangoria 		return false;
742303e6a9dSRavi Bangoria 	/* no need to check hw_len. it's calculated from address and len */
743303e6a9dSRavi Bangoria 	return true;
744303e6a9dSRavi Bangoria }
745303e6a9dSRavi Bangoria 
746303e6a9dSRavi Bangoria static void switch_hw_breakpoint(struct task_struct *new)
747303e6a9dSRavi Bangoria {
748303e6a9dSRavi Bangoria 	int i;
749303e6a9dSRavi Bangoria 
750303e6a9dSRavi Bangoria 	for (i = 0; i < nr_wp_slots(); i++) {
751303e6a9dSRavi Bangoria 		if (likely(hw_brk_match(this_cpu_ptr(&current_brk[i]),
752303e6a9dSRavi Bangoria 					&new->thread.hw_brk[i])))
753303e6a9dSRavi Bangoria 			continue;
754303e6a9dSRavi Bangoria 
755303e6a9dSRavi Bangoria 		__set_breakpoint(i, &new->thread.hw_brk[i]);
756303e6a9dSRavi Bangoria 	}
7573bffb652SDave Kleikamp }
758e0780b72SK.Prasad #endif /* !CONFIG_HAVE_HW_BREAKPOINT */
7593bffb652SDave Kleikamp #endif	/* CONFIG_PPC_ADV_DEBUG_REGS */
7603bffb652SDave Kleikamp 
761172ae2e7SDave Kleikamp #ifdef CONFIG_PPC_ADV_DEBUG_REGS
7629422de3eSMichael Neuling static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
7639422de3eSMichael Neuling {
764c6c9eaceSBenjamin Herrenschmidt 	mtspr(SPRN_DAC1, dabr);
765221c185dSDave Kleikamp #ifdef CONFIG_PPC_47x
766221c185dSDave Kleikamp 	isync();
767221c185dSDave Kleikamp #endif
7689422de3eSMichael Neuling 	return 0;
7699422de3eSMichael Neuling }
770c6c9eaceSBenjamin Herrenschmidt #elif defined(CONFIG_PPC_BOOK3S)
7719422de3eSMichael Neuling static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
7729422de3eSMichael Neuling {
773cab0af98SMichael Ellerman 	mtspr(SPRN_DABR, dabr);
77482a9f16aSMichael Neuling 	if (cpu_has_feature(CPU_FTR_DABRX))
7754474ef05SMichael Neuling 		mtspr(SPRN_DABRX, dabrx);
776cab0af98SMichael Ellerman 	return 0;
77714cf11afSPaul Mackerras }
7789422de3eSMichael Neuling #else
7799422de3eSMichael Neuling static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
7809422de3eSMichael Neuling {
7819422de3eSMichael Neuling 	return -EINVAL;
7829422de3eSMichael Neuling }
7839422de3eSMichael Neuling #endif
7849422de3eSMichael Neuling 
7859422de3eSMichael Neuling static inline int set_dabr(struct arch_hw_breakpoint *brk)
7869422de3eSMichael Neuling {
7879422de3eSMichael Neuling 	unsigned long dabr, dabrx;
7889422de3eSMichael Neuling 
7899422de3eSMichael Neuling 	dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
7909422de3eSMichael Neuling 	dabrx = ((brk->type >> 3) & 0x7);
7919422de3eSMichael Neuling 
7929422de3eSMichael Neuling 	if (ppc_md.set_dabr)
7939422de3eSMichael Neuling 		return ppc_md.set_dabr(dabr, dabrx);
7949422de3eSMichael Neuling 
7959422de3eSMichael Neuling 	return __set_dabr(dabr, dabrx);
7969422de3eSMichael Neuling }
7979422de3eSMichael Neuling 
79839413ae0SChristophe Leroy static inline int set_breakpoint_8xx(struct arch_hw_breakpoint *brk)
79939413ae0SChristophe Leroy {
80039413ae0SChristophe Leroy 	unsigned long lctrl1 = LCTRL1_CTE_GT | LCTRL1_CTF_LT | LCTRL1_CRWE_RW |
80139413ae0SChristophe Leroy 			       LCTRL1_CRWF_RW;
80239413ae0SChristophe Leroy 	unsigned long lctrl2 = LCTRL2_LW0EN | LCTRL2_LW0LADC | LCTRL2_SLW0EN;
803*e68ef121SRavi Bangoria 	unsigned long start_addr = ALIGN_DOWN(brk->address, HW_BREAKPOINT_SIZE);
804*e68ef121SRavi Bangoria 	unsigned long end_addr = ALIGN(brk->address + brk->len, HW_BREAKPOINT_SIZE);
80539413ae0SChristophe Leroy 
80639413ae0SChristophe Leroy 	if (start_addr == 0)
80739413ae0SChristophe Leroy 		lctrl2 |= LCTRL2_LW0LA_F;
808*e68ef121SRavi Bangoria 	else if (end_addr == 0)
80939413ae0SChristophe Leroy 		lctrl2 |= LCTRL2_LW0LA_E;
81039413ae0SChristophe Leroy 	else
81139413ae0SChristophe Leroy 		lctrl2 |= LCTRL2_LW0LA_EandF;
81239413ae0SChristophe Leroy 
81339413ae0SChristophe Leroy 	mtspr(SPRN_LCTRL2, 0);
81439413ae0SChristophe Leroy 
81539413ae0SChristophe Leroy 	if ((brk->type & HW_BRK_TYPE_RDWR) == 0)
81639413ae0SChristophe Leroy 		return 0;
81739413ae0SChristophe Leroy 
81839413ae0SChristophe Leroy 	if ((brk->type & HW_BRK_TYPE_RDWR) == HW_BRK_TYPE_READ)
81939413ae0SChristophe Leroy 		lctrl1 |= LCTRL1_CRWE_RO | LCTRL1_CRWF_RO;
82039413ae0SChristophe Leroy 	if ((brk->type & HW_BRK_TYPE_RDWR) == HW_BRK_TYPE_WRITE)
82139413ae0SChristophe Leroy 		lctrl1 |= LCTRL1_CRWE_WO | LCTRL1_CRWF_WO;
82239413ae0SChristophe Leroy 
82339413ae0SChristophe Leroy 	mtspr(SPRN_CMPE, start_addr - 1);
824*e68ef121SRavi Bangoria 	mtspr(SPRN_CMPF, end_addr);
82539413ae0SChristophe Leroy 	mtspr(SPRN_LCTRL1, lctrl1);
82639413ae0SChristophe Leroy 	mtspr(SPRN_LCTRL2, lctrl2);
82739413ae0SChristophe Leroy 
82839413ae0SChristophe Leroy 	return 0;
82939413ae0SChristophe Leroy }
83039413ae0SChristophe Leroy 
8314a8a9379SRavi Bangoria void __set_breakpoint(int nr, struct arch_hw_breakpoint *brk)
8329422de3eSMichael Neuling {
8334a8a9379SRavi Bangoria 	memcpy(this_cpu_ptr(&current_brk[nr]), brk, sizeof(*brk));
8349422de3eSMichael Neuling 
835c1fe190cSMichael Neuling 	if (dawr_enabled())
836252988cbSNicholas Piggin 		// Power8 or later
8374a8a9379SRavi Bangoria 		set_dawr(nr, brk);
83839413ae0SChristophe Leroy 	else if (IS_ENABLED(CONFIG_PPC_8xx))
83939413ae0SChristophe Leroy 		set_breakpoint_8xx(brk);
840252988cbSNicholas Piggin 	else if (!cpu_has_feature(CPU_FTR_ARCH_207S))
841252988cbSNicholas Piggin 		// Power7 or earlier
84204c32a51SPaul Gortmaker 		set_dabr(brk);
843252988cbSNicholas Piggin 	else
844252988cbSNicholas Piggin 		// Shouldn't happen due to higher level checks
845252988cbSNicholas Piggin 		WARN_ON_ONCE(1);
8469422de3eSMichael Neuling }
84714cf11afSPaul Mackerras 
848404b27d6SMichael Neuling /* Check if we have DAWR or DABR hardware */
849404b27d6SMichael Neuling bool ppc_breakpoint_available(void)
850404b27d6SMichael Neuling {
851c1fe190cSMichael Neuling 	if (dawr_enabled())
852c1fe190cSMichael Neuling 		return true; /* POWER8 DAWR or POWER9 forced DAWR */
853404b27d6SMichael Neuling 	if (cpu_has_feature(CPU_FTR_ARCH_207S))
854404b27d6SMichael Neuling 		return false; /* POWER9 with DAWR disabled */
855404b27d6SMichael Neuling 	/* DABR: Everything but POWER8 and POWER9 */
856404b27d6SMichael Neuling 	return true;
857404b27d6SMichael Neuling }
858404b27d6SMichael Neuling EXPORT_SYMBOL_GPL(ppc_breakpoint_available);
859404b27d6SMichael Neuling 
860fb09692eSMichael Neuling #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
8615d176f75SCyril Bur 
8625d176f75SCyril Bur static inline bool tm_enabled(struct task_struct *tsk)
8635d176f75SCyril Bur {
8645d176f75SCyril Bur 	return tsk && tsk->thread.regs && (tsk->thread.regs->msr & MSR_TM);
8655d176f75SCyril Bur }
8665d176f75SCyril Bur 
867edd00b83SCyril Bur static void tm_reclaim_thread(struct thread_struct *thr, uint8_t cause)
868d31626f7SPaul Mackerras {
8697f821fc9SMichael Neuling 	/*
8707f821fc9SMichael Neuling 	 * Use the current MSR TM suspended bit to track if we have
8717f821fc9SMichael Neuling 	 * checkpointed state outstanding.
8727f821fc9SMichael Neuling 	 * On signal delivery, we'd normally reclaim the checkpointed
8737f821fc9SMichael Neuling 	 * state to obtain stack pointer (see:get_tm_stackpointer()).
8747f821fc9SMichael Neuling 	 * This will then directly return to userspace without going
8757f821fc9SMichael Neuling 	 * through __switch_to(). However, if the stack frame is bad,
8767f821fc9SMichael Neuling 	 * we need to exit this thread which calls __switch_to() which
8777f821fc9SMichael Neuling 	 * will again attempt to reclaim the already saved tm state.
8787f821fc9SMichael Neuling 	 * Hence we need to check that we've not already reclaimed
8797f821fc9SMichael Neuling 	 * this state.
8807f821fc9SMichael Neuling 	 * We do this using the current MSR, rather tracking it in
8817f821fc9SMichael Neuling 	 * some specific thread_struct bit, as it has the additional
882027dfac6SMichael Ellerman 	 * benefit of checking for a potential TM bad thing exception.
8837f821fc9SMichael Neuling 	 */
8847f821fc9SMichael Neuling 	if (!MSR_TM_SUSPENDED(mfmsr()))
8857f821fc9SMichael Neuling 		return;
8867f821fc9SMichael Neuling 
88791381b9cSCyril Bur 	giveup_all(container_of(thr, struct task_struct, thread));
88891381b9cSCyril Bur 
889eb5c3f1cSCyril Bur 	tm_reclaim(thr, cause);
890eb5c3f1cSCyril Bur 
891f48e91e8SMichael Neuling 	/*
892f48e91e8SMichael Neuling 	 * If we are in a transaction and FP is off then we can't have
893f48e91e8SMichael Neuling 	 * used FP inside that transaction. Hence the checkpointed
894f48e91e8SMichael Neuling 	 * state is the same as the live state. We need to copy the
895f48e91e8SMichael Neuling 	 * live state to the checkpointed state so that when the
896f48e91e8SMichael Neuling 	 * transaction is restored, the checkpointed state is correct
897f48e91e8SMichael Neuling 	 * and the aborted transaction sees the correct state. We use
898f48e91e8SMichael Neuling 	 * ckpt_regs.msr here as that's what tm_reclaim will use to
899f48e91e8SMichael Neuling 	 * determine if it's going to write the checkpointed state or
900f48e91e8SMichael Neuling 	 * not. So either this will write the checkpointed registers,
901f48e91e8SMichael Neuling 	 * or reclaim will. Similarly for VMX.
902f48e91e8SMichael Neuling 	 */
903f48e91e8SMichael Neuling 	if ((thr->ckpt_regs.msr & MSR_FP) == 0)
904f48e91e8SMichael Neuling 		memcpy(&thr->ckfp_state, &thr->fp_state,
905f48e91e8SMichael Neuling 		       sizeof(struct thread_fp_state));
906f48e91e8SMichael Neuling 	if ((thr->ckpt_regs.msr & MSR_VEC) == 0)
907f48e91e8SMichael Neuling 		memcpy(&thr->ckvr_state, &thr->vr_state,
908f48e91e8SMichael Neuling 		       sizeof(struct thread_vr_state));
909d31626f7SPaul Mackerras }
910d31626f7SPaul Mackerras 
911d31626f7SPaul Mackerras void tm_reclaim_current(uint8_t cause)
912d31626f7SPaul Mackerras {
913d31626f7SPaul Mackerras 	tm_enable();
914edd00b83SCyril Bur 	tm_reclaim_thread(&current->thread, cause);
915d31626f7SPaul Mackerras }
916d31626f7SPaul Mackerras 
917fb09692eSMichael Neuling static inline void tm_reclaim_task(struct task_struct *tsk)
918fb09692eSMichael Neuling {
919fb09692eSMichael Neuling 	/* We have to work out if we're switching from/to a task that's in the
920fb09692eSMichael Neuling 	 * middle of a transaction.
921fb09692eSMichael Neuling 	 *
922fb09692eSMichael Neuling 	 * In switching we need to maintain a 2nd register state as
923fb09692eSMichael Neuling 	 * oldtask->thread.ckpt_regs.  We tm_reclaim(oldproc); this saves the
924000ec280SCyril Bur 	 * checkpointed (tbegin) state in ckpt_regs, ckfp_state and
925000ec280SCyril Bur 	 * ckvr_state
926fb09692eSMichael Neuling 	 *
927fb09692eSMichael Neuling 	 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
928fb09692eSMichael Neuling 	 */
929fb09692eSMichael Neuling 	struct thread_struct *thr = &tsk->thread;
930fb09692eSMichael Neuling 
931fb09692eSMichael Neuling 	if (!thr->regs)
932fb09692eSMichael Neuling 		return;
933fb09692eSMichael Neuling 
934fb09692eSMichael Neuling 	if (!MSR_TM_ACTIVE(thr->regs->msr))
935fb09692eSMichael Neuling 		goto out_and_saveregs;
936fb09692eSMichael Neuling 
93792fb8690SMichael Neuling 	WARN_ON(tm_suspend_disabled);
93892fb8690SMichael Neuling 
939fb09692eSMichael Neuling 	TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
940fb09692eSMichael Neuling 		 "ccr=%lx, msr=%lx, trap=%lx)\n",
941fb09692eSMichael Neuling 		 tsk->pid, thr->regs->nip,
942fb09692eSMichael Neuling 		 thr->regs->ccr, thr->regs->msr,
943fb09692eSMichael Neuling 		 thr->regs->trap);
944fb09692eSMichael Neuling 
945edd00b83SCyril Bur 	tm_reclaim_thread(thr, TM_CAUSE_RESCHED);
946fb09692eSMichael Neuling 
947fb09692eSMichael Neuling 	TM_DEBUG("--- tm_reclaim on pid %d complete\n",
948fb09692eSMichael Neuling 		 tsk->pid);
949fb09692eSMichael Neuling 
950fb09692eSMichael Neuling out_and_saveregs:
951fb09692eSMichael Neuling 	/* Always save the regs here, even if a transaction's not active.
952fb09692eSMichael Neuling 	 * This context-switches a thread's TM info SPRs.  We do it here to
953fb09692eSMichael Neuling 	 * be consistent with the restore path (in recheckpoint) which
954fb09692eSMichael Neuling 	 * cannot happen later in _switch().
955fb09692eSMichael Neuling 	 */
956fb09692eSMichael Neuling 	tm_save_sprs(thr);
957fb09692eSMichael Neuling }
958fb09692eSMichael Neuling 
959eb5c3f1cSCyril Bur extern void __tm_recheckpoint(struct thread_struct *thread);
960e6b8fd02SMichael Neuling 
961eb5c3f1cSCyril Bur void tm_recheckpoint(struct thread_struct *thread)
962e6b8fd02SMichael Neuling {
963e6b8fd02SMichael Neuling 	unsigned long flags;
964e6b8fd02SMichael Neuling 
9655d176f75SCyril Bur 	if (!(thread->regs->msr & MSR_TM))
9665d176f75SCyril Bur 		return;
9675d176f75SCyril Bur 
968e6b8fd02SMichael Neuling 	/* We really can't be interrupted here as the TEXASR registers can't
969e6b8fd02SMichael Neuling 	 * change and later in the trecheckpoint code, we have a userspace R1.
970e6b8fd02SMichael Neuling 	 * So let's hard disable over this region.
971e6b8fd02SMichael Neuling 	 */
972e6b8fd02SMichael Neuling 	local_irq_save(flags);
973e6b8fd02SMichael Neuling 	hard_irq_disable();
974e6b8fd02SMichael Neuling 
975e6b8fd02SMichael Neuling 	/* The TM SPRs are restored here, so that TEXASR.FS can be set
976e6b8fd02SMichael Neuling 	 * before the trecheckpoint and no explosion occurs.
977e6b8fd02SMichael Neuling 	 */
978e6b8fd02SMichael Neuling 	tm_restore_sprs(thread);
979e6b8fd02SMichael Neuling 
980eb5c3f1cSCyril Bur 	__tm_recheckpoint(thread);
981e6b8fd02SMichael Neuling 
982e6b8fd02SMichael Neuling 	local_irq_restore(flags);
983e6b8fd02SMichael Neuling }
984e6b8fd02SMichael Neuling 
985bc2a9408SMichael Neuling static inline void tm_recheckpoint_new_task(struct task_struct *new)
986fb09692eSMichael Neuling {
987fb09692eSMichael Neuling 	if (!cpu_has_feature(CPU_FTR_TM))
988fb09692eSMichael Neuling 		return;
989fb09692eSMichael Neuling 
990fb09692eSMichael Neuling 	/* Recheckpoint the registers of the thread we're about to switch to.
991fb09692eSMichael Neuling 	 *
992fb09692eSMichael Neuling 	 * If the task was using FP, we non-lazily reload both the original and
993fb09692eSMichael Neuling 	 * the speculative FP register states.  This is because the kernel
994fb09692eSMichael Neuling 	 * doesn't see if/when a TM rollback occurs, so if we take an FP
995dc310669SCyril Bur 	 * unavailable later, we are unable to determine which set of FP regs
996fb09692eSMichael Neuling 	 * need to be restored.
997fb09692eSMichael Neuling 	 */
9985d176f75SCyril Bur 	if (!tm_enabled(new))
999fb09692eSMichael Neuling 		return;
1000fb09692eSMichael Neuling 
1001e6b8fd02SMichael Neuling 	if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
1002fb09692eSMichael Neuling 		tm_restore_sprs(&new->thread);
1003fb09692eSMichael Neuling 		return;
1004e6b8fd02SMichael Neuling 	}
1005fb09692eSMichael Neuling 	/* Recheckpoint to restore original checkpointed register state. */
1006eb5c3f1cSCyril Bur 	TM_DEBUG("*** tm_recheckpoint of pid %d (new->msr 0x%lx)\n",
1007eb5c3f1cSCyril Bur 		 new->pid, new->thread.regs->msr);
1008fb09692eSMichael Neuling 
1009eb5c3f1cSCyril Bur 	tm_recheckpoint(&new->thread);
1010fb09692eSMichael Neuling 
1011dc310669SCyril Bur 	/*
1012dc310669SCyril Bur 	 * The checkpointed state has been restored but the live state has
1013dc310669SCyril Bur 	 * not, ensure all the math functionality is turned off to trigger
1014dc310669SCyril Bur 	 * restore_math() to reload.
1015dc310669SCyril Bur 	 */
1016dc310669SCyril Bur 	new->thread.regs->msr &= ~(MSR_FP | MSR_VEC | MSR_VSX);
1017fb09692eSMichael Neuling 
1018fb09692eSMichael Neuling 	TM_DEBUG("*** tm_recheckpoint of pid %d complete "
1019fb09692eSMichael Neuling 		 "(kernel msr 0x%lx)\n",
1020fb09692eSMichael Neuling 		 new->pid, mfmsr());
1021fb09692eSMichael Neuling }
1022fb09692eSMichael Neuling 
1023dc310669SCyril Bur static inline void __switch_to_tm(struct task_struct *prev,
1024dc310669SCyril Bur 		struct task_struct *new)
1025fb09692eSMichael Neuling {
1026fb09692eSMichael Neuling 	if (cpu_has_feature(CPU_FTR_TM)) {
10275d176f75SCyril Bur 		if (tm_enabled(prev) || tm_enabled(new))
1028fb09692eSMichael Neuling 			tm_enable();
10295d176f75SCyril Bur 
10305d176f75SCyril Bur 		if (tm_enabled(prev)) {
10315d176f75SCyril Bur 			prev->thread.load_tm++;
1032fb09692eSMichael Neuling 			tm_reclaim_task(prev);
10335d176f75SCyril Bur 			if (!MSR_TM_ACTIVE(prev->thread.regs->msr) && prev->thread.load_tm == 0)
10345d176f75SCyril Bur 				prev->thread.regs->msr &= ~MSR_TM;
10355d176f75SCyril Bur 		}
10365d176f75SCyril Bur 
1037dc310669SCyril Bur 		tm_recheckpoint_new_task(new);
1038fb09692eSMichael Neuling 	}
1039fb09692eSMichael Neuling }
1040d31626f7SPaul Mackerras 
1041d31626f7SPaul Mackerras /*
1042d31626f7SPaul Mackerras  * This is called if we are on the way out to userspace and the
1043d31626f7SPaul Mackerras  * TIF_RESTORE_TM flag is set.  It checks if we need to reload
1044d31626f7SPaul Mackerras  * FP and/or vector state and does so if necessary.
1045d31626f7SPaul Mackerras  * If userspace is inside a transaction (whether active or
1046d31626f7SPaul Mackerras  * suspended) and FP/VMX/VSX instructions have ever been enabled
1047d31626f7SPaul Mackerras  * inside that transaction, then we have to keep them enabled
1048d31626f7SPaul Mackerras  * and keep the FP/VMX/VSX state loaded while ever the transaction
1049d31626f7SPaul Mackerras  * continues.  The reason is that if we didn't, and subsequently
1050d31626f7SPaul Mackerras  * got a FP/VMX/VSX unavailable interrupt inside a transaction,
1051d31626f7SPaul Mackerras  * we don't know whether it's the same transaction, and thus we
1052d31626f7SPaul Mackerras  * don't know which of the checkpointed state and the transactional
1053d31626f7SPaul Mackerras  * state to use.
1054d31626f7SPaul Mackerras  */
1055d31626f7SPaul Mackerras void restore_tm_state(struct pt_regs *regs)
1056d31626f7SPaul Mackerras {
1057d31626f7SPaul Mackerras 	unsigned long msr_diff;
1058d31626f7SPaul Mackerras 
1059dc310669SCyril Bur 	/*
1060dc310669SCyril Bur 	 * This is the only moment we should clear TIF_RESTORE_TM as
1061dc310669SCyril Bur 	 * it is here that ckpt_regs.msr and pt_regs.msr become the same
1062dc310669SCyril Bur 	 * again, anything else could lead to an incorrect ckpt_msr being
1063dc310669SCyril Bur 	 * saved and therefore incorrect signal contexts.
1064dc310669SCyril Bur 	 */
1065d31626f7SPaul Mackerras 	clear_thread_flag(TIF_RESTORE_TM);
1066d31626f7SPaul Mackerras 	if (!MSR_TM_ACTIVE(regs->msr))
1067d31626f7SPaul Mackerras 		return;
1068d31626f7SPaul Mackerras 
1069829023dfSAnshuman Khandual 	msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
1070d31626f7SPaul Mackerras 	msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
107170fe3d98SCyril Bur 
1072dc16b553SCyril Bur 	/* Ensure that restore_math() will restore */
1073dc16b553SCyril Bur 	if (msr_diff & MSR_FP)
1074dc16b553SCyril Bur 		current->thread.load_fp = 1;
107539715bf9SValentin Rothberg #ifdef CONFIG_ALTIVEC
1076dc16b553SCyril Bur 	if (cpu_has_feature(CPU_FTR_ALTIVEC) && msr_diff & MSR_VEC)
1077dc16b553SCyril Bur 		current->thread.load_vec = 1;
1078dc16b553SCyril Bur #endif
107970fe3d98SCyril Bur 	restore_math(regs);
108070fe3d98SCyril Bur 
1081d31626f7SPaul Mackerras 	regs->msr |= msr_diff;
1082d31626f7SPaul Mackerras }
1083d31626f7SPaul Mackerras 
1084fb09692eSMichael Neuling #else
1085fb09692eSMichael Neuling #define tm_recheckpoint_new_task(new)
1086dc310669SCyril Bur #define __switch_to_tm(prev, new)
1087fb09692eSMichael Neuling #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
10889422de3eSMichael Neuling 
1089152d523eSAnton Blanchard static inline void save_sprs(struct thread_struct *t)
1090152d523eSAnton Blanchard {
1091152d523eSAnton Blanchard #ifdef CONFIG_ALTIVEC
109201d7c2a2SOliver O'Halloran 	if (cpu_has_feature(CPU_FTR_ALTIVEC))
1093152d523eSAnton Blanchard 		t->vrsave = mfspr(SPRN_VRSAVE);
1094152d523eSAnton Blanchard #endif
1095152d523eSAnton Blanchard #ifdef CONFIG_PPC_BOOK3S_64
1096152d523eSAnton Blanchard 	if (cpu_has_feature(CPU_FTR_DSCR))
1097152d523eSAnton Blanchard 		t->dscr = mfspr(SPRN_DSCR);
1098152d523eSAnton Blanchard 
1099152d523eSAnton Blanchard 	if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
1100152d523eSAnton Blanchard 		t->bescr = mfspr(SPRN_BESCR);
1101152d523eSAnton Blanchard 		t->ebbhr = mfspr(SPRN_EBBHR);
1102152d523eSAnton Blanchard 		t->ebbrr = mfspr(SPRN_EBBRR);
1103152d523eSAnton Blanchard 
1104152d523eSAnton Blanchard 		t->fscr = mfspr(SPRN_FSCR);
1105152d523eSAnton Blanchard 
1106152d523eSAnton Blanchard 		/*
1107152d523eSAnton Blanchard 		 * Note that the TAR is not available for use in the kernel.
1108152d523eSAnton Blanchard 		 * (To provide this, the TAR should be backed up/restored on
1109152d523eSAnton Blanchard 		 * exception entry/exit instead, and be in pt_regs.  FIXME,
1110152d523eSAnton Blanchard 		 * this should be in pt_regs anyway (for debug).)
1111152d523eSAnton Blanchard 		 */
1112152d523eSAnton Blanchard 		t->tar = mfspr(SPRN_TAR);
1113152d523eSAnton Blanchard 	}
1114152d523eSAnton Blanchard #endif
111506bb53b3SRam Pai 
111606bb53b3SRam Pai 	thread_pkey_regs_save(t);
1117152d523eSAnton Blanchard }
1118152d523eSAnton Blanchard 
1119152d523eSAnton Blanchard static inline void restore_sprs(struct thread_struct *old_thread,
1120152d523eSAnton Blanchard 				struct thread_struct *new_thread)
1121152d523eSAnton Blanchard {
1122152d523eSAnton Blanchard #ifdef CONFIG_ALTIVEC
1123152d523eSAnton Blanchard 	if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
1124152d523eSAnton Blanchard 	    old_thread->vrsave != new_thread->vrsave)
1125152d523eSAnton Blanchard 		mtspr(SPRN_VRSAVE, new_thread->vrsave);
1126152d523eSAnton Blanchard #endif
1127152d523eSAnton Blanchard #ifdef CONFIG_PPC_BOOK3S_64
1128152d523eSAnton Blanchard 	if (cpu_has_feature(CPU_FTR_DSCR)) {
1129152d523eSAnton Blanchard 		u64 dscr = get_paca()->dscr_default;
1130b57bd2deSMichael Neuling 		if (new_thread->dscr_inherit)
1131152d523eSAnton Blanchard 			dscr = new_thread->dscr;
1132152d523eSAnton Blanchard 
1133152d523eSAnton Blanchard 		if (old_thread->dscr != dscr)
1134152d523eSAnton Blanchard 			mtspr(SPRN_DSCR, dscr);
1135152d523eSAnton Blanchard 	}
1136152d523eSAnton Blanchard 
1137152d523eSAnton Blanchard 	if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
1138152d523eSAnton Blanchard 		if (old_thread->bescr != new_thread->bescr)
1139152d523eSAnton Blanchard 			mtspr(SPRN_BESCR, new_thread->bescr);
1140152d523eSAnton Blanchard 		if (old_thread->ebbhr != new_thread->ebbhr)
1141152d523eSAnton Blanchard 			mtspr(SPRN_EBBHR, new_thread->ebbhr);
1142152d523eSAnton Blanchard 		if (old_thread->ebbrr != new_thread->ebbrr)
1143152d523eSAnton Blanchard 			mtspr(SPRN_EBBRR, new_thread->ebbrr);
1144152d523eSAnton Blanchard 
1145b57bd2deSMichael Neuling 		if (old_thread->fscr != new_thread->fscr)
1146b57bd2deSMichael Neuling 			mtspr(SPRN_FSCR, new_thread->fscr);
1147b57bd2deSMichael Neuling 
1148152d523eSAnton Blanchard 		if (old_thread->tar != new_thread->tar)
1149152d523eSAnton Blanchard 			mtspr(SPRN_TAR, new_thread->tar);
1150152d523eSAnton Blanchard 	}
1151ec233edeSSukadev Bhattiprolu 
11523449f191SAlastair D'Silva 	if (cpu_has_feature(CPU_FTR_P9_TIDR) &&
1153ec233edeSSukadev Bhattiprolu 	    old_thread->tidr != new_thread->tidr)
1154ec233edeSSukadev Bhattiprolu 		mtspr(SPRN_TIDR, new_thread->tidr);
1155152d523eSAnton Blanchard #endif
115606bb53b3SRam Pai 
115706bb53b3SRam Pai 	thread_pkey_regs_restore(new_thread, old_thread);
1158152d523eSAnton Blanchard }
1159152d523eSAnton Blanchard 
116014cf11afSPaul Mackerras struct task_struct *__switch_to(struct task_struct *prev,
116114cf11afSPaul Mackerras 	struct task_struct *new)
116214cf11afSPaul Mackerras {
116314cf11afSPaul Mackerras 	struct thread_struct *new_thread, *old_thread;
116414cf11afSPaul Mackerras 	struct task_struct *last;
1165d6bf29b4SPeter Zijlstra #ifdef CONFIG_PPC_BOOK3S_64
1166d6bf29b4SPeter Zijlstra 	struct ppc64_tlb_batch *batch;
1167d6bf29b4SPeter Zijlstra #endif
116814cf11afSPaul Mackerras 
1169152d523eSAnton Blanchard 	new_thread = &new->thread;
1170152d523eSAnton Blanchard 	old_thread = &current->thread;
1171152d523eSAnton Blanchard 
11727ba5fef7SMichael Neuling 	WARN_ON(!irqs_disabled());
11737ba5fef7SMichael Neuling 
11744e003747SMichael Ellerman #ifdef CONFIG_PPC_BOOK3S_64
117569111bacSChristoph Lameter 	batch = this_cpu_ptr(&ppc64_tlb_batch);
1176d6bf29b4SPeter Zijlstra 	if (batch->active) {
1177d6bf29b4SPeter Zijlstra 		current_thread_info()->local_flags |= _TLF_LAZY_MMU;
1178d6bf29b4SPeter Zijlstra 		if (batch->index)
1179d6bf29b4SPeter Zijlstra 			__flush_tlb_pending(batch);
1180d6bf29b4SPeter Zijlstra 		batch->active = 0;
1181d6bf29b4SPeter Zijlstra 	}
11824e003747SMichael Ellerman #endif /* CONFIG_PPC_BOOK3S_64 */
118306d67d54SPaul Mackerras 
1184f3d885ccSAnton Blanchard #ifdef CONFIG_PPC_ADV_DEBUG_REGS
1185f3d885ccSAnton Blanchard 	switch_booke_debug_regs(&new->thread.debug);
1186f3d885ccSAnton Blanchard #else
1187f3d885ccSAnton Blanchard /*
1188f3d885ccSAnton Blanchard  * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
1189f3d885ccSAnton Blanchard  * schedule DABR
1190f3d885ccSAnton Blanchard  */
1191f3d885ccSAnton Blanchard #ifndef CONFIG_HAVE_HW_BREAKPOINT
1192303e6a9dSRavi Bangoria 	switch_hw_breakpoint(new);
1193f3d885ccSAnton Blanchard #endif /* CONFIG_HAVE_HW_BREAKPOINT */
1194f3d885ccSAnton Blanchard #endif
1195f3d885ccSAnton Blanchard 
1196f3d885ccSAnton Blanchard 	/*
1197f3d885ccSAnton Blanchard 	 * We need to save SPRs before treclaim/trecheckpoint as these will
1198f3d885ccSAnton Blanchard 	 * change a number of them.
1199f3d885ccSAnton Blanchard 	 */
1200f3d885ccSAnton Blanchard 	save_sprs(&prev->thread);
1201f3d885ccSAnton Blanchard 
1202f3d885ccSAnton Blanchard 	/* Save FPU, Altivec, VSX and SPE state */
1203f3d885ccSAnton Blanchard 	giveup_all(prev);
1204f3d885ccSAnton Blanchard 
1205dc310669SCyril Bur 	__switch_to_tm(prev, new);
1206dc310669SCyril Bur 
1207e4c0fc5fSNicholas Piggin 	if (!radix_enabled()) {
120844387e9fSAnton Blanchard 		/*
1209e4c0fc5fSNicholas Piggin 		 * We can't take a PMU exception inside _switch() since there
1210e4c0fc5fSNicholas Piggin 		 * is a window where the kernel stack SLB and the kernel stack
1211e4c0fc5fSNicholas Piggin 		 * are out of sync. Hard disable here.
121244387e9fSAnton Blanchard 		 */
121344387e9fSAnton Blanchard 		hard_irq_disable();
1214e4c0fc5fSNicholas Piggin 	}
1215bc2a9408SMichael Neuling 
121620dbe670SAnton Blanchard 	/*
121720dbe670SAnton Blanchard 	 * Call restore_sprs() before calling _switch(). If we move it after
121820dbe670SAnton Blanchard 	 * _switch() then we miss out on calling it for new tasks. The reason
121920dbe670SAnton Blanchard 	 * for this is we manually create a stack frame for new tasks that
122020dbe670SAnton Blanchard 	 * directly returns through ret_from_fork() or
122120dbe670SAnton Blanchard 	 * ret_from_kernel_thread(). See copy_thread() for details.
122220dbe670SAnton Blanchard 	 */
1223f3d885ccSAnton Blanchard 	restore_sprs(old_thread, new_thread);
1224f3d885ccSAnton Blanchard 
122520dbe670SAnton Blanchard 	last = _switch(old_thread, new_thread);
122620dbe670SAnton Blanchard 
12274e003747SMichael Ellerman #ifdef CONFIG_PPC_BOOK3S_64
1228d6bf29b4SPeter Zijlstra 	if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
1229d6bf29b4SPeter Zijlstra 		current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
123069111bacSChristoph Lameter 		batch = this_cpu_ptr(&ppc64_tlb_batch);
1231d6bf29b4SPeter Zijlstra 		batch->active = 1;
1232d6bf29b4SPeter Zijlstra 	}
123370fe3d98SCyril Bur 
123405b98791SChristophe Leroy 	if (current->thread.regs) {
123505b98791SChristophe Leroy 		restore_math(current->thread.regs);
123607d2a628SNicholas Piggin 
123707d2a628SNicholas Piggin 		/*
123807d2a628SNicholas Piggin 		 * The copy-paste buffer can only store into foreign real
123907d2a628SNicholas Piggin 		 * addresses, so unprivileged processes can not see the
124007d2a628SNicholas Piggin 		 * data or use it in any way unless they have foreign real
12419d2a4d71SSukadev Bhattiprolu 		 * mappings. If the new process has the foreign real address
12429d2a4d71SSukadev Bhattiprolu 		 * mappings, we must issue a cp_abort to clear any state and
12439d2a4d71SSukadev Bhattiprolu 		 * prevent snooping, corruption or a covert channel.
124407d2a628SNicholas Piggin 		 */
1245c420644cSHaren Myneni 		if (current->mm &&
1246c420644cSHaren Myneni 			atomic_read(&current->mm->context.vas_windows))
12479d2a4d71SSukadev Bhattiprolu 			asm volatile(PPC_CP_ABORT);
124807d2a628SNicholas Piggin 	}
12494e003747SMichael Ellerman #endif /* CONFIG_PPC_BOOK3S_64 */
1250d6bf29b4SPeter Zijlstra 
125114cf11afSPaul Mackerras 	return last;
125214cf11afSPaul Mackerras }
125314cf11afSPaul Mackerras 
1254df13102fSChristophe Leroy #define NR_INSN_TO_PRINT	16
125506d67d54SPaul Mackerras 
125606d67d54SPaul Mackerras static void show_instructions(struct pt_regs *regs)
125706d67d54SPaul Mackerras {
125806d67d54SPaul Mackerras 	int i;
1259df13102fSChristophe Leroy 	unsigned long pc = regs->nip - (NR_INSN_TO_PRINT * 3 / 4 * sizeof(int));
126006d67d54SPaul Mackerras 
126106d67d54SPaul Mackerras 	printk("Instruction dump:");
126206d67d54SPaul Mackerras 
1263df13102fSChristophe Leroy 	for (i = 0; i < NR_INSN_TO_PRINT; i++) {
126406d67d54SPaul Mackerras 		int instr;
126506d67d54SPaul Mackerras 
126606d67d54SPaul Mackerras 		if (!(i % 8))
12672ffd04deSAndrew Donnellan 			pr_cont("\n");
126806d67d54SPaul Mackerras 
12690de2d820SScott Wood #if !defined(CONFIG_BOOKE)
12700de2d820SScott Wood 		/* If executing with the IMMU off, adjust pc rather
12710de2d820SScott Wood 		 * than print XXXXXXXX.
12720de2d820SScott Wood 		 */
12730de2d820SScott Wood 		if (!(regs->msr & MSR_IR))
12740de2d820SScott Wood 			pc = (unsigned long)phys_to_virt(pc);
12750de2d820SScott Wood #endif
12760de2d820SScott Wood 
127700ae36deSAnton Blanchard 		if (!__kernel_text_address(pc) ||
12783b35bd48SChristophe Leroy 		    probe_kernel_address((const void *)pc, instr)) {
12792ffd04deSAndrew Donnellan 			pr_cont("XXXXXXXX ");
128006d67d54SPaul Mackerras 		} else {
128106d67d54SPaul Mackerras 			if (regs->nip == pc)
12822ffd04deSAndrew Donnellan 				pr_cont("<%08x> ", instr);
128306d67d54SPaul Mackerras 			else
12842ffd04deSAndrew Donnellan 				pr_cont("%08x ", instr);
128506d67d54SPaul Mackerras 		}
128606d67d54SPaul Mackerras 
128706d67d54SPaul Mackerras 		pc += sizeof(int);
128806d67d54SPaul Mackerras 	}
128906d67d54SPaul Mackerras 
12902ffd04deSAndrew Donnellan 	pr_cont("\n");
129106d67d54SPaul Mackerras }
129206d67d54SPaul Mackerras 
129388b0fe17SMurilo Opsfelder Araujo void show_user_instructions(struct pt_regs *regs)
129488b0fe17SMurilo Opsfelder Araujo {
129588b0fe17SMurilo Opsfelder Araujo 	unsigned long pc;
1296df13102fSChristophe Leroy 	int n = NR_INSN_TO_PRINT;
1297fb2d9505SChristophe Leroy 	struct seq_buf s;
1298fb2d9505SChristophe Leroy 	char buf[96]; /* enough for 8 times 9 + 2 chars */
129988b0fe17SMurilo Opsfelder Araujo 
1300df13102fSChristophe Leroy 	pc = regs->nip - (NR_INSN_TO_PRINT * 3 / 4 * sizeof(int));
130188b0fe17SMurilo Opsfelder Araujo 
1302fb2d9505SChristophe Leroy 	seq_buf_init(&s, buf, sizeof(buf));
130388b0fe17SMurilo Opsfelder Araujo 
1304fb2d9505SChristophe Leroy 	while (n) {
1305fb2d9505SChristophe Leroy 		int i;
1306fb2d9505SChristophe Leroy 
1307fb2d9505SChristophe Leroy 		seq_buf_clear(&s);
1308fb2d9505SChristophe Leroy 
1309fb2d9505SChristophe Leroy 		for (i = 0; i < 8 && n; i++, n--, pc += sizeof(int)) {
131088b0fe17SMurilo Opsfelder Araujo 			int instr;
131188b0fe17SMurilo Opsfelder Araujo 
1312def0bfdbSChristophe Leroy 			if (probe_user_read(&instr, (void __user *)pc, sizeof(instr))) {
1313fb2d9505SChristophe Leroy 				seq_buf_printf(&s, "XXXXXXXX ");
1314fb2d9505SChristophe Leroy 				continue;
1315fb2d9505SChristophe Leroy 			}
1316fb2d9505SChristophe Leroy 			seq_buf_printf(&s, regs->nip == pc ? "<%08x> " : "%08x ", instr);
131788b0fe17SMurilo Opsfelder Araujo 		}
131888b0fe17SMurilo Opsfelder Araujo 
1319fb2d9505SChristophe Leroy 		if (!seq_buf_has_overflowed(&s))
1320fb2d9505SChristophe Leroy 			pr_info("%s[%d]: code: %s\n", current->comm,
1321fb2d9505SChristophe Leroy 				current->pid, s.buffer);
132288b0fe17SMurilo Opsfelder Araujo 	}
132388b0fe17SMurilo Opsfelder Araujo }
132488b0fe17SMurilo Opsfelder Araujo 
1325801c0b2cSMichael Neuling struct regbit {
132606d67d54SPaul Mackerras 	unsigned long bit;
132706d67d54SPaul Mackerras 	const char *name;
1328801c0b2cSMichael Neuling };
1329801c0b2cSMichael Neuling 
1330801c0b2cSMichael Neuling static struct regbit msr_bits[] = {
13313bfd0c9cSAnton Blanchard #if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
13323bfd0c9cSAnton Blanchard 	{MSR_SF,	"SF"},
13333bfd0c9cSAnton Blanchard 	{MSR_HV,	"HV"},
13343bfd0c9cSAnton Blanchard #endif
13353bfd0c9cSAnton Blanchard 	{MSR_VEC,	"VEC"},
13363bfd0c9cSAnton Blanchard 	{MSR_VSX,	"VSX"},
13373bfd0c9cSAnton Blanchard #ifdef CONFIG_BOOKE
13383bfd0c9cSAnton Blanchard 	{MSR_CE,	"CE"},
13393bfd0c9cSAnton Blanchard #endif
134006d67d54SPaul Mackerras 	{MSR_EE,	"EE"},
134106d67d54SPaul Mackerras 	{MSR_PR,	"PR"},
134206d67d54SPaul Mackerras 	{MSR_FP,	"FP"},
134306d67d54SPaul Mackerras 	{MSR_ME,	"ME"},
13443bfd0c9cSAnton Blanchard #ifdef CONFIG_BOOKE
13451b98326bSKumar Gala 	{MSR_DE,	"DE"},
13463bfd0c9cSAnton Blanchard #else
13473bfd0c9cSAnton Blanchard 	{MSR_SE,	"SE"},
13483bfd0c9cSAnton Blanchard 	{MSR_BE,	"BE"},
13493bfd0c9cSAnton Blanchard #endif
135006d67d54SPaul Mackerras 	{MSR_IR,	"IR"},
135106d67d54SPaul Mackerras 	{MSR_DR,	"DR"},
13523bfd0c9cSAnton Blanchard 	{MSR_PMM,	"PMM"},
13533bfd0c9cSAnton Blanchard #ifndef CONFIG_BOOKE
13543bfd0c9cSAnton Blanchard 	{MSR_RI,	"RI"},
13553bfd0c9cSAnton Blanchard 	{MSR_LE,	"LE"},
13563bfd0c9cSAnton Blanchard #endif
135706d67d54SPaul Mackerras 	{0,		NULL}
135806d67d54SPaul Mackerras };
135906d67d54SPaul Mackerras 
1360801c0b2cSMichael Neuling static void print_bits(unsigned long val, struct regbit *bits, const char *sep)
136106d67d54SPaul Mackerras {
1362801c0b2cSMichael Neuling 	const char *s = "";
136306d67d54SPaul Mackerras 
136406d67d54SPaul Mackerras 	for (; bits->bit; ++bits)
136506d67d54SPaul Mackerras 		if (val & bits->bit) {
1366db5ba5aeSMichael Ellerman 			pr_cont("%s%s", s, bits->name);
1367801c0b2cSMichael Neuling 			s = sep;
136806d67d54SPaul Mackerras 		}
1369801c0b2cSMichael Neuling }
1370801c0b2cSMichael Neuling 
1371801c0b2cSMichael Neuling #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1372801c0b2cSMichael Neuling static struct regbit msr_tm_bits[] = {
1373801c0b2cSMichael Neuling 	{MSR_TS_T,	"T"},
1374801c0b2cSMichael Neuling 	{MSR_TS_S,	"S"},
1375801c0b2cSMichael Neuling 	{MSR_TM,	"E"},
1376801c0b2cSMichael Neuling 	{0,		NULL}
1377801c0b2cSMichael Neuling };
1378801c0b2cSMichael Neuling 
1379801c0b2cSMichael Neuling static void print_tm_bits(unsigned long val)
1380801c0b2cSMichael Neuling {
1381801c0b2cSMichael Neuling /*
1382801c0b2cSMichael Neuling  * This only prints something if at least one of the TM bit is set.
1383801c0b2cSMichael Neuling  * Inside the TM[], the output means:
1384801c0b2cSMichael Neuling  *   E: Enabled		(bit 32)
1385801c0b2cSMichael Neuling  *   S: Suspended	(bit 33)
1386801c0b2cSMichael Neuling  *   T: Transactional	(bit 34)
1387801c0b2cSMichael Neuling  */
1388801c0b2cSMichael Neuling 	if (val & (MSR_TM | MSR_TS_S | MSR_TS_T)) {
1389db5ba5aeSMichael Ellerman 		pr_cont(",TM[");
1390801c0b2cSMichael Neuling 		print_bits(val, msr_tm_bits, "");
1391db5ba5aeSMichael Ellerman 		pr_cont("]");
1392801c0b2cSMichael Neuling 	}
1393801c0b2cSMichael Neuling }
1394801c0b2cSMichael Neuling #else
1395801c0b2cSMichael Neuling static void print_tm_bits(unsigned long val) {}
1396801c0b2cSMichael Neuling #endif
1397801c0b2cSMichael Neuling 
1398801c0b2cSMichael Neuling static void print_msr_bits(unsigned long val)
1399801c0b2cSMichael Neuling {
1400db5ba5aeSMichael Ellerman 	pr_cont("<");
1401801c0b2cSMichael Neuling 	print_bits(val, msr_bits, ",");
1402801c0b2cSMichael Neuling 	print_tm_bits(val);
1403db5ba5aeSMichael Ellerman 	pr_cont(">");
140406d67d54SPaul Mackerras }
140506d67d54SPaul Mackerras 
140606d67d54SPaul Mackerras #ifdef CONFIG_PPC64
1407f6f7dde3Santon@samba.org #define REG		"%016lx"
140806d67d54SPaul Mackerras #define REGS_PER_LINE	4
140906d67d54SPaul Mackerras #define LAST_VOLATILE	13
141006d67d54SPaul Mackerras #else
1411f6f7dde3Santon@samba.org #define REG		"%08lx"
141206d67d54SPaul Mackerras #define REGS_PER_LINE	8
141306d67d54SPaul Mackerras #define LAST_VOLATILE	12
141406d67d54SPaul Mackerras #endif
141506d67d54SPaul Mackerras 
141614cf11afSPaul Mackerras void show_regs(struct pt_regs * regs)
141714cf11afSPaul Mackerras {
141814cf11afSPaul Mackerras 	int i, trap;
141914cf11afSPaul Mackerras 
1420a43cb95dSTejun Heo 	show_regs_print_info(KERN_DEFAULT);
1421a43cb95dSTejun Heo 
142206d67d54SPaul Mackerras 	printk("NIP:  "REG" LR: "REG" CTR: "REG"\n",
142306d67d54SPaul Mackerras 	       regs->nip, regs->link, regs->ctr);
1424182dc9c7SMichael Ellerman 	printk("REGS: %px TRAP: %04lx   %s  (%s)\n",
142596b644bdSSerge E. Hallyn 	       regs, regs->trap, print_tainted(), init_utsname()->release);
142606d67d54SPaul Mackerras 	printk("MSR:  "REG" ", regs->msr);
1427801c0b2cSMichael Neuling 	print_msr_bits(regs->msr);
1428f6fc73fbSMichael Ellerman 	pr_cont("  CR: %08lx  XER: %08lx\n", regs->ccr, regs->xer);
142914cf11afSPaul Mackerras 	trap = TRAP(regs);
1430912237eaSNicholas Piggin 	if (!trap_is_syscall(regs) && cpu_has_feature(CPU_FTR_CFAR))
14317dae865fSMichael Ellerman 		pr_cont("CFAR: "REG" ", regs->orig_gpr3);
1432c5400649SAnton Blanchard 	if (trap == 0x200 || trap == 0x300 || trap == 0x600)
1433ba28c9aaSKumar Gala #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
14347dae865fSMichael Ellerman 		pr_cont("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
143514170789SKumar Gala #else
14367dae865fSMichael Ellerman 		pr_cont("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
14379db8bcfdSAnton Blanchard #endif
14389db8bcfdSAnton Blanchard #ifdef CONFIG_PPC64
14393130a7bbSNicholas Piggin 	pr_cont("IRQMASK: %lx ", regs->softe);
14409db8bcfdSAnton Blanchard #endif
14419db8bcfdSAnton Blanchard #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
14426d888d1aSAnton Blanchard 	if (MSR_TM_ACTIVE(regs->msr))
14437dae865fSMichael Ellerman 		pr_cont("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
144414170789SKumar Gala #endif
144514cf11afSPaul Mackerras 
144614cf11afSPaul Mackerras 	for (i = 0;  i < 32;  i++) {
144706d67d54SPaul Mackerras 		if ((i % REGS_PER_LINE) == 0)
14487dae865fSMichael Ellerman 			pr_cont("\nGPR%02d: ", i);
14497dae865fSMichael Ellerman 		pr_cont(REG " ", regs->gpr[i]);
145006d67d54SPaul Mackerras 		if (i == LAST_VOLATILE && !FULL_REGS(regs))
145114cf11afSPaul Mackerras 			break;
145214cf11afSPaul Mackerras 	}
14537dae865fSMichael Ellerman 	pr_cont("\n");
145414cf11afSPaul Mackerras #ifdef CONFIG_KALLSYMS
145514cf11afSPaul Mackerras 	/*
145614cf11afSPaul Mackerras 	 * Lookup NIP late so we have the best change of getting the
145714cf11afSPaul Mackerras 	 * above info out without failing
145814cf11afSPaul Mackerras 	 */
1459058c78f4SBenjamin Herrenschmidt 	printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1460058c78f4SBenjamin Herrenschmidt 	printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
146114cf11afSPaul Mackerras #endif
146214cf11afSPaul Mackerras 	show_stack(current, (unsigned long *) regs->gpr[1]);
146306d67d54SPaul Mackerras 	if (!user_mode(regs))
146406d67d54SPaul Mackerras 		show_instructions(regs);
146514cf11afSPaul Mackerras }
146614cf11afSPaul Mackerras 
146714cf11afSPaul Mackerras void flush_thread(void)
146814cf11afSPaul Mackerras {
1469e0780b72SK.Prasad #ifdef CONFIG_HAVE_HW_BREAKPOINT
14705aae8a53SK.Prasad 	flush_ptrace_hw_breakpoint(current);
1471e0780b72SK.Prasad #else /* CONFIG_HAVE_HW_BREAKPOINT */
14723bffb652SDave Kleikamp 	set_debug_reg_defaults(&current->thread);
1473e0780b72SK.Prasad #endif /* CONFIG_HAVE_HW_BREAKPOINT */
147414cf11afSPaul Mackerras }
147514cf11afSPaul Mackerras 
1476425d3314SNicholas Piggin #ifdef CONFIG_PPC_BOOK3S_64
1477425d3314SNicholas Piggin void arch_setup_new_exec(void)
1478425d3314SNicholas Piggin {
1479425d3314SNicholas Piggin 	if (radix_enabled())
1480425d3314SNicholas Piggin 		return;
1481425d3314SNicholas Piggin 	hash__setup_new_exec();
1482425d3314SNicholas Piggin }
1483425d3314SNicholas Piggin #endif
1484425d3314SNicholas Piggin 
1485ec233edeSSukadev Bhattiprolu #ifdef CONFIG_PPC64
148671cc64a8SAlastair D'Silva /**
148771cc64a8SAlastair D'Silva  * Assign a TIDR (thread ID) for task @t and set it in the thread
1488ec233edeSSukadev Bhattiprolu  * structure. For now, we only support setting TIDR for 'current' task.
148971cc64a8SAlastair D'Silva  *
149071cc64a8SAlastair D'Silva  * Since the TID value is a truncated form of it PID, it is possible
149171cc64a8SAlastair D'Silva  * (but unlikely) for 2 threads to have the same TID. In the unlikely event
149271cc64a8SAlastair D'Silva  * that 2 threads share the same TID and are waiting, one of the following
149371cc64a8SAlastair D'Silva  * cases will happen:
149471cc64a8SAlastair D'Silva  *
149571cc64a8SAlastair D'Silva  * 1. The correct thread is running, the wrong thread is not
149671cc64a8SAlastair D'Silva  * In this situation, the correct thread is woken and proceeds to pass it's
149771cc64a8SAlastair D'Silva  * condition check.
149871cc64a8SAlastair D'Silva  *
149971cc64a8SAlastair D'Silva  * 2. Neither threads are running
150071cc64a8SAlastair D'Silva  * In this situation, neither thread will be woken. When scheduled, the waiting
150171cc64a8SAlastair D'Silva  * threads will execute either a wait, which will return immediately, followed
150271cc64a8SAlastair D'Silva  * by a condition check, which will pass for the correct thread and fail
150371cc64a8SAlastair D'Silva  * for the wrong thread, or they will execute the condition check immediately.
150471cc64a8SAlastair D'Silva  *
150571cc64a8SAlastair D'Silva  * 3. The wrong thread is running, the correct thread is not
150671cc64a8SAlastair D'Silva  * The wrong thread will be woken, but will fail it's condition check and
150771cc64a8SAlastair D'Silva  * re-execute wait. The correct thread, when scheduled, will execute either
150871cc64a8SAlastair D'Silva  * it's condition check (which will pass), or wait, which returns immediately
150971cc64a8SAlastair D'Silva  * when called the first time after the thread is scheduled, followed by it's
151071cc64a8SAlastair D'Silva  * condition check (which will pass).
151171cc64a8SAlastair D'Silva  *
151271cc64a8SAlastair D'Silva  * 4. Both threads are running
151371cc64a8SAlastair D'Silva  * Both threads will be woken. The wrong thread will fail it's condition check
151471cc64a8SAlastair D'Silva  * and execute another wait, while the correct thread will pass it's condition
151571cc64a8SAlastair D'Silva  * check.
151671cc64a8SAlastair D'Silva  *
151771cc64a8SAlastair D'Silva  * @t: the task to set the thread ID for
1518ec233edeSSukadev Bhattiprolu  */
1519ec233edeSSukadev Bhattiprolu int set_thread_tidr(struct task_struct *t)
1520ec233edeSSukadev Bhattiprolu {
15213449f191SAlastair D'Silva 	if (!cpu_has_feature(CPU_FTR_P9_TIDR))
1522ec233edeSSukadev Bhattiprolu 		return -EINVAL;
1523ec233edeSSukadev Bhattiprolu 
1524ec233edeSSukadev Bhattiprolu 	if (t != current)
1525ec233edeSSukadev Bhattiprolu 		return -EINVAL;
1526ec233edeSSukadev Bhattiprolu 
15277e4d4233SVaibhav Jain 	if (t->thread.tidr)
15287e4d4233SVaibhav Jain 		return 0;
15297e4d4233SVaibhav Jain 
153071cc64a8SAlastair D'Silva 	t->thread.tidr = (u16)task_pid_nr(t);
1531ec233edeSSukadev Bhattiprolu 	mtspr(SPRN_TIDR, t->thread.tidr);
1532ec233edeSSukadev Bhattiprolu 
1533ec233edeSSukadev Bhattiprolu 	return 0;
1534ec233edeSSukadev Bhattiprolu }
1535b1db5513SChristophe Lombard EXPORT_SYMBOL_GPL(set_thread_tidr);
1536ec233edeSSukadev Bhattiprolu 
1537ec233edeSSukadev Bhattiprolu #endif /* CONFIG_PPC64 */
1538ec233edeSSukadev Bhattiprolu 
153914cf11afSPaul Mackerras void
154014cf11afSPaul Mackerras release_thread(struct task_struct *t)
154114cf11afSPaul Mackerras {
154214cf11afSPaul Mackerras }
154314cf11afSPaul Mackerras 
154414cf11afSPaul Mackerras /*
154555ccf3feSSuresh Siddha  * this gets called so that we can store coprocessor state into memory and
154655ccf3feSSuresh Siddha  * copy the current task into the new thread.
154714cf11afSPaul Mackerras  */
154855ccf3feSSuresh Siddha int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
154914cf11afSPaul Mackerras {
1550579e633eSAnton Blanchard 	flush_all_to_thread(src);
1551621b5060SMichael Neuling 	/*
1552621b5060SMichael Neuling 	 * Flush TM state out so we can copy it.  __switch_to_tm() does this
1553621b5060SMichael Neuling 	 * flush but it removes the checkpointed state from the current CPU and
1554621b5060SMichael Neuling 	 * transitions the CPU out of TM mode.  Hence we need to call
1555621b5060SMichael Neuling 	 * tm_recheckpoint_new_task() (on the same task) to restore the
1556621b5060SMichael Neuling 	 * checkpointed state back and the TM mode.
15575d176f75SCyril Bur 	 *
15585d176f75SCyril Bur 	 * Can't pass dst because it isn't ready. Doesn't matter, passing
15595d176f75SCyril Bur 	 * dst is only important for __switch_to()
1560621b5060SMichael Neuling 	 */
1561dc310669SCyril Bur 	__switch_to_tm(src, src);
1562330a1eb7SMichael Ellerman 
156355ccf3feSSuresh Siddha 	*dst = *src;
1564330a1eb7SMichael Ellerman 
1565330a1eb7SMichael Ellerman 	clear_task_ebb(dst);
1566330a1eb7SMichael Ellerman 
156755ccf3feSSuresh Siddha 	return 0;
156814cf11afSPaul Mackerras }
156914cf11afSPaul Mackerras 
1570cec15488SMichael Ellerman static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1571cec15488SMichael Ellerman {
15724e003747SMichael Ellerman #ifdef CONFIG_PPC_BOOK3S_64
1573cec15488SMichael Ellerman 	unsigned long sp_vsid;
1574cec15488SMichael Ellerman 	unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1575cec15488SMichael Ellerman 
1576caca285eSAneesh Kumar K.V 	if (radix_enabled())
1577caca285eSAneesh Kumar K.V 		return;
1578caca285eSAneesh Kumar K.V 
1579cec15488SMichael Ellerman 	if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1580cec15488SMichael Ellerman 		sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1581cec15488SMichael Ellerman 			<< SLB_VSID_SHIFT_1T;
1582cec15488SMichael Ellerman 	else
1583cec15488SMichael Ellerman 		sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1584cec15488SMichael Ellerman 			<< SLB_VSID_SHIFT;
1585cec15488SMichael Ellerman 	sp_vsid |= SLB_VSID_KERNEL | llp;
1586cec15488SMichael Ellerman 	p->thread.ksp_vsid = sp_vsid;
1587cec15488SMichael Ellerman #endif
1588cec15488SMichael Ellerman }
1589cec15488SMichael Ellerman 
159014cf11afSPaul Mackerras /*
159114cf11afSPaul Mackerras  * Copy a thread..
159214cf11afSPaul Mackerras  */
1593efcac658SAlexey Kardashevskiy 
15946eca8933SAlex Dowad /*
15956eca8933SAlex Dowad  * Copy architecture-specific thread state
15966eca8933SAlex Dowad  */
1597facd04a9SNicholas Piggin int copy_thread_tls(unsigned long clone_flags, unsigned long usp,
1598facd04a9SNicholas Piggin 		unsigned long kthread_arg, struct task_struct *p,
1599facd04a9SNicholas Piggin 		unsigned long tls)
160014cf11afSPaul Mackerras {
160114cf11afSPaul Mackerras 	struct pt_regs *childregs, *kregs;
160214cf11afSPaul Mackerras 	extern void ret_from_fork(void);
160358254e10SAl Viro 	extern void ret_from_kernel_thread(void);
160458254e10SAl Viro 	void (*f)(void);
16050cec6fd1SAl Viro 	unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
16065d31a96eSMichael Ellerman 	struct thread_info *ti = task_thread_info(p);
16076b424efaSRavi Bangoria #ifdef CONFIG_HAVE_HW_BREAKPOINT
16086b424efaSRavi Bangoria 	int i;
16096b424efaSRavi Bangoria #endif
16105d31a96eSMichael Ellerman 
1611ed1cd6deSChristophe Leroy 	klp_init_thread_info(p);
161214cf11afSPaul Mackerras 
161314cf11afSPaul Mackerras 	/* Copy registers */
161414cf11afSPaul Mackerras 	sp -= sizeof(struct pt_regs);
161514cf11afSPaul Mackerras 	childregs = (struct pt_regs *) sp;
1616ab75819dSAl Viro 	if (unlikely(p->flags & PF_KTHREAD)) {
16176eca8933SAlex Dowad 		/* kernel thread */
161858254e10SAl Viro 		memset(childregs, 0, sizeof(struct pt_regs));
161914cf11afSPaul Mackerras 		childregs->gpr[1] = sp + sizeof(struct pt_regs);
16207cedd601SAnton Blanchard 		/* function */
16217cedd601SAnton Blanchard 		if (usp)
16227cedd601SAnton Blanchard 			childregs->gpr[14] = ppc_function_entry((void *)usp);
162358254e10SAl Viro #ifdef CONFIG_PPC64
1624b5e2fc1cSAl Viro 		clear_tsk_thread_flag(p, TIF_32BIT);
1625c2e480baSMadhavan Srinivasan 		childregs->softe = IRQS_ENABLED;
162606d67d54SPaul Mackerras #endif
16276eca8933SAlex Dowad 		childregs->gpr[15] = kthread_arg;
162814cf11afSPaul Mackerras 		p->thread.regs = NULL;	/* no user register state */
1629138d1ce8SAl Viro 		ti->flags |= _TIF_RESTOREALL;
163058254e10SAl Viro 		f = ret_from_kernel_thread;
163114cf11afSPaul Mackerras 	} else {
16326eca8933SAlex Dowad 		/* user thread */
1633afa86fc4SAl Viro 		struct pt_regs *regs = current_pt_regs();
163458254e10SAl Viro 		CHECK_FULL_REGS(regs);
163558254e10SAl Viro 		*childregs = *regs;
1636ea516b11SAl Viro 		if (usp)
163714cf11afSPaul Mackerras 			childregs->gpr[1] = usp;
163814cf11afSPaul Mackerras 		p->thread.regs = childregs;
163958254e10SAl Viro 		childregs->gpr[3] = 0;  /* Result from fork() */
164006d67d54SPaul Mackerras 		if (clone_flags & CLONE_SETTLS) {
16419904b005SDenis Kirjanov 			if (!is_32bit_task())
1642facd04a9SNicholas Piggin 				childregs->gpr[13] = tls;
164306d67d54SPaul Mackerras 			else
1644facd04a9SNicholas Piggin 				childregs->gpr[2] = tls;
164514cf11afSPaul Mackerras 		}
164658254e10SAl Viro 
164758254e10SAl Viro 		f = ret_from_fork;
164806d67d54SPaul Mackerras 	}
1649d272f667SCyril Bur 	childregs->msr &= ~(MSR_FP|MSR_VEC|MSR_VSX);
165014cf11afSPaul Mackerras 	sp -= STACK_FRAME_OVERHEAD;
165114cf11afSPaul Mackerras 
165214cf11afSPaul Mackerras 	/*
165314cf11afSPaul Mackerras 	 * The way this works is that at some point in the future
165414cf11afSPaul Mackerras 	 * some task will call _switch to switch to the new task.
165514cf11afSPaul Mackerras 	 * That will pop off the stack frame created below and start
165614cf11afSPaul Mackerras 	 * the new task running at ret_from_fork.  The new task will
165714cf11afSPaul Mackerras 	 * do some house keeping and then return from the fork or clone
165814cf11afSPaul Mackerras 	 * system call, using the stack frame created above.
165914cf11afSPaul Mackerras 	 */
1660af945cf4SLi Zhong 	((unsigned long *)sp)[0] = 0;
166114cf11afSPaul Mackerras 	sp -= sizeof(struct pt_regs);
166214cf11afSPaul Mackerras 	kregs = (struct pt_regs *) sp;
166314cf11afSPaul Mackerras 	sp -= STACK_FRAME_OVERHEAD;
166414cf11afSPaul Mackerras 	p->thread.ksp = sp;
1665cbc9565eSBenjamin Herrenschmidt #ifdef CONFIG_PPC32
1666a7916a1dSChristophe Leroy 	p->thread.ksp_limit = (unsigned long)end_of_stack(p);
1667cbc9565eSBenjamin Herrenschmidt #endif
166828d170abSOleg Nesterov #ifdef CONFIG_HAVE_HW_BREAKPOINT
16696b424efaSRavi Bangoria 	for (i = 0; i < nr_wp_slots(); i++)
16706b424efaSRavi Bangoria 		p->thread.ptrace_bps[i] = NULL;
167128d170abSOleg Nesterov #endif
167228d170abSOleg Nesterov 
167318461960SPaul Mackerras 	p->thread.fp_save_area = NULL;
167418461960SPaul Mackerras #ifdef CONFIG_ALTIVEC
167518461960SPaul Mackerras 	p->thread.vr_save_area = NULL;
167618461960SPaul Mackerras #endif
167718461960SPaul Mackerras 
1678cec15488SMichael Ellerman 	setup_ksp_vsid(p, sp);
167906d67d54SPaul Mackerras 
1680efcac658SAlexey Kardashevskiy #ifdef CONFIG_PPC64
1681efcac658SAlexey Kardashevskiy 	if (cpu_has_feature(CPU_FTR_DSCR)) {
16821021cb26SAnton Blanchard 		p->thread.dscr_inherit = current->thread.dscr_inherit;
1683db1231dcSAnton Blanchard 		p->thread.dscr = mfspr(SPRN_DSCR);
1684efcac658SAlexey Kardashevskiy 	}
168592779245SHaren Myneni 	if (cpu_has_feature(CPU_FTR_HAS_PPR))
16864c2de74cSNicholas Piggin 		childregs->ppr = DEFAULT_PPR;
1687ec233edeSSukadev Bhattiprolu 
1688ec233edeSSukadev Bhattiprolu 	p->thread.tidr = 0;
1689efcac658SAlexey Kardashevskiy #endif
16907cedd601SAnton Blanchard 	kregs->nip = ppc_function_entry(f);
169114cf11afSPaul Mackerras 	return 0;
169214cf11afSPaul Mackerras }
169314cf11afSPaul Mackerras 
16945434ae74SNicholas Piggin void preload_new_slb_context(unsigned long start, unsigned long sp);
16955434ae74SNicholas Piggin 
169614cf11afSPaul Mackerras /*
169714cf11afSPaul Mackerras  * Set up a thread for executing a new program
169814cf11afSPaul Mackerras  */
169906d67d54SPaul Mackerras void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
170014cf11afSPaul Mackerras {
170190eac727SMichael Ellerman #ifdef CONFIG_PPC64
170290eac727SMichael Ellerman 	unsigned long load_addr = regs->gpr[2];	/* saved by ELF_PLAT_INIT */
17035434ae74SNicholas Piggin 
17045434ae74SNicholas Piggin #ifdef CONFIG_PPC_BOOK3S_64
1705f89bd8baSAneesh Kumar K.V 	if (!radix_enabled())
17065434ae74SNicholas Piggin 		preload_new_slb_context(start, sp);
17075434ae74SNicholas Piggin #endif
170890eac727SMichael Ellerman #endif
170990eac727SMichael Ellerman 
171006d67d54SPaul Mackerras 	/*
171106d67d54SPaul Mackerras 	 * If we exec out of a kernel thread then thread.regs will not be
171206d67d54SPaul Mackerras 	 * set.  Do it now.
171306d67d54SPaul Mackerras 	 */
171406d67d54SPaul Mackerras 	if (!current->thread.regs) {
17150cec6fd1SAl Viro 		struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
17160cec6fd1SAl Viro 		current->thread.regs = regs - 1;
171706d67d54SPaul Mackerras 	}
171806d67d54SPaul Mackerras 
17198e96a87cSCyril Bur #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
17208e96a87cSCyril Bur 	/*
17218e96a87cSCyril Bur 	 * Clear any transactional state, we're exec()ing. The cause is
17228e96a87cSCyril Bur 	 * not important as there will never be a recheckpoint so it's not
17238e96a87cSCyril Bur 	 * user visible.
17248e96a87cSCyril Bur 	 */
17258e96a87cSCyril Bur 	if (MSR_TM_SUSPENDED(mfmsr()))
17268e96a87cSCyril Bur 		tm_reclaim_current(0);
17278e96a87cSCyril Bur #endif
17288e96a87cSCyril Bur 
172914cf11afSPaul Mackerras 	memset(regs->gpr, 0, sizeof(regs->gpr));
173014cf11afSPaul Mackerras 	regs->ctr = 0;
173114cf11afSPaul Mackerras 	regs->link = 0;
173214cf11afSPaul Mackerras 	regs->xer = 0;
173314cf11afSPaul Mackerras 	regs->ccr = 0;
173414cf11afSPaul Mackerras 	regs->gpr[1] = sp;
173506d67d54SPaul Mackerras 
1736474f8196SRoland McGrath 	/*
1737474f8196SRoland McGrath 	 * We have just cleared all the nonvolatile GPRs, so make
1738474f8196SRoland McGrath 	 * FULL_REGS(regs) return true.  This is necessary to allow
1739474f8196SRoland McGrath 	 * ptrace to examine the thread immediately after exec.
1740474f8196SRoland McGrath 	 */
1741feb9df34SNicholas Piggin 	SET_FULL_REGS(regs);
1742474f8196SRoland McGrath 
174306d67d54SPaul Mackerras #ifdef CONFIG_PPC32
174406d67d54SPaul Mackerras 	regs->mq = 0;
174506d67d54SPaul Mackerras 	regs->nip = start;
174614cf11afSPaul Mackerras 	regs->msr = MSR_USER;
174706d67d54SPaul Mackerras #else
17489904b005SDenis Kirjanov 	if (!is_32bit_task()) {
174994af3abfSRusty Russell 		unsigned long entry;
175006d67d54SPaul Mackerras 
175194af3abfSRusty Russell 		if (is_elf2_task()) {
175294af3abfSRusty Russell 			/* Look ma, no function descriptors! */
175394af3abfSRusty Russell 			entry = start;
175494af3abfSRusty Russell 
175594af3abfSRusty Russell 			/*
175694af3abfSRusty Russell 			 * Ulrich says:
175794af3abfSRusty Russell 			 *   The latest iteration of the ABI requires that when
175894af3abfSRusty Russell 			 *   calling a function (at its global entry point),
175994af3abfSRusty Russell 			 *   the caller must ensure r12 holds the entry point
176094af3abfSRusty Russell 			 *   address (so that the function can quickly
176194af3abfSRusty Russell 			 *   establish addressability).
176294af3abfSRusty Russell 			 */
176394af3abfSRusty Russell 			regs->gpr[12] = start;
176494af3abfSRusty Russell 			/* Make sure that's restored on entry to userspace. */
176594af3abfSRusty Russell 			set_thread_flag(TIF_RESTOREALL);
176694af3abfSRusty Russell 		} else {
176794af3abfSRusty Russell 			unsigned long toc;
176894af3abfSRusty Russell 
176994af3abfSRusty Russell 			/* start is a relocated pointer to the function
177094af3abfSRusty Russell 			 * descriptor for the elf _start routine.  The first
177194af3abfSRusty Russell 			 * entry in the function descriptor is the entry
177294af3abfSRusty Russell 			 * address of _start and the second entry is the TOC
177394af3abfSRusty Russell 			 * value we need to use.
177406d67d54SPaul Mackerras 			 */
177506d67d54SPaul Mackerras 			__get_user(entry, (unsigned long __user *)start);
177606d67d54SPaul Mackerras 			__get_user(toc, (unsigned long __user *)start+1);
177706d67d54SPaul Mackerras 
177806d67d54SPaul Mackerras 			/* Check whether the e_entry function descriptor entries
177906d67d54SPaul Mackerras 			 * need to be relocated before we can use them.
178006d67d54SPaul Mackerras 			 */
178106d67d54SPaul Mackerras 			if (load_addr != 0) {
178206d67d54SPaul Mackerras 				entry += load_addr;
178306d67d54SPaul Mackerras 				toc   += load_addr;
178406d67d54SPaul Mackerras 			}
178506d67d54SPaul Mackerras 			regs->gpr[2] = toc;
178694af3abfSRusty Russell 		}
178794af3abfSRusty Russell 		regs->nip = entry;
178806d67d54SPaul Mackerras 		regs->msr = MSR_USER64;
1789d4bf9a78SStephen Rothwell 	} else {
1790d4bf9a78SStephen Rothwell 		regs->nip = start;
1791d4bf9a78SStephen Rothwell 		regs->gpr[2] = 0;
1792d4bf9a78SStephen Rothwell 		regs->msr = MSR_USER32;
179306d67d54SPaul Mackerras 	}
179406d67d54SPaul Mackerras #endif
1795ce48b210SMichael Neuling #ifdef CONFIG_VSX
1796ce48b210SMichael Neuling 	current->thread.used_vsr = 0;
1797ce48b210SMichael Neuling #endif
17985434ae74SNicholas Piggin 	current->thread.load_slb = 0;
17991195892cSBreno Leitao 	current->thread.load_fp = 0;
1800de79f7b9SPaul Mackerras 	memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
180118461960SPaul Mackerras 	current->thread.fp_save_area = NULL;
180214cf11afSPaul Mackerras #ifdef CONFIG_ALTIVEC
1803de79f7b9SPaul Mackerras 	memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1804de79f7b9SPaul Mackerras 	current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
180518461960SPaul Mackerras 	current->thread.vr_save_area = NULL;
180614cf11afSPaul Mackerras 	current->thread.vrsave = 0;
180714cf11afSPaul Mackerras 	current->thread.used_vr = 0;
18081195892cSBreno Leitao 	current->thread.load_vec = 0;
180914cf11afSPaul Mackerras #endif /* CONFIG_ALTIVEC */
181014cf11afSPaul Mackerras #ifdef CONFIG_SPE
181114cf11afSPaul Mackerras 	memset(current->thread.evr, 0, sizeof(current->thread.evr));
181214cf11afSPaul Mackerras 	current->thread.acc = 0;
181314cf11afSPaul Mackerras 	current->thread.spefscr = 0;
181414cf11afSPaul Mackerras 	current->thread.used_spe = 0;
181514cf11afSPaul Mackerras #endif /* CONFIG_SPE */
1816bc2a9408SMichael Neuling #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1817bc2a9408SMichael Neuling 	current->thread.tm_tfhar = 0;
1818bc2a9408SMichael Neuling 	current->thread.tm_texasr = 0;
1819bc2a9408SMichael Neuling 	current->thread.tm_tfiar = 0;
18207f22ced4SBreno Leitao 	current->thread.load_tm = 0;
1821bc2a9408SMichael Neuling #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
182206bb53b3SRam Pai 
182306bb53b3SRam Pai 	thread_pkey_regs_init(&current->thread);
182414cf11afSPaul Mackerras }
1825e1802b06SAnton Blanchard EXPORT_SYMBOL(start_thread);
182614cf11afSPaul Mackerras 
182714cf11afSPaul Mackerras #define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
182814cf11afSPaul Mackerras 		| PR_FP_EXC_RES | PR_FP_EXC_INV)
182914cf11afSPaul Mackerras 
183014cf11afSPaul Mackerras int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
183114cf11afSPaul Mackerras {
183214cf11afSPaul Mackerras 	struct pt_regs *regs = tsk->thread.regs;
183314cf11afSPaul Mackerras 
183414cf11afSPaul Mackerras 	/* This is a bit hairy.  If we are an SPE enabled  processor
183514cf11afSPaul Mackerras 	 * (have embedded fp) we store the IEEE exception enable flags in
183614cf11afSPaul Mackerras 	 * fpexc_mode.  fpexc_mode is also used for setting FP exception
183714cf11afSPaul Mackerras 	 * mode (asyn, precise, disabled) for 'Classic' FP. */
183814cf11afSPaul Mackerras 	if (val & PR_FP_EXC_SW_ENABLE) {
183914cf11afSPaul Mackerras #ifdef CONFIG_SPE
18405e14d21eSKumar Gala 		if (cpu_has_feature(CPU_FTR_SPE)) {
1841640e9225SJoseph Myers 			/*
1842640e9225SJoseph Myers 			 * When the sticky exception bits are set
1843640e9225SJoseph Myers 			 * directly by userspace, it must call prctl
1844640e9225SJoseph Myers 			 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1845640e9225SJoseph Myers 			 * in the existing prctl settings) or
1846640e9225SJoseph Myers 			 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1847640e9225SJoseph Myers 			 * the bits being set).  <fenv.h> functions
1848640e9225SJoseph Myers 			 * saving and restoring the whole
1849640e9225SJoseph Myers 			 * floating-point environment need to do so
1850640e9225SJoseph Myers 			 * anyway to restore the prctl settings from
1851640e9225SJoseph Myers 			 * the saved environment.
1852640e9225SJoseph Myers 			 */
1853640e9225SJoseph Myers 			tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
185414cf11afSPaul Mackerras 			tsk->thread.fpexc_mode = val &
185514cf11afSPaul Mackerras 				(PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
185606d67d54SPaul Mackerras 			return 0;
18575e14d21eSKumar Gala 		} else {
18585e14d21eSKumar Gala 			return -EINVAL;
18595e14d21eSKumar Gala 		}
186014cf11afSPaul Mackerras #else
186114cf11afSPaul Mackerras 		return -EINVAL;
186214cf11afSPaul Mackerras #endif
186306d67d54SPaul Mackerras 	}
186406d67d54SPaul Mackerras 
186514cf11afSPaul Mackerras 	/* on a CONFIG_SPE this does not hurt us.  The bits that
186614cf11afSPaul Mackerras 	 * __pack_fe01 use do not overlap with bits used for
186714cf11afSPaul Mackerras 	 * PR_FP_EXC_SW_ENABLE.  Additionally, the MSR[FE0,FE1] bits
186814cf11afSPaul Mackerras 	 * on CONFIG_SPE implementations are reserved so writing to
186914cf11afSPaul Mackerras 	 * them does not change anything */
187014cf11afSPaul Mackerras 	if (val > PR_FP_EXC_PRECISE)
187114cf11afSPaul Mackerras 		return -EINVAL;
187214cf11afSPaul Mackerras 	tsk->thread.fpexc_mode = __pack_fe01(val);
187314cf11afSPaul Mackerras 	if (regs != NULL && (regs->msr & MSR_FP) != 0)
187414cf11afSPaul Mackerras 		regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
187514cf11afSPaul Mackerras 			| tsk->thread.fpexc_mode;
187614cf11afSPaul Mackerras 	return 0;
187714cf11afSPaul Mackerras }
187814cf11afSPaul Mackerras 
187914cf11afSPaul Mackerras int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
188014cf11afSPaul Mackerras {
188114cf11afSPaul Mackerras 	unsigned int val;
188214cf11afSPaul Mackerras 
188314cf11afSPaul Mackerras 	if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
188414cf11afSPaul Mackerras #ifdef CONFIG_SPE
1885640e9225SJoseph Myers 		if (cpu_has_feature(CPU_FTR_SPE)) {
1886640e9225SJoseph Myers 			/*
1887640e9225SJoseph Myers 			 * When the sticky exception bits are set
1888640e9225SJoseph Myers 			 * directly by userspace, it must call prctl
1889640e9225SJoseph Myers 			 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1890640e9225SJoseph Myers 			 * in the existing prctl settings) or
1891640e9225SJoseph Myers 			 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1892640e9225SJoseph Myers 			 * the bits being set).  <fenv.h> functions
1893640e9225SJoseph Myers 			 * saving and restoring the whole
1894640e9225SJoseph Myers 			 * floating-point environment need to do so
1895640e9225SJoseph Myers 			 * anyway to restore the prctl settings from
1896640e9225SJoseph Myers 			 * the saved environment.
1897640e9225SJoseph Myers 			 */
1898640e9225SJoseph Myers 			tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
189914cf11afSPaul Mackerras 			val = tsk->thread.fpexc_mode;
1900640e9225SJoseph Myers 		} else
19015e14d21eSKumar Gala 			return -EINVAL;
190214cf11afSPaul Mackerras #else
190314cf11afSPaul Mackerras 		return -EINVAL;
190414cf11afSPaul Mackerras #endif
190514cf11afSPaul Mackerras 	else
190614cf11afSPaul Mackerras 		val = __unpack_fe01(tsk->thread.fpexc_mode);
190714cf11afSPaul Mackerras 	return put_user(val, (unsigned int __user *) adr);
190814cf11afSPaul Mackerras }
190914cf11afSPaul Mackerras 
1910fab5db97SPaul Mackerras int set_endian(struct task_struct *tsk, unsigned int val)
1911fab5db97SPaul Mackerras {
1912fab5db97SPaul Mackerras 	struct pt_regs *regs = tsk->thread.regs;
1913fab5db97SPaul Mackerras 
1914fab5db97SPaul Mackerras 	if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1915fab5db97SPaul Mackerras 	    (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1916fab5db97SPaul Mackerras 		return -EINVAL;
1917fab5db97SPaul Mackerras 
1918fab5db97SPaul Mackerras 	if (regs == NULL)
1919fab5db97SPaul Mackerras 		return -EINVAL;
1920fab5db97SPaul Mackerras 
1921fab5db97SPaul Mackerras 	if (val == PR_ENDIAN_BIG)
1922fab5db97SPaul Mackerras 		regs->msr &= ~MSR_LE;
1923fab5db97SPaul Mackerras 	else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1924fab5db97SPaul Mackerras 		regs->msr |= MSR_LE;
1925fab5db97SPaul Mackerras 	else
1926fab5db97SPaul Mackerras 		return -EINVAL;
1927fab5db97SPaul Mackerras 
1928fab5db97SPaul Mackerras 	return 0;
1929fab5db97SPaul Mackerras }
1930fab5db97SPaul Mackerras 
1931fab5db97SPaul Mackerras int get_endian(struct task_struct *tsk, unsigned long adr)
1932fab5db97SPaul Mackerras {
1933fab5db97SPaul Mackerras 	struct pt_regs *regs = tsk->thread.regs;
1934fab5db97SPaul Mackerras 	unsigned int val;
1935fab5db97SPaul Mackerras 
1936fab5db97SPaul Mackerras 	if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1937fab5db97SPaul Mackerras 	    !cpu_has_feature(CPU_FTR_REAL_LE))
1938fab5db97SPaul Mackerras 		return -EINVAL;
1939fab5db97SPaul Mackerras 
1940fab5db97SPaul Mackerras 	if (regs == NULL)
1941fab5db97SPaul Mackerras 		return -EINVAL;
1942fab5db97SPaul Mackerras 
1943fab5db97SPaul Mackerras 	if (regs->msr & MSR_LE) {
1944fab5db97SPaul Mackerras 		if (cpu_has_feature(CPU_FTR_REAL_LE))
1945fab5db97SPaul Mackerras 			val = PR_ENDIAN_LITTLE;
1946fab5db97SPaul Mackerras 		else
1947fab5db97SPaul Mackerras 			val = PR_ENDIAN_PPC_LITTLE;
1948fab5db97SPaul Mackerras 	} else
1949fab5db97SPaul Mackerras 		val = PR_ENDIAN_BIG;
1950fab5db97SPaul Mackerras 
1951fab5db97SPaul Mackerras 	return put_user(val, (unsigned int __user *)adr);
1952fab5db97SPaul Mackerras }
1953fab5db97SPaul Mackerras 
1954e9370ae1SPaul Mackerras int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1955e9370ae1SPaul Mackerras {
1956e9370ae1SPaul Mackerras 	tsk->thread.align_ctl = val;
1957e9370ae1SPaul Mackerras 	return 0;
1958e9370ae1SPaul Mackerras }
1959e9370ae1SPaul Mackerras 
1960e9370ae1SPaul Mackerras int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1961e9370ae1SPaul Mackerras {
1962e9370ae1SPaul Mackerras 	return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1963e9370ae1SPaul Mackerras }
1964e9370ae1SPaul Mackerras 
1965bb72c481SPaul Mackerras static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1966bb72c481SPaul Mackerras 				  unsigned long nbytes)
1967bb72c481SPaul Mackerras {
1968bb72c481SPaul Mackerras 	unsigned long stack_page;
1969bb72c481SPaul Mackerras 	unsigned long cpu = task_cpu(p);
1970bb72c481SPaul Mackerras 
1971bb72c481SPaul Mackerras 	stack_page = (unsigned long)hardirq_ctx[cpu];
1972a7916a1dSChristophe Leroy 	if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1973bb72c481SPaul Mackerras 		return 1;
1974bb72c481SPaul Mackerras 
1975bb72c481SPaul Mackerras 	stack_page = (unsigned long)softirq_ctx[cpu];
1976a7916a1dSChristophe Leroy 	if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1977bb72c481SPaul Mackerras 		return 1;
1978a7916a1dSChristophe Leroy 
1979bb72c481SPaul Mackerras 	return 0;
1980bb72c481SPaul Mackerras }
1981bb72c481SPaul Mackerras 
1982a2e36683SNicholas Piggin static inline int valid_emergency_stack(unsigned long sp, struct task_struct *p,
1983a2e36683SNicholas Piggin 					unsigned long nbytes)
1984a2e36683SNicholas Piggin {
1985a2e36683SNicholas Piggin #ifdef CONFIG_PPC64
1986a2e36683SNicholas Piggin 	unsigned long stack_page;
1987a2e36683SNicholas Piggin 	unsigned long cpu = task_cpu(p);
1988a2e36683SNicholas Piggin 
1989a2e36683SNicholas Piggin 	stack_page = (unsigned long)paca_ptrs[cpu]->emergency_sp - THREAD_SIZE;
1990a2e36683SNicholas Piggin 	if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1991a2e36683SNicholas Piggin 		return 1;
1992a2e36683SNicholas Piggin 
1993a2e36683SNicholas Piggin # ifdef CONFIG_PPC_BOOK3S_64
1994a2e36683SNicholas Piggin 	stack_page = (unsigned long)paca_ptrs[cpu]->nmi_emergency_sp - THREAD_SIZE;
1995a2e36683SNicholas Piggin 	if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1996a2e36683SNicholas Piggin 		return 1;
1997a2e36683SNicholas Piggin 
1998a2e36683SNicholas Piggin 	stack_page = (unsigned long)paca_ptrs[cpu]->mc_emergency_sp - THREAD_SIZE;
1999a2e36683SNicholas Piggin 	if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
2000a2e36683SNicholas Piggin 		return 1;
2001a2e36683SNicholas Piggin # endif
2002a2e36683SNicholas Piggin #endif
2003a2e36683SNicholas Piggin 
2004a2e36683SNicholas Piggin 	return 0;
2005a2e36683SNicholas Piggin }
2006a2e36683SNicholas Piggin 
2007a2e36683SNicholas Piggin 
20082f25194dSAnton Blanchard int validate_sp(unsigned long sp, struct task_struct *p,
200914cf11afSPaul Mackerras 		       unsigned long nbytes)
201014cf11afSPaul Mackerras {
20110cec6fd1SAl Viro 	unsigned long stack_page = (unsigned long)task_stack_page(p);
201214cf11afSPaul Mackerras 
2013a7916a1dSChristophe Leroy 	if (sp < THREAD_SIZE)
2014a7916a1dSChristophe Leroy 		return 0;
2015a7916a1dSChristophe Leroy 
2016a7916a1dSChristophe Leroy 	if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
201714cf11afSPaul Mackerras 		return 1;
201814cf11afSPaul Mackerras 
2019a2e36683SNicholas Piggin 	if (valid_irq_stack(sp, p, nbytes))
2020a2e36683SNicholas Piggin 		return 1;
2021a2e36683SNicholas Piggin 
2022a2e36683SNicholas Piggin 	return valid_emergency_stack(sp, p, nbytes);
202314cf11afSPaul Mackerras }
202414cf11afSPaul Mackerras 
20252f25194dSAnton Blanchard EXPORT_SYMBOL(validate_sp);
20262f25194dSAnton Blanchard 
2027018cce33SChristophe Leroy static unsigned long __get_wchan(struct task_struct *p)
202806d67d54SPaul Mackerras {
202906d67d54SPaul Mackerras 	unsigned long ip, sp;
203006d67d54SPaul Mackerras 	int count = 0;
203106d67d54SPaul Mackerras 
203206d67d54SPaul Mackerras 	if (!p || p == current || p->state == TASK_RUNNING)
203306d67d54SPaul Mackerras 		return 0;
203406d67d54SPaul Mackerras 
203506d67d54SPaul Mackerras 	sp = p->thread.ksp;
2036ec2b36b9SBenjamin Herrenschmidt 	if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
203706d67d54SPaul Mackerras 		return 0;
203806d67d54SPaul Mackerras 
203906d67d54SPaul Mackerras 	do {
204006d67d54SPaul Mackerras 		sp = *(unsigned long *)sp;
20414ca360f3SKautuk Consul 		if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD) ||
20424ca360f3SKautuk Consul 		    p->state == TASK_RUNNING)
204306d67d54SPaul Mackerras 			return 0;
204406d67d54SPaul Mackerras 		if (count > 0) {
2045ec2b36b9SBenjamin Herrenschmidt 			ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
204606d67d54SPaul Mackerras 			if (!in_sched_functions(ip))
204706d67d54SPaul Mackerras 				return ip;
204806d67d54SPaul Mackerras 		}
204906d67d54SPaul Mackerras 	} while (count++ < 16);
205006d67d54SPaul Mackerras 	return 0;
205106d67d54SPaul Mackerras }
205206d67d54SPaul Mackerras 
2053018cce33SChristophe Leroy unsigned long get_wchan(struct task_struct *p)
2054018cce33SChristophe Leroy {
2055018cce33SChristophe Leroy 	unsigned long ret;
2056018cce33SChristophe Leroy 
2057018cce33SChristophe Leroy 	if (!try_get_task_stack(p))
2058018cce33SChristophe Leroy 		return 0;
2059018cce33SChristophe Leroy 
2060018cce33SChristophe Leroy 	ret = __get_wchan(p);
2061018cce33SChristophe Leroy 
2062018cce33SChristophe Leroy 	put_task_stack(p);
2063018cce33SChristophe Leroy 
2064018cce33SChristophe Leroy 	return ret;
2065018cce33SChristophe Leroy }
2066018cce33SChristophe Leroy 
2067c4d04be1SJohannes Berg static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
206814cf11afSPaul Mackerras 
206914cf11afSPaul Mackerras void show_stack(struct task_struct *tsk, unsigned long *stack)
207014cf11afSPaul Mackerras {
207106d67d54SPaul Mackerras 	unsigned long sp, ip, lr, newsp;
207214cf11afSPaul Mackerras 	int count = 0;
207306d67d54SPaul Mackerras 	int firstframe = 1;
20746794c782SSteven Rostedt #ifdef CONFIG_FUNCTION_GRAPH_TRACER
20757c1bb6bbSNaveen N. Rao 	unsigned long ret_addr;
20767c1bb6bbSNaveen N. Rao 	int ftrace_idx = 0;
20776794c782SSteven Rostedt #endif
207814cf11afSPaul Mackerras 
207914cf11afSPaul Mackerras 	if (tsk == NULL)
208014cf11afSPaul Mackerras 		tsk = current;
2081018cce33SChristophe Leroy 
2082018cce33SChristophe Leroy 	if (!try_get_task_stack(tsk))
2083018cce33SChristophe Leroy 		return;
2084018cce33SChristophe Leroy 
2085018cce33SChristophe Leroy 	sp = (unsigned long) stack;
208614cf11afSPaul Mackerras 	if (sp == 0) {
208714cf11afSPaul Mackerras 		if (tsk == current)
20883d13e839SMichael Ellerman 			sp = current_stack_frame();
208914cf11afSPaul Mackerras 		else
209014cf11afSPaul Mackerras 			sp = tsk->thread.ksp;
209114cf11afSPaul Mackerras 	}
209214cf11afSPaul Mackerras 
209306d67d54SPaul Mackerras 	lr = 0;
209406d67d54SPaul Mackerras 	printk("Call Trace:\n");
209514cf11afSPaul Mackerras 	do {
2096ec2b36b9SBenjamin Herrenschmidt 		if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
2097018cce33SChristophe Leroy 			break;
209806d67d54SPaul Mackerras 
209906d67d54SPaul Mackerras 		stack = (unsigned long *) sp;
210006d67d54SPaul Mackerras 		newsp = stack[0];
2101ec2b36b9SBenjamin Herrenschmidt 		ip = stack[STACK_FRAME_LR_SAVE];
210206d67d54SPaul Mackerras 		if (!firstframe || ip != lr) {
2103058c78f4SBenjamin Herrenschmidt 			printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
21046794c782SSteven Rostedt #ifdef CONFIG_FUNCTION_GRAPH_TRACER
21057c1bb6bbSNaveen N. Rao 			ret_addr = ftrace_graph_ret_addr(current,
21067c1bb6bbSNaveen N. Rao 						&ftrace_idx, ip, stack);
21077c1bb6bbSNaveen N. Rao 			if (ret_addr != ip)
21087c1bb6bbSNaveen N. Rao 				pr_cont(" (%pS)", (void *)ret_addr);
21096794c782SSteven Rostedt #endif
211006d67d54SPaul Mackerras 			if (firstframe)
21119a1f490fSMichael Ellerman 				pr_cont(" (unreliable)");
21129a1f490fSMichael Ellerman 			pr_cont("\n");
211314cf11afSPaul Mackerras 		}
211406d67d54SPaul Mackerras 		firstframe = 0;
211506d67d54SPaul Mackerras 
211606d67d54SPaul Mackerras 		/*
211706d67d54SPaul Mackerras 		 * See if this is an exception frame.
211806d67d54SPaul Mackerras 		 * We look for the "regshere" marker in the current frame.
211906d67d54SPaul Mackerras 		 */
2120ec2b36b9SBenjamin Herrenschmidt 		if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
2121ec2b36b9SBenjamin Herrenschmidt 		    && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
212206d67d54SPaul Mackerras 			struct pt_regs *regs = (struct pt_regs *)
212306d67d54SPaul Mackerras 				(sp + STACK_FRAME_OVERHEAD);
212406d67d54SPaul Mackerras 			lr = regs->link;
21259be9be2eSPaul Mackerras 			printk("--- interrupt: %lx at %pS\n    LR = %pS\n",
2126058c78f4SBenjamin Herrenschmidt 			       regs->trap, (void *)regs->nip, (void *)lr);
212706d67d54SPaul Mackerras 			firstframe = 1;
212814cf11afSPaul Mackerras 		}
212906d67d54SPaul Mackerras 
213006d67d54SPaul Mackerras 		sp = newsp;
213106d67d54SPaul Mackerras 	} while (count++ < kstack_depth_to_print);
2132018cce33SChristophe Leroy 
2133018cce33SChristophe Leroy 	put_task_stack(tsk);
213406d67d54SPaul Mackerras }
213506d67d54SPaul Mackerras 
2136cb2c9b27SAnton Blanchard #ifdef CONFIG_PPC64
2137fe1952fcSBenjamin Herrenschmidt /* Called with hard IRQs off */
21380e37739bSMichael Ellerman void notrace __ppc64_runlatch_on(void)
2139cb2c9b27SAnton Blanchard {
2140fe1952fcSBenjamin Herrenschmidt 	struct thread_info *ti = current_thread_info();
2141d1d0d5ffSNicholas Piggin 
2142d1d0d5ffSNicholas Piggin 	if (cpu_has_feature(CPU_FTR_ARCH_206)) {
2143d1d0d5ffSNicholas Piggin 		/*
2144d1d0d5ffSNicholas Piggin 		 * Least significant bit (RUN) is the only writable bit of
2145d1d0d5ffSNicholas Piggin 		 * the CTRL register, so we can avoid mfspr. 2.06 is not the
2146d1d0d5ffSNicholas Piggin 		 * earliest ISA where this is the case, but it's convenient.
2147d1d0d5ffSNicholas Piggin 		 */
2148d1d0d5ffSNicholas Piggin 		mtspr(SPRN_CTRLT, CTRL_RUNLATCH);
2149d1d0d5ffSNicholas Piggin 	} else {
2150cb2c9b27SAnton Blanchard 		unsigned long ctrl;
2151cb2c9b27SAnton Blanchard 
2152d1d0d5ffSNicholas Piggin 		/*
2153d1d0d5ffSNicholas Piggin 		 * Some architectures (e.g., Cell) have writable fields other
2154d1d0d5ffSNicholas Piggin 		 * than RUN, so do the read-modify-write.
2155d1d0d5ffSNicholas Piggin 		 */
2156cb2c9b27SAnton Blanchard 		ctrl = mfspr(SPRN_CTRLF);
2157cb2c9b27SAnton Blanchard 		ctrl |= CTRL_RUNLATCH;
2158cb2c9b27SAnton Blanchard 		mtspr(SPRN_CTRLT, ctrl);
2159d1d0d5ffSNicholas Piggin 	}
2160cb2c9b27SAnton Blanchard 
2161fae2e0fbSBenjamin Herrenschmidt 	ti->local_flags |= _TLF_RUNLATCH;
2162cb2c9b27SAnton Blanchard }
2163cb2c9b27SAnton Blanchard 
2164fe1952fcSBenjamin Herrenschmidt /* Called with hard IRQs off */
21650e37739bSMichael Ellerman void notrace __ppc64_runlatch_off(void)
2166cb2c9b27SAnton Blanchard {
2167fe1952fcSBenjamin Herrenschmidt 	struct thread_info *ti = current_thread_info();
2168cb2c9b27SAnton Blanchard 
2169fae2e0fbSBenjamin Herrenschmidt 	ti->local_flags &= ~_TLF_RUNLATCH;
2170cb2c9b27SAnton Blanchard 
2171d1d0d5ffSNicholas Piggin 	if (cpu_has_feature(CPU_FTR_ARCH_206)) {
2172d1d0d5ffSNicholas Piggin 		mtspr(SPRN_CTRLT, 0);
2173d1d0d5ffSNicholas Piggin 	} else {
2174d1d0d5ffSNicholas Piggin 		unsigned long ctrl;
2175d1d0d5ffSNicholas Piggin 
2176cb2c9b27SAnton Blanchard 		ctrl = mfspr(SPRN_CTRLF);
2177cb2c9b27SAnton Blanchard 		ctrl &= ~CTRL_RUNLATCH;
2178cb2c9b27SAnton Blanchard 		mtspr(SPRN_CTRLT, ctrl);
2179cb2c9b27SAnton Blanchard 	}
2180d1d0d5ffSNicholas Piggin }
2181fe1952fcSBenjamin Herrenschmidt #endif /* CONFIG_PPC64 */
2182f6a61680SBenjamin Herrenschmidt 
2183d839088cSAnton Blanchard unsigned long arch_align_stack(unsigned long sp)
2184d839088cSAnton Blanchard {
2185d839088cSAnton Blanchard 	if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
2186d839088cSAnton Blanchard 		sp -= get_random_int() & ~PAGE_MASK;
2187d839088cSAnton Blanchard 	return sp & ~0xf;
2188d839088cSAnton Blanchard }
2189912f9ee2SAnton Blanchard 
2190912f9ee2SAnton Blanchard static inline unsigned long brk_rnd(void)
2191912f9ee2SAnton Blanchard {
2192912f9ee2SAnton Blanchard         unsigned long rnd = 0;
2193912f9ee2SAnton Blanchard 
2194912f9ee2SAnton Blanchard 	/* 8MB for 32bit, 1GB for 64bit */
2195912f9ee2SAnton Blanchard 	if (is_32bit_task())
21965ef11c35SDaniel Cashman 		rnd = (get_random_long() % (1UL<<(23-PAGE_SHIFT)));
2197912f9ee2SAnton Blanchard 	else
21985ef11c35SDaniel Cashman 		rnd = (get_random_long() % (1UL<<(30-PAGE_SHIFT)));
2199912f9ee2SAnton Blanchard 
2200912f9ee2SAnton Blanchard 	return rnd << PAGE_SHIFT;
2201912f9ee2SAnton Blanchard }
2202912f9ee2SAnton Blanchard 
2203912f9ee2SAnton Blanchard unsigned long arch_randomize_brk(struct mm_struct *mm)
2204912f9ee2SAnton Blanchard {
22058bbde7a7SAnton Blanchard 	unsigned long base = mm->brk;
22068bbde7a7SAnton Blanchard 	unsigned long ret;
22078bbde7a7SAnton Blanchard 
22084e003747SMichael Ellerman #ifdef CONFIG_PPC_BOOK3S_64
22098bbde7a7SAnton Blanchard 	/*
22108bbde7a7SAnton Blanchard 	 * If we are using 1TB segments and we are allowed to randomise
22118bbde7a7SAnton Blanchard 	 * the heap, we can put it above 1TB so it is backed by a 1TB
22128bbde7a7SAnton Blanchard 	 * segment. Otherwise the heap will be in the bottom 1TB
22138bbde7a7SAnton Blanchard 	 * which always uses 256MB segments and this may result in a
2214caca285eSAneesh Kumar K.V 	 * performance penalty. We don't need to worry about radix. For
2215caca285eSAneesh Kumar K.V 	 * radix, mmu_highuser_ssize remains unchanged from 256MB.
22168bbde7a7SAnton Blanchard 	 */
22178bbde7a7SAnton Blanchard 	if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
22188bbde7a7SAnton Blanchard 		base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
22198bbde7a7SAnton Blanchard #endif
22208bbde7a7SAnton Blanchard 
22218bbde7a7SAnton Blanchard 	ret = PAGE_ALIGN(base + brk_rnd());
2222912f9ee2SAnton Blanchard 
2223912f9ee2SAnton Blanchard 	if (ret < mm->brk)
2224912f9ee2SAnton Blanchard 		return mm->brk;
2225912f9ee2SAnton Blanchard 
2226912f9ee2SAnton Blanchard 	return ret;
2227912f9ee2SAnton Blanchard }
2228501cb16dSAnton Blanchard 
2229