3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 * Rewritten by Cort Dougan (cort@fsmlabs.com) for PReP
5 * Copyright (C) 1996 Cort Dougan <cort@fsmlabs.com>
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).
12 * This file contains the system call entry code, context switch
13 * code, and exception/interrupt return code for PowerPC.
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.
22 #include <linux/errno.h>
23 #include <linux/sys.h>
24 #include <linux/threads.h>
28 #include <asm/cputable.h>
29 #include <asm/thread_info.h>
30 #include <asm/ppc_asm.h>
31 #include <asm/asm-offsets.h>
32 #include <asm/unistd.h>
35 #undef SHOW_SYSCALLS_TASK
38 * MSR_KERNEL is > 0x10000 on 4xx/Book-E since it include MSR_CE.
40 #if MSR_KERNEL >= 0x10000
41 #define LOAD_MSR_KERNEL(r, x) lis r,(x)@h; ori r,r,(x)@l
43 #define LOAD_MSR_KERNEL(r, x) li r,(x)
47 .globl mcheck_transfer_to_handler
48 mcheck_transfer_to_handler:
55 .globl debug_transfer_to_handler
56 debug_transfer_to_handler:
63 .globl crit_transfer_to_handler
64 crit_transfer_to_handler:
65 #ifdef CONFIG_FSL_BOOKE
76 #ifdef CONFIG_PHYS_64BIT
79 #endif /* CONFIG_PHYS_64BIT */
80 #endif /* CONFIG_FSL_BOOKE */
92 stw r0,SAVED_KSP_LIMIT(r11)
93 rlwimi r0,r1,0,0,(31-THREAD_SHIFT)
99 .globl crit_transfer_to_handler
100 crit_transfer_to_handler:
106 stw r0,crit_srr0@l(0)
108 stw r0,crit_srr1@l(0)
112 stw r0,saved_ksp_limit@l(0)
113 rlwimi r0,r1,0,0,(31-THREAD_SHIFT)
119 * This code finishes saving the registers to the exception frame
120 * and jumps to the appropriate handler for the exception, turning
121 * on address translation.
122 * Note that we rely on the caller having set cr0.eq iff the exception
123 * occurred in kernel mode (i.e. MSR:PR = 0).
125 .globl transfer_to_handler_full
126 transfer_to_handler_full:
130 .globl transfer_to_handler
142 tovirt(r2,r2) /* set r2 to current */
143 beq 2f /* if from user, fix up THREAD.regs */
144 addi r11,r1,STACK_FRAME_OVERHEAD
146 #if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
147 /* Check to see if the dbcr0 register is set up to debug. Use the
148 internal debug mode bit to do this. */
149 lwz r12,THREAD_DBCR0(r12)
150 andis. r12,r12,DBCR0_IDM@h
152 /* From user and task is ptraced - load up global dbcr0 */
153 li r12,-1 /* clear all pending debug events */
155 lis r11,global_dbcr0@ha
157 addi r11,r11,global_dbcr0@l
159 rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
172 2: /* if from kernel, check interrupted DOZE/NAP mode and
173 * check for stack overflow
175 lwz r9,KSP_LIMIT(r12)
176 cmplw r1,r9 /* if r1 <= ksp_limit */
177 ble- stack_ovf /* then the kernel stack overflowed */
179 #if defined(CONFIG_6xx) || defined(CONFIG_E500)
180 rlwinm r9,r1,0,0,31-THREAD_SHIFT
181 tophys(r9,r9) /* check local flags */
182 lwz r12,TI_LOCAL_FLAGS(r9)
184 bt- 31-TLF_NAPPING,4f
185 bt- 31-TLF_SLEEPING,7f
186 #endif /* CONFIG_6xx || CONFIG_E500 */
187 .globl transfer_to_handler_cont
188 transfer_to_handler_cont:
191 lwz r11,0(r9) /* virtual address of handler */
192 lwz r9,4(r9) /* where to go when done */
197 RFI /* jump to handler, enable MMU */
199 #if defined (CONFIG_6xx) || defined(CONFIG_E500)
200 4: rlwinm r12,r12,0,~_TLF_NAPPING
201 stw r12,TI_LOCAL_FLAGS(r9)
202 b power_save_ppc32_restore
204 7: rlwinm r12,r12,0,~_TLF_SLEEPING
205 stw r12,TI_LOCAL_FLAGS(r9)
206 lwz r9,_MSR(r11) /* if sleeping, clear MSR.EE */
207 rlwinm r9,r9,0,~MSR_EE
208 lwz r12,_LINK(r11) /* and return to address in LR */
209 b fast_exception_return
213 * On kernel stack overflow, load up an initial stack pointer
214 * and call StackOverflow(regs), which should not return.
217 /* sometimes we use a statically-allocated stack, which is OK. */
221 ble 5b /* r1 <= &_end is OK */
223 addi r3,r1,STACK_FRAME_OVERHEAD
224 lis r1,init_thread_union@ha
225 addi r1,r1,init_thread_union@l
226 addi r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD
227 lis r9,StackOverflow@ha
228 addi r9,r9,StackOverflow@l
229 LOAD_MSR_KERNEL(r10,MSR_KERNEL)
237 * Handle a system call.
239 .stabs "arch/powerpc/kernel/",N_SO,0,0,0f
240 .stabs "entry_32.S",N_SO,0,0,0f
247 lwz r11,_CCR(r1) /* Clear SO bit in CR */
252 #endif /* SHOW_SYSCALLS */
253 rlwinm r10,r1,0,0,(31-THREAD_SHIFT) /* current_thread_info() */
254 lwz r11,TI_FLAGS(r10)
255 andi. r11,r11,_TIF_SYSCALL_T_OR_A
257 syscall_dotrace_cont:
258 cmplwi 0,r0,NR_syscalls
259 lis r10,sys_call_table@h
260 ori r10,r10,sys_call_table@l
263 lwzx r10,r10,r0 /* Fetch system call handler [ptr] */
265 addi r9,r1,STACK_FRAME_OVERHEAD
267 blrl /* Call handler */
268 .globl ret_from_syscall
271 bl do_show_syscall_exit
274 rlwinm r12,r1,0,0,(31-THREAD_SHIFT) /* current_thread_info() */
275 /* disable interrupts so current_thread_info()->flags can't change */
276 LOAD_MSR_KERNEL(r10,MSR_KERNEL) /* doesn't include MSR_EE */
281 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
282 bne- syscall_exit_work
284 blt+ syscall_exit_cont
285 lwz r11,_CCR(r1) /* Load CR */
287 oris r11,r11,0x1000 /* Set SO bit in CR */
290 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
291 /* If the process has its own DBCR0 value, load it up. The internal
292 debug mode bit tells us that dbcr0 should be loaded. */
293 lwz r0,THREAD+THREAD_DBCR0(r2)
294 andis. r10,r0,DBCR0_IDM@h
298 lis r4,icache_44x_need_flush@ha
299 lwz r5,icache_44x_need_flush@l(r4)
303 #endif /* CONFIG_44x */
306 END_FTR_SECTION_IFSET(CPU_FTR_NEED_PAIRED_STWCX)
307 stwcx. r0,0,r1 /* to clear the reservation */
324 stw r7,icache_44x_need_flush@l(r4)
326 #endif /* CONFIG_44x */
338 /* Traced system call support */
343 addi r3,r1,STACK_FRAME_OVERHEAD
344 bl do_syscall_trace_enter
345 lwz r0,GPR0(r1) /* Restore original registers */
353 b syscall_dotrace_cont
356 andi. r0,r9,_TIF_RESTOREALL
362 andi. r0,r9,_TIF_NOERROR
364 lwz r11,_CCR(r1) /* Load CR */
366 oris r11,r11,0x1000 /* Set SO bit in CR */
369 1: stw r6,RESULT(r1) /* Save result */
370 stw r3,GPR3(r1) /* Update return value */
371 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK)
374 /* Clear per-syscall TIF flags if any are set. */
376 li r11,_TIF_PERSYSCALL_MASK
377 addi r12,r12,TI_FLAGS
380 #ifdef CONFIG_IBM405_ERR77
385 subi r12,r12,TI_FLAGS
387 4: /* Anything which requires enabling interrupts? */
388 andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP)
391 /* Re-enable interrupts */
396 /* Save NVGPRS if they're not saved already */
404 addi r3,r1,STACK_FRAME_OVERHEAD
405 bl do_syscall_trace_leave
406 b ret_from_except_full
410 #ifdef SHOW_SYSCALLS_TASK
411 lis r11,show_syscalls_task@ha
412 lwz r11,show_syscalls_task@l(r11)
443 do_show_syscall_exit:
444 #ifdef SHOW_SYSCALLS_TASK
445 lis r11,show_syscalls_task@ha
446 lwz r11,show_syscalls_task@l(r11)
452 stw r3,RESULT(r1) /* Save result */
462 7: .string "syscall %d(%x, %x, %x, %x, %x, "
463 77: .string "%x), current=%p\n"
464 79: .string " -> %x\n"
467 #ifdef SHOW_SYSCALLS_TASK
469 .globl show_syscalls_task
474 #endif /* SHOW_SYSCALLS */
477 * The fork/clone functions need to copy the full register set into
478 * the child process. Therefore we need to save all the nonvolatile
479 * registers (r13 - r31) before calling the C code.
485 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
486 stw r0,_TRAP(r1) /* register set saved */
493 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
494 stw r0,_TRAP(r1) /* register set saved */
501 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
502 stw r0,_TRAP(r1) /* register set saved */
505 .globl ppc_swapcontext
509 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
510 stw r0,_TRAP(r1) /* register set saved */
514 * Top-level page fault handling.
515 * This is in assembler because if do_page_fault tells us that
516 * it is a bad kernel page fault, we want to save the non-volatile
517 * registers before calling bad_page_fault.
519 .globl handle_page_fault
522 addi r3,r1,STACK_FRAME_OVERHEAD
531 addi r3,r1,STACK_FRAME_OVERHEAD
534 b ret_from_except_full
537 * This routine switches between two different tasks. The process
538 * state of one is saved on its kernel stack. Then the state
539 * of the other is restored from its kernel stack. The memory
540 * management hardware is updated to the second process's state.
541 * Finally, we can return to the second process.
542 * On entry, r3 points to the THREAD for the current task, r4
543 * points to the THREAD for the new task.
545 * This routine is always called with interrupts disabled.
547 * Note: there are two ways to get to the "going out" portion
548 * of this code; either by coming in via the entry (_switch)
549 * or via "fork" which must set up an environment equivalent
550 * to the "_switch" path. If you change this , you'll have to
551 * change the fork code also.
553 * The code which creates the new task context is in 'copy_thread'
554 * in arch/ppc/kernel/process.c
557 stwu r1,-INT_FRAME_SIZE(r1)
559 stw r0,INT_FRAME_SIZE+4(r1)
560 /* r3-r12 are caller saved -- Cort */
562 stw r0,_NIP(r1) /* Return to switch caller */
564 li r0,MSR_FP /* Disable floating-point */
565 #ifdef CONFIG_ALTIVEC
567 oris r0,r0,MSR_VEC@h /* Disable altivec */
568 mfspr r12,SPRN_VRSAVE /* save vrsave register value */
569 stw r12,THREAD+THREAD_VRSAVE(r2)
570 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
571 #endif /* CONFIG_ALTIVEC */
574 oris r0,r0,MSR_SPE@h /* Disable SPE */
575 mfspr r12,SPRN_SPEFSCR /* save spefscr register value */
576 stw r12,THREAD+THREAD_SPEFSCR(r2)
577 END_FTR_SECTION_IFSET(CPU_FTR_SPE)
578 #endif /* CONFIG_SPE */
579 and. r0,r0,r11 /* FP or altivec or SPE enabled? */
587 stw r1,KSP(r3) /* Set old stack pointer */
590 /* We need a sync somewhere here to make sure that if the
591 * previous task gets rescheduled on another CPU, it sees all
592 * stores it has performed on this one.
595 #endif /* CONFIG_SMP */
599 mtspr SPRN_SPRG3,r0 /* Update current THREAD phys addr */
600 lwz r1,KSP(r4) /* Load new stack pointer */
602 /* save the old current 'last' for return value */
604 addi r2,r4,-THREAD /* Update current */
606 #ifdef CONFIG_ALTIVEC
608 lwz r0,THREAD+THREAD_VRSAVE(r2)
609 mtspr SPRN_VRSAVE,r0 /* if G4, restore VRSAVE reg */
610 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
611 #endif /* CONFIG_ALTIVEC */
614 lwz r0,THREAD+THREAD_SPEFSCR(r2)
615 mtspr SPRN_SPEFSCR,r0 /* restore SPEFSCR reg */
616 END_FTR_SECTION_IFSET(CPU_FTR_SPE)
617 #endif /* CONFIG_SPE */
621 /* r3-r12 are destroyed -- Cort */
624 lwz r4,_NIP(r1) /* Return to _switch caller in new task */
626 addi r1,r1,INT_FRAME_SIZE
629 .globl fast_exception_return
630 fast_exception_return:
631 #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
632 andi. r10,r9,MSR_RI /* check for recoverable interrupt */
633 beq 1f /* if not, we've got problems */
636 2: REST_4GPRS(3, r11)
651 #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
652 /* check if the exception happened in a restartable section */
653 1: lis r3,exc_exit_restart_end@ha
654 addi r3,r3,exc_exit_restart_end@l
657 lis r4,exc_exit_restart@ha
658 addi r4,r4,exc_exit_restart@l
661 lis r3,fee_restarts@ha
663 lwz r5,fee_restarts@l(r3)
665 stw r5,fee_restarts@l(r3)
666 mr r12,r4 /* restart at exc_exit_restart */
675 /* aargh, a nonrecoverable interrupt, panic */
676 /* aargh, we don't know which trap this is */
677 /* but the 601 doesn't implement the RI bit, so assume it's OK */
681 END_FTR_SECTION_IFSET(CPU_FTR_601)
684 addi r3,r1,STACK_FRAME_OVERHEAD
686 ori r10,r10,MSR_KERNEL@l
687 bl transfer_to_handler_full
688 .long nonrecoverable_exception
689 .long ret_from_except
692 .globl ret_from_except_full
693 ret_from_except_full:
697 .globl ret_from_except
699 /* Hard-disable interrupts so that current_thread_info()->flags
700 * can't change between when we test it and when we return
701 * from the interrupt. */
702 LOAD_MSR_KERNEL(r10,MSR_KERNEL)
703 SYNC /* Some chip revs have problems here... */
704 MTMSRD(r10) /* disable interrupts */
706 lwz r3,_MSR(r1) /* Returning to user mode? */
710 user_exc_return: /* r10 contains MSR_KERNEL here */
711 /* Check current_thread_info()->flags */
712 rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
714 andi. r0,r9,_TIF_USER_WORK_MASK
718 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
719 /* Check whether this process has its own DBCR0 value. The internal
720 debug mode bit tells us that dbcr0 should be loaded. */
721 lwz r0,THREAD+THREAD_DBCR0(r2)
722 andis. r10,r0,DBCR0_IDM@h
726 #ifdef CONFIG_PREEMPT
729 /* N.B. the only way to get here is from the beq following ret_from_except. */
731 /* check current_thread_info->preempt_count */
732 rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
733 lwz r0,TI_PREEMPT(r9)
734 cmpwi 0,r0,0 /* if non-zero, just restore regs and return */
737 andi. r0,r0,_TIF_NEED_RESCHED
739 andi. r0,r3,MSR_EE /* interrupts off? */
740 beq restore /* don't schedule if so */
741 1: bl preempt_schedule_irq
742 rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
744 andi. r0,r3,_TIF_NEED_RESCHED
748 #endif /* CONFIG_PREEMPT */
750 /* interrupts are hard-disabled at this point */
753 lis r4,icache_44x_need_flush@ha
754 lwz r5,icache_44x_need_flush@l(r4)
759 stw r6,icache_44x_need_flush@l(r4)
761 #endif /* CONFIG_44x */
775 END_FTR_SECTION_IFSET(CPU_FTR_NEED_PAIRED_STWCX)
776 stwcx. r0,0,r1 /* to clear the reservation */
778 #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
780 andi. r10,r9,MSR_RI /* check if this exception occurred */
781 beql nonrecoverable /* at a bad place (MSR:RI = 0) */
789 * Once we put values in SRR0 and SRR1, we are in a state
790 * where exceptions are not recoverable, since taking an
791 * exception will trash SRR0 and SRR1. Therefore we clear the
792 * MSR:RI bit to indicate this. If we do take an exception,
793 * we can't return to the point of the exception but we
794 * can restart the exception exit path at the label
795 * exc_exit_restart below. -- paulus
797 LOAD_MSR_KERNEL(r10,MSR_KERNEL & ~MSR_RI)
799 MTMSRD(r10) /* clear the RI bit */
800 .globl exc_exit_restart
809 .globl exc_exit_restart_end
810 exc_exit_restart_end:
814 #else /* !(CONFIG_4xx || CONFIG_BOOKE) */
816 * This is a bit different on 4xx/Book-E because it doesn't have
817 * the RI bit in the MSR.
818 * The TLB miss handler checks if we have interrupted
819 * the exception exit path and restarts it if so
820 * (well maybe one day it will... :).
827 .globl exc_exit_restart
836 .globl exc_exit_restart_end
837 exc_exit_restart_end:
840 b . /* prevent prefetch past rfi */
843 * Returning from a critical interrupt in user mode doesn't need
844 * to be any different from a normal exception. For a critical
845 * interrupt in the kernel, we just return (without checking for
846 * preemption) since the interrupt may have happened at some crucial
847 * place (e.g. inside the TLB miss handler), and because we will be
848 * running with r1 pointing into critical_stack, not the current
849 * process's kernel stack (and therefore current_thread_info() will
850 * give the wrong answer).
851 * We have to restore various SPRs that may have been in use at the
852 * time of the critical interrupt.
856 #define PPC_40x_TURN_OFF_MSR_DR \
857 /* avoid any possible TLB misses here by turning off MSR.DR, we \
858 * assume the instructions here are mapped by a pinned TLB entry */ \
864 #define PPC_40x_TURN_OFF_MSR_DR
867 #define RET_FROM_EXC_LEVEL(exc_lvl_srr0, exc_lvl_srr1, exc_lvl_rfi) \
870 andi. r3,r3,MSR_PR; \
871 LOAD_MSR_KERNEL(r10,MSR_KERNEL); \
872 bne user_exc_return; \
879 mtspr SPRN_XER,r10; \
881 PPC405_ERR77(0,r1); \
882 stwcx. r0,0,r1; /* to clear the reservation */ \
887 PPC_40x_TURN_OFF_MSR_DR; \
890 mtspr SPRN_DEAR,r9; \
891 mtspr SPRN_ESR,r10; \
894 mtspr exc_lvl_srr0,r11; \
895 mtspr exc_lvl_srr1,r12; \
903 b .; /* prevent prefetch past exc_lvl_rfi */
905 #define RESTORE_xSRR(exc_lvl_srr0, exc_lvl_srr1) \
906 lwz r9,_##exc_lvl_srr0(r1); \
907 lwz r10,_##exc_lvl_srr1(r1); \
908 mtspr SPRN_##exc_lvl_srr0,r9; \
909 mtspr SPRN_##exc_lvl_srr1,r10;
911 #if defined(CONFIG_FSL_BOOKE)
912 #ifdef CONFIG_PHYS_64BIT
913 #define RESTORE_MAS7 \
918 #endif /* CONFIG_PHYS_64BIT */
919 #define RESTORE_MMU_REGS \
923 mtspr SPRN_MAS0,r9; \
925 mtspr SPRN_MAS1,r10; \
927 mtspr SPRN_MAS2,r11; \
928 mtspr SPRN_MAS3,r9; \
929 mtspr SPRN_MAS6,r10; \
931 #elif defined(CONFIG_44x)
932 #define RESTORE_MMU_REGS \
936 #define RESTORE_MMU_REGS
940 .globl ret_from_crit_exc
943 lis r10,saved_ksp_limit@ha;
944 lwz r10,saved_ksp_limit@l(r10);
946 stw r10,KSP_LIMIT(r9)
948 lwz r9,crit_srr0@l(r9);
949 lis r10,crit_srr1@ha;
950 lwz r10,crit_srr1@l(r10);
953 RET_FROM_EXC_LEVEL(SPRN_CSRR0, SPRN_CSRR1, RFCI)
954 #endif /* CONFIG_40x */
957 .globl ret_from_crit_exc
960 lwz r10,SAVED_KSP_LIMIT(r1)
961 stw r10,KSP_LIMIT(r9)
962 RESTORE_xSRR(SRR0,SRR1);
964 RET_FROM_EXC_LEVEL(SPRN_CSRR0, SPRN_CSRR1, RFCI)
966 .globl ret_from_debug_exc
969 lwz r10,SAVED_KSP_LIMIT(r1)
970 stw r10,KSP_LIMIT(r9)
971 lwz r9,THREAD_INFO-THREAD(r9)
972 rlwinm r10,r1,0,0,(31-THREAD_SHIFT)
973 lwz r10,TI_PREEMPT(r10)
974 stw r10,TI_PREEMPT(r9)
975 RESTORE_xSRR(SRR0,SRR1);
976 RESTORE_xSRR(CSRR0,CSRR1);
978 RET_FROM_EXC_LEVEL(SPRN_DSRR0, SPRN_DSRR1, RFDI)
980 .globl ret_from_mcheck_exc
983 lwz r10,SAVED_KSP_LIMIT(r1)
984 stw r10,KSP_LIMIT(r9)
985 RESTORE_xSRR(SRR0,SRR1);
986 RESTORE_xSRR(CSRR0,CSRR1);
987 RESTORE_xSRR(DSRR0,DSRR1);
989 RET_FROM_EXC_LEVEL(SPRN_MCSRR0, SPRN_MCSRR1, RFMCI)
990 #endif /* CONFIG_BOOKE */
993 * Load the DBCR0 value for a task that is being ptraced,
994 * having first saved away the global DBCR0. Note that r0
995 * has the dbcr0 value to set upon entry to this.
998 mfmsr r10 /* first disable debug exceptions */
999 rlwinm r10,r10,0,~MSR_DE
1002 mfspr r10,SPRN_DBCR0
1003 lis r11,global_dbcr0@ha
1004 addi r11,r11,global_dbcr0@l
1006 rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
1017 mtspr SPRN_DBSR,r11 /* clear all pending debug events */
1025 #endif /* !(CONFIG_4xx || CONFIG_BOOKE) */
1027 do_work: /* r10 contains MSR_KERNEL here */
1028 andi. r0,r9,_TIF_NEED_RESCHED
1031 do_resched: /* r10 contains MSR_KERNEL here */
1034 MTMSRD(r10) /* hard-enable interrupts */
1037 LOAD_MSR_KERNEL(r10,MSR_KERNEL)
1039 MTMSRD(r10) /* disable interrupts */
1040 rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
1042 andi. r0,r9,_TIF_NEED_RESCHED
1044 andi. r0,r9,_TIF_USER_WORK_MASK
1046 do_user_signal: /* r10 contains MSR_KERNEL here */
1049 MTMSRD(r10) /* hard-enable interrupts */
1050 /* save r13-r31 in the exception frame, if not already done */
1058 addi r4,r1,STACK_FRAME_OVERHEAD
1064 * We come here when we are at the end of handling an exception
1065 * that occurred at a place where taking an exception will lose
1066 * state information, such as the contents of SRR0 and SRR1.
1069 lis r10,exc_exit_restart_end@ha
1070 addi r10,r10,exc_exit_restart_end@l
1073 lis r11,exc_exit_restart@ha
1074 addi r11,r11,exc_exit_restart@l
1077 lis r10,ee_restarts@ha
1078 lwz r12,ee_restarts@l(r10)
1080 stw r12,ee_restarts@l(r10)
1081 mr r12,r11 /* restart at exc_exit_restart */
1083 3: /* OK, we can't recover, kill this process */
1084 /* but the 601 doesn't implement the RI bit, so assume it's OK */
1087 END_FTR_SECTION_IFSET(CPU_FTR_601)
1094 4: addi r3,r1,STACK_FRAME_OVERHEAD
1095 bl nonrecoverable_exception
1096 /* shouldn't return */
1106 * PROM code for specific machines follows. Put it
1107 * here so it's easy to add arch-specific sections later.
1110 #ifdef CONFIG_PPC_RTAS
1112 * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
1113 * called with the MMU off.
1116 stwu r1,-INT_FRAME_SIZE(r1)
1118 stw r0,INT_FRAME_SIZE+4(r1)
1119 LOAD_REG_ADDR(r4, rtas)
1120 lis r6,1f@ha /* physical return address for rtas */
1124 lwz r8,RTASENTRY(r4)
1128 LOAD_MSR_KERNEL(r0,MSR_KERNEL)
1129 SYNC /* disable interrupts so SRR0/1 */
1130 MTMSRD(r0) /* don't get trashed */
1131 li r9,MSR_KERNEL & ~(MSR_IR|MSR_DR)
1138 lwz r8,INT_FRAME_SIZE+4(r9) /* get return address */
1139 lwz r9,8(r9) /* original msr value */
1141 addi r1,r1,INT_FRAME_SIZE
1146 RFI /* return to caller */
1148 .globl machine_check_in_rtas
1149 machine_check_in_rtas:
1151 /* XXX load up BATs and panic */
1153 #endif /* CONFIG_PPC_RTAS */