blob: 5bf8ec2597d42aebcc117199f7419183b72fc74e [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002 * Derived from "arch/i386/kernel/process.c"
3 * Copyright (C) 1995 Linus Torvalds
4 *
5 * Updated and modified by Cort Dougan (cort@cs.nmt.edu) and
6 * Paul Mackerras (paulus@cs.anu.edu.au)
7 *
8 * PowerPC version
9 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
Paul Mackerras14cf11a2005-09-26 16:04:21 +100017#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/smp.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100022#include <linux/stddef.h>
23#include <linux/unistd.h>
24#include <linux/ptrace.h>
25#include <linux/slab.h>
26#include <linux/user.h>
27#include <linux/elf.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100028#include <linux/prctl.h>
29#include <linux/init_task.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040030#include <linux/export.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031#include <linux/kallsyms.h>
32#include <linux/mqueue.h>
33#include <linux/hardirq.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100034#include <linux/utsname.h>
Steven Rostedt6794c782009-02-09 21:10:27 -080035#include <linux/ftrace.h>
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010036#include <linux/kernel_stat.h>
Anton Blanchardd8390882009-02-22 01:50:03 +000037#include <linux/personality.h>
38#include <linux/random.h>
K.Prasad5aae8a52010-06-15 11:35:19 +053039#include <linux/hw_breakpoint.h>
Anton Blanchard7b051f62014-10-13 20:27:15 +110040#include <linux/uaccess.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100041
42#include <asm/pgtable.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043#include <asm/io.h>
44#include <asm/processor.h>
45#include <asm/mmu.h>
46#include <asm/prom.h>
Michael Ellerman76032de2005-11-07 13:12:03 +110047#include <asm/machdep.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110048#include <asm/time.h>
David Howellsae3a1972012-03-28 18:30:02 +010049#include <asm/runlatch.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010050#include <asm/syscalls.h>
David Howellsae3a1972012-03-28 18:30:02 +010051#include <asm/switch_to.h>
Michael Neulingfb096922013-02-13 16:21:37 +000052#include <asm/tm.h>
David Howellsae3a1972012-03-28 18:30:02 +010053#include <asm/debug.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100054#ifdef CONFIG_PPC64
55#include <asm/firmware.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100056#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +110057#include <asm/code-patching.h>
Luis Machadod6a61bf2008-07-24 02:10:41 +100058#include <linux/kprobes.h>
59#include <linux/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100060
Michael Neuling8b3c34c2013-02-13 16:21:32 +000061/* Transactional Memory debug */
62#ifdef TM_DEBUG_SW
63#define TM_DEBUG(x...) printk(KERN_INFO x)
64#else
65#define TM_DEBUG(x...) do { } while(0)
66#endif
67
Paul Mackerras14cf11a2005-09-26 16:04:21 +100068extern unsigned long _get_SP(void);
69
Paul Mackerrasd31626f2014-01-13 15:56:29 +110070#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110071static void check_if_tm_restore_required(struct task_struct *tsk)
Paul Mackerrasd31626f2014-01-13 15:56:29 +110072{
73 /*
74 * If we are saving the current thread's registers, and the
75 * thread is in a transactional state, set the TIF_RESTORE_TM
76 * bit so that we know to restore the registers before
77 * returning to userspace.
78 */
79 if (tsk == current && tsk->thread.regs &&
80 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
81 !test_thread_flag(TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +053082 tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +110083 set_thread_flag(TIF_RESTORE_TM);
84 }
Paul Mackerrasd31626f2014-01-13 15:56:29 +110085}
Paul Mackerrasd31626f2014-01-13 15:56:29 +110086#else
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110087static inline void check_if_tm_restore_required(struct task_struct *tsk) { }
Paul Mackerrasd31626f2014-01-13 15:56:29 +110088#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
89
Kevin Hao037f0ee2013-07-14 17:02:05 +080090#ifdef CONFIG_PPC_FPU
Paul Mackerras14cf11a2005-09-26 16:04:21 +100091/*
92 * Make sure the floating-point register state in the
93 * the thread_struct is up to date for task tsk.
94 */
95void flush_fp_to_thread(struct task_struct *tsk)
96{
97 if (tsk->thread.regs) {
98 /*
99 * We need to disable preemption here because if we didn't,
100 * another process could get scheduled after the regs->msr
101 * test but before we have finished saving the FP registers
102 * to the thread_struct. That process could take over the
103 * FPU, and then when we get scheduled again we would store
104 * bogus values for the remaining FP registers.
105 */
106 preempt_disable();
107 if (tsk->thread.regs->msr & MSR_FP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000108 /*
109 * This should only ever be called for current or
110 * for a stopped child process. Since we save away
Anton Blanchardaf1bbc32015-10-29 11:43:57 +1100111 * the FP register state on context switch,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000112 * there is something wrong if a stopped child appears
113 * to still have its FP state in the CPU registers.
114 */
115 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100116 check_if_tm_restore_required(tsk);
117 giveup_fpu(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000118 }
119 preempt_enable();
120 }
121}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000122EXPORT_SYMBOL_GPL(flush_fp_to_thread);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100123#endif /* CONFIG_PPC_FPU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000124
125void enable_kernel_fp(void)
126{
127 WARN_ON(preemptible());
128
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100129 if (current->thread.regs && (current->thread.regs->msr & MSR_FP)) {
130 check_if_tm_restore_required(current);
131 giveup_fpu(current);
132 } else {
Anton Blanchard611b0e52015-10-29 11:43:59 +1100133 u64 oldmsr = mfmsr();
134
135 if (!(oldmsr & MSR_FP))
136 mtmsr_isync(oldmsr | MSR_FP);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100137 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000138}
139EXPORT_SYMBOL(enable_kernel_fp);
140
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000141#ifdef CONFIG_ALTIVEC
142void enable_kernel_altivec(void)
143{
144 WARN_ON(preemptible());
145
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100146 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC)) {
147 check_if_tm_restore_required(current);
148 giveup_altivec(current);
149 } else {
Anton Blanchard611b0e52015-10-29 11:43:59 +1100150 u64 oldmsr = mfmsr();
151
152 if (!(oldmsr & MSR_VEC))
153 mtmsr_isync(oldmsr | MSR_VEC);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100154 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000155}
156EXPORT_SYMBOL(enable_kernel_altivec);
157
158/*
159 * Make sure the VMX/Altivec register state in the
160 * the thread_struct is up to date for task tsk.
161 */
162void flush_altivec_to_thread(struct task_struct *tsk)
163{
164 if (tsk->thread.regs) {
165 preempt_disable();
166 if (tsk->thread.regs->msr & MSR_VEC) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000167 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100168 check_if_tm_restore_required(tsk);
169 giveup_altivec(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000170 }
171 preempt_enable();
172 }
173}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000174EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000175#endif /* CONFIG_ALTIVEC */
176
Michael Neulingce48b212008-06-25 14:07:18 +1000177#ifdef CONFIG_VSX
Michael Neulingce48b212008-06-25 14:07:18 +1000178void enable_kernel_vsx(void)
179{
180 WARN_ON(preemptible());
181
Anton Blanchard611b0e52015-10-29 11:43:59 +1100182 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX)) {
Michael Neulingce48b212008-06-25 14:07:18 +1000183 giveup_vsx(current);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100184 } else {
185 u64 oldmsr = mfmsr();
186
187 if (!(oldmsr & MSR_VSX))
188 mtmsr_isync(oldmsr | MSR_VSX);
189 }
Michael Neulingce48b212008-06-25 14:07:18 +1000190}
191EXPORT_SYMBOL(enable_kernel_vsx);
Michael Neulingce48b212008-06-25 14:07:18 +1000192
Michael Neuling7c292172008-07-11 16:29:12 +1000193void giveup_vsx(struct task_struct *tsk)
194{
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100195 check_if_tm_restore_required(tsk);
196 giveup_fpu(tsk);
197 giveup_altivec(tsk);
Michael Neuling7c292172008-07-11 16:29:12 +1000198 __giveup_vsx(tsk);
199}
Anton Blancharde1802b02014-08-20 08:00:02 +1000200EXPORT_SYMBOL(giveup_vsx);
Michael Neuling7c292172008-07-11 16:29:12 +1000201
Michael Neulingce48b212008-06-25 14:07:18 +1000202void flush_vsx_to_thread(struct task_struct *tsk)
203{
204 if (tsk->thread.regs) {
205 preempt_disable();
206 if (tsk->thread.regs->msr & MSR_VSX) {
Michael Neulingce48b212008-06-25 14:07:18 +1000207 BUG_ON(tsk != current);
Michael Neulingce48b212008-06-25 14:07:18 +1000208 giveup_vsx(tsk);
209 }
210 preempt_enable();
211 }
212}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000213EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000214#endif /* CONFIG_VSX */
215
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000216#ifdef CONFIG_SPE
217
218void enable_kernel_spe(void)
219{
220 WARN_ON(preemptible());
221
Anton Blanchard611b0e52015-10-29 11:43:59 +1100222 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE)) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000223 giveup_spe(current);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100224 } else {
225 u64 oldmsr = mfmsr();
226
227 if (!(oldmsr & MSR_SPE))
228 mtmsr_isync(oldmsr | MSR_SPE);
229 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000230}
231EXPORT_SYMBOL(enable_kernel_spe);
232
233void flush_spe_to_thread(struct task_struct *tsk)
234{
235 if (tsk->thread.regs) {
236 preempt_disable();
237 if (tsk->thread.regs->msr & MSR_SPE) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000238 BUG_ON(tsk != current);
yu liu685659e2011-06-14 18:34:25 -0500239 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500240 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000241 }
242 preempt_enable();
243 }
244}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000245#endif /* CONFIG_SPE */
246
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000247#ifdef CONFIG_PPC_ADV_DEBUG_REGS
248void do_send_trap(struct pt_regs *regs, unsigned long address,
249 unsigned long error_code, int signal_code, int breakpt)
250{
251 siginfo_t info;
252
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000253 current->thread.trap_nr = signal_code;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000254 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
255 11, SIGSEGV) == NOTIFY_STOP)
256 return;
257
258 /* Deliver the signal to userspace */
259 info.si_signo = SIGTRAP;
260 info.si_errno = breakpt; /* breakpoint or watchpoint id */
261 info.si_code = signal_code;
262 info.si_addr = (void __user *)address;
263 force_sig_info(SIGTRAP, &info, current);
264}
265#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000266void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000267 unsigned long error_code)
268{
269 siginfo_t info;
270
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000271 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000272 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
273 11, SIGSEGV) == NOTIFY_STOP)
274 return;
275
Michael Neuling9422de32012-12-20 14:06:44 +0000276 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000277 return;
278
Michael Neuling9422de32012-12-20 14:06:44 +0000279 /* Clear the breakpoint */
280 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000281
282 /* Deliver the signal to userspace */
283 info.si_signo = SIGTRAP;
284 info.si_errno = 0;
285 info.si_code = TRAP_HWBKPT;
286 info.si_addr = (void __user *)address;
287 force_sig_info(SIGTRAP, &info, current);
288}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000289#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000290
Michael Neuling9422de32012-12-20 14:06:44 +0000291static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100292
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000293#ifdef CONFIG_PPC_ADV_DEBUG_REGS
294/*
295 * Set the debug registers back to their default "safe" values.
296 */
297static void set_debug_reg_defaults(struct thread_struct *thread)
298{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530299 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000300#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530301 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000302#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530303 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000304#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530305 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000306#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530307 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000308#ifdef CONFIG_BOOKE
309 /*
310 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
311 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530312 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000313 DBCR1_IAC3US | DBCR1_IAC4US;
314 /*
315 * Force Data Address Compare User/Supervisor bits to be User-only
316 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
317 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530318 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000319#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530320 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000321#endif
322}
323
Scott Woodf5f97212013-11-22 15:52:29 -0600324static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000325{
Scott Wood6cecf762013-05-13 14:14:53 +0000326 /*
327 * We could have inherited MSR_DE from userspace, since
328 * it doesn't get cleared on exception entry. Make sure
329 * MSR_DE is clear before we enable any debug events.
330 */
331 mtmsr(mfmsr() & ~MSR_DE);
332
Scott Woodf5f97212013-11-22 15:52:29 -0600333 mtspr(SPRN_IAC1, debug->iac1);
334 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000335#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600336 mtspr(SPRN_IAC3, debug->iac3);
337 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000338#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600339 mtspr(SPRN_DAC1, debug->dac1);
340 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000341#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600342 mtspr(SPRN_DVC1, debug->dvc1);
343 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000344#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600345 mtspr(SPRN_DBCR0, debug->dbcr0);
346 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000347#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600348 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000349#endif
350}
351/*
352 * Unless neither the old or new thread are making use of the
353 * debug registers, set the debug registers from the values
354 * stored in the new thread.
355 */
Scott Woodf5f97212013-11-22 15:52:29 -0600356void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000357{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530358 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600359 || (new_debug->dbcr0 & DBCR0_IDM))
360 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000361}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530362EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000363#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000364#ifndef CONFIG_HAVE_HW_BREAKPOINT
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000365static void set_debug_reg_defaults(struct thread_struct *thread)
366{
Michael Neuling9422de32012-12-20 14:06:44 +0000367 thread->hw_brk.address = 0;
368 thread->hw_brk.type = 0;
Michael Neulingb9818c32013-01-10 14:25:34 +0000369 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000370}
K.Prasade0780b72011-02-10 04:44:35 +0000371#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000372#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
373
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000374#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000375static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
376{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000377 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000378#ifdef CONFIG_PPC_47x
379 isync();
380#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000381 return 0;
382}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000383#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000384static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
385{
Michael Ellermancab0af92005-11-03 15:30:49 +1100386 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000387 if (cpu_has_feature(CPU_FTR_DABRX))
388 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100389 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000390}
Michael Neuling9422de32012-12-20 14:06:44 +0000391#else
392static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
393{
394 return -EINVAL;
395}
396#endif
397
398static inline int set_dabr(struct arch_hw_breakpoint *brk)
399{
400 unsigned long dabr, dabrx;
401
402 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
403 dabrx = ((brk->type >> 3) & 0x7);
404
405 if (ppc_md.set_dabr)
406 return ppc_md.set_dabr(dabr, dabrx);
407
408 return __set_dabr(dabr, dabrx);
409}
410
Michael Neulingbf99de32012-12-20 14:06:45 +0000411static inline int set_dawr(struct arch_hw_breakpoint *brk)
412{
Michael Neuling05d694e2013-01-24 15:02:58 +0000413 unsigned long dawr, dawrx, mrd;
Michael Neulingbf99de32012-12-20 14:06:45 +0000414
415 dawr = brk->address;
416
417 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
418 << (63 - 58); //* read/write bits */
419 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
420 << (63 - 59); //* translate */
421 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
422 >> 3; //* PRIM bits */
Michael Neuling05d694e2013-01-24 15:02:58 +0000423 /* dawr length is stored in field MDR bits 48:53. Matches range in
424 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
425 0b111111=64DW.
426 brk->len is in bytes.
427 This aligns up to double word size, shifts and does the bias.
428 */
429 mrd = ((brk->len + 7) >> 3) - 1;
430 dawrx |= (mrd & 0x3f) << (63 - 53);
Michael Neulingbf99de32012-12-20 14:06:45 +0000431
432 if (ppc_md.set_dawr)
433 return ppc_md.set_dawr(dawr, dawrx);
434 mtspr(SPRN_DAWR, dawr);
435 mtspr(SPRN_DAWRX, dawrx);
436 return 0;
437}
438
Paul Gortmaker21f58502014-04-29 15:25:17 -0400439void __set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000440{
Christoph Lameter69111ba2014-10-21 15:23:25 -0500441 memcpy(this_cpu_ptr(&current_brk), brk, sizeof(*brk));
Michael Neuling9422de32012-12-20 14:06:44 +0000442
Michael Neulingbf99de32012-12-20 14:06:45 +0000443 if (cpu_has_feature(CPU_FTR_DAWR))
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400444 set_dawr(brk);
445 else
446 set_dabr(brk);
Michael Neuling9422de32012-12-20 14:06:44 +0000447}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000448
Paul Gortmaker21f58502014-04-29 15:25:17 -0400449void set_breakpoint(struct arch_hw_breakpoint *brk)
450{
451 preempt_disable();
452 __set_breakpoint(brk);
453 preempt_enable();
454}
455
Paul Mackerras06d67d52005-10-10 22:29:05 +1000456#ifdef CONFIG_PPC64
457DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000458#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000459
Michael Neuling9422de32012-12-20 14:06:44 +0000460static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
461 struct arch_hw_breakpoint *b)
462{
463 if (a->address != b->address)
464 return false;
465 if (a->type != b->type)
466 return false;
467 if (a->len != b->len)
468 return false;
469 return true;
470}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100471
Michael Neulingfb096922013-02-13 16:21:37 +0000472#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100473static void tm_reclaim_thread(struct thread_struct *thr,
474 struct thread_info *ti, uint8_t cause)
475{
476 unsigned long msr_diff = 0;
477
478 /*
479 * If FP/VSX registers have been already saved to the
480 * thread_struct, move them to the transact_fp array.
481 * We clear the TIF_RESTORE_TM bit since after the reclaim
482 * the thread will no longer be transactional.
483 */
484 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +0530485 msr_diff = thr->ckpt_regs.msr & ~thr->regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100486 if (msr_diff & MSR_FP)
487 memcpy(&thr->transact_fp, &thr->fp_state,
488 sizeof(struct thread_fp_state));
489 if (msr_diff & MSR_VEC)
490 memcpy(&thr->transact_vr, &thr->vr_state,
491 sizeof(struct thread_vr_state));
492 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
493 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
494 }
495
496 tm_reclaim(thr, thr->regs->msr, cause);
497
498 /* Having done the reclaim, we now have the checkpointed
499 * FP/VSX values in the registers. These might be valid
500 * even if we have previously called enable_kernel_fp() or
501 * flush_fp_to_thread(), so update thr->regs->msr to
502 * indicate their current validity.
503 */
504 thr->regs->msr |= msr_diff;
505}
506
507void tm_reclaim_current(uint8_t cause)
508{
509 tm_enable();
510 tm_reclaim_thread(&current->thread, current_thread_info(), cause);
511}
512
Michael Neulingfb096922013-02-13 16:21:37 +0000513static inline void tm_reclaim_task(struct task_struct *tsk)
514{
515 /* We have to work out if we're switching from/to a task that's in the
516 * middle of a transaction.
517 *
518 * In switching we need to maintain a 2nd register state as
519 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
520 * checkpointed (tbegin) state in ckpt_regs and saves the transactional
521 * (current) FPRs into oldtask->thread.transact_fpr[].
522 *
523 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
524 */
525 struct thread_struct *thr = &tsk->thread;
526
527 if (!thr->regs)
528 return;
529
530 if (!MSR_TM_ACTIVE(thr->regs->msr))
531 goto out_and_saveregs;
532
533 /* Stash the original thread MSR, as giveup_fpu et al will
534 * modify it. We hold onto it to see whether the task used
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100535 * FP & vector regs. If the TIF_RESTORE_TM flag is set,
Anshuman Khandual829023d2015-07-06 16:24:10 +0530536 * ckpt_regs.msr is already set.
Michael Neulingfb096922013-02-13 16:21:37 +0000537 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100538 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
Anshuman Khandual829023d2015-07-06 16:24:10 +0530539 thr->ckpt_regs.msr = thr->regs->msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000540
541 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
542 "ccr=%lx, msr=%lx, trap=%lx)\n",
543 tsk->pid, thr->regs->nip,
544 thr->regs->ccr, thr->regs->msr,
545 thr->regs->trap);
546
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100547 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000548
549 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
550 tsk->pid);
551
552out_and_saveregs:
553 /* Always save the regs here, even if a transaction's not active.
554 * This context-switches a thread's TM info SPRs. We do it here to
555 * be consistent with the restore path (in recheckpoint) which
556 * cannot happen later in _switch().
557 */
558 tm_save_sprs(thr);
559}
560
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100561extern void __tm_recheckpoint(struct thread_struct *thread,
562 unsigned long orig_msr);
563
564void tm_recheckpoint(struct thread_struct *thread,
565 unsigned long orig_msr)
566{
567 unsigned long flags;
568
569 /* We really can't be interrupted here as the TEXASR registers can't
570 * change and later in the trecheckpoint code, we have a userspace R1.
571 * So let's hard disable over this region.
572 */
573 local_irq_save(flags);
574 hard_irq_disable();
575
576 /* The TM SPRs are restored here, so that TEXASR.FS can be set
577 * before the trecheckpoint and no explosion occurs.
578 */
579 tm_restore_sprs(thread);
580
581 __tm_recheckpoint(thread, orig_msr);
582
583 local_irq_restore(flags);
584}
585
Michael Neulingbc2a9402013-02-13 16:21:40 +0000586static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000587{
588 unsigned long msr;
589
590 if (!cpu_has_feature(CPU_FTR_TM))
591 return;
592
593 /* Recheckpoint the registers of the thread we're about to switch to.
594 *
595 * If the task was using FP, we non-lazily reload both the original and
596 * the speculative FP register states. This is because the kernel
597 * doesn't see if/when a TM rollback occurs, so if we take an FP
598 * unavoidable later, we are unable to determine which set of FP regs
599 * need to be restored.
600 */
601 if (!new->thread.regs)
602 return;
603
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100604 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
605 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000606 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100607 }
Anshuman Khandual829023d2015-07-06 16:24:10 +0530608 msr = new->thread.ckpt_regs.msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000609 /* Recheckpoint to restore original checkpointed register state. */
610 TM_DEBUG("*** tm_recheckpoint of pid %d "
611 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
612 new->pid, new->thread.regs->msr, msr);
613
614 /* This loads the checkpointed FP/VEC state, if used */
615 tm_recheckpoint(&new->thread, msr);
616
617 /* This loads the speculative FP/VEC state, if used */
618 if (msr & MSR_FP) {
619 do_load_up_transact_fpu(&new->thread);
620 new->thread.regs->msr |=
621 (MSR_FP | new->thread.fpexc_mode);
622 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000623#ifdef CONFIG_ALTIVEC
Michael Neulingfb096922013-02-13 16:21:37 +0000624 if (msr & MSR_VEC) {
625 do_load_up_transact_altivec(&new->thread);
626 new->thread.regs->msr |= MSR_VEC;
627 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000628#endif
Michael Neulingfb096922013-02-13 16:21:37 +0000629 /* We may as well turn on VSX too since all the state is restored now */
630 if (msr & MSR_VSX)
631 new->thread.regs->msr |= MSR_VSX;
632
633 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
634 "(kernel msr 0x%lx)\n",
635 new->pid, mfmsr());
636}
637
638static inline void __switch_to_tm(struct task_struct *prev)
639{
640 if (cpu_has_feature(CPU_FTR_TM)) {
641 tm_enable();
642 tm_reclaim_task(prev);
643 }
644}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100645
646/*
647 * This is called if we are on the way out to userspace and the
648 * TIF_RESTORE_TM flag is set. It checks if we need to reload
649 * FP and/or vector state and does so if necessary.
650 * If userspace is inside a transaction (whether active or
651 * suspended) and FP/VMX/VSX instructions have ever been enabled
652 * inside that transaction, then we have to keep them enabled
653 * and keep the FP/VMX/VSX state loaded while ever the transaction
654 * continues. The reason is that if we didn't, and subsequently
655 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
656 * we don't know whether it's the same transaction, and thus we
657 * don't know which of the checkpointed state and the transactional
658 * state to use.
659 */
660void restore_tm_state(struct pt_regs *regs)
661{
662 unsigned long msr_diff;
663
664 clear_thread_flag(TIF_RESTORE_TM);
665 if (!MSR_TM_ACTIVE(regs->msr))
666 return;
667
Anshuman Khandual829023d2015-07-06 16:24:10 +0530668 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100669 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
670 if (msr_diff & MSR_FP) {
671 fp_enable();
672 load_fp_state(&current->thread.fp_state);
673 regs->msr |= current->thread.fpexc_mode;
674 }
675 if (msr_diff & MSR_VEC) {
676 vec_enable();
677 load_vr_state(&current->thread.vr_state);
678 }
679 regs->msr |= msr_diff;
680}
681
Michael Neulingfb096922013-02-13 16:21:37 +0000682#else
683#define tm_recheckpoint_new_task(new)
684#define __switch_to_tm(prev)
685#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +0000686
Anton Blanchard152d5232015-10-29 11:43:55 +1100687static inline void save_sprs(struct thread_struct *t)
688{
689#ifdef CONFIG_ALTIVEC
690 if (cpu_has_feature(cpu_has_feature(CPU_FTR_ALTIVEC)))
691 t->vrsave = mfspr(SPRN_VRSAVE);
692#endif
693#ifdef CONFIG_PPC_BOOK3S_64
694 if (cpu_has_feature(CPU_FTR_DSCR))
695 t->dscr = mfspr(SPRN_DSCR);
696
697 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
698 t->bescr = mfspr(SPRN_BESCR);
699 t->ebbhr = mfspr(SPRN_EBBHR);
700 t->ebbrr = mfspr(SPRN_EBBRR);
701
702 t->fscr = mfspr(SPRN_FSCR);
703
704 /*
705 * Note that the TAR is not available for use in the kernel.
706 * (To provide this, the TAR should be backed up/restored on
707 * exception entry/exit instead, and be in pt_regs. FIXME,
708 * this should be in pt_regs anyway (for debug).)
709 */
710 t->tar = mfspr(SPRN_TAR);
711 }
712#endif
713}
714
715static inline void restore_sprs(struct thread_struct *old_thread,
716 struct thread_struct *new_thread)
717{
718#ifdef CONFIG_ALTIVEC
719 if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
720 old_thread->vrsave != new_thread->vrsave)
721 mtspr(SPRN_VRSAVE, new_thread->vrsave);
722#endif
723#ifdef CONFIG_PPC_BOOK3S_64
724 if (cpu_has_feature(CPU_FTR_DSCR)) {
725 u64 dscr = get_paca()->dscr_default;
726 u64 fscr = old_thread->fscr & ~FSCR_DSCR;
727
728 if (new_thread->dscr_inherit) {
729 dscr = new_thread->dscr;
730 fscr |= FSCR_DSCR;
731 }
732
733 if (old_thread->dscr != dscr)
734 mtspr(SPRN_DSCR, dscr);
735
736 if (old_thread->fscr != fscr)
737 mtspr(SPRN_FSCR, fscr);
738 }
739
740 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
741 if (old_thread->bescr != new_thread->bescr)
742 mtspr(SPRN_BESCR, new_thread->bescr);
743 if (old_thread->ebbhr != new_thread->ebbhr)
744 mtspr(SPRN_EBBHR, new_thread->ebbhr);
745 if (old_thread->ebbrr != new_thread->ebbrr)
746 mtspr(SPRN_EBBRR, new_thread->ebbrr);
747
748 if (old_thread->tar != new_thread->tar)
749 mtspr(SPRN_TAR, new_thread->tar);
750 }
751#endif
752}
753
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000754struct task_struct *__switch_to(struct task_struct *prev,
755 struct task_struct *new)
756{
757 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000758 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700759#ifdef CONFIG_PPC_BOOK3S_64
760 struct ppc64_tlb_batch *batch;
761#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000762
Anton Blanchard152d5232015-10-29 11:43:55 +1100763 new_thread = &new->thread;
764 old_thread = &current->thread;
765
Michael Neuling7ba5fef2013-10-02 17:15:14 +1000766 WARN_ON(!irqs_disabled());
767
Anton Blanchard152d5232015-10-29 11:43:55 +1100768 /*
769 * We need to save SPRs before treclaim/trecheckpoint as these will
770 * change a number of them.
Michael Neulingc2d52642013-08-09 17:29:30 +1000771 */
Anton Blanchard152d5232015-10-29 11:43:55 +1100772 save_sprs(&prev->thread);
Michael Neulingc2d52642013-08-09 17:29:30 +1000773
Michael Neulingbc2a9402013-02-13 16:21:40 +0000774 __switch_to_tm(prev);
775
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000776 if (prev->thread.regs && (prev->thread.regs->msr & MSR_FP))
777 giveup_fpu(prev);
778#ifdef CONFIG_ALTIVEC
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000779 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VEC))
780 giveup_altivec(prev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000781#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000782#ifdef CONFIG_VSX
783 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VSX))
Michael Neuling7c292172008-07-11 16:29:12 +1000784 /* VMX and FPU registers are already save here */
785 __giveup_vsx(prev);
Michael Neulingce48b212008-06-25 14:07:18 +1000786#endif /* CONFIG_VSX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000787#ifdef CONFIG_SPE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000788 if ((prev->thread.regs && (prev->thread.regs->msr & MSR_SPE)))
789 giveup_spe(prev);
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000790#endif /* CONFIG_SPE */
791
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000792#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Scott Woodf5f97212013-11-22 15:52:29 -0600793 switch_booke_debug_regs(&new->thread.debug);
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000794#else
K.Prasad5aae8a52010-06-15 11:35:19 +0530795/*
796 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
797 * schedule DABR
798 */
799#ifndef CONFIG_HAVE_HW_BREAKPOINT
Christoph Lameter69111ba2014-10-21 15:23:25 -0500800 if (unlikely(!hw_brk_match(this_cpu_ptr(&current_brk), &new->thread.hw_brk)))
Paul Gortmaker21f58502014-04-29 15:25:17 -0400801 __set_breakpoint(&new->thread.hw_brk);
K.Prasad5aae8a52010-06-15 11:35:19 +0530802#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000803#endif
804
Paul Mackerras06d67d52005-10-10 22:29:05 +1000805#ifdef CONFIG_PPC64
806 /*
807 * Collect processor utilization data per process
808 */
809 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Christoph Lameter69111ba2014-10-21 15:23:25 -0500810 struct cpu_usage *cu = this_cpu_ptr(&cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000811 long unsigned start_tb, current_tb;
812 start_tb = old_thread->start_tb;
813 cu->current_tb = current_tb = mfspr(SPRN_PURR);
814 old_thread->accum_tb += (current_tb - start_tb);
815 new_thread->start_tb = current_tb;
816 }
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700817#endif /* CONFIG_PPC64 */
818
819#ifdef CONFIG_PPC_BOOK3S_64
Christoph Lameter69111ba2014-10-21 15:23:25 -0500820 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700821 if (batch->active) {
822 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
823 if (batch->index)
824 __flush_tlb_pending(batch);
825 batch->active = 0;
826 }
827#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000828
Anton Blanchard44387e92008-03-17 15:27:09 +1100829 /*
830 * We can't take a PMU exception inside _switch() since there is a
831 * window where the kernel stack SLB and the kernel stack are out
832 * of sync. Hard disable here.
833 */
834 hard_irq_disable();
Michael Neulingbc2a9402013-02-13 16:21:40 +0000835
836 tm_recheckpoint_new_task(new);
837
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000838 last = _switch(old_thread, new_thread);
839
Anton Blanchard152d5232015-10-29 11:43:55 +1100840 /* Need to recalculate these after calling _switch() */
841 old_thread = &last->thread;
842 new_thread = &current->thread;
843
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700844#ifdef CONFIG_PPC_BOOK3S_64
845 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
846 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500847 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700848 batch->active = 1;
849 }
850#endif /* CONFIG_PPC_BOOK3S_64 */
851
Anton Blanchard152d5232015-10-29 11:43:55 +1100852 restore_sprs(old_thread, new_thread);
853
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000854 return last;
855}
856
Paul Mackerras06d67d52005-10-10 22:29:05 +1000857static int instructions_to_print = 16;
858
Paul Mackerras06d67d52005-10-10 22:29:05 +1000859static void show_instructions(struct pt_regs *regs)
860{
861 int i;
862 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
863 sizeof(int));
864
865 printk("Instruction dump:");
866
867 for (i = 0; i < instructions_to_print; i++) {
868 int instr;
869
870 if (!(i % 8))
871 printk("\n");
872
Scott Wood0de2d822007-09-28 04:38:55 +1000873#if !defined(CONFIG_BOOKE)
874 /* If executing with the IMMU off, adjust pc rather
875 * than print XXXXXXXX.
876 */
877 if (!(regs->msr & MSR_IR))
878 pc = (unsigned long)phys_to_virt(pc);
879#endif
880
Anton Blanchard00ae36d2006-10-13 12:17:16 +1000881 if (!__kernel_text_address(pc) ||
Anton Blanchard7b051f62014-10-13 20:27:15 +1100882 probe_kernel_address((unsigned int __user *)pc, instr)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +0000883 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +1000884 } else {
885 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +0000886 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000887 else
Ira Snyder40c8cef2012-01-06 12:34:07 +0000888 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000889 }
890
891 pc += sizeof(int);
892 }
893
894 printk("\n");
895}
896
897static struct regbit {
898 unsigned long bit;
899 const char *name;
900} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000901#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
902 {MSR_SF, "SF"},
903 {MSR_HV, "HV"},
904#endif
905 {MSR_VEC, "VEC"},
906 {MSR_VSX, "VSX"},
907#ifdef CONFIG_BOOKE
908 {MSR_CE, "CE"},
909#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000910 {MSR_EE, "EE"},
911 {MSR_PR, "PR"},
912 {MSR_FP, "FP"},
913 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000914#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +0000915 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000916#else
917 {MSR_SE, "SE"},
918 {MSR_BE, "BE"},
919#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000920 {MSR_IR, "IR"},
921 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000922 {MSR_PMM, "PMM"},
923#ifndef CONFIG_BOOKE
924 {MSR_RI, "RI"},
925 {MSR_LE, "LE"},
926#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000927 {0, NULL}
928};
929
930static void printbits(unsigned long val, struct regbit *bits)
931{
932 const char *sep = "";
933
934 printk("<");
935 for (; bits->bit; ++bits)
936 if (val & bits->bit) {
937 printk("%s%s", sep, bits->name);
938 sep = ",";
939 }
940 printk(">");
941}
942
943#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500944#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000945#define REGS_PER_LINE 4
946#define LAST_VOLATILE 13
947#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500948#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000949#define REGS_PER_LINE 8
950#define LAST_VOLATILE 12
951#endif
952
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000953void show_regs(struct pt_regs * regs)
954{
955 int i, trap;
956
Tejun Heoa43cb952013-04-30 15:27:17 -0700957 show_regs_print_info(KERN_DEFAULT);
958
Paul Mackerras06d67d52005-10-10 22:29:05 +1000959 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
960 regs->nip, regs->link, regs->ctr);
961 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700962 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000963 printk("MSR: "REG" ", regs->msr);
964 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500965 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000966 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +0000967 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Anton Blanchard9db8bcf2013-11-15 15:48:38 +1100968 printk("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +1100969 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +0000970#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Anton Blanchard9db8bcf2013-11-15 15:48:38 +1100971 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -0500972#else
Anton Blanchard9db8bcf2013-11-15 15:48:38 +1100973 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
974#endif
975#ifdef CONFIG_PPC64
976 printk("SOFTE: %ld ", regs->softe);
977#endif
978#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +1100979 if (MSR_TM_ACTIVE(regs->msr))
980 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -0500981#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000982
983 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +1000984 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +0000985 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000986 printk(REG " ", regs->gpr[i]);
987 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000988 break;
989 }
990 printk("\n");
991#ifdef CONFIG_KALLSYMS
992 /*
993 * Lookup NIP late so we have the best change of getting the
994 * above info out without failing
995 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +1000996 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
997 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000998#endif
999 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001000 if (!user_mode(regs))
1001 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001002}
1003
1004void exit_thread(void)
1005{
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001006}
1007
1008void flush_thread(void)
1009{
K.Prasade0780b72011-02-10 04:44:35 +00001010#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301011 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001012#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001013 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001014#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001015}
1016
1017void
1018release_thread(struct task_struct *t)
1019{
1020}
1021
1022/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001023 * this gets called so that we can store coprocessor state into memory and
1024 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001025 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001026int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001027{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001028 flush_fp_to_thread(src);
1029 flush_altivec_to_thread(src);
1030 flush_vsx_to_thread(src);
1031 flush_spe_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001032 /*
1033 * Flush TM state out so we can copy it. __switch_to_tm() does this
1034 * flush but it removes the checkpointed state from the current CPU and
1035 * transitions the CPU out of TM mode. Hence we need to call
1036 * tm_recheckpoint_new_task() (on the same task) to restore the
1037 * checkpointed state back and the TM mode.
1038 */
1039 __switch_to_tm(src);
1040 tm_recheckpoint_new_task(src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001041
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001042 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001043
1044 clear_task_ebb(dst);
1045
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001046 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001047}
1048
Michael Ellermancec15482014-07-10 12:29:21 +10001049static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1050{
1051#ifdef CONFIG_PPC_STD_MMU_64
1052 unsigned long sp_vsid;
1053 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1054
1055 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1056 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1057 << SLB_VSID_SHIFT_1T;
1058 else
1059 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1060 << SLB_VSID_SHIFT;
1061 sp_vsid |= SLB_VSID_KERNEL | llp;
1062 p->thread.ksp_vsid = sp_vsid;
1063#endif
1064}
1065
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001066/*
1067 * Copy a thread..
1068 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001069
Alex Dowad6eca8932015-03-13 20:14:46 +02001070/*
1071 * Copy architecture-specific thread state
1072 */
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -07001073int copy_thread(unsigned long clone_flags, unsigned long usp,
Alex Dowad6eca8932015-03-13 20:14:46 +02001074 unsigned long kthread_arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001075{
1076 struct pt_regs *childregs, *kregs;
1077 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001078 extern void ret_from_kernel_thread(void);
1079 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001080 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001081
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001082 /* Copy registers */
1083 sp -= sizeof(struct pt_regs);
1084 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001085 if (unlikely(p->flags & PF_KTHREAD)) {
Alex Dowad6eca8932015-03-13 20:14:46 +02001086 /* kernel thread */
Al Viro138d1ce2012-10-11 08:41:43 -04001087 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -04001088 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001089 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001090 /* function */
1091 if (usp)
1092 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001093#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001094 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -04001095 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001096#endif
Alex Dowad6eca8932015-03-13 20:14:46 +02001097 childregs->gpr[15] = kthread_arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001098 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001099 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001100 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001101 } else {
Alex Dowad6eca8932015-03-13 20:14:46 +02001102 /* user thread */
Al Viroafa86fc2012-10-22 22:51:14 -04001103 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001104 CHECK_FULL_REGS(regs);
1105 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001106 if (usp)
1107 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001108 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001109 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001110 if (clone_flags & CLONE_SETTLS) {
1111#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +00001112 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +10001113 childregs->gpr[13] = childregs->gpr[6];
1114 else
1115#endif
1116 childregs->gpr[2] = childregs->gpr[6];
1117 }
Al Viro58254e12012-09-12 18:32:42 -04001118
1119 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001120 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001121 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001122
1123 /*
1124 * The way this works is that at some point in the future
1125 * some task will call _switch to switch to the new task.
1126 * That will pop off the stack frame created below and start
1127 * the new task running at ret_from_fork. The new task will
1128 * do some house keeping and then return from the fork or clone
1129 * system call, using the stack frame created above.
1130 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001131 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001132 sp -= sizeof(struct pt_regs);
1133 kregs = (struct pt_regs *) sp;
1134 sp -= STACK_FRAME_OVERHEAD;
1135 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001136#ifdef CONFIG_PPC32
Kumar Gala85218822008-04-28 16:21:22 +10001137 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1138 _ALIGN_UP(sizeof(struct thread_info), 16);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001139#endif
Oleg Nesterov28d170ab2013-04-21 06:47:59 +00001140#ifdef CONFIG_HAVE_HW_BREAKPOINT
1141 p->thread.ptrace_bps[0] = NULL;
1142#endif
1143
Paul Mackerras18461962013-09-10 20:21:10 +10001144 p->thread.fp_save_area = NULL;
1145#ifdef CONFIG_ALTIVEC
1146 p->thread.vr_save_area = NULL;
1147#endif
1148
Michael Ellermancec15482014-07-10 12:29:21 +10001149 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001150
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001151#ifdef CONFIG_PPC64
1152 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001153 p->thread.dscr_inherit = current->thread.dscr_inherit;
1154 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001155 }
Haren Myneni92779242012-12-06 21:49:56 +00001156 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1157 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001158#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001159 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001160 return 0;
1161}
1162
1163/*
1164 * Set up a thread for executing a new program
1165 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001166void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001167{
Michael Ellerman90eac722005-10-21 16:01:33 +10001168#ifdef CONFIG_PPC64
1169 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
1170#endif
1171
Paul Mackerras06d67d52005-10-10 22:29:05 +10001172 /*
1173 * If we exec out of a kernel thread then thread.regs will not be
1174 * set. Do it now.
1175 */
1176 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001177 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1178 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001179 }
1180
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001181 memset(regs->gpr, 0, sizeof(regs->gpr));
1182 regs->ctr = 0;
1183 regs->link = 0;
1184 regs->xer = 0;
1185 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001186 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001187
Roland McGrath474f8192007-09-24 16:52:44 -07001188 /*
1189 * We have just cleared all the nonvolatile GPRs, so make
1190 * FULL_REGS(regs) return true. This is necessary to allow
1191 * ptrace to examine the thread immediately after exec.
1192 */
1193 regs->trap &= ~1UL;
1194
Paul Mackerras06d67d52005-10-10 22:29:05 +10001195#ifdef CONFIG_PPC32
1196 regs->mq = 0;
1197 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001198 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001199#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001200 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001201 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001202
Rusty Russell94af3ab2013-11-20 22:15:02 +11001203 if (is_elf2_task()) {
1204 /* Look ma, no function descriptors! */
1205 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001206
Rusty Russell94af3ab2013-11-20 22:15:02 +11001207 /*
1208 * Ulrich says:
1209 * The latest iteration of the ABI requires that when
1210 * calling a function (at its global entry point),
1211 * the caller must ensure r12 holds the entry point
1212 * address (so that the function can quickly
1213 * establish addressability).
1214 */
1215 regs->gpr[12] = start;
1216 /* Make sure that's restored on entry to userspace. */
1217 set_thread_flag(TIF_RESTOREALL);
1218 } else {
1219 unsigned long toc;
1220
1221 /* start is a relocated pointer to the function
1222 * descriptor for the elf _start routine. The first
1223 * entry in the function descriptor is the entry
1224 * address of _start and the second entry is the TOC
1225 * value we need to use.
1226 */
1227 __get_user(entry, (unsigned long __user *)start);
1228 __get_user(toc, (unsigned long __user *)start+1);
1229
1230 /* Check whether the e_entry function descriptor entries
1231 * need to be relocated before we can use them.
1232 */
1233 if (load_addr != 0) {
1234 entry += load_addr;
1235 toc += load_addr;
1236 }
1237 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001238 }
1239 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001240 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001241 } else {
1242 regs->nip = start;
1243 regs->gpr[2] = 0;
1244 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001245 }
1246#endif
Michael Neulingce48b212008-06-25 14:07:18 +10001247#ifdef CONFIG_VSX
1248 current->thread.used_vsr = 0;
1249#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001250 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001251 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001252#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001253 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1254 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001255 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001256 current->thread.vrsave = 0;
1257 current->thread.used_vr = 0;
1258#endif /* CONFIG_ALTIVEC */
1259#ifdef CONFIG_SPE
1260 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1261 current->thread.acc = 0;
1262 current->thread.spefscr = 0;
1263 current->thread.used_spe = 0;
1264#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001265#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1266 if (cpu_has_feature(CPU_FTR_TM))
1267 regs->msr |= MSR_TM;
1268 current->thread.tm_tfhar = 0;
1269 current->thread.tm_texasr = 0;
1270 current->thread.tm_tfiar = 0;
1271#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001272}
Anton Blancharde1802b02014-08-20 08:00:02 +10001273EXPORT_SYMBOL(start_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001274
1275#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1276 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1277
1278int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1279{
1280 struct pt_regs *regs = tsk->thread.regs;
1281
1282 /* This is a bit hairy. If we are an SPE enabled processor
1283 * (have embedded fp) we store the IEEE exception enable flags in
1284 * fpexc_mode. fpexc_mode is also used for setting FP exception
1285 * mode (asyn, precise, disabled) for 'Classic' FP. */
1286 if (val & PR_FP_EXC_SW_ENABLE) {
1287#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001288 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001289 /*
1290 * When the sticky exception bits are set
1291 * directly by userspace, it must call prctl
1292 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1293 * in the existing prctl settings) or
1294 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1295 * the bits being set). <fenv.h> functions
1296 * saving and restoring the whole
1297 * floating-point environment need to do so
1298 * anyway to restore the prctl settings from
1299 * the saved environment.
1300 */
1301 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001302 tsk->thread.fpexc_mode = val &
1303 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1304 return 0;
1305 } else {
1306 return -EINVAL;
1307 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001308#else
1309 return -EINVAL;
1310#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001311 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001312
1313 /* on a CONFIG_SPE this does not hurt us. The bits that
1314 * __pack_fe01 use do not overlap with bits used for
1315 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1316 * on CONFIG_SPE implementations are reserved so writing to
1317 * them does not change anything */
1318 if (val > PR_FP_EXC_PRECISE)
1319 return -EINVAL;
1320 tsk->thread.fpexc_mode = __pack_fe01(val);
1321 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1322 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1323 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001324 return 0;
1325}
1326
1327int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1328{
1329 unsigned int val;
1330
1331 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1332#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001333 if (cpu_has_feature(CPU_FTR_SPE)) {
1334 /*
1335 * When the sticky exception bits are set
1336 * directly by userspace, it must call prctl
1337 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1338 * in the existing prctl settings) or
1339 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1340 * the bits being set). <fenv.h> functions
1341 * saving and restoring the whole
1342 * floating-point environment need to do so
1343 * anyway to restore the prctl settings from
1344 * the saved environment.
1345 */
1346 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001347 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001348 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001349 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001350#else
1351 return -EINVAL;
1352#endif
1353 else
1354 val = __unpack_fe01(tsk->thread.fpexc_mode);
1355 return put_user(val, (unsigned int __user *) adr);
1356}
1357
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001358int set_endian(struct task_struct *tsk, unsigned int val)
1359{
1360 struct pt_regs *regs = tsk->thread.regs;
1361
1362 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1363 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1364 return -EINVAL;
1365
1366 if (regs == NULL)
1367 return -EINVAL;
1368
1369 if (val == PR_ENDIAN_BIG)
1370 regs->msr &= ~MSR_LE;
1371 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1372 regs->msr |= MSR_LE;
1373 else
1374 return -EINVAL;
1375
1376 return 0;
1377}
1378
1379int get_endian(struct task_struct *tsk, unsigned long adr)
1380{
1381 struct pt_regs *regs = tsk->thread.regs;
1382 unsigned int val;
1383
1384 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1385 !cpu_has_feature(CPU_FTR_REAL_LE))
1386 return -EINVAL;
1387
1388 if (regs == NULL)
1389 return -EINVAL;
1390
1391 if (regs->msr & MSR_LE) {
1392 if (cpu_has_feature(CPU_FTR_REAL_LE))
1393 val = PR_ENDIAN_LITTLE;
1394 else
1395 val = PR_ENDIAN_PPC_LITTLE;
1396 } else
1397 val = PR_ENDIAN_BIG;
1398
1399 return put_user(val, (unsigned int __user *)adr);
1400}
1401
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001402int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1403{
1404 tsk->thread.align_ctl = val;
1405 return 0;
1406}
1407
1408int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1409{
1410 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1411}
1412
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001413static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1414 unsigned long nbytes)
1415{
1416 unsigned long stack_page;
1417 unsigned long cpu = task_cpu(p);
1418
1419 /*
1420 * Avoid crashing if the stack has overflowed and corrupted
1421 * task_cpu(p), which is in the thread_info struct.
1422 */
1423 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1424 stack_page = (unsigned long) hardirq_ctx[cpu];
1425 if (sp >= stack_page + sizeof(struct thread_struct)
1426 && sp <= stack_page + THREAD_SIZE - nbytes)
1427 return 1;
1428
1429 stack_page = (unsigned long) softirq_ctx[cpu];
1430 if (sp >= stack_page + sizeof(struct thread_struct)
1431 && sp <= stack_page + THREAD_SIZE - nbytes)
1432 return 1;
1433 }
1434 return 0;
1435}
1436
Anton Blanchard2f251942006-03-27 11:46:18 +11001437int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001438 unsigned long nbytes)
1439{
Al Viro0cec6fd2006-01-12 01:06:02 -08001440 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001441
1442 if (sp >= stack_page + sizeof(struct thread_struct)
1443 && sp <= stack_page + THREAD_SIZE - nbytes)
1444 return 1;
1445
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001446 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001447}
1448
Anton Blanchard2f251942006-03-27 11:46:18 +11001449EXPORT_SYMBOL(validate_sp);
1450
Paul Mackerras06d67d52005-10-10 22:29:05 +10001451unsigned long get_wchan(struct task_struct *p)
1452{
1453 unsigned long ip, sp;
1454 int count = 0;
1455
1456 if (!p || p == current || p->state == TASK_RUNNING)
1457 return 0;
1458
1459 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001460 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001461 return 0;
1462
1463 do {
1464 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001465 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001466 return 0;
1467 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001468 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001469 if (!in_sched_functions(ip))
1470 return ip;
1471 }
1472 } while (count++ < 16);
1473 return 0;
1474}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001475
Johannes Bergc4d04be2008-11-20 03:24:07 +00001476static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001477
1478void show_stack(struct task_struct *tsk, unsigned long *stack)
1479{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001480 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001481 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001482 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001483#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1484 int curr_frame = current->curr_ret_stack;
1485 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001486 unsigned long rth = (unsigned long)return_to_handler;
Steven Rostedt6794c782009-02-09 21:10:27 -08001487#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001488
1489 sp = (unsigned long) stack;
1490 if (tsk == NULL)
1491 tsk = current;
1492 if (sp == 0) {
1493 if (tsk == current)
Anton Blanchardacf620e2014-10-13 19:41:39 +11001494 sp = current_stack_pointer();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001495 else
1496 sp = tsk->thread.ksp;
1497 }
1498
Paul Mackerras06d67d52005-10-10 22:29:05 +10001499 lr = 0;
1500 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001501 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001502 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001503 return;
1504
1505 stack = (unsigned long *) sp;
1506 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001507 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001508 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001509 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001510#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Anton Blanchard7d56c652014-09-17 17:07:03 +10001511 if ((ip == rth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001512 printk(" (%pS)",
1513 (void *)current->ret_stack[curr_frame].ret);
1514 curr_frame--;
1515 }
1516#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001517 if (firstframe)
1518 printk(" (unreliable)");
1519 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001520 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001521 firstframe = 0;
1522
1523 /*
1524 * See if this is an exception frame.
1525 * We look for the "regshere" marker in the current frame.
1526 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001527 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1528 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001529 struct pt_regs *regs = (struct pt_regs *)
1530 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001531 lr = regs->link;
Paul Mackerras9be9be22014-06-12 16:53:08 +10001532 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001533 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001534 firstframe = 1;
1535 }
1536
1537 sp = newsp;
1538 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001539}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001540
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001541#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001542/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001543void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001544{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001545 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001546 unsigned long ctrl;
1547
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001548 ctrl = mfspr(SPRN_CTRLF);
1549 ctrl |= CTRL_RUNLATCH;
1550 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001551
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001552 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001553}
1554
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001555/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001556void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001557{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001558 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001559 unsigned long ctrl;
1560
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001561 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001562
Anton Blanchard4138d652010-08-06 03:28:19 +00001563 ctrl = mfspr(SPRN_CTRLF);
1564 ctrl &= ~CTRL_RUNLATCH;
1565 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001566}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001567#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001568
Anton Blanchardd8390882009-02-22 01:50:03 +00001569unsigned long arch_align_stack(unsigned long sp)
1570{
1571 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1572 sp -= get_random_int() & ~PAGE_MASK;
1573 return sp & ~0xf;
1574}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001575
1576static inline unsigned long brk_rnd(void)
1577{
1578 unsigned long rnd = 0;
1579
1580 /* 8MB for 32bit, 1GB for 64bit */
1581 if (is_32bit_task())
1582 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1583 else
1584 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1585
1586 return rnd << PAGE_SHIFT;
1587}
1588
1589unsigned long arch_randomize_brk(struct mm_struct *mm)
1590{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001591 unsigned long base = mm->brk;
1592 unsigned long ret;
1593
Kumar Galace7a35c2009-10-16 07:05:17 +00001594#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001595 /*
1596 * If we are using 1TB segments and we are allowed to randomise
1597 * the heap, we can put it above 1TB so it is backed by a 1TB
1598 * segment. Otherwise the heap will be in the bottom 1TB
1599 * which always uses 256MB segments and this may result in a
1600 * performance penalty.
1601 */
1602 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1603 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1604#endif
1605
1606 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001607
1608 if (ret < mm->brk)
1609 return mm->brk;
1610
1611 return ret;
1612}
Anton Blanchard501cb162009-02-22 01:50:07 +00001613