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