blob: bf44ae962ab82206bb148c674dd2dbb7f093d1fd [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>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100040
41#include <asm/pgtable.h>
42#include <asm/uaccess.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
70#ifndef CONFIG_SMP
71struct task_struct *last_task_used_math = NULL;
72struct task_struct *last_task_used_altivec = NULL;
Michael Neulingce48b212008-06-25 14:07:18 +100073struct task_struct *last_task_used_vsx = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100074struct task_struct *last_task_used_spe = NULL;
75#endif
76
Paul Mackerrasd31626f2014-01-13 15:56:29 +110077#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
78void giveup_fpu_maybe_transactional(struct task_struct *tsk)
79{
80 /*
81 * If we are saving the current thread's registers, and the
82 * thread is in a transactional state, set the TIF_RESTORE_TM
83 * bit so that we know to restore the registers before
84 * returning to userspace.
85 */
86 if (tsk == current && tsk->thread.regs &&
87 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
88 !test_thread_flag(TIF_RESTORE_TM)) {
89 tsk->thread.tm_orig_msr = tsk->thread.regs->msr;
90 set_thread_flag(TIF_RESTORE_TM);
91 }
92
93 giveup_fpu(tsk);
94}
95
96void giveup_altivec_maybe_transactional(struct task_struct *tsk)
97{
98 /*
99 * If we are saving the current thread's registers, and the
100 * thread is in a transactional state, set the TIF_RESTORE_TM
101 * bit so that we know to restore the registers before
102 * returning to userspace.
103 */
104 if (tsk == current && tsk->thread.regs &&
105 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
106 !test_thread_flag(TIF_RESTORE_TM)) {
107 tsk->thread.tm_orig_msr = tsk->thread.regs->msr;
108 set_thread_flag(TIF_RESTORE_TM);
109 }
110
111 giveup_altivec(tsk);
112}
113
114#else
115#define giveup_fpu_maybe_transactional(tsk) giveup_fpu(tsk)
116#define giveup_altivec_maybe_transactional(tsk) giveup_altivec(tsk)
117#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
118
Kevin Hao037f0ee2013-07-14 17:02:05 +0800119#ifdef CONFIG_PPC_FPU
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000120/*
121 * Make sure the floating-point register state in the
122 * the thread_struct is up to date for task tsk.
123 */
124void flush_fp_to_thread(struct task_struct *tsk)
125{
126 if (tsk->thread.regs) {
127 /*
128 * We need to disable preemption here because if we didn't,
129 * another process could get scheduled after the regs->msr
130 * test but before we have finished saving the FP registers
131 * to the thread_struct. That process could take over the
132 * FPU, and then when we get scheduled again we would store
133 * bogus values for the remaining FP registers.
134 */
135 preempt_disable();
136 if (tsk->thread.regs->msr & MSR_FP) {
137#ifdef CONFIG_SMP
138 /*
139 * This should only ever be called for current or
140 * for a stopped child process. Since we save away
141 * the FP register state on context switch on SMP,
142 * there is something wrong if a stopped child appears
143 * to still have its FP state in the CPU registers.
144 */
145 BUG_ON(tsk != current);
146#endif
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100147 giveup_fpu_maybe_transactional(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000148 }
149 preempt_enable();
150 }
151}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000152EXPORT_SYMBOL_GPL(flush_fp_to_thread);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100153#endif /* CONFIG_PPC_FPU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000154
155void enable_kernel_fp(void)
156{
157 WARN_ON(preemptible());
158
159#ifdef CONFIG_SMP
160 if (current->thread.regs && (current->thread.regs->msr & MSR_FP))
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100161 giveup_fpu_maybe_transactional(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000162 else
163 giveup_fpu(NULL); /* just enables FP for kernel */
164#else
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100165 giveup_fpu_maybe_transactional(last_task_used_math);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000166#endif /* CONFIG_SMP */
167}
168EXPORT_SYMBOL(enable_kernel_fp);
169
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000170#ifdef CONFIG_ALTIVEC
171void enable_kernel_altivec(void)
172{
173 WARN_ON(preemptible());
174
175#ifdef CONFIG_SMP
176 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC))
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100177 giveup_altivec_maybe_transactional(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000178 else
Anton Blanchard35000872012-04-15 20:56:45 +0000179 giveup_altivec_notask();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000180#else
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100181 giveup_altivec_maybe_transactional(last_task_used_altivec);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000182#endif /* CONFIG_SMP */
183}
184EXPORT_SYMBOL(enable_kernel_altivec);
185
186/*
187 * Make sure the VMX/Altivec register state in the
188 * the thread_struct is up to date for task tsk.
189 */
190void flush_altivec_to_thread(struct task_struct *tsk)
191{
192 if (tsk->thread.regs) {
193 preempt_disable();
194 if (tsk->thread.regs->msr & MSR_VEC) {
195#ifdef CONFIG_SMP
196 BUG_ON(tsk != current);
197#endif
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100198 giveup_altivec_maybe_transactional(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000199 }
200 preempt_enable();
201 }
202}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000203EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000204#endif /* CONFIG_ALTIVEC */
205
Michael Neulingce48b212008-06-25 14:07:18 +1000206#ifdef CONFIG_VSX
207#if 0
208/* not currently used, but some crazy RAID module might want to later */
209void enable_kernel_vsx(void)
210{
211 WARN_ON(preemptible());
212
213#ifdef CONFIG_SMP
214 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX))
215 giveup_vsx(current);
216 else
217 giveup_vsx(NULL); /* just enable vsx for kernel - force */
218#else
219 giveup_vsx(last_task_used_vsx);
220#endif /* CONFIG_SMP */
221}
222EXPORT_SYMBOL(enable_kernel_vsx);
223#endif
224
Michael Neuling7c292172008-07-11 16:29:12 +1000225void giveup_vsx(struct task_struct *tsk)
226{
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100227 giveup_fpu_maybe_transactional(tsk);
228 giveup_altivec_maybe_transactional(tsk);
Michael Neuling7c292172008-07-11 16:29:12 +1000229 __giveup_vsx(tsk);
230}
231
Michael Neulingce48b212008-06-25 14:07:18 +1000232void flush_vsx_to_thread(struct task_struct *tsk)
233{
234 if (tsk->thread.regs) {
235 preempt_disable();
236 if (tsk->thread.regs->msr & MSR_VSX) {
237#ifdef CONFIG_SMP
238 BUG_ON(tsk != current);
239#endif
240 giveup_vsx(tsk);
241 }
242 preempt_enable();
243 }
244}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000245EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000246#endif /* CONFIG_VSX */
247
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000248#ifdef CONFIG_SPE
249
250void enable_kernel_spe(void)
251{
252 WARN_ON(preemptible());
253
254#ifdef CONFIG_SMP
255 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE))
256 giveup_spe(current);
257 else
258 giveup_spe(NULL); /* just enable SPE for kernel - force */
259#else
260 giveup_spe(last_task_used_spe);
261#endif /* __SMP __ */
262}
263EXPORT_SYMBOL(enable_kernel_spe);
264
265void flush_spe_to_thread(struct task_struct *tsk)
266{
267 if (tsk->thread.regs) {
268 preempt_disable();
269 if (tsk->thread.regs->msr & MSR_SPE) {
270#ifdef CONFIG_SMP
271 BUG_ON(tsk != current);
272#endif
yu liu685659e2011-06-14 18:34:25 -0500273 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500274 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000275 }
276 preempt_enable();
277 }
278}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000279#endif /* CONFIG_SPE */
280
Paul Mackerras5388fb12006-01-11 22:11:39 +1100281#ifndef CONFIG_SMP
Paul Mackerras48abec02005-11-30 13:20:54 +1100282/*
283 * If we are doing lazy switching of CPU state (FP, altivec or SPE),
284 * and the current task has some state, discard it.
285 */
Paul Mackerras5388fb12006-01-11 22:11:39 +1100286void discard_lazy_cpu_state(void)
Paul Mackerras48abec02005-11-30 13:20:54 +1100287{
Paul Mackerras48abec02005-11-30 13:20:54 +1100288 preempt_disable();
289 if (last_task_used_math == current)
290 last_task_used_math = NULL;
291#ifdef CONFIG_ALTIVEC
292 if (last_task_used_altivec == current)
293 last_task_used_altivec = NULL;
294#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000295#ifdef CONFIG_VSX
296 if (last_task_used_vsx == current)
297 last_task_used_vsx = NULL;
298#endif /* CONFIG_VSX */
Paul Mackerras48abec02005-11-30 13:20:54 +1100299#ifdef CONFIG_SPE
300 if (last_task_used_spe == current)
301 last_task_used_spe = NULL;
302#endif
303 preempt_enable();
Paul Mackerras48abec02005-11-30 13:20:54 +1100304}
Paul Mackerras5388fb12006-01-11 22:11:39 +1100305#endif /* CONFIG_SMP */
Paul Mackerras48abec02005-11-30 13:20:54 +1100306
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000307#ifdef CONFIG_PPC_ADV_DEBUG_REGS
308void do_send_trap(struct pt_regs *regs, unsigned long address,
309 unsigned long error_code, int signal_code, int breakpt)
310{
311 siginfo_t info;
312
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000313 current->thread.trap_nr = signal_code;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000314 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
315 11, SIGSEGV) == NOTIFY_STOP)
316 return;
317
318 /* Deliver the signal to userspace */
319 info.si_signo = SIGTRAP;
320 info.si_errno = breakpt; /* breakpoint or watchpoint id */
321 info.si_code = signal_code;
322 info.si_addr = (void __user *)address;
323 force_sig_info(SIGTRAP, &info, current);
324}
325#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000326void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000327 unsigned long error_code)
328{
329 siginfo_t info;
330
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000331 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000332 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
333 11, SIGSEGV) == NOTIFY_STOP)
334 return;
335
Michael Neuling9422de32012-12-20 14:06:44 +0000336 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000337 return;
338
Michael Neuling9422de32012-12-20 14:06:44 +0000339 /* Clear the breakpoint */
340 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000341
342 /* Deliver the signal to userspace */
343 info.si_signo = SIGTRAP;
344 info.si_errno = 0;
345 info.si_code = TRAP_HWBKPT;
346 info.si_addr = (void __user *)address;
347 force_sig_info(SIGTRAP, &info, current);
348}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000349#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000350
Michael Neuling9422de32012-12-20 14:06:44 +0000351static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100352
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000353#ifdef CONFIG_PPC_ADV_DEBUG_REGS
354/*
355 * Set the debug registers back to their default "safe" values.
356 */
357static void set_debug_reg_defaults(struct thread_struct *thread)
358{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530359 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000360#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530361 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000362#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530363 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000364#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530365 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000366#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530367 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000368#ifdef CONFIG_BOOKE
369 /*
370 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
371 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530372 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000373 DBCR1_IAC3US | DBCR1_IAC4US;
374 /*
375 * Force Data Address Compare User/Supervisor bits to be User-only
376 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
377 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530378 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000379#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530380 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000381#endif
382}
383
Scott Woodf5f97212013-11-22 15:52:29 -0600384static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000385{
Scott Wood6cecf762013-05-13 14:14:53 +0000386 /*
387 * We could have inherited MSR_DE from userspace, since
388 * it doesn't get cleared on exception entry. Make sure
389 * MSR_DE is clear before we enable any debug events.
390 */
391 mtmsr(mfmsr() & ~MSR_DE);
392
Scott Woodf5f97212013-11-22 15:52:29 -0600393 mtspr(SPRN_IAC1, debug->iac1);
394 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000395#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600396 mtspr(SPRN_IAC3, debug->iac3);
397 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000398#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600399 mtspr(SPRN_DAC1, debug->dac1);
400 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000401#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600402 mtspr(SPRN_DVC1, debug->dvc1);
403 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000404#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600405 mtspr(SPRN_DBCR0, debug->dbcr0);
406 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000407#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600408 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000409#endif
410}
411/*
412 * Unless neither the old or new thread are making use of the
413 * debug registers, set the debug registers from the values
414 * stored in the new thread.
415 */
Scott Woodf5f97212013-11-22 15:52:29 -0600416void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000417{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530418 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600419 || (new_debug->dbcr0 & DBCR0_IDM))
420 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000421}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530422EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000423#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000424#ifndef CONFIG_HAVE_HW_BREAKPOINT
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000425static void set_debug_reg_defaults(struct thread_struct *thread)
426{
Michael Neuling9422de32012-12-20 14:06:44 +0000427 thread->hw_brk.address = 0;
428 thread->hw_brk.type = 0;
Michael Neulingb9818c32013-01-10 14:25:34 +0000429 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000430}
K.Prasade0780b72011-02-10 04:44:35 +0000431#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000432#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
433
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000434#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000435static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
436{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000437 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000438#ifdef CONFIG_PPC_47x
439 isync();
440#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000441 return 0;
442}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000443#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000444static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
445{
Michael Ellermancab0af92005-11-03 15:30:49 +1100446 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000447 if (cpu_has_feature(CPU_FTR_DABRX))
448 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100449 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000450}
Michael Neuling9422de32012-12-20 14:06:44 +0000451#else
452static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
453{
454 return -EINVAL;
455}
456#endif
457
458static inline int set_dabr(struct arch_hw_breakpoint *brk)
459{
460 unsigned long dabr, dabrx;
461
462 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
463 dabrx = ((brk->type >> 3) & 0x7);
464
465 if (ppc_md.set_dabr)
466 return ppc_md.set_dabr(dabr, dabrx);
467
468 return __set_dabr(dabr, dabrx);
469}
470
Michael Neulingbf99de32012-12-20 14:06:45 +0000471static inline int set_dawr(struct arch_hw_breakpoint *brk)
472{
Michael Neuling05d694e2013-01-24 15:02:58 +0000473 unsigned long dawr, dawrx, mrd;
Michael Neulingbf99de32012-12-20 14:06:45 +0000474
475 dawr = brk->address;
476
477 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
478 << (63 - 58); //* read/write bits */
479 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
480 << (63 - 59); //* translate */
481 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
482 >> 3; //* PRIM bits */
Michael Neuling05d694e2013-01-24 15:02:58 +0000483 /* dawr length is stored in field MDR bits 48:53. Matches range in
484 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
485 0b111111=64DW.
486 brk->len is in bytes.
487 This aligns up to double word size, shifts and does the bias.
488 */
489 mrd = ((brk->len + 7) >> 3) - 1;
490 dawrx |= (mrd & 0x3f) << (63 - 53);
Michael Neulingbf99de32012-12-20 14:06:45 +0000491
492 if (ppc_md.set_dawr)
493 return ppc_md.set_dawr(dawr, dawrx);
494 mtspr(SPRN_DAWR, dawr);
495 mtspr(SPRN_DAWRX, dawrx);
496 return 0;
497}
498
Paul Gortmaker21f58502014-04-29 15:25:17 -0400499void __set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000500{
501 __get_cpu_var(current_brk) = *brk;
502
Michael Neulingbf99de32012-12-20 14:06:45 +0000503 if (cpu_has_feature(CPU_FTR_DAWR))
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400504 set_dawr(brk);
505 else
506 set_dabr(brk);
Michael Neuling9422de32012-12-20 14:06:44 +0000507}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000508
Paul Gortmaker21f58502014-04-29 15:25:17 -0400509void set_breakpoint(struct arch_hw_breakpoint *brk)
510{
511 preempt_disable();
512 __set_breakpoint(brk);
513 preempt_enable();
514}
515
Paul Mackerras06d67d52005-10-10 22:29:05 +1000516#ifdef CONFIG_PPC64
517DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000518#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000519
Michael Neuling9422de32012-12-20 14:06:44 +0000520static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
521 struct arch_hw_breakpoint *b)
522{
523 if (a->address != b->address)
524 return false;
525 if (a->type != b->type)
526 return false;
527 if (a->len != b->len)
528 return false;
529 return true;
530}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100531
Michael Neulingfb096922013-02-13 16:21:37 +0000532#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100533static void tm_reclaim_thread(struct thread_struct *thr,
534 struct thread_info *ti, uint8_t cause)
535{
536 unsigned long msr_diff = 0;
537
538 /*
539 * If FP/VSX registers have been already saved to the
540 * thread_struct, move them to the transact_fp array.
541 * We clear the TIF_RESTORE_TM bit since after the reclaim
542 * the thread will no longer be transactional.
543 */
544 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
545 msr_diff = thr->tm_orig_msr & ~thr->regs->msr;
546 if (msr_diff & MSR_FP)
547 memcpy(&thr->transact_fp, &thr->fp_state,
548 sizeof(struct thread_fp_state));
549 if (msr_diff & MSR_VEC)
550 memcpy(&thr->transact_vr, &thr->vr_state,
551 sizeof(struct thread_vr_state));
552 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
553 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
554 }
555
556 tm_reclaim(thr, thr->regs->msr, cause);
557
558 /* Having done the reclaim, we now have the checkpointed
559 * FP/VSX values in the registers. These might be valid
560 * even if we have previously called enable_kernel_fp() or
561 * flush_fp_to_thread(), so update thr->regs->msr to
562 * indicate their current validity.
563 */
564 thr->regs->msr |= msr_diff;
565}
566
567void tm_reclaim_current(uint8_t cause)
568{
569 tm_enable();
570 tm_reclaim_thread(&current->thread, current_thread_info(), cause);
571}
572
Michael Neulingfb096922013-02-13 16:21:37 +0000573static inline void tm_reclaim_task(struct task_struct *tsk)
574{
575 /* We have to work out if we're switching from/to a task that's in the
576 * middle of a transaction.
577 *
578 * In switching we need to maintain a 2nd register state as
579 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
580 * checkpointed (tbegin) state in ckpt_regs and saves the transactional
581 * (current) FPRs into oldtask->thread.transact_fpr[].
582 *
583 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
584 */
585 struct thread_struct *thr = &tsk->thread;
586
587 if (!thr->regs)
588 return;
589
590 if (!MSR_TM_ACTIVE(thr->regs->msr))
591 goto out_and_saveregs;
592
593 /* Stash the original thread MSR, as giveup_fpu et al will
594 * modify it. We hold onto it to see whether the task used
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100595 * FP & vector regs. If the TIF_RESTORE_TM flag is set,
596 * tm_orig_msr is already set.
Michael Neulingfb096922013-02-13 16:21:37 +0000597 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100598 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
599 thr->tm_orig_msr = thr->regs->msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000600
601 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
602 "ccr=%lx, msr=%lx, trap=%lx)\n",
603 tsk->pid, thr->regs->nip,
604 thr->regs->ccr, thr->regs->msr,
605 thr->regs->trap);
606
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100607 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000608
609 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
610 tsk->pid);
611
612out_and_saveregs:
613 /* Always save the regs here, even if a transaction's not active.
614 * This context-switches a thread's TM info SPRs. We do it here to
615 * be consistent with the restore path (in recheckpoint) which
616 * cannot happen later in _switch().
617 */
618 tm_save_sprs(thr);
619}
620
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100621extern void __tm_recheckpoint(struct thread_struct *thread,
622 unsigned long orig_msr);
623
624void tm_recheckpoint(struct thread_struct *thread,
625 unsigned long orig_msr)
626{
627 unsigned long flags;
628
629 /* We really can't be interrupted here as the TEXASR registers can't
630 * change and later in the trecheckpoint code, we have a userspace R1.
631 * So let's hard disable over this region.
632 */
633 local_irq_save(flags);
634 hard_irq_disable();
635
636 /* The TM SPRs are restored here, so that TEXASR.FS can be set
637 * before the trecheckpoint and no explosion occurs.
638 */
639 tm_restore_sprs(thread);
640
641 __tm_recheckpoint(thread, orig_msr);
642
643 local_irq_restore(flags);
644}
645
Michael Neulingbc2a9402013-02-13 16:21:40 +0000646static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000647{
648 unsigned long msr;
649
650 if (!cpu_has_feature(CPU_FTR_TM))
651 return;
652
653 /* Recheckpoint the registers of the thread we're about to switch to.
654 *
655 * If the task was using FP, we non-lazily reload both the original and
656 * the speculative FP register states. This is because the kernel
657 * doesn't see if/when a TM rollback occurs, so if we take an FP
658 * unavoidable later, we are unable to determine which set of FP regs
659 * need to be restored.
660 */
661 if (!new->thread.regs)
662 return;
663
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100664 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
665 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000666 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100667 }
Michael Neulingfb096922013-02-13 16:21:37 +0000668 msr = new->thread.tm_orig_msr;
669 /* Recheckpoint to restore original checkpointed register state. */
670 TM_DEBUG("*** tm_recheckpoint of pid %d "
671 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
672 new->pid, new->thread.regs->msr, msr);
673
674 /* This loads the checkpointed FP/VEC state, if used */
675 tm_recheckpoint(&new->thread, msr);
676
677 /* This loads the speculative FP/VEC state, if used */
678 if (msr & MSR_FP) {
679 do_load_up_transact_fpu(&new->thread);
680 new->thread.regs->msr |=
681 (MSR_FP | new->thread.fpexc_mode);
682 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000683#ifdef CONFIG_ALTIVEC
Michael Neulingfb096922013-02-13 16:21:37 +0000684 if (msr & MSR_VEC) {
685 do_load_up_transact_altivec(&new->thread);
686 new->thread.regs->msr |= MSR_VEC;
687 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000688#endif
Michael Neulingfb096922013-02-13 16:21:37 +0000689 /* We may as well turn on VSX too since all the state is restored now */
690 if (msr & MSR_VSX)
691 new->thread.regs->msr |= MSR_VSX;
692
693 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
694 "(kernel msr 0x%lx)\n",
695 new->pid, mfmsr());
696}
697
698static inline void __switch_to_tm(struct task_struct *prev)
699{
700 if (cpu_has_feature(CPU_FTR_TM)) {
701 tm_enable();
702 tm_reclaim_task(prev);
703 }
704}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100705
706/*
707 * This is called if we are on the way out to userspace and the
708 * TIF_RESTORE_TM flag is set. It checks if we need to reload
709 * FP and/or vector state and does so if necessary.
710 * If userspace is inside a transaction (whether active or
711 * suspended) and FP/VMX/VSX instructions have ever been enabled
712 * inside that transaction, then we have to keep them enabled
713 * and keep the FP/VMX/VSX state loaded while ever the transaction
714 * continues. The reason is that if we didn't, and subsequently
715 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
716 * we don't know whether it's the same transaction, and thus we
717 * don't know which of the checkpointed state and the transactional
718 * state to use.
719 */
720void restore_tm_state(struct pt_regs *regs)
721{
722 unsigned long msr_diff;
723
724 clear_thread_flag(TIF_RESTORE_TM);
725 if (!MSR_TM_ACTIVE(regs->msr))
726 return;
727
728 msr_diff = current->thread.tm_orig_msr & ~regs->msr;
729 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
730 if (msr_diff & MSR_FP) {
731 fp_enable();
732 load_fp_state(&current->thread.fp_state);
733 regs->msr |= current->thread.fpexc_mode;
734 }
735 if (msr_diff & MSR_VEC) {
736 vec_enable();
737 load_vr_state(&current->thread.vr_state);
738 }
739 regs->msr |= msr_diff;
740}
741
Michael Neulingfb096922013-02-13 16:21:37 +0000742#else
743#define tm_recheckpoint_new_task(new)
744#define __switch_to_tm(prev)
745#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +0000746
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000747struct task_struct *__switch_to(struct task_struct *prev,
748 struct task_struct *new)
749{
750 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000751 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700752#ifdef CONFIG_PPC_BOOK3S_64
753 struct ppc64_tlb_batch *batch;
754#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000755
Michael Neuling7ba5fef2013-10-02 17:15:14 +1000756 WARN_ON(!irqs_disabled());
757
Sam bobroff96d016102014-06-05 16:19:22 +1000758 /* Back up the TAR and DSCR across context switches.
Michael Neulingc2d52642013-08-09 17:29:30 +1000759 * Note that the TAR is not available for use in the kernel. (To
760 * provide this, the TAR should be backed up/restored on exception
761 * entry/exit instead, and be in pt_regs. FIXME, this should be in
762 * pt_regs anyway (for debug).)
Sam bobroff96d016102014-06-05 16:19:22 +1000763 * Save the TAR and DSCR here before we do treclaim/trecheckpoint as
764 * these will change them.
Michael Neulingc2d52642013-08-09 17:29:30 +1000765 */
Sam bobroff96d016102014-06-05 16:19:22 +1000766 save_early_sprs(&prev->thread);
Michael Neulingc2d52642013-08-09 17:29:30 +1000767
Michael Neulingbc2a9402013-02-13 16:21:40 +0000768 __switch_to_tm(prev);
769
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000770#ifdef CONFIG_SMP
771 /* avoid complexity of lazy save/restore of fpu
772 * by just saving it every time we switch out if
773 * this task used the fpu during the last quantum.
774 *
775 * If it tries to use the fpu again, it'll trap and
776 * reload its fp regs. So we don't have to do a restore
777 * every switch, just a save.
778 * -- Cort
779 */
780 if (prev->thread.regs && (prev->thread.regs->msr & MSR_FP))
781 giveup_fpu(prev);
782#ifdef CONFIG_ALTIVEC
783 /*
784 * If the previous thread used altivec in the last quantum
785 * (thus changing altivec regs) then save them.
786 * We used to check the VRSAVE register but not all apps
787 * set it, so we don't rely on it now (and in fact we need
788 * to save & restore VSCR even if VRSAVE == 0). -- paulus
789 *
790 * On SMP we always save/restore altivec regs just to avoid the
791 * complexity of changing processors.
792 * -- Cort
793 */
794 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VEC))
795 giveup_altivec(prev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000796#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000797#ifdef CONFIG_VSX
798 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VSX))
Michael Neuling7c292172008-07-11 16:29:12 +1000799 /* VMX and FPU registers are already save here */
800 __giveup_vsx(prev);
Michael Neulingce48b212008-06-25 14:07:18 +1000801#endif /* CONFIG_VSX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000802#ifdef CONFIG_SPE
803 /*
804 * If the previous thread used spe in the last quantum
805 * (thus changing spe regs) then save them.
806 *
807 * On SMP we always save/restore spe regs just to avoid the
808 * complexity of changing processors.
809 */
810 if ((prev->thread.regs && (prev->thread.regs->msr & MSR_SPE)))
811 giveup_spe(prev);
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000812#endif /* CONFIG_SPE */
813
814#else /* CONFIG_SMP */
815#ifdef CONFIG_ALTIVEC
816 /* Avoid the trap. On smp this this never happens since
817 * we don't set last_task_used_altivec -- Cort
818 */
819 if (new->thread.regs && last_task_used_altivec == new)
820 new->thread.regs->msr |= MSR_VEC;
821#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000822#ifdef CONFIG_VSX
823 if (new->thread.regs && last_task_used_vsx == new)
824 new->thread.regs->msr |= MSR_VSX;
825#endif /* CONFIG_VSX */
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000826#ifdef CONFIG_SPE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000827 /* Avoid the trap. On smp this this never happens since
828 * we don't set last_task_used_spe
829 */
830 if (new->thread.regs && last_task_used_spe == new)
831 new->thread.regs->msr |= MSR_SPE;
832#endif /* CONFIG_SPE */
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000833
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000834#endif /* CONFIG_SMP */
835
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000836#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Scott Woodf5f97212013-11-22 15:52:29 -0600837 switch_booke_debug_regs(&new->thread.debug);
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000838#else
K.Prasad5aae8a52010-06-15 11:35:19 +0530839/*
840 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
841 * schedule DABR
842 */
843#ifndef CONFIG_HAVE_HW_BREAKPOINT
Andreas Schwab1c430c02014-01-21 23:24:02 +0100844 if (unlikely(!hw_brk_match(&__get_cpu_var(current_brk), &new->thread.hw_brk)))
Paul Gortmaker21f58502014-04-29 15:25:17 -0400845 __set_breakpoint(&new->thread.hw_brk);
K.Prasad5aae8a52010-06-15 11:35:19 +0530846#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000847#endif
848
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000849
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000850 new_thread = &new->thread;
851 old_thread = &current->thread;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000852
853#ifdef CONFIG_PPC64
854 /*
855 * Collect processor utilization data per process
856 */
857 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
858 struct cpu_usage *cu = &__get_cpu_var(cpu_usage_array);
859 long unsigned start_tb, current_tb;
860 start_tb = old_thread->start_tb;
861 cu->current_tb = current_tb = mfspr(SPRN_PURR);
862 old_thread->accum_tb += (current_tb - start_tb);
863 new_thread->start_tb = current_tb;
864 }
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700865#endif /* CONFIG_PPC64 */
866
867#ifdef CONFIG_PPC_BOOK3S_64
868 batch = &__get_cpu_var(ppc64_tlb_batch);
869 if (batch->active) {
870 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
871 if (batch->index)
872 __flush_tlb_pending(batch);
873 batch->active = 0;
874 }
875#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000876
Anton Blanchard44387e92008-03-17 15:27:09 +1100877 /*
878 * We can't take a PMU exception inside _switch() since there is a
879 * window where the kernel stack SLB and the kernel stack are out
880 * of sync. Hard disable here.
881 */
882 hard_irq_disable();
Michael Neulingbc2a9402013-02-13 16:21:40 +0000883
884 tm_recheckpoint_new_task(new);
885
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000886 last = _switch(old_thread, new_thread);
887
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700888#ifdef CONFIG_PPC_BOOK3S_64
889 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
890 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
891 batch = &__get_cpu_var(ppc64_tlb_batch);
892 batch->active = 1;
893 }
894#endif /* CONFIG_PPC_BOOK3S_64 */
895
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000896 return last;
897}
898
Paul Mackerras06d67d52005-10-10 22:29:05 +1000899static int instructions_to_print = 16;
900
Paul Mackerras06d67d52005-10-10 22:29:05 +1000901static void show_instructions(struct pt_regs *regs)
902{
903 int i;
904 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
905 sizeof(int));
906
907 printk("Instruction dump:");
908
909 for (i = 0; i < instructions_to_print; i++) {
910 int instr;
911
912 if (!(i % 8))
913 printk("\n");
914
Scott Wood0de2d822007-09-28 04:38:55 +1000915#if !defined(CONFIG_BOOKE)
916 /* If executing with the IMMU off, adjust pc rather
917 * than print XXXXXXXX.
918 */
919 if (!(regs->msr & MSR_IR))
920 pc = (unsigned long)phys_to_virt(pc);
921#endif
922
Stephen Rothwellaf308372006-03-23 17:38:10 +1100923 /* We use __get_user here *only* to avoid an OOPS on a
924 * bad address because the pc *should* only be a
925 * kernel address.
926 */
Anton Blanchard00ae36d2006-10-13 12:17:16 +1000927 if (!__kernel_text_address(pc) ||
928 __get_user(instr, (unsigned int __user *)pc)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +0000929 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +1000930 } else {
931 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +0000932 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000933 else
Ira Snyder40c8cef2012-01-06 12:34:07 +0000934 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000935 }
936
937 pc += sizeof(int);
938 }
939
940 printk("\n");
941}
942
943static struct regbit {
944 unsigned long bit;
945 const char *name;
946} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000947#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
948 {MSR_SF, "SF"},
949 {MSR_HV, "HV"},
950#endif
951 {MSR_VEC, "VEC"},
952 {MSR_VSX, "VSX"},
953#ifdef CONFIG_BOOKE
954 {MSR_CE, "CE"},
955#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000956 {MSR_EE, "EE"},
957 {MSR_PR, "PR"},
958 {MSR_FP, "FP"},
959 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000960#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +0000961 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000962#else
963 {MSR_SE, "SE"},
964 {MSR_BE, "BE"},
965#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000966 {MSR_IR, "IR"},
967 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000968 {MSR_PMM, "PMM"},
969#ifndef CONFIG_BOOKE
970 {MSR_RI, "RI"},
971 {MSR_LE, "LE"},
972#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000973 {0, NULL}
974};
975
976static void printbits(unsigned long val, struct regbit *bits)
977{
978 const char *sep = "";
979
980 printk("<");
981 for (; bits->bit; ++bits)
982 if (val & bits->bit) {
983 printk("%s%s", sep, bits->name);
984 sep = ",";
985 }
986 printk(">");
987}
988
989#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500990#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000991#define REGS_PER_LINE 4
992#define LAST_VOLATILE 13
993#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500994#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000995#define REGS_PER_LINE 8
996#define LAST_VOLATILE 12
997#endif
998
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000999void show_regs(struct pt_regs * regs)
1000{
1001 int i, trap;
1002
Tejun Heoa43cb952013-04-30 15:27:17 -07001003 show_regs_print_info(KERN_DEFAULT);
1004
Paul Mackerras06d67d52005-10-10 22:29:05 +10001005 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
1006 regs->nip, regs->link, regs->ctr);
1007 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001008 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001009 printk("MSR: "REG" ", regs->msr);
1010 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001011 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001012 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +00001013 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001014 printk("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001015 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001016#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001017 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001018#else
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001019 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
1020#endif
1021#ifdef CONFIG_PPC64
1022 printk("SOFTE: %ld ", regs->softe);
1023#endif
1024#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001025 if (MSR_TM_ACTIVE(regs->msr))
1026 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001027#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001028
1029 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001030 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +00001031 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001032 printk(REG " ", regs->gpr[i]);
1033 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001034 break;
1035 }
1036 printk("\n");
1037#ifdef CONFIG_KALLSYMS
1038 /*
1039 * Lookup NIP late so we have the best change of getting the
1040 * above info out without failing
1041 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001042 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1043 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001044#endif
1045 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001046 if (!user_mode(regs))
1047 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001048}
1049
1050void exit_thread(void)
1051{
Paul Mackerras48abec02005-11-30 13:20:54 +11001052 discard_lazy_cpu_state();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001053}
1054
1055void flush_thread(void)
1056{
Paul Mackerras48abec02005-11-30 13:20:54 +11001057 discard_lazy_cpu_state();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001058
K.Prasade0780b72011-02-10 04:44:35 +00001059#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301060 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001061#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001062 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001063#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001064}
1065
1066void
1067release_thread(struct task_struct *t)
1068{
1069}
1070
1071/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001072 * this gets called so that we can store coprocessor state into memory and
1073 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001074 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001075int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001076{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001077 flush_fp_to_thread(src);
1078 flush_altivec_to_thread(src);
1079 flush_vsx_to_thread(src);
1080 flush_spe_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001081 /*
1082 * Flush TM state out so we can copy it. __switch_to_tm() does this
1083 * flush but it removes the checkpointed state from the current CPU and
1084 * transitions the CPU out of TM mode. Hence we need to call
1085 * tm_recheckpoint_new_task() (on the same task) to restore the
1086 * checkpointed state back and the TM mode.
1087 */
1088 __switch_to_tm(src);
1089 tm_recheckpoint_new_task(src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001090
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001091 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001092
1093 clear_task_ebb(dst);
1094
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001095 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001096}
1097
Michael Ellermancec15482014-07-10 12:29:21 +10001098static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1099{
1100#ifdef CONFIG_PPC_STD_MMU_64
1101 unsigned long sp_vsid;
1102 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1103
1104 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1105 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1106 << SLB_VSID_SHIFT_1T;
1107 else
1108 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1109 << SLB_VSID_SHIFT;
1110 sp_vsid |= SLB_VSID_KERNEL | llp;
1111 p->thread.ksp_vsid = sp_vsid;
1112#endif
1113}
1114
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001115/*
1116 * Copy a thread..
1117 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001118extern unsigned long dscr_default; /* defined in arch/powerpc/kernel/sysfs.c */
1119
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -07001120int copy_thread(unsigned long clone_flags, unsigned long usp,
Al Viroafa86fc2012-10-22 22:51:14 -04001121 unsigned long arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001122{
1123 struct pt_regs *childregs, *kregs;
1124 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001125 extern void ret_from_kernel_thread(void);
1126 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001127 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001128
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001129 /* Copy registers */
1130 sp -= sizeof(struct pt_regs);
1131 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001132 if (unlikely(p->flags & PF_KTHREAD)) {
Al Viro138d1ce2012-10-11 08:41:43 -04001133 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -04001134 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001135 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001136 /* function */
1137 if (usp)
1138 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001139#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001140 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -04001141 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001142#endif
Al Viro58254e12012-09-12 18:32:42 -04001143 childregs->gpr[15] = arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001144 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001145 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001146 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001147 } else {
Al Viroafa86fc2012-10-22 22:51:14 -04001148 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001149 CHECK_FULL_REGS(regs);
1150 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001151 if (usp)
1152 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001153 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001154 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001155 if (clone_flags & CLONE_SETTLS) {
1156#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +00001157 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +10001158 childregs->gpr[13] = childregs->gpr[6];
1159 else
1160#endif
1161 childregs->gpr[2] = childregs->gpr[6];
1162 }
Al Viro58254e12012-09-12 18:32:42 -04001163
1164 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001165 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001166 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001167
1168 /*
1169 * The way this works is that at some point in the future
1170 * some task will call _switch to switch to the new task.
1171 * That will pop off the stack frame created below and start
1172 * the new task running at ret_from_fork. The new task will
1173 * do some house keeping and then return from the fork or clone
1174 * system call, using the stack frame created above.
1175 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001176 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001177 sp -= sizeof(struct pt_regs);
1178 kregs = (struct pt_regs *) sp;
1179 sp -= STACK_FRAME_OVERHEAD;
1180 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001181#ifdef CONFIG_PPC32
Kumar Gala85218822008-04-28 16:21:22 +10001182 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1183 _ALIGN_UP(sizeof(struct thread_info), 16);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001184#endif
Oleg Nesterov28d170ab2013-04-21 06:47:59 +00001185#ifdef CONFIG_HAVE_HW_BREAKPOINT
1186 p->thread.ptrace_bps[0] = NULL;
1187#endif
1188
Paul Mackerras18461962013-09-10 20:21:10 +10001189 p->thread.fp_save_area = NULL;
1190#ifdef CONFIG_ALTIVEC
1191 p->thread.vr_save_area = NULL;
1192#endif
1193
Michael Ellermancec15482014-07-10 12:29:21 +10001194 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001195
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001196#ifdef CONFIG_PPC64
1197 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001198 p->thread.dscr_inherit = current->thread.dscr_inherit;
1199 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001200 }
Haren Myneni92779242012-12-06 21:49:56 +00001201 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1202 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001203#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001204 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001205 return 0;
1206}
1207
1208/*
1209 * Set up a thread for executing a new program
1210 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001211void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001212{
Michael Ellerman90eac722005-10-21 16:01:33 +10001213#ifdef CONFIG_PPC64
1214 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
1215#endif
1216
Paul Mackerras06d67d52005-10-10 22:29:05 +10001217 /*
1218 * If we exec out of a kernel thread then thread.regs will not be
1219 * set. Do it now.
1220 */
1221 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001222 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1223 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001224 }
1225
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001226 memset(regs->gpr, 0, sizeof(regs->gpr));
1227 regs->ctr = 0;
1228 regs->link = 0;
1229 regs->xer = 0;
1230 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001231 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001232
Roland McGrath474f8192007-09-24 16:52:44 -07001233 /*
1234 * We have just cleared all the nonvolatile GPRs, so make
1235 * FULL_REGS(regs) return true. This is necessary to allow
1236 * ptrace to examine the thread immediately after exec.
1237 */
1238 regs->trap &= ~1UL;
1239
Paul Mackerras06d67d52005-10-10 22:29:05 +10001240#ifdef CONFIG_PPC32
1241 regs->mq = 0;
1242 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001243 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001244#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001245 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001246 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001247
Rusty Russell94af3ab2013-11-20 22:15:02 +11001248 if (is_elf2_task()) {
1249 /* Look ma, no function descriptors! */
1250 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001251
Rusty Russell94af3ab2013-11-20 22:15:02 +11001252 /*
1253 * Ulrich says:
1254 * The latest iteration of the ABI requires that when
1255 * calling a function (at its global entry point),
1256 * the caller must ensure r12 holds the entry point
1257 * address (so that the function can quickly
1258 * establish addressability).
1259 */
1260 regs->gpr[12] = start;
1261 /* Make sure that's restored on entry to userspace. */
1262 set_thread_flag(TIF_RESTOREALL);
1263 } else {
1264 unsigned long toc;
1265
1266 /* start is a relocated pointer to the function
1267 * descriptor for the elf _start routine. The first
1268 * entry in the function descriptor is the entry
1269 * address of _start and the second entry is the TOC
1270 * value we need to use.
1271 */
1272 __get_user(entry, (unsigned long __user *)start);
1273 __get_user(toc, (unsigned long __user *)start+1);
1274
1275 /* Check whether the e_entry function descriptor entries
1276 * need to be relocated before we can use them.
1277 */
1278 if (load_addr != 0) {
1279 entry += load_addr;
1280 toc += load_addr;
1281 }
1282 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001283 }
1284 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001285 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001286 } else {
1287 regs->nip = start;
1288 regs->gpr[2] = 0;
1289 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001290 }
1291#endif
Paul Mackerras48abec02005-11-30 13:20:54 +11001292 discard_lazy_cpu_state();
Michael Neulingce48b212008-06-25 14:07:18 +10001293#ifdef CONFIG_VSX
1294 current->thread.used_vsr = 0;
1295#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001296 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001297 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001298#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001299 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1300 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001301 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001302 current->thread.vrsave = 0;
1303 current->thread.used_vr = 0;
1304#endif /* CONFIG_ALTIVEC */
1305#ifdef CONFIG_SPE
1306 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1307 current->thread.acc = 0;
1308 current->thread.spefscr = 0;
1309 current->thread.used_spe = 0;
1310#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001311#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1312 if (cpu_has_feature(CPU_FTR_TM))
1313 regs->msr |= MSR_TM;
1314 current->thread.tm_tfhar = 0;
1315 current->thread.tm_texasr = 0;
1316 current->thread.tm_tfiar = 0;
1317#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001318}
1319
1320#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1321 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1322
1323int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1324{
1325 struct pt_regs *regs = tsk->thread.regs;
1326
1327 /* This is a bit hairy. If we are an SPE enabled processor
1328 * (have embedded fp) we store the IEEE exception enable flags in
1329 * fpexc_mode. fpexc_mode is also used for setting FP exception
1330 * mode (asyn, precise, disabled) for 'Classic' FP. */
1331 if (val & PR_FP_EXC_SW_ENABLE) {
1332#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001333 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001334 /*
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 tsk->thread.fpexc_mode = val &
1348 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1349 return 0;
1350 } else {
1351 return -EINVAL;
1352 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001353#else
1354 return -EINVAL;
1355#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001356 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001357
1358 /* on a CONFIG_SPE this does not hurt us. The bits that
1359 * __pack_fe01 use do not overlap with bits used for
1360 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1361 * on CONFIG_SPE implementations are reserved so writing to
1362 * them does not change anything */
1363 if (val > PR_FP_EXC_PRECISE)
1364 return -EINVAL;
1365 tsk->thread.fpexc_mode = __pack_fe01(val);
1366 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1367 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1368 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001369 return 0;
1370}
1371
1372int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1373{
1374 unsigned int val;
1375
1376 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1377#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001378 if (cpu_has_feature(CPU_FTR_SPE)) {
1379 /*
1380 * When the sticky exception bits are set
1381 * directly by userspace, it must call prctl
1382 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1383 * in the existing prctl settings) or
1384 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1385 * the bits being set). <fenv.h> functions
1386 * saving and restoring the whole
1387 * floating-point environment need to do so
1388 * anyway to restore the prctl settings from
1389 * the saved environment.
1390 */
1391 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001392 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001393 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001394 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001395#else
1396 return -EINVAL;
1397#endif
1398 else
1399 val = __unpack_fe01(tsk->thread.fpexc_mode);
1400 return put_user(val, (unsigned int __user *) adr);
1401}
1402
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001403int set_endian(struct task_struct *tsk, unsigned int val)
1404{
1405 struct pt_regs *regs = tsk->thread.regs;
1406
1407 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1408 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1409 return -EINVAL;
1410
1411 if (regs == NULL)
1412 return -EINVAL;
1413
1414 if (val == PR_ENDIAN_BIG)
1415 regs->msr &= ~MSR_LE;
1416 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1417 regs->msr |= MSR_LE;
1418 else
1419 return -EINVAL;
1420
1421 return 0;
1422}
1423
1424int get_endian(struct task_struct *tsk, unsigned long adr)
1425{
1426 struct pt_regs *regs = tsk->thread.regs;
1427 unsigned int val;
1428
1429 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1430 !cpu_has_feature(CPU_FTR_REAL_LE))
1431 return -EINVAL;
1432
1433 if (regs == NULL)
1434 return -EINVAL;
1435
1436 if (regs->msr & MSR_LE) {
1437 if (cpu_has_feature(CPU_FTR_REAL_LE))
1438 val = PR_ENDIAN_LITTLE;
1439 else
1440 val = PR_ENDIAN_PPC_LITTLE;
1441 } else
1442 val = PR_ENDIAN_BIG;
1443
1444 return put_user(val, (unsigned int __user *)adr);
1445}
1446
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001447int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1448{
1449 tsk->thread.align_ctl = val;
1450 return 0;
1451}
1452
1453int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1454{
1455 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1456}
1457
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001458static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1459 unsigned long nbytes)
1460{
1461 unsigned long stack_page;
1462 unsigned long cpu = task_cpu(p);
1463
1464 /*
1465 * Avoid crashing if the stack has overflowed and corrupted
1466 * task_cpu(p), which is in the thread_info struct.
1467 */
1468 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1469 stack_page = (unsigned long) hardirq_ctx[cpu];
1470 if (sp >= stack_page + sizeof(struct thread_struct)
1471 && sp <= stack_page + THREAD_SIZE - nbytes)
1472 return 1;
1473
1474 stack_page = (unsigned long) softirq_ctx[cpu];
1475 if (sp >= stack_page + sizeof(struct thread_struct)
1476 && sp <= stack_page + THREAD_SIZE - nbytes)
1477 return 1;
1478 }
1479 return 0;
1480}
1481
Anton Blanchard2f251942006-03-27 11:46:18 +11001482int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001483 unsigned long nbytes)
1484{
Al Viro0cec6fd2006-01-12 01:06:02 -08001485 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001486
1487 if (sp >= stack_page + sizeof(struct thread_struct)
1488 && sp <= stack_page + THREAD_SIZE - nbytes)
1489 return 1;
1490
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001491 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001492}
1493
Anton Blanchard2f251942006-03-27 11:46:18 +11001494EXPORT_SYMBOL(validate_sp);
1495
Paul Mackerras06d67d52005-10-10 22:29:05 +10001496unsigned long get_wchan(struct task_struct *p)
1497{
1498 unsigned long ip, sp;
1499 int count = 0;
1500
1501 if (!p || p == current || p->state == TASK_RUNNING)
1502 return 0;
1503
1504 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001505 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001506 return 0;
1507
1508 do {
1509 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001510 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001511 return 0;
1512 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001513 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001514 if (!in_sched_functions(ip))
1515 return ip;
1516 }
1517 } while (count++ < 16);
1518 return 0;
1519}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001520
Johannes Bergc4d04be2008-11-20 03:24:07 +00001521static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001522
1523void show_stack(struct task_struct *tsk, unsigned long *stack)
1524{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001525 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001526 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001527 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001528#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1529 int curr_frame = current->curr_ret_stack;
1530 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001531 unsigned long rth = (unsigned long)return_to_handler;
1532 unsigned long mrth = -1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001533#ifdef CONFIG_PPC64
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001534 extern void mod_return_to_handler(void);
1535 rth = *(unsigned long *)rth;
1536 mrth = (unsigned long)mod_return_to_handler;
1537 mrth = *(unsigned long *)mrth;
Steven Rostedt6794c782009-02-09 21:10:27 -08001538#endif
1539#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001540
1541 sp = (unsigned long) stack;
1542 if (tsk == NULL)
1543 tsk = current;
1544 if (sp == 0) {
1545 if (tsk == current)
1546 asm("mr %0,1" : "=r" (sp));
1547 else
1548 sp = tsk->thread.ksp;
1549 }
1550
Paul Mackerras06d67d52005-10-10 22:29:05 +10001551 lr = 0;
1552 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001553 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001554 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001555 return;
1556
1557 stack = (unsigned long *) sp;
1558 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001559 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001560 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001561 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001562#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001563 if ((ip == rth || ip == mrth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001564 printk(" (%pS)",
1565 (void *)current->ret_stack[curr_frame].ret);
1566 curr_frame--;
1567 }
1568#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001569 if (firstframe)
1570 printk(" (unreliable)");
1571 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001572 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001573 firstframe = 0;
1574
1575 /*
1576 * See if this is an exception frame.
1577 * We look for the "regshere" marker in the current frame.
1578 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001579 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1580 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001581 struct pt_regs *regs = (struct pt_regs *)
1582 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001583 lr = regs->link;
Paul Mackerras9be9be22014-06-12 16:53:08 +10001584 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001585 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001586 firstframe = 1;
1587 }
1588
1589 sp = newsp;
1590 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001591}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001592
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001593#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001594/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001595void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001596{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001597 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001598 unsigned long ctrl;
1599
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001600 ctrl = mfspr(SPRN_CTRLF);
1601 ctrl |= CTRL_RUNLATCH;
1602 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001603
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001604 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001605}
1606
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001607/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001608void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001609{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001610 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001611 unsigned long ctrl;
1612
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001613 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001614
Anton Blanchard4138d652010-08-06 03:28:19 +00001615 ctrl = mfspr(SPRN_CTRLF);
1616 ctrl &= ~CTRL_RUNLATCH;
1617 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001618}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001619#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001620
Anton Blanchardd8390882009-02-22 01:50:03 +00001621unsigned long arch_align_stack(unsigned long sp)
1622{
1623 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1624 sp -= get_random_int() & ~PAGE_MASK;
1625 return sp & ~0xf;
1626}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001627
1628static inline unsigned long brk_rnd(void)
1629{
1630 unsigned long rnd = 0;
1631
1632 /* 8MB for 32bit, 1GB for 64bit */
1633 if (is_32bit_task())
1634 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1635 else
1636 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1637
1638 return rnd << PAGE_SHIFT;
1639}
1640
1641unsigned long arch_randomize_brk(struct mm_struct *mm)
1642{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001643 unsigned long base = mm->brk;
1644 unsigned long ret;
1645
Kumar Galace7a35c2009-10-16 07:05:17 +00001646#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001647 /*
1648 * If we are using 1TB segments and we are allowed to randomise
1649 * the heap, we can put it above 1TB so it is backed by a 1TB
1650 * segment. Otherwise the heap will be in the bottom 1TB
1651 * which always uses 256MB segments and this may result in a
1652 * performance penalty.
1653 */
1654 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1655 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1656#endif
1657
1658 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001659
1660 if (ret < mm->brk)
1661 return mm->brk;
1662
1663 return ret;
1664}
Anton Blanchard501cb162009-02-22 01:50:07 +00001665
1666unsigned long randomize_et_dyn(unsigned long base)
1667{
1668 unsigned long ret = PAGE_ALIGN(base + brk_rnd());
1669
1670 if (ret < base)
1671 return base;
1672
1673 return ret;
1674}