blob: 2ae1b99166c63895784539f1c87a7488278ddf05 [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
Michael Neulingb9818c32013-01-10 14:25:34 +0000499int 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))
504 return set_dawr(brk);
505
Michael Neuling9422de32012-12-20 14:06:44 +0000506 return set_dabr(brk);
507}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000508
Paul Mackerras06d67d52005-10-10 22:29:05 +1000509#ifdef CONFIG_PPC64
510DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000511#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000512
Michael Neuling9422de32012-12-20 14:06:44 +0000513static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
514 struct arch_hw_breakpoint *b)
515{
516 if (a->address != b->address)
517 return false;
518 if (a->type != b->type)
519 return false;
520 if (a->len != b->len)
521 return false;
522 return true;
523}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100524
Michael Neulingfb096922013-02-13 16:21:37 +0000525#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100526static void tm_reclaim_thread(struct thread_struct *thr,
527 struct thread_info *ti, uint8_t cause)
528{
529 unsigned long msr_diff = 0;
530
531 /*
532 * If FP/VSX registers have been already saved to the
533 * thread_struct, move them to the transact_fp array.
534 * We clear the TIF_RESTORE_TM bit since after the reclaim
535 * the thread will no longer be transactional.
536 */
537 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
538 msr_diff = thr->tm_orig_msr & ~thr->regs->msr;
539 if (msr_diff & MSR_FP)
540 memcpy(&thr->transact_fp, &thr->fp_state,
541 sizeof(struct thread_fp_state));
542 if (msr_diff & MSR_VEC)
543 memcpy(&thr->transact_vr, &thr->vr_state,
544 sizeof(struct thread_vr_state));
545 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
546 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
547 }
548
549 tm_reclaim(thr, thr->regs->msr, cause);
550
551 /* Having done the reclaim, we now have the checkpointed
552 * FP/VSX values in the registers. These might be valid
553 * even if we have previously called enable_kernel_fp() or
554 * flush_fp_to_thread(), so update thr->regs->msr to
555 * indicate their current validity.
556 */
557 thr->regs->msr |= msr_diff;
558}
559
560void tm_reclaim_current(uint8_t cause)
561{
562 tm_enable();
563 tm_reclaim_thread(&current->thread, current_thread_info(), cause);
564}
565
Michael Neulingfb096922013-02-13 16:21:37 +0000566static inline void tm_reclaim_task(struct task_struct *tsk)
567{
568 /* We have to work out if we're switching from/to a task that's in the
569 * middle of a transaction.
570 *
571 * In switching we need to maintain a 2nd register state as
572 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
573 * checkpointed (tbegin) state in ckpt_regs and saves the transactional
574 * (current) FPRs into oldtask->thread.transact_fpr[].
575 *
576 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
577 */
578 struct thread_struct *thr = &tsk->thread;
579
580 if (!thr->regs)
581 return;
582
583 if (!MSR_TM_ACTIVE(thr->regs->msr))
584 goto out_and_saveregs;
585
586 /* Stash the original thread MSR, as giveup_fpu et al will
587 * modify it. We hold onto it to see whether the task used
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100588 * FP & vector regs. If the TIF_RESTORE_TM flag is set,
589 * tm_orig_msr is already set.
Michael Neulingfb096922013-02-13 16:21:37 +0000590 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100591 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
592 thr->tm_orig_msr = thr->regs->msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000593
594 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
595 "ccr=%lx, msr=%lx, trap=%lx)\n",
596 tsk->pid, thr->regs->nip,
597 thr->regs->ccr, thr->regs->msr,
598 thr->regs->trap);
599
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100600 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000601
602 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
603 tsk->pid);
604
605out_and_saveregs:
606 /* Always save the regs here, even if a transaction's not active.
607 * This context-switches a thread's TM info SPRs. We do it here to
608 * be consistent with the restore path (in recheckpoint) which
609 * cannot happen later in _switch().
610 */
611 tm_save_sprs(thr);
612}
613
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100614extern void __tm_recheckpoint(struct thread_struct *thread,
615 unsigned long orig_msr);
616
617void tm_recheckpoint(struct thread_struct *thread,
618 unsigned long orig_msr)
619{
620 unsigned long flags;
621
622 /* We really can't be interrupted here as the TEXASR registers can't
623 * change and later in the trecheckpoint code, we have a userspace R1.
624 * So let's hard disable over this region.
625 */
626 local_irq_save(flags);
627 hard_irq_disable();
628
629 /* The TM SPRs are restored here, so that TEXASR.FS can be set
630 * before the trecheckpoint and no explosion occurs.
631 */
632 tm_restore_sprs(thread);
633
634 __tm_recheckpoint(thread, orig_msr);
635
636 local_irq_restore(flags);
637}
638
Michael Neulingbc2a9402013-02-13 16:21:40 +0000639static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000640{
641 unsigned long msr;
642
643 if (!cpu_has_feature(CPU_FTR_TM))
644 return;
645
646 /* Recheckpoint the registers of the thread we're about to switch to.
647 *
648 * If the task was using FP, we non-lazily reload both the original and
649 * the speculative FP register states. This is because the kernel
650 * doesn't see if/when a TM rollback occurs, so if we take an FP
651 * unavoidable later, we are unable to determine which set of FP regs
652 * need to be restored.
653 */
654 if (!new->thread.regs)
655 return;
656
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100657 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
658 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000659 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100660 }
Michael Neulingfb096922013-02-13 16:21:37 +0000661 msr = new->thread.tm_orig_msr;
662 /* Recheckpoint to restore original checkpointed register state. */
663 TM_DEBUG("*** tm_recheckpoint of pid %d "
664 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
665 new->pid, new->thread.regs->msr, msr);
666
667 /* This loads the checkpointed FP/VEC state, if used */
668 tm_recheckpoint(&new->thread, msr);
669
670 /* This loads the speculative FP/VEC state, if used */
671 if (msr & MSR_FP) {
672 do_load_up_transact_fpu(&new->thread);
673 new->thread.regs->msr |=
674 (MSR_FP | new->thread.fpexc_mode);
675 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000676#ifdef CONFIG_ALTIVEC
Michael Neulingfb096922013-02-13 16:21:37 +0000677 if (msr & MSR_VEC) {
678 do_load_up_transact_altivec(&new->thread);
679 new->thread.regs->msr |= MSR_VEC;
680 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000681#endif
Michael Neulingfb096922013-02-13 16:21:37 +0000682 /* We may as well turn on VSX too since all the state is restored now */
683 if (msr & MSR_VSX)
684 new->thread.regs->msr |= MSR_VSX;
685
686 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
687 "(kernel msr 0x%lx)\n",
688 new->pid, mfmsr());
689}
690
691static inline void __switch_to_tm(struct task_struct *prev)
692{
693 if (cpu_has_feature(CPU_FTR_TM)) {
694 tm_enable();
695 tm_reclaim_task(prev);
696 }
697}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100698
699/*
700 * This is called if we are on the way out to userspace and the
701 * TIF_RESTORE_TM flag is set. It checks if we need to reload
702 * FP and/or vector state and does so if necessary.
703 * If userspace is inside a transaction (whether active or
704 * suspended) and FP/VMX/VSX instructions have ever been enabled
705 * inside that transaction, then we have to keep them enabled
706 * and keep the FP/VMX/VSX state loaded while ever the transaction
707 * continues. The reason is that if we didn't, and subsequently
708 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
709 * we don't know whether it's the same transaction, and thus we
710 * don't know which of the checkpointed state and the transactional
711 * state to use.
712 */
713void restore_tm_state(struct pt_regs *regs)
714{
715 unsigned long msr_diff;
716
717 clear_thread_flag(TIF_RESTORE_TM);
718 if (!MSR_TM_ACTIVE(regs->msr))
719 return;
720
721 msr_diff = current->thread.tm_orig_msr & ~regs->msr;
722 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
723 if (msr_diff & MSR_FP) {
724 fp_enable();
725 load_fp_state(&current->thread.fp_state);
726 regs->msr |= current->thread.fpexc_mode;
727 }
728 if (msr_diff & MSR_VEC) {
729 vec_enable();
730 load_vr_state(&current->thread.vr_state);
731 }
732 regs->msr |= msr_diff;
733}
734
Michael Neulingfb096922013-02-13 16:21:37 +0000735#else
736#define tm_recheckpoint_new_task(new)
737#define __switch_to_tm(prev)
738#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +0000739
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000740struct task_struct *__switch_to(struct task_struct *prev,
741 struct task_struct *new)
742{
743 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000744 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700745#ifdef CONFIG_PPC_BOOK3S_64
746 struct ppc64_tlb_batch *batch;
747#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000748
Michael Neuling7ba5fef2013-10-02 17:15:14 +1000749 WARN_ON(!irqs_disabled());
750
Michael Neulingc2d52642013-08-09 17:29:30 +1000751 /* Back up the TAR across context switches.
752 * Note that the TAR is not available for use in the kernel. (To
753 * provide this, the TAR should be backed up/restored on exception
754 * entry/exit instead, and be in pt_regs. FIXME, this should be in
755 * pt_regs anyway (for debug).)
756 * Save the TAR here before we do treclaim/trecheckpoint as these
757 * will change the TAR.
758 */
759 save_tar(&prev->thread);
760
Michael Neulingbc2a9402013-02-13 16:21:40 +0000761 __switch_to_tm(prev);
762
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000763#ifdef CONFIG_SMP
764 /* avoid complexity of lazy save/restore of fpu
765 * by just saving it every time we switch out if
766 * this task used the fpu during the last quantum.
767 *
768 * If it tries to use the fpu again, it'll trap and
769 * reload its fp regs. So we don't have to do a restore
770 * every switch, just a save.
771 * -- Cort
772 */
773 if (prev->thread.regs && (prev->thread.regs->msr & MSR_FP))
774 giveup_fpu(prev);
775#ifdef CONFIG_ALTIVEC
776 /*
777 * If the previous thread used altivec in the last quantum
778 * (thus changing altivec regs) then save them.
779 * We used to check the VRSAVE register but not all apps
780 * set it, so we don't rely on it now (and in fact we need
781 * to save & restore VSCR even if VRSAVE == 0). -- paulus
782 *
783 * On SMP we always save/restore altivec regs just to avoid the
784 * complexity of changing processors.
785 * -- Cort
786 */
787 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VEC))
788 giveup_altivec(prev);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000789#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000790#ifdef CONFIG_VSX
791 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VSX))
Michael Neuling7c292172008-07-11 16:29:12 +1000792 /* VMX and FPU registers are already save here */
793 __giveup_vsx(prev);
Michael Neulingce48b212008-06-25 14:07:18 +1000794#endif /* CONFIG_VSX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000795#ifdef CONFIG_SPE
796 /*
797 * If the previous thread used spe in the last quantum
798 * (thus changing spe regs) then save them.
799 *
800 * On SMP we always save/restore spe regs just to avoid the
801 * complexity of changing processors.
802 */
803 if ((prev->thread.regs && (prev->thread.regs->msr & MSR_SPE)))
804 giveup_spe(prev);
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000805#endif /* CONFIG_SPE */
806
807#else /* CONFIG_SMP */
808#ifdef CONFIG_ALTIVEC
809 /* Avoid the trap. On smp this this never happens since
810 * we don't set last_task_used_altivec -- Cort
811 */
812 if (new->thread.regs && last_task_used_altivec == new)
813 new->thread.regs->msr |= MSR_VEC;
814#endif /* CONFIG_ALTIVEC */
Michael Neulingce48b212008-06-25 14:07:18 +1000815#ifdef CONFIG_VSX
816 if (new->thread.regs && last_task_used_vsx == new)
817 new->thread.regs->msr |= MSR_VSX;
818#endif /* CONFIG_VSX */
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000819#ifdef CONFIG_SPE
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000820 /* Avoid the trap. On smp this this never happens since
821 * we don't set last_task_used_spe
822 */
823 if (new->thread.regs && last_task_used_spe == new)
824 new->thread.regs->msr |= MSR_SPE;
825#endif /* CONFIG_SPE */
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000826
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000827#endif /* CONFIG_SMP */
828
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000829#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Scott Woodf5f97212013-11-22 15:52:29 -0600830 switch_booke_debug_regs(&new->thread.debug);
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000831#else
K.Prasad5aae8a52010-06-15 11:35:19 +0530832/*
833 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
834 * schedule DABR
835 */
836#ifndef CONFIG_HAVE_HW_BREAKPOINT
Andreas Schwab1c430c02014-01-21 23:24:02 +0100837 if (unlikely(!hw_brk_match(&__get_cpu_var(current_brk), &new->thread.hw_brk)))
Michael Neulingb9818c32013-01-10 14:25:34 +0000838 set_breakpoint(&new->thread.hw_brk);
K.Prasad5aae8a52010-06-15 11:35:19 +0530839#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000840#endif
841
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000842
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000843 new_thread = &new->thread;
844 old_thread = &current->thread;
Paul Mackerras06d67d52005-10-10 22:29:05 +1000845
846#ifdef CONFIG_PPC64
847 /*
848 * Collect processor utilization data per process
849 */
850 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
851 struct cpu_usage *cu = &__get_cpu_var(cpu_usage_array);
852 long unsigned start_tb, current_tb;
853 start_tb = old_thread->start_tb;
854 cu->current_tb = current_tb = mfspr(SPRN_PURR);
855 old_thread->accum_tb += (current_tb - start_tb);
856 new_thread->start_tb = current_tb;
857 }
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700858#endif /* CONFIG_PPC64 */
859
860#ifdef CONFIG_PPC_BOOK3S_64
861 batch = &__get_cpu_var(ppc64_tlb_batch);
862 if (batch->active) {
863 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
864 if (batch->index)
865 __flush_tlb_pending(batch);
866 batch->active = 0;
867 }
868#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000869
Anton Blanchard44387e92008-03-17 15:27:09 +1100870 /*
871 * We can't take a PMU exception inside _switch() since there is a
872 * window where the kernel stack SLB and the kernel stack are out
873 * of sync. Hard disable here.
874 */
875 hard_irq_disable();
Michael Neulingbc2a9402013-02-13 16:21:40 +0000876
877 tm_recheckpoint_new_task(new);
878
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000879 last = _switch(old_thread, new_thread);
880
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700881#ifdef CONFIG_PPC_BOOK3S_64
882 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
883 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
884 batch = &__get_cpu_var(ppc64_tlb_batch);
885 batch->active = 1;
886 }
887#endif /* CONFIG_PPC_BOOK3S_64 */
888
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000889 return last;
890}
891
Paul Mackerras06d67d52005-10-10 22:29:05 +1000892static int instructions_to_print = 16;
893
Paul Mackerras06d67d52005-10-10 22:29:05 +1000894static void show_instructions(struct pt_regs *regs)
895{
896 int i;
897 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
898 sizeof(int));
899
900 printk("Instruction dump:");
901
902 for (i = 0; i < instructions_to_print; i++) {
903 int instr;
904
905 if (!(i % 8))
906 printk("\n");
907
Scott Wood0de2d822007-09-28 04:38:55 +1000908#if !defined(CONFIG_BOOKE)
909 /* If executing with the IMMU off, adjust pc rather
910 * than print XXXXXXXX.
911 */
912 if (!(regs->msr & MSR_IR))
913 pc = (unsigned long)phys_to_virt(pc);
914#endif
915
Stephen Rothwellaf308372006-03-23 17:38:10 +1100916 /* We use __get_user here *only* to avoid an OOPS on a
917 * bad address because the pc *should* only be a
918 * kernel address.
919 */
Anton Blanchard00ae36d2006-10-13 12:17:16 +1000920 if (!__kernel_text_address(pc) ||
921 __get_user(instr, (unsigned int __user *)pc)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +0000922 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +1000923 } else {
924 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +0000925 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000926 else
Ira Snyder40c8cef2012-01-06 12:34:07 +0000927 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000928 }
929
930 pc += sizeof(int);
931 }
932
933 printk("\n");
934}
935
936static struct regbit {
937 unsigned long bit;
938 const char *name;
939} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000940#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
941 {MSR_SF, "SF"},
942 {MSR_HV, "HV"},
943#endif
944 {MSR_VEC, "VEC"},
945 {MSR_VSX, "VSX"},
946#ifdef CONFIG_BOOKE
947 {MSR_CE, "CE"},
948#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000949 {MSR_EE, "EE"},
950 {MSR_PR, "PR"},
951 {MSR_FP, "FP"},
952 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000953#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +0000954 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000955#else
956 {MSR_SE, "SE"},
957 {MSR_BE, "BE"},
958#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000959 {MSR_IR, "IR"},
960 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +0000961 {MSR_PMM, "PMM"},
962#ifndef CONFIG_BOOKE
963 {MSR_RI, "RI"},
964 {MSR_LE, "LE"},
965#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +1000966 {0, NULL}
967};
968
969static void printbits(unsigned long val, struct regbit *bits)
970{
971 const char *sep = "";
972
973 printk("<");
974 for (; bits->bit; ++bits)
975 if (val & bits->bit) {
976 printk("%s%s", sep, bits->name);
977 sep = ",";
978 }
979 printk(">");
980}
981
982#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500983#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000984#define REGS_PER_LINE 4
985#define LAST_VOLATILE 13
986#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -0500987#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +1000988#define REGS_PER_LINE 8
989#define LAST_VOLATILE 12
990#endif
991
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000992void show_regs(struct pt_regs * regs)
993{
994 int i, trap;
995
Tejun Heoa43cb952013-04-30 15:27:17 -0700996 show_regs_print_info(KERN_DEFAULT);
997
Paul Mackerras06d67d52005-10-10 22:29:05 +1000998 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
999 regs->nip, regs->link, regs->ctr);
1000 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001001 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001002 printk("MSR: "REG" ", regs->msr);
1003 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001004 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001005 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +00001006 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001007 printk("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001008 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001009#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001010 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001011#else
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001012 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
1013#endif
1014#ifdef CONFIG_PPC64
1015 printk("SOFTE: %ld ", regs->softe);
1016#endif
1017#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001018 if (MSR_TM_ACTIVE(regs->msr))
1019 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001020#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001021
1022 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001023 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +00001024 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001025 printk(REG " ", regs->gpr[i]);
1026 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001027 break;
1028 }
1029 printk("\n");
1030#ifdef CONFIG_KALLSYMS
1031 /*
1032 * Lookup NIP late so we have the best change of getting the
1033 * above info out without failing
1034 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001035 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1036 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001037#endif
1038 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001039 if (!user_mode(regs))
1040 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001041}
1042
1043void exit_thread(void)
1044{
Paul Mackerras48abec02005-11-30 13:20:54 +11001045 discard_lazy_cpu_state();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001046}
1047
1048void flush_thread(void)
1049{
Paul Mackerras48abec02005-11-30 13:20:54 +11001050 discard_lazy_cpu_state();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001051
K.Prasade0780b72011-02-10 04:44:35 +00001052#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301053 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001054#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001055 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001056#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001057}
1058
1059void
1060release_thread(struct task_struct *t)
1061{
1062}
1063
1064/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001065 * this gets called so that we can store coprocessor state into memory and
1066 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001067 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001068int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001069{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001070 flush_fp_to_thread(src);
1071 flush_altivec_to_thread(src);
1072 flush_vsx_to_thread(src);
1073 flush_spe_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001074 /*
1075 * Flush TM state out so we can copy it. __switch_to_tm() does this
1076 * flush but it removes the checkpointed state from the current CPU and
1077 * transitions the CPU out of TM mode. Hence we need to call
1078 * tm_recheckpoint_new_task() (on the same task) to restore the
1079 * checkpointed state back and the TM mode.
1080 */
1081 __switch_to_tm(src);
1082 tm_recheckpoint_new_task(src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001083
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001084 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001085
1086 clear_task_ebb(dst);
1087
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001088 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001089}
1090
1091/*
1092 * Copy a thread..
1093 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001094extern unsigned long dscr_default; /* defined in arch/powerpc/kernel/sysfs.c */
1095
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -07001096int copy_thread(unsigned long clone_flags, unsigned long usp,
Al Viroafa86fc2012-10-22 22:51:14 -04001097 unsigned long arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001098{
1099 struct pt_regs *childregs, *kregs;
1100 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001101 extern void ret_from_kernel_thread(void);
1102 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001103 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001104
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001105 /* Copy registers */
1106 sp -= sizeof(struct pt_regs);
1107 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001108 if (unlikely(p->flags & PF_KTHREAD)) {
Al Viro138d1ce2012-10-11 08:41:43 -04001109 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -04001110 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001111 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001112 /* function */
1113 if (usp)
1114 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001115#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001116 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -04001117 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001118#endif
Al Viro58254e12012-09-12 18:32:42 -04001119 childregs->gpr[15] = arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001120 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001121 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001122 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001123 } else {
Al Viroafa86fc2012-10-22 22:51:14 -04001124 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001125 CHECK_FULL_REGS(regs);
1126 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001127 if (usp)
1128 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001129 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001130 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001131 if (clone_flags & CLONE_SETTLS) {
1132#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +00001133 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +10001134 childregs->gpr[13] = childregs->gpr[6];
1135 else
1136#endif
1137 childregs->gpr[2] = childregs->gpr[6];
1138 }
Al Viro58254e12012-09-12 18:32:42 -04001139
1140 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001141 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001142 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001143
1144 /*
1145 * The way this works is that at some point in the future
1146 * some task will call _switch to switch to the new task.
1147 * That will pop off the stack frame created below and start
1148 * the new task running at ret_from_fork. The new task will
1149 * do some house keeping and then return from the fork or clone
1150 * system call, using the stack frame created above.
1151 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001152 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001153 sp -= sizeof(struct pt_regs);
1154 kregs = (struct pt_regs *) sp;
1155 sp -= STACK_FRAME_OVERHEAD;
1156 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001157#ifdef CONFIG_PPC32
Kumar Gala85218822008-04-28 16:21:22 +10001158 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1159 _ALIGN_UP(sizeof(struct thread_info), 16);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001160#endif
Oleg Nesterov28d170ab2013-04-21 06:47:59 +00001161#ifdef CONFIG_HAVE_HW_BREAKPOINT
1162 p->thread.ptrace_bps[0] = NULL;
1163#endif
1164
Paul Mackerras18461962013-09-10 20:21:10 +10001165 p->thread.fp_save_area = NULL;
1166#ifdef CONFIG_ALTIVEC
1167 p->thread.vr_save_area = NULL;
1168#endif
1169
Benjamin Herrenschmidt94491682009-06-02 21:17:45 +00001170#ifdef CONFIG_PPC_STD_MMU_64
Matt Evans44ae3ab2011-04-06 19:48:50 +00001171 if (mmu_has_feature(MMU_FTR_SLB)) {
Paul Mackerras1189be62007-10-11 20:37:10 +10001172 unsigned long sp_vsid;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001173 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001174
Matt Evans44ae3ab2011-04-06 19:48:50 +00001175 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
Paul Mackerras1189be62007-10-11 20:37:10 +10001176 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1177 << SLB_VSID_SHIFT_1T;
1178 else
1179 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1180 << SLB_VSID_SHIFT;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +11001181 sp_vsid |= SLB_VSID_KERNEL | llp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001182 p->thread.ksp_vsid = sp_vsid;
1183 }
Benjamin Herrenschmidt747bea92009-07-23 23:15:27 +00001184#endif /* CONFIG_PPC_STD_MMU_64 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001185#ifdef CONFIG_PPC64
1186 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001187 p->thread.dscr_inherit = current->thread.dscr_inherit;
1188 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001189 }
Haren Myneni92779242012-12-06 21:49:56 +00001190 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1191 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001192#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001193 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001194 return 0;
1195}
1196
1197/*
1198 * Set up a thread for executing a new program
1199 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001200void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001201{
Michael Ellerman90eac722005-10-21 16:01:33 +10001202#ifdef CONFIG_PPC64
1203 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
1204#endif
1205
Paul Mackerras06d67d52005-10-10 22:29:05 +10001206 /*
1207 * If we exec out of a kernel thread then thread.regs will not be
1208 * set. Do it now.
1209 */
1210 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001211 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1212 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001213 }
1214
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001215 memset(regs->gpr, 0, sizeof(regs->gpr));
1216 regs->ctr = 0;
1217 regs->link = 0;
1218 regs->xer = 0;
1219 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001220 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001221
Roland McGrath474f8192007-09-24 16:52:44 -07001222 /*
1223 * We have just cleared all the nonvolatile GPRs, so make
1224 * FULL_REGS(regs) return true. This is necessary to allow
1225 * ptrace to examine the thread immediately after exec.
1226 */
1227 regs->trap &= ~1UL;
1228
Paul Mackerras06d67d52005-10-10 22:29:05 +10001229#ifdef CONFIG_PPC32
1230 regs->mq = 0;
1231 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001232 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001233#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001234 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001235 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001236
Rusty Russell94af3ab2013-11-20 22:15:02 +11001237 if (is_elf2_task()) {
1238 /* Look ma, no function descriptors! */
1239 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001240
Rusty Russell94af3ab2013-11-20 22:15:02 +11001241 /*
1242 * Ulrich says:
1243 * The latest iteration of the ABI requires that when
1244 * calling a function (at its global entry point),
1245 * the caller must ensure r12 holds the entry point
1246 * address (so that the function can quickly
1247 * establish addressability).
1248 */
1249 regs->gpr[12] = start;
1250 /* Make sure that's restored on entry to userspace. */
1251 set_thread_flag(TIF_RESTOREALL);
1252 } else {
1253 unsigned long toc;
1254
1255 /* start is a relocated pointer to the function
1256 * descriptor for the elf _start routine. The first
1257 * entry in the function descriptor is the entry
1258 * address of _start and the second entry is the TOC
1259 * value we need to use.
1260 */
1261 __get_user(entry, (unsigned long __user *)start);
1262 __get_user(toc, (unsigned long __user *)start+1);
1263
1264 /* Check whether the e_entry function descriptor entries
1265 * need to be relocated before we can use them.
1266 */
1267 if (load_addr != 0) {
1268 entry += load_addr;
1269 toc += load_addr;
1270 }
1271 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001272 }
1273 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001274 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001275 } else {
1276 regs->nip = start;
1277 regs->gpr[2] = 0;
1278 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001279 }
1280#endif
Paul Mackerras48abec02005-11-30 13:20:54 +11001281 discard_lazy_cpu_state();
Michael Neulingce48b212008-06-25 14:07:18 +10001282#ifdef CONFIG_VSX
1283 current->thread.used_vsr = 0;
1284#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001285 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001286 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001287#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001288 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1289 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001290 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001291 current->thread.vrsave = 0;
1292 current->thread.used_vr = 0;
1293#endif /* CONFIG_ALTIVEC */
1294#ifdef CONFIG_SPE
1295 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1296 current->thread.acc = 0;
1297 current->thread.spefscr = 0;
1298 current->thread.used_spe = 0;
1299#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001300#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1301 if (cpu_has_feature(CPU_FTR_TM))
1302 regs->msr |= MSR_TM;
1303 current->thread.tm_tfhar = 0;
1304 current->thread.tm_texasr = 0;
1305 current->thread.tm_tfiar = 0;
1306#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001307}
1308
1309#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1310 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1311
1312int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1313{
1314 struct pt_regs *regs = tsk->thread.regs;
1315
1316 /* This is a bit hairy. If we are an SPE enabled processor
1317 * (have embedded fp) we store the IEEE exception enable flags in
1318 * fpexc_mode. fpexc_mode is also used for setting FP exception
1319 * mode (asyn, precise, disabled) for 'Classic' FP. */
1320 if (val & PR_FP_EXC_SW_ENABLE) {
1321#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001322 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001323 /*
1324 * When the sticky exception bits are set
1325 * directly by userspace, it must call prctl
1326 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1327 * in the existing prctl settings) or
1328 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1329 * the bits being set). <fenv.h> functions
1330 * saving and restoring the whole
1331 * floating-point environment need to do so
1332 * anyway to restore the prctl settings from
1333 * the saved environment.
1334 */
1335 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001336 tsk->thread.fpexc_mode = val &
1337 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1338 return 0;
1339 } else {
1340 return -EINVAL;
1341 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001342#else
1343 return -EINVAL;
1344#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001345 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001346
1347 /* on a CONFIG_SPE this does not hurt us. The bits that
1348 * __pack_fe01 use do not overlap with bits used for
1349 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1350 * on CONFIG_SPE implementations are reserved so writing to
1351 * them does not change anything */
1352 if (val > PR_FP_EXC_PRECISE)
1353 return -EINVAL;
1354 tsk->thread.fpexc_mode = __pack_fe01(val);
1355 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1356 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1357 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001358 return 0;
1359}
1360
1361int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1362{
1363 unsigned int val;
1364
1365 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1366#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001367 if (cpu_has_feature(CPU_FTR_SPE)) {
1368 /*
1369 * When the sticky exception bits are set
1370 * directly by userspace, it must call prctl
1371 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1372 * in the existing prctl settings) or
1373 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1374 * the bits being set). <fenv.h> functions
1375 * saving and restoring the whole
1376 * floating-point environment need to do so
1377 * anyway to restore the prctl settings from
1378 * the saved environment.
1379 */
1380 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001381 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001382 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001383 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001384#else
1385 return -EINVAL;
1386#endif
1387 else
1388 val = __unpack_fe01(tsk->thread.fpexc_mode);
1389 return put_user(val, (unsigned int __user *) adr);
1390}
1391
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001392int set_endian(struct task_struct *tsk, unsigned int val)
1393{
1394 struct pt_regs *regs = tsk->thread.regs;
1395
1396 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1397 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1398 return -EINVAL;
1399
1400 if (regs == NULL)
1401 return -EINVAL;
1402
1403 if (val == PR_ENDIAN_BIG)
1404 regs->msr &= ~MSR_LE;
1405 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1406 regs->msr |= MSR_LE;
1407 else
1408 return -EINVAL;
1409
1410 return 0;
1411}
1412
1413int get_endian(struct task_struct *tsk, unsigned long adr)
1414{
1415 struct pt_regs *regs = tsk->thread.regs;
1416 unsigned int val;
1417
1418 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1419 !cpu_has_feature(CPU_FTR_REAL_LE))
1420 return -EINVAL;
1421
1422 if (regs == NULL)
1423 return -EINVAL;
1424
1425 if (regs->msr & MSR_LE) {
1426 if (cpu_has_feature(CPU_FTR_REAL_LE))
1427 val = PR_ENDIAN_LITTLE;
1428 else
1429 val = PR_ENDIAN_PPC_LITTLE;
1430 } else
1431 val = PR_ENDIAN_BIG;
1432
1433 return put_user(val, (unsigned int __user *)adr);
1434}
1435
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001436int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1437{
1438 tsk->thread.align_ctl = val;
1439 return 0;
1440}
1441
1442int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1443{
1444 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1445}
1446
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001447static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1448 unsigned long nbytes)
1449{
1450 unsigned long stack_page;
1451 unsigned long cpu = task_cpu(p);
1452
1453 /*
1454 * Avoid crashing if the stack has overflowed and corrupted
1455 * task_cpu(p), which is in the thread_info struct.
1456 */
1457 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1458 stack_page = (unsigned long) hardirq_ctx[cpu];
1459 if (sp >= stack_page + sizeof(struct thread_struct)
1460 && sp <= stack_page + THREAD_SIZE - nbytes)
1461 return 1;
1462
1463 stack_page = (unsigned long) softirq_ctx[cpu];
1464 if (sp >= stack_page + sizeof(struct thread_struct)
1465 && sp <= stack_page + THREAD_SIZE - nbytes)
1466 return 1;
1467 }
1468 return 0;
1469}
1470
Anton Blanchard2f251942006-03-27 11:46:18 +11001471int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001472 unsigned long nbytes)
1473{
Al Viro0cec6fd2006-01-12 01:06:02 -08001474 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001475
1476 if (sp >= stack_page + sizeof(struct thread_struct)
1477 && sp <= stack_page + THREAD_SIZE - nbytes)
1478 return 1;
1479
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001480 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001481}
1482
Anton Blanchard2f251942006-03-27 11:46:18 +11001483EXPORT_SYMBOL(validate_sp);
1484
Paul Mackerras06d67d52005-10-10 22:29:05 +10001485unsigned long get_wchan(struct task_struct *p)
1486{
1487 unsigned long ip, sp;
1488 int count = 0;
1489
1490 if (!p || p == current || p->state == TASK_RUNNING)
1491 return 0;
1492
1493 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001494 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001495 return 0;
1496
1497 do {
1498 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001499 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001500 return 0;
1501 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001502 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001503 if (!in_sched_functions(ip))
1504 return ip;
1505 }
1506 } while (count++ < 16);
1507 return 0;
1508}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001509
Johannes Bergc4d04be2008-11-20 03:24:07 +00001510static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001511
1512void show_stack(struct task_struct *tsk, unsigned long *stack)
1513{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001514 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001515 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001516 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001517#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1518 int curr_frame = current->curr_ret_stack;
1519 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001520 unsigned long rth = (unsigned long)return_to_handler;
1521 unsigned long mrth = -1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001522#ifdef CONFIG_PPC64
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001523 extern void mod_return_to_handler(void);
1524 rth = *(unsigned long *)rth;
1525 mrth = (unsigned long)mod_return_to_handler;
1526 mrth = *(unsigned long *)mrth;
Steven Rostedt6794c782009-02-09 21:10:27 -08001527#endif
1528#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001529
1530 sp = (unsigned long) stack;
1531 if (tsk == NULL)
1532 tsk = current;
1533 if (sp == 0) {
1534 if (tsk == current)
1535 asm("mr %0,1" : "=r" (sp));
1536 else
1537 sp = tsk->thread.ksp;
1538 }
1539
Paul Mackerras06d67d52005-10-10 22:29:05 +10001540 lr = 0;
1541 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001542 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001543 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001544 return;
1545
1546 stack = (unsigned long *) sp;
1547 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001548 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001549 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001550 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001551#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001552 if ((ip == rth || ip == mrth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001553 printk(" (%pS)",
1554 (void *)current->ret_stack[curr_frame].ret);
1555 curr_frame--;
1556 }
1557#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001558 if (firstframe)
1559 printk(" (unreliable)");
1560 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001561 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001562 firstframe = 0;
1563
1564 /*
1565 * See if this is an exception frame.
1566 * We look for the "regshere" marker in the current frame.
1567 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001568 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1569 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001570 struct pt_regs *regs = (struct pt_regs *)
1571 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001572 lr = regs->link;
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001573 printk("--- Exception: %lx at %pS\n LR = %pS\n",
1574 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001575 firstframe = 1;
1576 }
1577
1578 sp = newsp;
1579 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001580}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001581
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001582#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001583/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001584void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001585{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001586 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001587 unsigned long ctrl;
1588
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001589 ctrl = mfspr(SPRN_CTRLF);
1590 ctrl |= CTRL_RUNLATCH;
1591 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001592
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001593 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001594}
1595
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001596/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001597void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001598{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001599 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001600 unsigned long ctrl;
1601
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001602 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001603
Anton Blanchard4138d652010-08-06 03:28:19 +00001604 ctrl = mfspr(SPRN_CTRLF);
1605 ctrl &= ~CTRL_RUNLATCH;
1606 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001607}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001608#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001609
Anton Blanchardd8390882009-02-22 01:50:03 +00001610unsigned long arch_align_stack(unsigned long sp)
1611{
1612 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1613 sp -= get_random_int() & ~PAGE_MASK;
1614 return sp & ~0xf;
1615}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001616
1617static inline unsigned long brk_rnd(void)
1618{
1619 unsigned long rnd = 0;
1620
1621 /* 8MB for 32bit, 1GB for 64bit */
1622 if (is_32bit_task())
1623 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1624 else
1625 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1626
1627 return rnd << PAGE_SHIFT;
1628}
1629
1630unsigned long arch_randomize_brk(struct mm_struct *mm)
1631{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001632 unsigned long base = mm->brk;
1633 unsigned long ret;
1634
Kumar Galace7a35c2009-10-16 07:05:17 +00001635#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001636 /*
1637 * If we are using 1TB segments and we are allowed to randomise
1638 * the heap, we can put it above 1TB so it is backed by a 1TB
1639 * segment. Otherwise the heap will be in the bottom 1TB
1640 * which always uses 256MB segments and this may result in a
1641 * performance penalty.
1642 */
1643 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1644 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1645#endif
1646
1647 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001648
1649 if (ret < mm->brk)
1650 return mm->brk;
1651
1652 return ret;
1653}
Anton Blanchard501cb162009-02-22 01:50:07 +00001654
1655unsigned long randomize_et_dyn(unsigned long base)
1656{
1657 unsigned long ret = PAGE_ALIGN(base + brk_rnd());
1658
1659 if (ret < base)
1660 return base;
1661
1662 return ret;
1663}