Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1 | /* |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 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 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 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> |
Stephen Rothwell | 3f639ee | 2006-09-25 18:19:00 +1000 | [diff] [blame] | 30 | #include <asm/firmware.h> |
David Woodhouse | 007d88d | 2007-01-01 18:45:34 +0000 | [diff] [blame] | 31 | #include <asm/bug.h> |
Benjamin Herrenschmidt | ec2b36b | 2008-04-17 14:34:59 +1000 | [diff] [blame] | 32 | #include <asm/ptrace.h> |
Benjamin Herrenschmidt | 945feb1 | 2008-04-17 14:35:01 +1000 | [diff] [blame] | 33 | #include <asm/irqflags.h> |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 34 | #include <asm/ftrace.h> |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 35 | #include <asm/hw_irq.h> |
Li Zhong | 5d1c574 | 2013-05-13 16:16:43 +0000 | [diff] [blame] | 36 | #include <asm/context_tracking.h> |
Sam bobroff | b4b56f9 | 2015-06-12 11:06:32 +1000 | [diff] [blame] | 37 | #include <asm/tm.h> |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * System calls. |
| 41 | */ |
| 42 | .section ".toc","aw" |
Anton Blanchard | c857c43 | 2014-02-04 16:05:53 +1100 | [diff] [blame] | 43 | SYS_CALL_TABLE: |
| 44 | .tc sys_call_table[TC],sys_call_table |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 45 | |
| 46 | /* This value is used to mark exception frames on the stack. */ |
| 47 | exception_marker: |
Benjamin Herrenschmidt | ec2b36b | 2008-04-17 14:34:59 +1000 | [diff] [blame] | 48 | .tc ID_EXC_MARKER[TC],STACK_FRAME_REGS_MARKER |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 49 | |
| 50 | .section ".text" |
| 51 | .align 7 |
| 52 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 53 | .globl system_call_common |
| 54 | system_call_common: |
Sam bobroff | b4b56f9 | 2015-06-12 11:06:32 +1000 | [diff] [blame] | 55 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 56 | BEGIN_FTR_SECTION |
| 57 | extrdi. r10, r12, 1, (63-MSR_TS_T_LG) /* transaction active? */ |
| 58 | bne tabort_syscall |
| 59 | END_FTR_SECTION_IFSET(CPU_FTR_TM) |
| 60 | #endif |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 61 | andi. r10,r12,MSR_PR |
| 62 | mr r10,r1 |
| 63 | addi r1,r1,-INT_FRAME_SIZE |
| 64 | beq- 1f |
| 65 | ld r1,PACAKSAVE(r13) |
| 66 | 1: std r10,0(r1) |
| 67 | std r11,_NIP(r1) |
| 68 | std r12,_MSR(r1) |
| 69 | std r0,GPR0(r1) |
| 70 | std r10,GPR1(r1) |
Haren Myneni | 5d75b26 | 2012-12-06 21:46:37 +0000 | [diff] [blame] | 71 | beq 2f /* if from kernel mode */ |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 72 | ACCOUNT_CPU_USER_ENTRY(r10, r11) |
Haren Myneni | 5d75b26 | 2012-12-06 21:46:37 +0000 | [diff] [blame] | 73 | 2: std r2,GPR2(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 74 | std r3,GPR3(r1) |
Anton Blanchard | fd6c40f | 2012-04-05 03:44:48 +0000 | [diff] [blame] | 75 | mfcr r2 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 76 | std r4,GPR4(r1) |
| 77 | std r5,GPR5(r1) |
| 78 | std r6,GPR6(r1) |
| 79 | std r7,GPR7(r1) |
| 80 | std r8,GPR8(r1) |
| 81 | li r11,0 |
| 82 | std r11,GPR9(r1) |
| 83 | std r11,GPR10(r1) |
| 84 | std r11,GPR11(r1) |
| 85 | std r11,GPR12(r1) |
Anton Blanchard | 823df43 | 2012-04-04 18:24:29 +0000 | [diff] [blame] | 86 | std r11,_XER(r1) |
Anton Blanchard | 8208741 | 2012-04-04 18:26:39 +0000 | [diff] [blame] | 87 | std r11,_CTR(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 88 | std r9,GPR13(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 89 | mflr r10 |
Anton Blanchard | fd6c40f | 2012-04-05 03:44:48 +0000 | [diff] [blame] | 90 | /* |
| 91 | * This clears CR0.SO (bit 28), which is the error indication on |
| 92 | * return from this system call. |
| 93 | */ |
| 94 | rldimi r2,r11,28,(63-28) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 95 | li r11,0xc01 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 96 | std r10,_LINK(r1) |
| 97 | std r11,_TRAP(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 98 | std r3,ORIG_GPR3(r1) |
Anton Blanchard | fd6c40f | 2012-04-05 03:44:48 +0000 | [diff] [blame] | 99 | std r2,_CCR(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 100 | ld r2,PACATOC(r13) |
| 101 | addi r9,r1,STACK_FRAME_OVERHEAD |
| 102 | ld r11,exception_marker@toc(r2) |
| 103 | std r11,-16(r9) /* "regshere" marker */ |
Frederic Weisbecker | abf917c | 2012-07-25 07:56:04 +0200 | [diff] [blame] | 104 | #if defined(CONFIG_VIRT_CPU_ACCOUNTING_NATIVE) && defined(CONFIG_PPC_SPLPAR) |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 105 | BEGIN_FW_FTR_SECTION |
| 106 | beq 33f |
| 107 | /* if from user, see if there are any DTL entries to process */ |
| 108 | ld r10,PACALPPACAPTR(r13) /* get ptr to VPA */ |
| 109 | ld r11,PACA_DTL_RIDX(r13) /* get log read index */ |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 110 | addi r10,r10,LPPACA_DTLIDX |
| 111 | LDX_BE r10,0,r10 /* get log write index */ |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 112 | cmpd cr1,r11,r10 |
| 113 | beq+ cr1,33f |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 114 | bl accumulate_stolen_time |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 115 | REST_GPR(0,r1) |
| 116 | REST_4GPRS(3,r1) |
| 117 | REST_2GPRS(7,r1) |
| 118 | addi r9,r1,STACK_FRAME_OVERHEAD |
| 119 | 33: |
| 120 | END_FW_FTR_SECTION_IFSET(FW_FEATURE_SPLPAR) |
Frederic Weisbecker | abf917c | 2012-07-25 07:56:04 +0200 | [diff] [blame] | 121 | #endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE && CONFIG_PPC_SPLPAR */ |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 122 | |
Benjamin Herrenschmidt | 1421ae0 | 2012-03-01 15:40:23 +1100 | [diff] [blame] | 123 | /* |
| 124 | * A syscall should always be called with interrupts enabled |
| 125 | * so we just unconditionally hard-enable here. When some kind |
| 126 | * of irq tracing is used, we additionally check that condition |
| 127 | * is correct |
| 128 | */ |
| 129 | #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_BUG) |
| 130 | lbz r10,PACASOFTIRQEN(r13) |
| 131 | xori r10,r10,1 |
| 132 | 1: tdnei r10,0 |
| 133 | EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING |
| 134 | #endif |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 135 | |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 136 | #ifdef CONFIG_PPC_BOOK3E |
| 137 | wrteei 1 |
| 138 | #else |
Benjamin Herrenschmidt | 1421ae0 | 2012-03-01 15:40:23 +1100 | [diff] [blame] | 139 | ld r11,PACAKMSR(r13) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 140 | ori r11,r11,MSR_EE |
| 141 | mtmsrd r11,1 |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 142 | #endif /* CONFIG_PPC_BOOK3E */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 143 | |
Benjamin Herrenschmidt | 1421ae0 | 2012-03-01 15:40:23 +1100 | [diff] [blame] | 144 | /* We do need to set SOFTE in the stack frame or the return |
| 145 | * from interrupt will be painful |
| 146 | */ |
| 147 | li r10,1 |
| 148 | std r10,SOFTE(r1) |
| 149 | |
Stuart Yoder | 9778b69 | 2012-07-05 04:41:35 +0000 | [diff] [blame] | 150 | CURRENT_THREAD_INFO(r11, r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 151 | ld r10,TI_FLAGS(r11) |
Michael Ellerman | 10ea834 | 2015-01-15 12:01:42 +1100 | [diff] [blame] | 152 | andi. r11,r10,_TIF_SYSCALL_DOTRACE |
Anton Blanchard | 2540334 | 2013-01-09 10:47:36 +1100 | [diff] [blame] | 153 | bne syscall_dotrace |
Anton Blanchard | d14299d | 2012-04-04 18:23:27 +0000 | [diff] [blame] | 154 | .Lsyscall_dotrace_cont: |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 155 | cmpldi 0,r0,NR_syscalls |
| 156 | bge- syscall_enosys |
| 157 | |
| 158 | system_call: /* label this so stack traces look sane */ |
| 159 | /* |
| 160 | * Need to vector to 32 Bit or default sys_call_table here, |
| 161 | * based on caller's run-mode / personality. |
| 162 | */ |
Anton Blanchard | c857c43 | 2014-02-04 16:05:53 +1100 | [diff] [blame] | 163 | ld r11,SYS_CALL_TABLE@toc(2) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 164 | andi. r10,r10,_TIF_32BIT |
| 165 | beq 15f |
| 166 | addi r11,r11,8 /* use 32-bit syscall entries */ |
| 167 | clrldi r3,r3,32 |
| 168 | clrldi r4,r4,32 |
| 169 | clrldi r5,r5,32 |
| 170 | clrldi r6,r6,32 |
| 171 | clrldi r7,r7,32 |
| 172 | clrldi r8,r8,32 |
| 173 | 15: |
| 174 | slwi r0,r0,4 |
Anton Blanchard | cc7efbf | 2014-02-04 16:07:47 +1100 | [diff] [blame] | 175 | ldx r12,r11,r0 /* Fetch system call handler [ptr] */ |
| 176 | mtctr r12 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 177 | bctrl /* Call handler */ |
| 178 | |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 179 | .Lsyscall_exit: |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 180 | std r3,RESULT(r1) |
Stuart Yoder | 9778b69 | 2012-07-05 04:41:35 +0000 | [diff] [blame] | 181 | CURRENT_THREAD_INFO(r12, r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 182 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 183 | ld r8,_MSR(r1) |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 184 | #ifdef CONFIG_PPC_BOOK3S |
| 185 | /* No MSR:RI on BookE */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 186 | andi. r10,r8,MSR_RI |
| 187 | beq- unrecov_restore |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 188 | #endif |
Benjamin Herrenschmidt | 1421ae0 | 2012-03-01 15:40:23 +1100 | [diff] [blame] | 189 | /* |
| 190 | * Disable interrupts so current_thread_info()->flags can't change, |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 191 | * and so that we don't get interrupted after loading SRR0/1. |
| 192 | */ |
| 193 | #ifdef CONFIG_PPC_BOOK3E |
| 194 | wrteei 0 |
| 195 | #else |
Benjamin Herrenschmidt | 1421ae0 | 2012-03-01 15:40:23 +1100 | [diff] [blame] | 196 | ld r10,PACAKMSR(r13) |
Anton Blanchard | ac1dc36 | 2012-05-29 12:22:00 +0000 | [diff] [blame] | 197 | /* |
| 198 | * For performance reasons we clear RI the same time that we |
| 199 | * clear EE. We only need to clear RI just before we restore r13 |
| 200 | * below, but batching it with EE saves us one expensive mtmsrd call. |
| 201 | * We have to be careful to restore RI if we branch anywhere from |
| 202 | * here (eg syscall_exit_work). |
| 203 | */ |
| 204 | li r9,MSR_RI |
| 205 | andc r11,r10,r9 |
| 206 | mtmsrd r11,1 |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 207 | #endif /* CONFIG_PPC_BOOK3E */ |
| 208 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 209 | ld r9,TI_FLAGS(r12) |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 210 | li r11,-_LAST_ERRNO |
Michael Ellerman | 10ea834 | 2015-01-15 12:01:42 +1100 | [diff] [blame] | 211 | andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 212 | bne- syscall_exit_work |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 213 | cmpld r3,r11 |
| 214 | ld r5,_CCR(r1) |
| 215 | bge- syscall_error |
Anton Blanchard | d14299d | 2012-04-04 18:23:27 +0000 | [diff] [blame] | 216 | .Lsyscall_error_cont: |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 217 | ld r7,_NIP(r1) |
Anton Blanchard | f89451f | 2010-08-11 01:40:27 +0000 | [diff] [blame] | 218 | BEGIN_FTR_SECTION |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 219 | stdcx. r0,0,r1 /* to clear the reservation */ |
Anton Blanchard | f89451f | 2010-08-11 01:40:27 +0000 | [diff] [blame] | 220 | END_FTR_SECTION_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 221 | andi. r6,r8,MSR_PR |
| 222 | ld r4,_LINK(r1) |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 223 | |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 224 | beq- 1f |
| 225 | ACCOUNT_CPU_USER_EXIT(r11, r12) |
Haren Myneni | 44e9309 | 2012-12-06 21:51:04 +0000 | [diff] [blame] | 226 | HMT_MEDIUM_LOW_HAS_PPR |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 227 | ld r13,GPR13(r1) /* only restore r13 if returning to usermode */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 228 | 1: ld r2,GPR2(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 229 | ld r1,GPR1(r1) |
| 230 | mtlr r4 |
| 231 | mtcr r5 |
| 232 | mtspr SPRN_SRR0,r7 |
| 233 | mtspr SPRN_SRR1,r8 |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 234 | RFI |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 235 | b . /* prevent speculative execution */ |
| 236 | |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 237 | syscall_error: |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 238 | oris r5,r5,0x1000 /* Set SO bit in CR */ |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 239 | neg r3,r3 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 240 | std r5,_CCR(r1) |
Anton Blanchard | d14299d | 2012-04-04 18:23:27 +0000 | [diff] [blame] | 241 | b .Lsyscall_error_cont |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 242 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 243 | /* Traced system call support */ |
| 244 | syscall_dotrace: |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 245 | bl save_nvgprs |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 246 | addi r3,r1,STACK_FRAME_OVERHEAD |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 247 | bl do_syscall_trace_enter |
Roland McGrath | 4f72c42 | 2008-07-27 16:51:03 +1000 | [diff] [blame] | 248 | /* |
| 249 | * Restore argument registers possibly just changed. |
| 250 | * We use the return value of do_syscall_trace_enter |
| 251 | * for the call number to look up in the table (r0). |
| 252 | */ |
| 253 | mr r0,r3 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 254 | ld r3,GPR3(r1) |
| 255 | ld r4,GPR4(r1) |
| 256 | ld r5,GPR5(r1) |
| 257 | ld r6,GPR6(r1) |
| 258 | ld r7,GPR7(r1) |
| 259 | ld r8,GPR8(r1) |
| 260 | addi r9,r1,STACK_FRAME_OVERHEAD |
Stuart Yoder | 9778b69 | 2012-07-05 04:41:35 +0000 | [diff] [blame] | 261 | CURRENT_THREAD_INFO(r10, r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 262 | ld r10,TI_FLAGS(r10) |
Anton Blanchard | d14299d | 2012-04-04 18:23:27 +0000 | [diff] [blame] | 263 | b .Lsyscall_dotrace_cont |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 264 | |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 265 | syscall_enosys: |
| 266 | li r3,-ENOSYS |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 267 | b .Lsyscall_exit |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 268 | |
| 269 | syscall_exit_work: |
Anton Blanchard | ac1dc36 | 2012-05-29 12:22:00 +0000 | [diff] [blame] | 270 | #ifdef CONFIG_PPC_BOOK3S |
| 271 | mtmsrd r10,1 /* Restore RI */ |
| 272 | #endif |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 273 | /* If TIF_RESTOREALL is set, don't scribble on either r3 or ccr. |
| 274 | If TIF_NOERROR is set, just save r3 as it is. */ |
| 275 | |
| 276 | andi. r0,r9,_TIF_RESTOREALL |
Paul Mackerras | 1bd7933 | 2006-03-08 13:24:22 +1100 | [diff] [blame] | 277 | beq+ 0f |
| 278 | REST_NVGPRS(r1) |
| 279 | b 2f |
| 280 | 0: cmpld r3,r11 /* r10 is -LAST_ERRNO */ |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 281 | blt+ 1f |
| 282 | andi. r0,r9,_TIF_NOERROR |
| 283 | bne- 1f |
| 284 | ld r5,_CCR(r1) |
| 285 | neg r3,r3 |
| 286 | oris r5,r5,0x1000 /* Set SO bit in CR */ |
| 287 | std r5,_CCR(r1) |
| 288 | 1: std r3,GPR3(r1) |
| 289 | 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK) |
| 290 | beq 4f |
| 291 | |
Paul Mackerras | 1bd7933 | 2006-03-08 13:24:22 +1100 | [diff] [blame] | 292 | /* Clear per-syscall TIF flags if any are set. */ |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 293 | |
| 294 | li r11,_TIF_PERSYSCALL_MASK |
| 295 | addi r12,r12,TI_FLAGS |
| 296 | 3: ldarx r10,0,r12 |
| 297 | andc r10,r10,r11 |
| 298 | stdcx. r10,0,r12 |
| 299 | bne- 3b |
| 300 | subi r12,r12,TI_FLAGS |
Paul Mackerras | 1bd7933 | 2006-03-08 13:24:22 +1100 | [diff] [blame] | 301 | |
| 302 | 4: /* Anything else left to do? */ |
Alistair Popple | 05e38e5 | 2013-04-15 11:44:14 +1000 | [diff] [blame] | 303 | SET_DEFAULT_THREAD_PPR(r3, r10) /* Set thread.ppr = 3 */ |
Michael Ellerman | 10ea834 | 2015-01-15 12:01:42 +1100 | [diff] [blame] | 304 | andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 305 | beq ret_from_except_lite |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 306 | |
| 307 | /* Re-enable interrupts */ |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 308 | #ifdef CONFIG_PPC_BOOK3E |
| 309 | wrteei 1 |
| 310 | #else |
Benjamin Herrenschmidt | 1421ae0 | 2012-03-01 15:40:23 +1100 | [diff] [blame] | 311 | ld r10,PACAKMSR(r13) |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 312 | ori r10,r10,MSR_EE |
| 313 | mtmsrd r10,1 |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 314 | #endif /* CONFIG_PPC_BOOK3E */ |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 315 | |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 316 | bl save_nvgprs |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 317 | addi r3,r1,STACK_FRAME_OVERHEAD |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 318 | bl do_syscall_trace_leave |
| 319 | b ret_from_except |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 320 | |
Sam bobroff | b4b56f9 | 2015-06-12 11:06:32 +1000 | [diff] [blame] | 321 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 322 | tabort_syscall: |
| 323 | /* Firstly we need to enable TM in the kernel */ |
| 324 | mfmsr r10 |
| 325 | li r13, 1 |
| 326 | rldimi r10, r13, MSR_TM_LG, 63-MSR_TM_LG |
| 327 | mtmsrd r10, 0 |
| 328 | |
| 329 | /* tabort, this dooms the transaction, nothing else */ |
| 330 | li r13, (TM_CAUSE_SYSCALL|TM_CAUSE_PERSISTENT) |
| 331 | TABORT(R13) |
| 332 | |
| 333 | /* |
| 334 | * Return directly to userspace. We have corrupted user register state, |
| 335 | * but userspace will never see that register state. Execution will |
| 336 | * resume after the tbegin of the aborted transaction with the |
| 337 | * checkpointed register state. |
| 338 | */ |
| 339 | li r13, MSR_RI |
| 340 | andc r10, r10, r13 |
| 341 | mtmsrd r10, 1 |
| 342 | mtspr SPRN_SRR0, r11 |
| 343 | mtspr SPRN_SRR1, r12 |
| 344 | |
| 345 | rfid |
| 346 | b . /* prevent speculative execution */ |
| 347 | #endif |
| 348 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 349 | /* Save non-volatile GPRs, if not already saved. */ |
| 350 | _GLOBAL(save_nvgprs) |
| 351 | ld r11,_TRAP(r1) |
| 352 | andi. r0,r11,1 |
| 353 | beqlr- |
| 354 | SAVE_NVGPRS(r1) |
| 355 | clrrdi r0,r11,1 |
| 356 | std r0,_TRAP(r1) |
| 357 | blr |
| 358 | |
David Woodhouse | 401d1f0 | 2005-11-15 18:52:18 +0000 | [diff] [blame] | 359 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 360 | /* |
| 361 | * The sigsuspend and rt_sigsuspend system calls can call do_signal |
| 362 | * and thus put the process into the stopped state where we might |
| 363 | * want to examine its user state with ptrace. Therefore we need |
| 364 | * to save all the nonvolatile registers (r14 - r31) before calling |
| 365 | * the C code. Similarly, fork, vfork and clone need the full |
| 366 | * register state on the stack so that it can be copied to the child. |
| 367 | */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 368 | |
| 369 | _GLOBAL(ppc_fork) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 370 | bl save_nvgprs |
| 371 | bl sys_fork |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 372 | b .Lsyscall_exit |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 373 | |
| 374 | _GLOBAL(ppc_vfork) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 375 | bl save_nvgprs |
| 376 | bl sys_vfork |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 377 | b .Lsyscall_exit |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 378 | |
| 379 | _GLOBAL(ppc_clone) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 380 | bl save_nvgprs |
| 381 | bl sys_clone |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 382 | b .Lsyscall_exit |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 383 | |
Paul Mackerras | 1bd7933 | 2006-03-08 13:24:22 +1100 | [diff] [blame] | 384 | _GLOBAL(ppc32_swapcontext) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 385 | bl save_nvgprs |
| 386 | bl compat_sys_swapcontext |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 387 | b .Lsyscall_exit |
Paul Mackerras | 1bd7933 | 2006-03-08 13:24:22 +1100 | [diff] [blame] | 388 | |
| 389 | _GLOBAL(ppc64_swapcontext) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 390 | bl save_nvgprs |
| 391 | bl sys_swapcontext |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 392 | b .Lsyscall_exit |
Paul Mackerras | 1bd7933 | 2006-03-08 13:24:22 +1100 | [diff] [blame] | 393 | |
Michael Ellerman | 529d235 | 2015-03-28 21:35:16 +1100 | [diff] [blame] | 394 | _GLOBAL(ppc_switch_endian) |
| 395 | bl save_nvgprs |
| 396 | bl sys_switch_endian |
| 397 | b .Lsyscall_exit |
| 398 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 399 | _GLOBAL(ret_from_fork) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 400 | bl schedule_tail |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 401 | REST_NVGPRS(r1) |
| 402 | li r3,0 |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 403 | b .Lsyscall_exit |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 404 | |
Al Viro | 58254e1 | 2012-09-12 18:32:42 -0400 | [diff] [blame] | 405 | _GLOBAL(ret_from_kernel_thread) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 406 | bl schedule_tail |
Al Viro | 58254e1 | 2012-09-12 18:32:42 -0400 | [diff] [blame] | 407 | REST_NVGPRS(r1) |
Al Viro | 58254e1 | 2012-09-12 18:32:42 -0400 | [diff] [blame] | 408 | mtlr r14 |
| 409 | mr r3,r15 |
Anton Blanchard | 7cedd60 | 2014-02-04 16:08:51 +1100 | [diff] [blame] | 410 | #if defined(_CALL_ELF) && _CALL_ELF == 2 |
| 411 | mr r12,r14 |
| 412 | #endif |
Al Viro | 58254e1 | 2012-09-12 18:32:42 -0400 | [diff] [blame] | 413 | blrl |
| 414 | li r3,0 |
Michael Ellerman | 4c3b216 | 2014-12-05 21:16:59 +1100 | [diff] [blame] | 415 | b .Lsyscall_exit |
Al Viro | be6abfa7 | 2012-08-31 15:48:05 -0400 | [diff] [blame] | 416 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 417 | /* |
| 418 | * This routine switches between two different tasks. The process |
| 419 | * state of one is saved on its kernel stack. Then the state |
| 420 | * of the other is restored from its kernel stack. The memory |
| 421 | * management hardware is updated to the second process's state. |
| 422 | * Finally, we can return to the second process, via ret_from_except. |
| 423 | * On entry, r3 points to the THREAD for the current task, r4 |
| 424 | * points to the THREAD for the new task. |
| 425 | * |
| 426 | * Note: there are two ways to get to the "going out" portion |
| 427 | * of this code; either by coming in via the entry (_switch) |
| 428 | * or via "fork" which must set up an environment equivalent |
| 429 | * to the "_switch" path. If you change this you'll have to change |
| 430 | * the fork code also. |
| 431 | * |
| 432 | * The code which creates the new task context is in 'copy_thread' |
Jon Mason | 2ef9481 | 2006-01-23 10:58:20 -0600 | [diff] [blame] | 433 | * in arch/powerpc/kernel/process.c |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 434 | */ |
| 435 | .align 7 |
| 436 | _GLOBAL(_switch) |
| 437 | mflr r0 |
| 438 | std r0,16(r1) |
| 439 | stdu r1,-SWITCH_FRAME_SIZE(r1) |
| 440 | /* r3-r13 are caller saved -- Cort */ |
| 441 | SAVE_8GPRS(14, r1) |
| 442 | SAVE_10GPRS(22, r1) |
| 443 | mflr r20 /* Return to switch caller */ |
| 444 | mfmsr r22 |
| 445 | li r0, MSR_FP |
Michael Neuling | ce48b21 | 2008-06-25 14:07:18 +1000 | [diff] [blame] | 446 | #ifdef CONFIG_VSX |
| 447 | BEGIN_FTR_SECTION |
| 448 | oris r0,r0,MSR_VSX@h /* Disable VSX */ |
| 449 | END_FTR_SECTION_IFSET(CPU_FTR_VSX) |
| 450 | #endif /* CONFIG_VSX */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 451 | #ifdef CONFIG_ALTIVEC |
| 452 | BEGIN_FTR_SECTION |
| 453 | oris r0,r0,MSR_VEC@h /* Disable altivec */ |
| 454 | mfspr r24,SPRN_VRSAVE /* save vrsave register value */ |
| 455 | std r24,THREAD_VRSAVE(r3) |
| 456 | END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) |
| 457 | #endif /* CONFIG_ALTIVEC */ |
| 458 | and. r0,r0,r22 |
| 459 | beq+ 1f |
| 460 | andc r22,r22,r0 |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 461 | MTMSRD(r22) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 462 | isync |
| 463 | 1: std r20,_NIP(r1) |
| 464 | mfcr r23 |
| 465 | std r23,_CCR(r1) |
| 466 | std r1,KSP(r3) /* Set old stack pointer */ |
| 467 | |
Ian Munsie | 2468dcf | 2013-02-07 15:46:58 +0000 | [diff] [blame] | 468 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 469 | BEGIN_FTR_SECTION |
Michael Ellerman | 9353374 | 2013-04-30 20:17:04 +0000 | [diff] [blame] | 470 | /* Event based branch registers */ |
| 471 | mfspr r0, SPRN_BESCR |
| 472 | std r0, THREAD_BESCR(r3) |
| 473 | mfspr r0, SPRN_EBBHR |
| 474 | std r0, THREAD_EBBHR(r3) |
| 475 | mfspr r0, SPRN_EBBRR |
| 476 | std r0, THREAD_EBBRR(r3) |
Michael Ellerman | 1de2bd4 | 2013-04-30 20:17:02 +0000 | [diff] [blame] | 477 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) |
Ian Munsie | 2468dcf | 2013-02-07 15:46:58 +0000 | [diff] [blame] | 478 | #endif |
| 479 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 480 | #ifdef CONFIG_SMP |
| 481 | /* We need a sync somewhere here to make sure that if the |
| 482 | * previous task gets rescheduled on another CPU, it sees all |
| 483 | * stores it has performed on this one. |
| 484 | */ |
| 485 | sync |
| 486 | #endif /* CONFIG_SMP */ |
| 487 | |
Anton Blanchard | f89451f | 2010-08-11 01:40:27 +0000 | [diff] [blame] | 488 | /* |
| 489 | * If we optimise away the clear of the reservation in system |
| 490 | * calls because we know the CPU tracks the address of the |
| 491 | * reservation, then we need to clear it here to cover the |
| 492 | * case that the kernel context switch path has no larx |
| 493 | * instructions. |
| 494 | */ |
| 495 | BEGIN_FTR_SECTION |
| 496 | ldarx r6,0,r1 |
| 497 | END_FTR_SECTION_IFSET(CPU_FTR_STCX_CHECKS_ADDRESS) |
| 498 | |
Michael Neuling | a515348 | 2013-05-29 19:34:27 +0000 | [diff] [blame] | 499 | #ifdef CONFIG_PPC_BOOK3S |
| 500 | /* Cancel all explict user streams as they will have no use after context |
| 501 | * switch and will stop the HW from creating streams itself |
| 502 | */ |
| 503 | DCBT_STOP_ALL_STREAM_IDS(r6) |
| 504 | #endif |
| 505 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 506 | addi r6,r4,-THREAD /* Convert THREAD to 'current' */ |
| 507 | std r6,PACACURRENT(r13) /* Set new 'current' */ |
| 508 | |
| 509 | ld r8,KSP(r4) /* new stack pointer */ |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 510 | #ifdef CONFIG_PPC_BOOK3S |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 511 | BEGIN_FTR_SECTION |
| 512 | clrrdi r6,r8,28 /* get its ESID */ |
| 513 | clrrdi r9,r1,28 /* get current sp ESID */ |
Michael Ellerman | 13b3d13 | 2014-07-10 12:29:20 +1000 | [diff] [blame] | 514 | FTR_SECTION_ELSE |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 515 | clrrdi r6,r8,40 /* get its 1T ESID */ |
| 516 | clrrdi r9,r1,40 /* get current sp 1T ESID */ |
Michael Ellerman | 13b3d13 | 2014-07-10 12:29:20 +1000 | [diff] [blame] | 517 | ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_1T_SEGMENT) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 518 | clrldi. r0,r6,2 /* is new ESID c00000000? */ |
| 519 | cmpd cr1,r6,r9 /* or is new ESID the same as current ESID? */ |
| 520 | cror eq,4*cr1+eq,eq |
| 521 | beq 2f /* if yes, don't slbie it */ |
| 522 | |
| 523 | /* Bolt in the new stack SLB entry */ |
| 524 | ld r7,KSP_VSID(r4) /* Get new stack's VSID */ |
| 525 | oris r0,r6,(SLB_ESID_V)@h |
| 526 | ori r0,r0,(SLB_NUM_BOLTED-1)@l |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 527 | BEGIN_FTR_SECTION |
| 528 | li r9,MMU_SEGSIZE_1T /* insert B field */ |
| 529 | oris r6,r6,(MMU_SEGSIZE_1T << SLBIE_SSIZE_SHIFT)@h |
| 530 | rldimi r7,r9,SLB_VSID_SSIZE_SHIFT,0 |
Matt Evans | 44ae3ab | 2011-04-06 19:48:50 +0000 | [diff] [blame] | 531 | END_MMU_FTR_SECTION_IFSET(MMU_FTR_1T_SEGMENT) |
Michael Neuling | 2f6093c | 2006-08-07 16:19:19 +1000 | [diff] [blame] | 532 | |
Michael Neuling | 00efee7 | 2007-08-24 16:58:37 +1000 | [diff] [blame] | 533 | /* Update the last bolted SLB. No write barriers are needed |
| 534 | * here, provided we only update the current CPU's SLB shadow |
| 535 | * buffer. |
| 536 | */ |
Michael Neuling | 2f6093c | 2006-08-07 16:19:19 +1000 | [diff] [blame] | 537 | ld r9,PACA_SLBSHADOWPTR(r13) |
Michael Neuling | 11a27ad | 2006-08-09 17:00:30 +1000 | [diff] [blame] | 538 | li r12,0 |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 539 | std r12,SLBSHADOW_STACKESID(r9) /* Clear ESID */ |
| 540 | li r12,SLBSHADOW_STACKVSID |
| 541 | STDX_BE r7,r12,r9 /* Save VSID */ |
| 542 | li r12,SLBSHADOW_STACKESID |
| 543 | STDX_BE r0,r12,r9 /* Save ESID */ |
Michael Neuling | 2f6093c | 2006-08-07 16:19:19 +1000 | [diff] [blame] | 544 | |
Matt Evans | 44ae3ab | 2011-04-06 19:48:50 +0000 | [diff] [blame] | 545 | /* No need to check for MMU_FTR_NO_SLBIE_B here, since when |
Olof Johansson | f66bce5 | 2007-10-16 00:58:59 +1000 | [diff] [blame] | 546 | * we have 1TB segments, the only CPUs known to have the errata |
| 547 | * only support less than 1TB of system memory and we'll never |
| 548 | * actually hit this code path. |
| 549 | */ |
| 550 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 551 | slbie r6 |
| 552 | slbie r6 /* Workaround POWER5 < DD2.1 issue */ |
| 553 | slbmte r7,r0 |
| 554 | isync |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 555 | 2: |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 556 | #endif /* !CONFIG_PPC_BOOK3S */ |
| 557 | |
Stuart Yoder | 9778b69 | 2012-07-05 04:41:35 +0000 | [diff] [blame] | 558 | CURRENT_THREAD_INFO(r7, r8) /* base of new stack */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 559 | /* Note: this uses SWITCH_FRAME_SIZE rather than INT_FRAME_SIZE |
| 560 | because we don't need to leave the 288-byte ABI gap at the |
| 561 | top of the kernel stack. */ |
| 562 | addi r7,r7,THREAD_SIZE-SWITCH_FRAME_SIZE |
| 563 | |
| 564 | mr r1,r8 /* start using new stack pointer */ |
| 565 | std r7,PACAKSAVE(r13) |
| 566 | |
Ian Munsie | 2468dcf | 2013-02-07 15:46:58 +0000 | [diff] [blame] | 567 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 568 | BEGIN_FTR_SECTION |
Michael Ellerman | 9353374 | 2013-04-30 20:17:04 +0000 | [diff] [blame] | 569 | /* Event based branch registers */ |
| 570 | ld r0, THREAD_BESCR(r4) |
| 571 | mtspr SPRN_BESCR, r0 |
| 572 | ld r0, THREAD_EBBHR(r4) |
| 573 | mtspr SPRN_EBBHR, r0 |
| 574 | ld r0, THREAD_EBBRR(r4) |
| 575 | mtspr SPRN_EBBRR, r0 |
| 576 | |
Ian Munsie | 2468dcf | 2013-02-07 15:46:58 +0000 | [diff] [blame] | 577 | ld r0,THREAD_TAR(r4) |
| 578 | mtspr SPRN_TAR,r0 |
Michael Ellerman | 1de2bd4 | 2013-04-30 20:17:02 +0000 | [diff] [blame] | 579 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) |
Ian Munsie | 2468dcf | 2013-02-07 15:46:58 +0000 | [diff] [blame] | 580 | #endif |
| 581 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 582 | #ifdef CONFIG_ALTIVEC |
| 583 | BEGIN_FTR_SECTION |
| 584 | ld r0,THREAD_VRSAVE(r4) |
| 585 | mtspr SPRN_VRSAVE,r0 /* if G4, restore VRSAVE reg */ |
| 586 | END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) |
| 587 | #endif /* CONFIG_ALTIVEC */ |
Alexey Kardashevskiy | efcac65 | 2011-03-02 15:18:48 +0000 | [diff] [blame] | 588 | #ifdef CONFIG_PPC64 |
| 589 | BEGIN_FTR_SECTION |
Anton Blanchard | 7143328 | 2012-09-03 16:51:10 +0000 | [diff] [blame] | 590 | lwz r6,THREAD_DSCR_INHERIT(r4) |
Alexey Kardashevskiy | efcac65 | 2011-03-02 15:18:48 +0000 | [diff] [blame] | 591 | ld r0,THREAD_DSCR(r4) |
Anton Blanchard | 7143328 | 2012-09-03 16:51:10 +0000 | [diff] [blame] | 592 | cmpwi r6,0 |
| 593 | bne 1f |
Anshuman Khandual | 1db3652 | 2015-05-21 12:13:03 +0530 | [diff] [blame] | 594 | ld r0,PACA_DSCR_DEFAULT(r13) |
Michael Neuling | 2517617 | 2013-08-09 17:29:29 +1000 | [diff] [blame] | 595 | 1: |
Michael Neuling | bc683a7 | 2013-08-26 13:55:57 +1000 | [diff] [blame] | 596 | BEGIN_FTR_SECTION_NESTED(70) |
| 597 | mfspr r8, SPRN_FSCR |
| 598 | rldimi r8, r6, FSCR_DSCR_LG, (63 - FSCR_DSCR_LG) |
| 599 | mtspr SPRN_FSCR, r8 |
| 600 | END_FTR_SECTION_NESTED(CPU_FTR_ARCH_207S, CPU_FTR_ARCH_207S, 70) |
| 601 | cmpd r0,r25 |
Anton Blanchard | 7143328 | 2012-09-03 16:51:10 +0000 | [diff] [blame] | 602 | beq 2f |
Alexey Kardashevskiy | efcac65 | 2011-03-02 15:18:48 +0000 | [diff] [blame] | 603 | mtspr SPRN_DSCR,r0 |
Anton Blanchard | 7143328 | 2012-09-03 16:51:10 +0000 | [diff] [blame] | 604 | 2: |
Alexey Kardashevskiy | efcac65 | 2011-03-02 15:18:48 +0000 | [diff] [blame] | 605 | END_FTR_SECTION_IFSET(CPU_FTR_DSCR) |
| 606 | #endif |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 607 | |
Anton Blanchard | 7143328 | 2012-09-03 16:51:10 +0000 | [diff] [blame] | 608 | ld r6,_CCR(r1) |
| 609 | mtcrf 0xFF,r6 |
| 610 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 611 | /* r3-r13 are destroyed -- Cort */ |
| 612 | REST_8GPRS(14, r1) |
| 613 | REST_10GPRS(22, r1) |
| 614 | |
| 615 | /* convert old thread to its task_struct for return value */ |
| 616 | addi r3,r3,-THREAD |
| 617 | ld r7,_NIP(r1) /* Return to _switch caller in new task */ |
| 618 | mtlr r7 |
| 619 | addi r1,r1,SWITCH_FRAME_SIZE |
| 620 | blr |
| 621 | |
| 622 | .align 7 |
| 623 | _GLOBAL(ret_from_except) |
| 624 | ld r11,_TRAP(r1) |
| 625 | andi. r0,r11,1 |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 626 | bne ret_from_except_lite |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 627 | REST_NVGPRS(r1) |
| 628 | |
| 629 | _GLOBAL(ret_from_except_lite) |
| 630 | /* |
| 631 | * Disable interrupts so that current_thread_info()->flags |
| 632 | * can't change between when we test it and when we return |
| 633 | * from the interrupt. |
| 634 | */ |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 635 | #ifdef CONFIG_PPC_BOOK3E |
| 636 | wrteei 0 |
| 637 | #else |
Benjamin Herrenschmidt | d9ada91 | 2012-03-02 11:33:52 +1100 | [diff] [blame] | 638 | ld r10,PACAKMSR(r13) /* Get kernel MSR without EE */ |
| 639 | mtmsrd r10,1 /* Update machine state */ |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 640 | #endif /* CONFIG_PPC_BOOK3E */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 641 | |
Stuart Yoder | 9778b69 | 2012-07-05 04:41:35 +0000 | [diff] [blame] | 642 | CURRENT_THREAD_INFO(r9, r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 643 | ld r3,_MSR(r1) |
Bharat Bhushan | 13d543c | 2013-05-22 09:50:59 +0530 | [diff] [blame] | 644 | #ifdef CONFIG_PPC_BOOK3E |
| 645 | ld r10,PACACURRENT(r13) |
| 646 | #endif /* CONFIG_PPC_BOOK3E */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 647 | ld r4,TI_FLAGS(r9) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 648 | andi. r3,r3,MSR_PR |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 649 | beq resume_kernel |
Bharat Bhushan | 13d543c | 2013-05-22 09:50:59 +0530 | [diff] [blame] | 650 | #ifdef CONFIG_PPC_BOOK3E |
| 651 | lwz r3,(THREAD+THREAD_DBCR0)(r10) |
| 652 | #endif /* CONFIG_PPC_BOOK3E */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 653 | |
| 654 | /* Check current_thread_info()->flags */ |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 655 | andi. r0,r4,_TIF_USER_WORK_MASK |
Bharat Bhushan | 13d543c | 2013-05-22 09:50:59 +0530 | [diff] [blame] | 656 | #ifdef CONFIG_PPC_BOOK3E |
| 657 | bne 1f |
| 658 | /* |
| 659 | * Check to see if the dbcr0 register is set up to debug. |
| 660 | * Use the internal debug mode bit to do this. |
| 661 | */ |
| 662 | andis. r0,r3,DBCR0_IDM@h |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 663 | beq restore |
Bharat Bhushan | 13d543c | 2013-05-22 09:50:59 +0530 | [diff] [blame] | 664 | mfmsr r0 |
| 665 | rlwinm r0,r0,0,~MSR_DE /* Clear MSR.DE */ |
| 666 | mtmsr r0 |
| 667 | mtspr SPRN_DBCR0,r3 |
| 668 | li r10, -1 |
| 669 | mtspr SPRN_DBSR,r10 |
| 670 | b restore |
| 671 | #else |
| 672 | beq restore |
| 673 | #endif |
| 674 | 1: andi. r0,r4,_TIF_NEED_RESCHED |
| 675 | beq 2f |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 676 | bl restore_interrupts |
Li Zhong | 5d1c574 | 2013-05-13 16:16:43 +0000 | [diff] [blame] | 677 | SCHEDULE_USER |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 678 | b ret_from_except_lite |
Paul Mackerras | d31626f | 2014-01-13 15:56:29 +1100 | [diff] [blame] | 679 | 2: |
| 680 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 681 | andi. r0,r4,_TIF_USER_WORK_MASK & ~_TIF_RESTORE_TM |
| 682 | bne 3f /* only restore TM if nothing else to do */ |
| 683 | addi r3,r1,STACK_FRAME_OVERHEAD |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 684 | bl restore_tm_state |
Paul Mackerras | d31626f | 2014-01-13 15:56:29 +1100 | [diff] [blame] | 685 | b restore |
| 686 | 3: |
| 687 | #endif |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 688 | bl save_nvgprs |
Anton Blanchard | 808be31 | 2014-10-31 16:50:57 +1100 | [diff] [blame] | 689 | /* |
| 690 | * Use a non volatile GPR to save and restore our thread_info flags |
| 691 | * across the call to restore_interrupts. |
| 692 | */ |
| 693 | mr r30,r4 |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 694 | bl restore_interrupts |
Anton Blanchard | 808be31 | 2014-10-31 16:50:57 +1100 | [diff] [blame] | 695 | mr r4,r30 |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 696 | addi r3,r1,STACK_FRAME_OVERHEAD |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 697 | bl do_notify_resume |
| 698 | b ret_from_except |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 699 | |
| 700 | resume_kernel: |
Tiejun Chen | a9c4e54 | 2012-09-16 23:54:30 +0000 | [diff] [blame] | 701 | /* check current_thread_info, _TIF_EMULATE_STACK_STORE */ |
Kevin Hao | 0edfdd1 | 2013-09-26 16:41:34 +0800 | [diff] [blame] | 702 | andis. r8,r4,_TIF_EMULATE_STACK_STORE@h |
Tiejun Chen | a9c4e54 | 2012-09-16 23:54:30 +0000 | [diff] [blame] | 703 | beq+ 1f |
| 704 | |
| 705 | addi r8,r1,INT_FRAME_SIZE /* Get the kprobed function entry */ |
| 706 | |
| 707 | lwz r3,GPR1(r1) |
| 708 | subi r3,r3,INT_FRAME_SIZE /* dst: Allocate a trampoline exception frame */ |
| 709 | mr r4,r1 /* src: current exception frame */ |
| 710 | mr r1,r3 /* Reroute the trampoline frame to r1 */ |
| 711 | |
| 712 | /* Copy from the original to the trampoline. */ |
| 713 | li r5,INT_FRAME_SIZE/8 /* size: INT_FRAME_SIZE */ |
| 714 | li r6,0 /* start offset: 0 */ |
| 715 | mtctr r5 |
| 716 | 2: ldx r0,r6,r4 |
| 717 | stdx r0,r6,r3 |
| 718 | addi r6,r6,8 |
| 719 | bdnz 2b |
| 720 | |
| 721 | /* Do real store operation to complete stwu */ |
| 722 | lwz r5,GPR1(r1) |
| 723 | std r8,0(r5) |
| 724 | |
| 725 | /* Clear _TIF_EMULATE_STACK_STORE flag */ |
| 726 | lis r11,_TIF_EMULATE_STACK_STORE@h |
| 727 | addi r5,r9,TI_FLAGS |
Kevin Hao | d8b9229 | 2013-04-09 22:31:24 +0000 | [diff] [blame] | 728 | 0: ldarx r4,0,r5 |
Tiejun Chen | a9c4e54 | 2012-09-16 23:54:30 +0000 | [diff] [blame] | 729 | andc r4,r4,r11 |
| 730 | stdcx. r4,0,r5 |
| 731 | bne- 0b |
| 732 | 1: |
| 733 | |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 734 | #ifdef CONFIG_PREEMPT |
| 735 | /* Check if we need to preempt */ |
| 736 | andi. r0,r4,_TIF_NEED_RESCHED |
| 737 | beq+ restore |
| 738 | /* Check that preempt_count() == 0 and interrupts are enabled */ |
| 739 | lwz r8,TI_PREEMPT(r9) |
| 740 | cmpwi cr1,r8,0 |
| 741 | ld r0,SOFTE(r1) |
| 742 | cmpdi r0,0 |
| 743 | crandc eq,cr1*4+eq,eq |
| 744 | bne restore |
| 745 | |
| 746 | /* |
| 747 | * Here we are preempting the current task. We want to make |
Tiejun Chen | de021bb | 2013-07-16 11:09:30 +0800 | [diff] [blame] | 748 | * sure we are soft-disabled first and reconcile irq state. |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 749 | */ |
Tiejun Chen | de021bb | 2013-07-16 11:09:30 +0800 | [diff] [blame] | 750 | RECONCILE_IRQ_STATE(r3,r4) |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 751 | 1: bl preempt_schedule_irq |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 752 | |
| 753 | /* Re-test flags and eventually loop */ |
Stuart Yoder | 9778b69 | 2012-07-05 04:41:35 +0000 | [diff] [blame] | 754 | CURRENT_THREAD_INFO(r9, r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 755 | ld r4,TI_FLAGS(r9) |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 756 | andi. r0,r4,_TIF_NEED_RESCHED |
| 757 | bne 1b |
Tiejun Chen | 572177d | 2013-01-06 00:49:34 +0000 | [diff] [blame] | 758 | |
| 759 | /* |
| 760 | * arch_local_irq_restore() from preempt_schedule_irq above may |
| 761 | * enable hard interrupt but we really should disable interrupts |
| 762 | * when we return from the interrupt, and so that we don't get |
| 763 | * interrupted after loading SRR0/1. |
| 764 | */ |
| 765 | #ifdef CONFIG_PPC_BOOK3E |
| 766 | wrteei 0 |
| 767 | #else |
| 768 | ld r10,PACAKMSR(r13) /* Get kernel MSR without EE */ |
| 769 | mtmsrd r10,1 /* Update machine state */ |
| 770 | #endif /* CONFIG_PPC_BOOK3E */ |
Tiejun Chen | c58ce2b | 2012-06-06 20:56:43 +0000 | [diff] [blame] | 771 | #endif /* CONFIG_PREEMPT */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 772 | |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 773 | .globl fast_exc_return_irq |
| 774 | fast_exc_return_irq: |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 775 | restore: |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 776 | /* |
Benjamin Herrenschmidt | 7c0482e | 2012-05-10 16:12:38 +0000 | [diff] [blame] | 777 | * This is the main kernel exit path. First we check if we |
| 778 | * are about to re-enable interrupts |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 779 | */ |
Michael Ellerman | 01f3880d | 2008-07-16 14:21:34 +1000 | [diff] [blame] | 780 | ld r5,SOFTE(r1) |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 781 | lbz r6,PACASOFTIRQEN(r13) |
Benjamin Herrenschmidt | 7c0482e | 2012-05-10 16:12:38 +0000 | [diff] [blame] | 782 | cmpwi cr0,r5,0 |
| 783 | beq restore_irq_off |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 784 | |
Benjamin Herrenschmidt | 7c0482e | 2012-05-10 16:12:38 +0000 | [diff] [blame] | 785 | /* We are enabling, were we already enabled ? Yes, just return */ |
| 786 | cmpwi cr0,r6,1 |
| 787 | beq cr0,do_restore |
Paul Mackerras | b0a779d | 2006-10-18 10:11:22 +1000 | [diff] [blame] | 788 | |
Benjamin Herrenschmidt | 7c0482e | 2012-05-10 16:12:38 +0000 | [diff] [blame] | 789 | /* |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 790 | * We are about to soft-enable interrupts (we are hard disabled |
| 791 | * at this point). We check if there's anything that needs to |
| 792 | * be replayed first. |
| 793 | */ |
| 794 | lbz r0,PACAIRQHAPPENED(r13) |
| 795 | cmpwi cr0,r0,0 |
| 796 | bne- restore_check_irq_replay |
| 797 | |
| 798 | /* |
| 799 | * Get here when nothing happened while soft-disabled, just |
| 800 | * soft-enable and move-on. We will hard-enable as a side |
| 801 | * effect of rfi |
| 802 | */ |
| 803 | restore_no_replay: |
| 804 | TRACE_ENABLE_INTS |
| 805 | li r0,1 |
| 806 | stb r0,PACASOFTIRQEN(r13); |
| 807 | |
| 808 | /* |
| 809 | * Final return path. BookE is handled in a different file |
| 810 | */ |
Benjamin Herrenschmidt | 7c0482e | 2012-05-10 16:12:38 +0000 | [diff] [blame] | 811 | do_restore: |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 812 | #ifdef CONFIG_PPC_BOOK3E |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 813 | b exception_return_book3e |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 814 | #else |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 815 | /* |
| 816 | * Clear the reservation. If we know the CPU tracks the address of |
| 817 | * the reservation then we can potentially save some cycles and use |
| 818 | * a larx. On POWER6 and POWER7 this is significantly faster. |
| 819 | */ |
| 820 | BEGIN_FTR_SECTION |
| 821 | stdcx. r0,0,r1 /* to clear the reservation */ |
| 822 | FTR_SECTION_ELSE |
| 823 | ldarx r4,0,r1 |
| 824 | ALT_FTR_SECTION_END_IFCLR(CPU_FTR_STCX_CHECKS_ADDRESS) |
| 825 | |
| 826 | /* |
| 827 | * Some code path such as load_up_fpu or altivec return directly |
| 828 | * here. They run entirely hard disabled and do not alter the |
| 829 | * interrupt state. They also don't use lwarx/stwcx. and thus |
| 830 | * are known not to leave dangling reservations. |
| 831 | */ |
| 832 | .globl fast_exception_return |
| 833 | fast_exception_return: |
| 834 | ld r3,_MSR(r1) |
Paul Mackerras | e56a6e2 | 2007-02-07 13:13:26 +1100 | [diff] [blame] | 835 | ld r4,_CTR(r1) |
| 836 | ld r0,_LINK(r1) |
| 837 | mtctr r4 |
| 838 | mtlr r0 |
| 839 | ld r4,_XER(r1) |
| 840 | mtspr SPRN_XER,r4 |
| 841 | |
| 842 | REST_8GPRS(5, r1) |
| 843 | |
| 844 | andi. r0,r3,MSR_RI |
| 845 | beq- unrecov_restore |
| 846 | |
Benjamin Herrenschmidt | 0c4888e | 2013-11-05 16:33:22 +1100 | [diff] [blame] | 847 | /* Load PPR from thread struct before we clear MSR:RI */ |
| 848 | BEGIN_FTR_SECTION |
| 849 | ld r2,PACACURRENT(r13) |
| 850 | ld r2,TASKTHREADPPR(r2) |
| 851 | END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR) |
| 852 | |
Anton Blanchard | f89451f | 2010-08-11 01:40:27 +0000 | [diff] [blame] | 853 | /* |
Paul Mackerras | e56a6e2 | 2007-02-07 13:13:26 +1100 | [diff] [blame] | 854 | * Clear RI before restoring r13. If we are returning to |
| 855 | * userspace and we take an exception after restoring r13, |
| 856 | * we end up corrupting the userspace r13 value. |
| 857 | */ |
Benjamin Herrenschmidt | d9ada91 | 2012-03-02 11:33:52 +1100 | [diff] [blame] | 858 | ld r4,PACAKMSR(r13) /* Get kernel MSR without EE */ |
| 859 | andc r4,r4,r0 /* r0 contains MSR_RI here */ |
Paul Mackerras | e56a6e2 | 2007-02-07 13:13:26 +1100 | [diff] [blame] | 860 | mtmsrd r4,1 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 861 | |
Michael Neuling | afc0770 | 2013-02-13 16:21:34 +0000 | [diff] [blame] | 862 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 863 | /* TM debug */ |
| 864 | std r3, PACATMSCRATCH(r13) /* Stash returned-to MSR */ |
| 865 | #endif |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 866 | /* |
| 867 | * r13 is our per cpu area, only restore it if we are returning to |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 868 | * userspace the value stored in the stack frame may belong to |
| 869 | * another CPU. |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 870 | */ |
Paul Mackerras | e56a6e2 | 2007-02-07 13:13:26 +1100 | [diff] [blame] | 871 | andi. r0,r3,MSR_PR |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 872 | beq 1f |
Benjamin Herrenschmidt | 0c4888e | 2013-11-05 16:33:22 +1100 | [diff] [blame] | 873 | BEGIN_FTR_SECTION |
| 874 | mtspr SPRN_PPR,r2 /* Restore PPR */ |
| 875 | END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR) |
Paul Mackerras | e56a6e2 | 2007-02-07 13:13:26 +1100 | [diff] [blame] | 876 | ACCOUNT_CPU_USER_EXIT(r2, r4) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 877 | REST_GPR(13, r1) |
| 878 | 1: |
Paul Mackerras | e56a6e2 | 2007-02-07 13:13:26 +1100 | [diff] [blame] | 879 | mtspr SPRN_SRR1,r3 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 880 | |
| 881 | ld r2,_CCR(r1) |
| 882 | mtcrf 0xFF,r2 |
| 883 | ld r2,_NIP(r1) |
| 884 | mtspr SPRN_SRR0,r2 |
| 885 | |
| 886 | ld r0,GPR0(r1) |
| 887 | ld r2,GPR2(r1) |
| 888 | ld r3,GPR3(r1) |
| 889 | ld r4,GPR4(r1) |
| 890 | ld r1,GPR1(r1) |
| 891 | |
| 892 | rfid |
| 893 | b . /* prevent speculative execution */ |
| 894 | |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 895 | #endif /* CONFIG_PPC_BOOK3E */ |
| 896 | |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 897 | /* |
Benjamin Herrenschmidt | 7c0482e | 2012-05-10 16:12:38 +0000 | [diff] [blame] | 898 | * We are returning to a context with interrupts soft disabled. |
| 899 | * |
| 900 | * However, we may also about to hard enable, so we need to |
| 901 | * make sure that in this case, we also clear PACA_IRQ_HARD_DIS |
| 902 | * or that bit can get out of sync and bad things will happen |
| 903 | */ |
| 904 | restore_irq_off: |
| 905 | ld r3,_MSR(r1) |
| 906 | lbz r7,PACAIRQHAPPENED(r13) |
| 907 | andi. r0,r3,MSR_EE |
| 908 | beq 1f |
| 909 | rlwinm r7,r7,0,~PACA_IRQ_HARD_DIS |
| 910 | stb r7,PACAIRQHAPPENED(r13) |
| 911 | 1: li r0,0 |
| 912 | stb r0,PACASOFTIRQEN(r13); |
| 913 | TRACE_DISABLE_INTS |
| 914 | b do_restore |
| 915 | |
| 916 | /* |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 917 | * Something did happen, check if a re-emit is needed |
| 918 | * (this also clears paca->irq_happened) |
| 919 | */ |
| 920 | restore_check_irq_replay: |
| 921 | /* XXX: We could implement a fast path here where we check |
| 922 | * for irq_happened being just 0x01, in which case we can |
| 923 | * clear it and return. That means that we would potentially |
| 924 | * miss a decrementer having wrapped all the way around. |
| 925 | * |
| 926 | * Still, this might be useful for things like hash_page |
| 927 | */ |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 928 | bl __check_irq_replay |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 929 | cmpwi cr0,r3,0 |
| 930 | beq restore_no_replay |
| 931 | |
| 932 | /* |
| 933 | * We need to re-emit an interrupt. We do so by re-using our |
| 934 | * existing exception frame. We first change the trap value, |
| 935 | * but we need to ensure we preserve the low nibble of it |
| 936 | */ |
| 937 | ld r4,_TRAP(r1) |
| 938 | clrldi r4,r4,60 |
| 939 | or r4,r4,r3 |
| 940 | std r4,_TRAP(r1) |
| 941 | |
| 942 | /* |
| 943 | * Then find the right handler and call it. Interrupts are |
| 944 | * still soft-disabled and we keep them that way. |
| 945 | */ |
| 946 | cmpwi cr0,r3,0x500 |
| 947 | bne 1f |
| 948 | addi r3,r1,STACK_FRAME_OVERHEAD; |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 949 | bl do_IRQ |
| 950 | b ret_from_except |
Mahesh Salgaonkar | 0869b6f | 2014-07-29 18:40:01 +0530 | [diff] [blame] | 951 | 1: cmpwi cr0,r3,0xe60 |
| 952 | bne 1f |
| 953 | addi r3,r1,STACK_FRAME_OVERHEAD; |
| 954 | bl handle_hmi_exception |
| 955 | b ret_from_except |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 956 | 1: cmpwi cr0,r3,0x900 |
| 957 | bne 1f |
| 958 | addi r3,r1,STACK_FRAME_OVERHEAD; |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 959 | bl timer_interrupt |
| 960 | b ret_from_except |
Ian Munsie | fe9e1d5 | 2012-11-14 18:49:48 +0000 | [diff] [blame] | 961 | #ifdef CONFIG_PPC_DOORBELL |
| 962 | 1: |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 963 | #ifdef CONFIG_PPC_BOOK3E |
Ian Munsie | fe9e1d5 | 2012-11-14 18:49:48 +0000 | [diff] [blame] | 964 | cmpwi cr0,r3,0x280 |
| 965 | #else |
| 966 | BEGIN_FTR_SECTION |
| 967 | cmpwi cr0,r3,0xe80 |
| 968 | FTR_SECTION_ELSE |
| 969 | cmpwi cr0,r3,0xa00 |
| 970 | ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE) |
| 971 | #endif /* CONFIG_PPC_BOOK3E */ |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 972 | bne 1f |
| 973 | addi r3,r1,STACK_FRAME_OVERHEAD; |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 974 | bl doorbell_exception |
| 975 | b ret_from_except |
Ian Munsie | fe9e1d5 | 2012-11-14 18:49:48 +0000 | [diff] [blame] | 976 | #endif /* CONFIG_PPC_DOORBELL */ |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 977 | 1: b ret_from_except /* What else to do here ? */ |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 978 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 979 | unrecov_restore: |
| 980 | addi r3,r1,STACK_FRAME_OVERHEAD |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 981 | bl unrecoverable_exception |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 982 | b unrecov_restore |
| 983 | |
| 984 | #ifdef CONFIG_PPC_RTAS |
| 985 | /* |
| 986 | * On CHRP, the Run-Time Abstraction Services (RTAS) have to be |
| 987 | * called with the MMU off. |
| 988 | * |
| 989 | * In addition, we need to be in 32b mode, at least for now. |
| 990 | * |
| 991 | * Note: r3 is an input parameter to rtas, so don't trash it... |
| 992 | */ |
| 993 | _GLOBAL(enter_rtas) |
| 994 | mflr r0 |
| 995 | std r0,16(r1) |
| 996 | stdu r1,-RTAS_FRAME_SIZE(r1) /* Save SP and create stack space. */ |
| 997 | |
| 998 | /* Because RTAS is running in 32b mode, it clobbers the high order half |
| 999 | * of all registers that it saves. We therefore save those registers |
| 1000 | * RTAS might touch to the stack. (r0, r3-r13 are caller saved) |
| 1001 | */ |
| 1002 | SAVE_GPR(2, r1) /* Save the TOC */ |
| 1003 | SAVE_GPR(13, r1) /* Save paca */ |
| 1004 | SAVE_8GPRS(14, r1) /* Save the non-volatiles */ |
| 1005 | SAVE_10GPRS(22, r1) /* ditto */ |
| 1006 | |
| 1007 | mfcr r4 |
| 1008 | std r4,_CCR(r1) |
| 1009 | mfctr r5 |
| 1010 | std r5,_CTR(r1) |
| 1011 | mfspr r6,SPRN_XER |
| 1012 | std r6,_XER(r1) |
| 1013 | mfdar r7 |
| 1014 | std r7,_DAR(r1) |
| 1015 | mfdsisr r8 |
| 1016 | std r8,_DSISR(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1017 | |
Mike Kravetz | 9fe901d | 2006-03-27 15:20:00 -0800 | [diff] [blame] | 1018 | /* Temporary workaround to clear CR until RTAS can be modified to |
| 1019 | * ignore all bits. |
| 1020 | */ |
| 1021 | li r0,0 |
| 1022 | mtcr r0 |
| 1023 | |
David Woodhouse | 007d88d | 2007-01-01 18:45:34 +0000 | [diff] [blame] | 1024 | #ifdef CONFIG_BUG |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1025 | /* There is no way it is acceptable to get here with interrupts enabled, |
| 1026 | * check it with the asm equivalent of WARN_ON |
| 1027 | */ |
Paul Mackerras | d04c56f | 2006-10-04 16:47:49 +1000 | [diff] [blame] | 1028 | lbz r0,PACASOFTIRQEN(r13) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1029 | 1: tdnei r0,0 |
David Woodhouse | 007d88d | 2007-01-01 18:45:34 +0000 | [diff] [blame] | 1030 | EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,BUGFLAG_WARNING |
| 1031 | #endif |
| 1032 | |
Paul Mackerras | d04c56f | 2006-10-04 16:47:49 +1000 | [diff] [blame] | 1033 | /* Hard-disable interrupts */ |
| 1034 | mfmsr r6 |
| 1035 | rldicl r7,r6,48,1 |
| 1036 | rotldi r7,r7,16 |
| 1037 | mtmsrd r7,1 |
| 1038 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1039 | /* Unfortunately, the stack pointer and the MSR are also clobbered, |
| 1040 | * so they are saved in the PACA which allows us to restore |
| 1041 | * our original state after RTAS returns. |
| 1042 | */ |
| 1043 | std r1,PACAR1(r13) |
| 1044 | std r6,PACASAVEDMSR(r13) |
| 1045 | |
| 1046 | /* Setup our real return addr */ |
Anton Blanchard | ad0289e | 2014-02-04 16:04:52 +1100 | [diff] [blame] | 1047 | LOAD_REG_ADDR(r4,rtas_return_loc) |
David Gibson | e58c349 | 2006-01-13 14:56:25 +1100 | [diff] [blame] | 1048 | clrldi r4,r4,2 /* convert to realmode address */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1049 | mtlr r4 |
| 1050 | |
| 1051 | li r0,0 |
| 1052 | ori r0,r0,MSR_EE|MSR_SE|MSR_BE|MSR_RI |
| 1053 | andc r0,r6,r0 |
| 1054 | |
| 1055 | li r9,1 |
| 1056 | rldicr r9,r9,MSR_SF_LG,(63-MSR_SF_LG) |
Benjamin Herrenschmidt | 5c0484e | 2013-09-23 12:04:45 +1000 | [diff] [blame] | 1057 | ori r9,r9,MSR_IR|MSR_DR|MSR_FE0|MSR_FE1|MSR_FP|MSR_RI|MSR_LE |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1058 | andc r6,r0,r9 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1059 | sync /* disable interrupts so SRR0/1 */ |
| 1060 | mtmsrd r0 /* don't get trashed */ |
| 1061 | |
David Gibson | e58c349 | 2006-01-13 14:56:25 +1100 | [diff] [blame] | 1062 | LOAD_REG_ADDR(r4, rtas) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1063 | ld r5,RTASENTRY(r4) /* get the rtas->entry value */ |
| 1064 | ld r4,RTASBASE(r4) /* get the rtas->base value */ |
| 1065 | |
| 1066 | mtspr SPRN_SRR0,r5 |
| 1067 | mtspr SPRN_SRR1,r6 |
| 1068 | rfid |
| 1069 | b . /* prevent speculative execution */ |
| 1070 | |
Anton Blanchard | ad0289e | 2014-02-04 16:04:52 +1100 | [diff] [blame] | 1071 | rtas_return_loc: |
Benjamin Herrenschmidt | 5c0484e | 2013-09-23 12:04:45 +1000 | [diff] [blame] | 1072 | FIXUP_ENDIAN |
| 1073 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1074 | /* relocation is off at this point */ |
Benjamin Herrenschmidt | 2dd60d7 | 2011-01-20 17:50:21 +1100 | [diff] [blame] | 1075 | GET_PACA(r4) |
David Gibson | e58c349 | 2006-01-13 14:56:25 +1100 | [diff] [blame] | 1076 | clrldi r4,r4,2 /* convert to realmode address */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1077 | |
Paul Mackerras | e31aa45 | 2008-08-30 11:41:12 +1000 | [diff] [blame] | 1078 | bcl 20,31,$+4 |
| 1079 | 0: mflr r3 |
Anton Blanchard | ad0289e | 2014-02-04 16:04:52 +1100 | [diff] [blame] | 1080 | ld r3,(1f-0b)(r3) /* get &rtas_restore_regs */ |
Paul Mackerras | e31aa45 | 2008-08-30 11:41:12 +1000 | [diff] [blame] | 1081 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1082 | mfmsr r6 |
| 1083 | li r0,MSR_RI |
| 1084 | andc r6,r6,r0 |
| 1085 | sync |
| 1086 | mtmsrd r6 |
| 1087 | |
| 1088 | ld r1,PACAR1(r4) /* Restore our SP */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1089 | ld r4,PACASAVEDMSR(r4) /* Restore our MSR */ |
| 1090 | |
| 1091 | mtspr SPRN_SRR0,r3 |
| 1092 | mtspr SPRN_SRR1,r4 |
| 1093 | rfid |
| 1094 | b . /* prevent speculative execution */ |
| 1095 | |
Paul Mackerras | e31aa45 | 2008-08-30 11:41:12 +1000 | [diff] [blame] | 1096 | .align 3 |
Anton Blanchard | ad0289e | 2014-02-04 16:04:52 +1100 | [diff] [blame] | 1097 | 1: .llong rtas_restore_regs |
Paul Mackerras | e31aa45 | 2008-08-30 11:41:12 +1000 | [diff] [blame] | 1098 | |
Anton Blanchard | ad0289e | 2014-02-04 16:04:52 +1100 | [diff] [blame] | 1099 | rtas_restore_regs: |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1100 | /* relocation is on at this point */ |
| 1101 | REST_GPR(2, r1) /* Restore the TOC */ |
| 1102 | REST_GPR(13, r1) /* Restore paca */ |
| 1103 | REST_8GPRS(14, r1) /* Restore the non-volatiles */ |
| 1104 | REST_10GPRS(22, r1) /* ditto */ |
| 1105 | |
Benjamin Herrenschmidt | 2dd60d7 | 2011-01-20 17:50:21 +1100 | [diff] [blame] | 1106 | GET_PACA(r13) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1107 | |
| 1108 | ld r4,_CCR(r1) |
| 1109 | mtcr r4 |
| 1110 | ld r5,_CTR(r1) |
| 1111 | mtctr r5 |
| 1112 | ld r6,_XER(r1) |
| 1113 | mtspr SPRN_XER,r6 |
| 1114 | ld r7,_DAR(r1) |
| 1115 | mtdar r7 |
| 1116 | ld r8,_DSISR(r1) |
| 1117 | mtdsisr r8 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1118 | |
| 1119 | addi r1,r1,RTAS_FRAME_SIZE /* Unstack our frame */ |
| 1120 | ld r0,16(r1) /* get return address */ |
| 1121 | |
| 1122 | mtlr r0 |
| 1123 | blr /* return to caller */ |
| 1124 | |
| 1125 | #endif /* CONFIG_PPC_RTAS */ |
| 1126 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1127 | _GLOBAL(enter_prom) |
| 1128 | mflr r0 |
| 1129 | std r0,16(r1) |
| 1130 | stdu r1,-PROM_FRAME_SIZE(r1) /* Save SP and create stack space */ |
| 1131 | |
| 1132 | /* Because PROM is running in 32b mode, it clobbers the high order half |
| 1133 | * of all registers that it saves. We therefore save those registers |
| 1134 | * PROM might touch to the stack. (r0, r3-r13 are caller saved) |
| 1135 | */ |
Benjamin Herrenschmidt | 6c17199 | 2009-07-23 23:15:07 +0000 | [diff] [blame] | 1136 | SAVE_GPR(2, r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1137 | SAVE_GPR(13, r1) |
| 1138 | SAVE_8GPRS(14, r1) |
| 1139 | SAVE_10GPRS(22, r1) |
Benjamin Herrenschmidt | 6c17199 | 2009-07-23 23:15:07 +0000 | [diff] [blame] | 1140 | mfcr r10 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1141 | mfmsr r11 |
Benjamin Herrenschmidt | 6c17199 | 2009-07-23 23:15:07 +0000 | [diff] [blame] | 1142 | std r10,_CCR(r1) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1143 | std r11,_MSR(r1) |
| 1144 | |
Benjamin Herrenschmidt | 5c0484e | 2013-09-23 12:04:45 +1000 | [diff] [blame] | 1145 | /* Put PROM address in SRR0 */ |
| 1146 | mtsrr0 r4 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1147 | |
Benjamin Herrenschmidt | 5c0484e | 2013-09-23 12:04:45 +1000 | [diff] [blame] | 1148 | /* Setup our trampoline return addr in LR */ |
| 1149 | bcl 20,31,$+4 |
| 1150 | 0: mflr r4 |
| 1151 | addi r4,r4,(1f - 0b) |
| 1152 | mtlr r4 |
| 1153 | |
| 1154 | /* Prepare a 32-bit mode big endian MSR |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1155 | */ |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 1156 | #ifdef CONFIG_PPC_BOOK3E |
| 1157 | rlwinm r11,r11,0,1,31 |
Benjamin Herrenschmidt | 5c0484e | 2013-09-23 12:04:45 +1000 | [diff] [blame] | 1158 | mtsrr1 r11 |
| 1159 | rfi |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 1160 | #else /* CONFIG_PPC_BOOK3E */ |
Benjamin Herrenschmidt | 5c0484e | 2013-09-23 12:04:45 +1000 | [diff] [blame] | 1161 | LOAD_REG_IMMEDIATE(r12, MSR_SF | MSR_ISF | MSR_LE) |
| 1162 | andc r11,r11,r12 |
| 1163 | mtsrr1 r11 |
| 1164 | rfid |
Benjamin Herrenschmidt | 2d27cfd | 2009-07-23 23:15:59 +0000 | [diff] [blame] | 1165 | #endif /* CONFIG_PPC_BOOK3E */ |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1166 | |
Benjamin Herrenschmidt | 5c0484e | 2013-09-23 12:04:45 +1000 | [diff] [blame] | 1167 | 1: /* Return from OF */ |
| 1168 | FIXUP_ENDIAN |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1169 | |
| 1170 | /* Just make sure that r1 top 32 bits didn't get |
| 1171 | * corrupt by OF |
| 1172 | */ |
| 1173 | rldicl r1,r1,0,32 |
| 1174 | |
| 1175 | /* Restore the MSR (back to 64 bits) */ |
| 1176 | ld r0,_MSR(r1) |
Benjamin Herrenschmidt | 6c17199 | 2009-07-23 23:15:07 +0000 | [diff] [blame] | 1177 | MTMSRD(r0) |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1178 | isync |
| 1179 | |
| 1180 | /* Restore other registers */ |
| 1181 | REST_GPR(2, r1) |
| 1182 | REST_GPR(13, r1) |
| 1183 | REST_8GPRS(14, r1) |
| 1184 | REST_10GPRS(22, r1) |
| 1185 | ld r4,_CCR(r1) |
| 1186 | mtcr r4 |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 1187 | |
| 1188 | addi r1,r1,PROM_FRAME_SIZE |
| 1189 | ld r0,16(r1) |
| 1190 | mtlr r0 |
| 1191 | blr |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1192 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 1193 | #ifdef CONFIG_FUNCTION_TRACER |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1194 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 1195 | _GLOBAL(mcount) |
| 1196 | _GLOBAL(_mcount) |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1197 | blr |
| 1198 | |
Anton Blanchard | 5e66684 | 2014-04-04 09:06:33 +1100 | [diff] [blame] | 1199 | _GLOBAL_TOC(ftrace_caller) |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1200 | /* Taken from output of objdump from lib64/glibc */ |
| 1201 | mflr r3 |
| 1202 | ld r11, 0(r1) |
| 1203 | stdu r1, -112(r1) |
| 1204 | std r3, 128(r1) |
| 1205 | ld r4, 16(r11) |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 1206 | subi r3, r3, MCOUNT_INSN_SIZE |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1207 | .globl ftrace_call |
| 1208 | ftrace_call: |
| 1209 | bl ftrace_stub |
| 1210 | nop |
Steven Rostedt | 4654288 | 2009-02-10 22:19:54 -0800 | [diff] [blame] | 1211 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 1212 | .globl ftrace_graph_call |
| 1213 | ftrace_graph_call: |
| 1214 | b ftrace_graph_stub |
| 1215 | _GLOBAL(ftrace_graph_stub) |
| 1216 | #endif |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1217 | ld r0, 128(r1) |
| 1218 | mtlr r0 |
| 1219 | addi r1, r1, 112 |
| 1220 | _GLOBAL(ftrace_stub) |
| 1221 | blr |
| 1222 | #else |
Anton Blanchard | 5e66684 | 2014-04-04 09:06:33 +1100 | [diff] [blame] | 1223 | _GLOBAL_TOC(_mcount) |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1224 | /* Taken from output of objdump from lib64/glibc */ |
| 1225 | mflr r3 |
| 1226 | ld r11, 0(r1) |
| 1227 | stdu r1, -112(r1) |
| 1228 | std r3, 128(r1) |
| 1229 | ld r4, 16(r11) |
| 1230 | |
Abhishek Sagar | 395a59d | 2008-06-21 23:47:27 +0530 | [diff] [blame] | 1231 | subi r3, r3, MCOUNT_INSN_SIZE |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1232 | LOAD_REG_ADDR(r5,ftrace_trace_function) |
| 1233 | ld r5,0(r5) |
| 1234 | ld r5,0(r5) |
| 1235 | mtctr r5 |
| 1236 | bctrl |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1237 | nop |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1238 | |
| 1239 | |
| 1240 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 1241 | b ftrace_graph_caller |
| 1242 | #endif |
Steven Rostedt | 4e491d1 | 2008-05-14 23:49:44 -0400 | [diff] [blame] | 1243 | ld r0, 128(r1) |
| 1244 | mtlr r0 |
| 1245 | addi r1, r1, 112 |
| 1246 | _GLOBAL(ftrace_stub) |
| 1247 | blr |
| 1248 | |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1249 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
| 1250 | |
| 1251 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
Steven Rostedt | 4654288 | 2009-02-10 22:19:54 -0800 | [diff] [blame] | 1252 | _GLOBAL(ftrace_graph_caller) |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1253 | /* load r4 with local address */ |
| 1254 | ld r4, 128(r1) |
| 1255 | subi r4, r4, MCOUNT_INSN_SIZE |
| 1256 | |
Anton Blanchard | b3c1872 | 2014-09-17 17:07:04 +1000 | [diff] [blame] | 1257 | /* Grab the LR out of the caller stack frame */ |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1258 | ld r11, 112(r1) |
Anton Blanchard | b3c1872 | 2014-09-17 17:07:04 +1000 | [diff] [blame] | 1259 | ld r3, 16(r11) |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1260 | |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 1261 | bl prepare_ftrace_return |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1262 | nop |
| 1263 | |
Anton Blanchard | b3c1872 | 2014-09-17 17:07:04 +1000 | [diff] [blame] | 1264 | /* |
| 1265 | * prepare_ftrace_return gives us the address we divert to. |
| 1266 | * Change the LR in the callers stack frame to this. |
| 1267 | */ |
| 1268 | ld r11, 112(r1) |
| 1269 | std r3, 16(r11) |
| 1270 | |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1271 | ld r0, 128(r1) |
| 1272 | mtlr r0 |
| 1273 | addi r1, r1, 112 |
| 1274 | blr |
| 1275 | |
| 1276 | _GLOBAL(return_to_handler) |
| 1277 | /* need to save return values */ |
| 1278 | std r4, -32(r1) |
| 1279 | std r3, -24(r1) |
| 1280 | /* save TOC */ |
| 1281 | std r2, -16(r1) |
| 1282 | std r31, -8(r1) |
| 1283 | mr r31, r1 |
| 1284 | stdu r1, -112(r1) |
| 1285 | |
Steven Rostedt | bb72534 | 2009-02-11 12:45:49 -0800 | [diff] [blame] | 1286 | /* |
Anton Blanchard | 7d56c65 | 2014-09-17 17:07:03 +1000 | [diff] [blame] | 1287 | * We might be called from a module. |
Steven Rostedt | bb72534 | 2009-02-11 12:45:49 -0800 | [diff] [blame] | 1288 | * Switch to our TOC to run inside the core kernel. |
| 1289 | */ |
Steven Rostedt | be10ab1 | 2009-09-15 08:30:14 -0700 | [diff] [blame] | 1290 | ld r2, PACATOC(r13) |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1291 | |
Anton Blanchard | b1576fe | 2014-02-04 16:04:35 +1100 | [diff] [blame] | 1292 | bl ftrace_return_to_handler |
Steven Rostedt | 6794c78 | 2009-02-09 21:10:27 -0800 | [diff] [blame] | 1293 | nop |
| 1294 | |
| 1295 | /* return value has real return address */ |
| 1296 | mtlr r3 |
| 1297 | |
| 1298 | ld r1, 0(r1) |
| 1299 | ld r4, -32(r1) |
| 1300 | ld r3, -24(r1) |
| 1301 | ld r2, -16(r1) |
| 1302 | ld r31, -8(r1) |
| 1303 | |
| 1304 | /* Jump back to real return address */ |
| 1305 | blr |
| 1306 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
| 1307 | #endif /* CONFIG_FUNCTION_TRACER */ |