1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
5 * Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
6 * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu>
7 * Adapted for Power Macintosh by Paul Mackerras.
8 * Low-level exception handlers and MMU support
9 * rewritten by Paul Mackerras.
10 * Copyright (C) 1996 Paul Mackerras.
11 * MPC8xx modifications Copyright (C) 1997 Dan Malek (dmalek@jlc.net).
13 * This file contains the system call entry code, context switch
14 * code, and exception/interrupt return code for PowerPC.
17 #include <linux/errno.h>
18 #include <linux/err.h>
19 #include <asm/unistd.h>
20 #include <asm/processor.h>
23 #include <asm/thread_info.h>
24 #include <asm/code-patching-asm.h>
25 #include <asm/ppc_asm.h>
26 #include <asm/asm-offsets.h>
27 #include <asm/cputable.h>
28 #include <asm/firmware.h>
30 #include <asm/ptrace.h>
31 #include <asm/irqflags.h>
32 #include <asm/hw_irq.h>
33 #include <asm/context_tracking.h>
35 #include <asm/ppc-opcode.h>
36 #include <asm/barrier.h>
37 #include <asm/export.h>
38 #include <asm/asm-compat.h>
39 #ifdef CONFIG_PPC_BOOK3S
40 #include <asm/exception-64s.h>
42 #include <asm/exception-64e.h>
44 #include <asm/feature-fixups.h>
52 .tc sys_call_table[TC],sys_call_table
54 COMPAT_SYS_CALL_TABLE:
55 .tc compat_sys_call_table[TC],compat_sys_call_table
57 /* This value is used to mark exception frames on the stack. */
59 .tc ID_EXC_MARKER[TC],STACK_FRAME_REGS_MARKER
64 .globl system_call_common
66 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
68 extrdi. r10, r12, 1, (63-MSR_TS_T_LG) /* transaction active? */
70 END_FTR_SECTION_IFSET(CPU_FTR_TM)
79 #ifdef CONFIG_PPC_FSL_BOOK3E
80 START_BTB_FLUSH_SECTION
84 ACCOUNT_CPU_USER_ENTRY(r13, r10, r11)
103 * This clears CR0.SO (bit 28), which is the error indication on
104 * return from this system call.
106 rldimi r2,r11,28,(63-28)
113 addi r9,r1,STACK_FRAME_OVERHEAD
114 ld r11,exception_marker@toc(r2)
115 std r11,-16(r9) /* "regshere" marker */
117 kuap_check_amr r10, r11
119 #if defined(CONFIG_VIRT_CPU_ACCOUNTING_NATIVE) && defined(CONFIG_PPC_SPLPAR)
121 /* see if there are any DTL entries to process */
122 ld r10,PACALPPACAPTR(r13) /* get ptr to VPA */
123 ld r11,PACA_DTL_RIDX(r13) /* get log read index */
124 addi r10,r10,LPPACA_DTLIDX
125 LDX_BE r10,0,r10 /* get log write index */
128 bl accumulate_stolen_time
132 addi r9,r1,STACK_FRAME_OVERHEAD
134 END_FW_FTR_SECTION_IFSET(FW_FEATURE_SPLPAR)
135 #endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE && CONFIG_PPC_SPLPAR */
138 * A syscall should always be called with interrupts enabled
139 * so we just unconditionally hard-enable here. When some kind
140 * of irq tracing is used, we additionally check that condition
143 #if defined(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG) && defined(CONFIG_BUG)
144 lbz r10,PACAIRQSOFTMASK(r13)
145 1: tdnei r10,IRQS_ENABLED
146 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
149 #ifdef CONFIG_PPC_BOOK3E
155 #endif /* CONFIG_PPC_BOOK3E */
157 system_call: /* label this so stack traces look sane */
158 /* We do need to set SOFTE in the stack frame or the return
159 * from interrupt will be painful
164 ld r11, PACA_THREAD_INFO(r13)
166 andi. r11,r10,_TIF_SYSCALL_DOTRACE
167 bne .Lsyscall_dotrace /* does not return */
168 cmpldi 0,r0,NR_syscalls
169 bge- .Lsyscall_enosys
173 * Need to vector to 32 Bit or default sys_call_table here,
174 * based on caller's run-mode / personality.
176 ld r11,SYS_CALL_TABLE@toc(2)
177 andis. r10,r10,_TIF_32BIT@h
179 ld r11,COMPAT_SYS_CALL_TABLE@toc(2)
191 * Prevent the load of the handler below (based on the user-passed
192 * system call number) being speculatively executed until the test
193 * against NR_syscalls and branch to .Lsyscall_enosys above has
197 ldx r12,r11,r0 /* Fetch system call handler [ptr] */
199 bctrl /* Call handler */
201 /* syscall_exit can exit to kernel mode, via ret_from_kernel_thread */
205 #ifdef CONFIG_DEBUG_RSEQ
206 /* Check whether the syscall is issued inside a restartable sequence */
207 addi r3,r1,STACK_FRAME_OVERHEAD
212 ld r12, PACA_THREAD_INFO(r13)
217 * This is a few instructions into the actual syscall exit path (which actually
218 * starts at .Lsyscall_exit) to cater to kprobe blacklisting and to reduce the
219 * number of visible symbols for profiling purposes.
221 * We can probe from system_call until this point as MSR_RI is set. But once it
222 * is cleared below, we won't be able to take a trap.
224 * This is blacklisted from kprobes further below with _ASM_NOKPROBE_SYMBOL().
228 * Disable interrupts so current_thread_info()->flags can't change,
229 * and so that we don't get interrupted after loading SRR0/1.
231 * Leave MSR_RI enabled for now, because with THREAD_INFO_IN_TASK we
232 * could fault on the load of the TI_FLAGS below.
234 #ifdef CONFIG_PPC_BOOK3E
239 #endif /* CONFIG_PPC_BOOK3E */
243 andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
244 bne- .Lsyscall_exit_work
248 #ifdef CONFIG_ALTIVEC
249 andis. r0,r8,MSR_VEC@h
252 2: addi r3,r1,STACK_FRAME_OVERHEAD
261 .Lsyscall_error_cont:
264 stdcx. r0,0,r1 /* to clear the reservation */
265 END_FTR_SECTION_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS)
269 kuap_check_amr r10, r11
271 #ifdef CONFIG_PPC_BOOK3S
273 * Clear MSR_RI, MSR_EE is already and remains disabled. We could do
274 * this later, but testing shows that doing it here causes less slow
275 * down than doing it closer to the rfid.
282 ACCOUNT_CPU_USER_EXIT(r13, r11, r12)
286 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
288 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
289 std r8, PACATMSCRATCH(r13)
293 * We don't need to restore AMR on the way back to userspace for KUAP.
294 * The value of AMR only matters while we're in the kernel.
296 ld r13,GPR13(r1) /* only restore r13 if returning to usermode */
304 b . /* prevent speculative execution */
306 1: /* exit to kernel */
316 b . /* prevent speculative execution */
319 oris r5,r5,0x1000 /* Set SO bit in CR */
322 b .Lsyscall_error_cont
324 /* Traced system call support */
327 addi r3,r1,STACK_FRAME_OVERHEAD
328 bl do_syscall_trace_enter
331 * We use the return value of do_syscall_trace_enter() as the syscall
332 * number. If the syscall was rejected for any reason do_syscall_trace_enter()
333 * returns an invalid syscall number and the test below against
334 * NR_syscalls will fail.
338 /* Restore argument registers just clobbered and/or possibly changed. */
346 /* Repopulate r9 and r10 for the syscall path */
347 addi r9,r1,STACK_FRAME_OVERHEAD
348 ld r10, PACA_THREAD_INFO(r13)
351 cmpldi r0,NR_syscalls
354 /* Return code is already in r3 thanks to do_syscall_trace_enter() */
363 /* If TIF_RESTOREALL is set, don't scribble on either r3 or ccr.
364 If TIF_NOERROR is set, just save r3 as it is. */
366 andi. r0,r9,_TIF_RESTOREALL
370 0: cmpld r3,r11 /* r11 is -MAX_ERRNO */
372 andi. r0,r9,_TIF_NOERROR
376 oris r5,r5,0x1000 /* Set SO bit in CR */
379 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK)
382 /* Clear per-syscall TIF flags if any are set. */
384 li r11,_TIF_PERSYSCALL_MASK
385 addi r12,r12,TI_FLAGS
390 subi r12,r12,TI_FLAGS
392 4: /* Anything else left to do? */
394 lis r3,DEFAULT_PPR@highest /* Set default PPR */
395 sldi r3,r3,32 /* bits 11-13 are used for ppr */
397 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
399 andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP)
400 beq ret_from_except_lite
402 /* Re-enable interrupts */
403 #ifdef CONFIG_PPC_BOOK3E
409 #endif /* CONFIG_PPC_BOOK3E */
412 addi r3,r1,STACK_FRAME_OVERHEAD
413 bl do_syscall_trace_leave
416 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
418 /* Firstly we need to enable TM in the kernel */
421 rldimi r10, r9, MSR_TM_LG, 63-MSR_TM_LG
424 /* tabort, this dooms the transaction, nothing else */
425 li r9, (TM_CAUSE_SYSCALL|TM_CAUSE_PERSISTENT)
429 * Return directly to userspace. We have corrupted user register state,
430 * but userspace will never see that register state. Execution will
431 * resume after the tbegin of the aborted transaction with the
432 * checkpointed register state.
440 b . /* prevent speculative execution */
442 _ASM_NOKPROBE_SYMBOL(system_call_common);
443 _ASM_NOKPROBE_SYMBOL(system_call_exit);
445 /* Save non-volatile GPRs, if not already saved. */
454 _ASM_NOKPROBE_SYMBOL(save_nvgprs);
458 * The sigsuspend and rt_sigsuspend system calls can call do_signal
459 * and thus put the process into the stopped state where we might
460 * want to examine its user state with ptrace. Therefore we need
461 * to save all the nonvolatile registers (r14 - r31) before calling
462 * the C code. Similarly, fork, vfork and clone need the full
463 * register state on the stack so that it can be copied to the child.
486 _GLOBAL(ppc32_swapcontext)
488 bl compat_sys_swapcontext
491 _GLOBAL(ppc64_swapcontext)
496 _GLOBAL(ppc_switch_endian)
501 _GLOBAL(ret_from_fork)
507 _GLOBAL(ret_from_kernel_thread)
512 #ifdef PPC64_ELF_ABI_v2
519 #ifdef CONFIG_PPC_BOOK3S_64
521 #define FLUSH_COUNT_CACHE \
523 patch_site 1b, patch__call_flush_count_cache
526 #define BCCTR_FLUSH .long 0x4c400420
535 .global flush_count_cache
537 /* Save LR into r9 */
540 // Flush the link stack
551 // If we're just flushing the link stack, return here
553 patch_site 3b patch__flush_link_stack_return
561 patch_site 2b patch__flush_count_cache_return
573 #define FLUSH_COUNT_CACHE
574 #endif /* CONFIG_PPC_BOOK3S_64 */
577 * This routine switches between two different tasks. The process
578 * state of one is saved on its kernel stack. Then the state
579 * of the other is restored from its kernel stack. The memory
580 * management hardware is updated to the second process's state.
581 * Finally, we can return to the second process, via ret_from_except.
582 * On entry, r3 points to the THREAD for the current task, r4
583 * points to the THREAD for the new task.
585 * Note: there are two ways to get to the "going out" portion
586 * of this code; either by coming in via the entry (_switch)
587 * or via "fork" which must set up an environment equivalent
588 * to the "_switch" path. If you change this you'll have to change
589 * the fork code also.
591 * The code which creates the new task context is in 'copy_thread'
592 * in arch/powerpc/kernel/process.c
598 stdu r1,-SWITCH_FRAME_SIZE(r1)
599 /* r3-r13 are caller saved -- Cort */
602 std r0,_NIP(r1) /* Return to switch caller */
605 std r1,KSP(r3) /* Set old stack pointer */
607 kuap_check_amr r9, r10
612 * On SMP kernels, care must be taken because a task may be
613 * scheduled off CPUx and on to CPUy. Memory ordering must be
616 * Cacheable stores on CPUx will be visible when the task is
617 * scheduled on CPUy by virtue of the core scheduler barriers
618 * (see "Notes on Program-Order guarantees on SMP systems." in
619 * kernel/sched/core.c).
621 * Uncacheable stores in the case of involuntary preemption must
622 * be taken care of. The smp_mb__before_spin_lock() in __schedule()
623 * is implemented as hwsync on powerpc, which orders MMIO too. So
624 * long as there is an hwsync in the context switch path, it will
625 * be executed on the source CPU after the task has performed
626 * all MMIO ops on that CPU, and on the destination CPU before the
627 * task performs any MMIO ops there.
631 * The kernel context switch path must contain a spin_lock,
632 * which contains larx/stcx, which will clear any reservation
633 * of the task being switched.
635 #ifdef CONFIG_PPC_BOOK3S
636 /* Cancel all explict user streams as they will have no use after context
637 * switch and will stop the HW from creating streams itself
639 DCBT_BOOK3S_STOP_ALL_STREAM_IDS(r6)
642 addi r6,r4,-THREAD /* Convert THREAD to 'current' */
643 std r6,PACACURRENT(r13) /* Set new 'current' */
644 #if defined(CONFIG_STACKPROTECTOR)
645 ld r6, TASK_CANARY(r6)
646 std r6, PACA_CANARY(r13)
649 ld r8,KSP(r4) /* new stack pointer */
650 #ifdef CONFIG_PPC_BOOK3S_64
651 BEGIN_MMU_FTR_SECTION
653 END_MMU_FTR_SECTION_IFSET(MMU_FTR_TYPE_RADIX)
655 clrrdi r6,r8,28 /* get its ESID */
656 clrrdi r9,r1,28 /* get current sp ESID */
658 clrrdi r6,r8,40 /* get its 1T ESID */
659 clrrdi r9,r1,40 /* get current sp 1T ESID */
660 ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_1T_SEGMENT)
661 clrldi. r0,r6,2 /* is new ESID c00000000? */
662 cmpd cr1,r6,r9 /* or is new ESID the same as current ESID? */
664 beq 2f /* if yes, don't slbie it */
666 /* Bolt in the new stack SLB entry */
667 ld r7,KSP_VSID(r4) /* Get new stack's VSID */
668 oris r0,r6,(SLB_ESID_V)@h
669 ori r0,r0,(SLB_NUM_BOLTED-1)@l
671 li r9,MMU_SEGSIZE_1T /* insert B field */
672 oris r6,r6,(MMU_SEGSIZE_1T << SLBIE_SSIZE_SHIFT)@h
673 rldimi r7,r9,SLB_VSID_SSIZE_SHIFT,0
674 END_MMU_FTR_SECTION_IFSET(MMU_FTR_1T_SEGMENT)
676 /* Update the last bolted SLB. No write barriers are needed
677 * here, provided we only update the current CPU's SLB shadow
680 ld r9,PACA_SLBSHADOWPTR(r13)
682 std r12,SLBSHADOW_STACKESID(r9) /* Clear ESID */
683 li r12,SLBSHADOW_STACKVSID
684 STDX_BE r7,r12,r9 /* Save VSID */
685 li r12,SLBSHADOW_STACKESID
686 STDX_BE r0,r12,r9 /* Save ESID */
688 /* No need to check for MMU_FTR_NO_SLBIE_B here, since when
689 * we have 1TB segments, the only CPUs known to have the errata
690 * only support less than 1TB of system memory and we'll never
691 * actually hit this code path.
697 slbie r6 /* Workaround POWER5 < DD2.1 issue */
698 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
702 #endif /* CONFIG_PPC_BOOK3S_64 */
704 clrrdi r7, r8, THREAD_SHIFT /* base of new stack */
705 /* Note: this uses SWITCH_FRAME_SIZE rather than INT_FRAME_SIZE
706 because we don't need to leave the 288-byte ABI gap at the
707 top of the kernel stack. */
708 addi r7,r7,THREAD_SIZE-SWITCH_FRAME_SIZE
711 * PMU interrupts in radix may come in here. They will use r1, not
712 * PACAKSAVE, so this stack switch will not cause a problem. They
713 * will store to the process stack, which may then be migrated to
714 * another CPU. However the rq lock release on this CPU paired with
715 * the rq lock acquire on the new CPU before the stack becomes
716 * active on the new CPU, will order those stores.
718 mr r1,r8 /* start using new stack pointer */
719 std r7,PACAKSAVE(r13)
724 /* r3-r13 are destroyed -- Cort */
728 /* convert old thread to its task_struct for return value */
730 ld r7,_NIP(r1) /* Return to _switch caller in new task */
732 addi r1,r1,SWITCH_FRAME_SIZE
736 _GLOBAL(ret_from_except)
739 bne ret_from_except_lite
742 _GLOBAL(ret_from_except_lite)
744 * Disable interrupts so that current_thread_info()->flags
745 * can't change between when we test it and when we return
746 * from the interrupt.
748 #ifdef CONFIG_PPC_BOOK3E
752 mtmsrd r10,1 /* Update machine state */
753 #endif /* CONFIG_PPC_BOOK3E */
755 ld r9, PACA_THREAD_INFO(r13)
757 #ifdef CONFIG_PPC_BOOK3E
758 ld r10,PACACURRENT(r13)
759 #endif /* CONFIG_PPC_BOOK3E */
763 #ifdef CONFIG_PPC_BOOK3E
764 lwz r3,(THREAD+THREAD_DBCR0)(r10)
765 #endif /* CONFIG_PPC_BOOK3E */
767 /* Check current_thread_info()->flags */
768 andi. r0,r4,_TIF_USER_WORK_MASK
770 #ifdef CONFIG_PPC_BOOK3E
772 * Check to see if the dbcr0 register is set up to debug.
773 * Use the internal debug mode bit to do this.
775 andis. r0,r3,DBCR0_IDM@h
778 rlwinm r0,r0,0,~MSR_DE /* Clear MSR.DE */
785 addi r3,r1,STACK_FRAME_OVERHEAD
789 1: andi. r0,r4,_TIF_NEED_RESCHED
791 bl restore_interrupts
793 b ret_from_except_lite
795 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
796 andi. r0,r4,_TIF_USER_WORK_MASK & ~_TIF_RESTORE_TM
797 bne 3f /* only restore TM if nothing else to do */
798 addi r3,r1,STACK_FRAME_OVERHEAD
805 * Use a non volatile GPR to save and restore our thread_info flags
806 * across the call to restore_interrupts.
809 bl restore_interrupts
811 addi r3,r1,STACK_FRAME_OVERHEAD
816 /* check current_thread_info, _TIF_EMULATE_STACK_STORE */
817 andis. r8,r4,_TIF_EMULATE_STACK_STORE@h
820 addi r8,r1,INT_FRAME_SIZE /* Get the kprobed function entry */
823 subi r3,r3,INT_FRAME_SIZE /* dst: Allocate a trampoline exception frame */
824 mr r4,r1 /* src: current exception frame */
825 mr r1,r3 /* Reroute the trampoline frame to r1 */
827 /* Copy from the original to the trampoline. */
828 li r5,INT_FRAME_SIZE/8 /* size: INT_FRAME_SIZE */
829 li r6,0 /* start offset: 0 */
836 /* Do real store operation to complete stdu */
840 /* Clear _TIF_EMULATE_STACK_STORE flag */
841 lis r11,_TIF_EMULATE_STACK_STORE@h
849 #ifdef CONFIG_PREEMPTION
850 /* Check if we need to preempt */
851 andi. r0,r4,_TIF_NEED_RESCHED
853 /* Check that preempt_count() == 0 and interrupts are enabled */
854 lwz r8,TI_PREEMPT(r9)
858 andi. r0,r0,IRQS_DISABLED
862 * Here we are preempting the current task. We want to make
863 * sure we are soft-disabled first and reconcile irq state.
865 RECONCILE_IRQ_STATE(r3,r4)
866 bl preempt_schedule_irq
869 * arch_local_irq_restore() from preempt_schedule_irq above may
870 * enable hard interrupt but we really should disable interrupts
871 * when we return from the interrupt, and so that we don't get
872 * interrupted after loading SRR0/1.
874 #ifdef CONFIG_PPC_BOOK3E
878 mtmsrd r10,1 /* Update machine state */
879 #endif /* CONFIG_PPC_BOOK3E */
880 #endif /* CONFIG_PREEMPTION */
882 .globl fast_exc_return_irq
886 * This is the main kernel exit path. First we check if we
887 * are about to re-enable interrupts
890 lbz r6,PACAIRQSOFTMASK(r13)
891 andi. r5,r5,IRQS_DISABLED
892 bne .Lrestore_irq_off
894 /* We are enabling, were we already enabled ? Yes, just return */
895 andi. r6,r6,IRQS_DISABLED
899 * We are about to soft-enable interrupts (we are hard disabled
900 * at this point). We check if there's anything that needs to
903 lbz r0,PACAIRQHAPPENED(r13)
905 bne- .Lrestore_check_irq_replay
908 * Get here when nothing happened while soft-disabled, just
909 * soft-enable and move-on. We will hard-enable as a side
915 stb r0,PACAIRQSOFTMASK(r13);
918 * Final return path. BookE is handled in a different file
921 #ifdef CONFIG_PPC_BOOK3E
922 b exception_return_book3e
925 * Clear the reservation. If we know the CPU tracks the address of
926 * the reservation then we can potentially save some cycles and use
927 * a larx. On POWER6 and POWER7 this is significantly faster.
930 stdcx. r0,0,r1 /* to clear the reservation */
933 ALT_FTR_SECTION_END_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS)
936 * Some code path such as load_up_fpu or altivec return directly
937 * here. They run entirely hard disabled and do not alter the
938 * interrupt state. They also don't use lwarx/stwcx. and thus
939 * are known not to leave dangling reservations.
941 .globl fast_exception_return
942 fast_exception_return:
951 kuap_check_amr r5, r6
956 beq- .Lunrecov_restore
959 * Clear RI before restoring r13. If we are returning to
960 * userspace and we take an exception after restoring r13,
961 * we end up corrupting the userspace r13 value.
966 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
968 std r3, PACATMSCRATCH(r13) /* Stash returned-to MSR */
971 * r13 is our per cpu area, only restore it if we are returning to
972 * userspace the value stored in the stack frame may belong to
981 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
982 ACCOUNT_CPU_USER_EXIT(r13, r2, r4)
986 * We don't need to restore AMR on the way back to userspace for KUAP.
987 * The value of AMR only matters while we're in the kernel.
1002 b . /* prevent speculative execution */
1004 1: mtspr SPRN_SRR1,r3
1012 * Leaving a stale exception_marker on the stack can confuse
1013 * the reliable stack unwinder later on. Clear it.
1016 std r2,STACK_FRAME_OVERHEAD-16(r1)
1027 b . /* prevent speculative execution */
1029 #endif /* CONFIG_PPC_BOOK3E */
1032 * We are returning to a context with interrupts soft disabled.
1034 * However, we may also about to hard enable, so we need to
1035 * make sure that in this case, we also clear PACA_IRQ_HARD_DIS
1036 * or that bit can get out of sync and bad things will happen
1040 lbz r7,PACAIRQHAPPENED(r13)
1043 rlwinm r7,r7,0,~PACA_IRQ_HARD_DIS
1044 stb r7,PACAIRQHAPPENED(r13)
1046 #if defined(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG) && defined(CONFIG_BUG)
1047 /* The interrupt should not have soft enabled. */
1048 lbz r7,PACAIRQSOFTMASK(r13)
1049 1: tdeqi r7,IRQS_ENABLED
1050 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
1055 * Something did happen, check if a re-emit is needed
1056 * (this also clears paca->irq_happened)
1058 .Lrestore_check_irq_replay:
1059 /* XXX: We could implement a fast path here where we check
1060 * for irq_happened being just 0x01, in which case we can
1061 * clear it and return. That means that we would potentially
1062 * miss a decrementer having wrapped all the way around.
1064 * Still, this might be useful for things like hash_page
1066 bl __check_irq_replay
1068 beq .Lrestore_no_replay
1071 * We need to re-emit an interrupt. We do so by re-using our
1072 * existing exception frame. We first change the trap value,
1073 * but we need to ensure we preserve the low nibble of it
1081 * PACA_IRQ_HARD_DIS won't always be set here, so set it now
1082 * to reconcile the IRQ state. Tracing is already accounted for.
1084 lbz r4,PACAIRQHAPPENED(r13)
1085 ori r4,r4,PACA_IRQ_HARD_DIS
1086 stb r4,PACAIRQHAPPENED(r13)
1089 * Then find the right handler and call it. Interrupts are
1090 * still soft-disabled and we keep them that way.
1094 addi r3,r1,STACK_FRAME_OVERHEAD;
1097 1: cmpwi cr0,r3,0xf00
1099 addi r3,r1,STACK_FRAME_OVERHEAD;
1100 bl performance_monitor_exception
1102 1: cmpwi cr0,r3,0xe60
1104 addi r3,r1,STACK_FRAME_OVERHEAD;
1105 bl handle_hmi_exception
1107 1: cmpwi cr0,r3,0x900
1109 addi r3,r1,STACK_FRAME_OVERHEAD;
1112 #ifdef CONFIG_PPC_DOORBELL
1114 #ifdef CONFIG_PPC_BOOK3E
1118 #endif /* CONFIG_PPC_BOOK3E */
1120 addi r3,r1,STACK_FRAME_OVERHEAD;
1121 bl doorbell_exception
1122 #endif /* CONFIG_PPC_DOORBELL */
1123 1: b ret_from_except /* What else to do here ? */
1126 addi r3,r1,STACK_FRAME_OVERHEAD
1127 bl unrecoverable_exception
1130 _ASM_NOKPROBE_SYMBOL(ret_from_except);
1131 _ASM_NOKPROBE_SYMBOL(ret_from_except_lite);
1132 _ASM_NOKPROBE_SYMBOL(resume_kernel);
1133 _ASM_NOKPROBE_SYMBOL(fast_exc_return_irq);
1134 _ASM_NOKPROBE_SYMBOL(restore);
1135 _ASM_NOKPROBE_SYMBOL(fast_exception_return);
1138 #ifdef CONFIG_PPC_RTAS
1140 * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
1141 * called with the MMU off.
1143 * In addition, we need to be in 32b mode, at least for now.
1145 * Note: r3 is an input parameter to rtas, so don't trash it...
1150 stdu r1,-SWITCH_FRAME_SIZE(r1) /* Save SP and create stack space. */
1152 /* Because RTAS is running in 32b mode, it clobbers the high order half
1153 * of all registers that it saves. We therefore save those registers
1154 * RTAS might touch to the stack. (r0, r3-r13 are caller saved)
1156 SAVE_GPR(2, r1) /* Save the TOC */
1157 SAVE_GPR(13, r1) /* Save paca */
1158 SAVE_8GPRS(14, r1) /* Save the non-volatiles */
1159 SAVE_10GPRS(22, r1) /* ditto */
1172 /* Temporary workaround to clear CR until RTAS can be modified to
1179 /* There is no way it is acceptable to get here with interrupts enabled,
1180 * check it with the asm equivalent of WARN_ON
1182 lbz r0,PACAIRQSOFTMASK(r13)
1183 1: tdeqi r0,IRQS_ENABLED
1184 EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING
1187 /* Hard-disable interrupts */
1193 /* Unfortunately, the stack pointer and the MSR are also clobbered,
1194 * so they are saved in the PACA which allows us to restore
1195 * our original state after RTAS returns.
1198 std r6,PACASAVEDMSR(r13)
1200 /* Setup our real return addr */
1201 LOAD_REG_ADDR(r4,rtas_return_loc)
1202 clrldi r4,r4,2 /* convert to realmode address */
1206 ori r0,r0,MSR_EE|MSR_SE|MSR_BE|MSR_RI
1210 rldicr r9,r9,MSR_SF_LG,(63-MSR_SF_LG)
1211 ori r9,r9,MSR_IR|MSR_DR|MSR_FE0|MSR_FE1|MSR_FP|MSR_RI|MSR_LE
1215 sync /* disable interrupts so SRR0/1 */
1216 mtmsrd r0 /* don't get trashed */
1218 LOAD_REG_ADDR(r4, rtas)
1219 ld r5,RTASENTRY(r4) /* get the rtas->entry value */
1220 ld r4,RTASBASE(r4) /* get the rtas->base value */
1225 b . /* prevent speculative execution */
1231 * Clear RI and set SF before anything.
1236 sldi r0,r0,(MSR_SF_LG - MSR_RI_LG)
1241 /* relocation is off at this point */
1243 clrldi r4,r4,2 /* convert to realmode address */
1247 ld r3,(1f-0b)(r3) /* get &rtas_restore_regs */
1249 ld r1,PACAR1(r4) /* Restore our SP */
1250 ld r4,PACASAVEDMSR(r4) /* Restore our MSR */
1255 b . /* prevent speculative execution */
1256 _ASM_NOKPROBE_SYMBOL(__enter_rtas)
1257 _ASM_NOKPROBE_SYMBOL(rtas_return_loc)
1260 1: .8byte rtas_restore_regs
1263 /* relocation is on at this point */
1264 REST_GPR(2, r1) /* Restore the TOC */
1265 REST_GPR(13, r1) /* Restore paca */
1266 REST_8GPRS(14, r1) /* Restore the non-volatiles */
1267 REST_10GPRS(22, r1) /* ditto */
1282 addi r1,r1,SWITCH_FRAME_SIZE /* Unstack our frame */
1283 ld r0,16(r1) /* get return address */
1286 blr /* return to caller */
1288 #endif /* CONFIG_PPC_RTAS */
1293 stdu r1,-SWITCH_FRAME_SIZE(r1) /* Save SP and create stack space */
1295 /* Because PROM is running in 32b mode, it clobbers the high order half
1296 * of all registers that it saves. We therefore save those registers
1297 * PROM might touch to the stack. (r0, r3-r13 are caller saved)
1308 /* Put PROM address in SRR0 */
1311 /* Setup our trampoline return addr in LR */
1314 addi r4,r4,(1f - 0b)
1317 /* Prepare a 32-bit mode big endian MSR
1319 #ifdef CONFIG_PPC_BOOK3E
1320 rlwinm r11,r11,0,1,31
1323 #else /* CONFIG_PPC_BOOK3E */
1324 LOAD_REG_IMMEDIATE(r12, MSR_SF | MSR_ISF | MSR_LE)
1328 #endif /* CONFIG_PPC_BOOK3E */
1330 1: /* Return from OF */
1333 /* Just make sure that r1 top 32 bits didn't get
1338 /* Restore the MSR (back to 64 bits) */
1343 /* Restore other registers */
1351 addi r1,r1,SWITCH_FRAME_SIZE