blob: 9da7b5f0c3a55fa630232e98b61ed3c21698770b [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002 * Derived from "arch/i386/kernel/process.c"
3 * Copyright (C) 1995 Linus Torvalds
4 *
5 * Updated and modified by Cort Dougan (cort@cs.nmt.edu) and
6 * Paul Mackerras (paulus@cs.anu.edu.au)
7 *
8 * PowerPC version
9 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
Paul Mackerras14cf11a2005-09-26 16:04:21 +100017#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/smp.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100022#include <linux/stddef.h>
23#include <linux/unistd.h>
24#include <linux/ptrace.h>
25#include <linux/slab.h>
26#include <linux/user.h>
27#include <linux/elf.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100028#include <linux/prctl.h>
29#include <linux/init_task.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040030#include <linux/export.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031#include <linux/kallsyms.h>
32#include <linux/mqueue.h>
33#include <linux/hardirq.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100034#include <linux/utsname.h>
Steven Rostedt6794c782009-02-09 21:10:27 -080035#include <linux/ftrace.h>
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010036#include <linux/kernel_stat.h>
Anton Blanchardd8390882009-02-22 01:50:03 +000037#include <linux/personality.h>
38#include <linux/random.h>
K.Prasad5aae8a52010-06-15 11:35:19 +053039#include <linux/hw_breakpoint.h>
Anton Blanchard7b051f62014-10-13 20:27:15 +110040#include <linux/uaccess.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100041
42#include <asm/pgtable.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043#include <asm/io.h>
44#include <asm/processor.h>
45#include <asm/mmu.h>
46#include <asm/prom.h>
Michael Ellerman76032de2005-11-07 13:12:03 +110047#include <asm/machdep.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110048#include <asm/time.h>
David Howellsae3a1972012-03-28 18:30:02 +010049#include <asm/runlatch.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010050#include <asm/syscalls.h>
David Howellsae3a1972012-03-28 18:30:02 +010051#include <asm/switch_to.h>
Michael Neulingfb096922013-02-13 16:21:37 +000052#include <asm/tm.h>
David Howellsae3a1972012-03-28 18:30:02 +010053#include <asm/debug.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100054#ifdef CONFIG_PPC64
55#include <asm/firmware.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100056#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +110057#include <asm/code-patching.h>
Luis Machadod6a61bf2008-07-24 02:10:41 +100058#include <linux/kprobes.h>
59#include <linux/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100060
Michael Neuling8b3c34c2013-02-13 16:21:32 +000061/* Transactional Memory debug */
62#ifdef TM_DEBUG_SW
63#define TM_DEBUG(x...) printk(KERN_INFO x)
64#else
65#define TM_DEBUG(x...) do { } while(0)
66#endif
67
Paul Mackerras14cf11a2005-09-26 16:04:21 +100068extern unsigned long _get_SP(void);
69
Paul Mackerrasd31626f2014-01-13 15:56:29 +110070#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110071static void check_if_tm_restore_required(struct task_struct *tsk)
Paul Mackerrasd31626f2014-01-13 15:56:29 +110072{
73 /*
74 * If we are saving the current thread's registers, and the
75 * thread is in a transactional state, set the TIF_RESTORE_TM
76 * bit so that we know to restore the registers before
77 * returning to userspace.
78 */
79 if (tsk == current && tsk->thread.regs &&
80 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
81 !test_thread_flag(TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +053082 tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +110083 set_thread_flag(TIF_RESTORE_TM);
84 }
Paul Mackerrasd31626f2014-01-13 15:56:29 +110085}
Paul Mackerrasd31626f2014-01-13 15:56:29 +110086#else
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110087static inline void check_if_tm_restore_required(struct task_struct *tsk) { }
Paul Mackerrasd31626f2014-01-13 15:56:29 +110088#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
89
Anton Blanchard3eb5d582015-10-29 11:44:06 +110090bool strict_msr_control;
91EXPORT_SYMBOL(strict_msr_control);
92
93static int __init enable_strict_msr_control(char *str)
94{
95 strict_msr_control = true;
96 pr_info("Enabling strict facility control\n");
97
98 return 0;
99}
100early_param("ppc_strict_facility_enable", enable_strict_msr_control);
101
102void msr_check_and_set(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100103{
104 unsigned long oldmsr = mfmsr();
105 unsigned long newmsr;
106
107 newmsr = oldmsr | bits;
108
109#ifdef CONFIG_VSX
110 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
111 newmsr |= MSR_VSX;
112#endif
113
114 if (oldmsr != newmsr)
115 mtmsr_isync(newmsr);
116}
117
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100118void __msr_check_and_clear(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100119{
120 unsigned long oldmsr = mfmsr();
121 unsigned long newmsr;
122
123 newmsr = oldmsr & ~bits;
124
125#ifdef CONFIG_VSX
126 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
127 newmsr &= ~MSR_VSX;
128#endif
129
130 if (oldmsr != newmsr)
131 mtmsr_isync(newmsr);
132}
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100133EXPORT_SYMBOL(__msr_check_and_clear);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100134
Kevin Hao037f0ee2013-07-14 17:02:05 +0800135#ifdef CONFIG_PPC_FPU
Anton Blanchard98da5812015-10-29 11:44:01 +1100136void giveup_fpu(struct task_struct *tsk)
137{
Anton Blanchard98da5812015-10-29 11:44:01 +1100138 check_if_tm_restore_required(tsk);
139
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100140 msr_check_and_set(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100141 __giveup_fpu(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100142 msr_check_and_clear(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100143}
144EXPORT_SYMBOL(giveup_fpu);
145
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000146/*
147 * Make sure the floating-point register state in the
148 * the thread_struct is up to date for task tsk.
149 */
150void flush_fp_to_thread(struct task_struct *tsk)
151{
152 if (tsk->thread.regs) {
153 /*
154 * We need to disable preemption here because if we didn't,
155 * another process could get scheduled after the regs->msr
156 * test but before we have finished saving the FP registers
157 * to the thread_struct. That process could take over the
158 * FPU, and then when we get scheduled again we would store
159 * bogus values for the remaining FP registers.
160 */
161 preempt_disable();
162 if (tsk->thread.regs->msr & MSR_FP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000163 /*
164 * This should only ever be called for current or
165 * for a stopped child process. Since we save away
Anton Blanchardaf1bbc32015-10-29 11:43:57 +1100166 * the FP register state on context switch,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000167 * there is something wrong if a stopped child appears
168 * to still have its FP state in the CPU registers.
169 */
170 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100171 giveup_fpu(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000172 }
173 preempt_enable();
174 }
175}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000176EXPORT_SYMBOL_GPL(flush_fp_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000177
178void enable_kernel_fp(void)
179{
180 WARN_ON(preemptible());
181
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100182 msr_check_and_set(MSR_FP);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100183
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100184 if (current->thread.regs && (current->thread.regs->msr & MSR_FP)) {
185 check_if_tm_restore_required(current);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100186 __giveup_fpu(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100187 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000188}
189EXPORT_SYMBOL(enable_kernel_fp);
Anton Blanchardd1e1cf22015-10-29 11:44:11 +1100190#endif /* CONFIG_PPC_FPU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000191
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000192#ifdef CONFIG_ALTIVEC
Anton Blanchard98da5812015-10-29 11:44:01 +1100193void giveup_altivec(struct task_struct *tsk)
194{
Anton Blanchard98da5812015-10-29 11:44:01 +1100195 check_if_tm_restore_required(tsk);
196
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100197 msr_check_and_set(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100198 __giveup_altivec(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100199 msr_check_and_clear(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100200}
201EXPORT_SYMBOL(giveup_altivec);
202
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000203void enable_kernel_altivec(void)
204{
205 WARN_ON(preemptible());
206
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100207 msr_check_and_set(MSR_VEC);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100208
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100209 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC)) {
210 check_if_tm_restore_required(current);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100211 __giveup_altivec(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100212 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000213}
214EXPORT_SYMBOL(enable_kernel_altivec);
215
216/*
217 * Make sure the VMX/Altivec register state in the
218 * the thread_struct is up to date for task tsk.
219 */
220void flush_altivec_to_thread(struct task_struct *tsk)
221{
222 if (tsk->thread.regs) {
223 preempt_disable();
224 if (tsk->thread.regs->msr & MSR_VEC) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000225 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100226 giveup_altivec(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000227 }
228 preempt_enable();
229 }
230}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000231EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000232#endif /* CONFIG_ALTIVEC */
233
Michael Neulingce48b212008-06-25 14:07:18 +1000234#ifdef CONFIG_VSX
Anton Blancharda7d623d2015-10-29 11:44:02 +1100235void giveup_vsx(struct task_struct *tsk)
236{
Anton Blancharda7d623d2015-10-29 11:44:02 +1100237 check_if_tm_restore_required(tsk);
238
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100239 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100240 if (tsk->thread.regs->msr & MSR_FP)
241 __giveup_fpu(tsk);
242 if (tsk->thread.regs->msr & MSR_VEC)
243 __giveup_altivec(tsk);
244 __giveup_vsx(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100245 msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100246}
247EXPORT_SYMBOL(giveup_vsx);
248
Michael Neulingce48b212008-06-25 14:07:18 +1000249void enable_kernel_vsx(void)
250{
251 WARN_ON(preemptible());
252
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100253 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100254
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100255 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX)) {
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100256 check_if_tm_restore_required(current);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100257 if (current->thread.regs->msr & MSR_FP)
258 __giveup_fpu(current);
259 if (current->thread.regs->msr & MSR_VEC)
260 __giveup_altivec(current);
261 __giveup_vsx(current);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100262 }
Michael Neulingce48b212008-06-25 14:07:18 +1000263}
264EXPORT_SYMBOL(enable_kernel_vsx);
Michael Neulingce48b212008-06-25 14:07:18 +1000265
266void flush_vsx_to_thread(struct task_struct *tsk)
267{
268 if (tsk->thread.regs) {
269 preempt_disable();
270 if (tsk->thread.regs->msr & MSR_VSX) {
Michael Neulingce48b212008-06-25 14:07:18 +1000271 BUG_ON(tsk != current);
Michael Neulingce48b212008-06-25 14:07:18 +1000272 giveup_vsx(tsk);
273 }
274 preempt_enable();
275 }
276}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000277EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000278#endif /* CONFIG_VSX */
279
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000280#ifdef CONFIG_SPE
Anton Blanchard98da5812015-10-29 11:44:01 +1100281void giveup_spe(struct task_struct *tsk)
282{
Anton Blanchard98da5812015-10-29 11:44:01 +1100283 check_if_tm_restore_required(tsk);
284
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100285 msr_check_and_set(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100286 __giveup_spe(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100287 msr_check_and_clear(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100288}
289EXPORT_SYMBOL(giveup_spe);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000290
291void enable_kernel_spe(void)
292{
293 WARN_ON(preemptible());
294
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100295 msr_check_and_set(MSR_SPE);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100296
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100297 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE)) {
298 check_if_tm_restore_required(current);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100299 __giveup_spe(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100300 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000301}
302EXPORT_SYMBOL(enable_kernel_spe);
303
304void flush_spe_to_thread(struct task_struct *tsk)
305{
306 if (tsk->thread.regs) {
307 preempt_disable();
308 if (tsk->thread.regs->msr & MSR_SPE) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000309 BUG_ON(tsk != current);
yu liu685659e2011-06-14 18:34:25 -0500310 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500311 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000312 }
313 preempt_enable();
314 }
315}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000316#endif /* CONFIG_SPE */
317
Anton Blanchardc2085052015-10-29 11:44:08 +1100318static unsigned long msr_all_available;
319
320static int __init init_msr_all_available(void)
321{
322#ifdef CONFIG_PPC_FPU
323 msr_all_available |= MSR_FP;
324#endif
325#ifdef CONFIG_ALTIVEC
326 if (cpu_has_feature(CPU_FTR_ALTIVEC))
327 msr_all_available |= MSR_VEC;
328#endif
329#ifdef CONFIG_VSX
330 if (cpu_has_feature(CPU_FTR_VSX))
331 msr_all_available |= MSR_VSX;
332#endif
333#ifdef CONFIG_SPE
334 if (cpu_has_feature(CPU_FTR_SPE))
335 msr_all_available |= MSR_SPE;
336#endif
337
338 return 0;
339}
340early_initcall(init_msr_all_available);
341
342void giveup_all(struct task_struct *tsk)
343{
344 unsigned long usermsr;
345
346 if (!tsk->thread.regs)
347 return;
348
349 usermsr = tsk->thread.regs->msr;
350
351 if ((usermsr & msr_all_available) == 0)
352 return;
353
354 msr_check_and_set(msr_all_available);
355
356#ifdef CONFIG_PPC_FPU
357 if (usermsr & MSR_FP)
358 __giveup_fpu(tsk);
359#endif
360#ifdef CONFIG_ALTIVEC
361 if (usermsr & MSR_VEC)
362 __giveup_altivec(tsk);
363#endif
364#ifdef CONFIG_VSX
365 if (usermsr & MSR_VSX)
366 __giveup_vsx(tsk);
367#endif
368#ifdef CONFIG_SPE
369 if (usermsr & MSR_SPE)
370 __giveup_spe(tsk);
371#endif
372
373 msr_check_and_clear(msr_all_available);
374}
375EXPORT_SYMBOL(giveup_all);
376
Anton Blanchard579e6332015-10-29 11:44:09 +1100377void flush_all_to_thread(struct task_struct *tsk)
378{
379 if (tsk->thread.regs) {
380 preempt_disable();
381 BUG_ON(tsk != current);
382 giveup_all(tsk);
383
384#ifdef CONFIG_SPE
385 if (tsk->thread.regs->msr & MSR_SPE)
386 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
387#endif
388
389 preempt_enable();
390 }
391}
392EXPORT_SYMBOL(flush_all_to_thread);
393
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000394#ifdef CONFIG_PPC_ADV_DEBUG_REGS
395void do_send_trap(struct pt_regs *regs, unsigned long address,
396 unsigned long error_code, int signal_code, int breakpt)
397{
398 siginfo_t info;
399
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000400 current->thread.trap_nr = signal_code;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000401 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
402 11, SIGSEGV) == NOTIFY_STOP)
403 return;
404
405 /* Deliver the signal to userspace */
406 info.si_signo = SIGTRAP;
407 info.si_errno = breakpt; /* breakpoint or watchpoint id */
408 info.si_code = signal_code;
409 info.si_addr = (void __user *)address;
410 force_sig_info(SIGTRAP, &info, current);
411}
412#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000413void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000414 unsigned long error_code)
415{
416 siginfo_t info;
417
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000418 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000419 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
420 11, SIGSEGV) == NOTIFY_STOP)
421 return;
422
Michael Neuling9422de32012-12-20 14:06:44 +0000423 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000424 return;
425
Michael Neuling9422de32012-12-20 14:06:44 +0000426 /* Clear the breakpoint */
427 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000428
429 /* Deliver the signal to userspace */
430 info.si_signo = SIGTRAP;
431 info.si_errno = 0;
432 info.si_code = TRAP_HWBKPT;
433 info.si_addr = (void __user *)address;
434 force_sig_info(SIGTRAP, &info, current);
435}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000436#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000437
Michael Neuling9422de32012-12-20 14:06:44 +0000438static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100439
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000440#ifdef CONFIG_PPC_ADV_DEBUG_REGS
441/*
442 * Set the debug registers back to their default "safe" values.
443 */
444static void set_debug_reg_defaults(struct thread_struct *thread)
445{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530446 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000447#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530448 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000449#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530450 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000451#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530452 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000453#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530454 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000455#ifdef CONFIG_BOOKE
456 /*
457 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
458 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530459 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000460 DBCR1_IAC3US | DBCR1_IAC4US;
461 /*
462 * Force Data Address Compare User/Supervisor bits to be User-only
463 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
464 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530465 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000466#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530467 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000468#endif
469}
470
Scott Woodf5f97212013-11-22 15:52:29 -0600471static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000472{
Scott Wood6cecf762013-05-13 14:14:53 +0000473 /*
474 * We could have inherited MSR_DE from userspace, since
475 * it doesn't get cleared on exception entry. Make sure
476 * MSR_DE is clear before we enable any debug events.
477 */
478 mtmsr(mfmsr() & ~MSR_DE);
479
Scott Woodf5f97212013-11-22 15:52:29 -0600480 mtspr(SPRN_IAC1, debug->iac1);
481 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000482#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600483 mtspr(SPRN_IAC3, debug->iac3);
484 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000485#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600486 mtspr(SPRN_DAC1, debug->dac1);
487 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000488#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600489 mtspr(SPRN_DVC1, debug->dvc1);
490 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000491#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600492 mtspr(SPRN_DBCR0, debug->dbcr0);
493 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000494#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600495 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000496#endif
497}
498/*
499 * Unless neither the old or new thread are making use of the
500 * debug registers, set the debug registers from the values
501 * stored in the new thread.
502 */
Scott Woodf5f97212013-11-22 15:52:29 -0600503void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000504{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530505 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600506 || (new_debug->dbcr0 & DBCR0_IDM))
507 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000508}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530509EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000510#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000511#ifndef CONFIG_HAVE_HW_BREAKPOINT
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000512static void set_debug_reg_defaults(struct thread_struct *thread)
513{
Michael Neuling9422de32012-12-20 14:06:44 +0000514 thread->hw_brk.address = 0;
515 thread->hw_brk.type = 0;
Michael Neulingb9818c32013-01-10 14:25:34 +0000516 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000517}
K.Prasade0780b72011-02-10 04:44:35 +0000518#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000519#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
520
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000521#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000522static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
523{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000524 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000525#ifdef CONFIG_PPC_47x
526 isync();
527#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000528 return 0;
529}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000530#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000531static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
532{
Michael Ellermancab0af92005-11-03 15:30:49 +1100533 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000534 if (cpu_has_feature(CPU_FTR_DABRX))
535 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100536 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000537}
Michael Neuling9422de32012-12-20 14:06:44 +0000538#else
539static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
540{
541 return -EINVAL;
542}
543#endif
544
545static inline int set_dabr(struct arch_hw_breakpoint *brk)
546{
547 unsigned long dabr, dabrx;
548
549 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
550 dabrx = ((brk->type >> 3) & 0x7);
551
552 if (ppc_md.set_dabr)
553 return ppc_md.set_dabr(dabr, dabrx);
554
555 return __set_dabr(dabr, dabrx);
556}
557
Michael Neulingbf99de32012-12-20 14:06:45 +0000558static inline int set_dawr(struct arch_hw_breakpoint *brk)
559{
Michael Neuling05d694e2013-01-24 15:02:58 +0000560 unsigned long dawr, dawrx, mrd;
Michael Neulingbf99de32012-12-20 14:06:45 +0000561
562 dawr = brk->address;
563
564 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
565 << (63 - 58); //* read/write bits */
566 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
567 << (63 - 59); //* translate */
568 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
569 >> 3; //* PRIM bits */
Michael Neuling05d694e2013-01-24 15:02:58 +0000570 /* dawr length is stored in field MDR bits 48:53. Matches range in
571 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
572 0b111111=64DW.
573 brk->len is in bytes.
574 This aligns up to double word size, shifts and does the bias.
575 */
576 mrd = ((brk->len + 7) >> 3) - 1;
577 dawrx |= (mrd & 0x3f) << (63 - 53);
Michael Neulingbf99de32012-12-20 14:06:45 +0000578
579 if (ppc_md.set_dawr)
580 return ppc_md.set_dawr(dawr, dawrx);
581 mtspr(SPRN_DAWR, dawr);
582 mtspr(SPRN_DAWRX, dawrx);
583 return 0;
584}
585
Paul Gortmaker21f58502014-04-29 15:25:17 -0400586void __set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000587{
Christoph Lameter69111ba2014-10-21 15:23:25 -0500588 memcpy(this_cpu_ptr(&current_brk), brk, sizeof(*brk));
Michael Neuling9422de32012-12-20 14:06:44 +0000589
Michael Neulingbf99de32012-12-20 14:06:45 +0000590 if (cpu_has_feature(CPU_FTR_DAWR))
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400591 set_dawr(brk);
592 else
593 set_dabr(brk);
Michael Neuling9422de32012-12-20 14:06:44 +0000594}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000595
Paul Gortmaker21f58502014-04-29 15:25:17 -0400596void set_breakpoint(struct arch_hw_breakpoint *brk)
597{
598 preempt_disable();
599 __set_breakpoint(brk);
600 preempt_enable();
601}
602
Paul Mackerras06d67d52005-10-10 22:29:05 +1000603#ifdef CONFIG_PPC64
604DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000605#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000606
Michael Neuling9422de32012-12-20 14:06:44 +0000607static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
608 struct arch_hw_breakpoint *b)
609{
610 if (a->address != b->address)
611 return false;
612 if (a->type != b->type)
613 return false;
614 if (a->len != b->len)
615 return false;
616 return true;
617}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100618
Michael Neulingfb096922013-02-13 16:21:37 +0000619#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100620static void tm_reclaim_thread(struct thread_struct *thr,
621 struct thread_info *ti, uint8_t cause)
622{
623 unsigned long msr_diff = 0;
624
625 /*
626 * If FP/VSX registers have been already saved to the
627 * thread_struct, move them to the transact_fp array.
628 * We clear the TIF_RESTORE_TM bit since after the reclaim
629 * the thread will no longer be transactional.
630 */
631 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +0530632 msr_diff = thr->ckpt_regs.msr & ~thr->regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100633 if (msr_diff & MSR_FP)
634 memcpy(&thr->transact_fp, &thr->fp_state,
635 sizeof(struct thread_fp_state));
636 if (msr_diff & MSR_VEC)
637 memcpy(&thr->transact_vr, &thr->vr_state,
638 sizeof(struct thread_vr_state));
639 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
640 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
641 }
642
643 tm_reclaim(thr, thr->regs->msr, cause);
644
645 /* Having done the reclaim, we now have the checkpointed
646 * FP/VSX values in the registers. These might be valid
647 * even if we have previously called enable_kernel_fp() or
648 * flush_fp_to_thread(), so update thr->regs->msr to
649 * indicate their current validity.
650 */
651 thr->regs->msr |= msr_diff;
652}
653
654void tm_reclaim_current(uint8_t cause)
655{
656 tm_enable();
657 tm_reclaim_thread(&current->thread, current_thread_info(), cause);
658}
659
Michael Neulingfb096922013-02-13 16:21:37 +0000660static inline void tm_reclaim_task(struct task_struct *tsk)
661{
662 /* We have to work out if we're switching from/to a task that's in the
663 * middle of a transaction.
664 *
665 * In switching we need to maintain a 2nd register state as
666 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
667 * checkpointed (tbegin) state in ckpt_regs and saves the transactional
668 * (current) FPRs into oldtask->thread.transact_fpr[].
669 *
670 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
671 */
672 struct thread_struct *thr = &tsk->thread;
673
674 if (!thr->regs)
675 return;
676
677 if (!MSR_TM_ACTIVE(thr->regs->msr))
678 goto out_and_saveregs;
679
680 /* Stash the original thread MSR, as giveup_fpu et al will
681 * modify it. We hold onto it to see whether the task used
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100682 * FP & vector regs. If the TIF_RESTORE_TM flag is set,
Anshuman Khandual829023d2015-07-06 16:24:10 +0530683 * ckpt_regs.msr is already set.
Michael Neulingfb096922013-02-13 16:21:37 +0000684 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100685 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
Anshuman Khandual829023d2015-07-06 16:24:10 +0530686 thr->ckpt_regs.msr = thr->regs->msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000687
688 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
689 "ccr=%lx, msr=%lx, trap=%lx)\n",
690 tsk->pid, thr->regs->nip,
691 thr->regs->ccr, thr->regs->msr,
692 thr->regs->trap);
693
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100694 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000695
696 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
697 tsk->pid);
698
699out_and_saveregs:
700 /* Always save the regs here, even if a transaction's not active.
701 * This context-switches a thread's TM info SPRs. We do it here to
702 * be consistent with the restore path (in recheckpoint) which
703 * cannot happen later in _switch().
704 */
705 tm_save_sprs(thr);
706}
707
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100708extern void __tm_recheckpoint(struct thread_struct *thread,
709 unsigned long orig_msr);
710
711void tm_recheckpoint(struct thread_struct *thread,
712 unsigned long orig_msr)
713{
714 unsigned long flags;
715
716 /* We really can't be interrupted here as the TEXASR registers can't
717 * change and later in the trecheckpoint code, we have a userspace R1.
718 * So let's hard disable over this region.
719 */
720 local_irq_save(flags);
721 hard_irq_disable();
722
723 /* The TM SPRs are restored here, so that TEXASR.FS can be set
724 * before the trecheckpoint and no explosion occurs.
725 */
726 tm_restore_sprs(thread);
727
728 __tm_recheckpoint(thread, orig_msr);
729
730 local_irq_restore(flags);
731}
732
Michael Neulingbc2a9402013-02-13 16:21:40 +0000733static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000734{
735 unsigned long msr;
736
737 if (!cpu_has_feature(CPU_FTR_TM))
738 return;
739
740 /* Recheckpoint the registers of the thread we're about to switch to.
741 *
742 * If the task was using FP, we non-lazily reload both the original and
743 * the speculative FP register states. This is because the kernel
744 * doesn't see if/when a TM rollback occurs, so if we take an FP
745 * unavoidable later, we are unable to determine which set of FP regs
746 * need to be restored.
747 */
748 if (!new->thread.regs)
749 return;
750
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100751 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
752 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000753 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100754 }
Anshuman Khandual829023d2015-07-06 16:24:10 +0530755 msr = new->thread.ckpt_regs.msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000756 /* Recheckpoint to restore original checkpointed register state. */
757 TM_DEBUG("*** tm_recheckpoint of pid %d "
758 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
759 new->pid, new->thread.regs->msr, msr);
760
761 /* This loads the checkpointed FP/VEC state, if used */
762 tm_recheckpoint(&new->thread, msr);
763
764 /* This loads the speculative FP/VEC state, if used */
765 if (msr & MSR_FP) {
766 do_load_up_transact_fpu(&new->thread);
767 new->thread.regs->msr |=
768 (MSR_FP | new->thread.fpexc_mode);
769 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000770#ifdef CONFIG_ALTIVEC
Michael Neulingfb096922013-02-13 16:21:37 +0000771 if (msr & MSR_VEC) {
772 do_load_up_transact_altivec(&new->thread);
773 new->thread.regs->msr |= MSR_VEC;
774 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000775#endif
Michael Neulingfb096922013-02-13 16:21:37 +0000776 /* We may as well turn on VSX too since all the state is restored now */
777 if (msr & MSR_VSX)
778 new->thread.regs->msr |= MSR_VSX;
779
780 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
781 "(kernel msr 0x%lx)\n",
782 new->pid, mfmsr());
783}
784
785static inline void __switch_to_tm(struct task_struct *prev)
786{
787 if (cpu_has_feature(CPU_FTR_TM)) {
788 tm_enable();
789 tm_reclaim_task(prev);
790 }
791}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100792
793/*
794 * This is called if we are on the way out to userspace and the
795 * TIF_RESTORE_TM flag is set. It checks if we need to reload
796 * FP and/or vector state and does so if necessary.
797 * If userspace is inside a transaction (whether active or
798 * suspended) and FP/VMX/VSX instructions have ever been enabled
799 * inside that transaction, then we have to keep them enabled
800 * and keep the FP/VMX/VSX state loaded while ever the transaction
801 * continues. The reason is that if we didn't, and subsequently
802 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
803 * we don't know whether it's the same transaction, and thus we
804 * don't know which of the checkpointed state and the transactional
805 * state to use.
806 */
807void restore_tm_state(struct pt_regs *regs)
808{
809 unsigned long msr_diff;
810
811 clear_thread_flag(TIF_RESTORE_TM);
812 if (!MSR_TM_ACTIVE(regs->msr))
813 return;
814
Anshuman Khandual829023d2015-07-06 16:24:10 +0530815 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100816 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
817 if (msr_diff & MSR_FP) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100818 msr_check_and_set(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100819 load_fp_state(&current->thread.fp_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100820 msr_check_and_clear(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100821 regs->msr |= current->thread.fpexc_mode;
822 }
823 if (msr_diff & MSR_VEC) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100824 msr_check_and_set(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100825 load_vr_state(&current->thread.vr_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100826 msr_check_and_clear(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100827 }
828 regs->msr |= msr_diff;
829}
830
Michael Neulingfb096922013-02-13 16:21:37 +0000831#else
832#define tm_recheckpoint_new_task(new)
833#define __switch_to_tm(prev)
834#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +0000835
Anton Blanchard152d5232015-10-29 11:43:55 +1100836static inline void save_sprs(struct thread_struct *t)
837{
838#ifdef CONFIG_ALTIVEC
839 if (cpu_has_feature(cpu_has_feature(CPU_FTR_ALTIVEC)))
840 t->vrsave = mfspr(SPRN_VRSAVE);
841#endif
842#ifdef CONFIG_PPC_BOOK3S_64
843 if (cpu_has_feature(CPU_FTR_DSCR))
844 t->dscr = mfspr(SPRN_DSCR);
845
846 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
847 t->bescr = mfspr(SPRN_BESCR);
848 t->ebbhr = mfspr(SPRN_EBBHR);
849 t->ebbrr = mfspr(SPRN_EBBRR);
850
851 t->fscr = mfspr(SPRN_FSCR);
852
853 /*
854 * Note that the TAR is not available for use in the kernel.
855 * (To provide this, the TAR should be backed up/restored on
856 * exception entry/exit instead, and be in pt_regs. FIXME,
857 * this should be in pt_regs anyway (for debug).)
858 */
859 t->tar = mfspr(SPRN_TAR);
860 }
861#endif
862}
863
864static inline void restore_sprs(struct thread_struct *old_thread,
865 struct thread_struct *new_thread)
866{
867#ifdef CONFIG_ALTIVEC
868 if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
869 old_thread->vrsave != new_thread->vrsave)
870 mtspr(SPRN_VRSAVE, new_thread->vrsave);
871#endif
872#ifdef CONFIG_PPC_BOOK3S_64
873 if (cpu_has_feature(CPU_FTR_DSCR)) {
874 u64 dscr = get_paca()->dscr_default;
875 u64 fscr = old_thread->fscr & ~FSCR_DSCR;
876
877 if (new_thread->dscr_inherit) {
878 dscr = new_thread->dscr;
879 fscr |= FSCR_DSCR;
880 }
881
882 if (old_thread->dscr != dscr)
883 mtspr(SPRN_DSCR, dscr);
884
885 if (old_thread->fscr != fscr)
886 mtspr(SPRN_FSCR, fscr);
887 }
888
889 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
890 if (old_thread->bescr != new_thread->bescr)
891 mtspr(SPRN_BESCR, new_thread->bescr);
892 if (old_thread->ebbhr != new_thread->ebbhr)
893 mtspr(SPRN_EBBHR, new_thread->ebbhr);
894 if (old_thread->ebbrr != new_thread->ebbrr)
895 mtspr(SPRN_EBBRR, new_thread->ebbrr);
896
897 if (old_thread->tar != new_thread->tar)
898 mtspr(SPRN_TAR, new_thread->tar);
899 }
900#endif
901}
902
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000903struct task_struct *__switch_to(struct task_struct *prev,
904 struct task_struct *new)
905{
906 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000907 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700908#ifdef CONFIG_PPC_BOOK3S_64
909 struct ppc64_tlb_batch *batch;
910#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000911
Anton Blanchard152d5232015-10-29 11:43:55 +1100912 new_thread = &new->thread;
913 old_thread = &current->thread;
914
Michael Neuling7ba5fef2013-10-02 17:15:14 +1000915 WARN_ON(!irqs_disabled());
916
Paul Mackerras06d67d52005-10-10 22:29:05 +1000917#ifdef CONFIG_PPC64
918 /*
919 * Collect processor utilization data per process
920 */
921 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Christoph Lameter69111ba2014-10-21 15:23:25 -0500922 struct cpu_usage *cu = this_cpu_ptr(&cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000923 long unsigned start_tb, current_tb;
924 start_tb = old_thread->start_tb;
925 cu->current_tb = current_tb = mfspr(SPRN_PURR);
926 old_thread->accum_tb += (current_tb - start_tb);
927 new_thread->start_tb = current_tb;
928 }
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700929#endif /* CONFIG_PPC64 */
930
931#ifdef CONFIG_PPC_BOOK3S_64
Christoph Lameter69111ba2014-10-21 15:23:25 -0500932 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700933 if (batch->active) {
934 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
935 if (batch->index)
936 __flush_tlb_pending(batch);
937 batch->active = 0;
938 }
939#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000940
Anton Blanchardf3d885c2015-10-29 11:44:10 +1100941#ifdef CONFIG_PPC_ADV_DEBUG_REGS
942 switch_booke_debug_regs(&new->thread.debug);
943#else
944/*
945 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
946 * schedule DABR
947 */
948#ifndef CONFIG_HAVE_HW_BREAKPOINT
949 if (unlikely(!hw_brk_match(this_cpu_ptr(&current_brk), &new->thread.hw_brk)))
950 __set_breakpoint(&new->thread.hw_brk);
951#endif /* CONFIG_HAVE_HW_BREAKPOINT */
952#endif
953
954 /*
955 * We need to save SPRs before treclaim/trecheckpoint as these will
956 * change a number of them.
957 */
958 save_sprs(&prev->thread);
959
960 __switch_to_tm(prev);
961
962 /* Save FPU, Altivec, VSX and SPE state */
963 giveup_all(prev);
964
Anton Blanchard44387e92008-03-17 15:27:09 +1100965 /*
966 * We can't take a PMU exception inside _switch() since there is a
967 * window where the kernel stack SLB and the kernel stack are out
968 * of sync. Hard disable here.
969 */
970 hard_irq_disable();
Michael Neulingbc2a9402013-02-13 16:21:40 +0000971
972 tm_recheckpoint_new_task(new);
973
Anton Blanchard20dbe672015-12-10 20:44:39 +1100974 /*
975 * Call restore_sprs() before calling _switch(). If we move it after
976 * _switch() then we miss out on calling it for new tasks. The reason
977 * for this is we manually create a stack frame for new tasks that
978 * directly returns through ret_from_fork() or
979 * ret_from_kernel_thread(). See copy_thread() for details.
980 */
Anton Blanchardf3d885c2015-10-29 11:44:10 +1100981 restore_sprs(old_thread, new_thread);
982
Anton Blanchard20dbe672015-12-10 20:44:39 +1100983 last = _switch(old_thread, new_thread);
984
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700985#ifdef CONFIG_PPC_BOOK3S_64
986 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
987 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500988 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700989 batch->active = 1;
990 }
991#endif /* CONFIG_PPC_BOOK3S_64 */
992
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000993 return last;
994}
995
Paul Mackerras06d67d52005-10-10 22:29:05 +1000996static int instructions_to_print = 16;
997
Paul Mackerras06d67d52005-10-10 22:29:05 +1000998static void show_instructions(struct pt_regs *regs)
999{
1000 int i;
1001 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
1002 sizeof(int));
1003
1004 printk("Instruction dump:");
1005
1006 for (i = 0; i < instructions_to_print; i++) {
1007 int instr;
1008
1009 if (!(i % 8))
1010 printk("\n");
1011
Scott Wood0de2d822007-09-28 04:38:55 +10001012#if !defined(CONFIG_BOOKE)
1013 /* If executing with the IMMU off, adjust pc rather
1014 * than print XXXXXXXX.
1015 */
1016 if (!(regs->msr & MSR_IR))
1017 pc = (unsigned long)phys_to_virt(pc);
1018#endif
1019
Anton Blanchard00ae36d2006-10-13 12:17:16 +10001020 if (!__kernel_text_address(pc) ||
Anton Blanchard7b051f62014-10-13 20:27:15 +11001021 probe_kernel_address((unsigned int __user *)pc, instr)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +00001022 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001023 } else {
1024 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +00001025 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001026 else
Ira Snyder40c8cef2012-01-06 12:34:07 +00001027 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001028 }
1029
1030 pc += sizeof(int);
1031 }
1032
1033 printk("\n");
1034}
1035
1036static struct regbit {
1037 unsigned long bit;
1038 const char *name;
1039} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001040#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
1041 {MSR_SF, "SF"},
1042 {MSR_HV, "HV"},
1043#endif
1044 {MSR_VEC, "VEC"},
1045 {MSR_VSX, "VSX"},
1046#ifdef CONFIG_BOOKE
1047 {MSR_CE, "CE"},
1048#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001049 {MSR_EE, "EE"},
1050 {MSR_PR, "PR"},
1051 {MSR_FP, "FP"},
1052 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001053#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +00001054 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001055#else
1056 {MSR_SE, "SE"},
1057 {MSR_BE, "BE"},
1058#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001059 {MSR_IR, "IR"},
1060 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001061 {MSR_PMM, "PMM"},
1062#ifndef CONFIG_BOOKE
1063 {MSR_RI, "RI"},
1064 {MSR_LE, "LE"},
1065#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001066 {0, NULL}
1067};
1068
1069static void printbits(unsigned long val, struct regbit *bits)
1070{
1071 const char *sep = "";
1072
1073 printk("<");
1074 for (; bits->bit; ++bits)
1075 if (val & bits->bit) {
1076 printk("%s%s", sep, bits->name);
1077 sep = ",";
1078 }
1079 printk(">");
1080}
1081
1082#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001083#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001084#define REGS_PER_LINE 4
1085#define LAST_VOLATILE 13
1086#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001087#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001088#define REGS_PER_LINE 8
1089#define LAST_VOLATILE 12
1090#endif
1091
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001092void show_regs(struct pt_regs * regs)
1093{
1094 int i, trap;
1095
Tejun Heoa43cb952013-04-30 15:27:17 -07001096 show_regs_print_info(KERN_DEFAULT);
1097
Paul Mackerras06d67d52005-10-10 22:29:05 +10001098 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
1099 regs->nip, regs->link, regs->ctr);
1100 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001101 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001102 printk("MSR: "REG" ", regs->msr);
1103 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001104 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001105 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +00001106 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001107 printk("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001108 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001109#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001110 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001111#else
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001112 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
1113#endif
1114#ifdef CONFIG_PPC64
1115 printk("SOFTE: %ld ", regs->softe);
1116#endif
1117#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001118 if (MSR_TM_ACTIVE(regs->msr))
1119 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001120#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001121
1122 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001123 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +00001124 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001125 printk(REG " ", regs->gpr[i]);
1126 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001127 break;
1128 }
1129 printk("\n");
1130#ifdef CONFIG_KALLSYMS
1131 /*
1132 * Lookup NIP late so we have the best change of getting the
1133 * above info out without failing
1134 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001135 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1136 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001137#endif
1138 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001139 if (!user_mode(regs))
1140 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001141}
1142
1143void exit_thread(void)
1144{
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001145}
1146
1147void flush_thread(void)
1148{
K.Prasade0780b72011-02-10 04:44:35 +00001149#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301150 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001151#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001152 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001153#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001154}
1155
1156void
1157release_thread(struct task_struct *t)
1158{
1159}
1160
1161/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001162 * this gets called so that we can store coprocessor state into memory and
1163 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001164 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001165int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001166{
Anton Blanchard579e6332015-10-29 11:44:09 +11001167 flush_all_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001168 /*
1169 * Flush TM state out so we can copy it. __switch_to_tm() does this
1170 * flush but it removes the checkpointed state from the current CPU and
1171 * transitions the CPU out of TM mode. Hence we need to call
1172 * tm_recheckpoint_new_task() (on the same task) to restore the
1173 * checkpointed state back and the TM mode.
1174 */
1175 __switch_to_tm(src);
1176 tm_recheckpoint_new_task(src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001177
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001178 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001179
1180 clear_task_ebb(dst);
1181
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001182 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001183}
1184
Michael Ellermancec15482014-07-10 12:29:21 +10001185static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1186{
1187#ifdef CONFIG_PPC_STD_MMU_64
1188 unsigned long sp_vsid;
1189 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1190
1191 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1192 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1193 << SLB_VSID_SHIFT_1T;
1194 else
1195 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1196 << SLB_VSID_SHIFT;
1197 sp_vsid |= SLB_VSID_KERNEL | llp;
1198 p->thread.ksp_vsid = sp_vsid;
1199#endif
1200}
1201
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001202/*
1203 * Copy a thread..
1204 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001205
Alex Dowad6eca8932015-03-13 20:14:46 +02001206/*
1207 * Copy architecture-specific thread state
1208 */
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -07001209int copy_thread(unsigned long clone_flags, unsigned long usp,
Alex Dowad6eca8932015-03-13 20:14:46 +02001210 unsigned long kthread_arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001211{
1212 struct pt_regs *childregs, *kregs;
1213 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001214 extern void ret_from_kernel_thread(void);
1215 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001216 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001217
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001218 /* Copy registers */
1219 sp -= sizeof(struct pt_regs);
1220 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001221 if (unlikely(p->flags & PF_KTHREAD)) {
Alex Dowad6eca8932015-03-13 20:14:46 +02001222 /* kernel thread */
Al Viro138d1ce2012-10-11 08:41:43 -04001223 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -04001224 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001225 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001226 /* function */
1227 if (usp)
1228 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001229#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001230 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -04001231 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001232#endif
Alex Dowad6eca8932015-03-13 20:14:46 +02001233 childregs->gpr[15] = kthread_arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001234 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001235 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001236 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001237 } else {
Alex Dowad6eca8932015-03-13 20:14:46 +02001238 /* user thread */
Al Viroafa86fc2012-10-22 22:51:14 -04001239 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001240 CHECK_FULL_REGS(regs);
1241 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001242 if (usp)
1243 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001244 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001245 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001246 if (clone_flags & CLONE_SETTLS) {
1247#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +00001248 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +10001249 childregs->gpr[13] = childregs->gpr[6];
1250 else
1251#endif
1252 childregs->gpr[2] = childregs->gpr[6];
1253 }
Al Viro58254e12012-09-12 18:32:42 -04001254
1255 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001256 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001257 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001258
1259 /*
1260 * The way this works is that at some point in the future
1261 * some task will call _switch to switch to the new task.
1262 * That will pop off the stack frame created below and start
1263 * the new task running at ret_from_fork. The new task will
1264 * do some house keeping and then return from the fork or clone
1265 * system call, using the stack frame created above.
1266 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001267 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001268 sp -= sizeof(struct pt_regs);
1269 kregs = (struct pt_regs *) sp;
1270 sp -= STACK_FRAME_OVERHEAD;
1271 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001272#ifdef CONFIG_PPC32
Kumar Gala85218822008-04-28 16:21:22 +10001273 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1274 _ALIGN_UP(sizeof(struct thread_info), 16);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001275#endif
Oleg Nesterov28d170a2013-04-21 06:47:59 +00001276#ifdef CONFIG_HAVE_HW_BREAKPOINT
1277 p->thread.ptrace_bps[0] = NULL;
1278#endif
1279
Paul Mackerras18461962013-09-10 20:21:10 +10001280 p->thread.fp_save_area = NULL;
1281#ifdef CONFIG_ALTIVEC
1282 p->thread.vr_save_area = NULL;
1283#endif
1284
Michael Ellermancec15482014-07-10 12:29:21 +10001285 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001286
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001287#ifdef CONFIG_PPC64
1288 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001289 p->thread.dscr_inherit = current->thread.dscr_inherit;
1290 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001291 }
Haren Myneni92779242012-12-06 21:49:56 +00001292 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1293 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001294#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001295 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001296 return 0;
1297}
1298
1299/*
1300 * Set up a thread for executing a new program
1301 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001302void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001303{
Michael Ellerman90eac722005-10-21 16:01:33 +10001304#ifdef CONFIG_PPC64
1305 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
1306#endif
1307
Paul Mackerras06d67d52005-10-10 22:29:05 +10001308 /*
1309 * If we exec out of a kernel thread then thread.regs will not be
1310 * set. Do it now.
1311 */
1312 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001313 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1314 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001315 }
1316
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001317 memset(regs->gpr, 0, sizeof(regs->gpr));
1318 regs->ctr = 0;
1319 regs->link = 0;
1320 regs->xer = 0;
1321 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001322 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001323
Roland McGrath474f8192007-09-24 16:52:44 -07001324 /*
1325 * We have just cleared all the nonvolatile GPRs, so make
1326 * FULL_REGS(regs) return true. This is necessary to allow
1327 * ptrace to examine the thread immediately after exec.
1328 */
1329 regs->trap &= ~1UL;
1330
Paul Mackerras06d67d52005-10-10 22:29:05 +10001331#ifdef CONFIG_PPC32
1332 regs->mq = 0;
1333 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001334 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001335#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001336 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001337 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001338
Rusty Russell94af3ab2013-11-20 22:15:02 +11001339 if (is_elf2_task()) {
1340 /* Look ma, no function descriptors! */
1341 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001342
Rusty Russell94af3ab2013-11-20 22:15:02 +11001343 /*
1344 * Ulrich says:
1345 * The latest iteration of the ABI requires that when
1346 * calling a function (at its global entry point),
1347 * the caller must ensure r12 holds the entry point
1348 * address (so that the function can quickly
1349 * establish addressability).
1350 */
1351 regs->gpr[12] = start;
1352 /* Make sure that's restored on entry to userspace. */
1353 set_thread_flag(TIF_RESTOREALL);
1354 } else {
1355 unsigned long toc;
1356
1357 /* start is a relocated pointer to the function
1358 * descriptor for the elf _start routine. The first
1359 * entry in the function descriptor is the entry
1360 * address of _start and the second entry is the TOC
1361 * value we need to use.
1362 */
1363 __get_user(entry, (unsigned long __user *)start);
1364 __get_user(toc, (unsigned long __user *)start+1);
1365
1366 /* Check whether the e_entry function descriptor entries
1367 * need to be relocated before we can use them.
1368 */
1369 if (load_addr != 0) {
1370 entry += load_addr;
1371 toc += load_addr;
1372 }
1373 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001374 }
1375 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001376 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001377 } else {
1378 regs->nip = start;
1379 regs->gpr[2] = 0;
1380 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001381 }
1382#endif
Michael Neulingce48b212008-06-25 14:07:18 +10001383#ifdef CONFIG_VSX
1384 current->thread.used_vsr = 0;
1385#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001386 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001387 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001388#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001389 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1390 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001391 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001392 current->thread.vrsave = 0;
1393 current->thread.used_vr = 0;
1394#endif /* CONFIG_ALTIVEC */
1395#ifdef CONFIG_SPE
1396 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1397 current->thread.acc = 0;
1398 current->thread.spefscr = 0;
1399 current->thread.used_spe = 0;
1400#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001401#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1402 if (cpu_has_feature(CPU_FTR_TM))
1403 regs->msr |= MSR_TM;
1404 current->thread.tm_tfhar = 0;
1405 current->thread.tm_texasr = 0;
1406 current->thread.tm_tfiar = 0;
1407#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001408}
Anton Blancharde1802b02014-08-20 08:00:02 +10001409EXPORT_SYMBOL(start_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001410
1411#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1412 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1413
1414int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1415{
1416 struct pt_regs *regs = tsk->thread.regs;
1417
1418 /* This is a bit hairy. If we are an SPE enabled processor
1419 * (have embedded fp) we store the IEEE exception enable flags in
1420 * fpexc_mode. fpexc_mode is also used for setting FP exception
1421 * mode (asyn, precise, disabled) for 'Classic' FP. */
1422 if (val & PR_FP_EXC_SW_ENABLE) {
1423#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001424 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001425 /*
1426 * When the sticky exception bits are set
1427 * directly by userspace, it must call prctl
1428 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1429 * in the existing prctl settings) or
1430 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1431 * the bits being set). <fenv.h> functions
1432 * saving and restoring the whole
1433 * floating-point environment need to do so
1434 * anyway to restore the prctl settings from
1435 * the saved environment.
1436 */
1437 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001438 tsk->thread.fpexc_mode = val &
1439 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1440 return 0;
1441 } else {
1442 return -EINVAL;
1443 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001444#else
1445 return -EINVAL;
1446#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001447 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001448
1449 /* on a CONFIG_SPE this does not hurt us. The bits that
1450 * __pack_fe01 use do not overlap with bits used for
1451 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1452 * on CONFIG_SPE implementations are reserved so writing to
1453 * them does not change anything */
1454 if (val > PR_FP_EXC_PRECISE)
1455 return -EINVAL;
1456 tsk->thread.fpexc_mode = __pack_fe01(val);
1457 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1458 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1459 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001460 return 0;
1461}
1462
1463int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1464{
1465 unsigned int val;
1466
1467 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1468#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001469 if (cpu_has_feature(CPU_FTR_SPE)) {
1470 /*
1471 * When the sticky exception bits are set
1472 * directly by userspace, it must call prctl
1473 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1474 * in the existing prctl settings) or
1475 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1476 * the bits being set). <fenv.h> functions
1477 * saving and restoring the whole
1478 * floating-point environment need to do so
1479 * anyway to restore the prctl settings from
1480 * the saved environment.
1481 */
1482 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001483 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001484 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001485 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001486#else
1487 return -EINVAL;
1488#endif
1489 else
1490 val = __unpack_fe01(tsk->thread.fpexc_mode);
1491 return put_user(val, (unsigned int __user *) adr);
1492}
1493
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001494int set_endian(struct task_struct *tsk, unsigned int val)
1495{
1496 struct pt_regs *regs = tsk->thread.regs;
1497
1498 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1499 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1500 return -EINVAL;
1501
1502 if (regs == NULL)
1503 return -EINVAL;
1504
1505 if (val == PR_ENDIAN_BIG)
1506 regs->msr &= ~MSR_LE;
1507 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1508 regs->msr |= MSR_LE;
1509 else
1510 return -EINVAL;
1511
1512 return 0;
1513}
1514
1515int get_endian(struct task_struct *tsk, unsigned long adr)
1516{
1517 struct pt_regs *regs = tsk->thread.regs;
1518 unsigned int val;
1519
1520 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1521 !cpu_has_feature(CPU_FTR_REAL_LE))
1522 return -EINVAL;
1523
1524 if (regs == NULL)
1525 return -EINVAL;
1526
1527 if (regs->msr & MSR_LE) {
1528 if (cpu_has_feature(CPU_FTR_REAL_LE))
1529 val = PR_ENDIAN_LITTLE;
1530 else
1531 val = PR_ENDIAN_PPC_LITTLE;
1532 } else
1533 val = PR_ENDIAN_BIG;
1534
1535 return put_user(val, (unsigned int __user *)adr);
1536}
1537
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001538int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1539{
1540 tsk->thread.align_ctl = val;
1541 return 0;
1542}
1543
1544int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1545{
1546 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1547}
1548
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001549static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1550 unsigned long nbytes)
1551{
1552 unsigned long stack_page;
1553 unsigned long cpu = task_cpu(p);
1554
1555 /*
1556 * Avoid crashing if the stack has overflowed and corrupted
1557 * task_cpu(p), which is in the thread_info struct.
1558 */
1559 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1560 stack_page = (unsigned long) hardirq_ctx[cpu];
1561 if (sp >= stack_page + sizeof(struct thread_struct)
1562 && sp <= stack_page + THREAD_SIZE - nbytes)
1563 return 1;
1564
1565 stack_page = (unsigned long) softirq_ctx[cpu];
1566 if (sp >= stack_page + sizeof(struct thread_struct)
1567 && sp <= stack_page + THREAD_SIZE - nbytes)
1568 return 1;
1569 }
1570 return 0;
1571}
1572
Anton Blanchard2f251942006-03-27 11:46:18 +11001573int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001574 unsigned long nbytes)
1575{
Al Viro0cec6fd2006-01-12 01:06:02 -08001576 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001577
1578 if (sp >= stack_page + sizeof(struct thread_struct)
1579 && sp <= stack_page + THREAD_SIZE - nbytes)
1580 return 1;
1581
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001582 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001583}
1584
Anton Blanchard2f251942006-03-27 11:46:18 +11001585EXPORT_SYMBOL(validate_sp);
1586
Paul Mackerras06d67d52005-10-10 22:29:05 +10001587unsigned long get_wchan(struct task_struct *p)
1588{
1589 unsigned long ip, sp;
1590 int count = 0;
1591
1592 if (!p || p == current || p->state == TASK_RUNNING)
1593 return 0;
1594
1595 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001596 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001597 return 0;
1598
1599 do {
1600 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001601 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001602 return 0;
1603 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001604 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001605 if (!in_sched_functions(ip))
1606 return ip;
1607 }
1608 } while (count++ < 16);
1609 return 0;
1610}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001611
Johannes Bergc4d04be2008-11-20 03:24:07 +00001612static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001613
1614void show_stack(struct task_struct *tsk, unsigned long *stack)
1615{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001616 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001617 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001618 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001619#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1620 int curr_frame = current->curr_ret_stack;
1621 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001622 unsigned long rth = (unsigned long)return_to_handler;
Steven Rostedt6794c782009-02-09 21:10:27 -08001623#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001624
1625 sp = (unsigned long) stack;
1626 if (tsk == NULL)
1627 tsk = current;
1628 if (sp == 0) {
1629 if (tsk == current)
Anton Blanchardacf620e2014-10-13 19:41:39 +11001630 sp = current_stack_pointer();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001631 else
1632 sp = tsk->thread.ksp;
1633 }
1634
Paul Mackerras06d67d52005-10-10 22:29:05 +10001635 lr = 0;
1636 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001637 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001638 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001639 return;
1640
1641 stack = (unsigned long *) sp;
1642 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001643 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001644 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001645 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001646#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Anton Blanchard7d56c652014-09-17 17:07:03 +10001647 if ((ip == rth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001648 printk(" (%pS)",
1649 (void *)current->ret_stack[curr_frame].ret);
1650 curr_frame--;
1651 }
1652#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001653 if (firstframe)
1654 printk(" (unreliable)");
1655 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001656 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001657 firstframe = 0;
1658
1659 /*
1660 * See if this is an exception frame.
1661 * We look for the "regshere" marker in the current frame.
1662 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001663 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1664 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001665 struct pt_regs *regs = (struct pt_regs *)
1666 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001667 lr = regs->link;
Paul Mackerras9be9be22014-06-12 16:53:08 +10001668 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001669 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001670 firstframe = 1;
1671 }
1672
1673 sp = newsp;
1674 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001675}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001676
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001677#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001678/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001679void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001680{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001681 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001682 unsigned long ctrl;
1683
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001684 ctrl = mfspr(SPRN_CTRLF);
1685 ctrl |= CTRL_RUNLATCH;
1686 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001687
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001688 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001689}
1690
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001691/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001692void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001693{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001694 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001695 unsigned long ctrl;
1696
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001697 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001698
Anton Blanchard4138d652010-08-06 03:28:19 +00001699 ctrl = mfspr(SPRN_CTRLF);
1700 ctrl &= ~CTRL_RUNLATCH;
1701 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001702}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001703#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001704
Anton Blanchardd8390882009-02-22 01:50:03 +00001705unsigned long arch_align_stack(unsigned long sp)
1706{
1707 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1708 sp -= get_random_int() & ~PAGE_MASK;
1709 return sp & ~0xf;
1710}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001711
1712static inline unsigned long brk_rnd(void)
1713{
1714 unsigned long rnd = 0;
1715
1716 /* 8MB for 32bit, 1GB for 64bit */
1717 if (is_32bit_task())
1718 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1719 else
1720 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1721
1722 return rnd << PAGE_SHIFT;
1723}
1724
1725unsigned long arch_randomize_brk(struct mm_struct *mm)
1726{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001727 unsigned long base = mm->brk;
1728 unsigned long ret;
1729
Kumar Galace7a35c2009-10-16 07:05:17 +00001730#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001731 /*
1732 * If we are using 1TB segments and we are allowed to randomise
1733 * the heap, we can put it above 1TB so it is backed by a 1TB
1734 * segment. Otherwise the heap will be in the bottom 1TB
1735 * which always uses 256MB segments and this may result in a
1736 * performance penalty.
1737 */
1738 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1739 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1740#endif
1741
1742 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001743
1744 if (ret < mm->brk)
1745 return mm->brk;
1746
1747 return ret;
1748}
Anton Blanchard501cb162009-02-22 01:50:07 +00001749