Merge branch 'clk/mxs-for-3.6' of git://git.linaro.org/people/shawnguo/linux-2.6...
[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>
9994a338
PM
36
37/*
38 * System calls.
39 */
40 .section ".toc","aw"
41.SYS_CALL_TABLE:
42 .tc .sys_call_table[TC],.sys_call_table
43
44/* This value is used to mark exception frames on the stack. */
45exception_marker:
ec2b36b9 46 .tc ID_EXC_MARKER[TC],STACK_FRAME_REGS_MARKER
9994a338
PM
47
48 .section ".text"
49 .align 7
50
51#undef SHOW_SYSCALLS
52
53 .globl system_call_common
54system_call_common:
55 andi. r10,r12,MSR_PR
56 mr r10,r1
57 addi r1,r1,-INT_FRAME_SIZE
58 beq- 1f
59 ld r1,PACAKSAVE(r13)
601: std r10,0(r1)
61 std r11,_NIP(r1)
62 std r12,_MSR(r1)
63 std r0,GPR0(r1)
64 std r10,GPR1(r1)
c6622f63 65 ACCOUNT_CPU_USER_ENTRY(r10, r11)
9994a338
PM
66 std r2,GPR2(r1)
67 std r3,GPR3(r1)
fd6c40f3 68 mfcr r2
9994a338
PM
69 std r4,GPR4(r1)
70 std r5,GPR5(r1)
71 std r6,GPR6(r1)
72 std r7,GPR7(r1)
73 std r8,GPR8(r1)
74 li r11,0
75 std r11,GPR9(r1)
76 std r11,GPR10(r1)
77 std r11,GPR11(r1)
78 std r11,GPR12(r1)
823df435 79 std r11,_XER(r1)
82087414 80 std r11,_CTR(r1)
9994a338 81 std r9,GPR13(r1)
9994a338 82 mflr r10
fd6c40f3
AB
83 /*
84 * This clears CR0.SO (bit 28), which is the error indication on
85 * return from this system call.
86 */
87 rldimi r2,r11,28,(63-28)
9994a338 88 li r11,0xc01
9994a338
PM
89 std r10,_LINK(r1)
90 std r11,_TRAP(r1)
9994a338 91 std r3,ORIG_GPR3(r1)
fd6c40f3 92 std r2,_CCR(r1)
9994a338
PM
93 ld r2,PACATOC(r13)
94 addi r9,r1,STACK_FRAME_OVERHEAD
95 ld r11,exception_marker@toc(r2)
96 std r11,-16(r9) /* "regshere" marker */
cf9efce0
PM
97#if defined(CONFIG_VIRT_CPU_ACCOUNTING) && defined(CONFIG_PPC_SPLPAR)
98BEGIN_FW_FTR_SECTION
99 beq 33f
100 /* if from user, see if there are any DTL entries to process */
101 ld r10,PACALPPACAPTR(r13) /* get ptr to VPA */
102 ld r11,PACA_DTL_RIDX(r13) /* get log read index */
103 ld r10,LPPACA_DTLIDX(r10) /* get log write index */
104 cmpd cr1,r11,r10
105 beq+ cr1,33f
106 bl .accumulate_stolen_time
107 REST_GPR(0,r1)
108 REST_4GPRS(3,r1)
109 REST_2GPRS(7,r1)
110 addi r9,r1,STACK_FRAME_OVERHEAD
11133:
112END_FW_FTR_SECTION_IFSET(FW_FEATURE_SPLPAR)
113#endif /* CONFIG_VIRT_CPU_ACCOUNTING && CONFIG_PPC_SPLPAR */
114
1421ae0b
BH
115 /*
116 * A syscall should always be called with interrupts enabled
117 * so we just unconditionally hard-enable here. When some kind
118 * of irq tracing is used, we additionally check that condition
119 * is correct
120 */
121#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_BUG)
122 lbz r10,PACASOFTIRQEN(r13)
123 xori r10,r10,1
1241: tdnei r10,0
125 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
126#endif
2d27cfd3 127
2d27cfd3
BH
128#ifdef CONFIG_PPC_BOOK3E
129 wrteei 1
130#else
1421ae0b 131 ld r11,PACAKMSR(r13)
9994a338
PM
132 ori r11,r11,MSR_EE
133 mtmsrd r11,1
2d27cfd3 134#endif /* CONFIG_PPC_BOOK3E */
9994a338 135
1421ae0b
BH
136 /* We do need to set SOFTE in the stack frame or the return
137 * from interrupt will be painful
138 */
139 li r10,1
140 std r10,SOFTE(r1)
141
9994a338
PM
142#ifdef SHOW_SYSCALLS
143 bl .do_show_syscall
144 REST_GPR(0,r1)
145 REST_4GPRS(3,r1)
146 REST_2GPRS(7,r1)
147 addi r9,r1,STACK_FRAME_OVERHEAD
148#endif
149 clrrdi r11,r1,THREAD_SHIFT
9994a338 150 ld r10,TI_FLAGS(r11)
9994a338
PM
151 andi. r11,r10,_TIF_SYSCALL_T_OR_A
152 bne- syscall_dotrace
d14299de 153.Lsyscall_dotrace_cont:
9994a338
PM
154 cmpldi 0,r0,NR_syscalls
155 bge- syscall_enosys
156
157system_call: /* label this so stack traces look sane */
158/*
159 * Need to vector to 32 Bit or default sys_call_table here,
160 * based on caller's run-mode / personality.
161 */
162 ld r11,.SYS_CALL_TABLE@toc(2)
163 andi. r10,r10,_TIF_32BIT
164 beq 15f
165 addi r11,r11,8 /* use 32-bit syscall entries */
166 clrldi r3,r3,32
167 clrldi r4,r4,32
168 clrldi r5,r5,32
169 clrldi r6,r6,32
170 clrldi r7,r7,32
171 clrldi r8,r8,32
17215:
173 slwi r0,r0,4
174 ldx r10,r11,r0 /* Fetch system call handler [ptr] */
175 mtctr r10
176 bctrl /* Call handler */
177
178syscall_exit:
401d1f02 179 std r3,RESULT(r1)
9994a338 180#ifdef SHOW_SYSCALLS
9994a338 181 bl .do_show_syscall_exit
401d1f02 182 ld r3,RESULT(r1)
9994a338 183#endif
9994a338 184 clrrdi r12,r1,THREAD_SHIFT
9994a338 185
9994a338 186 ld r8,_MSR(r1)
2d27cfd3
BH
187#ifdef CONFIG_PPC_BOOK3S
188 /* No MSR:RI on BookE */
9994a338
PM
189 andi. r10,r8,MSR_RI
190 beq- unrecov_restore
2d27cfd3 191#endif
1421ae0b
BH
192 /*
193 * Disable interrupts so current_thread_info()->flags can't change,
2d27cfd3
BH
194 * and so that we don't get interrupted after loading SRR0/1.
195 */
196#ifdef CONFIG_PPC_BOOK3E
197 wrteei 0
198#else
1421ae0b 199 ld r10,PACAKMSR(r13)
9994a338 200 mtmsrd r10,1
2d27cfd3
BH
201#endif /* CONFIG_PPC_BOOK3E */
202
9994a338 203 ld r9,TI_FLAGS(r12)
401d1f02 204 li r11,-_LAST_ERRNO
1bd79336 205 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
9994a338 206 bne- syscall_exit_work
401d1f02
DW
207 cmpld r3,r11
208 ld r5,_CCR(r1)
209 bge- syscall_error
d14299de 210.Lsyscall_error_cont:
9994a338 211 ld r7,_NIP(r1)
f89451fb 212BEGIN_FTR_SECTION
9994a338 213 stdcx. r0,0,r1 /* to clear the reservation */
f89451fb 214END_FTR_SECTION_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS)
9994a338
PM
215 andi. r6,r8,MSR_PR
216 ld r4,_LINK(r1)
e56a6e20
PM
217 /*
218 * Clear RI before restoring r13. If we are returning to
219 * userspace and we take an exception after restoring r13,
220 * we end up corrupting the userspace r13 value.
221 */
2d27cfd3
BH
222#ifdef CONFIG_PPC_BOOK3S
223 /* No MSR:RI on BookE */
e56a6e20
PM
224 li r12,MSR_RI
225 andc r11,r10,r12
226 mtmsrd r11,1 /* clear MSR.RI */
2d27cfd3
BH
227#endif /* CONFIG_PPC_BOOK3S */
228
c6622f63
PM
229 beq- 1f
230 ACCOUNT_CPU_USER_EXIT(r11, r12)
231 ld r13,GPR13(r1) /* only restore r13 if returning to usermode */
9994a338 2321: ld r2,GPR2(r1)
9994a338
PM
233 ld r1,GPR1(r1)
234 mtlr r4
235 mtcr r5
236 mtspr SPRN_SRR0,r7
237 mtspr SPRN_SRR1,r8
2d27cfd3 238 RFI
9994a338
PM
239 b . /* prevent speculative execution */
240
401d1f02 241syscall_error:
9994a338 242 oris r5,r5,0x1000 /* Set SO bit in CR */
401d1f02 243 neg r3,r3
9994a338 244 std r5,_CCR(r1)
d14299de 245 b .Lsyscall_error_cont
401d1f02 246
9994a338
PM
247/* Traced system call support */
248syscall_dotrace:
249 bl .save_nvgprs
250 addi r3,r1,STACK_FRAME_OVERHEAD
251 bl .do_syscall_trace_enter
4f72c427
RM
252 /*
253 * Restore argument registers possibly just changed.
254 * We use the return value of do_syscall_trace_enter
255 * for the call number to look up in the table (r0).
256 */
257 mr r0,r3
9994a338
PM
258 ld r3,GPR3(r1)
259 ld r4,GPR4(r1)
260 ld r5,GPR5(r1)
261 ld r6,GPR6(r1)
262 ld r7,GPR7(r1)
263 ld r8,GPR8(r1)
264 addi r9,r1,STACK_FRAME_OVERHEAD
265 clrrdi r10,r1,THREAD_SHIFT
266 ld r10,TI_FLAGS(r10)
d14299de 267 b .Lsyscall_dotrace_cont
9994a338 268
401d1f02
DW
269syscall_enosys:
270 li r3,-ENOSYS
271 b syscall_exit
272
273syscall_exit_work:
274 /* If TIF_RESTOREALL is set, don't scribble on either r3 or ccr.
275 If TIF_NOERROR is set, just save r3 as it is. */
276
277 andi. r0,r9,_TIF_RESTOREALL
1bd79336
PM
278 beq+ 0f
279 REST_NVGPRS(r1)
280 b 2f
2810: cmpld r3,r11 /* r10 is -LAST_ERRNO */
401d1f02
DW
282 blt+ 1f
283 andi. r0,r9,_TIF_NOERROR
284 bne- 1f
285 ld r5,_CCR(r1)
286 neg r3,r3
287 oris r5,r5,0x1000 /* Set SO bit in CR */
288 std r5,_CCR(r1)
2891: std r3,GPR3(r1)
2902: andi. r0,r9,(_TIF_PERSYSCALL_MASK)
291 beq 4f
292
1bd79336 293 /* Clear per-syscall TIF flags if any are set. */
401d1f02
DW
294
295 li r11,_TIF_PERSYSCALL_MASK
296 addi r12,r12,TI_FLAGS
2973: ldarx r10,0,r12
298 andc r10,r10,r11
299 stdcx. r10,0,r12
300 bne- 3b
301 subi r12,r12,TI_FLAGS
1bd79336
PM
302
3034: /* Anything else left to do? */
304 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP)
401d1f02
DW
305 beq .ret_from_except_lite
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
1bd79336 316 bl .save_nvgprs
9994a338
PM
317 addi r3,r1,STACK_FRAME_OVERHEAD
318 bl .do_syscall_trace_leave
1bd79336 319 b .ret_from_except
9994a338
PM
320
321/* Save non-volatile GPRs, if not already saved. */
322_GLOBAL(save_nvgprs)
323 ld r11,_TRAP(r1)
324 andi. r0,r11,1
325 beqlr-
326 SAVE_NVGPRS(r1)
327 clrrdi r0,r11,1
328 std r0,_TRAP(r1)
329 blr
330
401d1f02 331
9994a338
PM
332/*
333 * The sigsuspend and rt_sigsuspend system calls can call do_signal
334 * and thus put the process into the stopped state where we might
335 * want to examine its user state with ptrace. Therefore we need
336 * to save all the nonvolatile registers (r14 - r31) before calling
337 * the C code. Similarly, fork, vfork and clone need the full
338 * register state on the stack so that it can be copied to the child.
339 */
9994a338
PM
340
341_GLOBAL(ppc_fork)
342 bl .save_nvgprs
343 bl .sys_fork
344 b syscall_exit
345
346_GLOBAL(ppc_vfork)
347 bl .save_nvgprs
348 bl .sys_vfork
349 b syscall_exit
350
351_GLOBAL(ppc_clone)
352 bl .save_nvgprs
353 bl .sys_clone
354 b syscall_exit
355
1bd79336
PM
356_GLOBAL(ppc32_swapcontext)
357 bl .save_nvgprs
358 bl .compat_sys_swapcontext
359 b syscall_exit
360
361_GLOBAL(ppc64_swapcontext)
362 bl .save_nvgprs
363 bl .sys_swapcontext
364 b syscall_exit
365
9994a338
PM
366_GLOBAL(ret_from_fork)
367 bl .schedule_tail
368 REST_NVGPRS(r1)
369 li r3,0
370 b syscall_exit
371
372/*
373 * This routine switches between two different tasks. The process
374 * state of one is saved on its kernel stack. Then the state
375 * of the other is restored from its kernel stack. The memory
376 * management hardware is updated to the second process's state.
377 * Finally, we can return to the second process, via ret_from_except.
378 * On entry, r3 points to the THREAD for the current task, r4
379 * points to the THREAD for the new task.
380 *
381 * Note: there are two ways to get to the "going out" portion
382 * of this code; either by coming in via the entry (_switch)
383 * or via "fork" which must set up an environment equivalent
384 * to the "_switch" path. If you change this you'll have to change
385 * the fork code also.
386 *
387 * The code which creates the new task context is in 'copy_thread'
2ef9481e 388 * in arch/powerpc/kernel/process.c
9994a338
PM
389 */
390 .align 7
391_GLOBAL(_switch)
392 mflr r0
393 std r0,16(r1)
394 stdu r1,-SWITCH_FRAME_SIZE(r1)
395 /* r3-r13 are caller saved -- Cort */
396 SAVE_8GPRS(14, r1)
397 SAVE_10GPRS(22, r1)
398 mflr r20 /* Return to switch caller */
399 mfmsr r22
400 li r0, MSR_FP
ce48b210
MN
401#ifdef CONFIG_VSX
402BEGIN_FTR_SECTION
403 oris r0,r0,MSR_VSX@h /* Disable VSX */
404END_FTR_SECTION_IFSET(CPU_FTR_VSX)
405#endif /* CONFIG_VSX */
9994a338
PM
406#ifdef CONFIG_ALTIVEC
407BEGIN_FTR_SECTION
408 oris r0,r0,MSR_VEC@h /* Disable altivec */
409 mfspr r24,SPRN_VRSAVE /* save vrsave register value */
410 std r24,THREAD_VRSAVE(r3)
411END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
412#endif /* CONFIG_ALTIVEC */
efcac658
AK
413#ifdef CONFIG_PPC64
414BEGIN_FTR_SECTION
415 mfspr r25,SPRN_DSCR
416 std r25,THREAD_DSCR(r3)
417END_FTR_SECTION_IFSET(CPU_FTR_DSCR)
418#endif
9994a338
PM
419 and. r0,r0,r22
420 beq+ 1f
421 andc r22,r22,r0
2d27cfd3 422 MTMSRD(r22)
9994a338
PM
423 isync
4241: std r20,_NIP(r1)
425 mfcr r23
426 std r23,_CCR(r1)
427 std r1,KSP(r3) /* Set old stack pointer */
428
429#ifdef CONFIG_SMP
430 /* We need a sync somewhere here to make sure that if the
431 * previous task gets rescheduled on another CPU, it sees all
432 * stores it has performed on this one.
433 */
434 sync
435#endif /* CONFIG_SMP */
436
f89451fb
AB
437 /*
438 * If we optimise away the clear of the reservation in system
439 * calls because we know the CPU tracks the address of the
440 * reservation, then we need to clear it here to cover the
441 * case that the kernel context switch path has no larx
442 * instructions.
443 */
444BEGIN_FTR_SECTION
445 ldarx r6,0,r1
446END_FTR_SECTION_IFSET(CPU_FTR_STCX_CHECKS_ADDRESS)
447
9994a338
PM
448 addi r6,r4,-THREAD /* Convert THREAD to 'current' */
449 std r6,PACACURRENT(r13) /* Set new 'current' */
450
451 ld r8,KSP(r4) /* new stack pointer */
2d27cfd3 452#ifdef CONFIG_PPC_BOOK3S
1189be65 453BEGIN_FTR_SECTION
c230328d 454 BEGIN_FTR_SECTION_NESTED(95)
9994a338
PM
455 clrrdi r6,r8,28 /* get its ESID */
456 clrrdi r9,r1,28 /* get current sp ESID */
c230328d 457 FTR_SECTION_ELSE_NESTED(95)
1189be65
PM
458 clrrdi r6,r8,40 /* get its 1T ESID */
459 clrrdi r9,r1,40 /* get current sp 1T ESID */
44ae3ab3 460 ALT_MMU_FTR_SECTION_END_NESTED_IFCLR(MMU_FTR_1T_SEGMENT, 95)
c230328d
ME
461FTR_SECTION_ELSE
462 b 2f
44ae3ab3 463ALT_MMU_FTR_SECTION_END_IFSET(MMU_FTR_SLB)
9994a338
PM
464 clrldi. r0,r6,2 /* is new ESID c00000000? */
465 cmpd cr1,r6,r9 /* or is new ESID the same as current ESID? */
466 cror eq,4*cr1+eq,eq
467 beq 2f /* if yes, don't slbie it */
468
469 /* Bolt in the new stack SLB entry */
470 ld r7,KSP_VSID(r4) /* Get new stack's VSID */
471 oris r0,r6,(SLB_ESID_V)@h
472 ori r0,r0,(SLB_NUM_BOLTED-1)@l
1189be65
PM
473BEGIN_FTR_SECTION
474 li r9,MMU_SEGSIZE_1T /* insert B field */
475 oris r6,r6,(MMU_SEGSIZE_1T << SLBIE_SSIZE_SHIFT)@h
476 rldimi r7,r9,SLB_VSID_SSIZE_SHIFT,0
44ae3ab3 477END_MMU_FTR_SECTION_IFSET(MMU_FTR_1T_SEGMENT)
2f6093c8 478
00efee7d
MN
479 /* Update the last bolted SLB. No write barriers are needed
480 * here, provided we only update the current CPU's SLB shadow
481 * buffer.
482 */
2f6093c8 483 ld r9,PACA_SLBSHADOWPTR(r13)
11a27ad7
MN
484 li r12,0
485 std r12,SLBSHADOW_STACKESID(r9) /* Clear ESID */
486 std r7,SLBSHADOW_STACKVSID(r9) /* Save VSID */
487 std r0,SLBSHADOW_STACKESID(r9) /* Save ESID */
2f6093c8 488
44ae3ab3 489 /* No need to check for MMU_FTR_NO_SLBIE_B here, since when
f66bce5e
OJ
490 * we have 1TB segments, the only CPUs known to have the errata
491 * only support less than 1TB of system memory and we'll never
492 * actually hit this code path.
493 */
494
9994a338
PM
495 slbie r6
496 slbie r6 /* Workaround POWER5 < DD2.1 issue */
497 slbmte r7,r0
498 isync
9994a338 4992:
2d27cfd3
BH
500#endif /* !CONFIG_PPC_BOOK3S */
501
9994a338
PM
502 clrrdi r7,r8,THREAD_SHIFT /* base of new stack */
503 /* Note: this uses SWITCH_FRAME_SIZE rather than INT_FRAME_SIZE
504 because we don't need to leave the 288-byte ABI gap at the
505 top of the kernel stack. */
506 addi r7,r7,THREAD_SIZE-SWITCH_FRAME_SIZE
507
508 mr r1,r8 /* start using new stack pointer */
509 std r7,PACAKSAVE(r13)
510
511 ld r6,_CCR(r1)
512 mtcrf 0xFF,r6
513
514#ifdef CONFIG_ALTIVEC
515BEGIN_FTR_SECTION
516 ld r0,THREAD_VRSAVE(r4)
517 mtspr SPRN_VRSAVE,r0 /* if G4, restore VRSAVE reg */
518END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
519#endif /* CONFIG_ALTIVEC */
efcac658
AK
520#ifdef CONFIG_PPC64
521BEGIN_FTR_SECTION
522 ld r0,THREAD_DSCR(r4)
523 cmpd r0,r25
524 beq 1f
525 mtspr SPRN_DSCR,r0
5261:
527END_FTR_SECTION_IFSET(CPU_FTR_DSCR)
528#endif
9994a338
PM
529
530 /* r3-r13 are destroyed -- Cort */
531 REST_8GPRS(14, r1)
532 REST_10GPRS(22, r1)
533
534 /* convert old thread to its task_struct for return value */
535 addi r3,r3,-THREAD
536 ld r7,_NIP(r1) /* Return to _switch caller in new task */
537 mtlr r7
538 addi r1,r1,SWITCH_FRAME_SIZE
539 blr
540
541 .align 7
542_GLOBAL(ret_from_except)
543 ld r11,_TRAP(r1)
544 andi. r0,r11,1
545 bne .ret_from_except_lite
546 REST_NVGPRS(r1)
547
548_GLOBAL(ret_from_except_lite)
549 /*
550 * Disable interrupts so that current_thread_info()->flags
551 * can't change between when we test it and when we return
552 * from the interrupt.
553 */
2d27cfd3
BH
554#ifdef CONFIG_PPC_BOOK3E
555 wrteei 0
556#else
d9ada91a
BH
557 ld r10,PACAKMSR(r13) /* Get kernel MSR without EE */
558 mtmsrd r10,1 /* Update machine state */
2d27cfd3 559#endif /* CONFIG_PPC_BOOK3E */
9994a338 560
9994a338 561 clrrdi r9,r1,THREAD_SHIFT /* current_thread_info() */
9994a338
PM
562 ld r3,_MSR(r1)
563 ld r4,TI_FLAGS(r9)
9994a338 564 andi. r3,r3,MSR_PR
c58ce2b1 565 beq resume_kernel
9994a338
PM
566
567 /* Check current_thread_info()->flags */
c58ce2b1
TC
568 andi. r0,r4,_TIF_USER_WORK_MASK
569 beq restore
570
571 andi. r0,r4,_TIF_NEED_RESCHED
572 beq 1f
573 bl .restore_interrupts
574 bl .schedule
575 b .ret_from_except_lite
576
5771: bl .save_nvgprs
578 bl .restore_interrupts
579 addi r3,r1,STACK_FRAME_OVERHEAD
580 bl .do_notify_resume
581 b .ret_from_except
582
583resume_kernel:
584#ifdef CONFIG_PREEMPT
585 /* Check if we need to preempt */
586 andi. r0,r4,_TIF_NEED_RESCHED
587 beq+ restore
588 /* Check that preempt_count() == 0 and interrupts are enabled */
589 lwz r8,TI_PREEMPT(r9)
590 cmpwi cr1,r8,0
591 ld r0,SOFTE(r1)
592 cmpdi r0,0
593 crandc eq,cr1*4+eq,eq
594 bne restore
595
596 /*
597 * Here we are preempting the current task. We want to make
598 * sure we are soft-disabled first
599 */
600 SOFT_DISABLE_INTS(r3,r4)
6011: bl .preempt_schedule_irq
602
603 /* Re-test flags and eventually loop */
9994a338
PM
604 clrrdi r9,r1,THREAD_SHIFT
605 ld r4,TI_FLAGS(r9)
c58ce2b1
TC
606 andi. r0,r4,_TIF_NEED_RESCHED
607 bne 1b
608#endif /* CONFIG_PREEMPT */
9994a338 609
7230c564
BH
610 .globl fast_exc_return_irq
611fast_exc_return_irq:
9994a338 612restore:
7230c564 613 /*
7c0482e3
BH
614 * This is the main kernel exit path. First we check if we
615 * are about to re-enable interrupts
7230c564 616 */
01f3880d 617 ld r5,SOFTE(r1)
7230c564 618 lbz r6,PACASOFTIRQEN(r13)
7c0482e3
BH
619 cmpwi cr0,r5,0
620 beq restore_irq_off
7230c564 621
7c0482e3
BH
622 /* We are enabling, were we already enabled ? Yes, just return */
623 cmpwi cr0,r6,1
624 beq cr0,do_restore
9994a338 625
7c0482e3 626 /*
7230c564
BH
627 * We are about to soft-enable interrupts (we are hard disabled
628 * at this point). We check if there's anything that needs to
629 * be replayed first.
630 */
631 lbz r0,PACAIRQHAPPENED(r13)
632 cmpwi cr0,r0,0
633 bne- restore_check_irq_replay
e56a6e20 634
7230c564
BH
635 /*
636 * Get here when nothing happened while soft-disabled, just
637 * soft-enable and move-on. We will hard-enable as a side
638 * effect of rfi
639 */
640restore_no_replay:
641 TRACE_ENABLE_INTS
642 li r0,1
643 stb r0,PACASOFTIRQEN(r13);
644
645 /*
646 * Final return path. BookE is handled in a different file
647 */
7c0482e3 648do_restore:
2d27cfd3
BH
649#ifdef CONFIG_PPC_BOOK3E
650 b .exception_return_book3e
651#else
7230c564
BH
652 /*
653 * Clear the reservation. If we know the CPU tracks the address of
654 * the reservation then we can potentially save some cycles and use
655 * a larx. On POWER6 and POWER7 this is significantly faster.
656 */
657BEGIN_FTR_SECTION
658 stdcx. r0,0,r1 /* to clear the reservation */
659FTR_SECTION_ELSE
660 ldarx r4,0,r1
661ALT_FTR_SECTION_END_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS)
662
663 /*
664 * Some code path such as load_up_fpu or altivec return directly
665 * here. They run entirely hard disabled and do not alter the
666 * interrupt state. They also don't use lwarx/stwcx. and thus
667 * are known not to leave dangling reservations.
668 */
669 .globl fast_exception_return
670fast_exception_return:
671 ld r3,_MSR(r1)
e56a6e20
PM
672 ld r4,_CTR(r1)
673 ld r0,_LINK(r1)
674 mtctr r4
675 mtlr r0
676 ld r4,_XER(r1)
677 mtspr SPRN_XER,r4
678
679 REST_8GPRS(5, r1)
680
9994a338
PM
681 andi. r0,r3,MSR_RI
682 beq- unrecov_restore
683
e56a6e20
PM
684 /*
685 * Clear RI before restoring r13. If we are returning to
686 * userspace and we take an exception after restoring r13,
687 * we end up corrupting the userspace r13 value.
688 */
d9ada91a
BH
689 ld r4,PACAKMSR(r13) /* Get kernel MSR without EE */
690 andc r4,r4,r0 /* r0 contains MSR_RI here */
e56a6e20 691 mtmsrd r4,1
9994a338
PM
692
693 /*
694 * r13 is our per cpu area, only restore it if we are returning to
7230c564
BH
695 * userspace the value stored in the stack frame may belong to
696 * another CPU.
9994a338 697 */
e56a6e20 698 andi. r0,r3,MSR_PR
9994a338 699 beq 1f
e56a6e20 700 ACCOUNT_CPU_USER_EXIT(r2, r4)
9994a338
PM
701 REST_GPR(13, r1)
7021:
e56a6e20 703 mtspr SPRN_SRR1,r3
9994a338
PM
704
705 ld r2,_CCR(r1)
706 mtcrf 0xFF,r2
707 ld r2,_NIP(r1)
708 mtspr SPRN_SRR0,r2
709
710 ld r0,GPR0(r1)
711 ld r2,GPR2(r1)
712 ld r3,GPR3(r1)
713 ld r4,GPR4(r1)
714 ld r1,GPR1(r1)
715
716 rfid
717 b . /* prevent speculative execution */
718
2d27cfd3
BH
719#endif /* CONFIG_PPC_BOOK3E */
720
7c0482e3
BH
721 /*
722 * We are returning to a context with interrupts soft disabled.
723 *
724 * However, we may also about to hard enable, so we need to
725 * make sure that in this case, we also clear PACA_IRQ_HARD_DIS
726 * or that bit can get out of sync and bad things will happen
727 */
728restore_irq_off:
729 ld r3,_MSR(r1)
730 lbz r7,PACAIRQHAPPENED(r13)
731 andi. r0,r3,MSR_EE
732 beq 1f
733 rlwinm r7,r7,0,~PACA_IRQ_HARD_DIS
734 stb r7,PACAIRQHAPPENED(r13)
7351: li r0,0
736 stb r0,PACASOFTIRQEN(r13);
737 TRACE_DISABLE_INTS
738 b do_restore
739
7230c564
BH
740 /*
741 * Something did happen, check if a re-emit is needed
742 * (this also clears paca->irq_happened)
743 */
744restore_check_irq_replay:
745 /* XXX: We could implement a fast path here where we check
746 * for irq_happened being just 0x01, in which case we can
747 * clear it and return. That means that we would potentially
748 * miss a decrementer having wrapped all the way around.
749 *
750 * Still, this might be useful for things like hash_page
751 */
752 bl .__check_irq_replay
753 cmpwi cr0,r3,0
754 beq restore_no_replay
755
756 /*
757 * We need to re-emit an interrupt. We do so by re-using our
758 * existing exception frame. We first change the trap value,
759 * but we need to ensure we preserve the low nibble of it
760 */
761 ld r4,_TRAP(r1)
762 clrldi r4,r4,60
763 or r4,r4,r3
764 std r4,_TRAP(r1)
765
766 /*
767 * Then find the right handler and call it. Interrupts are
768 * still soft-disabled and we keep them that way.
769 */
770 cmpwi cr0,r3,0x500
771 bne 1f
772 addi r3,r1,STACK_FRAME_OVERHEAD;
773 bl .do_IRQ
774 b .ret_from_except
7751: cmpwi cr0,r3,0x900
776 bne 1f
777 addi r3,r1,STACK_FRAME_OVERHEAD;
778 bl .timer_interrupt
779 b .ret_from_except
780#ifdef CONFIG_PPC_BOOK3E
7811: cmpwi cr0,r3,0x280
782 bne 1f
783 addi r3,r1,STACK_FRAME_OVERHEAD;
784 bl .doorbell_exception
785 b .ret_from_except
786#endif /* CONFIG_PPC_BOOK3E */
7871: b .ret_from_except /* What else to do here ? */
788
9994a338
PM
789unrecov_restore:
790 addi r3,r1,STACK_FRAME_OVERHEAD
791 bl .unrecoverable_exception
792 b unrecov_restore
793
794#ifdef CONFIG_PPC_RTAS
795/*
796 * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
797 * called with the MMU off.
798 *
799 * In addition, we need to be in 32b mode, at least for now.
800 *
801 * Note: r3 is an input parameter to rtas, so don't trash it...
802 */
803_GLOBAL(enter_rtas)
804 mflr r0
805 std r0,16(r1)
806 stdu r1,-RTAS_FRAME_SIZE(r1) /* Save SP and create stack space. */
807
808 /* Because RTAS is running in 32b mode, it clobbers the high order half
809 * of all registers that it saves. We therefore save those registers
810 * RTAS might touch to the stack. (r0, r3-r13 are caller saved)
811 */
812 SAVE_GPR(2, r1) /* Save the TOC */
813 SAVE_GPR(13, r1) /* Save paca */
814 SAVE_8GPRS(14, r1) /* Save the non-volatiles */
815 SAVE_10GPRS(22, r1) /* ditto */
816
817 mfcr r4
818 std r4,_CCR(r1)
819 mfctr r5
820 std r5,_CTR(r1)
821 mfspr r6,SPRN_XER
822 std r6,_XER(r1)
823 mfdar r7
824 std r7,_DAR(r1)
825 mfdsisr r8
826 std r8,_DSISR(r1)
9994a338 827
9fe901d1
MK
828 /* Temporary workaround to clear CR until RTAS can be modified to
829 * ignore all bits.
830 */
831 li r0,0
832 mtcr r0
833
007d88d0 834#ifdef CONFIG_BUG
9994a338
PM
835 /* There is no way it is acceptable to get here with interrupts enabled,
836 * check it with the asm equivalent of WARN_ON
837 */
d04c56f7 838 lbz r0,PACASOFTIRQEN(r13)
9994a338 8391: tdnei r0,0
007d88d0
DW
840 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
841#endif
842
d04c56f7
PM
843 /* Hard-disable interrupts */
844 mfmsr r6
845 rldicl r7,r6,48,1
846 rotldi r7,r7,16
847 mtmsrd r7,1
848
9994a338
PM
849 /* Unfortunately, the stack pointer and the MSR are also clobbered,
850 * so they are saved in the PACA which allows us to restore
851 * our original state after RTAS returns.
852 */
853 std r1,PACAR1(r13)
854 std r6,PACASAVEDMSR(r13)
855
856 /* Setup our real return addr */
e58c3495
DG
857 LOAD_REG_ADDR(r4,.rtas_return_loc)
858 clrldi r4,r4,2 /* convert to realmode address */
9994a338
PM
859 mtlr r4
860
861 li r0,0
862 ori r0,r0,MSR_EE|MSR_SE|MSR_BE|MSR_RI
863 andc r0,r6,r0
864
865 li r9,1
866 rldicr r9,r9,MSR_SF_LG,(63-MSR_SF_LG)
44c9f3cc 867 ori r9,r9,MSR_IR|MSR_DR|MSR_FE0|MSR_FE1|MSR_FP|MSR_RI
9994a338 868 andc r6,r0,r9
9994a338
PM
869 sync /* disable interrupts so SRR0/1 */
870 mtmsrd r0 /* don't get trashed */
871
e58c3495 872 LOAD_REG_ADDR(r4, rtas)
9994a338
PM
873 ld r5,RTASENTRY(r4) /* get the rtas->entry value */
874 ld r4,RTASBASE(r4) /* get the rtas->base value */
875
876 mtspr SPRN_SRR0,r5
877 mtspr SPRN_SRR1,r6
878 rfid
879 b . /* prevent speculative execution */
880
881_STATIC(rtas_return_loc)
882 /* relocation is off at this point */
2dd60d79 883 GET_PACA(r4)
e58c3495 884 clrldi r4,r4,2 /* convert to realmode address */
9994a338 885
e31aa453
PM
886 bcl 20,31,$+4
8870: mflr r3
888 ld r3,(1f-0b)(r3) /* get &.rtas_restore_regs */
889
9994a338
PM
890 mfmsr r6
891 li r0,MSR_RI
892 andc r6,r6,r0
893 sync
894 mtmsrd r6
895
896 ld r1,PACAR1(r4) /* Restore our SP */
9994a338
PM
897 ld r4,PACASAVEDMSR(r4) /* Restore our MSR */
898
899 mtspr SPRN_SRR0,r3
900 mtspr SPRN_SRR1,r4
901 rfid
902 b . /* prevent speculative execution */
903
e31aa453
PM
904 .align 3
9051: .llong .rtas_restore_regs
906
9994a338
PM
907_STATIC(rtas_restore_regs)
908 /* relocation is on at this point */
909 REST_GPR(2, r1) /* Restore the TOC */
910 REST_GPR(13, r1) /* Restore paca */
911 REST_8GPRS(14, r1) /* Restore the non-volatiles */
912 REST_10GPRS(22, r1) /* ditto */
913
2dd60d79 914 GET_PACA(r13)
9994a338
PM
915
916 ld r4,_CCR(r1)
917 mtcr r4
918 ld r5,_CTR(r1)
919 mtctr r5
920 ld r6,_XER(r1)
921 mtspr SPRN_XER,r6
922 ld r7,_DAR(r1)
923 mtdar r7
924 ld r8,_DSISR(r1)
925 mtdsisr r8
9994a338
PM
926
927 addi r1,r1,RTAS_FRAME_SIZE /* Unstack our frame */
928 ld r0,16(r1) /* get return address */
929
930 mtlr r0
931 blr /* return to caller */
932
933#endif /* CONFIG_PPC_RTAS */
934
9994a338
PM
935_GLOBAL(enter_prom)
936 mflr r0
937 std r0,16(r1)
938 stdu r1,-PROM_FRAME_SIZE(r1) /* Save SP and create stack space */
939
940 /* Because PROM is running in 32b mode, it clobbers the high order half
941 * of all registers that it saves. We therefore save those registers
942 * PROM might touch to the stack. (r0, r3-r13 are caller saved)
943 */
6c171994 944 SAVE_GPR(2, r1)
9994a338
PM
945 SAVE_GPR(13, r1)
946 SAVE_8GPRS(14, r1)
947 SAVE_10GPRS(22, r1)
6c171994 948 mfcr r10
9994a338 949 mfmsr r11
6c171994 950 std r10,_CCR(r1)
9994a338
PM
951 std r11,_MSR(r1)
952
953 /* Get the PROM entrypoint */
6c171994 954 mtlr r4
9994a338
PM
955
956 /* Switch MSR to 32 bits mode
957 */
2d27cfd3
BH
958#ifdef CONFIG_PPC_BOOK3E
959 rlwinm r11,r11,0,1,31
960 mtmsr r11
961#else /* CONFIG_PPC_BOOK3E */
9994a338
PM
962 mfmsr r11
963 li r12,1
964 rldicr r12,r12,MSR_SF_LG,(63-MSR_SF_LG)
965 andc r11,r11,r12
966 li r12,1
967 rldicr r12,r12,MSR_ISF_LG,(63-MSR_ISF_LG)
968 andc r11,r11,r12
969 mtmsrd r11
2d27cfd3 970#endif /* CONFIG_PPC_BOOK3E */
9994a338
PM
971 isync
972
6c171994 973 /* Enter PROM here... */
9994a338
PM
974 blrl
975
976 /* Just make sure that r1 top 32 bits didn't get
977 * corrupt by OF
978 */
979 rldicl r1,r1,0,32
980
981 /* Restore the MSR (back to 64 bits) */
982 ld r0,_MSR(r1)
6c171994 983 MTMSRD(r0)
9994a338
PM
984 isync
985
986 /* Restore other registers */
987 REST_GPR(2, r1)
988 REST_GPR(13, r1)
989 REST_8GPRS(14, r1)
990 REST_10GPRS(22, r1)
991 ld r4,_CCR(r1)
992 mtcr r4
9994a338
PM
993
994 addi r1,r1,PROM_FRAME_SIZE
995 ld r0,16(r1)
996 mtlr r0
997 blr
4e491d14 998
606576ce 999#ifdef CONFIG_FUNCTION_TRACER
4e491d14
SR
1000#ifdef CONFIG_DYNAMIC_FTRACE
1001_GLOBAL(mcount)
1002_GLOBAL(_mcount)
4e491d14
SR
1003 blr
1004
1005_GLOBAL(ftrace_caller)
1006 /* Taken from output of objdump from lib64/glibc */
1007 mflr r3
1008 ld r11, 0(r1)
1009 stdu r1, -112(r1)
1010 std r3, 128(r1)
1011 ld r4, 16(r11)
395a59d0 1012 subi r3, r3, MCOUNT_INSN_SIZE
4e491d14
SR
1013.globl ftrace_call
1014ftrace_call:
1015 bl ftrace_stub
1016 nop
46542888
SR
1017#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1018.globl ftrace_graph_call
1019ftrace_graph_call:
1020 b ftrace_graph_stub
1021_GLOBAL(ftrace_graph_stub)
1022#endif
4e491d14
SR
1023 ld r0, 128(r1)
1024 mtlr r0
1025 addi r1, r1, 112
1026_GLOBAL(ftrace_stub)
1027 blr
1028#else
1029_GLOBAL(mcount)
1030 blr
1031
1032_GLOBAL(_mcount)
1033 /* Taken from output of objdump from lib64/glibc */
1034 mflr r3
1035 ld r11, 0(r1)
1036 stdu r1, -112(r1)
1037 std r3, 128(r1)
1038 ld r4, 16(r11)
1039
395a59d0 1040 subi r3, r3, MCOUNT_INSN_SIZE
4e491d14
SR
1041 LOAD_REG_ADDR(r5,ftrace_trace_function)
1042 ld r5,0(r5)
1043 ld r5,0(r5)
1044 mtctr r5
1045 bctrl
4e491d14 1046 nop
6794c782
SR
1047
1048
1049#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1050 b ftrace_graph_caller
1051#endif
4e491d14
SR
1052 ld r0, 128(r1)
1053 mtlr r0
1054 addi r1, r1, 112
1055_GLOBAL(ftrace_stub)
1056 blr
1057
6794c782
SR
1058#endif /* CONFIG_DYNAMIC_FTRACE */
1059
1060#ifdef CONFIG_FUNCTION_GRAPH_TRACER
46542888 1061_GLOBAL(ftrace_graph_caller)
6794c782
SR
1062 /* load r4 with local address */
1063 ld r4, 128(r1)
1064 subi r4, r4, MCOUNT_INSN_SIZE
1065
1066 /* get the parent address */
1067 ld r11, 112(r1)
1068 addi r3, r11, 16
1069
1070 bl .prepare_ftrace_return
1071 nop
1072
1073 ld r0, 128(r1)
1074 mtlr r0
1075 addi r1, r1, 112
1076 blr
1077
1078_GLOBAL(return_to_handler)
bb725340
SR
1079 /* need to save return values */
1080 std r4, -24(r1)
1081 std r3, -16(r1)
1082 std r31, -8(r1)
1083 mr r31, r1
1084 stdu r1, -112(r1)
1085
1086 bl .ftrace_return_to_handler
1087 nop
1088
1089 /* return value has real return address */
1090 mtlr r3
1091
1092 ld r1, 0(r1)
1093 ld r4, -24(r1)
1094 ld r3, -16(r1)
1095 ld r31, -8(r1)
1096
1097 /* Jump back to real return address */
1098 blr
1099
1100_GLOBAL(mod_return_to_handler)
6794c782
SR
1101 /* need to save return values */
1102 std r4, -32(r1)
1103 std r3, -24(r1)
1104 /* save TOC */
1105 std r2, -16(r1)
1106 std r31, -8(r1)
1107 mr r31, r1
1108 stdu r1, -112(r1)
1109
bb725340
SR
1110 /*
1111 * We are in a module using the module's TOC.
1112 * Switch to our TOC to run inside the core kernel.
1113 */
be10ab10 1114 ld r2, PACATOC(r13)
6794c782
SR
1115
1116 bl .ftrace_return_to_handler
1117 nop
1118
1119 /* return value has real return address */
1120 mtlr r3
1121
1122 ld r1, 0(r1)
1123 ld r4, -32(r1)
1124 ld r3, -24(r1)
1125 ld r2, -16(r1)
1126 ld r31, -8(r1)
1127
1128 /* Jump back to real return address */
1129 blr
1130#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1131#endif /* CONFIG_FUNCTION_TRACER */
This page took 0.72742 seconds and 5 git commands to generate.