blob: 4c087b9ed2d640a80bcdf79baf50ae4ac441a45f [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 Mackerrasd31626f2014-01-13 15:56:29 +1100177#endif /* CONFIG_PPC_FPU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000178
179void enable_kernel_fp(void)
180{
181 WARN_ON(preemptible());
182
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100183 msr_check_and_set(MSR_FP);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100184
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100185 if (current->thread.regs && (current->thread.regs->msr & MSR_FP))
186 __giveup_fpu(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000187}
188EXPORT_SYMBOL(enable_kernel_fp);
189
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000190#ifdef CONFIG_ALTIVEC
Anton Blanchard98da5812015-10-29 11:44:01 +1100191void giveup_altivec(struct task_struct *tsk)
192{
Anton Blanchard98da5812015-10-29 11:44:01 +1100193 check_if_tm_restore_required(tsk);
194
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100195 msr_check_and_set(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100196 __giveup_altivec(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100197 msr_check_and_clear(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100198}
199EXPORT_SYMBOL(giveup_altivec);
200
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000201void enable_kernel_altivec(void)
202{
203 WARN_ON(preemptible());
204
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100205 msr_check_and_set(MSR_VEC);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100206
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100207 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC))
208 __giveup_altivec(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000209}
210EXPORT_SYMBOL(enable_kernel_altivec);
211
212/*
213 * Make sure the VMX/Altivec register state in the
214 * the thread_struct is up to date for task tsk.
215 */
216void flush_altivec_to_thread(struct task_struct *tsk)
217{
218 if (tsk->thread.regs) {
219 preempt_disable();
220 if (tsk->thread.regs->msr & MSR_VEC) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000221 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100222 giveup_altivec(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000223 }
224 preempt_enable();
225 }
226}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000227EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000228#endif /* CONFIG_ALTIVEC */
229
Michael Neulingce48b212008-06-25 14:07:18 +1000230#ifdef CONFIG_VSX
Anton Blancharda7d623d2015-10-29 11:44:02 +1100231void giveup_vsx(struct task_struct *tsk)
232{
Anton Blancharda7d623d2015-10-29 11:44:02 +1100233 check_if_tm_restore_required(tsk);
234
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100235 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100236 if (tsk->thread.regs->msr & MSR_FP)
237 __giveup_fpu(tsk);
238 if (tsk->thread.regs->msr & MSR_VEC)
239 __giveup_altivec(tsk);
240 __giveup_vsx(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100241 msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100242}
243EXPORT_SYMBOL(giveup_vsx);
244
Michael Neulingce48b212008-06-25 14:07:18 +1000245void enable_kernel_vsx(void)
246{
247 WARN_ON(preemptible());
248
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100249 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100250
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100251 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX)) {
252 if (current->thread.regs->msr & MSR_FP)
253 __giveup_fpu(current);
254 if (current->thread.regs->msr & MSR_VEC)
255 __giveup_altivec(current);
256 __giveup_vsx(current);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100257 }
Michael Neulingce48b212008-06-25 14:07:18 +1000258}
259EXPORT_SYMBOL(enable_kernel_vsx);
Michael Neulingce48b212008-06-25 14:07:18 +1000260
261void flush_vsx_to_thread(struct task_struct *tsk)
262{
263 if (tsk->thread.regs) {
264 preempt_disable();
265 if (tsk->thread.regs->msr & MSR_VSX) {
Michael Neulingce48b212008-06-25 14:07:18 +1000266 BUG_ON(tsk != current);
Michael Neulingce48b212008-06-25 14:07:18 +1000267 giveup_vsx(tsk);
268 }
269 preempt_enable();
270 }
271}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000272EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000273#endif /* CONFIG_VSX */
274
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000275#ifdef CONFIG_SPE
Anton Blanchard98da5812015-10-29 11:44:01 +1100276void giveup_spe(struct task_struct *tsk)
277{
Anton Blanchard98da5812015-10-29 11:44:01 +1100278 check_if_tm_restore_required(tsk);
279
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100280 msr_check_and_set(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100281 __giveup_spe(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100282 msr_check_and_clear(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100283}
284EXPORT_SYMBOL(giveup_spe);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000285
286void enable_kernel_spe(void)
287{
288 WARN_ON(preemptible());
289
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100290 msr_check_and_set(MSR_SPE);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100291
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100292 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE))
293 __giveup_spe(current);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000294}
295EXPORT_SYMBOL(enable_kernel_spe);
296
297void flush_spe_to_thread(struct task_struct *tsk)
298{
299 if (tsk->thread.regs) {
300 preempt_disable();
301 if (tsk->thread.regs->msr & MSR_SPE) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000302 BUG_ON(tsk != current);
yu liu685659e2011-06-14 18:34:25 -0500303 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500304 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000305 }
306 preempt_enable();
307 }
308}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000309#endif /* CONFIG_SPE */
310
Anton Blanchardc2085052015-10-29 11:44:08 +1100311static unsigned long msr_all_available;
312
313static int __init init_msr_all_available(void)
314{
315#ifdef CONFIG_PPC_FPU
316 msr_all_available |= MSR_FP;
317#endif
318#ifdef CONFIG_ALTIVEC
319 if (cpu_has_feature(CPU_FTR_ALTIVEC))
320 msr_all_available |= MSR_VEC;
321#endif
322#ifdef CONFIG_VSX
323 if (cpu_has_feature(CPU_FTR_VSX))
324 msr_all_available |= MSR_VSX;
325#endif
326#ifdef CONFIG_SPE
327 if (cpu_has_feature(CPU_FTR_SPE))
328 msr_all_available |= MSR_SPE;
329#endif
330
331 return 0;
332}
333early_initcall(init_msr_all_available);
334
335void giveup_all(struct task_struct *tsk)
336{
337 unsigned long usermsr;
338
339 if (!tsk->thread.regs)
340 return;
341
342 usermsr = tsk->thread.regs->msr;
343
344 if ((usermsr & msr_all_available) == 0)
345 return;
346
347 msr_check_and_set(msr_all_available);
348
349#ifdef CONFIG_PPC_FPU
350 if (usermsr & MSR_FP)
351 __giveup_fpu(tsk);
352#endif
353#ifdef CONFIG_ALTIVEC
354 if (usermsr & MSR_VEC)
355 __giveup_altivec(tsk);
356#endif
357#ifdef CONFIG_VSX
358 if (usermsr & MSR_VSX)
359 __giveup_vsx(tsk);
360#endif
361#ifdef CONFIG_SPE
362 if (usermsr & MSR_SPE)
363 __giveup_spe(tsk);
364#endif
365
366 msr_check_and_clear(msr_all_available);
367}
368EXPORT_SYMBOL(giveup_all);
369
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000370#ifdef CONFIG_PPC_ADV_DEBUG_REGS
371void do_send_trap(struct pt_regs *regs, unsigned long address,
372 unsigned long error_code, int signal_code, int breakpt)
373{
374 siginfo_t info;
375
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000376 current->thread.trap_nr = signal_code;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000377 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
378 11, SIGSEGV) == NOTIFY_STOP)
379 return;
380
381 /* Deliver the signal to userspace */
382 info.si_signo = SIGTRAP;
383 info.si_errno = breakpt; /* breakpoint or watchpoint id */
384 info.si_code = signal_code;
385 info.si_addr = (void __user *)address;
386 force_sig_info(SIGTRAP, &info, current);
387}
388#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000389void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000390 unsigned long error_code)
391{
392 siginfo_t info;
393
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000394 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000395 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
396 11, SIGSEGV) == NOTIFY_STOP)
397 return;
398
Michael Neuling9422de32012-12-20 14:06:44 +0000399 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000400 return;
401
Michael Neuling9422de32012-12-20 14:06:44 +0000402 /* Clear the breakpoint */
403 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000404
405 /* Deliver the signal to userspace */
406 info.si_signo = SIGTRAP;
407 info.si_errno = 0;
408 info.si_code = TRAP_HWBKPT;
409 info.si_addr = (void __user *)address;
410 force_sig_info(SIGTRAP, &info, current);
411}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000412#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000413
Michael Neuling9422de32012-12-20 14:06:44 +0000414static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100415
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000416#ifdef CONFIG_PPC_ADV_DEBUG_REGS
417/*
418 * Set the debug registers back to their default "safe" values.
419 */
420static void set_debug_reg_defaults(struct thread_struct *thread)
421{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530422 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000423#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530424 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000425#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530426 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000427#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530428 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000429#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530430 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000431#ifdef CONFIG_BOOKE
432 /*
433 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
434 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530435 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000436 DBCR1_IAC3US | DBCR1_IAC4US;
437 /*
438 * Force Data Address Compare User/Supervisor bits to be User-only
439 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
440 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530441 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000442#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530443 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000444#endif
445}
446
Scott Woodf5f97212013-11-22 15:52:29 -0600447static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000448{
Scott Wood6cecf762013-05-13 14:14:53 +0000449 /*
450 * We could have inherited MSR_DE from userspace, since
451 * it doesn't get cleared on exception entry. Make sure
452 * MSR_DE is clear before we enable any debug events.
453 */
454 mtmsr(mfmsr() & ~MSR_DE);
455
Scott Woodf5f97212013-11-22 15:52:29 -0600456 mtspr(SPRN_IAC1, debug->iac1);
457 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000458#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600459 mtspr(SPRN_IAC3, debug->iac3);
460 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000461#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600462 mtspr(SPRN_DAC1, debug->dac1);
463 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000464#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600465 mtspr(SPRN_DVC1, debug->dvc1);
466 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000467#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600468 mtspr(SPRN_DBCR0, debug->dbcr0);
469 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000470#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600471 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000472#endif
473}
474/*
475 * Unless neither the old or new thread are making use of the
476 * debug registers, set the debug registers from the values
477 * stored in the new thread.
478 */
Scott Woodf5f97212013-11-22 15:52:29 -0600479void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000480{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530481 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600482 || (new_debug->dbcr0 & DBCR0_IDM))
483 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000484}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530485EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000486#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000487#ifndef CONFIG_HAVE_HW_BREAKPOINT
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000488static void set_debug_reg_defaults(struct thread_struct *thread)
489{
Michael Neuling9422de32012-12-20 14:06:44 +0000490 thread->hw_brk.address = 0;
491 thread->hw_brk.type = 0;
Michael Neulingb9818c32013-01-10 14:25:34 +0000492 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000493}
K.Prasade0780b72011-02-10 04:44:35 +0000494#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000495#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
496
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000497#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000498static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
499{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000500 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000501#ifdef CONFIG_PPC_47x
502 isync();
503#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000504 return 0;
505}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000506#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000507static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
508{
Michael Ellermancab0af92005-11-03 15:30:49 +1100509 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000510 if (cpu_has_feature(CPU_FTR_DABRX))
511 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100512 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000513}
Michael Neuling9422de32012-12-20 14:06:44 +0000514#else
515static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
516{
517 return -EINVAL;
518}
519#endif
520
521static inline int set_dabr(struct arch_hw_breakpoint *brk)
522{
523 unsigned long dabr, dabrx;
524
525 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
526 dabrx = ((brk->type >> 3) & 0x7);
527
528 if (ppc_md.set_dabr)
529 return ppc_md.set_dabr(dabr, dabrx);
530
531 return __set_dabr(dabr, dabrx);
532}
533
Michael Neulingbf99de32012-12-20 14:06:45 +0000534static inline int set_dawr(struct arch_hw_breakpoint *brk)
535{
Michael Neuling05d694e2013-01-24 15:02:58 +0000536 unsigned long dawr, dawrx, mrd;
Michael Neulingbf99de32012-12-20 14:06:45 +0000537
538 dawr = brk->address;
539
540 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
541 << (63 - 58); //* read/write bits */
542 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
543 << (63 - 59); //* translate */
544 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
545 >> 3; //* PRIM bits */
Michael Neuling05d694e2013-01-24 15:02:58 +0000546 /* dawr length is stored in field MDR bits 48:53. Matches range in
547 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
548 0b111111=64DW.
549 brk->len is in bytes.
550 This aligns up to double word size, shifts and does the bias.
551 */
552 mrd = ((brk->len + 7) >> 3) - 1;
553 dawrx |= (mrd & 0x3f) << (63 - 53);
Michael Neulingbf99de32012-12-20 14:06:45 +0000554
555 if (ppc_md.set_dawr)
556 return ppc_md.set_dawr(dawr, dawrx);
557 mtspr(SPRN_DAWR, dawr);
558 mtspr(SPRN_DAWRX, dawrx);
559 return 0;
560}
561
Paul Gortmaker21f58502014-04-29 15:25:17 -0400562void __set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000563{
Christoph Lameter69111ba2014-10-21 15:23:25 -0500564 memcpy(this_cpu_ptr(&current_brk), brk, sizeof(*brk));
Michael Neuling9422de32012-12-20 14:06:44 +0000565
Michael Neulingbf99de32012-12-20 14:06:45 +0000566 if (cpu_has_feature(CPU_FTR_DAWR))
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400567 set_dawr(brk);
568 else
569 set_dabr(brk);
Michael Neuling9422de32012-12-20 14:06:44 +0000570}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000571
Paul Gortmaker21f58502014-04-29 15:25:17 -0400572void set_breakpoint(struct arch_hw_breakpoint *brk)
573{
574 preempt_disable();
575 __set_breakpoint(brk);
576 preempt_enable();
577}
578
Paul Mackerras06d67d52005-10-10 22:29:05 +1000579#ifdef CONFIG_PPC64
580DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000581#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000582
Michael Neuling9422de32012-12-20 14:06:44 +0000583static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
584 struct arch_hw_breakpoint *b)
585{
586 if (a->address != b->address)
587 return false;
588 if (a->type != b->type)
589 return false;
590 if (a->len != b->len)
591 return false;
592 return true;
593}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100594
Michael Neulingfb096922013-02-13 16:21:37 +0000595#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100596static void tm_reclaim_thread(struct thread_struct *thr,
597 struct thread_info *ti, uint8_t cause)
598{
599 unsigned long msr_diff = 0;
600
601 /*
602 * If FP/VSX registers have been already saved to the
603 * thread_struct, move them to the transact_fp array.
604 * We clear the TIF_RESTORE_TM bit since after the reclaim
605 * the thread will no longer be transactional.
606 */
607 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +0530608 msr_diff = thr->ckpt_regs.msr & ~thr->regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100609 if (msr_diff & MSR_FP)
610 memcpy(&thr->transact_fp, &thr->fp_state,
611 sizeof(struct thread_fp_state));
612 if (msr_diff & MSR_VEC)
613 memcpy(&thr->transact_vr, &thr->vr_state,
614 sizeof(struct thread_vr_state));
615 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
616 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
617 }
618
619 tm_reclaim(thr, thr->regs->msr, cause);
620
621 /* Having done the reclaim, we now have the checkpointed
622 * FP/VSX values in the registers. These might be valid
623 * even if we have previously called enable_kernel_fp() or
624 * flush_fp_to_thread(), so update thr->regs->msr to
625 * indicate their current validity.
626 */
627 thr->regs->msr |= msr_diff;
628}
629
630void tm_reclaim_current(uint8_t cause)
631{
632 tm_enable();
633 tm_reclaim_thread(&current->thread, current_thread_info(), cause);
634}
635
Michael Neulingfb096922013-02-13 16:21:37 +0000636static inline void tm_reclaim_task(struct task_struct *tsk)
637{
638 /* We have to work out if we're switching from/to a task that's in the
639 * middle of a transaction.
640 *
641 * In switching we need to maintain a 2nd register state as
642 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
643 * checkpointed (tbegin) state in ckpt_regs and saves the transactional
644 * (current) FPRs into oldtask->thread.transact_fpr[].
645 *
646 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
647 */
648 struct thread_struct *thr = &tsk->thread;
649
650 if (!thr->regs)
651 return;
652
653 if (!MSR_TM_ACTIVE(thr->regs->msr))
654 goto out_and_saveregs;
655
656 /* Stash the original thread MSR, as giveup_fpu et al will
657 * modify it. We hold onto it to see whether the task used
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100658 * FP & vector regs. If the TIF_RESTORE_TM flag is set,
Anshuman Khandual829023d2015-07-06 16:24:10 +0530659 * ckpt_regs.msr is already set.
Michael Neulingfb096922013-02-13 16:21:37 +0000660 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100661 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
Anshuman Khandual829023d2015-07-06 16:24:10 +0530662 thr->ckpt_regs.msr = thr->regs->msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000663
664 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
665 "ccr=%lx, msr=%lx, trap=%lx)\n",
666 tsk->pid, thr->regs->nip,
667 thr->regs->ccr, thr->regs->msr,
668 thr->regs->trap);
669
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100670 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000671
672 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
673 tsk->pid);
674
675out_and_saveregs:
676 /* Always save the regs here, even if a transaction's not active.
677 * This context-switches a thread's TM info SPRs. We do it here to
678 * be consistent with the restore path (in recheckpoint) which
679 * cannot happen later in _switch().
680 */
681 tm_save_sprs(thr);
682}
683
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100684extern void __tm_recheckpoint(struct thread_struct *thread,
685 unsigned long orig_msr);
686
687void tm_recheckpoint(struct thread_struct *thread,
688 unsigned long orig_msr)
689{
690 unsigned long flags;
691
692 /* We really can't be interrupted here as the TEXASR registers can't
693 * change and later in the trecheckpoint code, we have a userspace R1.
694 * So let's hard disable over this region.
695 */
696 local_irq_save(flags);
697 hard_irq_disable();
698
699 /* The TM SPRs are restored here, so that TEXASR.FS can be set
700 * before the trecheckpoint and no explosion occurs.
701 */
702 tm_restore_sprs(thread);
703
704 __tm_recheckpoint(thread, orig_msr);
705
706 local_irq_restore(flags);
707}
708
Michael Neulingbc2a9402013-02-13 16:21:40 +0000709static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000710{
711 unsigned long msr;
712
713 if (!cpu_has_feature(CPU_FTR_TM))
714 return;
715
716 /* Recheckpoint the registers of the thread we're about to switch to.
717 *
718 * If the task was using FP, we non-lazily reload both the original and
719 * the speculative FP register states. This is because the kernel
720 * doesn't see if/when a TM rollback occurs, so if we take an FP
721 * unavoidable later, we are unable to determine which set of FP regs
722 * need to be restored.
723 */
724 if (!new->thread.regs)
725 return;
726
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100727 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
728 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000729 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100730 }
Anshuman Khandual829023d2015-07-06 16:24:10 +0530731 msr = new->thread.ckpt_regs.msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000732 /* Recheckpoint to restore original checkpointed register state. */
733 TM_DEBUG("*** tm_recheckpoint of pid %d "
734 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
735 new->pid, new->thread.regs->msr, msr);
736
737 /* This loads the checkpointed FP/VEC state, if used */
738 tm_recheckpoint(&new->thread, msr);
739
740 /* This loads the speculative FP/VEC state, if used */
741 if (msr & MSR_FP) {
742 do_load_up_transact_fpu(&new->thread);
743 new->thread.regs->msr |=
744 (MSR_FP | new->thread.fpexc_mode);
745 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000746#ifdef CONFIG_ALTIVEC
Michael Neulingfb096922013-02-13 16:21:37 +0000747 if (msr & MSR_VEC) {
748 do_load_up_transact_altivec(&new->thread);
749 new->thread.regs->msr |= MSR_VEC;
750 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000751#endif
Michael Neulingfb096922013-02-13 16:21:37 +0000752 /* We may as well turn on VSX too since all the state is restored now */
753 if (msr & MSR_VSX)
754 new->thread.regs->msr |= MSR_VSX;
755
756 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
757 "(kernel msr 0x%lx)\n",
758 new->pid, mfmsr());
759}
760
761static inline void __switch_to_tm(struct task_struct *prev)
762{
763 if (cpu_has_feature(CPU_FTR_TM)) {
764 tm_enable();
765 tm_reclaim_task(prev);
766 }
767}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100768
769/*
770 * This is called if we are on the way out to userspace and the
771 * TIF_RESTORE_TM flag is set. It checks if we need to reload
772 * FP and/or vector state and does so if necessary.
773 * If userspace is inside a transaction (whether active or
774 * suspended) and FP/VMX/VSX instructions have ever been enabled
775 * inside that transaction, then we have to keep them enabled
776 * and keep the FP/VMX/VSX state loaded while ever the transaction
777 * continues. The reason is that if we didn't, and subsequently
778 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
779 * we don't know whether it's the same transaction, and thus we
780 * don't know which of the checkpointed state and the transactional
781 * state to use.
782 */
783void restore_tm_state(struct pt_regs *regs)
784{
785 unsigned long msr_diff;
786
787 clear_thread_flag(TIF_RESTORE_TM);
788 if (!MSR_TM_ACTIVE(regs->msr))
789 return;
790
Anshuman Khandual829023d2015-07-06 16:24:10 +0530791 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100792 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
793 if (msr_diff & MSR_FP) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100794 msr_check_and_set(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100795 load_fp_state(&current->thread.fp_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100796 msr_check_and_clear(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100797 regs->msr |= current->thread.fpexc_mode;
798 }
799 if (msr_diff & MSR_VEC) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100800 msr_check_and_set(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100801 load_vr_state(&current->thread.vr_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100802 msr_check_and_clear(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100803 }
804 regs->msr |= msr_diff;
805}
806
Michael Neulingfb096922013-02-13 16:21:37 +0000807#else
808#define tm_recheckpoint_new_task(new)
809#define __switch_to_tm(prev)
810#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +0000811
Anton Blanchard152d5232015-10-29 11:43:55 +1100812static inline void save_sprs(struct thread_struct *t)
813{
814#ifdef CONFIG_ALTIVEC
815 if (cpu_has_feature(cpu_has_feature(CPU_FTR_ALTIVEC)))
816 t->vrsave = mfspr(SPRN_VRSAVE);
817#endif
818#ifdef CONFIG_PPC_BOOK3S_64
819 if (cpu_has_feature(CPU_FTR_DSCR))
820 t->dscr = mfspr(SPRN_DSCR);
821
822 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
823 t->bescr = mfspr(SPRN_BESCR);
824 t->ebbhr = mfspr(SPRN_EBBHR);
825 t->ebbrr = mfspr(SPRN_EBBRR);
826
827 t->fscr = mfspr(SPRN_FSCR);
828
829 /*
830 * Note that the TAR is not available for use in the kernel.
831 * (To provide this, the TAR should be backed up/restored on
832 * exception entry/exit instead, and be in pt_regs. FIXME,
833 * this should be in pt_regs anyway (for debug).)
834 */
835 t->tar = mfspr(SPRN_TAR);
836 }
837#endif
838}
839
840static inline void restore_sprs(struct thread_struct *old_thread,
841 struct thread_struct *new_thread)
842{
843#ifdef CONFIG_ALTIVEC
844 if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
845 old_thread->vrsave != new_thread->vrsave)
846 mtspr(SPRN_VRSAVE, new_thread->vrsave);
847#endif
848#ifdef CONFIG_PPC_BOOK3S_64
849 if (cpu_has_feature(CPU_FTR_DSCR)) {
850 u64 dscr = get_paca()->dscr_default;
851 u64 fscr = old_thread->fscr & ~FSCR_DSCR;
852
853 if (new_thread->dscr_inherit) {
854 dscr = new_thread->dscr;
855 fscr |= FSCR_DSCR;
856 }
857
858 if (old_thread->dscr != dscr)
859 mtspr(SPRN_DSCR, dscr);
860
861 if (old_thread->fscr != fscr)
862 mtspr(SPRN_FSCR, fscr);
863 }
864
865 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
866 if (old_thread->bescr != new_thread->bescr)
867 mtspr(SPRN_BESCR, new_thread->bescr);
868 if (old_thread->ebbhr != new_thread->ebbhr)
869 mtspr(SPRN_EBBHR, new_thread->ebbhr);
870 if (old_thread->ebbrr != new_thread->ebbrr)
871 mtspr(SPRN_EBBRR, new_thread->ebbrr);
872
873 if (old_thread->tar != new_thread->tar)
874 mtspr(SPRN_TAR, new_thread->tar);
875 }
876#endif
877}
878
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000879struct task_struct *__switch_to(struct task_struct *prev,
880 struct task_struct *new)
881{
882 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000883 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700884#ifdef CONFIG_PPC_BOOK3S_64
885 struct ppc64_tlb_batch *batch;
886#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000887
Anton Blanchard152d5232015-10-29 11:43:55 +1100888 new_thread = &new->thread;
889 old_thread = &current->thread;
890
Michael Neuling7ba5fef2013-10-02 17:15:14 +1000891 WARN_ON(!irqs_disabled());
892
Anton Blanchard152d5232015-10-29 11:43:55 +1100893 /*
894 * We need to save SPRs before treclaim/trecheckpoint as these will
895 * change a number of them.
Michael Neulingc2d52642013-08-09 17:29:30 +1000896 */
Anton Blanchard152d5232015-10-29 11:43:55 +1100897 save_sprs(&prev->thread);
Michael Neulingc2d52642013-08-09 17:29:30 +1000898
Michael Neulingbc2a9402013-02-13 16:21:40 +0000899 __switch_to_tm(prev);
900
Anton Blanchardc2085052015-10-29 11:44:08 +1100901 /* Save FPU, Altivec, VSX and SPE state */
902 giveup_all(prev);
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000903
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000904#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Scott Woodf5f97212013-11-22 15:52:29 -0600905 switch_booke_debug_regs(&new->thread.debug);
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000906#else
K.Prasad5aae8a52010-06-15 11:35:19 +0530907/*
908 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
909 * schedule DABR
910 */
911#ifndef CONFIG_HAVE_HW_BREAKPOINT
Christoph Lameter69111ba2014-10-21 15:23:25 -0500912 if (unlikely(!hw_brk_match(this_cpu_ptr(&current_brk), &new->thread.hw_brk)))
Paul Gortmaker21f58502014-04-29 15:25:17 -0400913 __set_breakpoint(&new->thread.hw_brk);
K.Prasad5aae8a52010-06-15 11:35:19 +0530914#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000915#endif
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 Blanchard44387e92008-03-17 15:27:09 +1100941 /*
942 * We can't take a PMU exception inside _switch() since there is a
943 * window where the kernel stack SLB and the kernel stack are out
944 * of sync. Hard disable here.
945 */
946 hard_irq_disable();
Michael Neulingbc2a9402013-02-13 16:21:40 +0000947
948 tm_recheckpoint_new_task(new);
949
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000950 last = _switch(old_thread, new_thread);
951
Anton Blanchard152d5232015-10-29 11:43:55 +1100952 /* Need to recalculate these after calling _switch() */
953 old_thread = &last->thread;
954 new_thread = &current->thread;
955
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700956#ifdef CONFIG_PPC_BOOK3S_64
957 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
958 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500959 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700960 batch->active = 1;
961 }
962#endif /* CONFIG_PPC_BOOK3S_64 */
963
Anton Blanchard152d5232015-10-29 11:43:55 +1100964 restore_sprs(old_thread, new_thread);
965
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000966 return last;
967}
968
Paul Mackerras06d67d52005-10-10 22:29:05 +1000969static int instructions_to_print = 16;
970
Paul Mackerras06d67d52005-10-10 22:29:05 +1000971static void show_instructions(struct pt_regs *regs)
972{
973 int i;
974 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
975 sizeof(int));
976
977 printk("Instruction dump:");
978
979 for (i = 0; i < instructions_to_print; i++) {
980 int instr;
981
982 if (!(i % 8))
983 printk("\n");
984
Scott Wood0de2d822007-09-28 04:38:55 +1000985#if !defined(CONFIG_BOOKE)
986 /* If executing with the IMMU off, adjust pc rather
987 * than print XXXXXXXX.
988 */
989 if (!(regs->msr & MSR_IR))
990 pc = (unsigned long)phys_to_virt(pc);
991#endif
992
Anton Blanchard00ae36d2006-10-13 12:17:16 +1000993 if (!__kernel_text_address(pc) ||
Anton Blanchard7b051f62014-10-13 20:27:15 +1100994 probe_kernel_address((unsigned int __user *)pc, instr)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +0000995 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +1000996 } else {
997 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +0000998 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000999 else
Ira Snyder40c8cef2012-01-06 12:34:07 +00001000 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001001 }
1002
1003 pc += sizeof(int);
1004 }
1005
1006 printk("\n");
1007}
1008
1009static struct regbit {
1010 unsigned long bit;
1011 const char *name;
1012} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001013#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
1014 {MSR_SF, "SF"},
1015 {MSR_HV, "HV"},
1016#endif
1017 {MSR_VEC, "VEC"},
1018 {MSR_VSX, "VSX"},
1019#ifdef CONFIG_BOOKE
1020 {MSR_CE, "CE"},
1021#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001022 {MSR_EE, "EE"},
1023 {MSR_PR, "PR"},
1024 {MSR_FP, "FP"},
1025 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001026#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +00001027 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001028#else
1029 {MSR_SE, "SE"},
1030 {MSR_BE, "BE"},
1031#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001032 {MSR_IR, "IR"},
1033 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001034 {MSR_PMM, "PMM"},
1035#ifndef CONFIG_BOOKE
1036 {MSR_RI, "RI"},
1037 {MSR_LE, "LE"},
1038#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001039 {0, NULL}
1040};
1041
1042static void printbits(unsigned long val, struct regbit *bits)
1043{
1044 const char *sep = "";
1045
1046 printk("<");
1047 for (; bits->bit; ++bits)
1048 if (val & bits->bit) {
1049 printk("%s%s", sep, bits->name);
1050 sep = ",";
1051 }
1052 printk(">");
1053}
1054
1055#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001056#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001057#define REGS_PER_LINE 4
1058#define LAST_VOLATILE 13
1059#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001060#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001061#define REGS_PER_LINE 8
1062#define LAST_VOLATILE 12
1063#endif
1064
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001065void show_regs(struct pt_regs * regs)
1066{
1067 int i, trap;
1068
Tejun Heoa43cb952013-04-30 15:27:17 -07001069 show_regs_print_info(KERN_DEFAULT);
1070
Paul Mackerras06d67d52005-10-10 22:29:05 +10001071 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
1072 regs->nip, regs->link, regs->ctr);
1073 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001074 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001075 printk("MSR: "REG" ", regs->msr);
1076 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001077 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001078 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +00001079 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001080 printk("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001081 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001082#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001083 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001084#else
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001085 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
1086#endif
1087#ifdef CONFIG_PPC64
1088 printk("SOFTE: %ld ", regs->softe);
1089#endif
1090#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001091 if (MSR_TM_ACTIVE(regs->msr))
1092 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001093#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001094
1095 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001096 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +00001097 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001098 printk(REG " ", regs->gpr[i]);
1099 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001100 break;
1101 }
1102 printk("\n");
1103#ifdef CONFIG_KALLSYMS
1104 /*
1105 * Lookup NIP late so we have the best change of getting the
1106 * above info out without failing
1107 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001108 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1109 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001110#endif
1111 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001112 if (!user_mode(regs))
1113 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001114}
1115
1116void exit_thread(void)
1117{
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001118}
1119
1120void flush_thread(void)
1121{
K.Prasade0780b72011-02-10 04:44:35 +00001122#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301123 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001124#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001125 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001126#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001127}
1128
1129void
1130release_thread(struct task_struct *t)
1131{
1132}
1133
1134/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001135 * this gets called so that we can store coprocessor state into memory and
1136 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001137 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001138int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001139{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001140 flush_fp_to_thread(src);
1141 flush_altivec_to_thread(src);
1142 flush_vsx_to_thread(src);
1143 flush_spe_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001144 /*
1145 * Flush TM state out so we can copy it. __switch_to_tm() does this
1146 * flush but it removes the checkpointed state from the current CPU and
1147 * transitions the CPU out of TM mode. Hence we need to call
1148 * tm_recheckpoint_new_task() (on the same task) to restore the
1149 * checkpointed state back and the TM mode.
1150 */
1151 __switch_to_tm(src);
1152 tm_recheckpoint_new_task(src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001153
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001154 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001155
1156 clear_task_ebb(dst);
1157
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001158 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001159}
1160
Michael Ellermancec15482014-07-10 12:29:21 +10001161static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1162{
1163#ifdef CONFIG_PPC_STD_MMU_64
1164 unsigned long sp_vsid;
1165 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1166
1167 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1168 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1169 << SLB_VSID_SHIFT_1T;
1170 else
1171 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1172 << SLB_VSID_SHIFT;
1173 sp_vsid |= SLB_VSID_KERNEL | llp;
1174 p->thread.ksp_vsid = sp_vsid;
1175#endif
1176}
1177
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001178/*
1179 * Copy a thread..
1180 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001181
Alex Dowad6eca8932015-03-13 20:14:46 +02001182/*
1183 * Copy architecture-specific thread state
1184 */
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -07001185int copy_thread(unsigned long clone_flags, unsigned long usp,
Alex Dowad6eca8932015-03-13 20:14:46 +02001186 unsigned long kthread_arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001187{
1188 struct pt_regs *childregs, *kregs;
1189 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001190 extern void ret_from_kernel_thread(void);
1191 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001192 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001193
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001194 /* Copy registers */
1195 sp -= sizeof(struct pt_regs);
1196 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001197 if (unlikely(p->flags & PF_KTHREAD)) {
Alex Dowad6eca8932015-03-13 20:14:46 +02001198 /* kernel thread */
Al Viro138d1ce2012-10-11 08:41:43 -04001199 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -04001200 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001201 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001202 /* function */
1203 if (usp)
1204 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001205#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001206 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -04001207 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001208#endif
Alex Dowad6eca8932015-03-13 20:14:46 +02001209 childregs->gpr[15] = kthread_arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001210 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001211 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001212 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001213 } else {
Alex Dowad6eca8932015-03-13 20:14:46 +02001214 /* user thread */
Al Viroafa86fc2012-10-22 22:51:14 -04001215 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001216 CHECK_FULL_REGS(regs);
1217 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001218 if (usp)
1219 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001220 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001221 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001222 if (clone_flags & CLONE_SETTLS) {
1223#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +00001224 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +10001225 childregs->gpr[13] = childregs->gpr[6];
1226 else
1227#endif
1228 childregs->gpr[2] = childregs->gpr[6];
1229 }
Al Viro58254e12012-09-12 18:32:42 -04001230
1231 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001232 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001233 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001234
1235 /*
1236 * The way this works is that at some point in the future
1237 * some task will call _switch to switch to the new task.
1238 * That will pop off the stack frame created below and start
1239 * the new task running at ret_from_fork. The new task will
1240 * do some house keeping and then return from the fork or clone
1241 * system call, using the stack frame created above.
1242 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001243 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001244 sp -= sizeof(struct pt_regs);
1245 kregs = (struct pt_regs *) sp;
1246 sp -= STACK_FRAME_OVERHEAD;
1247 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001248#ifdef CONFIG_PPC32
Kumar Gala85218822008-04-28 16:21:22 +10001249 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1250 _ALIGN_UP(sizeof(struct thread_info), 16);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001251#endif
Oleg Nesterov28d170a2013-04-21 06:47:59 +00001252#ifdef CONFIG_HAVE_HW_BREAKPOINT
1253 p->thread.ptrace_bps[0] = NULL;
1254#endif
1255
Paul Mackerras18461962013-09-10 20:21:10 +10001256 p->thread.fp_save_area = NULL;
1257#ifdef CONFIG_ALTIVEC
1258 p->thread.vr_save_area = NULL;
1259#endif
1260
Michael Ellermancec15482014-07-10 12:29:21 +10001261 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001262
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001263#ifdef CONFIG_PPC64
1264 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001265 p->thread.dscr_inherit = current->thread.dscr_inherit;
1266 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001267 }
Haren Myneni92779242012-12-06 21:49:56 +00001268 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1269 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001270#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001271 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001272 return 0;
1273}
1274
1275/*
1276 * Set up a thread for executing a new program
1277 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001278void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001279{
Michael Ellerman90eac722005-10-21 16:01:33 +10001280#ifdef CONFIG_PPC64
1281 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
1282#endif
1283
Paul Mackerras06d67d52005-10-10 22:29:05 +10001284 /*
1285 * If we exec out of a kernel thread then thread.regs will not be
1286 * set. Do it now.
1287 */
1288 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001289 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1290 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001291 }
1292
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001293 memset(regs->gpr, 0, sizeof(regs->gpr));
1294 regs->ctr = 0;
1295 regs->link = 0;
1296 regs->xer = 0;
1297 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001298 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001299
Roland McGrath474f8192007-09-24 16:52:44 -07001300 /*
1301 * We have just cleared all the nonvolatile GPRs, so make
1302 * FULL_REGS(regs) return true. This is necessary to allow
1303 * ptrace to examine the thread immediately after exec.
1304 */
1305 regs->trap &= ~1UL;
1306
Paul Mackerras06d67d52005-10-10 22:29:05 +10001307#ifdef CONFIG_PPC32
1308 regs->mq = 0;
1309 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001310 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001311#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001312 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001313 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001314
Rusty Russell94af3ab2013-11-20 22:15:02 +11001315 if (is_elf2_task()) {
1316 /* Look ma, no function descriptors! */
1317 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001318
Rusty Russell94af3ab2013-11-20 22:15:02 +11001319 /*
1320 * Ulrich says:
1321 * The latest iteration of the ABI requires that when
1322 * calling a function (at its global entry point),
1323 * the caller must ensure r12 holds the entry point
1324 * address (so that the function can quickly
1325 * establish addressability).
1326 */
1327 regs->gpr[12] = start;
1328 /* Make sure that's restored on entry to userspace. */
1329 set_thread_flag(TIF_RESTOREALL);
1330 } else {
1331 unsigned long toc;
1332
1333 /* start is a relocated pointer to the function
1334 * descriptor for the elf _start routine. The first
1335 * entry in the function descriptor is the entry
1336 * address of _start and the second entry is the TOC
1337 * value we need to use.
1338 */
1339 __get_user(entry, (unsigned long __user *)start);
1340 __get_user(toc, (unsigned long __user *)start+1);
1341
1342 /* Check whether the e_entry function descriptor entries
1343 * need to be relocated before we can use them.
1344 */
1345 if (load_addr != 0) {
1346 entry += load_addr;
1347 toc += load_addr;
1348 }
1349 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001350 }
1351 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001352 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001353 } else {
1354 regs->nip = start;
1355 regs->gpr[2] = 0;
1356 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001357 }
1358#endif
Michael Neulingce48b212008-06-25 14:07:18 +10001359#ifdef CONFIG_VSX
1360 current->thread.used_vsr = 0;
1361#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001362 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001363 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001364#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001365 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1366 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001367 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001368 current->thread.vrsave = 0;
1369 current->thread.used_vr = 0;
1370#endif /* CONFIG_ALTIVEC */
1371#ifdef CONFIG_SPE
1372 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1373 current->thread.acc = 0;
1374 current->thread.spefscr = 0;
1375 current->thread.used_spe = 0;
1376#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001377#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1378 if (cpu_has_feature(CPU_FTR_TM))
1379 regs->msr |= MSR_TM;
1380 current->thread.tm_tfhar = 0;
1381 current->thread.tm_texasr = 0;
1382 current->thread.tm_tfiar = 0;
1383#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001384}
Anton Blancharde1802b02014-08-20 08:00:02 +10001385EXPORT_SYMBOL(start_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001386
1387#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1388 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1389
1390int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1391{
1392 struct pt_regs *regs = tsk->thread.regs;
1393
1394 /* This is a bit hairy. If we are an SPE enabled processor
1395 * (have embedded fp) we store the IEEE exception enable flags in
1396 * fpexc_mode. fpexc_mode is also used for setting FP exception
1397 * mode (asyn, precise, disabled) for 'Classic' FP. */
1398 if (val & PR_FP_EXC_SW_ENABLE) {
1399#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001400 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001401 /*
1402 * When the sticky exception bits are set
1403 * directly by userspace, it must call prctl
1404 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1405 * in the existing prctl settings) or
1406 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1407 * the bits being set). <fenv.h> functions
1408 * saving and restoring the whole
1409 * floating-point environment need to do so
1410 * anyway to restore the prctl settings from
1411 * the saved environment.
1412 */
1413 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001414 tsk->thread.fpexc_mode = val &
1415 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1416 return 0;
1417 } else {
1418 return -EINVAL;
1419 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001420#else
1421 return -EINVAL;
1422#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001423 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001424
1425 /* on a CONFIG_SPE this does not hurt us. The bits that
1426 * __pack_fe01 use do not overlap with bits used for
1427 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1428 * on CONFIG_SPE implementations are reserved so writing to
1429 * them does not change anything */
1430 if (val > PR_FP_EXC_PRECISE)
1431 return -EINVAL;
1432 tsk->thread.fpexc_mode = __pack_fe01(val);
1433 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1434 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1435 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001436 return 0;
1437}
1438
1439int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1440{
1441 unsigned int val;
1442
1443 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1444#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001445 if (cpu_has_feature(CPU_FTR_SPE)) {
1446 /*
1447 * When the sticky exception bits are set
1448 * directly by userspace, it must call prctl
1449 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1450 * in the existing prctl settings) or
1451 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1452 * the bits being set). <fenv.h> functions
1453 * saving and restoring the whole
1454 * floating-point environment need to do so
1455 * anyway to restore the prctl settings from
1456 * the saved environment.
1457 */
1458 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001459 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001460 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001461 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001462#else
1463 return -EINVAL;
1464#endif
1465 else
1466 val = __unpack_fe01(tsk->thread.fpexc_mode);
1467 return put_user(val, (unsigned int __user *) adr);
1468}
1469
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001470int set_endian(struct task_struct *tsk, unsigned int val)
1471{
1472 struct pt_regs *regs = tsk->thread.regs;
1473
1474 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1475 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1476 return -EINVAL;
1477
1478 if (regs == NULL)
1479 return -EINVAL;
1480
1481 if (val == PR_ENDIAN_BIG)
1482 regs->msr &= ~MSR_LE;
1483 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1484 regs->msr |= MSR_LE;
1485 else
1486 return -EINVAL;
1487
1488 return 0;
1489}
1490
1491int get_endian(struct task_struct *tsk, unsigned long adr)
1492{
1493 struct pt_regs *regs = tsk->thread.regs;
1494 unsigned int val;
1495
1496 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1497 !cpu_has_feature(CPU_FTR_REAL_LE))
1498 return -EINVAL;
1499
1500 if (regs == NULL)
1501 return -EINVAL;
1502
1503 if (regs->msr & MSR_LE) {
1504 if (cpu_has_feature(CPU_FTR_REAL_LE))
1505 val = PR_ENDIAN_LITTLE;
1506 else
1507 val = PR_ENDIAN_PPC_LITTLE;
1508 } else
1509 val = PR_ENDIAN_BIG;
1510
1511 return put_user(val, (unsigned int __user *)adr);
1512}
1513
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001514int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1515{
1516 tsk->thread.align_ctl = val;
1517 return 0;
1518}
1519
1520int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1521{
1522 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1523}
1524
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001525static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1526 unsigned long nbytes)
1527{
1528 unsigned long stack_page;
1529 unsigned long cpu = task_cpu(p);
1530
1531 /*
1532 * Avoid crashing if the stack has overflowed and corrupted
1533 * task_cpu(p), which is in the thread_info struct.
1534 */
1535 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1536 stack_page = (unsigned long) hardirq_ctx[cpu];
1537 if (sp >= stack_page + sizeof(struct thread_struct)
1538 && sp <= stack_page + THREAD_SIZE - nbytes)
1539 return 1;
1540
1541 stack_page = (unsigned long) softirq_ctx[cpu];
1542 if (sp >= stack_page + sizeof(struct thread_struct)
1543 && sp <= stack_page + THREAD_SIZE - nbytes)
1544 return 1;
1545 }
1546 return 0;
1547}
1548
Anton Blanchard2f251942006-03-27 11:46:18 +11001549int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001550 unsigned long nbytes)
1551{
Al Viro0cec6fd2006-01-12 01:06:02 -08001552 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001553
1554 if (sp >= stack_page + sizeof(struct thread_struct)
1555 && sp <= stack_page + THREAD_SIZE - nbytes)
1556 return 1;
1557
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001558 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001559}
1560
Anton Blanchard2f251942006-03-27 11:46:18 +11001561EXPORT_SYMBOL(validate_sp);
1562
Paul Mackerras06d67d52005-10-10 22:29:05 +10001563unsigned long get_wchan(struct task_struct *p)
1564{
1565 unsigned long ip, sp;
1566 int count = 0;
1567
1568 if (!p || p == current || p->state == TASK_RUNNING)
1569 return 0;
1570
1571 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001572 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001573 return 0;
1574
1575 do {
1576 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001577 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001578 return 0;
1579 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001580 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001581 if (!in_sched_functions(ip))
1582 return ip;
1583 }
1584 } while (count++ < 16);
1585 return 0;
1586}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001587
Johannes Bergc4d04be2008-11-20 03:24:07 +00001588static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001589
1590void show_stack(struct task_struct *tsk, unsigned long *stack)
1591{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001592 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001593 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001594 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001595#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1596 int curr_frame = current->curr_ret_stack;
1597 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001598 unsigned long rth = (unsigned long)return_to_handler;
Steven Rostedt6794c782009-02-09 21:10:27 -08001599#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001600
1601 sp = (unsigned long) stack;
1602 if (tsk == NULL)
1603 tsk = current;
1604 if (sp == 0) {
1605 if (tsk == current)
Anton Blanchardacf620e2014-10-13 19:41:39 +11001606 sp = current_stack_pointer();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001607 else
1608 sp = tsk->thread.ksp;
1609 }
1610
Paul Mackerras06d67d52005-10-10 22:29:05 +10001611 lr = 0;
1612 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001613 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001614 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001615 return;
1616
1617 stack = (unsigned long *) sp;
1618 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001619 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001620 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001621 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001622#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Anton Blanchard7d56c652014-09-17 17:07:03 +10001623 if ((ip == rth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001624 printk(" (%pS)",
1625 (void *)current->ret_stack[curr_frame].ret);
1626 curr_frame--;
1627 }
1628#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001629 if (firstframe)
1630 printk(" (unreliable)");
1631 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001632 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001633 firstframe = 0;
1634
1635 /*
1636 * See if this is an exception frame.
1637 * We look for the "regshere" marker in the current frame.
1638 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001639 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1640 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001641 struct pt_regs *regs = (struct pt_regs *)
1642 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001643 lr = regs->link;
Paul Mackerras9be9be22014-06-12 16:53:08 +10001644 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001645 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001646 firstframe = 1;
1647 }
1648
1649 sp = newsp;
1650 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001651}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001652
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001653#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001654/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001655void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001656{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001657 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001658 unsigned long ctrl;
1659
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001660 ctrl = mfspr(SPRN_CTRLF);
1661 ctrl |= CTRL_RUNLATCH;
1662 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001663
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001664 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001665}
1666
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001667/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001668void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001669{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001670 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001671 unsigned long ctrl;
1672
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001673 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001674
Anton Blanchard4138d652010-08-06 03:28:19 +00001675 ctrl = mfspr(SPRN_CTRLF);
1676 ctrl &= ~CTRL_RUNLATCH;
1677 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001678}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001679#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001680
Anton Blanchardd8390882009-02-22 01:50:03 +00001681unsigned long arch_align_stack(unsigned long sp)
1682{
1683 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1684 sp -= get_random_int() & ~PAGE_MASK;
1685 return sp & ~0xf;
1686}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001687
1688static inline unsigned long brk_rnd(void)
1689{
1690 unsigned long rnd = 0;
1691
1692 /* 8MB for 32bit, 1GB for 64bit */
1693 if (is_32bit_task())
1694 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1695 else
1696 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1697
1698 return rnd << PAGE_SHIFT;
1699}
1700
1701unsigned long arch_randomize_brk(struct mm_struct *mm)
1702{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001703 unsigned long base = mm->brk;
1704 unsigned long ret;
1705
Kumar Galace7a35c2009-10-16 07:05:17 +00001706#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001707 /*
1708 * If we are using 1TB segments and we are allowed to randomise
1709 * the heap, we can put it above 1TB so it is backed by a 1TB
1710 * segment. Otherwise the heap will be in the bottom 1TB
1711 * which always uses 256MB segments and this may result in a
1712 * performance penalty.
1713 */
1714 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1715 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1716#endif
1717
1718 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001719
1720 if (ret < mm->brk)
1721 return mm->brk;
1722
1723 return ret;
1724}
Anton Blanchard501cb162009-02-22 01:50:07 +00001725