blob: fbbd3f6f006453dc217dfa8e818a1860156edbc1 [file] [log] [blame]
Paul Mackerras9994a332005-10-10 22:36:14 +10001/*
Paul Mackerras9994a332005-10-10 22:36:14 +10002 * 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
Paul Mackerras9994a332005-10-10 22:36:14 +100021#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>
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100030#include <asm/firmware.h>
David Woodhouse007d88d2007-01-01 18:45:34 +000031#include <asm/bug.h>
Paul Mackerras9994a332005-10-10 22:36:14 +100032
33/*
34 * System calls.
35 */
36 .section ".toc","aw"
37.SYS_CALL_TABLE:
38 .tc .sys_call_table[TC],.sys_call_table
39
40/* This value is used to mark exception frames on the stack. */
41exception_marker:
42 .tc ID_72656773_68657265[TC],0x7265677368657265
43
44 .section ".text"
45 .align 7
46
47#undef SHOW_SYSCALLS
48
49 .globl system_call_common
50system_call_common:
51 andi. r10,r12,MSR_PR
52 mr r10,r1
53 addi r1,r1,-INT_FRAME_SIZE
54 beq- 1f
55 ld r1,PACAKSAVE(r13)
561: std r10,0(r1)
Anton Blanchardbd19c892006-06-11 01:15:55 +100057 crclr so
Paul Mackerras9994a332005-10-10 22:36:14 +100058 std r11,_NIP(r1)
59 std r12,_MSR(r1)
60 std r0,GPR0(r1)
61 std r10,GPR1(r1)
Paul Mackerrasc6622f62006-02-24 10:06:59 +110062 ACCOUNT_CPU_USER_ENTRY(r10, r11)
Paul Mackerras9994a332005-10-10 22:36:14 +100063 std r2,GPR2(r1)
64 std r3,GPR3(r1)
65 std r4,GPR4(r1)
66 std r5,GPR5(r1)
67 std r6,GPR6(r1)
68 std r7,GPR7(r1)
69 std r8,GPR8(r1)
70 li r11,0
71 std r11,GPR9(r1)
72 std r11,GPR10(r1)
73 std r11,GPR11(r1)
74 std r11,GPR12(r1)
75 std r9,GPR13(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +100076 mfcr r9
77 mflr r10
78 li r11,0xc01
79 std r9,_CCR(r1)
80 std r10,_LINK(r1)
81 std r11,_TRAP(r1)
82 mfxer r9
83 mfctr r10
84 std r9,_XER(r1)
85 std r10,_CTR(r1)
86 std r3,ORIG_GPR3(r1)
87 ld r2,PACATOC(r13)
88 addi r9,r1,STACK_FRAME_OVERHEAD
89 ld r11,exception_marker@toc(r2)
90 std r11,-16(r9) /* "regshere" marker */
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100091 li r10,1
92 stb r10,PACASOFTIRQEN(r13)
93 stb r10,PACAHARDIRQEN(r13)
94 std r10,SOFTE(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +100095#ifdef CONFIG_PPC_ISERIES
Stephen Rothwell3f639ee2006-09-25 18:19:00 +100096BEGIN_FW_FTR_SECTION
Paul Mackerras9994a332005-10-10 22:36:14 +100097 /* Hack for handling interrupts when soft-enabling on iSeries */
98 cmpdi cr1,r0,0x5555 /* syscall 0x5555 */
99 andi. r10,r12,MSR_PR /* from kernel */
100 crand 4*cr0+eq,4*cr1+eq,4*cr0+eq
Stephen Rothwellc7056772006-11-27 14:59:50 +1100101 bne 2f
102 b hardware_interrupt_entry
1032:
Stephen Rothwell3f639ee2006-09-25 18:19:00 +1000104END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
Paul Mackerras9994a332005-10-10 22:36:14 +1000105#endif
106 mfmsr r11
107 ori r11,r11,MSR_EE
108 mtmsrd r11,1
109
110#ifdef SHOW_SYSCALLS
111 bl .do_show_syscall
112 REST_GPR(0,r1)
113 REST_4GPRS(3,r1)
114 REST_2GPRS(7,r1)
115 addi r9,r1,STACK_FRAME_OVERHEAD
116#endif
117 clrrdi r11,r1,THREAD_SHIFT
Paul Mackerras9994a332005-10-10 22:36:14 +1000118 ld r10,TI_FLAGS(r11)
Paul Mackerras9994a332005-10-10 22:36:14 +1000119 andi. r11,r10,_TIF_SYSCALL_T_OR_A
120 bne- syscall_dotrace
121syscall_dotrace_cont:
122 cmpldi 0,r0,NR_syscalls
123 bge- syscall_enosys
124
125system_call: /* label this so stack traces look sane */
126/*
127 * Need to vector to 32 Bit or default sys_call_table here,
128 * based on caller's run-mode / personality.
129 */
130 ld r11,.SYS_CALL_TABLE@toc(2)
131 andi. r10,r10,_TIF_32BIT
132 beq 15f
133 addi r11,r11,8 /* use 32-bit syscall entries */
134 clrldi r3,r3,32
135 clrldi r4,r4,32
136 clrldi r5,r5,32
137 clrldi r6,r6,32
138 clrldi r7,r7,32
139 clrldi r8,r8,32
14015:
141 slwi r0,r0,4
142 ldx r10,r11,r0 /* Fetch system call handler [ptr] */
143 mtctr r10
144 bctrl /* Call handler */
145
146syscall_exit:
Paul Mackerras9994a332005-10-10 22:36:14 +1000147 std r3,RESULT(r1)
David Woodhouse401d1f02005-11-15 18:52:18 +0000148#ifdef SHOW_SYSCALLS
149 bl .do_show_syscall_exit
150 ld r3,RESULT(r1)
151#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000152 clrrdi r12,r1,THREAD_SHIFT
Paul Mackerras9994a332005-10-10 22:36:14 +1000153
154 /* disable interrupts so current_thread_info()->flags can't change,
155 and so that we don't get interrupted after loading SRR0/1. */
156 ld r8,_MSR(r1)
157 andi. r10,r8,MSR_RI
158 beq- unrecov_restore
159 mfmsr r10
160 rldicl r10,r10,48,1
161 rotldi r10,r10,16
162 mtmsrd r10,1
163 ld r9,TI_FLAGS(r12)
David Woodhouse401d1f02005-11-15 18:52:18 +0000164 li r11,-_LAST_ERRNO
Paul Mackerras1bd79332006-03-08 13:24:22 +1100165 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
Paul Mackerras9994a332005-10-10 22:36:14 +1000166 bne- syscall_exit_work
David Woodhouse401d1f02005-11-15 18:52:18 +0000167 cmpld r3,r11
168 ld r5,_CCR(r1)
169 bge- syscall_error
170syscall_error_cont:
Paul Mackerras9994a332005-10-10 22:36:14 +1000171 ld r7,_NIP(r1)
172 stdcx. r0,0,r1 /* to clear the reservation */
173 andi. r6,r8,MSR_PR
174 ld r4,_LINK(r1)
Paul Mackerrase56a6e22007-02-07 13:13:26 +1100175 /*
176 * Clear RI before restoring r13. If we are returning to
177 * userspace and we take an exception after restoring r13,
178 * we end up corrupting the userspace r13 value.
179 */
180 li r12,MSR_RI
181 andc r11,r10,r12
182 mtmsrd r11,1 /* clear MSR.RI */
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100183 beq- 1f
184 ACCOUNT_CPU_USER_EXIT(r11, r12)
185 ld r13,GPR13(r1) /* only restore r13 if returning to usermode */
Paul Mackerras9994a332005-10-10 22:36:14 +10001861: ld r2,GPR2(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000187 ld r1,GPR1(r1)
188 mtlr r4
189 mtcr r5
190 mtspr SPRN_SRR0,r7
191 mtspr SPRN_SRR1,r8
192 rfid
193 b . /* prevent speculative execution */
194
David Woodhouse401d1f02005-11-15 18:52:18 +0000195syscall_error:
Paul Mackerras9994a332005-10-10 22:36:14 +1000196 oris r5,r5,0x1000 /* Set SO bit in CR */
David Woodhouse401d1f02005-11-15 18:52:18 +0000197 neg r3,r3
Paul Mackerras9994a332005-10-10 22:36:14 +1000198 std r5,_CCR(r1)
199 b syscall_error_cont
David Woodhouse401d1f02005-11-15 18:52:18 +0000200
Paul Mackerras9994a332005-10-10 22:36:14 +1000201/* Traced system call support */
202syscall_dotrace:
203 bl .save_nvgprs
204 addi r3,r1,STACK_FRAME_OVERHEAD
205 bl .do_syscall_trace_enter
206 ld r0,GPR0(r1) /* Restore original registers */
207 ld r3,GPR3(r1)
208 ld r4,GPR4(r1)
209 ld r5,GPR5(r1)
210 ld r6,GPR6(r1)
211 ld r7,GPR7(r1)
212 ld r8,GPR8(r1)
213 addi r9,r1,STACK_FRAME_OVERHEAD
214 clrrdi r10,r1,THREAD_SHIFT
215 ld r10,TI_FLAGS(r10)
216 b syscall_dotrace_cont
217
David Woodhouse401d1f02005-11-15 18:52:18 +0000218syscall_enosys:
219 li r3,-ENOSYS
220 b syscall_exit
221
222syscall_exit_work:
223 /* If TIF_RESTOREALL is set, don't scribble on either r3 or ccr.
224 If TIF_NOERROR is set, just save r3 as it is. */
225
226 andi. r0,r9,_TIF_RESTOREALL
Paul Mackerras1bd79332006-03-08 13:24:22 +1100227 beq+ 0f
228 REST_NVGPRS(r1)
229 b 2f
2300: cmpld r3,r11 /* r10 is -LAST_ERRNO */
David Woodhouse401d1f02005-11-15 18:52:18 +0000231 blt+ 1f
232 andi. r0,r9,_TIF_NOERROR
233 bne- 1f
234 ld r5,_CCR(r1)
235 neg r3,r3
236 oris r5,r5,0x1000 /* Set SO bit in CR */
237 std r5,_CCR(r1)
2381: std r3,GPR3(r1)
2392: andi. r0,r9,(_TIF_PERSYSCALL_MASK)
240 beq 4f
241
Paul Mackerras1bd79332006-03-08 13:24:22 +1100242 /* Clear per-syscall TIF flags if any are set. */
David Woodhouse401d1f02005-11-15 18:52:18 +0000243
244 li r11,_TIF_PERSYSCALL_MASK
245 addi r12,r12,TI_FLAGS
2463: ldarx r10,0,r12
247 andc r10,r10,r11
248 stdcx. r10,0,r12
249 bne- 3b
250 subi r12,r12,TI_FLAGS
Paul Mackerras1bd79332006-03-08 13:24:22 +1100251
2524: /* Anything else left to do? */
253 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP)
David Woodhouse401d1f02005-11-15 18:52:18 +0000254 beq .ret_from_except_lite
255
256 /* Re-enable interrupts */
257 mfmsr r10
258 ori r10,r10,MSR_EE
259 mtmsrd r10,1
260
Paul Mackerras1bd79332006-03-08 13:24:22 +1100261 bl .save_nvgprs
Paul Mackerras9994a332005-10-10 22:36:14 +1000262 addi r3,r1,STACK_FRAME_OVERHEAD
263 bl .do_syscall_trace_leave
Paul Mackerras1bd79332006-03-08 13:24:22 +1100264 b .ret_from_except
Paul Mackerras9994a332005-10-10 22:36:14 +1000265
266/* Save non-volatile GPRs, if not already saved. */
267_GLOBAL(save_nvgprs)
268 ld r11,_TRAP(r1)
269 andi. r0,r11,1
270 beqlr-
271 SAVE_NVGPRS(r1)
272 clrrdi r0,r11,1
273 std r0,_TRAP(r1)
274 blr
275
David Woodhouse401d1f02005-11-15 18:52:18 +0000276
Paul Mackerras9994a332005-10-10 22:36:14 +1000277/*
278 * The sigsuspend and rt_sigsuspend system calls can call do_signal
279 * and thus put the process into the stopped state where we might
280 * want to examine its user state with ptrace. Therefore we need
281 * to save all the nonvolatile registers (r14 - r31) before calling
282 * the C code. Similarly, fork, vfork and clone need the full
283 * register state on the stack so that it can be copied to the child.
284 */
Paul Mackerras9994a332005-10-10 22:36:14 +1000285
286_GLOBAL(ppc_fork)
287 bl .save_nvgprs
288 bl .sys_fork
289 b syscall_exit
290
291_GLOBAL(ppc_vfork)
292 bl .save_nvgprs
293 bl .sys_vfork
294 b syscall_exit
295
296_GLOBAL(ppc_clone)
297 bl .save_nvgprs
298 bl .sys_clone
299 b syscall_exit
300
Paul Mackerras1bd79332006-03-08 13:24:22 +1100301_GLOBAL(ppc32_swapcontext)
302 bl .save_nvgprs
303 bl .compat_sys_swapcontext
304 b syscall_exit
305
306_GLOBAL(ppc64_swapcontext)
307 bl .save_nvgprs
308 bl .sys_swapcontext
309 b syscall_exit
310
Paul Mackerras9994a332005-10-10 22:36:14 +1000311_GLOBAL(ret_from_fork)
312 bl .schedule_tail
313 REST_NVGPRS(r1)
314 li r3,0
315 b syscall_exit
316
317/*
318 * This routine switches between two different tasks. The process
319 * state of one is saved on its kernel stack. Then the state
320 * of the other is restored from its kernel stack. The memory
321 * management hardware is updated to the second process's state.
322 * Finally, we can return to the second process, via ret_from_except.
323 * On entry, r3 points to the THREAD for the current task, r4
324 * points to the THREAD for the new task.
325 *
326 * Note: there are two ways to get to the "going out" portion
327 * of this code; either by coming in via the entry (_switch)
328 * or via "fork" which must set up an environment equivalent
329 * to the "_switch" path. If you change this you'll have to change
330 * the fork code also.
331 *
332 * The code which creates the new task context is in 'copy_thread'
Jon Mason2ef94812006-01-23 10:58:20 -0600333 * in arch/powerpc/kernel/process.c
Paul Mackerras9994a332005-10-10 22:36:14 +1000334 */
335 .align 7
336_GLOBAL(_switch)
337 mflr r0
338 std r0,16(r1)
339 stdu r1,-SWITCH_FRAME_SIZE(r1)
340 /* r3-r13 are caller saved -- Cort */
341 SAVE_8GPRS(14, r1)
342 SAVE_10GPRS(22, r1)
343 mflr r20 /* Return to switch caller */
344 mfmsr r22
345 li r0, MSR_FP
346#ifdef CONFIG_ALTIVEC
347BEGIN_FTR_SECTION
348 oris r0,r0,MSR_VEC@h /* Disable altivec */
349 mfspr r24,SPRN_VRSAVE /* save vrsave register value */
350 std r24,THREAD_VRSAVE(r3)
351END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
352#endif /* CONFIG_ALTIVEC */
353 and. r0,r0,r22
354 beq+ 1f
355 andc r22,r22,r0
356 mtmsrd r22
357 isync
3581: std r20,_NIP(r1)
359 mfcr r23
360 std r23,_CCR(r1)
361 std r1,KSP(r3) /* Set old stack pointer */
362
363#ifdef CONFIG_SMP
364 /* We need a sync somewhere here to make sure that if the
365 * previous task gets rescheduled on another CPU, it sees all
366 * stores it has performed on this one.
367 */
368 sync
369#endif /* CONFIG_SMP */
370
371 addi r6,r4,-THREAD /* Convert THREAD to 'current' */
372 std r6,PACACURRENT(r13) /* Set new 'current' */
373
374 ld r8,KSP(r4) /* new stack pointer */
375BEGIN_FTR_SECTION
376 clrrdi r6,r8,28 /* get its ESID */
377 clrrdi r9,r1,28 /* get current sp ESID */
378 clrldi. r0,r6,2 /* is new ESID c00000000? */
379 cmpd cr1,r6,r9 /* or is new ESID the same as current ESID? */
380 cror eq,4*cr1+eq,eq
381 beq 2f /* if yes, don't slbie it */
382
383 /* Bolt in the new stack SLB entry */
384 ld r7,KSP_VSID(r4) /* Get new stack's VSID */
385 oris r0,r6,(SLB_ESID_V)@h
386 ori r0,r0,(SLB_NUM_BOLTED-1)@l
Michael Neuling2f6093c2006-08-07 16:19:19 +1000387
Michael Neuling00efee72007-08-24 16:58:37 +1000388 /* Update the last bolted SLB. No write barriers are needed
389 * here, provided we only update the current CPU's SLB shadow
390 * buffer.
391 */
Michael Neuling2f6093c2006-08-07 16:19:19 +1000392 ld r9,PACA_SLBSHADOWPTR(r13)
Michael Neuling11a27ad2006-08-09 17:00:30 +1000393 li r12,0
394 std r12,SLBSHADOW_STACKESID(r9) /* Clear ESID */
395 std r7,SLBSHADOW_STACKVSID(r9) /* Save VSID */
396 std r0,SLBSHADOW_STACKESID(r9) /* Save ESID */
Michael Neuling2f6093c2006-08-07 16:19:19 +1000397
Paul Mackerras9994a332005-10-10 22:36:14 +1000398 slbie r6
399 slbie r6 /* Workaround POWER5 < DD2.1 issue */
400 slbmte r7,r0
401 isync
402
4032:
404END_FTR_SECTION_IFSET(CPU_FTR_SLB)
405 clrrdi r7,r8,THREAD_SHIFT /* base of new stack */
406 /* Note: this uses SWITCH_FRAME_SIZE rather than INT_FRAME_SIZE
407 because we don't need to leave the 288-byte ABI gap at the
408 top of the kernel stack. */
409 addi r7,r7,THREAD_SIZE-SWITCH_FRAME_SIZE
410
411 mr r1,r8 /* start using new stack pointer */
412 std r7,PACAKSAVE(r13)
413
414 ld r6,_CCR(r1)
415 mtcrf 0xFF,r6
416
417#ifdef CONFIG_ALTIVEC
418BEGIN_FTR_SECTION
419 ld r0,THREAD_VRSAVE(r4)
420 mtspr SPRN_VRSAVE,r0 /* if G4, restore VRSAVE reg */
421END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
422#endif /* CONFIG_ALTIVEC */
423
424 /* r3-r13 are destroyed -- Cort */
425 REST_8GPRS(14, r1)
426 REST_10GPRS(22, r1)
427
428 /* convert old thread to its task_struct for return value */
429 addi r3,r3,-THREAD
430 ld r7,_NIP(r1) /* Return to _switch caller in new task */
431 mtlr r7
432 addi r1,r1,SWITCH_FRAME_SIZE
433 blr
434
435 .align 7
436_GLOBAL(ret_from_except)
437 ld r11,_TRAP(r1)
438 andi. r0,r11,1
439 bne .ret_from_except_lite
440 REST_NVGPRS(r1)
441
442_GLOBAL(ret_from_except_lite)
443 /*
444 * Disable interrupts so that current_thread_info()->flags
445 * can't change between when we test it and when we return
446 * from the interrupt.
447 */
448 mfmsr r10 /* Get current interrupt state */
449 rldicl r9,r10,48,1 /* clear MSR_EE */
450 rotldi r9,r9,16
451 mtmsrd r9,1 /* Update machine state */
452
453#ifdef CONFIG_PREEMPT
454 clrrdi r9,r1,THREAD_SHIFT /* current_thread_info() */
455 li r0,_TIF_NEED_RESCHED /* bits to check */
456 ld r3,_MSR(r1)
457 ld r4,TI_FLAGS(r9)
458 /* Move MSR_PR bit in r3 to _TIF_SIGPENDING position in r0 */
459 rlwimi r0,r3,32+TIF_SIGPENDING-MSR_PR_LG,_TIF_SIGPENDING
460 and. r0,r4,r0 /* check NEED_RESCHED and maybe SIGPENDING */
461 bne do_work
462
463#else /* !CONFIG_PREEMPT */
464 ld r3,_MSR(r1) /* Returning to user mode? */
465 andi. r3,r3,MSR_PR
466 beq restore /* if not, just restore regs and return */
467
468 /* Check current_thread_info()->flags */
469 clrrdi r9,r1,THREAD_SHIFT
470 ld r4,TI_FLAGS(r9)
471 andi. r0,r4,_TIF_USER_WORK_MASK
472 bne do_work
473#endif
474
475restore:
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000476 ld r5,SOFTE(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000477#ifdef CONFIG_PPC_ISERIES
Stephen Rothwell3f639ee2006-09-25 18:19:00 +1000478BEGIN_FW_FTR_SECTION
Paul Mackerras9994a332005-10-10 22:36:14 +1000479 cmpdi 0,r5,0
480 beq 4f
481 /* Check for pending interrupts (iSeries) */
David Gibson3356bb92006-01-13 10:26:42 +1100482 ld r3,PACALPPACAPTR(r13)
483 ld r3,LPPACAANYINT(r3)
Paul Mackerras9994a332005-10-10 22:36:14 +1000484 cmpdi r3,0
485 beq+ 4f /* skip do_IRQ if no interrupts */
486
487 li r3,0
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000488 stb r3,PACASOFTIRQEN(r13) /* ensure we are soft-disabled */
Paul Mackerras9994a332005-10-10 22:36:14 +1000489 ori r10,r10,MSR_EE
490 mtmsrd r10 /* hard-enable again */
491 addi r3,r1,STACK_FRAME_OVERHEAD
492 bl .do_IRQ
493 b .ret_from_except_lite /* loop back and handle more */
Paul Mackerrasd04c56f2006-10-04 16:47:49 +10004944:
Stephen Rothwell3f639ee2006-09-25 18:19:00 +1000495END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
Paul Mackerras9994a332005-10-10 22:36:14 +1000496#endif
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000497 stb r5,PACASOFTIRQEN(r13)
Paul Mackerras9994a332005-10-10 22:36:14 +1000498
Paul Mackerrasb0a779d2006-10-18 10:11:22 +1000499 /* extract EE bit and use it to restore paca->hard_enabled */
Paul Mackerrase56a6e22007-02-07 13:13:26 +1100500 ld r3,_MSR(r1)
Paul Mackerrasb0a779d2006-10-18 10:11:22 +1000501 rldicl r4,r3,49,63 /* r0 = (r3 >> 15) & 1 */
502 stb r4,PACAHARDIRQEN(r13)
503
Paul Mackerrase56a6e22007-02-07 13:13:26 +1100504 ld r4,_CTR(r1)
505 ld r0,_LINK(r1)
506 mtctr r4
507 mtlr r0
508 ld r4,_XER(r1)
509 mtspr SPRN_XER,r4
510
511 REST_8GPRS(5, r1)
512
513 andi. r0,r3,MSR_RI
514 beq- unrecov_restore
515
516 stdcx. r0,0,r1 /* to clear the reservation */
517
518 /*
519 * Clear RI before restoring r13. If we are returning to
520 * userspace and we take an exception after restoring r13,
521 * we end up corrupting the userspace r13 value.
522 */
523 mfmsr r4
524 andc r4,r4,r0 /* r0 contains MSR_RI here */
525 mtmsrd r4,1
Paul Mackerras9994a332005-10-10 22:36:14 +1000526
527 /*
528 * r13 is our per cpu area, only restore it if we are returning to
529 * userspace
530 */
Paul Mackerrase56a6e22007-02-07 13:13:26 +1100531 andi. r0,r3,MSR_PR
Paul Mackerras9994a332005-10-10 22:36:14 +1000532 beq 1f
Paul Mackerrase56a6e22007-02-07 13:13:26 +1100533 ACCOUNT_CPU_USER_EXIT(r2, r4)
Paul Mackerras9994a332005-10-10 22:36:14 +1000534 REST_GPR(13, r1)
5351:
Paul Mackerrase56a6e22007-02-07 13:13:26 +1100536 mtspr SPRN_SRR1,r3
Paul Mackerras9994a332005-10-10 22:36:14 +1000537
538 ld r2,_CCR(r1)
539 mtcrf 0xFF,r2
540 ld r2,_NIP(r1)
541 mtspr SPRN_SRR0,r2
542
543 ld r0,GPR0(r1)
544 ld r2,GPR2(r1)
545 ld r3,GPR3(r1)
546 ld r4,GPR4(r1)
547 ld r1,GPR1(r1)
548
549 rfid
550 b . /* prevent speculative execution */
551
Paul Mackerras9994a332005-10-10 22:36:14 +1000552do_work:
553#ifdef CONFIG_PREEMPT
554 andi. r0,r3,MSR_PR /* Returning to user mode? */
555 bne user_work
556 /* Check that preempt_count() == 0 and interrupts are enabled */
557 lwz r8,TI_PREEMPT(r9)
558 cmpwi cr1,r8,0
Paul Mackerras9994a332005-10-10 22:36:14 +1000559 ld r0,SOFTE(r1)
560 cmpdi r0,0
Paul Mackerras9994a332005-10-10 22:36:14 +1000561 crandc eq,cr1*4+eq,eq
562 bne restore
563 /* here we are preempting the current task */
5641:
Paul Mackerras9994a332005-10-10 22:36:14 +1000565 li r0,1
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000566 stb r0,PACASOFTIRQEN(r13)
567 stb r0,PACAHARDIRQEN(r13)
Paul Mackerras9994a332005-10-10 22:36:14 +1000568 ori r10,r10,MSR_EE
569 mtmsrd r10,1 /* reenable interrupts */
570 bl .preempt_schedule
571 mfmsr r10
572 clrrdi r9,r1,THREAD_SHIFT
573 rldicl r10,r10,48,1 /* disable interrupts again */
574 rotldi r10,r10,16
575 mtmsrd r10,1
576 ld r4,TI_FLAGS(r9)
577 andi. r0,r4,_TIF_NEED_RESCHED
578 bne 1b
579 b restore
580
581user_work:
582#endif
583 /* Enable interrupts */
584 ori r10,r10,MSR_EE
585 mtmsrd r10,1
586
587 andi. r0,r4,_TIF_NEED_RESCHED
588 beq 1f
589 bl .schedule
590 b .ret_from_except_lite
591
5921: bl .save_nvgprs
593 li r3,0
594 addi r4,r1,STACK_FRAME_OVERHEAD
595 bl .do_signal
596 b .ret_from_except
597
598unrecov_restore:
599 addi r3,r1,STACK_FRAME_OVERHEAD
600 bl .unrecoverable_exception
601 b unrecov_restore
602
603#ifdef CONFIG_PPC_RTAS
604/*
605 * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
606 * called with the MMU off.
607 *
608 * In addition, we need to be in 32b mode, at least for now.
609 *
610 * Note: r3 is an input parameter to rtas, so don't trash it...
611 */
612_GLOBAL(enter_rtas)
613 mflr r0
614 std r0,16(r1)
615 stdu r1,-RTAS_FRAME_SIZE(r1) /* Save SP and create stack space. */
616
617 /* Because RTAS is running in 32b mode, it clobbers the high order half
618 * of all registers that it saves. We therefore save those registers
619 * RTAS might touch to the stack. (r0, r3-r13 are caller saved)
620 */
621 SAVE_GPR(2, r1) /* Save the TOC */
622 SAVE_GPR(13, r1) /* Save paca */
623 SAVE_8GPRS(14, r1) /* Save the non-volatiles */
624 SAVE_10GPRS(22, r1) /* ditto */
625
626 mfcr r4
627 std r4,_CCR(r1)
628 mfctr r5
629 std r5,_CTR(r1)
630 mfspr r6,SPRN_XER
631 std r6,_XER(r1)
632 mfdar r7
633 std r7,_DAR(r1)
634 mfdsisr r8
635 std r8,_DSISR(r1)
636 mfsrr0 r9
637 std r9,_SRR0(r1)
638 mfsrr1 r10
639 std r10,_SRR1(r1)
640
Mike Kravetz9fe901d2006-03-27 15:20:00 -0800641 /* Temporary workaround to clear CR until RTAS can be modified to
642 * ignore all bits.
643 */
644 li r0,0
645 mtcr r0
646
David Woodhouse007d88d2007-01-01 18:45:34 +0000647#ifdef CONFIG_BUG
Paul Mackerras9994a332005-10-10 22:36:14 +1000648 /* There is no way it is acceptable to get here with interrupts enabled,
649 * check it with the asm equivalent of WARN_ON
650 */
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000651 lbz r0,PACASOFTIRQEN(r13)
Paul Mackerras9994a332005-10-10 22:36:14 +10006521: tdnei r0,0
David Woodhouse007d88d2007-01-01 18:45:34 +0000653 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
654#endif
655
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000656 /* Hard-disable interrupts */
657 mfmsr r6
658 rldicl r7,r6,48,1
659 rotldi r7,r7,16
660 mtmsrd r7,1
661
Paul Mackerras9994a332005-10-10 22:36:14 +1000662 /* Unfortunately, the stack pointer and the MSR are also clobbered,
663 * so they are saved in the PACA which allows us to restore
664 * our original state after RTAS returns.
665 */
666 std r1,PACAR1(r13)
667 std r6,PACASAVEDMSR(r13)
668
669 /* Setup our real return addr */
David Gibsone58c3492006-01-13 14:56:25 +1100670 LOAD_REG_ADDR(r4,.rtas_return_loc)
671 clrldi r4,r4,2 /* convert to realmode address */
Paul Mackerras9994a332005-10-10 22:36:14 +1000672 mtlr r4
673
674 li r0,0
675 ori r0,r0,MSR_EE|MSR_SE|MSR_BE|MSR_RI
676 andc r0,r6,r0
677
678 li r9,1
679 rldicr r9,r9,MSR_SF_LG,(63-MSR_SF_LG)
680 ori r9,r9,MSR_IR|MSR_DR|MSR_FE0|MSR_FE1|MSR_FP
681 andc r6,r0,r9
682 ori r6,r6,MSR_RI
683 sync /* disable interrupts so SRR0/1 */
684 mtmsrd r0 /* don't get trashed */
685
David Gibsone58c3492006-01-13 14:56:25 +1100686 LOAD_REG_ADDR(r4, rtas)
Paul Mackerras9994a332005-10-10 22:36:14 +1000687 ld r5,RTASENTRY(r4) /* get the rtas->entry value */
688 ld r4,RTASBASE(r4) /* get the rtas->base value */
689
690 mtspr SPRN_SRR0,r5
691 mtspr SPRN_SRR1,r6
692 rfid
693 b . /* prevent speculative execution */
694
695_STATIC(rtas_return_loc)
696 /* relocation is off at this point */
697 mfspr r4,SPRN_SPRG3 /* Get PACA */
David Gibsone58c3492006-01-13 14:56:25 +1100698 clrldi r4,r4,2 /* convert to realmode address */
Paul Mackerras9994a332005-10-10 22:36:14 +1000699
700 mfmsr r6
701 li r0,MSR_RI
702 andc r6,r6,r0
703 sync
704 mtmsrd r6
705
706 ld r1,PACAR1(r4) /* Restore our SP */
David Gibsone58c3492006-01-13 14:56:25 +1100707 LOAD_REG_IMMEDIATE(r3,.rtas_restore_regs)
Paul Mackerras9994a332005-10-10 22:36:14 +1000708 ld r4,PACASAVEDMSR(r4) /* Restore our MSR */
709
710 mtspr SPRN_SRR0,r3
711 mtspr SPRN_SRR1,r4
712 rfid
713 b . /* prevent speculative execution */
714
715_STATIC(rtas_restore_regs)
716 /* relocation is on at this point */
717 REST_GPR(2, r1) /* Restore the TOC */
718 REST_GPR(13, r1) /* Restore paca */
719 REST_8GPRS(14, r1) /* Restore the non-volatiles */
720 REST_10GPRS(22, r1) /* ditto */
721
722 mfspr r13,SPRN_SPRG3
723
724 ld r4,_CCR(r1)
725 mtcr r4
726 ld r5,_CTR(r1)
727 mtctr r5
728 ld r6,_XER(r1)
729 mtspr SPRN_XER,r6
730 ld r7,_DAR(r1)
731 mtdar r7
732 ld r8,_DSISR(r1)
733 mtdsisr r8
734 ld r9,_SRR0(r1)
735 mtsrr0 r9
736 ld r10,_SRR1(r1)
737 mtsrr1 r10
738
739 addi r1,r1,RTAS_FRAME_SIZE /* Unstack our frame */
740 ld r0,16(r1) /* get return address */
741
742 mtlr r0
743 blr /* return to caller */
744
745#endif /* CONFIG_PPC_RTAS */
746
Paul Mackerras9994a332005-10-10 22:36:14 +1000747_GLOBAL(enter_prom)
748 mflr r0
749 std r0,16(r1)
750 stdu r1,-PROM_FRAME_SIZE(r1) /* Save SP and create stack space */
751
752 /* Because PROM is running in 32b mode, it clobbers the high order half
753 * of all registers that it saves. We therefore save those registers
754 * PROM might touch to the stack. (r0, r3-r13 are caller saved)
755 */
756 SAVE_8GPRS(2, r1)
757 SAVE_GPR(13, r1)
758 SAVE_8GPRS(14, r1)
759 SAVE_10GPRS(22, r1)
760 mfcr r4
761 std r4,_CCR(r1)
762 mfctr r5
763 std r5,_CTR(r1)
764 mfspr r6,SPRN_XER
765 std r6,_XER(r1)
766 mfdar r7
767 std r7,_DAR(r1)
768 mfdsisr r8
769 std r8,_DSISR(r1)
770 mfsrr0 r9
771 std r9,_SRR0(r1)
772 mfsrr1 r10
773 std r10,_SRR1(r1)
774 mfmsr r11
775 std r11,_MSR(r1)
776
777 /* Get the PROM entrypoint */
778 ld r0,GPR4(r1)
779 mtlr r0
780
781 /* Switch MSR to 32 bits mode
782 */
783 mfmsr r11
784 li r12,1
785 rldicr r12,r12,MSR_SF_LG,(63-MSR_SF_LG)
786 andc r11,r11,r12
787 li r12,1
788 rldicr r12,r12,MSR_ISF_LG,(63-MSR_ISF_LG)
789 andc r11,r11,r12
790 mtmsrd r11
791 isync
792
793 /* Restore arguments & enter PROM here... */
794 ld r3,GPR3(r1)
795 blrl
796
797 /* Just make sure that r1 top 32 bits didn't get
798 * corrupt by OF
799 */
800 rldicl r1,r1,0,32
801
802 /* Restore the MSR (back to 64 bits) */
803 ld r0,_MSR(r1)
804 mtmsrd r0
805 isync
806
807 /* Restore other registers */
808 REST_GPR(2, r1)
809 REST_GPR(13, r1)
810 REST_8GPRS(14, r1)
811 REST_10GPRS(22, r1)
812 ld r4,_CCR(r1)
813 mtcr r4
814 ld r5,_CTR(r1)
815 mtctr r5
816 ld r6,_XER(r1)
817 mtspr SPRN_XER,r6
818 ld r7,_DAR(r1)
819 mtdar r7
820 ld r8,_DSISR(r1)
821 mtdsisr r8
822 ld r9,_SRR0(r1)
823 mtsrr0 r9
824 ld r10,_SRR1(r1)
825 mtsrr1 r10
826
827 addi r1,r1,PROM_FRAME_SIZE
828 ld r0,16(r1)
829 mtlr r0
830 blr