Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target...
[deliverable/linux.git] / arch / powerpc / kernel / entry_64.S
CommitLineData
9994a338 1/*
9994a338
PM
2 * PowerPC version
3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 * Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
5 * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu>
6 * Adapted for Power Macintosh by Paul Mackerras.
7 * Low-level exception handlers and MMU support
8 * rewritten by Paul Mackerras.
9 * Copyright (C) 1996 Paul Mackerras.
10 * MPC8xx modifications Copyright (C) 1997 Dan Malek (dmalek@jlc.net).
11 *
12 * This file contains the system call entry code, context switch
13 * code, and exception/interrupt return code for PowerPC.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
9994a338
PM
21#include <linux/errno.h>
22#include <asm/unistd.h>
23#include <asm/processor.h>
24#include <asm/page.h>
25#include <asm/mmu.h>
26#include <asm/thread_info.h>
27#include <asm/ppc_asm.h>
28#include <asm/asm-offsets.h>
29#include <asm/cputable.h>
3f639ee8 30#include <asm/firmware.h>
007d88d0 31#include <asm/bug.h>
ec2b36b9 32#include <asm/ptrace.h>
945feb17 33#include <asm/irqflags.h>
395a59d0 34#include <asm/ftrace.h>
7230c564 35#include <asm/hw_irq.h>
5d1c5745 36#include <asm/context_tracking.h>
b4b56f9e 37#include <asm/tm.h>
9994a338
PM
38
39/*
40 * System calls.
41 */
42 .section ".toc","aw"
c857c43b
AB
43SYS_CALL_TABLE:
44 .tc sys_call_table[TC],sys_call_table
9994a338
PM
45
46/* This value is used to mark exception frames on the stack. */
47exception_marker:
ec2b36b9 48 .tc ID_EXC_MARKER[TC],STACK_FRAME_REGS_MARKER
9994a338
PM
49
50 .section ".text"
51 .align 7
52
9994a338
PM
53 .globl system_call_common
54system_call_common:
b4b56f9e
S
55#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
56BEGIN_FTR_SECTION
57 extrdi. r10, r12, 1, (63-MSR_TS_T_LG) /* transaction active? */
58 bne tabort_syscall
59END_FTR_SECTION_IFSET(CPU_FTR_TM)
60#endif
9994a338
PM
61 andi. r10,r12,MSR_PR
62 mr r10,r1
63 addi r1,r1,-INT_FRAME_SIZE
64 beq- 1f
65 ld r1,PACAKSAVE(r13)
661: std r10,0(r1)
67 std r11,_NIP(r1)
68 std r12,_MSR(r1)
69 std r0,GPR0(r1)
70 std r10,GPR1(r1)
5d75b264 71 beq 2f /* if from kernel mode */
c6622f63 72 ACCOUNT_CPU_USER_ENTRY(r10, r11)
5d75b264 732: std r2,GPR2(r1)
9994a338 74 std r3,GPR3(r1)
fd6c40f3 75 mfcr r2
9994a338
PM
76 std r4,GPR4(r1)
77 std r5,GPR5(r1)
78 std r6,GPR6(r1)
79 std r7,GPR7(r1)
80 std r8,GPR8(r1)
81 li r11,0
82 std r11,GPR9(r1)
83 std r11,GPR10(r1)
84 std r11,GPR11(r1)
85 std r11,GPR12(r1)
823df435 86 std r11,_XER(r1)
82087414 87 std r11,_CTR(r1)
9994a338 88 std r9,GPR13(r1)
9994a338 89 mflr r10
fd6c40f3
AB
90 /*
91 * This clears CR0.SO (bit 28), which is the error indication on
92 * return from this system call.
93 */
94 rldimi r2,r11,28,(63-28)
9994a338 95 li r11,0xc01
9994a338
PM
96 std r10,_LINK(r1)
97 std r11,_TRAP(r1)
9994a338 98 std r3,ORIG_GPR3(r1)
fd6c40f3 99 std r2,_CCR(r1)
9994a338
PM
100 ld r2,PACATOC(r13)
101 addi r9,r1,STACK_FRAME_OVERHEAD
102 ld r11,exception_marker@toc(r2)
103 std r11,-16(r9) /* "regshere" marker */
abf917cd 104#if defined(CONFIG_VIRT_CPU_ACCOUNTING_NATIVE) && defined(CONFIG_PPC_SPLPAR)
cf9efce0
PM
105BEGIN_FW_FTR_SECTION
106 beq 33f
107 /* if from user, see if there are any DTL entries to process */
108 ld r10,PACALPPACAPTR(r13) /* get ptr to VPA */
109 ld r11,PACA_DTL_RIDX(r13) /* get log read index */
7ffcf8ec
AB
110 addi r10,r10,LPPACA_DTLIDX
111 LDX_BE r10,0,r10 /* get log write index */
cf9efce0
PM
112 cmpd cr1,r11,r10
113 beq+ cr1,33f
b1576fec 114 bl accumulate_stolen_time
cf9efce0
PM
115 REST_GPR(0,r1)
116 REST_4GPRS(3,r1)
117 REST_2GPRS(7,r1)
118 addi r9,r1,STACK_FRAME_OVERHEAD
11933:
120END_FW_FTR_SECTION_IFSET(FW_FEATURE_SPLPAR)
abf917cd 121#endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE && CONFIG_PPC_SPLPAR */
cf9efce0 122
1421ae0b
BH
123 /*
124 * A syscall should always be called with interrupts enabled
125 * so we just unconditionally hard-enable here. When some kind
126 * of irq tracing is used, we additionally check that condition
127 * is correct
128 */
129#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_BUG)
130 lbz r10,PACASOFTIRQEN(r13)
131 xori r10,r10,1
1321: tdnei r10,0
133 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
134#endif
2d27cfd3 135
2d27cfd3
BH
136#ifdef CONFIG_PPC_BOOK3E
137 wrteei 1
138#else
1421ae0b 139 ld r11,PACAKMSR(r13)
9994a338
PM
140 ori r11,r11,MSR_EE
141 mtmsrd r11,1
2d27cfd3 142#endif /* CONFIG_PPC_BOOK3E */
9994a338 143
1421ae0b
BH
144 /* We do need to set SOFTE in the stack frame or the return
145 * from interrupt will be painful
146 */
147 li r10,1
148 std r10,SOFTE(r1)
149
9778b696 150 CURRENT_THREAD_INFO(r11, r1)
9994a338 151 ld r10,TI_FLAGS(r11)
10ea8343 152 andi. r11,r10,_TIF_SYSCALL_DOTRACE
2540334a 153 bne syscall_dotrace
d14299de 154.Lsyscall_dotrace_cont:
9994a338
PM
155 cmpldi 0,r0,NR_syscalls
156 bge- syscall_enosys
157
158system_call: /* label this so stack traces look sane */
159/*
160 * Need to vector to 32 Bit or default sys_call_table here,
161 * based on caller's run-mode / personality.
162 */
c857c43b 163 ld r11,SYS_CALL_TABLE@toc(2)
9994a338
PM
164 andi. r10,r10,_TIF_32BIT
165 beq 15f
166 addi r11,r11,8 /* use 32-bit syscall entries */
167 clrldi r3,r3,32
168 clrldi r4,r4,32
169 clrldi r5,r5,32
170 clrldi r6,r6,32
171 clrldi r7,r7,32
172 clrldi r8,r8,32
17315:
174 slwi r0,r0,4
cc7efbf9
AB
175 ldx r12,r11,r0 /* Fetch system call handler [ptr] */
176 mtctr r12
9994a338
PM
177 bctrl /* Call handler */
178
4c3b2168 179.Lsyscall_exit:
401d1f02 180 std r3,RESULT(r1)
9778b696 181 CURRENT_THREAD_INFO(r12, r1)
9994a338 182
9994a338 183 ld r8,_MSR(r1)
2d27cfd3
BH
184#ifdef CONFIG_PPC_BOOK3S
185 /* No MSR:RI on BookE */
9994a338
PM
186 andi. r10,r8,MSR_RI
187 beq- unrecov_restore
2d27cfd3 188#endif
1421ae0b
BH
189 /*
190 * Disable interrupts so current_thread_info()->flags can't change,
2d27cfd3
BH
191 * and so that we don't get interrupted after loading SRR0/1.
192 */
193#ifdef CONFIG_PPC_BOOK3E
194 wrteei 0
195#else
1421ae0b 196 ld r10,PACAKMSR(r13)
ac1dc365
AB
197 /*
198 * For performance reasons we clear RI the same time that we
199 * clear EE. We only need to clear RI just before we restore r13
200 * below, but batching it with EE saves us one expensive mtmsrd call.
201 * We have to be careful to restore RI if we branch anywhere from
202 * here (eg syscall_exit_work).
203 */
204 li r9,MSR_RI
205 andc r11,r10,r9
206 mtmsrd r11,1
2d27cfd3
BH
207#endif /* CONFIG_PPC_BOOK3E */
208
9994a338 209 ld r9,TI_FLAGS(r12)
401d1f02 210 li r11,-_LAST_ERRNO
10ea8343 211 andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
9994a338 212 bne- syscall_exit_work
401d1f02
DW
213 cmpld r3,r11
214 ld r5,_CCR(r1)
215 bge- syscall_error
d14299de 216.Lsyscall_error_cont:
9994a338 217 ld r7,_NIP(r1)
f89451fb 218BEGIN_FTR_SECTION
9994a338 219 stdcx. r0,0,r1 /* to clear the reservation */
f89451fb 220END_FTR_SECTION_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS)
9994a338
PM
221 andi. r6,r8,MSR_PR
222 ld r4,_LINK(r1)
2d27cfd3 223
c6622f63
PM
224 beq- 1f
225 ACCOUNT_CPU_USER_EXIT(r11, r12)
44e9309f 226 HMT_MEDIUM_LOW_HAS_PPR
c6622f63 227 ld r13,GPR13(r1) /* only restore r13 if returning to usermode */
9994a338 2281: ld r2,GPR2(r1)
9994a338
PM
229 ld r1,GPR1(r1)
230 mtlr r4
231 mtcr r5
232 mtspr SPRN_SRR0,r7
233 mtspr SPRN_SRR1,r8
2d27cfd3 234 RFI
9994a338
PM
235 b . /* prevent speculative execution */
236
401d1f02 237syscall_error:
9994a338 238 oris r5,r5,0x1000 /* Set SO bit in CR */
401d1f02 239 neg r3,r3
9994a338 240 std r5,_CCR(r1)
d14299de 241 b .Lsyscall_error_cont
401d1f02 242
9994a338
PM
243/* Traced system call support */
244syscall_dotrace:
b1576fec 245 bl save_nvgprs
9994a338 246 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 247 bl do_syscall_trace_enter
4f72c427
RM
248 /*
249 * Restore argument registers possibly just changed.
250 * We use the return value of do_syscall_trace_enter
251 * for the call number to look up in the table (r0).
252 */
253 mr r0,r3
9994a338
PM
254 ld r3,GPR3(r1)
255 ld r4,GPR4(r1)
256 ld r5,GPR5(r1)
257 ld r6,GPR6(r1)
258 ld r7,GPR7(r1)
259 ld r8,GPR8(r1)
260 addi r9,r1,STACK_FRAME_OVERHEAD
9778b696 261 CURRENT_THREAD_INFO(r10, r1)
9994a338 262 ld r10,TI_FLAGS(r10)
d14299de 263 b .Lsyscall_dotrace_cont
9994a338 264
401d1f02
DW
265syscall_enosys:
266 li r3,-ENOSYS
4c3b2168 267 b .Lsyscall_exit
401d1f02
DW
268
269syscall_exit_work:
ac1dc365
AB
270#ifdef CONFIG_PPC_BOOK3S
271 mtmsrd r10,1 /* Restore RI */
272#endif
401d1f02
DW
273 /* If TIF_RESTOREALL is set, don't scribble on either r3 or ccr.
274 If TIF_NOERROR is set, just save r3 as it is. */
275
276 andi. r0,r9,_TIF_RESTOREALL
1bd79336
PM
277 beq+ 0f
278 REST_NVGPRS(r1)
279 b 2f
2800: cmpld r3,r11 /* r10 is -LAST_ERRNO */
401d1f02
DW
281 blt+ 1f
282 andi. r0,r9,_TIF_NOERROR
283 bne- 1f
284 ld r5,_CCR(r1)
285 neg r3,r3
286 oris r5,r5,0x1000 /* Set SO bit in CR */
287 std r5,_CCR(r1)
2881: std r3,GPR3(r1)
2892: andi. r0,r9,(_TIF_PERSYSCALL_MASK)
290 beq 4f
291
1bd79336 292 /* Clear per-syscall TIF flags if any are set. */
401d1f02
DW
293
294 li r11,_TIF_PERSYSCALL_MASK
295 addi r12,r12,TI_FLAGS
2963: ldarx r10,0,r12
297 andc r10,r10,r11
298 stdcx. r10,0,r12
299 bne- 3b
300 subi r12,r12,TI_FLAGS
1bd79336
PM
301
3024: /* Anything else left to do? */
05e38e5d 303 SET_DEFAULT_THREAD_PPR(r3, r10) /* Set thread.ppr = 3 */
10ea8343 304 andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP)
b1576fec 305 beq ret_from_except_lite
401d1f02
DW
306
307 /* Re-enable interrupts */
2d27cfd3
BH
308#ifdef CONFIG_PPC_BOOK3E
309 wrteei 1
310#else
1421ae0b 311 ld r10,PACAKMSR(r13)
401d1f02
DW
312 ori r10,r10,MSR_EE
313 mtmsrd r10,1
2d27cfd3 314#endif /* CONFIG_PPC_BOOK3E */
401d1f02 315
b1576fec 316 bl save_nvgprs
9994a338 317 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
318 bl do_syscall_trace_leave
319 b ret_from_except
9994a338 320
b4b56f9e
S
321#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
322tabort_syscall:
323 /* Firstly we need to enable TM in the kernel */
324 mfmsr r10
325 li r13, 1
326 rldimi r10, r13, MSR_TM_LG, 63-MSR_TM_LG
327 mtmsrd r10, 0
328
329 /* tabort, this dooms the transaction, nothing else */
330 li r13, (TM_CAUSE_SYSCALL|TM_CAUSE_PERSISTENT)
331 TABORT(R13)
332
333 /*
334 * Return directly to userspace. We have corrupted user register state,
335 * but userspace will never see that register state. Execution will
336 * resume after the tbegin of the aborted transaction with the
337 * checkpointed register state.
338 */
339 li r13, MSR_RI
340 andc r10, r10, r13
341 mtmsrd r10, 1
342 mtspr SPRN_SRR0, r11
343 mtspr SPRN_SRR1, r12
344
345 rfid
346 b . /* prevent speculative execution */
347#endif
348
9994a338
PM
349/* Save non-volatile GPRs, if not already saved. */
350_GLOBAL(save_nvgprs)
351 ld r11,_TRAP(r1)
352 andi. r0,r11,1
353 beqlr-
354 SAVE_NVGPRS(r1)
355 clrrdi r0,r11,1
356 std r0,_TRAP(r1)
357 blr
358
401d1f02 359
9994a338
PM
360/*
361 * The sigsuspend and rt_sigsuspend system calls can call do_signal
362 * and thus put the process into the stopped state where we might
363 * want to examine its user state with ptrace. Therefore we need
364 * to save all the nonvolatile registers (r14 - r31) before calling
365 * the C code. Similarly, fork, vfork and clone need the full
366 * register state on the stack so that it can be copied to the child.
367 */
9994a338
PM
368
369_GLOBAL(ppc_fork)
b1576fec
AB
370 bl save_nvgprs
371 bl sys_fork
4c3b2168 372 b .Lsyscall_exit
9994a338
PM
373
374_GLOBAL(ppc_vfork)
b1576fec
AB
375 bl save_nvgprs
376 bl sys_vfork
4c3b2168 377 b .Lsyscall_exit
9994a338
PM
378
379_GLOBAL(ppc_clone)
b1576fec
AB
380 bl save_nvgprs
381 bl sys_clone
4c3b2168 382 b .Lsyscall_exit
9994a338 383
1bd79336 384_GLOBAL(ppc32_swapcontext)
b1576fec
AB
385 bl save_nvgprs
386 bl compat_sys_swapcontext
4c3b2168 387 b .Lsyscall_exit
1bd79336
PM
388
389_GLOBAL(ppc64_swapcontext)
b1576fec
AB
390 bl save_nvgprs
391 bl sys_swapcontext
4c3b2168 392 b .Lsyscall_exit
1bd79336 393
529d235a
ME
394_GLOBAL(ppc_switch_endian)
395 bl save_nvgprs
396 bl sys_switch_endian
397 b .Lsyscall_exit
398
9994a338 399_GLOBAL(ret_from_fork)
b1576fec 400 bl schedule_tail
9994a338
PM
401 REST_NVGPRS(r1)
402 li r3,0
4c3b2168 403 b .Lsyscall_exit
9994a338 404
58254e10 405_GLOBAL(ret_from_kernel_thread)
b1576fec 406 bl schedule_tail
58254e10 407 REST_NVGPRS(r1)
58254e10
AV
408 mtlr r14
409 mr r3,r15
7cedd601
AB
410#if defined(_CALL_ELF) && _CALL_ELF == 2
411 mr r12,r14
412#endif
58254e10
AV
413 blrl
414 li r3,0
4c3b2168 415 b .Lsyscall_exit
be6abfa7 416
9994a338
PM
417/*
418 * This routine switches between two different tasks. The process
419 * state of one is saved on its kernel stack. Then the state
420 * of the other is restored from its kernel stack. The memory
421 * management hardware is updated to the second process's state.
422 * Finally, we can return to the second process, via ret_from_except.
423 * On entry, r3 points to the THREAD for the current task, r4
424 * points to the THREAD for the new task.
425 *
426 * Note: there are two ways to get to the "going out" portion
427 * of this code; either by coming in via the entry (_switch)
428 * or via "fork" which must set up an environment equivalent
429 * to the "_switch" path. If you change this you'll have to change
430 * the fork code also.
431 *
432 * The code which creates the new task context is in 'copy_thread'
2ef9481e 433 * in arch/powerpc/kernel/process.c
9994a338
PM
434 */
435 .align 7
436_GLOBAL(_switch)
437 mflr r0
438 std r0,16(r1)
439 stdu r1,-SWITCH_FRAME_SIZE(r1)
440 /* r3-r13 are caller saved -- Cort */
441 SAVE_8GPRS(14, r1)
442 SAVE_10GPRS(22, r1)
443 mflr r20 /* Return to switch caller */
444 mfmsr r22
445 li r0, MSR_FP
ce48b210
MN
446#ifdef CONFIG_VSX
447BEGIN_FTR_SECTION
448 oris r0,r0,MSR_VSX@h /* Disable VSX */
449END_FTR_SECTION_IFSET(CPU_FTR_VSX)
450#endif /* CONFIG_VSX */
9994a338
PM
451#ifdef CONFIG_ALTIVEC
452BEGIN_FTR_SECTION
453 oris r0,r0,MSR_VEC@h /* Disable altivec */
454 mfspr r24,SPRN_VRSAVE /* save vrsave register value */
455 std r24,THREAD_VRSAVE(r3)
456END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
457#endif /* CONFIG_ALTIVEC */
458 and. r0,r0,r22
459 beq+ 1f
460 andc r22,r22,r0
2d27cfd3 461 MTMSRD(r22)
9994a338
PM
462 isync
4631: std r20,_NIP(r1)
464 mfcr r23
465 std r23,_CCR(r1)
466 std r1,KSP(r3) /* Set old stack pointer */
467
2468dcf6
IM
468#ifdef CONFIG_PPC_BOOK3S_64
469BEGIN_FTR_SECTION
9353374b
ME
470 /* Event based branch registers */
471 mfspr r0, SPRN_BESCR
472 std r0, THREAD_BESCR(r3)
473 mfspr r0, SPRN_EBBHR
474 std r0, THREAD_EBBHR(r3)
475 mfspr r0, SPRN_EBBRR
476 std r0, THREAD_EBBRR(r3)
1de2bd4e 477END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
2468dcf6
IM
478#endif
479
9994a338
PM
480#ifdef CONFIG_SMP
481 /* We need a sync somewhere here to make sure that if the
482 * previous task gets rescheduled on another CPU, it sees all
483 * stores it has performed on this one.
484 */
485 sync
486#endif /* CONFIG_SMP */
487
f89451fb
AB
488 /*
489 * If we optimise away the clear of the reservation in system
490 * calls because we know the CPU tracks the address of the
491 * reservation, then we need to clear it here to cover the
492 * case that the kernel context switch path has no larx
493 * instructions.
494 */
495BEGIN_FTR_SECTION
496 ldarx r6,0,r1
497END_FTR_SECTION_IFSET(CPU_FTR_STCX_CHECKS_ADDRESS)
498
a515348f
MN
499#ifdef CONFIG_PPC_BOOK3S
500/* Cancel all explict user streams as they will have no use after context
501 * switch and will stop the HW from creating streams itself
502 */
503 DCBT_STOP_ALL_STREAM_IDS(r6)
504#endif
505
9994a338
PM
506 addi r6,r4,-THREAD /* Convert THREAD to 'current' */
507 std r6,PACACURRENT(r13) /* Set new 'current' */
508
509 ld r8,KSP(r4) /* new stack pointer */
2d27cfd3 510#ifdef CONFIG_PPC_BOOK3S
1189be65 511BEGIN_FTR_SECTION
9994a338
PM
512 clrrdi r6,r8,28 /* get its ESID */
513 clrrdi r9,r1,28 /* get current sp ESID */
13b3d13b 514FTR_SECTION_ELSE
1189be65
PM
515 clrrdi r6,r8,40 /* get its 1T ESID */
516 clrrdi r9,r1,40 /* get current sp 1T ESID */
13b3d13b 517ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_1T_SEGMENT)
9994a338
PM
518 clrldi. r0,r6,2 /* is new ESID c00000000? */
519 cmpd cr1,r6,r9 /* or is new ESID the same as current ESID? */
520 cror eq,4*cr1+eq,eq
521 beq 2f /* if yes, don't slbie it */
522
523 /* Bolt in the new stack SLB entry */
524 ld r7,KSP_VSID(r4) /* Get new stack's VSID */
525 oris r0,r6,(SLB_ESID_V)@h
526 ori r0,r0,(SLB_NUM_BOLTED-1)@l
1189be65
PM
527BEGIN_FTR_SECTION
528 li r9,MMU_SEGSIZE_1T /* insert B field */
529 oris r6,r6,(MMU_SEGSIZE_1T << SLBIE_SSIZE_SHIFT)@h
530 rldimi r7,r9,SLB_VSID_SSIZE_SHIFT,0
44ae3ab3 531END_MMU_FTR_SECTION_IFSET(MMU_FTR_1T_SEGMENT)
2f6093c8 532
00efee7d
MN
533 /* Update the last bolted SLB. No write barriers are needed
534 * here, provided we only update the current CPU's SLB shadow
535 * buffer.
536 */
2f6093c8 537 ld r9,PACA_SLBSHADOWPTR(r13)
11a27ad7 538 li r12,0
7ffcf8ec
AB
539 std r12,SLBSHADOW_STACKESID(r9) /* Clear ESID */
540 li r12,SLBSHADOW_STACKVSID
541 STDX_BE r7,r12,r9 /* Save VSID */
542 li r12,SLBSHADOW_STACKESID
543 STDX_BE r0,r12,r9 /* Save ESID */
2f6093c8 544
44ae3ab3 545 /* No need to check for MMU_FTR_NO_SLBIE_B here, since when
f66bce5e
OJ
546 * we have 1TB segments, the only CPUs known to have the errata
547 * only support less than 1TB of system memory and we'll never
548 * actually hit this code path.
549 */
550
9994a338
PM
551 slbie r6
552 slbie r6 /* Workaround POWER5 < DD2.1 issue */
553 slbmte r7,r0
554 isync
9994a338 5552:
2d27cfd3
BH
556#endif /* !CONFIG_PPC_BOOK3S */
557
9778b696 558 CURRENT_THREAD_INFO(r7, r8) /* base of new stack */
9994a338
PM
559 /* Note: this uses SWITCH_FRAME_SIZE rather than INT_FRAME_SIZE
560 because we don't need to leave the 288-byte ABI gap at the
561 top of the kernel stack. */
562 addi r7,r7,THREAD_SIZE-SWITCH_FRAME_SIZE
563
564 mr r1,r8 /* start using new stack pointer */
565 std r7,PACAKSAVE(r13)
566
2468dcf6
IM
567#ifdef CONFIG_PPC_BOOK3S_64
568BEGIN_FTR_SECTION
9353374b
ME
569 /* Event based branch registers */
570 ld r0, THREAD_BESCR(r4)
571 mtspr SPRN_BESCR, r0
572 ld r0, THREAD_EBBHR(r4)
573 mtspr SPRN_EBBHR, r0
574 ld r0, THREAD_EBBRR(r4)
575 mtspr SPRN_EBBRR, r0
576
2468dcf6
IM
577 ld r0,THREAD_TAR(r4)
578 mtspr SPRN_TAR,r0
1de2bd4e 579END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
2468dcf6
IM
580#endif
581
9994a338
PM
582#ifdef CONFIG_ALTIVEC
583BEGIN_FTR_SECTION
584 ld r0,THREAD_VRSAVE(r4)
585 mtspr SPRN_VRSAVE,r0 /* if G4, restore VRSAVE reg */
586END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
587#endif /* CONFIG_ALTIVEC */
efcac658
AK
588#ifdef CONFIG_PPC64
589BEGIN_FTR_SECTION
71433285 590 lwz r6,THREAD_DSCR_INHERIT(r4)
efcac658 591 ld r0,THREAD_DSCR(r4)
71433285
AB
592 cmpwi r6,0
593 bne 1f
1db36525 594 ld r0,PACA_DSCR_DEFAULT(r13)
2517617e 5951:
bc683a7e
MN
596BEGIN_FTR_SECTION_NESTED(70)
597 mfspr r8, SPRN_FSCR
598 rldimi r8, r6, FSCR_DSCR_LG, (63 - FSCR_DSCR_LG)
599 mtspr SPRN_FSCR, r8
600END_FTR_SECTION_NESTED(CPU_FTR_ARCH_207S, CPU_FTR_ARCH_207S, 70)
601 cmpd r0,r25
71433285 602 beq 2f
efcac658 603 mtspr SPRN_DSCR,r0
71433285 6042:
efcac658
AK
605END_FTR_SECTION_IFSET(CPU_FTR_DSCR)
606#endif
9994a338 607
71433285
AB
608 ld r6,_CCR(r1)
609 mtcrf 0xFF,r6
610
9994a338
PM
611 /* r3-r13 are destroyed -- Cort */
612 REST_8GPRS(14, r1)
613 REST_10GPRS(22, r1)
614
615 /* convert old thread to its task_struct for return value */
616 addi r3,r3,-THREAD
617 ld r7,_NIP(r1) /* Return to _switch caller in new task */
618 mtlr r7
619 addi r1,r1,SWITCH_FRAME_SIZE
620 blr
621
622 .align 7
623_GLOBAL(ret_from_except)
624 ld r11,_TRAP(r1)
625 andi. r0,r11,1
b1576fec 626 bne ret_from_except_lite
9994a338
PM
627 REST_NVGPRS(r1)
628
629_GLOBAL(ret_from_except_lite)
630 /*
631 * Disable interrupts so that current_thread_info()->flags
632 * can't change between when we test it and when we return
633 * from the interrupt.
634 */
2d27cfd3
BH
635#ifdef CONFIG_PPC_BOOK3E
636 wrteei 0
637#else
d9ada91a
BH
638 ld r10,PACAKMSR(r13) /* Get kernel MSR without EE */
639 mtmsrd r10,1 /* Update machine state */
2d27cfd3 640#endif /* CONFIG_PPC_BOOK3E */
9994a338 641
9778b696 642 CURRENT_THREAD_INFO(r9, r1)
9994a338 643 ld r3,_MSR(r1)
13d543cd
BB
644#ifdef CONFIG_PPC_BOOK3E
645 ld r10,PACACURRENT(r13)
646#endif /* CONFIG_PPC_BOOK3E */
9994a338 647 ld r4,TI_FLAGS(r9)
9994a338 648 andi. r3,r3,MSR_PR
c58ce2b1 649 beq resume_kernel
13d543cd
BB
650#ifdef CONFIG_PPC_BOOK3E
651 lwz r3,(THREAD+THREAD_DBCR0)(r10)
652#endif /* CONFIG_PPC_BOOK3E */
9994a338
PM
653
654 /* Check current_thread_info()->flags */
c58ce2b1 655 andi. r0,r4,_TIF_USER_WORK_MASK
13d543cd
BB
656#ifdef CONFIG_PPC_BOOK3E
657 bne 1f
658 /*
659 * Check to see if the dbcr0 register is set up to debug.
660 * Use the internal debug mode bit to do this.
661 */
662 andis. r0,r3,DBCR0_IDM@h
c58ce2b1 663 beq restore
13d543cd
BB
664 mfmsr r0
665 rlwinm r0,r0,0,~MSR_DE /* Clear MSR.DE */
666 mtmsr r0
667 mtspr SPRN_DBCR0,r3
668 li r10, -1
669 mtspr SPRN_DBSR,r10
670 b restore
671#else
672 beq restore
673#endif
6741: andi. r0,r4,_TIF_NEED_RESCHED
675 beq 2f
b1576fec 676 bl restore_interrupts
5d1c5745 677 SCHEDULE_USER
b1576fec 678 b ret_from_except_lite
d31626f7
PM
6792:
680#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
681 andi. r0,r4,_TIF_USER_WORK_MASK & ~_TIF_RESTORE_TM
682 bne 3f /* only restore TM if nothing else to do */
683 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 684 bl restore_tm_state
d31626f7
PM
685 b restore
6863:
687#endif
b1576fec 688 bl save_nvgprs
808be314
AB
689 /*
690 * Use a non volatile GPR to save and restore our thread_info flags
691 * across the call to restore_interrupts.
692 */
693 mr r30,r4
b1576fec 694 bl restore_interrupts
808be314 695 mr r4,r30
c58ce2b1 696 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
697 bl do_notify_resume
698 b ret_from_except
c58ce2b1
TC
699
700resume_kernel:
a9c4e541 701 /* check current_thread_info, _TIF_EMULATE_STACK_STORE */
0edfdd10 702 andis. r8,r4,_TIF_EMULATE_STACK_STORE@h
a9c4e541
TC
703 beq+ 1f
704
705 addi r8,r1,INT_FRAME_SIZE /* Get the kprobed function entry */
706
707 lwz r3,GPR1(r1)
708 subi r3,r3,INT_FRAME_SIZE /* dst: Allocate a trampoline exception frame */
709 mr r4,r1 /* src: current exception frame */
710 mr r1,r3 /* Reroute the trampoline frame to r1 */
711
712 /* Copy from the original to the trampoline. */
713 li r5,INT_FRAME_SIZE/8 /* size: INT_FRAME_SIZE */
714 li r6,0 /* start offset: 0 */
715 mtctr r5
7162: ldx r0,r6,r4
717 stdx r0,r6,r3
718 addi r6,r6,8
719 bdnz 2b
720
721 /* Do real store operation to complete stwu */
722 lwz r5,GPR1(r1)
723 std r8,0(r5)
724
725 /* Clear _TIF_EMULATE_STACK_STORE flag */
726 lis r11,_TIF_EMULATE_STACK_STORE@h
727 addi r5,r9,TI_FLAGS
d8b92292 7280: ldarx r4,0,r5
a9c4e541
TC
729 andc r4,r4,r11
730 stdcx. r4,0,r5
731 bne- 0b
7321:
733
c58ce2b1
TC
734#ifdef CONFIG_PREEMPT
735 /* Check if we need to preempt */
736 andi. r0,r4,_TIF_NEED_RESCHED
737 beq+ restore
738 /* Check that preempt_count() == 0 and interrupts are enabled */
739 lwz r8,TI_PREEMPT(r9)
740 cmpwi cr1,r8,0
741 ld r0,SOFTE(r1)
742 cmpdi r0,0
743 crandc eq,cr1*4+eq,eq
744 bne restore
745
746 /*
747 * Here we are preempting the current task. We want to make
de021bb7 748 * sure we are soft-disabled first and reconcile irq state.
c58ce2b1 749 */
de021bb7 750 RECONCILE_IRQ_STATE(r3,r4)
b1576fec 7511: bl preempt_schedule_irq
c58ce2b1
TC
752
753 /* Re-test flags and eventually loop */
9778b696 754 CURRENT_THREAD_INFO(r9, r1)
9994a338 755 ld r4,TI_FLAGS(r9)
c58ce2b1
TC
756 andi. r0,r4,_TIF_NEED_RESCHED
757 bne 1b
572177d7
TC
758
759 /*
760 * arch_local_irq_restore() from preempt_schedule_irq above may
761 * enable hard interrupt but we really should disable interrupts
762 * when we return from the interrupt, and so that we don't get
763 * interrupted after loading SRR0/1.
764 */
765#ifdef CONFIG_PPC_BOOK3E
766 wrteei 0
767#else
768 ld r10,PACAKMSR(r13) /* Get kernel MSR without EE */
769 mtmsrd r10,1 /* Update machine state */
770#endif /* CONFIG_PPC_BOOK3E */
c58ce2b1 771#endif /* CONFIG_PREEMPT */
9994a338 772
7230c564
BH
773 .globl fast_exc_return_irq
774fast_exc_return_irq:
9994a338 775restore:
7230c564 776 /*
7c0482e3
BH
777 * This is the main kernel exit path. First we check if we
778 * are about to re-enable interrupts
7230c564 779 */
01f3880d 780 ld r5,SOFTE(r1)
7230c564 781 lbz r6,PACASOFTIRQEN(r13)
7c0482e3
BH
782 cmpwi cr0,r5,0
783 beq restore_irq_off
7230c564 784
7c0482e3
BH
785 /* We are enabling, were we already enabled ? Yes, just return */
786 cmpwi cr0,r6,1
787 beq cr0,do_restore
9994a338 788
7c0482e3 789 /*
7230c564
BH
790 * We are about to soft-enable interrupts (we are hard disabled
791 * at this point). We check if there's anything that needs to
792 * be replayed first.
793 */
794 lbz r0,PACAIRQHAPPENED(r13)
795 cmpwi cr0,r0,0
796 bne- restore_check_irq_replay
e56a6e20 797
7230c564
BH
798 /*
799 * Get here when nothing happened while soft-disabled, just
800 * soft-enable and move-on. We will hard-enable as a side
801 * effect of rfi
802 */
803restore_no_replay:
804 TRACE_ENABLE_INTS
805 li r0,1
806 stb r0,PACASOFTIRQEN(r13);
807
808 /*
809 * Final return path. BookE is handled in a different file
810 */
7c0482e3 811do_restore:
2d27cfd3 812#ifdef CONFIG_PPC_BOOK3E
b1576fec 813 b exception_return_book3e
2d27cfd3 814#else
7230c564
BH
815 /*
816 * Clear the reservation. If we know the CPU tracks the address of
817 * the reservation then we can potentially save some cycles and use
818 * a larx. On POWER6 and POWER7 this is significantly faster.
819 */
820BEGIN_FTR_SECTION
821 stdcx. r0,0,r1 /* to clear the reservation */
822FTR_SECTION_ELSE
823 ldarx r4,0,r1
824ALT_FTR_SECTION_END_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS)
825
826 /*
827 * Some code path such as load_up_fpu or altivec return directly
828 * here. They run entirely hard disabled and do not alter the
829 * interrupt state. They also don't use lwarx/stwcx. and thus
830 * are known not to leave dangling reservations.
831 */
832 .globl fast_exception_return
833fast_exception_return:
834 ld r3,_MSR(r1)
e56a6e20
PM
835 ld r4,_CTR(r1)
836 ld r0,_LINK(r1)
837 mtctr r4
838 mtlr r0
839 ld r4,_XER(r1)
840 mtspr SPRN_XER,r4
841
842 REST_8GPRS(5, r1)
843
9994a338
PM
844 andi. r0,r3,MSR_RI
845 beq- unrecov_restore
846
0c4888ef
BH
847 /* Load PPR from thread struct before we clear MSR:RI */
848BEGIN_FTR_SECTION
849 ld r2,PACACURRENT(r13)
850 ld r2,TASKTHREADPPR(r2)
851END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
852
e56a6e20
PM
853 /*
854 * Clear RI before restoring r13. If we are returning to
855 * userspace and we take an exception after restoring r13,
856 * we end up corrupting the userspace r13 value.
857 */
d9ada91a
BH
858 ld r4,PACAKMSR(r13) /* Get kernel MSR without EE */
859 andc r4,r4,r0 /* r0 contains MSR_RI here */
e56a6e20 860 mtmsrd r4,1
9994a338 861
afc07701
MN
862#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
863 /* TM debug */
864 std r3, PACATMSCRATCH(r13) /* Stash returned-to MSR */
865#endif
9994a338
PM
866 /*
867 * r13 is our per cpu area, only restore it if we are returning to
7230c564
BH
868 * userspace the value stored in the stack frame may belong to
869 * another CPU.
9994a338 870 */
e56a6e20 871 andi. r0,r3,MSR_PR
9994a338 872 beq 1f
0c4888ef
BH
873BEGIN_FTR_SECTION
874 mtspr SPRN_PPR,r2 /* Restore PPR */
875END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
e56a6e20 876 ACCOUNT_CPU_USER_EXIT(r2, r4)
9994a338
PM
877 REST_GPR(13, r1)
8781:
e56a6e20 879 mtspr SPRN_SRR1,r3
9994a338
PM
880
881 ld r2,_CCR(r1)
882 mtcrf 0xFF,r2
883 ld r2,_NIP(r1)
884 mtspr SPRN_SRR0,r2
885
886 ld r0,GPR0(r1)
887 ld r2,GPR2(r1)
888 ld r3,GPR3(r1)
889 ld r4,GPR4(r1)
890 ld r1,GPR1(r1)
891
892 rfid
893 b . /* prevent speculative execution */
894
2d27cfd3
BH
895#endif /* CONFIG_PPC_BOOK3E */
896
7c0482e3
BH
897 /*
898 * We are returning to a context with interrupts soft disabled.
899 *
900 * However, we may also about to hard enable, so we need to
901 * make sure that in this case, we also clear PACA_IRQ_HARD_DIS
902 * or that bit can get out of sync and bad things will happen
903 */
904restore_irq_off:
905 ld r3,_MSR(r1)
906 lbz r7,PACAIRQHAPPENED(r13)
907 andi. r0,r3,MSR_EE
908 beq 1f
909 rlwinm r7,r7,0,~PACA_IRQ_HARD_DIS
910 stb r7,PACAIRQHAPPENED(r13)
9111: li r0,0
912 stb r0,PACASOFTIRQEN(r13);
913 TRACE_DISABLE_INTS
914 b do_restore
915
7230c564
BH
916 /*
917 * Something did happen, check if a re-emit is needed
918 * (this also clears paca->irq_happened)
919 */
920restore_check_irq_replay:
921 /* XXX: We could implement a fast path here where we check
922 * for irq_happened being just 0x01, in which case we can
923 * clear it and return. That means that we would potentially
924 * miss a decrementer having wrapped all the way around.
925 *
926 * Still, this might be useful for things like hash_page
927 */
b1576fec 928 bl __check_irq_replay
7230c564
BH
929 cmpwi cr0,r3,0
930 beq restore_no_replay
931
932 /*
933 * We need to re-emit an interrupt. We do so by re-using our
934 * existing exception frame. We first change the trap value,
935 * but we need to ensure we preserve the low nibble of it
936 */
937 ld r4,_TRAP(r1)
938 clrldi r4,r4,60
939 or r4,r4,r3
940 std r4,_TRAP(r1)
941
942 /*
943 * Then find the right handler and call it. Interrupts are
944 * still soft-disabled and we keep them that way.
945 */
946 cmpwi cr0,r3,0x500
947 bne 1f
948 addi r3,r1,STACK_FRAME_OVERHEAD;
b1576fec
AB
949 bl do_IRQ
950 b ret_from_except
0869b6fd
MS
9511: cmpwi cr0,r3,0xe60
952 bne 1f
953 addi r3,r1,STACK_FRAME_OVERHEAD;
954 bl handle_hmi_exception
955 b ret_from_except
7230c564
BH
9561: cmpwi cr0,r3,0x900
957 bne 1f
958 addi r3,r1,STACK_FRAME_OVERHEAD;
b1576fec
AB
959 bl timer_interrupt
960 b ret_from_except
fe9e1d54
IM
961#ifdef CONFIG_PPC_DOORBELL
9621:
7230c564 963#ifdef CONFIG_PPC_BOOK3E
fe9e1d54
IM
964 cmpwi cr0,r3,0x280
965#else
966 BEGIN_FTR_SECTION
967 cmpwi cr0,r3,0xe80
968 FTR_SECTION_ELSE
969 cmpwi cr0,r3,0xa00
970 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
971#endif /* CONFIG_PPC_BOOK3E */
7230c564
BH
972 bne 1f
973 addi r3,r1,STACK_FRAME_OVERHEAD;
b1576fec
AB
974 bl doorbell_exception
975 b ret_from_except
fe9e1d54 976#endif /* CONFIG_PPC_DOORBELL */
b1576fec 9771: b ret_from_except /* What else to do here ? */
7230c564 978
9994a338
PM
979unrecov_restore:
980 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 981 bl unrecoverable_exception
9994a338
PM
982 b unrecov_restore
983
984#ifdef CONFIG_PPC_RTAS
985/*
986 * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
987 * called with the MMU off.
988 *
989 * In addition, we need to be in 32b mode, at least for now.
990 *
991 * Note: r3 is an input parameter to rtas, so don't trash it...
992 */
993_GLOBAL(enter_rtas)
994 mflr r0
995 std r0,16(r1)
996 stdu r1,-RTAS_FRAME_SIZE(r1) /* Save SP and create stack space. */
997
998 /* Because RTAS is running in 32b mode, it clobbers the high order half
999 * of all registers that it saves. We therefore save those registers
1000 * RTAS might touch to the stack. (r0, r3-r13 are caller saved)
1001 */
1002 SAVE_GPR(2, r1) /* Save the TOC */
1003 SAVE_GPR(13, r1) /* Save paca */
1004 SAVE_8GPRS(14, r1) /* Save the non-volatiles */
1005 SAVE_10GPRS(22, r1) /* ditto */
1006
1007 mfcr r4
1008 std r4,_CCR(r1)
1009 mfctr r5
1010 std r5,_CTR(r1)
1011 mfspr r6,SPRN_XER
1012 std r6,_XER(r1)
1013 mfdar r7
1014 std r7,_DAR(r1)
1015 mfdsisr r8
1016 std r8,_DSISR(r1)
9994a338 1017
9fe901d1
MK
1018 /* Temporary workaround to clear CR until RTAS can be modified to
1019 * ignore all bits.
1020 */
1021 li r0,0
1022 mtcr r0
1023
007d88d0 1024#ifdef CONFIG_BUG
9994a338
PM
1025 /* There is no way it is acceptable to get here with interrupts enabled,
1026 * check it with the asm equivalent of WARN_ON
1027 */
d04c56f7 1028 lbz r0,PACASOFTIRQEN(r13)
9994a338 10291: tdnei r0,0
007d88d0
DW
1030 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
1031#endif
1032
d04c56f7
PM
1033 /* Hard-disable interrupts */
1034 mfmsr r6
1035 rldicl r7,r6,48,1
1036 rotldi r7,r7,16
1037 mtmsrd r7,1
1038
9994a338
PM
1039 /* Unfortunately, the stack pointer and the MSR are also clobbered,
1040 * so they are saved in the PACA which allows us to restore
1041 * our original state after RTAS returns.
1042 */
1043 std r1,PACAR1(r13)
1044 std r6,PACASAVEDMSR(r13)
1045
1046 /* Setup our real return addr */
ad0289e4 1047 LOAD_REG_ADDR(r4,rtas_return_loc)
e58c3495 1048 clrldi r4,r4,2 /* convert to realmode address */
9994a338
PM
1049 mtlr r4
1050
1051 li r0,0
1052 ori r0,r0,MSR_EE|MSR_SE|MSR_BE|MSR_RI
1053 andc r0,r6,r0
1054
1055 li r9,1
1056 rldicr r9,r9,MSR_SF_LG,(63-MSR_SF_LG)
5c0484e2 1057 ori r9,r9,MSR_IR|MSR_DR|MSR_FE0|MSR_FE1|MSR_FP|MSR_RI|MSR_LE
9994a338 1058 andc r6,r0,r9
9994a338
PM
1059 sync /* disable interrupts so SRR0/1 */
1060 mtmsrd r0 /* don't get trashed */
1061
e58c3495 1062 LOAD_REG_ADDR(r4, rtas)
9994a338
PM
1063 ld r5,RTASENTRY(r4) /* get the rtas->entry value */
1064 ld r4,RTASBASE(r4) /* get the rtas->base value */
1065
1066 mtspr SPRN_SRR0,r5
1067 mtspr SPRN_SRR1,r6
1068 rfid
1069 b . /* prevent speculative execution */
1070
ad0289e4 1071rtas_return_loc:
5c0484e2
BH
1072 FIXUP_ENDIAN
1073
9994a338 1074 /* relocation is off at this point */
2dd60d79 1075 GET_PACA(r4)
e58c3495 1076 clrldi r4,r4,2 /* convert to realmode address */
9994a338 1077
e31aa453
PM
1078 bcl 20,31,$+4
10790: mflr r3
ad0289e4 1080 ld r3,(1f-0b)(r3) /* get &rtas_restore_regs */
e31aa453 1081
9994a338
PM
1082 mfmsr r6
1083 li r0,MSR_RI
1084 andc r6,r6,r0
1085 sync
1086 mtmsrd r6
1087
1088 ld r1,PACAR1(r4) /* Restore our SP */
9994a338
PM
1089 ld r4,PACASAVEDMSR(r4) /* Restore our MSR */
1090
1091 mtspr SPRN_SRR0,r3
1092 mtspr SPRN_SRR1,r4
1093 rfid
1094 b . /* prevent speculative execution */
1095
e31aa453 1096 .align 3
ad0289e4 10971: .llong rtas_restore_regs
e31aa453 1098
ad0289e4 1099rtas_restore_regs:
9994a338
PM
1100 /* relocation is on at this point */
1101 REST_GPR(2, r1) /* Restore the TOC */
1102 REST_GPR(13, r1) /* Restore paca */
1103 REST_8GPRS(14, r1) /* Restore the non-volatiles */
1104 REST_10GPRS(22, r1) /* ditto */
1105
2dd60d79 1106 GET_PACA(r13)
9994a338
PM
1107
1108 ld r4,_CCR(r1)
1109 mtcr r4
1110 ld r5,_CTR(r1)
1111 mtctr r5
1112 ld r6,_XER(r1)
1113 mtspr SPRN_XER,r6
1114 ld r7,_DAR(r1)
1115 mtdar r7
1116 ld r8,_DSISR(r1)
1117 mtdsisr r8
9994a338
PM
1118
1119 addi r1,r1,RTAS_FRAME_SIZE /* Unstack our frame */
1120 ld r0,16(r1) /* get return address */
1121
1122 mtlr r0
1123 blr /* return to caller */
1124
1125#endif /* CONFIG_PPC_RTAS */
1126
9994a338
PM
1127_GLOBAL(enter_prom)
1128 mflr r0
1129 std r0,16(r1)
1130 stdu r1,-PROM_FRAME_SIZE(r1) /* Save SP and create stack space */
1131
1132 /* Because PROM is running in 32b mode, it clobbers the high order half
1133 * of all registers that it saves. We therefore save those registers
1134 * PROM might touch to the stack. (r0, r3-r13 are caller saved)
1135 */
6c171994 1136 SAVE_GPR(2, r1)
9994a338
PM
1137 SAVE_GPR(13, r1)
1138 SAVE_8GPRS(14, r1)
1139 SAVE_10GPRS(22, r1)
6c171994 1140 mfcr r10
9994a338 1141 mfmsr r11
6c171994 1142 std r10,_CCR(r1)
9994a338
PM
1143 std r11,_MSR(r1)
1144
5c0484e2
BH
1145 /* Put PROM address in SRR0 */
1146 mtsrr0 r4
1147
1148 /* Setup our trampoline return addr in LR */
1149 bcl 20,31,$+4
11500: mflr r4
1151 addi r4,r4,(1f - 0b)
1152 mtlr r4
9994a338 1153
5c0484e2 1154 /* Prepare a 32-bit mode big endian MSR
9994a338 1155 */
2d27cfd3
BH
1156#ifdef CONFIG_PPC_BOOK3E
1157 rlwinm r11,r11,0,1,31
5c0484e2
BH
1158 mtsrr1 r11
1159 rfi
2d27cfd3 1160#else /* CONFIG_PPC_BOOK3E */
5c0484e2
BH
1161 LOAD_REG_IMMEDIATE(r12, MSR_SF | MSR_ISF | MSR_LE)
1162 andc r11,r11,r12
1163 mtsrr1 r11
1164 rfid
2d27cfd3 1165#endif /* CONFIG_PPC_BOOK3E */
9994a338 1166
5c0484e2
BH
11671: /* Return from OF */
1168 FIXUP_ENDIAN
9994a338
PM
1169
1170 /* Just make sure that r1 top 32 bits didn't get
1171 * corrupt by OF
1172 */
1173 rldicl r1,r1,0,32
1174
1175 /* Restore the MSR (back to 64 bits) */
1176 ld r0,_MSR(r1)
6c171994 1177 MTMSRD(r0)
9994a338
PM
1178 isync
1179
1180 /* Restore other registers */
1181 REST_GPR(2, r1)
1182 REST_GPR(13, r1)
1183 REST_8GPRS(14, r1)
1184 REST_10GPRS(22, r1)
1185 ld r4,_CCR(r1)
1186 mtcr r4
9994a338
PM
1187
1188 addi r1,r1,PROM_FRAME_SIZE
1189 ld r0,16(r1)
1190 mtlr r0
1191 blr
4e491d14 1192
606576ce 1193#ifdef CONFIG_FUNCTION_TRACER
4e491d14
SR
1194#ifdef CONFIG_DYNAMIC_FTRACE
1195_GLOBAL(mcount)
1196_GLOBAL(_mcount)
4e491d14
SR
1197 blr
1198
5e66684f 1199_GLOBAL_TOC(ftrace_caller)
4e491d14
SR
1200 /* Taken from output of objdump from lib64/glibc */
1201 mflr r3
1202 ld r11, 0(r1)
1203 stdu r1, -112(r1)
1204 std r3, 128(r1)
1205 ld r4, 16(r11)
395a59d0 1206 subi r3, r3, MCOUNT_INSN_SIZE
4e491d14
SR
1207.globl ftrace_call
1208ftrace_call:
1209 bl ftrace_stub
1210 nop
46542888
SR
1211#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1212.globl ftrace_graph_call
1213ftrace_graph_call:
1214 b ftrace_graph_stub
1215_GLOBAL(ftrace_graph_stub)
1216#endif
4e491d14
SR
1217 ld r0, 128(r1)
1218 mtlr r0
1219 addi r1, r1, 112
1220_GLOBAL(ftrace_stub)
1221 blr
1222#else
5e66684f 1223_GLOBAL_TOC(_mcount)
4e491d14
SR
1224 /* Taken from output of objdump from lib64/glibc */
1225 mflr r3
1226 ld r11, 0(r1)
1227 stdu r1, -112(r1)
1228 std r3, 128(r1)
1229 ld r4, 16(r11)
1230
395a59d0 1231 subi r3, r3, MCOUNT_INSN_SIZE
4e491d14
SR
1232 LOAD_REG_ADDR(r5,ftrace_trace_function)
1233 ld r5,0(r5)
1234 ld r5,0(r5)
1235 mtctr r5
1236 bctrl
4e491d14 1237 nop
6794c782
SR
1238
1239
1240#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1241 b ftrace_graph_caller
1242#endif
4e491d14
SR
1243 ld r0, 128(r1)
1244 mtlr r0
1245 addi r1, r1, 112
1246_GLOBAL(ftrace_stub)
1247 blr
1248
6794c782
SR
1249#endif /* CONFIG_DYNAMIC_FTRACE */
1250
1251#ifdef CONFIG_FUNCTION_GRAPH_TRACER
46542888 1252_GLOBAL(ftrace_graph_caller)
6794c782
SR
1253 /* load r4 with local address */
1254 ld r4, 128(r1)
1255 subi r4, r4, MCOUNT_INSN_SIZE
1256
b3c18725 1257 /* Grab the LR out of the caller stack frame */
6794c782 1258 ld r11, 112(r1)
b3c18725 1259 ld r3, 16(r11)
6794c782 1260
b1576fec 1261 bl prepare_ftrace_return
6794c782
SR
1262 nop
1263
b3c18725
AB
1264 /*
1265 * prepare_ftrace_return gives us the address we divert to.
1266 * Change the LR in the callers stack frame to this.
1267 */
1268 ld r11, 112(r1)
1269 std r3, 16(r11)
1270
6794c782
SR
1271 ld r0, 128(r1)
1272 mtlr r0
1273 addi r1, r1, 112
1274 blr
1275
1276_GLOBAL(return_to_handler)
1277 /* need to save return values */
1278 std r4, -32(r1)
1279 std r3, -24(r1)
1280 /* save TOC */
1281 std r2, -16(r1)
1282 std r31, -8(r1)
1283 mr r31, r1
1284 stdu r1, -112(r1)
1285
bb725340 1286 /*
7d56c65a 1287 * We might be called from a module.
bb725340
SR
1288 * Switch to our TOC to run inside the core kernel.
1289 */
be10ab10 1290 ld r2, PACATOC(r13)
6794c782 1291
b1576fec 1292 bl ftrace_return_to_handler
6794c782
SR
1293 nop
1294
1295 /* return value has real return address */
1296 mtlr r3
1297
1298 ld r1, 0(r1)
1299 ld r4, -32(r1)
1300 ld r3, -24(r1)
1301 ld r2, -16(r1)
1302 ld r31, -8(r1)
1303
1304 /* Jump back to real return address */
1305 blr
1306#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1307#endif /* CONFIG_FUNCTION_TRACER */
This page took 0.733468 seconds and 5 git commands to generate.