remove unused TIF_NOTIFY_RESUME flag
[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>
9994a338
PM
32
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)
bd19c899 57 crclr so
9994a338
PM
58 std r11,_NIP(r1)
59 std r12,_MSR(r1)
60 std r0,GPR0(r1)
61 std r10,GPR1(r1)
c6622f63 62 ACCOUNT_CPU_USER_ENTRY(r10, r11)
9994a338
PM
63 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)
9994a338
PM
76 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 */
d04c56f7
PM
91 li r10,1
92 stb r10,PACASOFTIRQEN(r13)
93 stb r10,PACAHARDIRQEN(r13)
94 std r10,SOFTE(r1)
9994a338 95#ifdef CONFIG_PPC_ISERIES
3f639ee8 96BEGIN_FW_FTR_SECTION
9994a338
PM
97 /* 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
c705677e
SR
101 bne 2f
102 b hardware_interrupt_entry
1032:
3f639ee8 104END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
9994a338
PM
105#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
9994a338 118 ld r10,TI_FLAGS(r11)
9994a338
PM
119 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:
401d1f02 147 std r3,RESULT(r1)
9994a338 148#ifdef SHOW_SYSCALLS
9994a338 149 bl .do_show_syscall_exit
401d1f02 150 ld r3,RESULT(r1)
9994a338 151#endif
9994a338 152 clrrdi r12,r1,THREAD_SHIFT
9994a338
PM
153
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)
401d1f02 164 li r11,-_LAST_ERRNO
1bd79336 165 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
9994a338 166 bne- syscall_exit_work
401d1f02
DW
167 cmpld r3,r11
168 ld r5,_CCR(r1)
169 bge- syscall_error
170syscall_error_cont:
9994a338
PM
171 ld r7,_NIP(r1)
172 stdcx. r0,0,r1 /* to clear the reservation */
173 andi. r6,r8,MSR_PR
174 ld r4,_LINK(r1)
e56a6e20
PM
175 /*
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 */
c6622f63
PM
183 beq- 1f
184 ACCOUNT_CPU_USER_EXIT(r11, r12)
185 ld r13,GPR13(r1) /* only restore r13 if returning to usermode */
9994a338 1861: ld r2,GPR2(r1)
9994a338
PM
187 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
401d1f02 195syscall_error:
9994a338 196 oris r5,r5,0x1000 /* Set SO bit in CR */
401d1f02 197 neg r3,r3
9994a338
PM
198 std r5,_CCR(r1)
199 b syscall_error_cont
401d1f02 200
9994a338
PM
201/* 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
401d1f02
DW
218syscall_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
1bd79336
PM
227 beq+ 0f
228 REST_NVGPRS(r1)
229 b 2f
2300: cmpld r3,r11 /* r10 is -LAST_ERRNO */
401d1f02
DW
231 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
1bd79336 242 /* Clear per-syscall TIF flags if any are set. */
401d1f02
DW
243
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
1bd79336
PM
251
2524: /* Anything else left to do? */
253 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP)
401d1f02
DW
254 beq .ret_from_except_lite
255
256 /* Re-enable interrupts */
257 mfmsr r10
258 ori r10,r10,MSR_EE
259 mtmsrd r10,1
260
1bd79336 261 bl .save_nvgprs
9994a338
PM
262 addi r3,r1,STACK_FRAME_OVERHEAD
263 bl .do_syscall_trace_leave
1bd79336 264 b .ret_from_except
9994a338
PM
265
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
401d1f02 276
9994a338
PM
277/*
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 */
9994a338
PM
285
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
1bd79336
PM
301_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
9994a338
PM
311_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'
2ef9481e 333 * in arch/powerpc/kernel/process.c
9994a338
PM
334 */
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
2f6093c8
MN
387
388 /* Update the last bolted SLB */
389 ld r9,PACA_SLBSHADOWPTR(r13)
11a27ad7
MN
390 li r12,0
391 std r12,SLBSHADOW_STACKESID(r9) /* Clear ESID */
392 std r7,SLBSHADOW_STACKVSID(r9) /* Save VSID */
393 std r0,SLBSHADOW_STACKESID(r9) /* Save ESID */
2f6093c8 394
9994a338
PM
395 slbie r6
396 slbie r6 /* Workaround POWER5 < DD2.1 issue */
397 slbmte r7,r0
398 isync
399
4002:
401END_FTR_SECTION_IFSET(CPU_FTR_SLB)
402 clrrdi r7,r8,THREAD_SHIFT /* base of new stack */
403 /* Note: this uses SWITCH_FRAME_SIZE rather than INT_FRAME_SIZE
404 because we don't need to leave the 288-byte ABI gap at the
405 top of the kernel stack. */
406 addi r7,r7,THREAD_SIZE-SWITCH_FRAME_SIZE
407
408 mr r1,r8 /* start using new stack pointer */
409 std r7,PACAKSAVE(r13)
410
411 ld r6,_CCR(r1)
412 mtcrf 0xFF,r6
413
414#ifdef CONFIG_ALTIVEC
415BEGIN_FTR_SECTION
416 ld r0,THREAD_VRSAVE(r4)
417 mtspr SPRN_VRSAVE,r0 /* if G4, restore VRSAVE reg */
418END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
419#endif /* CONFIG_ALTIVEC */
420
421 /* r3-r13 are destroyed -- Cort */
422 REST_8GPRS(14, r1)
423 REST_10GPRS(22, r1)
424
425 /* convert old thread to its task_struct for return value */
426 addi r3,r3,-THREAD
427 ld r7,_NIP(r1) /* Return to _switch caller in new task */
428 mtlr r7
429 addi r1,r1,SWITCH_FRAME_SIZE
430 blr
431
432 .align 7
433_GLOBAL(ret_from_except)
434 ld r11,_TRAP(r1)
435 andi. r0,r11,1
436 bne .ret_from_except_lite
437 REST_NVGPRS(r1)
438
439_GLOBAL(ret_from_except_lite)
440 /*
441 * Disable interrupts so that current_thread_info()->flags
442 * can't change between when we test it and when we return
443 * from the interrupt.
444 */
445 mfmsr r10 /* Get current interrupt state */
446 rldicl r9,r10,48,1 /* clear MSR_EE */
447 rotldi r9,r9,16
448 mtmsrd r9,1 /* Update machine state */
449
450#ifdef CONFIG_PREEMPT
451 clrrdi r9,r1,THREAD_SHIFT /* current_thread_info() */
452 li r0,_TIF_NEED_RESCHED /* bits to check */
453 ld r3,_MSR(r1)
454 ld r4,TI_FLAGS(r9)
455 /* Move MSR_PR bit in r3 to _TIF_SIGPENDING position in r0 */
456 rlwimi r0,r3,32+TIF_SIGPENDING-MSR_PR_LG,_TIF_SIGPENDING
457 and. r0,r4,r0 /* check NEED_RESCHED and maybe SIGPENDING */
458 bne do_work
459
460#else /* !CONFIG_PREEMPT */
461 ld r3,_MSR(r1) /* Returning to user mode? */
462 andi. r3,r3,MSR_PR
463 beq restore /* if not, just restore regs and return */
464
465 /* Check current_thread_info()->flags */
466 clrrdi r9,r1,THREAD_SHIFT
467 ld r4,TI_FLAGS(r9)
468 andi. r0,r4,_TIF_USER_WORK_MASK
469 bne do_work
470#endif
471
472restore:
d04c56f7 473 ld r5,SOFTE(r1)
9994a338 474#ifdef CONFIG_PPC_ISERIES
3f639ee8 475BEGIN_FW_FTR_SECTION
9994a338
PM
476 cmpdi 0,r5,0
477 beq 4f
478 /* Check for pending interrupts (iSeries) */
3356bb9f
DG
479 ld r3,PACALPPACAPTR(r13)
480 ld r3,LPPACAANYINT(r3)
9994a338
PM
481 cmpdi r3,0
482 beq+ 4f /* skip do_IRQ if no interrupts */
483
484 li r3,0
d04c56f7 485 stb r3,PACASOFTIRQEN(r13) /* ensure we are soft-disabled */
9994a338
PM
486 ori r10,r10,MSR_EE
487 mtmsrd r10 /* hard-enable again */
488 addi r3,r1,STACK_FRAME_OVERHEAD
489 bl .do_IRQ
490 b .ret_from_except_lite /* loop back and handle more */
d04c56f7 4914:
3f639ee8 492END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
9994a338 493#endif
d04c56f7 494 stb r5,PACASOFTIRQEN(r13)
9994a338 495
e56a6e20 496 /* extract EE bit and use it to restore paca->hard_enabled */
9994a338 497 ld r3,_MSR(r1)
e56a6e20
PM
498 rldicl r4,r3,49,63 /* r0 = (r3 >> 15) & 1 */
499 stb r4,PACAHARDIRQEN(r13)
500
501 ld r4,_CTR(r1)
502 ld r0,_LINK(r1)
503 mtctr r4
504 mtlr r0
505 ld r4,_XER(r1)
506 mtspr SPRN_XER,r4
507
508 REST_8GPRS(5, r1)
509
9994a338
PM
510 andi. r0,r3,MSR_RI
511 beq- unrecov_restore
512
e56a6e20 513 stdcx. r0,0,r1 /* to clear the reservation */
b0a779de 514
e56a6e20
PM
515 /*
516 * Clear RI before restoring r13. If we are returning to
517 * userspace and we take an exception after restoring r13,
518 * we end up corrupting the userspace r13 value.
519 */
520 mfmsr r4
521 andc r4,r4,r0 /* r0 contains MSR_RI here */
522 mtmsrd r4,1
9994a338
PM
523
524 /*
525 * r13 is our per cpu area, only restore it if we are returning to
526 * userspace
527 */
e56a6e20 528 andi. r0,r3,MSR_PR
9994a338 529 beq 1f
e56a6e20 530 ACCOUNT_CPU_USER_EXIT(r2, r4)
9994a338
PM
531 REST_GPR(13, r1)
5321:
e56a6e20 533 mtspr SPRN_SRR1,r3
9994a338
PM
534
535 ld r2,_CCR(r1)
536 mtcrf 0xFF,r2
537 ld r2,_NIP(r1)
538 mtspr SPRN_SRR0,r2
539
540 ld r0,GPR0(r1)
541 ld r2,GPR2(r1)
542 ld r3,GPR3(r1)
543 ld r4,GPR4(r1)
544 ld r1,GPR1(r1)
545
546 rfid
547 b . /* prevent speculative execution */
548
9994a338
PM
549do_work:
550#ifdef CONFIG_PREEMPT
551 andi. r0,r3,MSR_PR /* Returning to user mode? */
552 bne user_work
553 /* Check that preempt_count() == 0 and interrupts are enabled */
554 lwz r8,TI_PREEMPT(r9)
555 cmpwi cr1,r8,0
9994a338
PM
556 ld r0,SOFTE(r1)
557 cmpdi r0,0
9994a338
PM
558 crandc eq,cr1*4+eq,eq
559 bne restore
560 /* here we are preempting the current task */
5611:
9994a338 562 li r0,1
d04c56f7
PM
563 stb r0,PACASOFTIRQEN(r13)
564 stb r0,PACAHARDIRQEN(r13)
9994a338
PM
565 ori r10,r10,MSR_EE
566 mtmsrd r10,1 /* reenable interrupts */
567 bl .preempt_schedule
568 mfmsr r10
569 clrrdi r9,r1,THREAD_SHIFT
570 rldicl r10,r10,48,1 /* disable interrupts again */
571 rotldi r10,r10,16
572 mtmsrd r10,1
573 ld r4,TI_FLAGS(r9)
574 andi. r0,r4,_TIF_NEED_RESCHED
575 bne 1b
576 b restore
577
578user_work:
579#endif
580 /* Enable interrupts */
581 ori r10,r10,MSR_EE
582 mtmsrd r10,1
583
584 andi. r0,r4,_TIF_NEED_RESCHED
585 beq 1f
586 bl .schedule
587 b .ret_from_except_lite
588
5891: bl .save_nvgprs
590 li r3,0
591 addi r4,r1,STACK_FRAME_OVERHEAD
592 bl .do_signal
593 b .ret_from_except
594
595unrecov_restore:
596 addi r3,r1,STACK_FRAME_OVERHEAD
597 bl .unrecoverable_exception
598 b unrecov_restore
599
600#ifdef CONFIG_PPC_RTAS
601/*
602 * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
603 * called with the MMU off.
604 *
605 * In addition, we need to be in 32b mode, at least for now.
606 *
607 * Note: r3 is an input parameter to rtas, so don't trash it...
608 */
609_GLOBAL(enter_rtas)
610 mflr r0
611 std r0,16(r1)
612 stdu r1,-RTAS_FRAME_SIZE(r1) /* Save SP and create stack space. */
613
614 /* Because RTAS is running in 32b mode, it clobbers the high order half
615 * of all registers that it saves. We therefore save those registers
616 * RTAS might touch to the stack. (r0, r3-r13 are caller saved)
617 */
618 SAVE_GPR(2, r1) /* Save the TOC */
619 SAVE_GPR(13, r1) /* Save paca */
620 SAVE_8GPRS(14, r1) /* Save the non-volatiles */
621 SAVE_10GPRS(22, r1) /* ditto */
622
623 mfcr r4
624 std r4,_CCR(r1)
625 mfctr r5
626 std r5,_CTR(r1)
627 mfspr r6,SPRN_XER
628 std r6,_XER(r1)
629 mfdar r7
630 std r7,_DAR(r1)
631 mfdsisr r8
632 std r8,_DSISR(r1)
633 mfsrr0 r9
634 std r9,_SRR0(r1)
635 mfsrr1 r10
636 std r10,_SRR1(r1)
637
9fe901d1
MK
638 /* Temporary workaround to clear CR until RTAS can be modified to
639 * ignore all bits.
640 */
641 li r0,0
642 mtcr r0
643
007d88d0 644#ifdef CONFIG_BUG
9994a338
PM
645 /* There is no way it is acceptable to get here with interrupts enabled,
646 * check it with the asm equivalent of WARN_ON
647 */
d04c56f7 648 lbz r0,PACASOFTIRQEN(r13)
9994a338 6491: tdnei r0,0
007d88d0
DW
650 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
651#endif
652
d04c56f7
PM
653 /* Hard-disable interrupts */
654 mfmsr r6
655 rldicl r7,r6,48,1
656 rotldi r7,r7,16
657 mtmsrd r7,1
658
9994a338
PM
659 /* Unfortunately, the stack pointer and the MSR are also clobbered,
660 * so they are saved in the PACA which allows us to restore
661 * our original state after RTAS returns.
662 */
663 std r1,PACAR1(r13)
664 std r6,PACASAVEDMSR(r13)
665
666 /* Setup our real return addr */
e58c3495
DG
667 LOAD_REG_ADDR(r4,.rtas_return_loc)
668 clrldi r4,r4,2 /* convert to realmode address */
9994a338
PM
669 mtlr r4
670
671 li r0,0
672 ori r0,r0,MSR_EE|MSR_SE|MSR_BE|MSR_RI
673 andc r0,r6,r0
674
675 li r9,1
676 rldicr r9,r9,MSR_SF_LG,(63-MSR_SF_LG)
677 ori r9,r9,MSR_IR|MSR_DR|MSR_FE0|MSR_FE1|MSR_FP
678 andc r6,r0,r9
679 ori r6,r6,MSR_RI
680 sync /* disable interrupts so SRR0/1 */
681 mtmsrd r0 /* don't get trashed */
682
e58c3495 683 LOAD_REG_ADDR(r4, rtas)
9994a338
PM
684 ld r5,RTASENTRY(r4) /* get the rtas->entry value */
685 ld r4,RTASBASE(r4) /* get the rtas->base value */
686
687 mtspr SPRN_SRR0,r5
688 mtspr SPRN_SRR1,r6
689 rfid
690 b . /* prevent speculative execution */
691
692_STATIC(rtas_return_loc)
693 /* relocation is off at this point */
694 mfspr r4,SPRN_SPRG3 /* Get PACA */
e58c3495 695 clrldi r4,r4,2 /* convert to realmode address */
9994a338
PM
696
697 mfmsr r6
698 li r0,MSR_RI
699 andc r6,r6,r0
700 sync
701 mtmsrd r6
702
703 ld r1,PACAR1(r4) /* Restore our SP */
e58c3495 704 LOAD_REG_IMMEDIATE(r3,.rtas_restore_regs)
9994a338
PM
705 ld r4,PACASAVEDMSR(r4) /* Restore our MSR */
706
707 mtspr SPRN_SRR0,r3
708 mtspr SPRN_SRR1,r4
709 rfid
710 b . /* prevent speculative execution */
711
712_STATIC(rtas_restore_regs)
713 /* relocation is on at this point */
714 REST_GPR(2, r1) /* Restore the TOC */
715 REST_GPR(13, r1) /* Restore paca */
716 REST_8GPRS(14, r1) /* Restore the non-volatiles */
717 REST_10GPRS(22, r1) /* ditto */
718
719 mfspr r13,SPRN_SPRG3
720
721 ld r4,_CCR(r1)
722 mtcr r4
723 ld r5,_CTR(r1)
724 mtctr r5
725 ld r6,_XER(r1)
726 mtspr SPRN_XER,r6
727 ld r7,_DAR(r1)
728 mtdar r7
729 ld r8,_DSISR(r1)
730 mtdsisr r8
731 ld r9,_SRR0(r1)
732 mtsrr0 r9
733 ld r10,_SRR1(r1)
734 mtsrr1 r10
735
736 addi r1,r1,RTAS_FRAME_SIZE /* Unstack our frame */
737 ld r0,16(r1) /* get return address */
738
739 mtlr r0
740 blr /* return to caller */
741
742#endif /* CONFIG_PPC_RTAS */
743
9994a338
PM
744_GLOBAL(enter_prom)
745 mflr r0
746 std r0,16(r1)
747 stdu r1,-PROM_FRAME_SIZE(r1) /* Save SP and create stack space */
748
749 /* Because PROM is running in 32b mode, it clobbers the high order half
750 * of all registers that it saves. We therefore save those registers
751 * PROM might touch to the stack. (r0, r3-r13 are caller saved)
752 */
753 SAVE_8GPRS(2, r1)
754 SAVE_GPR(13, r1)
755 SAVE_8GPRS(14, r1)
756 SAVE_10GPRS(22, r1)
757 mfcr r4
758 std r4,_CCR(r1)
759 mfctr r5
760 std r5,_CTR(r1)
761 mfspr r6,SPRN_XER
762 std r6,_XER(r1)
763 mfdar r7
764 std r7,_DAR(r1)
765 mfdsisr r8
766 std r8,_DSISR(r1)
767 mfsrr0 r9
768 std r9,_SRR0(r1)
769 mfsrr1 r10
770 std r10,_SRR1(r1)
771 mfmsr r11
772 std r11,_MSR(r1)
773
774 /* Get the PROM entrypoint */
775 ld r0,GPR4(r1)
776 mtlr r0
777
778 /* Switch MSR to 32 bits mode
779 */
780 mfmsr r11
781 li r12,1
782 rldicr r12,r12,MSR_SF_LG,(63-MSR_SF_LG)
783 andc r11,r11,r12
784 li r12,1
785 rldicr r12,r12,MSR_ISF_LG,(63-MSR_ISF_LG)
786 andc r11,r11,r12
787 mtmsrd r11
788 isync
789
790 /* Restore arguments & enter PROM here... */
791 ld r3,GPR3(r1)
792 blrl
793
794 /* Just make sure that r1 top 32 bits didn't get
795 * corrupt by OF
796 */
797 rldicl r1,r1,0,32
798
799 /* Restore the MSR (back to 64 bits) */
800 ld r0,_MSR(r1)
801 mtmsrd r0
802 isync
803
804 /* Restore other registers */
805 REST_GPR(2, r1)
806 REST_GPR(13, r1)
807 REST_8GPRS(14, r1)
808 REST_10GPRS(22, r1)
809 ld r4,_CCR(r1)
810 mtcr r4
811 ld r5,_CTR(r1)
812 mtctr r5
813 ld r6,_XER(r1)
814 mtspr SPRN_XER,r6
815 ld r7,_DAR(r1)
816 mtdar r7
817 ld r8,_DSISR(r1)
818 mtdsisr r8
819 ld r9,_SRR0(r1)
820 mtsrr0 r9
821 ld r10,_SRR1(r1)
822 mtsrr1 r10
823
824 addi r1,r1,PROM_FRAME_SIZE
825 ld r0,16(r1)
826 mtlr r0
827 blr
This page took 0.204882 seconds and 5 git commands to generate.