powerpc: Register defines for various transactional memory registers
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / powerpc / kernel / process.c
CommitLineData
14cf11af 1/*
14cf11af
PM
2 * 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
14cf11af
PM
17#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/smp.h>
14cf11af
PM
22#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>
28#include <linux/init.h>
29#include <linux/prctl.h>
30#include <linux/init_task.h>
4b16f8e2 31#include <linux/export.h>
14cf11af
PM
32#include <linux/kallsyms.h>
33#include <linux/mqueue.h>
34#include <linux/hardirq.h>
06d67d54 35#include <linux/utsname.h>
6794c782 36#include <linux/ftrace.h>
79741dd3 37#include <linux/kernel_stat.h>
d839088c
AB
38#include <linux/personality.h>
39#include <linux/random.h>
5aae8a53 40#include <linux/hw_breakpoint.h>
14cf11af
PM
41
42#include <asm/pgtable.h>
43#include <asm/uaccess.h>
14cf11af
PM
44#include <asm/io.h>
45#include <asm/processor.h>
46#include <asm/mmu.h>
47#include <asm/prom.h>
76032de8 48#include <asm/machdep.h>
c6622f63 49#include <asm/time.h>
ae3a197e 50#include <asm/runlatch.h>
a7f31841 51#include <asm/syscalls.h>
ae3a197e
DH
52#include <asm/switch_to.h>
53#include <asm/debug.h>
06d67d54
PM
54#ifdef CONFIG_PPC64
55#include <asm/firmware.h>
06d67d54 56#endif
d6a61bfc
LM
57#include <linux/kprobes.h>
58#include <linux/kdebug.h>
14cf11af 59
8b3c34cf
MN
60/* Transactional Memory debug */
61#ifdef TM_DEBUG_SW
62#define TM_DEBUG(x...) printk(KERN_INFO x)
63#else
64#define TM_DEBUG(x...) do { } while(0)
65#endif
66
14cf11af
PM
67extern unsigned long _get_SP(void);
68
69#ifndef CONFIG_SMP
70struct task_struct *last_task_used_math = NULL;
71struct task_struct *last_task_used_altivec = NULL;
ce48b210 72struct task_struct *last_task_used_vsx = NULL;
14cf11af
PM
73struct task_struct *last_task_used_spe = NULL;
74#endif
75
14cf11af
PM
76/*
77 * Make sure the floating-point register state in the
78 * the thread_struct is up to date for task tsk.
79 */
80void flush_fp_to_thread(struct task_struct *tsk)
81{
82 if (tsk->thread.regs) {
83 /*
84 * We need to disable preemption here because if we didn't,
85 * another process could get scheduled after the regs->msr
86 * test but before we have finished saving the FP registers
87 * to the thread_struct. That process could take over the
88 * FPU, and then when we get scheduled again we would store
89 * bogus values for the remaining FP registers.
90 */
91 preempt_disable();
92 if (tsk->thread.regs->msr & MSR_FP) {
93#ifdef CONFIG_SMP
94 /*
95 * This should only ever be called for current or
96 * for a stopped child process. Since we save away
97 * the FP register state on context switch on SMP,
98 * there is something wrong if a stopped child appears
99 * to still have its FP state in the CPU registers.
100 */
101 BUG_ON(tsk != current);
102#endif
0ee6c15e 103 giveup_fpu(tsk);
14cf11af
PM
104 }
105 preempt_enable();
106 }
107}
de56a948 108EXPORT_SYMBOL_GPL(flush_fp_to_thread);
14cf11af
PM
109
110void enable_kernel_fp(void)
111{
112 WARN_ON(preemptible());
113
114#ifdef CONFIG_SMP
115 if (current->thread.regs && (current->thread.regs->msr & MSR_FP))
116 giveup_fpu(current);
117 else
118 giveup_fpu(NULL); /* just enables FP for kernel */
119#else
120 giveup_fpu(last_task_used_math);
121#endif /* CONFIG_SMP */
122}
123EXPORT_SYMBOL(enable_kernel_fp);
124
14cf11af
PM
125#ifdef CONFIG_ALTIVEC
126void enable_kernel_altivec(void)
127{
128 WARN_ON(preemptible());
129
130#ifdef CONFIG_SMP
131 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC))
132 giveup_altivec(current);
133 else
35000870 134 giveup_altivec_notask();
14cf11af
PM
135#else
136 giveup_altivec(last_task_used_altivec);
137#endif /* CONFIG_SMP */
138}
139EXPORT_SYMBOL(enable_kernel_altivec);
140
141/*
142 * Make sure the VMX/Altivec register state in the
143 * the thread_struct is up to date for task tsk.
144 */
145void flush_altivec_to_thread(struct task_struct *tsk)
146{
147 if (tsk->thread.regs) {
148 preempt_disable();
149 if (tsk->thread.regs->msr & MSR_VEC) {
150#ifdef CONFIG_SMP
151 BUG_ON(tsk != current);
152#endif
0ee6c15e 153 giveup_altivec(tsk);
14cf11af
PM
154 }
155 preempt_enable();
156 }
157}
de56a948 158EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
14cf11af
PM
159#endif /* CONFIG_ALTIVEC */
160
ce48b210
MN
161#ifdef CONFIG_VSX
162#if 0
163/* not currently used, but some crazy RAID module might want to later */
164void enable_kernel_vsx(void)
165{
166 WARN_ON(preemptible());
167
168#ifdef CONFIG_SMP
169 if (current->thread.regs && (current->thread.regs->msr & MSR_VSX))
170 giveup_vsx(current);
171 else
172 giveup_vsx(NULL); /* just enable vsx for kernel - force */
173#else
174 giveup_vsx(last_task_used_vsx);
175#endif /* CONFIG_SMP */
176}
177EXPORT_SYMBOL(enable_kernel_vsx);
178#endif
179
7c292170
MN
180void giveup_vsx(struct task_struct *tsk)
181{
182 giveup_fpu(tsk);
183 giveup_altivec(tsk);
184 __giveup_vsx(tsk);
185}
186
ce48b210
MN
187void flush_vsx_to_thread(struct task_struct *tsk)
188{
189 if (tsk->thread.regs) {
190 preempt_disable();
191 if (tsk->thread.regs->msr & MSR_VSX) {
192#ifdef CONFIG_SMP
193 BUG_ON(tsk != current);
194#endif
195 giveup_vsx(tsk);
196 }
197 preempt_enable();
198 }
199}
de56a948 200EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
ce48b210
MN
201#endif /* CONFIG_VSX */
202
14cf11af
PM
203#ifdef CONFIG_SPE
204
205void enable_kernel_spe(void)
206{
207 WARN_ON(preemptible());
208
209#ifdef CONFIG_SMP
210 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE))
211 giveup_spe(current);
212 else
213 giveup_spe(NULL); /* just enable SPE for kernel - force */
214#else
215 giveup_spe(last_task_used_spe);
216#endif /* __SMP __ */
217}
218EXPORT_SYMBOL(enable_kernel_spe);
219
220void flush_spe_to_thread(struct task_struct *tsk)
221{
222 if (tsk->thread.regs) {
223 preempt_disable();
224 if (tsk->thread.regs->msr & MSR_SPE) {
225#ifdef CONFIG_SMP
226 BUG_ON(tsk != current);
227#endif
685659ee 228 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
0ee6c15e 229 giveup_spe(tsk);
14cf11af
PM
230 }
231 preempt_enable();
232 }
233}
14cf11af
PM
234#endif /* CONFIG_SPE */
235
5388fb10 236#ifndef CONFIG_SMP
48abec07
PM
237/*
238 * If we are doing lazy switching of CPU state (FP, altivec or SPE),
239 * and the current task has some state, discard it.
240 */
5388fb10 241void discard_lazy_cpu_state(void)
48abec07 242{
48abec07
PM
243 preempt_disable();
244 if (last_task_used_math == current)
245 last_task_used_math = NULL;
246#ifdef CONFIG_ALTIVEC
247 if (last_task_used_altivec == current)
248 last_task_used_altivec = NULL;
249#endif /* CONFIG_ALTIVEC */
ce48b210
MN
250#ifdef CONFIG_VSX
251 if (last_task_used_vsx == current)
252 last_task_used_vsx = NULL;
253#endif /* CONFIG_VSX */
48abec07
PM
254#ifdef CONFIG_SPE
255 if (last_task_used_spe == current)
256 last_task_used_spe = NULL;
257#endif
258 preempt_enable();
48abec07 259}
5388fb10 260#endif /* CONFIG_SMP */
48abec07 261
3bffb652
DK
262#ifdef CONFIG_PPC_ADV_DEBUG_REGS
263void do_send_trap(struct pt_regs *regs, unsigned long address,
264 unsigned long error_code, int signal_code, int breakpt)
265{
266 siginfo_t info;
267
41ab5266 268 current->thread.trap_nr = signal_code;
3bffb652
DK
269 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
270 11, SIGSEGV) == NOTIFY_STOP)
271 return;
272
273 /* Deliver the signal to userspace */
274 info.si_signo = SIGTRAP;
275 info.si_errno = breakpt; /* breakpoint or watchpoint id */
276 info.si_code = signal_code;
277 info.si_addr = (void __user *)address;
278 force_sig_info(SIGTRAP, &info, current);
279}
280#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
9422de3e 281void do_break (struct pt_regs *regs, unsigned long address,
d6a61bfc
LM
282 unsigned long error_code)
283{
284 siginfo_t info;
285
41ab5266 286 current->thread.trap_nr = TRAP_HWBKPT;
d6a61bfc
LM
287 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
288 11, SIGSEGV) == NOTIFY_STOP)
289 return;
290
9422de3e 291 if (debugger_break_match(regs))
d6a61bfc
LM
292 return;
293
9422de3e
MN
294 /* Clear the breakpoint */
295 hw_breakpoint_disable();
d6a61bfc
LM
296
297 /* Deliver the signal to userspace */
298 info.si_signo = SIGTRAP;
299 info.si_errno = 0;
300 info.si_code = TRAP_HWBKPT;
301 info.si_addr = (void __user *)address;
302 force_sig_info(SIGTRAP, &info, current);
303}
3bffb652 304#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
d6a61bfc 305
9422de3e 306static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
a2ceff5e 307
3bffb652
DK
308#ifdef CONFIG_PPC_ADV_DEBUG_REGS
309/*
310 * Set the debug registers back to their default "safe" values.
311 */
312static void set_debug_reg_defaults(struct thread_struct *thread)
313{
314 thread->iac1 = thread->iac2 = 0;
315#if CONFIG_PPC_ADV_DEBUG_IACS > 2
316 thread->iac3 = thread->iac4 = 0;
317#endif
318 thread->dac1 = thread->dac2 = 0;
319#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
320 thread->dvc1 = thread->dvc2 = 0;
321#endif
322 thread->dbcr0 = 0;
323#ifdef CONFIG_BOOKE
324 /*
325 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
326 */
327 thread->dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US | \
328 DBCR1_IAC3US | DBCR1_IAC4US;
329 /*
330 * Force Data Address Compare User/Supervisor bits to be User-only
331 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
332 */
333 thread->dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
334#else
335 thread->dbcr1 = 0;
336#endif
337}
338
339static void prime_debug_regs(struct thread_struct *thread)
340{
341 mtspr(SPRN_IAC1, thread->iac1);
342 mtspr(SPRN_IAC2, thread->iac2);
343#if CONFIG_PPC_ADV_DEBUG_IACS > 2
344 mtspr(SPRN_IAC3, thread->iac3);
345 mtspr(SPRN_IAC4, thread->iac4);
346#endif
347 mtspr(SPRN_DAC1, thread->dac1);
348 mtspr(SPRN_DAC2, thread->dac2);
349#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
350 mtspr(SPRN_DVC1, thread->dvc1);
351 mtspr(SPRN_DVC2, thread->dvc2);
352#endif
353 mtspr(SPRN_DBCR0, thread->dbcr0);
354 mtspr(SPRN_DBCR1, thread->dbcr1);
355#ifdef CONFIG_BOOKE
356 mtspr(SPRN_DBCR2, thread->dbcr2);
357#endif
358}
359/*
360 * Unless neither the old or new thread are making use of the
361 * debug registers, set the debug registers from the values
362 * stored in the new thread.
363 */
364static void switch_booke_debug_regs(struct thread_struct *new_thread)
365{
366 if ((current->thread.dbcr0 & DBCR0_IDM)
367 || (new_thread->dbcr0 & DBCR0_IDM))
368 prime_debug_regs(new_thread);
369}
370#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
e0780b72 371#ifndef CONFIG_HAVE_HW_BREAKPOINT
3bffb652
DK
372static void set_debug_reg_defaults(struct thread_struct *thread)
373{
9422de3e
MN
374 thread->hw_brk.address = 0;
375 thread->hw_brk.type = 0;
b9818c33 376 set_breakpoint(&thread->hw_brk);
3bffb652 377}
e0780b72 378#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
3bffb652
DK
379#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
380
172ae2e7 381#ifdef CONFIG_PPC_ADV_DEBUG_REGS
9422de3e
MN
382static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
383{
d6a61bfc 384 mtspr(SPRN_DAC1, dabr);
221c185d
DK
385#ifdef CONFIG_PPC_47x
386 isync();
387#endif
9422de3e
MN
388 return 0;
389}
c6c9eace 390#elif defined(CONFIG_PPC_BOOK3S)
9422de3e
MN
391static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
392{
c6c9eace 393 mtspr(SPRN_DABR, dabr);
4474ef05 394 mtspr(SPRN_DABRX, dabrx);
cab0af98 395 return 0;
14cf11af 396}
9422de3e
MN
397#else
398static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
399{
400 return -EINVAL;
401}
402#endif
403
404static inline int set_dabr(struct arch_hw_breakpoint *brk)
405{
406 unsigned long dabr, dabrx;
407
408 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
409 dabrx = ((brk->type >> 3) & 0x7);
410
411 if (ppc_md.set_dabr)
412 return ppc_md.set_dabr(dabr, dabrx);
413
414 return __set_dabr(dabr, dabrx);
415}
416
bf99de36
MN
417static inline int set_dawr(struct arch_hw_breakpoint *brk)
418{
05d694ea 419 unsigned long dawr, dawrx, mrd;
bf99de36
MN
420
421 dawr = brk->address;
422
423 dawrx = (brk->type & (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)) \
424 << (63 - 58); //* read/write bits */
425 dawrx |= ((brk->type & (HW_BRK_TYPE_TRANSLATE)) >> 2) \
426 << (63 - 59); //* translate */
427 dawrx |= (brk->type & (HW_BRK_TYPE_PRIV_ALL)) \
428 >> 3; //* PRIM bits */
05d694ea
MN
429 /* dawr length is stored in field MDR bits 48:53. Matches range in
430 doublewords (64 bits) baised by -1 eg. 0b000000=1DW and
431 0b111111=64DW.
432 brk->len is in bytes.
433 This aligns up to double word size, shifts and does the bias.
434 */
435 mrd = ((brk->len + 7) >> 3) - 1;
436 dawrx |= (mrd & 0x3f) << (63 - 53);
bf99de36
MN
437
438 if (ppc_md.set_dawr)
439 return ppc_md.set_dawr(dawr, dawrx);
440 mtspr(SPRN_DAWR, dawr);
441 mtspr(SPRN_DAWRX, dawrx);
442 return 0;
443}
444
b9818c33 445int set_breakpoint(struct arch_hw_breakpoint *brk)
9422de3e
MN
446{
447 __get_cpu_var(current_brk) = *brk;
448
bf99de36
MN
449 if (cpu_has_feature(CPU_FTR_DAWR))
450 return set_dawr(brk);
451
9422de3e
MN
452 return set_dabr(brk);
453}
14cf11af 454
06d67d54
PM
455#ifdef CONFIG_PPC64
456DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
06d67d54 457#endif
14cf11af 458
9422de3e
MN
459static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
460 struct arch_hw_breakpoint *b)
461{
462 if (a->address != b->address)
463 return false;
464 if (a->type != b->type)
465 return false;
466 if (a->len != b->len)
467 return false;
468 return true;
469}
470
14cf11af
PM
471struct task_struct *__switch_to(struct task_struct *prev,
472 struct task_struct *new)
473{
474 struct thread_struct *new_thread, *old_thread;
475 unsigned long flags;
476 struct task_struct *last;
d6bf29b4
PZ
477#ifdef CONFIG_PPC_BOOK3S_64
478 struct ppc64_tlb_batch *batch;
479#endif
14cf11af
PM
480
481#ifdef CONFIG_SMP
482 /* avoid complexity of lazy save/restore of fpu
483 * by just saving it every time we switch out if
484 * this task used the fpu during the last quantum.
485 *
486 * If it tries to use the fpu again, it'll trap and
487 * reload its fp regs. So we don't have to do a restore
488 * every switch, just a save.
489 * -- Cort
490 */
491 if (prev->thread.regs && (prev->thread.regs->msr & MSR_FP))
492 giveup_fpu(prev);
493#ifdef CONFIG_ALTIVEC
494 /*
495 * If the previous thread used altivec in the last quantum
496 * (thus changing altivec regs) then save them.
497 * We used to check the VRSAVE register but not all apps
498 * set it, so we don't rely on it now (and in fact we need
499 * to save & restore VSCR even if VRSAVE == 0). -- paulus
500 *
501 * On SMP we always save/restore altivec regs just to avoid the
502 * complexity of changing processors.
503 * -- Cort
504 */
505 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VEC))
506 giveup_altivec(prev);
14cf11af 507#endif /* CONFIG_ALTIVEC */
ce48b210
MN
508#ifdef CONFIG_VSX
509 if (prev->thread.regs && (prev->thread.regs->msr & MSR_VSX))
7c292170
MN
510 /* VMX and FPU registers are already save here */
511 __giveup_vsx(prev);
ce48b210 512#endif /* CONFIG_VSX */
14cf11af
PM
513#ifdef CONFIG_SPE
514 /*
515 * If the previous thread used spe in the last quantum
516 * (thus changing spe regs) then save them.
517 *
518 * On SMP we always save/restore spe regs just to avoid the
519 * complexity of changing processors.
520 */
521 if ((prev->thread.regs && (prev->thread.regs->msr & MSR_SPE)))
522 giveup_spe(prev);
c0c0d996
PM
523#endif /* CONFIG_SPE */
524
525#else /* CONFIG_SMP */
526#ifdef CONFIG_ALTIVEC
527 /* Avoid the trap. On smp this this never happens since
528 * we don't set last_task_used_altivec -- Cort
529 */
530 if (new->thread.regs && last_task_used_altivec == new)
531 new->thread.regs->msr |= MSR_VEC;
532#endif /* CONFIG_ALTIVEC */
ce48b210
MN
533#ifdef CONFIG_VSX
534 if (new->thread.regs && last_task_used_vsx == new)
535 new->thread.regs->msr |= MSR_VSX;
536#endif /* CONFIG_VSX */
c0c0d996 537#ifdef CONFIG_SPE
14cf11af
PM
538 /* Avoid the trap. On smp this this never happens since
539 * we don't set last_task_used_spe
540 */
541 if (new->thread.regs && last_task_used_spe == new)
542 new->thread.regs->msr |= MSR_SPE;
543#endif /* CONFIG_SPE */
c0c0d996 544
14cf11af
PM
545#endif /* CONFIG_SMP */
546
172ae2e7 547#ifdef CONFIG_PPC_ADV_DEBUG_REGS
3bffb652 548 switch_booke_debug_regs(&new->thread);
c6c9eace 549#else
5aae8a53
P
550/*
551 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
552 * schedule DABR
553 */
554#ifndef CONFIG_HAVE_HW_BREAKPOINT
9422de3e 555 if (unlikely(hw_brk_match(&__get_cpu_var(current_brk), &new->thread.hw_brk)))
b9818c33 556 set_breakpoint(&new->thread.hw_brk);
5aae8a53 557#endif /* CONFIG_HAVE_HW_BREAKPOINT */
d6a61bfc
LM
558#endif
559
c6c9eace 560
14cf11af
PM
561 new_thread = &new->thread;
562 old_thread = &current->thread;
06d67d54
PM
563
564#ifdef CONFIG_PPC64
565 /*
566 * Collect processor utilization data per process
567 */
568 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
569 struct cpu_usage *cu = &__get_cpu_var(cpu_usage_array);
570 long unsigned start_tb, current_tb;
571 start_tb = old_thread->start_tb;
572 cu->current_tb = current_tb = mfspr(SPRN_PURR);
573 old_thread->accum_tb += (current_tb - start_tb);
574 new_thread->start_tb = current_tb;
575 }
d6bf29b4
PZ
576#endif /* CONFIG_PPC64 */
577
578#ifdef CONFIG_PPC_BOOK3S_64
579 batch = &__get_cpu_var(ppc64_tlb_batch);
580 if (batch->active) {
581 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
582 if (batch->index)
583 __flush_tlb_pending(batch);
584 batch->active = 0;
585 }
586#endif /* CONFIG_PPC_BOOK3S_64 */
06d67d54 587
14cf11af 588 local_irq_save(flags);
c6622f63 589
44387e9f
AB
590 /*
591 * We can't take a PMU exception inside _switch() since there is a
592 * window where the kernel stack SLB and the kernel stack are out
593 * of sync. Hard disable here.
594 */
595 hard_irq_disable();
14cf11af
PM
596 last = _switch(old_thread, new_thread);
597
d6bf29b4
PZ
598#ifdef CONFIG_PPC_BOOK3S_64
599 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
600 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
601 batch = &__get_cpu_var(ppc64_tlb_batch);
602 batch->active = 1;
603 }
604#endif /* CONFIG_PPC_BOOK3S_64 */
605
14cf11af
PM
606 local_irq_restore(flags);
607
608 return last;
609}
610
06d67d54
PM
611static int instructions_to_print = 16;
612
06d67d54
PM
613static void show_instructions(struct pt_regs *regs)
614{
615 int i;
616 unsigned long pc = regs->nip - (instructions_to_print * 3 / 4 *
617 sizeof(int));
618
619 printk("Instruction dump:");
620
621 for (i = 0; i < instructions_to_print; i++) {
622 int instr;
623
624 if (!(i % 8))
625 printk("\n");
626
0de2d820
SW
627#if !defined(CONFIG_BOOKE)
628 /* If executing with the IMMU off, adjust pc rather
629 * than print XXXXXXXX.
630 */
631 if (!(regs->msr & MSR_IR))
632 pc = (unsigned long)phys_to_virt(pc);
633#endif
634
af308377
SR
635 /* We use __get_user here *only* to avoid an OOPS on a
636 * bad address because the pc *should* only be a
637 * kernel address.
638 */
00ae36de
AB
639 if (!__kernel_text_address(pc) ||
640 __get_user(instr, (unsigned int __user *)pc)) {
40c8cefa 641 printk(KERN_CONT "XXXXXXXX ");
06d67d54
PM
642 } else {
643 if (regs->nip == pc)
40c8cefa 644 printk(KERN_CONT "<%08x> ", instr);
06d67d54 645 else
40c8cefa 646 printk(KERN_CONT "%08x ", instr);
06d67d54
PM
647 }
648
649 pc += sizeof(int);
650 }
651
652 printk("\n");
653}
654
655static struct regbit {
656 unsigned long bit;
657 const char *name;
658} msr_bits[] = {
3bfd0c9c
AB
659#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
660 {MSR_SF, "SF"},
661 {MSR_HV, "HV"},
662#endif
663 {MSR_VEC, "VEC"},
664 {MSR_VSX, "VSX"},
665#ifdef CONFIG_BOOKE
666 {MSR_CE, "CE"},
667#endif
06d67d54
PM
668 {MSR_EE, "EE"},
669 {MSR_PR, "PR"},
670 {MSR_FP, "FP"},
671 {MSR_ME, "ME"},
3bfd0c9c 672#ifdef CONFIG_BOOKE
1b98326b 673 {MSR_DE, "DE"},
3bfd0c9c
AB
674#else
675 {MSR_SE, "SE"},
676 {MSR_BE, "BE"},
677#endif
06d67d54
PM
678 {MSR_IR, "IR"},
679 {MSR_DR, "DR"},
3bfd0c9c
AB
680 {MSR_PMM, "PMM"},
681#ifndef CONFIG_BOOKE
682 {MSR_RI, "RI"},
683 {MSR_LE, "LE"},
684#endif
06d67d54
PM
685 {0, NULL}
686};
687
688static void printbits(unsigned long val, struct regbit *bits)
689{
690 const char *sep = "";
691
692 printk("<");
693 for (; bits->bit; ++bits)
694 if (val & bits->bit) {
695 printk("%s%s", sep, bits->name);
696 sep = ",";
697 }
698 printk(">");
699}
700
701#ifdef CONFIG_PPC64
f6f7dde3 702#define REG "%016lx"
06d67d54
PM
703#define REGS_PER_LINE 4
704#define LAST_VOLATILE 13
705#else
f6f7dde3 706#define REG "%08lx"
06d67d54
PM
707#define REGS_PER_LINE 8
708#define LAST_VOLATILE 12
709#endif
710
14cf11af
PM
711void show_regs(struct pt_regs * regs)
712{
713 int i, trap;
714
06d67d54
PM
715 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
716 regs->nip, regs->link, regs->ctr);
717 printk("REGS: %p TRAP: %04lx %s (%s)\n",
96b644bd 718 regs, regs->trap, print_tainted(), init_utsname()->release);
06d67d54
PM
719 printk("MSR: "REG" ", regs->msr);
720 printbits(regs->msr, msr_bits);
f6f7dde3 721 printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
7230c564
BH
722#ifdef CONFIG_PPC64
723 printk("SOFTE: %ld\n", regs->softe);
724#endif
14cf11af 725 trap = TRAP(regs);
5115a026
MN
726 if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
727 printk("CFAR: "REG"\n", regs->orig_gpr3);
14cf11af 728 if (trap == 0x300 || trap == 0x600)
ba28c9aa 729#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
14170789
KG
730 printk("DEAR: "REG", ESR: "REG"\n", regs->dar, regs->dsisr);
731#else
7071854b 732 printk("DAR: "REG", DSISR: %08lx\n", regs->dar, regs->dsisr);
14170789 733#endif
06d67d54 734 printk("TASK = %p[%d] '%s' THREAD: %p",
19c5870c 735 current, task_pid_nr(current), current->comm, task_thread_info(current));
14cf11af
PM
736
737#ifdef CONFIG_SMP
79ccd1be 738 printk(" CPU: %d", raw_smp_processor_id());
14cf11af
PM
739#endif /* CONFIG_SMP */
740
741 for (i = 0; i < 32; i++) {
06d67d54 742 if ((i % REGS_PER_LINE) == 0)
a2367194 743 printk("\nGPR%02d: ", i);
06d67d54
PM
744 printk(REG " ", regs->gpr[i]);
745 if (i == LAST_VOLATILE && !FULL_REGS(regs))
14cf11af
PM
746 break;
747 }
748 printk("\n");
749#ifdef CONFIG_KALLSYMS
750 /*
751 * Lookup NIP late so we have the best change of getting the
752 * above info out without failing
753 */
058c78f4
BH
754 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
755 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
14cf11af
PM
756#endif
757 show_stack(current, (unsigned long *) regs->gpr[1]);
06d67d54
PM
758 if (!user_mode(regs))
759 show_instructions(regs);
14cf11af
PM
760}
761
762void exit_thread(void)
763{
48abec07 764 discard_lazy_cpu_state();
14cf11af
PM
765}
766
767void flush_thread(void)
768{
48abec07 769 discard_lazy_cpu_state();
14cf11af 770
e0780b72 771#ifdef CONFIG_HAVE_HW_BREAKPOINT
5aae8a53 772 flush_ptrace_hw_breakpoint(current);
e0780b72 773#else /* CONFIG_HAVE_HW_BREAKPOINT */
3bffb652 774 set_debug_reg_defaults(&current->thread);
e0780b72 775#endif /* CONFIG_HAVE_HW_BREAKPOINT */
14cf11af
PM
776}
777
778void
779release_thread(struct task_struct *t)
780{
781}
782
783/*
55ccf3fe
SS
784 * this gets called so that we can store coprocessor state into memory and
785 * copy the current task into the new thread.
14cf11af 786 */
55ccf3fe 787int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
14cf11af 788{
55ccf3fe
SS
789 flush_fp_to_thread(src);
790 flush_altivec_to_thread(src);
791 flush_vsx_to_thread(src);
792 flush_spe_to_thread(src);
5aae8a53 793#ifdef CONFIG_HAVE_HW_BREAKPOINT
55ccf3fe 794 flush_ptrace_hw_breakpoint(src);
5aae8a53 795#endif /* CONFIG_HAVE_HW_BREAKPOINT */
55ccf3fe
SS
796
797 *dst = *src;
798 return 0;
14cf11af
PM
799}
800
801/*
802 * Copy a thread..
803 */
efcac658
AK
804extern unsigned long dscr_default; /* defined in arch/powerpc/kernel/sysfs.c */
805
6f2c55b8 806int copy_thread(unsigned long clone_flags, unsigned long usp,
afa86fc4 807 unsigned long arg, struct task_struct *p)
14cf11af
PM
808{
809 struct pt_regs *childregs, *kregs;
810 extern void ret_from_fork(void);
58254e10
AV
811 extern void ret_from_kernel_thread(void);
812 void (*f)(void);
0cec6fd1 813 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
14cf11af 814
14cf11af
PM
815 /* Copy registers */
816 sp -= sizeof(struct pt_regs);
817 childregs = (struct pt_regs *) sp;
ab75819d 818 if (unlikely(p->flags & PF_KTHREAD)) {
138d1ce8 819 struct thread_info *ti = (void *)task_stack_page(p);
58254e10 820 memset(childregs, 0, sizeof(struct pt_regs));
14cf11af 821 childregs->gpr[1] = sp + sizeof(struct pt_regs);
53b50f94 822 childregs->gpr[14] = usp; /* function */
58254e10 823#ifdef CONFIG_PPC64
b5e2fc1c 824 clear_tsk_thread_flag(p, TIF_32BIT);
138d1ce8 825 childregs->softe = 1;
06d67d54 826#endif
58254e10 827 childregs->gpr[15] = arg;
14cf11af 828 p->thread.regs = NULL; /* no user register state */
138d1ce8 829 ti->flags |= _TIF_RESTOREALL;
58254e10 830 f = ret_from_kernel_thread;
14cf11af 831 } else {
afa86fc4 832 struct pt_regs *regs = current_pt_regs();
58254e10
AV
833 CHECK_FULL_REGS(regs);
834 *childregs = *regs;
ea516b11
AV
835 if (usp)
836 childregs->gpr[1] = usp;
14cf11af 837 p->thread.regs = childregs;
58254e10 838 childregs->gpr[3] = 0; /* Result from fork() */
06d67d54
PM
839 if (clone_flags & CLONE_SETTLS) {
840#ifdef CONFIG_PPC64
9904b005 841 if (!is_32bit_task())
06d67d54
PM
842 childregs->gpr[13] = childregs->gpr[6];
843 else
844#endif
845 childregs->gpr[2] = childregs->gpr[6];
846 }
58254e10
AV
847
848 f = ret_from_fork;
14cf11af 849 }
14cf11af 850 sp -= STACK_FRAME_OVERHEAD;
14cf11af
PM
851
852 /*
853 * The way this works is that at some point in the future
854 * some task will call _switch to switch to the new task.
855 * That will pop off the stack frame created below and start
856 * the new task running at ret_from_fork. The new task will
857 * do some house keeping and then return from the fork or clone
858 * system call, using the stack frame created above.
859 */
860 sp -= sizeof(struct pt_regs);
861 kregs = (struct pt_regs *) sp;
862 sp -= STACK_FRAME_OVERHEAD;
863 p->thread.ksp = sp;
85218827
KG
864 p->thread.ksp_limit = (unsigned long)task_stack_page(p) +
865 _ALIGN_UP(sizeof(struct thread_info), 16);
14cf11af 866
94491685 867#ifdef CONFIG_PPC_STD_MMU_64
44ae3ab3 868 if (mmu_has_feature(MMU_FTR_SLB)) {
1189be65 869 unsigned long sp_vsid;
3c726f8d 870 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
06d67d54 871
44ae3ab3 872 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1189be65
PM
873 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
874 << SLB_VSID_SHIFT_1T;
875 else
876 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
877 << SLB_VSID_SHIFT;
3c726f8d 878 sp_vsid |= SLB_VSID_KERNEL | llp;
06d67d54
PM
879 p->thread.ksp_vsid = sp_vsid;
880 }
747bea91 881#endif /* CONFIG_PPC_STD_MMU_64 */
efcac658
AK
882#ifdef CONFIG_PPC64
883 if (cpu_has_feature(CPU_FTR_DSCR)) {
1021cb26
AB
884 p->thread.dscr_inherit = current->thread.dscr_inherit;
885 p->thread.dscr = current->thread.dscr;
efcac658 886 }
92779245
HM
887 if (cpu_has_feature(CPU_FTR_HAS_PPR))
888 p->thread.ppr = INIT_PPR;
efcac658 889#endif
06d67d54
PM
890 /*
891 * The PPC64 ABI makes use of a TOC to contain function
892 * pointers. The function (ret_from_except) is actually a pointer
893 * to the TOC entry. The first entry is a pointer to the actual
894 * function.
58254e10 895 */
747bea91 896#ifdef CONFIG_PPC64
58254e10 897 kregs->nip = *((unsigned long *)f);
06d67d54 898#else
58254e10 899 kregs->nip = (unsigned long)f;
06d67d54 900#endif
14cf11af
PM
901 return 0;
902}
903
904/*
905 * Set up a thread for executing a new program
906 */
06d67d54 907void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
14cf11af 908{
90eac727
ME
909#ifdef CONFIG_PPC64
910 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
911#endif
912
06d67d54
PM
913 /*
914 * If we exec out of a kernel thread then thread.regs will not be
915 * set. Do it now.
916 */
917 if (!current->thread.regs) {
0cec6fd1
AV
918 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
919 current->thread.regs = regs - 1;
06d67d54
PM
920 }
921
14cf11af
PM
922 memset(regs->gpr, 0, sizeof(regs->gpr));
923 regs->ctr = 0;
924 regs->link = 0;
925 regs->xer = 0;
926 regs->ccr = 0;
14cf11af 927 regs->gpr[1] = sp;
06d67d54 928
474f8196
RM
929 /*
930 * We have just cleared all the nonvolatile GPRs, so make
931 * FULL_REGS(regs) return true. This is necessary to allow
932 * ptrace to examine the thread immediately after exec.
933 */
934 regs->trap &= ~1UL;
935
06d67d54
PM
936#ifdef CONFIG_PPC32
937 regs->mq = 0;
938 regs->nip = start;
14cf11af 939 regs->msr = MSR_USER;
06d67d54 940#else
9904b005 941 if (!is_32bit_task()) {
90eac727 942 unsigned long entry, toc;
06d67d54
PM
943
944 /* start is a relocated pointer to the function descriptor for
945 * the elf _start routine. The first entry in the function
946 * descriptor is the entry address of _start and the second
947 * entry is the TOC value we need to use.
948 */
949 __get_user(entry, (unsigned long __user *)start);
950 __get_user(toc, (unsigned long __user *)start+1);
951
952 /* Check whether the e_entry function descriptor entries
953 * need to be relocated before we can use them.
954 */
955 if (load_addr != 0) {
956 entry += load_addr;
957 toc += load_addr;
958 }
959 regs->nip = entry;
960 regs->gpr[2] = toc;
961 regs->msr = MSR_USER64;
d4bf9a78
SR
962 } else {
963 regs->nip = start;
964 regs->gpr[2] = 0;
965 regs->msr = MSR_USER32;
06d67d54
PM
966 }
967#endif
968
48abec07 969 discard_lazy_cpu_state();
ce48b210
MN
970#ifdef CONFIG_VSX
971 current->thread.used_vsr = 0;
972#endif
14cf11af 973 memset(current->thread.fpr, 0, sizeof(current->thread.fpr));
25c8a78b 974 current->thread.fpscr.val = 0;
14cf11af
PM
975#ifdef CONFIG_ALTIVEC
976 memset(current->thread.vr, 0, sizeof(current->thread.vr));
977 memset(&current->thread.vscr, 0, sizeof(current->thread.vscr));
06d67d54 978 current->thread.vscr.u[3] = 0x00010000; /* Java mode disabled */
14cf11af
PM
979 current->thread.vrsave = 0;
980 current->thread.used_vr = 0;
981#endif /* CONFIG_ALTIVEC */
982#ifdef CONFIG_SPE
983 memset(current->thread.evr, 0, sizeof(current->thread.evr));
984 current->thread.acc = 0;
985 current->thread.spefscr = 0;
986 current->thread.used_spe = 0;
987#endif /* CONFIG_SPE */
988}
989
990#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
991 | PR_FP_EXC_RES | PR_FP_EXC_INV)
992
993int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
994{
995 struct pt_regs *regs = tsk->thread.regs;
996
997 /* This is a bit hairy. If we are an SPE enabled processor
998 * (have embedded fp) we store the IEEE exception enable flags in
999 * fpexc_mode. fpexc_mode is also used for setting FP exception
1000 * mode (asyn, precise, disabled) for 'Classic' FP. */
1001 if (val & PR_FP_EXC_SW_ENABLE) {
1002#ifdef CONFIG_SPE
5e14d21e
KG
1003 if (cpu_has_feature(CPU_FTR_SPE)) {
1004 tsk->thread.fpexc_mode = val &
1005 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1006 return 0;
1007 } else {
1008 return -EINVAL;
1009 }
14cf11af
PM
1010#else
1011 return -EINVAL;
1012#endif
14cf11af 1013 }
06d67d54
PM
1014
1015 /* on a CONFIG_SPE this does not hurt us. The bits that
1016 * __pack_fe01 use do not overlap with bits used for
1017 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1018 * on CONFIG_SPE implementations are reserved so writing to
1019 * them does not change anything */
1020 if (val > PR_FP_EXC_PRECISE)
1021 return -EINVAL;
1022 tsk->thread.fpexc_mode = __pack_fe01(val);
1023 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1024 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1025 | tsk->thread.fpexc_mode;
14cf11af
PM
1026 return 0;
1027}
1028
1029int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1030{
1031 unsigned int val;
1032
1033 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1034#ifdef CONFIG_SPE
5e14d21e
KG
1035 if (cpu_has_feature(CPU_FTR_SPE))
1036 val = tsk->thread.fpexc_mode;
1037 else
1038 return -EINVAL;
14cf11af
PM
1039#else
1040 return -EINVAL;
1041#endif
1042 else
1043 val = __unpack_fe01(tsk->thread.fpexc_mode);
1044 return put_user(val, (unsigned int __user *) adr);
1045}
1046
fab5db97
PM
1047int set_endian(struct task_struct *tsk, unsigned int val)
1048{
1049 struct pt_regs *regs = tsk->thread.regs;
1050
1051 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1052 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1053 return -EINVAL;
1054
1055 if (regs == NULL)
1056 return -EINVAL;
1057
1058 if (val == PR_ENDIAN_BIG)
1059 regs->msr &= ~MSR_LE;
1060 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1061 regs->msr |= MSR_LE;
1062 else
1063 return -EINVAL;
1064
1065 return 0;
1066}
1067
1068int get_endian(struct task_struct *tsk, unsigned long adr)
1069{
1070 struct pt_regs *regs = tsk->thread.regs;
1071 unsigned int val;
1072
1073 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1074 !cpu_has_feature(CPU_FTR_REAL_LE))
1075 return -EINVAL;
1076
1077 if (regs == NULL)
1078 return -EINVAL;
1079
1080 if (regs->msr & MSR_LE) {
1081 if (cpu_has_feature(CPU_FTR_REAL_LE))
1082 val = PR_ENDIAN_LITTLE;
1083 else
1084 val = PR_ENDIAN_PPC_LITTLE;
1085 } else
1086 val = PR_ENDIAN_BIG;
1087
1088 return put_user(val, (unsigned int __user *)adr);
1089}
1090
e9370ae1
PM
1091int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1092{
1093 tsk->thread.align_ctl = val;
1094 return 0;
1095}
1096
1097int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1098{
1099 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1100}
1101
bb72c481
PM
1102static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1103 unsigned long nbytes)
1104{
1105 unsigned long stack_page;
1106 unsigned long cpu = task_cpu(p);
1107
1108 /*
1109 * Avoid crashing if the stack has overflowed and corrupted
1110 * task_cpu(p), which is in the thread_info struct.
1111 */
1112 if (cpu < NR_CPUS && cpu_possible(cpu)) {
1113 stack_page = (unsigned long) hardirq_ctx[cpu];
1114 if (sp >= stack_page + sizeof(struct thread_struct)
1115 && sp <= stack_page + THREAD_SIZE - nbytes)
1116 return 1;
1117
1118 stack_page = (unsigned long) softirq_ctx[cpu];
1119 if (sp >= stack_page + sizeof(struct thread_struct)
1120 && sp <= stack_page + THREAD_SIZE - nbytes)
1121 return 1;
1122 }
1123 return 0;
1124}
1125
2f25194d 1126int validate_sp(unsigned long sp, struct task_struct *p,
14cf11af
PM
1127 unsigned long nbytes)
1128{
0cec6fd1 1129 unsigned long stack_page = (unsigned long)task_stack_page(p);
14cf11af
PM
1130
1131 if (sp >= stack_page + sizeof(struct thread_struct)
1132 && sp <= stack_page + THREAD_SIZE - nbytes)
1133 return 1;
1134
bb72c481 1135 return valid_irq_stack(sp, p, nbytes);
14cf11af
PM
1136}
1137
2f25194d
AB
1138EXPORT_SYMBOL(validate_sp);
1139
14cf11af
PM
1140unsigned long get_wchan(struct task_struct *p)
1141{
1142 unsigned long ip, sp;
1143 int count = 0;
1144
1145 if (!p || p == current || p->state == TASK_RUNNING)
1146 return 0;
1147
1148 sp = p->thread.ksp;
ec2b36b9 1149 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
14cf11af
PM
1150 return 0;
1151
1152 do {
1153 sp = *(unsigned long *)sp;
ec2b36b9 1154 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
14cf11af
PM
1155 return 0;
1156 if (count > 0) {
ec2b36b9 1157 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
14cf11af
PM
1158 if (!in_sched_functions(ip))
1159 return ip;
1160 }
1161 } while (count++ < 16);
1162 return 0;
1163}
06d67d54 1164
c4d04be1 1165static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
06d67d54
PM
1166
1167void show_stack(struct task_struct *tsk, unsigned long *stack)
1168{
1169 unsigned long sp, ip, lr, newsp;
1170 int count = 0;
1171 int firstframe = 1;
6794c782
SR
1172#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1173 int curr_frame = current->curr_ret_stack;
1174 extern void return_to_handler(void);
9135c3cc
SR
1175 unsigned long rth = (unsigned long)return_to_handler;
1176 unsigned long mrth = -1;
6794c782 1177#ifdef CONFIG_PPC64
9135c3cc
SR
1178 extern void mod_return_to_handler(void);
1179 rth = *(unsigned long *)rth;
1180 mrth = (unsigned long)mod_return_to_handler;
1181 mrth = *(unsigned long *)mrth;
6794c782
SR
1182#endif
1183#endif
06d67d54
PM
1184
1185 sp = (unsigned long) stack;
1186 if (tsk == NULL)
1187 tsk = current;
1188 if (sp == 0) {
1189 if (tsk == current)
1190 asm("mr %0,1" : "=r" (sp));
1191 else
1192 sp = tsk->thread.ksp;
1193 }
1194
1195 lr = 0;
1196 printk("Call Trace:\n");
1197 do {
ec2b36b9 1198 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
06d67d54
PM
1199 return;
1200
1201 stack = (unsigned long *) sp;
1202 newsp = stack[0];
ec2b36b9 1203 ip = stack[STACK_FRAME_LR_SAVE];
06d67d54 1204 if (!firstframe || ip != lr) {
058c78f4 1205 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
6794c782 1206#ifdef CONFIG_FUNCTION_GRAPH_TRACER
9135c3cc 1207 if ((ip == rth || ip == mrth) && curr_frame >= 0) {
6794c782
SR
1208 printk(" (%pS)",
1209 (void *)current->ret_stack[curr_frame].ret);
1210 curr_frame--;
1211 }
1212#endif
06d67d54
PM
1213 if (firstframe)
1214 printk(" (unreliable)");
1215 printk("\n");
1216 }
1217 firstframe = 0;
1218
1219 /*
1220 * See if this is an exception frame.
1221 * We look for the "regshere" marker in the current frame.
1222 */
ec2b36b9
BH
1223 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
1224 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
06d67d54
PM
1225 struct pt_regs *regs = (struct pt_regs *)
1226 (sp + STACK_FRAME_OVERHEAD);
06d67d54 1227 lr = regs->link;
058c78f4
BH
1228 printk("--- Exception: %lx at %pS\n LR = %pS\n",
1229 regs->trap, (void *)regs->nip, (void *)lr);
06d67d54
PM
1230 firstframe = 1;
1231 }
1232
1233 sp = newsp;
1234 } while (count++ < kstack_depth_to_print);
1235}
1236
1237void dump_stack(void)
1238{
1239 show_stack(current, NULL);
1240}
1241EXPORT_SYMBOL(dump_stack);
cb2c9b27
AB
1242
1243#ifdef CONFIG_PPC64
fe1952fc
BH
1244/* Called with hard IRQs off */
1245void __ppc64_runlatch_on(void)
cb2c9b27 1246{
fe1952fc 1247 struct thread_info *ti = current_thread_info();
cb2c9b27
AB
1248 unsigned long ctrl;
1249
fe1952fc
BH
1250 ctrl = mfspr(SPRN_CTRLF);
1251 ctrl |= CTRL_RUNLATCH;
1252 mtspr(SPRN_CTRLT, ctrl);
cb2c9b27 1253
fae2e0fb 1254 ti->local_flags |= _TLF_RUNLATCH;
cb2c9b27
AB
1255}
1256
fe1952fc 1257/* Called with hard IRQs off */
4138d653 1258void __ppc64_runlatch_off(void)
cb2c9b27 1259{
fe1952fc 1260 struct thread_info *ti = current_thread_info();
cb2c9b27
AB
1261 unsigned long ctrl;
1262
fae2e0fb 1263 ti->local_flags &= ~_TLF_RUNLATCH;
cb2c9b27 1264
4138d653
AB
1265 ctrl = mfspr(SPRN_CTRLF);
1266 ctrl &= ~CTRL_RUNLATCH;
1267 mtspr(SPRN_CTRLT, ctrl);
cb2c9b27 1268}
fe1952fc 1269#endif /* CONFIG_PPC64 */
f6a61680 1270
d839088c
AB
1271unsigned long arch_align_stack(unsigned long sp)
1272{
1273 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
1274 sp -= get_random_int() & ~PAGE_MASK;
1275 return sp & ~0xf;
1276}
912f9ee2
AB
1277
1278static inline unsigned long brk_rnd(void)
1279{
1280 unsigned long rnd = 0;
1281
1282 /* 8MB for 32bit, 1GB for 64bit */
1283 if (is_32bit_task())
1284 rnd = (long)(get_random_int() % (1<<(23-PAGE_SHIFT)));
1285 else
1286 rnd = (long)(get_random_int() % (1<<(30-PAGE_SHIFT)));
1287
1288 return rnd << PAGE_SHIFT;
1289}
1290
1291unsigned long arch_randomize_brk(struct mm_struct *mm)
1292{
8bbde7a7
AB
1293 unsigned long base = mm->brk;
1294 unsigned long ret;
1295
ce7a35c7 1296#ifdef CONFIG_PPC_STD_MMU_64
8bbde7a7
AB
1297 /*
1298 * If we are using 1TB segments and we are allowed to randomise
1299 * the heap, we can put it above 1TB so it is backed by a 1TB
1300 * segment. Otherwise the heap will be in the bottom 1TB
1301 * which always uses 256MB segments and this may result in a
1302 * performance penalty.
1303 */
1304 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
1305 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
1306#endif
1307
1308 ret = PAGE_ALIGN(base + brk_rnd());
912f9ee2
AB
1309
1310 if (ret < mm->brk)
1311 return mm->brk;
1312
1313 return ret;
1314}
501cb16d
AB
1315
1316unsigned long randomize_et_dyn(unsigned long base)
1317{
1318 unsigned long ret = PAGE_ALIGN(base + brk_rnd());
1319
1320 if (ret < base)
1321 return base;
1322
1323 return ret;
1324}