blob: 7f437e7b273e178d4d5d1112f4fe1415b2e1fd32 [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
Anton Blanchard579e6332015-10-29 11:44:09 +1100370void flush_all_to_thread(struct task_struct *tsk)
371{
372 if (tsk->thread.regs) {
373 preempt_disable();
374 BUG_ON(tsk != current);
375 giveup_all(tsk);
376
377#ifdef CONFIG_SPE
378 if (tsk->thread.regs->msr & MSR_SPE)
379 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
380#endif
381
382 preempt_enable();
383 }
384}
385EXPORT_SYMBOL(flush_all_to_thread);
386
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000387#ifdef CONFIG_PPC_ADV_DEBUG_REGS
388void do_send_trap(struct pt_regs *regs, unsigned long address,
389 unsigned long error_code, int signal_code, int breakpt)
390{
391 siginfo_t info;
392
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000393 current->thread.trap_nr = signal_code;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000394 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
395 11, SIGSEGV) == NOTIFY_STOP)
396 return;
397
398 /* Deliver the signal to userspace */
399 info.si_signo = SIGTRAP;
400 info.si_errno = breakpt; /* breakpoint or watchpoint id */
401 info.si_code = signal_code;
402 info.si_addr = (void __user *)address;
403 force_sig_info(SIGTRAP, &info, current);
404}
405#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000406void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000407 unsigned long error_code)
408{
409 siginfo_t info;
410
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000411 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000412 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
413 11, SIGSEGV) == NOTIFY_STOP)
414 return;
415
Michael Neuling9422de32012-12-20 14:06:44 +0000416 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000417 return;
418
Michael Neuling9422de32012-12-20 14:06:44 +0000419 /* Clear the breakpoint */
420 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000421
422 /* Deliver the signal to userspace */
423 info.si_signo = SIGTRAP;
424 info.si_errno = 0;
425 info.si_code = TRAP_HWBKPT;
426 info.si_addr = (void __user *)address;
427 force_sig_info(SIGTRAP, &info, current);
428}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000429#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000430
Michael Neuling9422de32012-12-20 14:06:44 +0000431static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100432
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000433#ifdef CONFIG_PPC_ADV_DEBUG_REGS
434/*
435 * Set the debug registers back to their default "safe" values.
436 */
437static void set_debug_reg_defaults(struct thread_struct *thread)
438{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530439 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000440#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530441 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000442#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530443 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000444#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530445 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000446#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530447 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000448#ifdef CONFIG_BOOKE
449 /*
450 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
451 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530452 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000453 DBCR1_IAC3US | DBCR1_IAC4US;
454 /*
455 * Force Data Address Compare User/Supervisor bits to be User-only
456 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
457 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530458 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000459#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530460 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000461#endif
462}
463
Scott Woodf5f97212013-11-22 15:52:29 -0600464static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000465{
Scott Wood6cecf762013-05-13 14:14:53 +0000466 /*
467 * We could have inherited MSR_DE from userspace, since
468 * it doesn't get cleared on exception entry. Make sure
469 * MSR_DE is clear before we enable any debug events.
470 */
471 mtmsr(mfmsr() & ~MSR_DE);
472
Scott Woodf5f97212013-11-22 15:52:29 -0600473 mtspr(SPRN_IAC1, debug->iac1);
474 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000475#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600476 mtspr(SPRN_IAC3, debug->iac3);
477 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000478#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600479 mtspr(SPRN_DAC1, debug->dac1);
480 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000481#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600482 mtspr(SPRN_DVC1, debug->dvc1);
483 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000484#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600485 mtspr(SPRN_DBCR0, debug->dbcr0);
486 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000487#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600488 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000489#endif
490}
491/*
492 * Unless neither the old or new thread are making use of the
493 * debug registers, set the debug registers from the values
494 * stored in the new thread.
495 */
Scott Woodf5f97212013-11-22 15:52:29 -0600496void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000497{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530498 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600499 || (new_debug->dbcr0 & DBCR0_IDM))
500 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000501}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530502EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000503#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000504#ifndef CONFIG_HAVE_HW_BREAKPOINT
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000505static void set_debug_reg_defaults(struct thread_struct *thread)
506{
Michael Neuling9422de32012-12-20 14:06:44 +0000507 thread->hw_brk.address = 0;
508 thread->hw_brk.type = 0;
Michael Neulingb9818c32013-01-10 14:25:34 +0000509 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000510}
K.Prasade0780b72011-02-10 04:44:35 +0000511#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000512#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
513
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000514#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000515static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
516{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000517 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000518#ifdef CONFIG_PPC_47x
519 isync();
520#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000521 return 0;
522}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000523#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000524static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
525{
Michael Ellermancab0af92005-11-03 15:30:49 +1100526 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000527 if (cpu_has_feature(CPU_FTR_DABRX))
528 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100529 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000530}
Michael Neuling9422de32012-12-20 14:06:44 +0000531#else
532static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
533{
534 return -EINVAL;
535}
536#endif
537
538static inline int set_dabr(struct arch_hw_breakpoint *brk)
539{
540 unsigned long dabr, dabrx;
541
542 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
543 dabrx = ((brk->type >> 3) & 0x7);
544
545 if (ppc_md.set_dabr)
546 return ppc_md.set_dabr(dabr, dabrx);
547
548 return __set_dabr(dabr, dabrx);
549}
550
Michael Neulingbf99de32012-12-20 14:06:45 +0000551static inline int set_dawr(struct arch_hw_breakpoint *brk)
552{
Michael Neuling05d694e2013-01-24 15:02:58 +0000553 unsigned long dawr, dawrx, mrd;
Michael Neulingbf99de32012-12-20 14:06:45 +0000554
555 dawr = brk->address;
556
557 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
558 << (63 - 58); //* read/write bits */
559 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
560 << (63 - 59); //* translate */
561 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
562 >> 3; //* PRIM bits */
Michael Neuling05d694e2013-01-24 15:02:58 +0000563 /* dawr length is stored in field MDR bits 48:53. Matches range in
564 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
565 0b111111=64DW.
566 brk->len is in bytes.
567 This aligns up to double word size, shifts and does the bias.
568 */
569 mrd = ((brk->len + 7) >> 3) - 1;
570 dawrx |= (mrd & 0x3f) << (63 - 53);
Michael Neulingbf99de32012-12-20 14:06:45 +0000571
572 if (ppc_md.set_dawr)
573 return ppc_md.set_dawr(dawr, dawrx);
574 mtspr(SPRN_DAWR, dawr);
575 mtspr(SPRN_DAWRX, dawrx);
576 return 0;
577}
578
Paul Gortmaker21f58502014-04-29 15:25:17 -0400579void __set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000580{
Christoph Lameter69111ba2014-10-21 15:23:25 -0500581 memcpy(this_cpu_ptr(&current_brk), brk, sizeof(*brk));
Michael Neuling9422de32012-12-20 14:06:44 +0000582
Michael Neulingbf99de32012-12-20 14:06:45 +0000583 if (cpu_has_feature(CPU_FTR_DAWR))
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400584 set_dawr(brk);
585 else
586 set_dabr(brk);
Michael Neuling9422de32012-12-20 14:06:44 +0000587}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000588
Paul Gortmaker21f58502014-04-29 15:25:17 -0400589void set_breakpoint(struct arch_hw_breakpoint *brk)
590{
591 preempt_disable();
592 __set_breakpoint(brk);
593 preempt_enable();
594}
595
Paul Mackerras06d67d52005-10-10 22:29:05 +1000596#ifdef CONFIG_PPC64
597DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000598#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000599
Michael Neuling9422de32012-12-20 14:06:44 +0000600static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
601 struct arch_hw_breakpoint *b)
602{
603 if (a->address != b->address)
604 return false;
605 if (a->type != b->type)
606 return false;
607 if (a->len != b->len)
608 return false;
609 return true;
610}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100611
Michael Neulingfb096922013-02-13 16:21:37 +0000612#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100613static void tm_reclaim_thread(struct thread_struct *thr,
614 struct thread_info *ti, uint8_t cause)
615{
616 unsigned long msr_diff = 0;
617
618 /*
619 * If FP/VSX registers have been already saved to the
620 * thread_struct, move them to the transact_fp array.
621 * We clear the TIF_RESTORE_TM bit since after the reclaim
622 * the thread will no longer be transactional.
623 */
624 if (test_ti_thread_flag(ti, TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +0530625 msr_diff = thr->ckpt_regs.msr & ~thr->regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100626 if (msr_diff & MSR_FP)
627 memcpy(&thr->transact_fp, &thr->fp_state,
628 sizeof(struct thread_fp_state));
629 if (msr_diff & MSR_VEC)
630 memcpy(&thr->transact_vr, &thr->vr_state,
631 sizeof(struct thread_vr_state));
632 clear_ti_thread_flag(ti, TIF_RESTORE_TM);
633 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX | MSR_FE0 | MSR_FE1;
634 }
635
636 tm_reclaim(thr, thr->regs->msr, cause);
637
638 /* Having done the reclaim, we now have the checkpointed
639 * FP/VSX values in the registers. These might be valid
640 * even if we have previously called enable_kernel_fp() or
641 * flush_fp_to_thread(), so update thr->regs->msr to
642 * indicate their current validity.
643 */
644 thr->regs->msr |= msr_diff;
645}
646
647void tm_reclaim_current(uint8_t cause)
648{
649 tm_enable();
650 tm_reclaim_thread(&current->thread, current_thread_info(), cause);
651}
652
Michael Neulingfb096922013-02-13 16:21:37 +0000653static inline void tm_reclaim_task(struct task_struct *tsk)
654{
655 /* We have to work out if we're switching from/to a task that's in the
656 * middle of a transaction.
657 *
658 * In switching we need to maintain a 2nd register state as
659 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
660 * checkpointed (tbegin) state in ckpt_regs and saves the transactional
661 * (current) FPRs into oldtask->thread.transact_fpr[].
662 *
663 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
664 */
665 struct thread_struct *thr = &tsk->thread;
666
667 if (!thr->regs)
668 return;
669
670 if (!MSR_TM_ACTIVE(thr->regs->msr))
671 goto out_and_saveregs;
672
673 /* Stash the original thread MSR, as giveup_fpu et al will
674 * modify it. We hold onto it to see whether the task used
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100675 * FP & vector regs. If the TIF_RESTORE_TM flag is set,
Anshuman Khandual829023d2015-07-06 16:24:10 +0530676 * ckpt_regs.msr is already set.
Michael Neulingfb096922013-02-13 16:21:37 +0000677 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100678 if (!test_ti_thread_flag(task_thread_info(tsk), TIF_RESTORE_TM))
Anshuman Khandual829023d2015-07-06 16:24:10 +0530679 thr->ckpt_regs.msr = thr->regs->msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000680
681 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
682 "ccr=%lx, msr=%lx, trap=%lx)\n",
683 tsk->pid, thr->regs->nip,
684 thr->regs->ccr, thr->regs->msr,
685 thr->regs->trap);
686
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100687 tm_reclaim_thread(thr, task_thread_info(tsk), TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000688
689 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
690 tsk->pid);
691
692out_and_saveregs:
693 /* Always save the regs here, even if a transaction's not active.
694 * This context-switches a thread's TM info SPRs. We do it here to
695 * be consistent with the restore path (in recheckpoint) which
696 * cannot happen later in _switch().
697 */
698 tm_save_sprs(thr);
699}
700
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100701extern void __tm_recheckpoint(struct thread_struct *thread,
702 unsigned long orig_msr);
703
704void tm_recheckpoint(struct thread_struct *thread,
705 unsigned long orig_msr)
706{
707 unsigned long flags;
708
709 /* We really can't be interrupted here as the TEXASR registers can't
710 * change and later in the trecheckpoint code, we have a userspace R1.
711 * So let's hard disable over this region.
712 */
713 local_irq_save(flags);
714 hard_irq_disable();
715
716 /* The TM SPRs are restored here, so that TEXASR.FS can be set
717 * before the trecheckpoint and no explosion occurs.
718 */
719 tm_restore_sprs(thread);
720
721 __tm_recheckpoint(thread, orig_msr);
722
723 local_irq_restore(flags);
724}
725
Michael Neulingbc2a9402013-02-13 16:21:40 +0000726static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000727{
728 unsigned long msr;
729
730 if (!cpu_has_feature(CPU_FTR_TM))
731 return;
732
733 /* Recheckpoint the registers of the thread we're about to switch to.
734 *
735 * If the task was using FP, we non-lazily reload both the original and
736 * the speculative FP register states. This is because the kernel
737 * doesn't see if/when a TM rollback occurs, so if we take an FP
738 * unavoidable later, we are unable to determine which set of FP regs
739 * need to be restored.
740 */
741 if (!new->thread.regs)
742 return;
743
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100744 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
745 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000746 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100747 }
Anshuman Khandual829023d2015-07-06 16:24:10 +0530748 msr = new->thread.ckpt_regs.msr;
Michael Neulingfb096922013-02-13 16:21:37 +0000749 /* Recheckpoint to restore original checkpointed register state. */
750 TM_DEBUG("*** tm_recheckpoint of pid %d "
751 "(new->msr 0x%lx, new->origmsr 0x%lx)\n",
752 new->pid, new->thread.regs->msr, msr);
753
754 /* This loads the checkpointed FP/VEC state, if used */
755 tm_recheckpoint(&new->thread, msr);
756
757 /* This loads the speculative FP/VEC state, if used */
758 if (msr & MSR_FP) {
759 do_load_up_transact_fpu(&new->thread);
760 new->thread.regs->msr |=
761 (MSR_FP | new->thread.fpexc_mode);
762 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000763#ifdef CONFIG_ALTIVEC
Michael Neulingfb096922013-02-13 16:21:37 +0000764 if (msr & MSR_VEC) {
765 do_load_up_transact_altivec(&new->thread);
766 new->thread.regs->msr |= MSR_VEC;
767 }
Michael Neulingf110c0c2013-04-09 16:18:55 +1000768#endif
Michael Neulingfb096922013-02-13 16:21:37 +0000769 /* We may as well turn on VSX too since all the state is restored now */
770 if (msr & MSR_VSX)
771 new->thread.regs->msr |= MSR_VSX;
772
773 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
774 "(kernel msr 0x%lx)\n",
775 new->pid, mfmsr());
776}
777
778static inline void __switch_to_tm(struct task_struct *prev)
779{
780 if (cpu_has_feature(CPU_FTR_TM)) {
781 tm_enable();
782 tm_reclaim_task(prev);
783 }
784}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100785
786/*
787 * This is called if we are on the way out to userspace and the
788 * TIF_RESTORE_TM flag is set. It checks if we need to reload
789 * FP and/or vector state and does so if necessary.
790 * If userspace is inside a transaction (whether active or
791 * suspended) and FP/VMX/VSX instructions have ever been enabled
792 * inside that transaction, then we have to keep them enabled
793 * and keep the FP/VMX/VSX state loaded while ever the transaction
794 * continues. The reason is that if we didn't, and subsequently
795 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
796 * we don't know whether it's the same transaction, and thus we
797 * don't know which of the checkpointed state and the transactional
798 * state to use.
799 */
800void restore_tm_state(struct pt_regs *regs)
801{
802 unsigned long msr_diff;
803
804 clear_thread_flag(TIF_RESTORE_TM);
805 if (!MSR_TM_ACTIVE(regs->msr))
806 return;
807
Anshuman Khandual829023d2015-07-06 16:24:10 +0530808 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100809 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
810 if (msr_diff & MSR_FP) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100811 msr_check_and_set(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100812 load_fp_state(&current->thread.fp_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100813 msr_check_and_clear(MSR_FP);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100814 regs->msr |= current->thread.fpexc_mode;
815 }
816 if (msr_diff & MSR_VEC) {
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100817 msr_check_and_set(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100818 load_vr_state(&current->thread.vr_state);
Anton Blanchard1f2e25b2015-10-29 11:44:07 +1100819 msr_check_and_clear(MSR_VEC);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100820 }
821 regs->msr |= msr_diff;
822}
823
Michael Neulingfb096922013-02-13 16:21:37 +0000824#else
825#define tm_recheckpoint_new_task(new)
826#define __switch_to_tm(prev)
827#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +0000828
Anton Blanchard152d5232015-10-29 11:43:55 +1100829static inline void save_sprs(struct thread_struct *t)
830{
831#ifdef CONFIG_ALTIVEC
832 if (cpu_has_feature(cpu_has_feature(CPU_FTR_ALTIVEC)))
833 t->vrsave = mfspr(SPRN_VRSAVE);
834#endif
835#ifdef CONFIG_PPC_BOOK3S_64
836 if (cpu_has_feature(CPU_FTR_DSCR))
837 t->dscr = mfspr(SPRN_DSCR);
838
839 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
840 t->bescr = mfspr(SPRN_BESCR);
841 t->ebbhr = mfspr(SPRN_EBBHR);
842 t->ebbrr = mfspr(SPRN_EBBRR);
843
844 t->fscr = mfspr(SPRN_FSCR);
845
846 /*
847 * Note that the TAR is not available for use in the kernel.
848 * (To provide this, the TAR should be backed up/restored on
849 * exception entry/exit instead, and be in pt_regs. FIXME,
850 * this should be in pt_regs anyway (for debug).)
851 */
852 t->tar = mfspr(SPRN_TAR);
853 }
854#endif
855}
856
857static inline void restore_sprs(struct thread_struct *old_thread,
858 struct thread_struct *new_thread)
859{
860#ifdef CONFIG_ALTIVEC
861 if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
862 old_thread->vrsave != new_thread->vrsave)
863 mtspr(SPRN_VRSAVE, new_thread->vrsave);
864#endif
865#ifdef CONFIG_PPC_BOOK3S_64
866 if (cpu_has_feature(CPU_FTR_DSCR)) {
867 u64 dscr = get_paca()->dscr_default;
868 u64 fscr = old_thread->fscr & ~FSCR_DSCR;
869
870 if (new_thread->dscr_inherit) {
871 dscr = new_thread->dscr;
872 fscr |= FSCR_DSCR;
873 }
874
875 if (old_thread->dscr != dscr)
876 mtspr(SPRN_DSCR, dscr);
877
878 if (old_thread->fscr != fscr)
879 mtspr(SPRN_FSCR, fscr);
880 }
881
882 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
883 if (old_thread->bescr != new_thread->bescr)
884 mtspr(SPRN_BESCR, new_thread->bescr);
885 if (old_thread->ebbhr != new_thread->ebbhr)
886 mtspr(SPRN_EBBHR, new_thread->ebbhr);
887 if (old_thread->ebbrr != new_thread->ebbrr)
888 mtspr(SPRN_EBBRR, new_thread->ebbrr);
889
890 if (old_thread->tar != new_thread->tar)
891 mtspr(SPRN_TAR, new_thread->tar);
892 }
893#endif
894}
895
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000896struct task_struct *__switch_to(struct task_struct *prev,
897 struct task_struct *new)
898{
899 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000900 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700901#ifdef CONFIG_PPC_BOOK3S_64
902 struct ppc64_tlb_batch *batch;
903#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000904
Anton Blanchard152d5232015-10-29 11:43:55 +1100905 new_thread = &new->thread;
906 old_thread = &current->thread;
907
Michael Neuling7ba5fef2013-10-02 17:15:14 +1000908 WARN_ON(!irqs_disabled());
909
Anton Blanchard152d5232015-10-29 11:43:55 +1100910 /*
911 * We need to save SPRs before treclaim/trecheckpoint as these will
912 * change a number of them.
Michael Neulingc2d52642013-08-09 17:29:30 +1000913 */
Anton Blanchard152d5232015-10-29 11:43:55 +1100914 save_sprs(&prev->thread);
Michael Neulingc2d52642013-08-09 17:29:30 +1000915
Michael Neulingbc2a9402013-02-13 16:21:40 +0000916 __switch_to_tm(prev);
917
Anton Blanchardc2085052015-10-29 11:44:08 +1100918 /* Save FPU, Altivec, VSX and SPE state */
919 giveup_all(prev);
Paul Mackerrasc0c0d992005-10-01 13:49:08 +1000920
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000921#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Scott Woodf5f97212013-11-22 15:52:29 -0600922 switch_booke_debug_regs(&new->thread.debug);
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000923#else
K.Prasad5aae8a52010-06-15 11:35:19 +0530924/*
925 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
926 * schedule DABR
927 */
928#ifndef CONFIG_HAVE_HW_BREAKPOINT
Christoph Lameter69111ba2014-10-21 15:23:25 -0500929 if (unlikely(!hw_brk_match(this_cpu_ptr(&current_brk), &new->thread.hw_brk)))
Paul Gortmaker21f58502014-04-29 15:25:17 -0400930 __set_breakpoint(&new->thread.hw_brk);
K.Prasad5aae8a52010-06-15 11:35:19 +0530931#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000932#endif
933
Paul Mackerras06d67d52005-10-10 22:29:05 +1000934#ifdef CONFIG_PPC64
935 /*
936 * Collect processor utilization data per process
937 */
938 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Christoph Lameter69111ba2014-10-21 15:23:25 -0500939 struct cpu_usage *cu = this_cpu_ptr(&cpu_usage_array);
Paul Mackerras06d67d52005-10-10 22:29:05 +1000940 long unsigned start_tb, current_tb;
941 start_tb = old_thread->start_tb;
942 cu->current_tb = current_tb = mfspr(SPRN_PURR);
943 old_thread->accum_tb += (current_tb - start_tb);
944 new_thread->start_tb = current_tb;
945 }
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700946#endif /* CONFIG_PPC64 */
947
948#ifdef CONFIG_PPC_BOOK3S_64
Christoph Lameter69111ba2014-10-21 15:23:25 -0500949 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700950 if (batch->active) {
951 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
952 if (batch->index)
953 __flush_tlb_pending(batch);
954 batch->active = 0;
955 }
956#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +1000957
Anton Blanchard44387e92008-03-17 15:27:09 +1100958 /*
959 * We can't take a PMU exception inside _switch() since there is a
960 * window where the kernel stack SLB and the kernel stack are out
961 * of sync. Hard disable here.
962 */
963 hard_irq_disable();
Michael Neulingbc2a9402013-02-13 16:21:40 +0000964
965 tm_recheckpoint_new_task(new);
966
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000967 last = _switch(old_thread, new_thread);
968
Anton Blanchard152d5232015-10-29 11:43:55 +1100969 /* Need to recalculate these after calling _switch() */
970 old_thread = &last->thread;
971 new_thread = &current->thread;
972
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700973#ifdef CONFIG_PPC_BOOK3S_64
974 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
975 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
Christoph Lameter69111ba2014-10-21 15:23:25 -0500976 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -0700977 batch->active = 1;
978 }
979#endif /* CONFIG_PPC_BOOK3S_64 */
980
Anton Blanchard152d5232015-10-29 11:43:55 +1100981 restore_sprs(old_thread, new_thread);
982
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000983 return last;
984}
985
Paul Mackerras06d67d52005-10-10 22:29:05 +1000986static int instructions_to_print = 16;
987
Paul Mackerras06d67d52005-10-10 22:29:05 +1000988static void show_instructions(struct pt_regs *regs)
989{
990 int i;
991 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
992 sizeof(int));
993
994 printk("Instruction dump:");
995
996 for (i = 0; i < instructions_to_print; i++) {
997 int instr;
998
999 if (!(i % 8))
1000 printk("\n");
1001
Scott Wood0de2d822007-09-28 04:38:55 +10001002#if !defined(CONFIG_BOOKE)
1003 /* If executing with the IMMU off, adjust pc rather
1004 * than print XXXXXXXX.
1005 */
1006 if (!(regs->msr & MSR_IR))
1007 pc = (unsigned long)phys_to_virt(pc);
1008#endif
1009
Anton Blanchard00ae36d2006-10-13 12:17:16 +10001010 if (!__kernel_text_address(pc) ||
Anton Blanchard7b051f62014-10-13 20:27:15 +11001011 probe_kernel_address((unsigned int __user *)pc, instr)) {
Ira Snyder40c8cef2012-01-06 12:34:07 +00001012 printk(KERN_CONT "XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001013 } else {
1014 if (regs->nip == pc)
Ira Snyder40c8cef2012-01-06 12:34:07 +00001015 printk(KERN_CONT "<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001016 else
Ira Snyder40c8cef2012-01-06 12:34:07 +00001017 printk(KERN_CONT "%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001018 }
1019
1020 pc += sizeof(int);
1021 }
1022
1023 printk("\n");
1024}
1025
1026static struct regbit {
1027 unsigned long bit;
1028 const char *name;
1029} msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001030#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
1031 {MSR_SF, "SF"},
1032 {MSR_HV, "HV"},
1033#endif
1034 {MSR_VEC, "VEC"},
1035 {MSR_VSX, "VSX"},
1036#ifdef CONFIG_BOOKE
1037 {MSR_CE, "CE"},
1038#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001039 {MSR_EE, "EE"},
1040 {MSR_PR, "PR"},
1041 {MSR_FP, "FP"},
1042 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001043#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +00001044 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001045#else
1046 {MSR_SE, "SE"},
1047 {MSR_BE, "BE"},
1048#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001049 {MSR_IR, "IR"},
1050 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001051 {MSR_PMM, "PMM"},
1052#ifndef CONFIG_BOOKE
1053 {MSR_RI, "RI"},
1054 {MSR_LE, "LE"},
1055#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001056 {0, NULL}
1057};
1058
1059static void printbits(unsigned long val, struct regbit *bits)
1060{
1061 const char *sep = "";
1062
1063 printk("<");
1064 for (; bits->bit; ++bits)
1065 if (val & bits->bit) {
1066 printk("%s%s", sep, bits->name);
1067 sep = ",";
1068 }
1069 printk(">");
1070}
1071
1072#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001073#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001074#define REGS_PER_LINE 4
1075#define LAST_VOLATILE 13
1076#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001077#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001078#define REGS_PER_LINE 8
1079#define LAST_VOLATILE 12
1080#endif
1081
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001082void show_regs(struct pt_regs * regs)
1083{
1084 int i, trap;
1085
Tejun Heoa43cb952013-04-30 15:27:17 -07001086 show_regs_print_info(KERN_DEFAULT);
1087
Paul Mackerras06d67d52005-10-10 22:29:05 +10001088 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
1089 regs->nip, regs->link, regs->ctr);
1090 printk("REGS: %p TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001091 regs, regs->trap, print_tainted(), init_utsname()->release);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001092 printk("MSR: "REG" ", regs->msr);
1093 printbits(regs->msr, msr_bits);
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001094 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001095 trap = TRAP(regs);
Michael Neuling5115a022011-07-14 19:25:12 +00001096 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001097 printk("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001098 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001099#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001100 printk("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001101#else
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001102 printk("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
1103#endif
1104#ifdef CONFIG_PPC64
1105 printk("SOFTE: %ld ", regs->softe);
1106#endif
1107#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001108 if (MSR_TM_ACTIVE(regs->msr))
1109 printk("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001110#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001111
1112 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001113 if ((i % REGS_PER_LINE) == 0)
Kumar Galaa2367192009-06-18 22:29:55 +00001114 printk("\nGPR%02d: ", i);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001115 printk(REG " ", regs->gpr[i]);
1116 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001117 break;
1118 }
1119 printk("\n");
1120#ifdef CONFIG_KALLSYMS
1121 /*
1122 * Lookup NIP late so we have the best change of getting the
1123 * above info out without failing
1124 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001125 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1126 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001127#endif
1128 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001129 if (!user_mode(regs))
1130 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001131}
1132
1133void exit_thread(void)
1134{
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001135}
1136
1137void flush_thread(void)
1138{
K.Prasade0780b72011-02-10 04:44:35 +00001139#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301140 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001141#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001142 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001143#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001144}
1145
1146void
1147release_thread(struct task_struct *t)
1148{
1149}
1150
1151/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001152 * this gets called so that we can store coprocessor state into memory and
1153 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001154 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001155int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001156{
Anton Blanchard579e6332015-10-29 11:44:09 +11001157 flush_all_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001158 /*
1159 * Flush TM state out so we can copy it. __switch_to_tm() does this
1160 * flush but it removes the checkpointed state from the current CPU and
1161 * transitions the CPU out of TM mode. Hence we need to call
1162 * tm_recheckpoint_new_task() (on the same task) to restore the
1163 * checkpointed state back and the TM mode.
1164 */
1165 __switch_to_tm(src);
1166 tm_recheckpoint_new_task(src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001167
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001168 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001169
1170 clear_task_ebb(dst);
1171
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001172 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001173}
1174
Michael Ellermancec15482014-07-10 12:29:21 +10001175static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1176{
1177#ifdef CONFIG_PPC_STD_MMU_64
1178 unsigned long sp_vsid;
1179 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1180
1181 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1182 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1183 << SLB_VSID_SHIFT_1T;
1184 else
1185 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1186 << SLB_VSID_SHIFT;
1187 sp_vsid |= SLB_VSID_KERNEL | llp;
1188 p->thread.ksp_vsid = sp_vsid;
1189#endif
1190}
1191
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001192/*
1193 * Copy a thread..
1194 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001195
Alex Dowad6eca8932015-03-13 20:14:46 +02001196/*
1197 * Copy architecture-specific thread state
1198 */
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -07001199int copy_thread(unsigned long clone_flags, unsigned long usp,
Alex Dowad6eca8932015-03-13 20:14:46 +02001200 unsigned long kthread_arg, struct task_struct *p)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001201{
1202 struct pt_regs *childregs, *kregs;
1203 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001204 extern void ret_from_kernel_thread(void);
1205 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001206 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001207
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001208 /* Copy registers */
1209 sp -= sizeof(struct pt_regs);
1210 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001211 if (unlikely(p->flags & PF_KTHREAD)) {
Alex Dowad6eca8932015-03-13 20:14:46 +02001212 /* kernel thread */
Al Viro138d1ce2012-10-11 08:41:43 -04001213 struct thread_info *ti = (void *)task_stack_page(p);
Al Viro58254e12012-09-12 18:32:42 -04001214 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001215 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001216 /* function */
1217 if (usp)
1218 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001219#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001220 clear_tsk_thread_flag(p, TIF_32BIT);
Al Viro138d1ce2012-10-11 08:41:43 -04001221 childregs->softe = 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001222#endif
Alex Dowad6eca8932015-03-13 20:14:46 +02001223 childregs->gpr[15] = kthread_arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001224 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001225 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001226 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001227 } else {
Alex Dowad6eca8932015-03-13 20:14:46 +02001228 /* user thread */
Al Viroafa86fc2012-10-22 22:51:14 -04001229 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001230 CHECK_FULL_REGS(regs);
1231 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001232 if (usp)
1233 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001234 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001235 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001236 if (clone_flags & CLONE_SETTLS) {
1237#ifdef CONFIG_PPC64
Denis Kirjanov9904b002010-07-29 22:04:39 +00001238 if (!is_32bit_task())
Paul Mackerras06d67d52005-10-10 22:29:05 +10001239 childregs->gpr[13] = childregs->gpr[6];
1240 else
1241#endif
1242 childregs->gpr[2] = childregs->gpr[6];
1243 }
Al Viro58254e12012-09-12 18:32:42 -04001244
1245 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001246 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001247 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001248
1249 /*
1250 * The way this works is that at some point in the future
1251 * some task will call _switch to switch to the new task.
1252 * That will pop off the stack frame created below and start
1253 * the new task running at ret_from_fork. The new task will
1254 * do some house keeping and then return from the fork or clone
1255 * system call, using the stack frame created above.
1256 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001257 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001258 sp -= sizeof(struct pt_regs);
1259 kregs = (struct pt_regs *) sp;
1260 sp -= STACK_FRAME_OVERHEAD;
1261 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001262#ifdef CONFIG_PPC32
Kumar Gala85218822008-04-28 16:21:22 +10001263 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
1264 _ALIGN_UP(sizeof(struct thread_info), 16);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001265#endif
Oleg Nesterov28d170a2013-04-21 06:47:59 +00001266#ifdef CONFIG_HAVE_HW_BREAKPOINT
1267 p->thread.ptrace_bps[0] = NULL;
1268#endif
1269
Paul Mackerras18461962013-09-10 20:21:10 +10001270 p->thread.fp_save_area = NULL;
1271#ifdef CONFIG_ALTIVEC
1272 p->thread.vr_save_area = NULL;
1273#endif
1274
Michael Ellermancec15482014-07-10 12:29:21 +10001275 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001276
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001277#ifdef CONFIG_PPC64
1278 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001279 p->thread.dscr_inherit = current->thread.dscr_inherit;
1280 p->thread.dscr = current->thread.dscr;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001281 }
Haren Myneni92779242012-12-06 21:49:56 +00001282 if (cpu_has_feature(CPU_FTR_HAS_PPR))
1283 p->thread.ppr = INIT_PPR;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001284#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001285 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001286 return 0;
1287}
1288
1289/*
1290 * Set up a thread for executing a new program
1291 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001292void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001293{
Michael Ellerman90eac722005-10-21 16:01:33 +10001294#ifdef CONFIG_PPC64
1295 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
1296#endif
1297
Paul Mackerras06d67d52005-10-10 22:29:05 +10001298 /*
1299 * If we exec out of a kernel thread then thread.regs will not be
1300 * set. Do it now.
1301 */
1302 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001303 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1304 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001305 }
1306
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001307 memset(regs->gpr, 0, sizeof(regs->gpr));
1308 regs->ctr = 0;
1309 regs->link = 0;
1310 regs->xer = 0;
1311 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001312 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001313
Roland McGrath474f8192007-09-24 16:52:44 -07001314 /*
1315 * We have just cleared all the nonvolatile GPRs, so make
1316 * FULL_REGS(regs) return true. This is necessary to allow
1317 * ptrace to examine the thread immediately after exec.
1318 */
1319 regs->trap &= ~1UL;
1320
Paul Mackerras06d67d52005-10-10 22:29:05 +10001321#ifdef CONFIG_PPC32
1322 regs->mq = 0;
1323 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001324 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001325#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001326 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001327 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001328
Rusty Russell94af3ab2013-11-20 22:15:02 +11001329 if (is_elf2_task()) {
1330 /* Look ma, no function descriptors! */
1331 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001332
Rusty Russell94af3ab2013-11-20 22:15:02 +11001333 /*
1334 * Ulrich says:
1335 * The latest iteration of the ABI requires that when
1336 * calling a function (at its global entry point),
1337 * the caller must ensure r12 holds the entry point
1338 * address (so that the function can quickly
1339 * establish addressability).
1340 */
1341 regs->gpr[12] = start;
1342 /* Make sure that's restored on entry to userspace. */
1343 set_thread_flag(TIF_RESTOREALL);
1344 } else {
1345 unsigned long toc;
1346
1347 /* start is a relocated pointer to the function
1348 * descriptor for the elf _start routine. The first
1349 * entry in the function descriptor is the entry
1350 * address of _start and the second entry is the TOC
1351 * value we need to use.
1352 */
1353 __get_user(entry, (unsigned long __user *)start);
1354 __get_user(toc, (unsigned long __user *)start+1);
1355
1356 /* Check whether the e_entry function descriptor entries
1357 * need to be relocated before we can use them.
1358 */
1359 if (load_addr != 0) {
1360 entry += load_addr;
1361 toc += load_addr;
1362 }
1363 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001364 }
1365 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001366 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001367 } else {
1368 regs->nip = start;
1369 regs->gpr[2] = 0;
1370 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001371 }
1372#endif
Michael Neulingce48b212008-06-25 14:07:18 +10001373#ifdef CONFIG_VSX
1374 current->thread.used_vsr = 0;
1375#endif
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001376 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001377 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001378#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001379 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1380 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001381 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001382 current->thread.vrsave = 0;
1383 current->thread.used_vr = 0;
1384#endif /* CONFIG_ALTIVEC */
1385#ifdef CONFIG_SPE
1386 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1387 current->thread.acc = 0;
1388 current->thread.spefscr = 0;
1389 current->thread.used_spe = 0;
1390#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001391#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1392 if (cpu_has_feature(CPU_FTR_TM))
1393 regs->msr |= MSR_TM;
1394 current->thread.tm_tfhar = 0;
1395 current->thread.tm_texasr = 0;
1396 current->thread.tm_tfiar = 0;
1397#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001398}
Anton Blancharde1802b02014-08-20 08:00:02 +10001399EXPORT_SYMBOL(start_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001400
1401#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1402 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1403
1404int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1405{
1406 struct pt_regs *regs = tsk->thread.regs;
1407
1408 /* This is a bit hairy. If we are an SPE enabled processor
1409 * (have embedded fp) we store the IEEE exception enable flags in
1410 * fpexc_mode. fpexc_mode is also used for setting FP exception
1411 * mode (asyn, precise, disabled) for 'Classic' FP. */
1412 if (val & PR_FP_EXC_SW_ENABLE) {
1413#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001414 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001415 /*
1416 * When the sticky exception bits are set
1417 * directly by userspace, it must call prctl
1418 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1419 * in the existing prctl settings) or
1420 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1421 * the bits being set). <fenv.h> functions
1422 * saving and restoring the whole
1423 * floating-point environment need to do so
1424 * anyway to restore the prctl settings from
1425 * the saved environment.
1426 */
1427 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001428 tsk->thread.fpexc_mode = val &
1429 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1430 return 0;
1431 } else {
1432 return -EINVAL;
1433 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001434#else
1435 return -EINVAL;
1436#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001437 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001438
1439 /* on a CONFIG_SPE this does not hurt us. The bits that
1440 * __pack_fe01 use do not overlap with bits used for
1441 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1442 * on CONFIG_SPE implementations are reserved so writing to
1443 * them does not change anything */
1444 if (val > PR_FP_EXC_PRECISE)
1445 return -EINVAL;
1446 tsk->thread.fpexc_mode = __pack_fe01(val);
1447 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1448 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1449 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001450 return 0;
1451}
1452
1453int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1454{
1455 unsigned int val;
1456
1457 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1458#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001459 if (cpu_has_feature(CPU_FTR_SPE)) {
1460 /*
1461 * When the sticky exception bits are set
1462 * directly by userspace, it must call prctl
1463 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1464 * in the existing prctl settings) or
1465 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1466 * the bits being set). <fenv.h> functions
1467 * saving and restoring the whole
1468 * floating-point environment need to do so
1469 * anyway to restore the prctl settings from
1470 * the saved environment.
1471 */
1472 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001473 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001474 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001475 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001476#else
1477 return -EINVAL;
1478#endif
1479 else
1480 val = __unpack_fe01(tsk->thread.fpexc_mode);
1481 return put_user(val, (unsigned int __user *) adr);
1482}
1483
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001484int set_endian(struct task_struct *tsk, unsigned int val)
1485{
1486 struct pt_regs *regs = tsk->thread.regs;
1487
1488 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1489 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1490 return -EINVAL;
1491
1492 if (regs == NULL)
1493 return -EINVAL;
1494
1495 if (val == PR_ENDIAN_BIG)
1496 regs->msr &= ~MSR_LE;
1497 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1498 regs->msr |= MSR_LE;
1499 else
1500 return -EINVAL;
1501
1502 return 0;
1503}
1504
1505int get_endian(struct task_struct *tsk, unsigned long adr)
1506{
1507 struct pt_regs *regs = tsk->thread.regs;
1508 unsigned int val;
1509
1510 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1511 !cpu_has_feature(CPU_FTR_REAL_LE))
1512 return -EINVAL;
1513
1514 if (regs == NULL)
1515 return -EINVAL;
1516
1517 if (regs->msr & MSR_LE) {
1518 if (cpu_has_feature(CPU_FTR_REAL_LE))
1519 val = PR_ENDIAN_LITTLE;
1520 else
1521 val = PR_ENDIAN_PPC_LITTLE;
1522 } else
1523 val = PR_ENDIAN_BIG;
1524
1525 return put_user(val, (unsigned int __user *)adr);
1526}
1527
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001528int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1529{
1530 tsk->thread.align_ctl = val;
1531 return 0;
1532}
1533
1534int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1535{
1536 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1537}
1538
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001539static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1540 unsigned long nbytes)
1541{
1542 unsigned long stack_page;
1543 unsigned long cpu = task_cpu(p);
1544
1545 /*
1546 * Avoid crashing if the stack has overflowed and corrupted
1547 * task_cpu(p), which is in the thread_info struct.
1548 */
1549 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1550 stack_page = (unsigned long) hardirq_ctx[cpu];
1551 if (sp >= stack_page + sizeof(struct thread_struct)
1552 && sp <= stack_page + THREAD_SIZE - nbytes)
1553 return 1;
1554
1555 stack_page = (unsigned long) softirq_ctx[cpu];
1556 if (sp >= stack_page + sizeof(struct thread_struct)
1557 && sp <= stack_page + THREAD_SIZE - nbytes)
1558 return 1;
1559 }
1560 return 0;
1561}
1562
Anton Blanchard2f251942006-03-27 11:46:18 +11001563int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001564 unsigned long nbytes)
1565{
Al Viro0cec6fd2006-01-12 01:06:02 -08001566 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001567
1568 if (sp >= stack_page + sizeof(struct thread_struct)
1569 && sp <= stack_page + THREAD_SIZE - nbytes)
1570 return 1;
1571
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001572 return valid_irq_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001573}
1574
Anton Blanchard2f251942006-03-27 11:46:18 +11001575EXPORT_SYMBOL(validate_sp);
1576
Paul Mackerras06d67d52005-10-10 22:29:05 +10001577unsigned long get_wchan(struct task_struct *p)
1578{
1579 unsigned long ip, sp;
1580 int count = 0;
1581
1582 if (!p || p == current || p->state == TASK_RUNNING)
1583 return 0;
1584
1585 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001586 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001587 return 0;
1588
1589 do {
1590 sp = *(unsigned long *)sp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001591 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001592 return 0;
1593 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001594 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001595 if (!in_sched_functions(ip))
1596 return ip;
1597 }
1598 } while (count++ < 16);
1599 return 0;
1600}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001601
Johannes Bergc4d04be2008-11-20 03:24:07 +00001602static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001603
1604void show_stack(struct task_struct *tsk, unsigned long *stack)
1605{
Paul Mackerras06d67d52005-10-10 22:29:05 +10001606 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001607 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001608 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08001609#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1610 int curr_frame = current->curr_ret_stack;
1611 extern void return_to_handler(void);
Steven Rostedt9135c3c2009-09-15 08:20:15 -07001612 unsigned long rth = (unsigned long)return_to_handler;
Steven Rostedt6794c782009-02-09 21:10:27 -08001613#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001614
1615 sp = (unsigned long) stack;
1616 if (tsk == NULL)
1617 tsk = current;
1618 if (sp == 0) {
1619 if (tsk == current)
Anton Blanchardacf620e2014-10-13 19:41:39 +11001620 sp = current_stack_pointer();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001621 else
1622 sp = tsk->thread.ksp;
1623 }
1624
Paul Mackerras06d67d52005-10-10 22:29:05 +10001625 lr = 0;
1626 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001627 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001628 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10001629 return;
1630
1631 stack = (unsigned long *) sp;
1632 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001633 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10001634 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001635 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08001636#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Anton Blanchard7d56c652014-09-17 17:07:03 +10001637 if ((ip == rth) && curr_frame >= 0) {
Steven Rostedt6794c782009-02-09 21:10:27 -08001638 printk(" (%pS)",
1639 (void *)current->ret_stack[curr_frame].ret);
1640 curr_frame--;
1641 }
1642#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001643 if (firstframe)
1644 printk(" (unreliable)");
1645 printk("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001646 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001647 firstframe = 0;
1648
1649 /*
1650 * See if this is an exception frame.
1651 * We look for the "regshere" marker in the current frame.
1652 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10001653 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1654 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001655 struct pt_regs *regs = (struct pt_regs *)
1656 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001657 lr = regs->link;
Paul Mackerras9be9be22014-06-12 16:53:08 +10001658 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001659 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001660 firstframe = 1;
1661 }
1662
1663 sp = newsp;
1664 } while (count++ < kstack_depth_to_print);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001665}
Paul Mackerras06d67d52005-10-10 22:29:05 +10001666
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001667#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001668/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001669void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001670{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001671 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001672 unsigned long ctrl;
1673
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001674 ctrl = mfspr(SPRN_CTRLF);
1675 ctrl |= CTRL_RUNLATCH;
1676 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001677
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001678 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001679}
1680
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001681/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10001682void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001683{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001684 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001685 unsigned long ctrl;
1686
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10001687 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001688
Anton Blanchard4138d652010-08-06 03:28:19 +00001689 ctrl = mfspr(SPRN_CTRLF);
1690 ctrl &= ~CTRL_RUNLATCH;
1691 mtspr(SPRN_CTRLT, ctrl);
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11001692}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001693#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10001694
Anton Blanchardd8390882009-02-22 01:50:03 +00001695unsigned long arch_align_stack(unsigned long sp)
1696{
1697 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1698 sp -= get_random_int() & ~PAGE_MASK;
1699 return sp & ~0xf;
1700}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001701
1702static inline unsigned long brk_rnd(void)
1703{
1704 unsigned long rnd = 0;
1705
1706 /* 8MB for 32bit, 1GB for 64bit */
1707 if (is_32bit_task())
1708 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1709 else
1710 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1711
1712 return rnd << PAGE_SHIFT;
1713}
1714
1715unsigned long arch_randomize_brk(struct mm_struct *mm)
1716{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001717 unsigned long base = mm->brk;
1718 unsigned long ret;
1719
Kumar Galace7a35c2009-10-16 07:05:17 +00001720#ifdef CONFIG_PPC_STD_MMU_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00001721 /*
1722 * If we are using 1TB segments and we are allowed to randomise
1723 * the heap, we can put it above 1TB so it is backed by a 1TB
1724 * segment. Otherwise the heap will be in the bottom 1TB
1725 * which always uses 256MB segments and this may result in a
1726 * performance penalty.
1727 */
1728 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1729 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1730#endif
1731
1732 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00001733
1734 if (ret < mm->brk)
1735 return mm->brk;
1736
1737 return ret;
1738}
Anton Blanchard501cb162009-02-22 01:50:07 +00001739