blob: 7642cb984d3a119cb4f95142d0e30155283ab3eb [file] [log] [blame]
Paul Mackerras9994a332005-10-10 22:36:14 +10001/*
2 * PowerPC version
3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 * Rewritten by Cort Dougan (cort@fsmlabs.com) for PReP
5 * Copyright (C) 1996 Cort Dougan <cort@fsmlabs.com>
6 * Adapted for Power Macintosh by Paul Mackerras.
7 * Low-level exception handlers and MMU support
8 * rewritten by Paul Mackerras.
9 * Copyright (C) 1996 Paul Mackerras.
10 * MPC8xx modifications Copyright (C) 1997 Dan Malek (dmalek@jlc.net).
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 */
21
Paul Mackerras9994a332005-10-10 22:36:14 +100022#include <linux/errno.h>
Michael Ellermanc3525940c2015-07-23 20:21:01 +100023#include <linux/err.h>
Paul Mackerras9994a332005-10-10 22:36:14 +100024#include <linux/sys.h>
25#include <linux/threads.h>
26#include <asm/reg.h>
27#include <asm/page.h>
28#include <asm/mmu.h>
29#include <asm/cputable.h>
30#include <asm/thread_info.h>
31#include <asm/ppc_asm.h>
32#include <asm/asm-offsets.h>
33#include <asm/unistd.h>
Stephen Rothwell46f52212010-11-18 15:06:17 +000034#include <asm/ptrace.h>
Al Viro9445aa12016-01-13 23:33:46 -050035#include <asm/export.h>
Christophe Leroy36a7eea2018-07-05 16:24:55 +000036#include <asm/asm-405.h>
Paul Mackerras9994a332005-10-10 22:36:14 +100037
Paul Mackerras9994a332005-10-10 22:36:14 +100038/*
39 * MSR_KERNEL is > 0x10000 on 4xx/Book-E since it include MSR_CE.
40 */
41#if MSR_KERNEL >= 0x10000
42#define LOAD_MSR_KERNEL(r, x) lis r,(x)@h; ori r,r,(x)@l
43#else
44#define LOAD_MSR_KERNEL(r, x) li r,(x)
45#endif
46
Christophe Leroy0eb0d2e2017-07-12 12:08:49 +020047/*
48 * Align to 4k in order to ensure that all functions modyfing srr0/srr1
49 * fit into one page in order to not encounter a TLB miss between the
50 * modification of srr0/srr1 and the associated rfi.
51 */
52 .align 12
53
Paul Mackerras9994a332005-10-10 22:36:14 +100054#ifdef CONFIG_BOOKE
Paul Mackerras9994a332005-10-10 22:36:14 +100055 .globl mcheck_transfer_to_handler
56mcheck_transfer_to_handler:
Kumar Galafca622c2008-04-30 05:23:21 -050057 mfspr r0,SPRN_DSRR0
58 stw r0,_DSRR0(r11)
59 mfspr r0,SPRN_DSRR1
60 stw r0,_DSRR1(r11)
61 /* fall through */
Paul Mackerras9994a332005-10-10 22:36:14 +100062
63 .globl debug_transfer_to_handler
64debug_transfer_to_handler:
Kumar Galafca622c2008-04-30 05:23:21 -050065 mfspr r0,SPRN_CSRR0
66 stw r0,_CSRR0(r11)
67 mfspr r0,SPRN_CSRR1
68 stw r0,_CSRR1(r11)
69 /* fall through */
Paul Mackerras9994a332005-10-10 22:36:14 +100070
71 .globl crit_transfer_to_handler
72crit_transfer_to_handler:
Kumar Gala70fe3af2009-02-12 16:12:40 -060073#ifdef CONFIG_PPC_BOOK3E_MMU
Kumar Galafca622c2008-04-30 05:23:21 -050074 mfspr r0,SPRN_MAS0
75 stw r0,MAS0(r11)
76 mfspr r0,SPRN_MAS1
77 stw r0,MAS1(r11)
78 mfspr r0,SPRN_MAS2
79 stw r0,MAS2(r11)
80 mfspr r0,SPRN_MAS3
81 stw r0,MAS3(r11)
82 mfspr r0,SPRN_MAS6
83 stw r0,MAS6(r11)
84#ifdef CONFIG_PHYS_64BIT
85 mfspr r0,SPRN_MAS7
86 stw r0,MAS7(r11)
87#endif /* CONFIG_PHYS_64BIT */
Kumar Gala70fe3af2009-02-12 16:12:40 -060088#endif /* CONFIG_PPC_BOOK3E_MMU */
Kumar Galafca622c2008-04-30 05:23:21 -050089#ifdef CONFIG_44x
90 mfspr r0,SPRN_MMUCR
91 stw r0,MMUCR(r11)
92#endif
93 mfspr r0,SPRN_SRR0
94 stw r0,_SRR0(r11)
95 mfspr r0,SPRN_SRR1
96 stw r0,_SRR1(r11)
97
Stuart Yoder1f8b0bc2012-07-16 09:06:48 +000098 /* set the stack limit to the current stack
99 * and set the limit to protect the thread_info
100 * struct
101 */
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000102 mfspr r8,SPRN_SPRG_THREAD
Kumar Galafca622c2008-04-30 05:23:21 -0500103 lwz r0,KSP_LIMIT(r8)
104 stw r0,SAVED_KSP_LIMIT(r11)
Stuart Yoder1f8b0bc2012-07-16 09:06:48 +0000105 rlwimi r0,r1,0,0,(31-THREAD_SHIFT)
Kumar Galafca622c2008-04-30 05:23:21 -0500106 stw r0,KSP_LIMIT(r8)
Paul Mackerras9994a332005-10-10 22:36:14 +1000107 /* fall through */
108#endif
109
110#ifdef CONFIG_40x
111 .globl crit_transfer_to_handler
112crit_transfer_to_handler:
113 lwz r0,crit_r10@l(0)
114 stw r0,GPR10(r11)
115 lwz r0,crit_r11@l(0)
116 stw r0,GPR11(r11)
Kumar Galafca622c2008-04-30 05:23:21 -0500117 mfspr r0,SPRN_SRR0
118 stw r0,crit_srr0@l(0)
119 mfspr r0,SPRN_SRR1
120 stw r0,crit_srr1@l(0)
121
Stuart Yoder1f8b0bc2012-07-16 09:06:48 +0000122 /* set the stack limit to the current stack
123 * and set the limit to protect the thread_info
124 * struct
125 */
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000126 mfspr r8,SPRN_SPRG_THREAD
Kumar Galafca622c2008-04-30 05:23:21 -0500127 lwz r0,KSP_LIMIT(r8)
128 stw r0,saved_ksp_limit@l(0)
Stuart Yoder1f8b0bc2012-07-16 09:06:48 +0000129 rlwimi r0,r1,0,0,(31-THREAD_SHIFT)
Kumar Galafca622c2008-04-30 05:23:21 -0500130 stw r0,KSP_LIMIT(r8)
Paul Mackerras9994a332005-10-10 22:36:14 +1000131 /* fall through */
132#endif
133
134/*
135 * This code finishes saving the registers to the exception frame
136 * and jumps to the appropriate handler for the exception, turning
137 * on address translation.
138 * Note that we rely on the caller having set cr0.eq iff the exception
139 * occurred in kernel mode (i.e. MSR:PR = 0).
140 */
141 .globl transfer_to_handler_full
142transfer_to_handler_full:
143 SAVE_NVGPRS(r11)
144 /* fall through */
145
146 .globl transfer_to_handler
147transfer_to_handler:
148 stw r2,GPR2(r11)
149 stw r12,_NIP(r11)
150 stw r9,_MSR(r11)
151 andi. r2,r9,MSR_PR
152 mfctr r12
153 mfspr r2,SPRN_XER
154 stw r12,_CTR(r11)
155 stw r2,_XER(r11)
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000156 mfspr r12,SPRN_SPRG_THREAD
Paul Mackerras9994a332005-10-10 22:36:14 +1000157 addi r2,r12,-THREAD
158 tovirt(r2,r2) /* set r2 to current */
159 beq 2f /* if from user, fix up THREAD.regs */
160 addi r11,r1,STACK_FRAME_OVERHEAD
161 stw r11,PT_REGS(r12)
162#if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
163 /* Check to see if the dbcr0 register is set up to debug. Use the
Kumar Gala4eaddb42008-04-09 16:15:40 -0500164 internal debug mode bit to do this. */
Paul Mackerras9994a332005-10-10 22:36:14 +1000165 lwz r12,THREAD_DBCR0(r12)
Kumar Gala2325f0a2008-07-26 05:27:33 +1000166 andis. r12,r12,DBCR0_IDM@h
Paul Mackerras9994a332005-10-10 22:36:14 +1000167 beq+ 3f
168 /* From user and task is ptraced - load up global dbcr0 */
169 li r12,-1 /* clear all pending debug events */
170 mtspr SPRN_DBSR,r12
171 lis r11,global_dbcr0@ha
172 tophys(r11,r11)
173 addi r11,r11,global_dbcr0@l
Kumar Gala4eaddb42008-04-09 16:15:40 -0500174#ifdef CONFIG_SMP
Stuart Yoder9778b692012-07-05 04:41:35 +0000175 CURRENT_THREAD_INFO(r9, r1)
Kumar Gala4eaddb42008-04-09 16:15:40 -0500176 lwz r9,TI_CPU(r9)
177 slwi r9,r9,3
178 add r11,r11,r9
179#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000180 lwz r12,0(r11)
181 mtspr SPRN_DBCR0,r12
182 lwz r12,4(r11)
183 addi r12,r12,-1
184 stw r12,4(r11)
185#endif
Christophe Leroyc223c902016-05-17 08:33:46 +0200186#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
187 CURRENT_THREAD_INFO(r9, r1)
188 tophys(r9, r9)
189 ACCOUNT_CPU_USER_ENTRY(r9, r11, r12)
190#endif
191
Paul Mackerras9994a332005-10-10 22:36:14 +1000192 b 3f
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000193
Paul Mackerras9994a332005-10-10 22:36:14 +10001942: /* if from kernel, check interrupted DOZE/NAP mode and
195 * check for stack overflow
196 */
Kumar Gala85218822008-04-28 16:21:22 +1000197 lwz r9,KSP_LIMIT(r12)
198 cmplw r1,r9 /* if r1 <= ksp_limit */
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000199 ble- stack_ovf /* then the kernel stack overflowed */
2005:
Kumar Galafc4033b2008-06-18 16:26:52 -0500201#if defined(CONFIG_6xx) || defined(CONFIG_E500)
Stuart Yoder9778b692012-07-05 04:41:35 +0000202 CURRENT_THREAD_INFO(r9, r1)
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000203 tophys(r9,r9) /* check local flags */
204 lwz r12,TI_LOCAL_FLAGS(r9)
205 mtcrf 0x01,r12
206 bt- 31-TLF_NAPPING,4f
Paul Mackerrasa5606432008-05-14 14:30:48 +1000207 bt- 31-TLF_SLEEPING,7f
Kumar Galafc4033b2008-06-18 16:26:52 -0500208#endif /* CONFIG_6xx || CONFIG_E500 */
Paul Mackerras9994a332005-10-10 22:36:14 +1000209 .globl transfer_to_handler_cont
210transfer_to_handler_cont:
Paul Mackerras9994a332005-10-10 22:36:14 +10002113:
212 mflr r9
213 lwz r11,0(r9) /* virtual address of handler */
214 lwz r9,4(r9) /* where to go when done */
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100215#if defined(CONFIG_PPC_8xx) && defined(CONFIG_PERF_EVENTS)
Christophe Leroy75b82472016-12-15 13:42:18 +0100216 mtspr SPRN_NRI, r0
217#endif
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000218#ifdef CONFIG_TRACE_IRQFLAGS
219 lis r12,reenable_mmu@h
220 ori r12,r12,reenable_mmu@l
221 mtspr SPRN_SRR0,r12
222 mtspr SPRN_SRR1,r10
223 SYNC
224 RFI
225reenable_mmu: /* re-enable mmu so we can */
226 mfmsr r10
227 lwz r12,_MSR(r1)
228 xor r10,r10,r12
229 andi. r10,r10,MSR_EE /* Did EE change? */
230 beq 1f
231
Kevin Hao2cd76622011-11-10 16:04:17 +0000232 /*
233 * The trace_hardirqs_off will use CALLER_ADDR0 and CALLER_ADDR1.
234 * If from user mode there is only one stack frame on the stack, and
235 * accessing CALLER_ADDR1 will cause oops. So we need create a dummy
236 * stack frame to make trace_hardirqs_off happy.
Benjamin Herrenschmidt08f1ec82012-04-10 17:21:35 +1000237 *
238 * This is handy because we also need to save a bunch of GPRs,
239 * r3 can be different from GPR3(r1) at this point, r9 and r11
240 * contains the old MSR and handler address respectively,
241 * r4 & r5 can contain page fault arguments that need to be passed
242 * along as well. r12, CCR, CTR, XER etc... are left clobbered as
243 * they aren't useful past this point (aren't syscall arguments),
244 * the rest is restored from the exception frame.
Kevin Hao2cd76622011-11-10 16:04:17 +0000245 */
Benjamin Herrenschmidt08f1ec82012-04-10 17:21:35 +1000246 stwu r1,-32(r1)
247 stw r9,8(r1)
248 stw r11,12(r1)
249 stw r3,16(r1)
250 stw r4,20(r1)
251 stw r5,24(r1)
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000252 bl trace_hardirqs_off
Benjamin Herrenschmidt08f1ec82012-04-10 17:21:35 +1000253 lwz r5,24(r1)
254 lwz r4,20(r1)
255 lwz r3,16(r1)
256 lwz r11,12(r1)
257 lwz r9,8(r1)
258 addi r1,r1,32
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000259 lwz r0,GPR0(r1)
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000260 lwz r6,GPR6(r1)
261 lwz r7,GPR7(r1)
262 lwz r8,GPR8(r1)
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +00002631: mtctr r11
264 mtlr r9
265 bctr /* jump to handler */
266#else /* CONFIG_TRACE_IRQFLAGS */
Paul Mackerras9994a332005-10-10 22:36:14 +1000267 mtspr SPRN_SRR0,r11
268 mtspr SPRN_SRR1,r10
269 mtlr r9
270 SYNC
271 RFI /* jump to handler, enable MMU */
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000272#endif /* CONFIG_TRACE_IRQFLAGS */
Paul Mackerras9994a332005-10-10 22:36:14 +1000273
Kumar Galafc4033b2008-06-18 16:26:52 -0500274#if defined (CONFIG_6xx) || defined(CONFIG_E500)
Paul Mackerrasf39224a2006-04-18 21:49:11 +10002754: rlwinm r12,r12,0,~_TLF_NAPPING
276 stw r12,TI_LOCAL_FLAGS(r9)
Kumar Galafc4033b2008-06-18 16:26:52 -0500277 b power_save_ppc32_restore
Paul Mackerrasa5606432008-05-14 14:30:48 +1000278
2797: rlwinm r12,r12,0,~_TLF_SLEEPING
280 stw r12,TI_LOCAL_FLAGS(r9)
281 lwz r9,_MSR(r11) /* if sleeping, clear MSR.EE */
282 rlwinm r9,r9,0,~MSR_EE
283 lwz r12,_LINK(r11) /* and return to address in LR */
284 b fast_exception_return
Paul Mackerrasa0652fc2006-03-27 15:03:03 +1100285#endif
286
Paul Mackerras9994a332005-10-10 22:36:14 +1000287/*
288 * On kernel stack overflow, load up an initial stack pointer
289 * and call StackOverflow(regs), which should not return.
290 */
291stack_ovf:
292 /* sometimes we use a statically-allocated stack, which is OK. */
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000293 lis r12,_end@h
294 ori r12,r12,_end@l
295 cmplw r1,r12
296 ble 5b /* r1 <= &_end is OK */
Paul Mackerras9994a332005-10-10 22:36:14 +1000297 SAVE_NVGPRS(r11)
298 addi r3,r1,STACK_FRAME_OVERHEAD
299 lis r1,init_thread_union@ha
300 addi r1,r1,init_thread_union@l
301 addi r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD
302 lis r9,StackOverflow@ha
303 addi r9,r9,StackOverflow@l
304 LOAD_MSR_KERNEL(r10,MSR_KERNEL)
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100305#if defined(CONFIG_PPC_8xx) && defined(CONFIG_PERF_EVENTS)
Christophe Leroy75b82472016-12-15 13:42:18 +0100306 mtspr SPRN_NRI, r0
307#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000308 mtspr SPRN_SRR0,r9
309 mtspr SPRN_SRR1,r10
310 SYNC
311 RFI
312
313/*
314 * Handle a system call.
315 */
316 .stabs "arch/powerpc/kernel/",N_SO,0,0,0f
317 .stabs "entry_32.S",N_SO,0,0,0f
3180:
319
320_GLOBAL(DoSyscall)
Paul Mackerras9994a332005-10-10 22:36:14 +1000321 stw r3,ORIG_GPR3(r1)
322 li r12,0
323 stw r12,RESULT(r1)
324 lwz r11,_CCR(r1) /* Clear SO bit in CR */
325 rlwinm r11,r11,0,4,2
326 stw r11,_CCR(r1)
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000327#ifdef CONFIG_TRACE_IRQFLAGS
328 /* Return from syscalls can (and generally will) hard enable
329 * interrupts. You aren't supposed to call a syscall with
330 * interrupts disabled in the first place. However, to ensure
331 * that we get it right vs. lockdep if it happens, we force
332 * that hard enable here with appropriate tracing if we see
333 * that we have been called with interrupts off
334 */
335 mfmsr r11
336 andi. r12,r11,MSR_EE
337 bne+ 1f
338 /* We came in with interrupts disabled, we enable them now */
339 bl trace_hardirqs_on
340 mfmsr r11
341 lwz r0,GPR0(r1)
342 lwz r3,GPR3(r1)
343 lwz r4,GPR4(r1)
344 ori r11,r11,MSR_EE
345 lwz r5,GPR5(r1)
346 lwz r6,GPR6(r1)
347 lwz r7,GPR7(r1)
348 lwz r8,GPR8(r1)
349 mtmsr r11
3501:
351#endif /* CONFIG_TRACE_IRQFLAGS */
Stuart Yoder9778b692012-07-05 04:41:35 +0000352 CURRENT_THREAD_INFO(r10, r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000353 lwz r11,TI_FLAGS(r10)
Michael Ellerman10ea8342015-01-15 12:01:42 +1100354 andi. r11,r11,_TIF_SYSCALL_DOTRACE
Paul Mackerras9994a332005-10-10 22:36:14 +1000355 bne- syscall_dotrace
356syscall_dotrace_cont:
357 cmplwi 0,r0,NR_syscalls
358 lis r10,sys_call_table@h
359 ori r10,r10,sys_call_table@l
360 slwi r0,r0,2
361 bge- 66f
362 lwzx r10,r10,r0 /* Fetch system call handler [ptr] */
363 mtlr r10
364 addi r9,r1,STACK_FRAME_OVERHEAD
365 PPC440EP_ERR42
366 blrl /* Call handler */
367 .globl ret_from_syscall
368ret_from_syscall:
Boqun Feng6f37be42018-06-02 08:44:01 -0400369#ifdef CONFIG_DEBUG_RSEQ
370 /* Check whether the syscall is issued inside a restartable sequence */
371 stw r3,GPR3(r1)
372 addi r3,r1,STACK_FRAME_OVERHEAD
373 bl rseq_syscall
374 lwz r3,GPR3(r1)
375#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000376 mr r6,r3
Stuart Yoder9778b692012-07-05 04:41:35 +0000377 CURRENT_THREAD_INFO(r12, r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000378 /* disable interrupts so current_thread_info()->flags can't change */
David Woodhouse401d1f02005-11-15 18:52:18 +0000379 LOAD_MSR_KERNEL(r10,MSR_KERNEL) /* doesn't include MSR_EE */
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000380 /* Note: We don't bother telling lockdep about it */
Paul Mackerras9994a332005-10-10 22:36:14 +1000381 SYNC
382 MTMSRD(r10)
383 lwz r9,TI_FLAGS(r12)
Michael Ellermanc3525940c2015-07-23 20:21:01 +1000384 li r8,-MAX_ERRNO
Michael Ellerman10ea8342015-01-15 12:01:42 +1100385 andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
Paul Mackerras9994a332005-10-10 22:36:14 +1000386 bne- syscall_exit_work
David Woodhouse401d1f02005-11-15 18:52:18 +0000387 cmplw 0,r3,r8
388 blt+ syscall_exit_cont
389 lwz r11,_CCR(r1) /* Load CR */
390 neg r3,r3
391 oris r11,r11,0x1000 /* Set SO bit in CR */
392 stw r11,_CCR(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000393syscall_exit_cont:
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000394 lwz r8,_MSR(r1)
395#ifdef CONFIG_TRACE_IRQFLAGS
396 /* If we are going to return from the syscall with interrupts
397 * off, we trace that here. It shouldn't happen though but we
398 * want to catch the bugger if it does right ?
399 */
400 andi. r10,r8,MSR_EE
401 bne+ 1f
402 stw r3,GPR3(r1)
403 bl trace_hardirqs_off
404 lwz r3,GPR3(r1)
4051:
406#endif /* CONFIG_TRACE_IRQFLAGS */
Paul Mackerras9994a332005-10-10 22:36:14 +1000407#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Kumar Gala4eaddb42008-04-09 16:15:40 -0500408 /* If the process has its own DBCR0 value, load it up. The internal
409 debug mode bit tells us that dbcr0 should be loaded. */
Paul Mackerras9994a332005-10-10 22:36:14 +1000410 lwz r0,THREAD+THREAD_DBCR0(r2)
Kumar Gala2325f0a2008-07-26 05:27:33 +1000411 andis. r10,r0,DBCR0_IDM@h
Paul Mackerras9994a332005-10-10 22:36:14 +1000412 bnel- load_dbcr0
413#endif
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100414#ifdef CONFIG_44x
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000415BEGIN_MMU_FTR_SECTION
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100416 lis r4,icache_44x_need_flush@ha
417 lwz r5,icache_44x_need_flush@l(r4)
418 cmplwi cr0,r5,0
419 bne- 2f
4201:
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000421END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_47x)
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100422#endif /* CONFIG_44x */
Becky Bruceb64f87c2007-11-10 09:17:49 +1100423BEGIN_FTR_SECTION
424 lwarx r7,0,r1
425END_FTR_SECTION_IFSET(CPU_FTR_NEED_PAIRED_STWCX)
Paul Mackerras9994a332005-10-10 22:36:14 +1000426 stwcx. r0,0,r1 /* to clear the reservation */
Christophe Leroyc223c902016-05-17 08:33:46 +0200427#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
428 andi. r4,r8,MSR_PR
429 beq 3f
430 CURRENT_THREAD_INFO(r4, r1)
431 ACCOUNT_CPU_USER_EXIT(r4, r5, r7)
4323:
433#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000434 lwz r4,_LINK(r1)
435 lwz r5,_CCR(r1)
436 mtlr r4
437 mtcr r5
438 lwz r7,_NIP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000439 lwz r2,GPR2(r1)
440 lwz r1,GPR1(r1)
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100441#if defined(CONFIG_PPC_8xx) && defined(CONFIG_PERF_EVENTS)
Christophe Leroy75b82472016-12-15 13:42:18 +0100442 mtspr SPRN_NRI, r0
443#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000444 mtspr SPRN_SRR0,r7
445 mtspr SPRN_SRR1,r8
446 SYNC
447 RFI
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100448#ifdef CONFIG_44x
4492: li r7,0
450 iccci r0,r0
451 stw r7,icache_44x_need_flush@l(r4)
452 b 1b
453#endif /* CONFIG_44x */
Paul Mackerras9994a332005-10-10 22:36:14 +1000454
45566: li r3,-ENOSYS
456 b ret_from_syscall
457
458 .globl ret_from_fork
459ret_from_fork:
460 REST_NVGPRS(r1)
461 bl schedule_tail
462 li r3,0
463 b ret_from_syscall
464
Al Viro58254e12012-09-12 18:32:42 -0400465 .globl ret_from_kernel_thread
466ret_from_kernel_thread:
467 REST_NVGPRS(r1)
468 bl schedule_tail
469 mtlr r14
470 mr r3,r15
471 PPC440EP_ERR42
472 blrl
473 li r3,0
Al Virobe6abfa72012-08-31 15:48:05 -0400474 b ret_from_syscall
475
Paul Mackerras9994a332005-10-10 22:36:14 +1000476/* Traced system call support */
477syscall_dotrace:
478 SAVE_NVGPRS(r1)
479 li r0,0xc00
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000480 stw r0,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000481 addi r3,r1,STACK_FRAME_OVERHEAD
482 bl do_syscall_trace_enter
Roland McGrath4f72c422008-07-27 16:51:03 +1000483 /*
484 * Restore argument registers possibly just changed.
485 * We use the return value of do_syscall_trace_enter
486 * for call number to look up in the table (r0).
487 */
488 mr r0,r3
Paul Mackerras9994a332005-10-10 22:36:14 +1000489 lwz r3,GPR3(r1)
490 lwz r4,GPR4(r1)
491 lwz r5,GPR5(r1)
492 lwz r6,GPR6(r1)
493 lwz r7,GPR7(r1)
494 lwz r8,GPR8(r1)
495 REST_NVGPRS(r1)
Michael Ellermand3837412015-07-23 20:21:02 +1000496
497 cmplwi r0,NR_syscalls
498 /* Return code is already in r3 thanks to do_syscall_trace_enter() */
499 bge- ret_from_syscall
Paul Mackerras9994a332005-10-10 22:36:14 +1000500 b syscall_dotrace_cont
501
502syscall_exit_work:
David Woodhouse401d1f02005-11-15 18:52:18 +0000503 andi. r0,r9,_TIF_RESTOREALL
Paul Mackerras1bd79332006-03-08 13:24:22 +1100504 beq+ 0f
505 REST_NVGPRS(r1)
506 b 2f
5070: cmplw 0,r3,r8
David Woodhouse401d1f02005-11-15 18:52:18 +0000508 blt+ 1f
509 andi. r0,r9,_TIF_NOERROR
510 bne- 1f
511 lwz r11,_CCR(r1) /* Load CR */
512 neg r3,r3
513 oris r11,r11,0x1000 /* Set SO bit in CR */
514 stw r11,_CCR(r1)
515
5161: stw r6,RESULT(r1) /* Save result */
Paul Mackerras9994a332005-10-10 22:36:14 +1000517 stw r3,GPR3(r1) /* Update return value */
David Woodhouse401d1f02005-11-15 18:52:18 +00005182: andi. r0,r9,(_TIF_PERSYSCALL_MASK)
519 beq 4f
520
Paul Mackerras1bd79332006-03-08 13:24:22 +1100521 /* Clear per-syscall TIF flags if any are set. */
David Woodhouse401d1f02005-11-15 18:52:18 +0000522
523 li r11,_TIF_PERSYSCALL_MASK
524 addi r12,r12,TI_FLAGS
5253: lwarx r8,0,r12
526 andc r8,r8,r11
527#ifdef CONFIG_IBM405_ERR77
528 dcbt 0,r12
529#endif
530 stwcx. r8,0,r12
531 bne- 3b
532 subi r12,r12,TI_FLAGS
533
5344: /* Anything which requires enabling interrupts? */
Michael Ellerman10ea8342015-01-15 12:01:42 +1100535 andi. r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP)
Paul Mackerras1bd79332006-03-08 13:24:22 +1100536 beq ret_from_except
537
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000538 /* Re-enable interrupts. There is no need to trace that with
539 * lockdep as we are supposed to have IRQs on at this point
540 */
Paul Mackerras1bd79332006-03-08 13:24:22 +1100541 ori r10,r10,MSR_EE
542 SYNC
543 MTMSRD(r10)
David Woodhouse401d1f02005-11-15 18:52:18 +0000544
545 /* Save NVGPRS if they're not saved already */
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000546 lwz r4,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000547 andi. r4,r4,1
David Woodhouse401d1f02005-11-15 18:52:18 +0000548 beq 5f
Paul Mackerras9994a332005-10-10 22:36:14 +1000549 SAVE_NVGPRS(r1)
550 li r4,0xc00
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000551 stw r4,_TRAP(r1)
Paul Mackerras1bd79332006-03-08 13:24:22 +11005525:
Paul Mackerras9994a332005-10-10 22:36:14 +1000553 addi r3,r1,STACK_FRAME_OVERHEAD
554 bl do_syscall_trace_leave
Paul Mackerras1bd79332006-03-08 13:24:22 +1100555 b ret_from_except_full
David Woodhouse401d1f02005-11-15 18:52:18 +0000556
Paul Mackerras9994a332005-10-10 22:36:14 +1000557/*
David Woodhouse401d1f02005-11-15 18:52:18 +0000558 * The fork/clone functions need to copy the full register set into
559 * the child process. Therefore we need to save all the nonvolatile
560 * registers (r13 - r31) before calling the C code.
Paul Mackerras9994a332005-10-10 22:36:14 +1000561 */
Paul Mackerras9994a332005-10-10 22:36:14 +1000562 .globl ppc_fork
563ppc_fork:
564 SAVE_NVGPRS(r1)
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000565 lwz r0,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000566 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000567 stw r0,_TRAP(r1) /* register set saved */
Paul Mackerras9994a332005-10-10 22:36:14 +1000568 b sys_fork
569
570 .globl ppc_vfork
571ppc_vfork:
572 SAVE_NVGPRS(r1)
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000573 lwz r0,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000574 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000575 stw r0,_TRAP(r1) /* register set saved */
Paul Mackerras9994a332005-10-10 22:36:14 +1000576 b sys_vfork
577
578 .globl ppc_clone
579ppc_clone:
580 SAVE_NVGPRS(r1)
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000581 lwz r0,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000582 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000583 stw r0,_TRAP(r1) /* register set saved */
Paul Mackerras9994a332005-10-10 22:36:14 +1000584 b sys_clone
585
Paul Mackerras1bd79332006-03-08 13:24:22 +1100586 .globl ppc_swapcontext
587ppc_swapcontext:
588 SAVE_NVGPRS(r1)
589 lwz r0,_TRAP(r1)
590 rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */
591 stw r0,_TRAP(r1) /* register set saved */
592 b sys_swapcontext
593
Paul Mackerras9994a332005-10-10 22:36:14 +1000594/*
595 * Top-level page fault handling.
596 * This is in assembler because if do_page_fault tells us that
597 * it is a bad kernel page fault, we want to save the non-volatile
598 * registers before calling bad_page_fault.
599 */
600 .globl handle_page_fault
601handle_page_fault:
602 stw r4,_DAR(r1)
603 addi r3,r1,STACK_FRAME_OVERHEAD
Benjamin Herrenschmidtd3006272017-07-19 14:49:25 +1000604#ifdef CONFIG_6xx
Christophe Leroy64d0a502017-08-08 08:37:24 +0200605 andis. r0,r5,DSISR_DABRMATCH@h
Benjamin Herrenschmidtd3006272017-07-19 14:49:25 +1000606 bne- handle_dabr_fault
Benjamin Herrenschmidtd3006272017-07-19 14:49:25 +1000607#endif
Christophe Leroy64d0a502017-08-08 08:37:24 +0200608 bl do_page_fault
Paul Mackerras9994a332005-10-10 22:36:14 +1000609 cmpwi r3,0
610 beq+ ret_from_except
611 SAVE_NVGPRS(r1)
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000612 lwz r0,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000613 clrrwi r0,r0,1
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000614 stw r0,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000615 mr r5,r3
616 addi r3,r1,STACK_FRAME_OVERHEAD
617 lwz r4,_DAR(r1)
618 bl bad_page_fault
619 b ret_from_except_full
620
Benjamin Herrenschmidtd3006272017-07-19 14:49:25 +1000621#ifdef CONFIG_6xx
622 /* We have a data breakpoint exception - handle it */
623handle_dabr_fault:
624 SAVE_NVGPRS(r1)
625 lwz r0,_TRAP(r1)
626 clrrwi r0,r0,1
627 stw r0,_TRAP(r1)
628 bl do_break
629 b ret_from_except_full
630#endif
631
Paul Mackerras9994a332005-10-10 22:36:14 +1000632/*
633 * This routine switches between two different tasks. The process
634 * state of one is saved on its kernel stack. Then the state
635 * of the other is restored from its kernel stack. The memory
636 * management hardware is updated to the second process's state.
637 * Finally, we can return to the second process.
638 * On entry, r3 points to the THREAD for the current task, r4
639 * points to the THREAD for the new task.
640 *
641 * This routine is always called with interrupts disabled.
642 *
643 * Note: there are two ways to get to the "going out" portion
644 * of this code; either by coming in via the entry (_switch)
645 * or via "fork" which must set up an environment equivalent
646 * to the "_switch" path. If you change this , you'll have to
647 * change the fork code also.
648 *
649 * The code which creates the new task context is in 'copy_thread'
650 * in arch/ppc/kernel/process.c
651 */
652_GLOBAL(_switch)
653 stwu r1,-INT_FRAME_SIZE(r1)
654 mflr r0
655 stw r0,INT_FRAME_SIZE+4(r1)
656 /* r3-r12 are caller saved -- Cort */
657 SAVE_NVGPRS(r1)
658 stw r0,_NIP(r1) /* Return to switch caller */
659 mfmsr r11
660 li r0,MSR_FP /* Disable floating-point */
661#ifdef CONFIG_ALTIVEC
662BEGIN_FTR_SECTION
663 oris r0,r0,MSR_VEC@h /* Disable altivec */
664 mfspr r12,SPRN_VRSAVE /* save vrsave register value */
665 stw r12,THREAD+THREAD_VRSAVE(r2)
666END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
667#endif /* CONFIG_ALTIVEC */
668#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -0500669BEGIN_FTR_SECTION
Paul Mackerras9994a332005-10-10 22:36:14 +1000670 oris r0,r0,MSR_SPE@h /* Disable SPE */
671 mfspr r12,SPRN_SPEFSCR /* save spefscr register value */
672 stw r12,THREAD+THREAD_SPEFSCR(r2)
Kumar Gala5e14d212007-09-13 01:44:20 -0500673END_FTR_SECTION_IFSET(CPU_FTR_SPE)
Paul Mackerras9994a332005-10-10 22:36:14 +1000674#endif /* CONFIG_SPE */
675 and. r0,r0,r11 /* FP or altivec or SPE enabled? */
676 beq+ 1f
677 andc r11,r11,r0
678 MTMSRD(r11)
679 isync
6801: stw r11,_MSR(r1)
681 mfcr r10
682 stw r10,_CCR(r1)
683 stw r1,KSP(r3) /* Set old stack pointer */
684
685#ifdef CONFIG_SMP
686 /* We need a sync somewhere here to make sure that if the
687 * previous task gets rescheduled on another CPU, it sees all
688 * stores it has performed on this one.
689 */
690 sync
691#endif /* CONFIG_SMP */
692
693 tophys(r0,r4)
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000694 mtspr SPRN_SPRG_THREAD,r0 /* Update current THREAD phys addr */
Paul Mackerras9994a332005-10-10 22:36:14 +1000695 lwz r1,KSP(r4) /* Load new stack pointer */
696
697 /* save the old current 'last' for return value */
698 mr r3,r2
699 addi r2,r4,-THREAD /* Update current */
700
701#ifdef CONFIG_ALTIVEC
702BEGIN_FTR_SECTION
703 lwz r0,THREAD+THREAD_VRSAVE(r2)
704 mtspr SPRN_VRSAVE,r0 /* if G4, restore VRSAVE reg */
705END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
706#endif /* CONFIG_ALTIVEC */
707#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -0500708BEGIN_FTR_SECTION
Paul Mackerras9994a332005-10-10 22:36:14 +1000709 lwz r0,THREAD+THREAD_SPEFSCR(r2)
710 mtspr SPRN_SPEFSCR,r0 /* restore SPEFSCR reg */
Kumar Gala5e14d212007-09-13 01:44:20 -0500711END_FTR_SECTION_IFSET(CPU_FTR_SPE)
Paul Mackerras9994a332005-10-10 22:36:14 +1000712#endif /* CONFIG_SPE */
Michael Ellermanf2574032017-01-24 21:37:20 +1100713
Paul Mackerras9994a332005-10-10 22:36:14 +1000714 lwz r0,_CCR(r1)
715 mtcrf 0xFF,r0
716 /* r3-r12 are destroyed -- Cort */
717 REST_NVGPRS(r1)
718
719 lwz r4,_NIP(r1) /* Return to _switch caller in new task */
720 mtlr r4
721 addi r1,r1,INT_FRAME_SIZE
722 blr
723
724 .globl fast_exception_return
725fast_exception_return:
726#if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
727 andi. r10,r9,MSR_RI /* check for recoverable interrupt */
728 beq 1f /* if not, we've got problems */
729#endif
730
7312: REST_4GPRS(3, r11)
732 lwz r10,_CCR(r11)
733 REST_GPR(1, r11)
734 mtcr r10
735 lwz r10,_LINK(r11)
736 mtlr r10
737 REST_GPR(10, r11)
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100738#if defined(CONFIG_PPC_8xx) && defined(CONFIG_PERF_EVENTS)
Christophe Leroy75b82472016-12-15 13:42:18 +0100739 mtspr SPRN_NRI, r0
740#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000741 mtspr SPRN_SRR1,r9
742 mtspr SPRN_SRR0,r12
743 REST_GPR(9, r11)
744 REST_GPR(12, r11)
745 lwz r11,GPR11(r11)
746 SYNC
747 RFI
748
749#if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
750/* check if the exception happened in a restartable section */
7511: lis r3,exc_exit_restart_end@ha
752 addi r3,r3,exc_exit_restart_end@l
753 cmplw r12,r3
754 bge 3f
755 lis r4,exc_exit_restart@ha
756 addi r4,r4,exc_exit_restart@l
757 cmplw r12,r4
758 blt 3f
759 lis r3,fee_restarts@ha
760 tophys(r3,r3)
761 lwz r5,fee_restarts@l(r3)
762 addi r5,r5,1
763 stw r5,fee_restarts@l(r3)
764 mr r12,r4 /* restart at exc_exit_restart */
765 b 2b
766
Kumar Gala991eb432007-05-14 17:11:58 -0500767 .section .bss
768 .align 2
769fee_restarts:
770 .space 4
771 .previous
Paul Mackerras9994a332005-10-10 22:36:14 +1000772
773/* aargh, a nonrecoverable interrupt, panic */
774/* aargh, we don't know which trap this is */
775/* but the 601 doesn't implement the RI bit, so assume it's OK */
7763:
777BEGIN_FTR_SECTION
778 b 2b
779END_FTR_SECTION_IFSET(CPU_FTR_601)
780 li r10,-1
Paul Mackerrasd73e0c92005-10-28 22:45:25 +1000781 stw r10,_TRAP(r11)
Paul Mackerras9994a332005-10-10 22:36:14 +1000782 addi r3,r1,STACK_FRAME_OVERHEAD
783 lis r10,MSR_KERNEL@h
784 ori r10,r10,MSR_KERNEL@l
785 bl transfer_to_handler_full
786 .long nonrecoverable_exception
787 .long ret_from_except
788#endif
789
Paul Mackerras9994a332005-10-10 22:36:14 +1000790 .globl ret_from_except_full
791ret_from_except_full:
792 REST_NVGPRS(r1)
793 /* fall through */
794
795 .globl ret_from_except
796ret_from_except:
797 /* Hard-disable interrupts so that current_thread_info()->flags
798 * can't change between when we test it and when we return
799 * from the interrupt. */
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000800 /* Note: We don't bother telling lockdep about it */
Paul Mackerras9994a332005-10-10 22:36:14 +1000801 LOAD_MSR_KERNEL(r10,MSR_KERNEL)
802 SYNC /* Some chip revs have problems here... */
803 MTMSRD(r10) /* disable interrupts */
804
805 lwz r3,_MSR(r1) /* Returning to user mode? */
806 andi. r0,r3,MSR_PR
807 beq resume_kernel
808
809user_exc_return: /* r10 contains MSR_KERNEL here */
810 /* Check current_thread_info()->flags */
Stuart Yoder9778b692012-07-05 04:41:35 +0000811 CURRENT_THREAD_INFO(r9, r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000812 lwz r9,TI_FLAGS(r9)
Roland McGrath7a101742008-04-28 17:30:37 +1000813 andi. r0,r9,_TIF_USER_WORK_MASK
Paul Mackerras9994a332005-10-10 22:36:14 +1000814 bne do_work
815
816restore_user:
817#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Kumar Gala4eaddb42008-04-09 16:15:40 -0500818 /* Check whether this process has its own DBCR0 value. The internal
819 debug mode bit tells us that dbcr0 should be loaded. */
Paul Mackerras9994a332005-10-10 22:36:14 +1000820 lwz r0,THREAD+THREAD_DBCR0(r2)
Kumar Gala2325f0a2008-07-26 05:27:33 +1000821 andis. r10,r0,DBCR0_IDM@h
Paul Mackerras9994a332005-10-10 22:36:14 +1000822 bnel- load_dbcr0
823#endif
Christophe Leroyc223c902016-05-17 08:33:46 +0200824#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
825 CURRENT_THREAD_INFO(r9, r1)
826 ACCOUNT_CPU_USER_EXIT(r9, r10, r11)
827#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000828
Paul Mackerras9994a332005-10-10 22:36:14 +1000829 b restore
830
831/* N.B. the only way to get here is from the beq following ret_from_except. */
832resume_kernel:
Tiejun Chena9c4e542012-09-16 23:54:30 +0000833 /* check current_thread_info, _TIF_EMULATE_STACK_STORE */
Stuart Yoder9778b692012-07-05 04:41:35 +0000834 CURRENT_THREAD_INFO(r9, r1)
Tiejun Chena9c4e542012-09-16 23:54:30 +0000835 lwz r8,TI_FLAGS(r9)
Priyanka Jainf7b33672013-05-31 01:20:02 +0000836 andis. r0,r8,_TIF_EMULATE_STACK_STORE@h
Tiejun Chena9c4e542012-09-16 23:54:30 +0000837 beq+ 1f
838
839 addi r8,r1,INT_FRAME_SIZE /* Get the kprobed function entry */
840
841 lwz r3,GPR1(r1)
842 subi r3,r3,INT_FRAME_SIZE /* dst: Allocate a trampoline exception frame */
843 mr r4,r1 /* src: current exception frame */
844 mr r1,r3 /* Reroute the trampoline frame to r1 */
845
846 /* Copy from the original to the trampoline. */
847 li r5,INT_FRAME_SIZE/4 /* size: INT_FRAME_SIZE */
848 li r6,0 /* start offset: 0 */
849 mtctr r5
8502: lwzx r0,r6,r4
851 stwx r0,r6,r3
852 addi r6,r6,4
853 bdnz 2b
854
855 /* Do real store operation to complete stwu */
856 lwz r5,GPR1(r1)
857 stw r8,0(r5)
858
859 /* Clear _TIF_EMULATE_STACK_STORE flag */
860 lis r11,_TIF_EMULATE_STACK_STORE@h
861 addi r5,r9,TI_FLAGS
8620: lwarx r8,0,r5
863 andc r8,r8,r11
864#ifdef CONFIG_IBM405_ERR77
865 dcbt 0,r5
866#endif
867 stwcx. r8,0,r5
868 bne- 0b
8691:
870
871#ifdef CONFIG_PREEMPT
872 /* check current_thread_info->preempt_count */
Paul Mackerras9994a332005-10-10 22:36:14 +1000873 lwz r0,TI_PREEMPT(r9)
874 cmpwi 0,r0,0 /* if non-zero, just restore regs and return */
875 bne restore
Tiejun Chena9c4e542012-09-16 23:54:30 +0000876 andi. r8,r8,_TIF_NEED_RESCHED
Paul Mackerras9994a332005-10-10 22:36:14 +1000877 beq+ restore
Tiejun Chena9c4e542012-09-16 23:54:30 +0000878 lwz r3,_MSR(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000879 andi. r0,r3,MSR_EE /* interrupts off? */
880 beq restore /* don't schedule if so */
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000881#ifdef CONFIG_TRACE_IRQFLAGS
882 /* Lockdep thinks irqs are enabled, we need to call
883 * preempt_schedule_irq with IRQs off, so we inform lockdep
884 * now that we -did- turn them off already
885 */
886 bl trace_hardirqs_off
887#endif
Paul Mackerras9994a332005-10-10 22:36:14 +10008881: bl preempt_schedule_irq
Stuart Yoder9778b692012-07-05 04:41:35 +0000889 CURRENT_THREAD_INFO(r9, r1)
Paul Mackerras9994a332005-10-10 22:36:14 +1000890 lwz r3,TI_FLAGS(r9)
891 andi. r0,r3,_TIF_NEED_RESCHED
892 bne- 1b
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000893#ifdef CONFIG_TRACE_IRQFLAGS
894 /* And now, to properly rebalance the above, we tell lockdep they
895 * are being turned back on, which will happen when we return
896 */
897 bl trace_hardirqs_on
898#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000899#endif /* CONFIG_PREEMPT */
900
901 /* interrupts are hard-disabled at this point */
902restore:
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100903#ifdef CONFIG_44x
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000904BEGIN_MMU_FTR_SECTION
905 b 1f
906END_MMU_FTR_SECTION_IFSET(MMU_FTR_TYPE_47x)
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100907 lis r4,icache_44x_need_flush@ha
908 lwz r5,icache_44x_need_flush@l(r4)
909 cmplwi cr0,r5,0
910 beq+ 1f
911 li r6,0
912 iccci r0,r0
913 stw r6,icache_44x_need_flush@l(r4)
9141:
915#endif /* CONFIG_44x */
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000916
917 lwz r9,_MSR(r1)
918#ifdef CONFIG_TRACE_IRQFLAGS
919 /* Lockdep doesn't know about the fact that IRQs are temporarily turned
920 * off in this assembly code while peeking at TI_FLAGS() and such. However
921 * we need to inform it if the exception turned interrupts off, and we
922 * are about to trun them back on.
923 *
924 * The problem here sadly is that we don't know whether the exceptions was
925 * one that turned interrupts off or not. So we always tell lockdep about
926 * turning them on here when we go back to wherever we came from with EE
927 * on, even if that may meen some redudant calls being tracked. Maybe later
928 * we could encode what the exception did somewhere or test the exception
929 * type in the pt_regs but that sounds overkill
930 */
931 andi. r10,r9,MSR_EE
932 beq 1f
Steven Rostedt06ca2182010-12-22 16:42:56 +0000933 /*
934 * Since the ftrace irqsoff latency trace checks CALLER_ADDR1,
935 * which is the stack frame here, we need to force a stack frame
936 * in case we came from user space.
937 */
938 stwu r1,-32(r1)
939 mflr r0
940 stw r0,4(r1)
941 stwu r1,-32(r1)
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000942 bl trace_hardirqs_on
Steven Rostedt06ca2182010-12-22 16:42:56 +0000943 lwz r1,0(r1)
944 lwz r1,0(r1)
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +0000945 lwz r9,_MSR(r1)
9461:
947#endif /* CONFIG_TRACE_IRQFLAGS */
948
Paul Mackerras9994a332005-10-10 22:36:14 +1000949 lwz r0,GPR0(r1)
950 lwz r2,GPR2(r1)
951 REST_4GPRS(3, r1)
952 REST_2GPRS(7, r1)
953
954 lwz r10,_XER(r1)
955 lwz r11,_CTR(r1)
956 mtspr SPRN_XER,r10
957 mtctr r11
958
959 PPC405_ERR77(0,r1)
Becky Bruceb64f87c2007-11-10 09:17:49 +1100960BEGIN_FTR_SECTION
961 lwarx r11,0,r1
962END_FTR_SECTION_IFSET(CPU_FTR_NEED_PAIRED_STWCX)
Paul Mackerras9994a332005-10-10 22:36:14 +1000963 stwcx. r0,0,r1 /* to clear the reservation */
964
965#if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
Paul Mackerras9994a332005-10-10 22:36:14 +1000966 andi. r10,r9,MSR_RI /* check if this exception occurred */
967 beql nonrecoverable /* at a bad place (MSR:RI = 0) */
968
969 lwz r10,_CCR(r1)
970 lwz r11,_LINK(r1)
971 mtcrf 0xFF,r10
972 mtlr r11
973
974 /*
975 * Once we put values in SRR0 and SRR1, we are in a state
976 * where exceptions are not recoverable, since taking an
977 * exception will trash SRR0 and SRR1. Therefore we clear the
978 * MSR:RI bit to indicate this. If we do take an exception,
979 * we can't return to the point of the exception but we
980 * can restart the exception exit path at the label
981 * exc_exit_restart below. -- paulus
982 */
983 LOAD_MSR_KERNEL(r10,MSR_KERNEL & ~MSR_RI)
984 SYNC
985 MTMSRD(r10) /* clear the RI bit */
986 .globl exc_exit_restart
987exc_exit_restart:
Paul Mackerras9994a332005-10-10 22:36:14 +1000988 lwz r12,_NIP(r1)
Christophe Leroycd99ddb2018-01-12 13:45:23 +0100989#if defined(CONFIG_PPC_8xx) && defined(CONFIG_PERF_EVENTS)
Christophe Leroy75b82472016-12-15 13:42:18 +0100990 mtspr SPRN_NRI, r0
991#endif
Paul Mackerras9994a332005-10-10 22:36:14 +1000992 mtspr SPRN_SRR0,r12
993 mtspr SPRN_SRR1,r9
994 REST_4GPRS(9, r1)
995 lwz r1,GPR1(r1)
996 .globl exc_exit_restart_end
997exc_exit_restart_end:
998 SYNC
999 RFI
1000
1001#else /* !(CONFIG_4xx || CONFIG_BOOKE) */
1002 /*
1003 * This is a bit different on 4xx/Book-E because it doesn't have
1004 * the RI bit in the MSR.
1005 * The TLB miss handler checks if we have interrupted
1006 * the exception exit path and restarts it if so
1007 * (well maybe one day it will... :).
1008 */
1009 lwz r11,_LINK(r1)
1010 mtlr r11
1011 lwz r10,_CCR(r1)
1012 mtcrf 0xff,r10
1013 REST_2GPRS(9, r1)
1014 .globl exc_exit_restart
1015exc_exit_restart:
1016 lwz r11,_NIP(r1)
1017 lwz r12,_MSR(r1)
1018exc_exit_start:
1019 mtspr SPRN_SRR0,r11
1020 mtspr SPRN_SRR1,r12
1021 REST_2GPRS(11, r1)
1022 lwz r1,GPR1(r1)
1023 .globl exc_exit_restart_end
1024exc_exit_restart_end:
1025 PPC405_ERR77_SYNC
1026 rfi
1027 b . /* prevent prefetch past rfi */
1028
1029/*
1030 * Returning from a critical interrupt in user mode doesn't need
1031 * to be any different from a normal exception. For a critical
1032 * interrupt in the kernel, we just return (without checking for
1033 * preemption) since the interrupt may have happened at some crucial
1034 * place (e.g. inside the TLB miss handler), and because we will be
1035 * running with r1 pointing into critical_stack, not the current
1036 * process's kernel stack (and therefore current_thread_info() will
1037 * give the wrong answer).
1038 * We have to restore various SPRs that may have been in use at the
1039 * time of the critical interrupt.
1040 *
1041 */
1042#ifdef CONFIG_40x
1043#define PPC_40x_TURN_OFF_MSR_DR \
1044 /* avoid any possible TLB misses here by turning off MSR.DR, we \
1045 * assume the instructions here are mapped by a pinned TLB entry */ \
1046 li r10,MSR_IR; \
1047 mtmsr r10; \
1048 isync; \
1049 tophys(r1, r1);
1050#else
1051#define PPC_40x_TURN_OFF_MSR_DR
1052#endif
1053
1054#define RET_FROM_EXC_LEVEL(exc_lvl_srr0, exc_lvl_srr1, exc_lvl_rfi) \
1055 REST_NVGPRS(r1); \
1056 lwz r3,_MSR(r1); \
1057 andi. r3,r3,MSR_PR; \
1058 LOAD_MSR_KERNEL(r10,MSR_KERNEL); \
1059 bne user_exc_return; \
1060 lwz r0,GPR0(r1); \
1061 lwz r2,GPR2(r1); \
1062 REST_4GPRS(3, r1); \
1063 REST_2GPRS(7, r1); \
1064 lwz r10,_XER(r1); \
1065 lwz r11,_CTR(r1); \
1066 mtspr SPRN_XER,r10; \
1067 mtctr r11; \
1068 PPC405_ERR77(0,r1); \
1069 stwcx. r0,0,r1; /* to clear the reservation */ \
1070 lwz r11,_LINK(r1); \
1071 mtlr r11; \
1072 lwz r10,_CCR(r1); \
1073 mtcrf 0xff,r10; \
1074 PPC_40x_TURN_OFF_MSR_DR; \
1075 lwz r9,_DEAR(r1); \
1076 lwz r10,_ESR(r1); \
1077 mtspr SPRN_DEAR,r9; \
1078 mtspr SPRN_ESR,r10; \
1079 lwz r11,_NIP(r1); \
1080 lwz r12,_MSR(r1); \
1081 mtspr exc_lvl_srr0,r11; \
1082 mtspr exc_lvl_srr1,r12; \
1083 lwz r9,GPR9(r1); \
1084 lwz r12,GPR12(r1); \
1085 lwz r10,GPR10(r1); \
1086 lwz r11,GPR11(r1); \
1087 lwz r1,GPR1(r1); \
1088 PPC405_ERR77_SYNC; \
1089 exc_lvl_rfi; \
1090 b .; /* prevent prefetch past exc_lvl_rfi */
1091
Kumar Galafca622c2008-04-30 05:23:21 -05001092#define RESTORE_xSRR(exc_lvl_srr0, exc_lvl_srr1) \
1093 lwz r9,_##exc_lvl_srr0(r1); \
1094 lwz r10,_##exc_lvl_srr1(r1); \
1095 mtspr SPRN_##exc_lvl_srr0,r9; \
1096 mtspr SPRN_##exc_lvl_srr1,r10;
1097
Kumar Gala70fe3af2009-02-12 16:12:40 -06001098#if defined(CONFIG_PPC_BOOK3E_MMU)
Kumar Galafca622c2008-04-30 05:23:21 -05001099#ifdef CONFIG_PHYS_64BIT
1100#define RESTORE_MAS7 \
1101 lwz r11,MAS7(r1); \
1102 mtspr SPRN_MAS7,r11;
1103#else
1104#define RESTORE_MAS7
1105#endif /* CONFIG_PHYS_64BIT */
1106#define RESTORE_MMU_REGS \
1107 lwz r9,MAS0(r1); \
1108 lwz r10,MAS1(r1); \
1109 lwz r11,MAS2(r1); \
1110 mtspr SPRN_MAS0,r9; \
1111 lwz r9,MAS3(r1); \
1112 mtspr SPRN_MAS1,r10; \
1113 lwz r10,MAS6(r1); \
1114 mtspr SPRN_MAS2,r11; \
1115 mtspr SPRN_MAS3,r9; \
1116 mtspr SPRN_MAS6,r10; \
1117 RESTORE_MAS7;
1118#elif defined(CONFIG_44x)
1119#define RESTORE_MMU_REGS \
1120 lwz r9,MMUCR(r1); \
1121 mtspr SPRN_MMUCR,r9;
1122#else
1123#define RESTORE_MMU_REGS
1124#endif
1125
1126#ifdef CONFIG_40x
Paul Mackerras9994a332005-10-10 22:36:14 +10001127 .globl ret_from_crit_exc
1128ret_from_crit_exc:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001129 mfspr r9,SPRN_SPRG_THREAD
Kumar Galafca622c2008-04-30 05:23:21 -05001130 lis r10,saved_ksp_limit@ha;
1131 lwz r10,saved_ksp_limit@l(r10);
1132 tovirt(r9,r9);
1133 stw r10,KSP_LIMIT(r9)
1134 lis r9,crit_srr0@ha;
1135 lwz r9,crit_srr0@l(r9);
1136 lis r10,crit_srr1@ha;
1137 lwz r10,crit_srr1@l(r10);
1138 mtspr SPRN_SRR0,r9;
1139 mtspr SPRN_SRR1,r10;
Kumar Gala16c57b32009-02-10 20:10:44 +00001140 RET_FROM_EXC_LEVEL(SPRN_CSRR0, SPRN_CSRR1, PPC_RFCI)
Kumar Galafca622c2008-04-30 05:23:21 -05001141#endif /* CONFIG_40x */
Paul Mackerras9994a332005-10-10 22:36:14 +10001142
1143#ifdef CONFIG_BOOKE
Kumar Galafca622c2008-04-30 05:23:21 -05001144 .globl ret_from_crit_exc
1145ret_from_crit_exc:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001146 mfspr r9,SPRN_SPRG_THREAD
Kumar Galafca622c2008-04-30 05:23:21 -05001147 lwz r10,SAVED_KSP_LIMIT(r1)
1148 stw r10,KSP_LIMIT(r9)
1149 RESTORE_xSRR(SRR0,SRR1);
1150 RESTORE_MMU_REGS;
Kumar Gala16c57b32009-02-10 20:10:44 +00001151 RET_FROM_EXC_LEVEL(SPRN_CSRR0, SPRN_CSRR1, PPC_RFCI)
Kumar Galafca622c2008-04-30 05:23:21 -05001152
Paul Mackerras9994a332005-10-10 22:36:14 +10001153 .globl ret_from_debug_exc
1154ret_from_debug_exc:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001155 mfspr r9,SPRN_SPRG_THREAD
Kumar Galafca622c2008-04-30 05:23:21 -05001156 lwz r10,SAVED_KSP_LIMIT(r1)
1157 stw r10,KSP_LIMIT(r9)
1158 lwz r9,THREAD_INFO-THREAD(r9)
Stuart Yoder9778b692012-07-05 04:41:35 +00001159 CURRENT_THREAD_INFO(r10, r1)
Kumar Galafca622c2008-04-30 05:23:21 -05001160 lwz r10,TI_PREEMPT(r10)
1161 stw r10,TI_PREEMPT(r9)
1162 RESTORE_xSRR(SRR0,SRR1);
1163 RESTORE_xSRR(CSRR0,CSRR1);
1164 RESTORE_MMU_REGS;
Kumar Gala16c57b32009-02-10 20:10:44 +00001165 RET_FROM_EXC_LEVEL(SPRN_DSRR0, SPRN_DSRR1, PPC_RFDI)
Paul Mackerras9994a332005-10-10 22:36:14 +10001166
1167 .globl ret_from_mcheck_exc
1168ret_from_mcheck_exc:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001169 mfspr r9,SPRN_SPRG_THREAD
Kumar Galafca622c2008-04-30 05:23:21 -05001170 lwz r10,SAVED_KSP_LIMIT(r1)
1171 stw r10,KSP_LIMIT(r9)
1172 RESTORE_xSRR(SRR0,SRR1);
1173 RESTORE_xSRR(CSRR0,CSRR1);
1174 RESTORE_xSRR(DSRR0,DSRR1);
1175 RESTORE_MMU_REGS;
Kumar Gala16c57b32009-02-10 20:10:44 +00001176 RET_FROM_EXC_LEVEL(SPRN_MCSRR0, SPRN_MCSRR1, PPC_RFMCI)
Paul Mackerras9994a332005-10-10 22:36:14 +10001177#endif /* CONFIG_BOOKE */
1178
1179/*
1180 * Load the DBCR0 value for a task that is being ptraced,
1181 * having first saved away the global DBCR0. Note that r0
1182 * has the dbcr0 value to set upon entry to this.
1183 */
1184load_dbcr0:
1185 mfmsr r10 /* first disable debug exceptions */
1186 rlwinm r10,r10,0,~MSR_DE
1187 mtmsr r10
1188 isync
1189 mfspr r10,SPRN_DBCR0
1190 lis r11,global_dbcr0@ha
1191 addi r11,r11,global_dbcr0@l
Kumar Gala4eaddb42008-04-09 16:15:40 -05001192#ifdef CONFIG_SMP
Stuart Yoder9778b692012-07-05 04:41:35 +00001193 CURRENT_THREAD_INFO(r9, r1)
Kumar Gala4eaddb42008-04-09 16:15:40 -05001194 lwz r9,TI_CPU(r9)
1195 slwi r9,r9,3
1196 add r11,r11,r9
1197#endif
Paul Mackerras9994a332005-10-10 22:36:14 +10001198 stw r10,0(r11)
1199 mtspr SPRN_DBCR0,r0
1200 lwz r10,4(r11)
1201 addi r10,r10,1
1202 stw r10,4(r11)
1203 li r11,-1
1204 mtspr SPRN_DBSR,r11 /* clear all pending debug events */
1205 blr
1206
Kumar Gala991eb432007-05-14 17:11:58 -05001207 .section .bss
1208 .align 4
1209global_dbcr0:
Kumar Gala4eaddb42008-04-09 16:15:40 -05001210 .space 8*NR_CPUS
Kumar Gala991eb432007-05-14 17:11:58 -05001211 .previous
Paul Mackerras9994a332005-10-10 22:36:14 +10001212#endif /* !(CONFIG_4xx || CONFIG_BOOKE) */
1213
1214do_work: /* r10 contains MSR_KERNEL here */
1215 andi. r0,r9,_TIF_NEED_RESCHED
1216 beq do_user_signal
1217
1218do_resched: /* r10 contains MSR_KERNEL here */
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +00001219 /* Note: We don't need to inform lockdep that we are enabling
1220 * interrupts here. As far as it knows, they are already enabled
1221 */
Paul Mackerras9994a332005-10-10 22:36:14 +10001222 ori r10,r10,MSR_EE
1223 SYNC
1224 MTMSRD(r10) /* hard-enable interrupts */
1225 bl schedule
1226recheck:
Benjamin Herrenschmidt5d389022009-06-17 17:43:59 +00001227 /* Note: And we don't tell it we are disabling them again
1228 * neither. Those disable/enable cycles used to peek at
1229 * TI_FLAGS aren't advertised.
1230 */
Paul Mackerras9994a332005-10-10 22:36:14 +10001231 LOAD_MSR_KERNEL(r10,MSR_KERNEL)
1232 SYNC
1233 MTMSRD(r10) /* disable interrupts */
Stuart Yoder9778b692012-07-05 04:41:35 +00001234 CURRENT_THREAD_INFO(r9, r1)
Paul Mackerras9994a332005-10-10 22:36:14 +10001235 lwz r9,TI_FLAGS(r9)
1236 andi. r0,r9,_TIF_NEED_RESCHED
1237 bne- do_resched
Roland McGrath7a101742008-04-28 17:30:37 +10001238 andi. r0,r9,_TIF_USER_WORK_MASK
Paul Mackerras9994a332005-10-10 22:36:14 +10001239 beq restore_user
1240do_user_signal: /* r10 contains MSR_KERNEL here */
1241 ori r10,r10,MSR_EE
1242 SYNC
1243 MTMSRD(r10) /* hard-enable interrupts */
1244 /* save r13-r31 in the exception frame, if not already done */
Paul Mackerrasd73e0c92005-10-28 22:45:25 +10001245 lwz r3,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +10001246 andi. r0,r3,1
1247 beq 2f
1248 SAVE_NVGPRS(r1)
1249 rlwinm r3,r3,0,0,30
Paul Mackerrasd73e0c92005-10-28 22:45:25 +10001250 stw r3,_TRAP(r1)
Roland McGrath7d6d6372008-07-27 16:52:52 +100012512: addi r3,r1,STACK_FRAME_OVERHEAD
1252 mr r4,r9
Benjamin Herrenschmidt18b246f2012-02-22 16:48:32 +11001253 bl do_notify_resume
Paul Mackerras9994a332005-10-10 22:36:14 +10001254 REST_NVGPRS(r1)
1255 b recheck
1256
1257/*
1258 * We come here when we are at the end of handling an exception
1259 * that occurred at a place where taking an exception will lose
1260 * state information, such as the contents of SRR0 and SRR1.
1261 */
1262nonrecoverable:
1263 lis r10,exc_exit_restart_end@ha
1264 addi r10,r10,exc_exit_restart_end@l
1265 cmplw r12,r10
1266 bge 3f
1267 lis r11,exc_exit_restart@ha
1268 addi r11,r11,exc_exit_restart@l
1269 cmplw r12,r11
1270 blt 3f
1271 lis r10,ee_restarts@ha
1272 lwz r12,ee_restarts@l(r10)
1273 addi r12,r12,1
1274 stw r12,ee_restarts@l(r10)
1275 mr r12,r11 /* restart at exc_exit_restart */
1276 blr
12773: /* OK, we can't recover, kill this process */
1278 /* but the 601 doesn't implement the RI bit, so assume it's OK */
1279BEGIN_FTR_SECTION
1280 blr
1281END_FTR_SECTION_IFSET(CPU_FTR_601)
Paul Mackerrasd73e0c92005-10-28 22:45:25 +10001282 lwz r3,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +10001283 andi. r0,r3,1
1284 beq 4f
1285 SAVE_NVGPRS(r1)
1286 rlwinm r3,r3,0,0,30
Paul Mackerrasd73e0c92005-10-28 22:45:25 +10001287 stw r3,_TRAP(r1)
Paul Mackerras9994a332005-10-10 22:36:14 +100012884: addi r3,r1,STACK_FRAME_OVERHEAD
1289 bl nonrecoverable_exception
1290 /* shouldn't return */
1291 b 4b
1292
Kumar Gala991eb432007-05-14 17:11:58 -05001293 .section .bss
1294 .align 2
1295ee_restarts:
1296 .space 4
1297 .previous
Paul Mackerras9994a332005-10-10 22:36:14 +10001298
1299/*
1300 * PROM code for specific machines follows. Put it
1301 * here so it's easy to add arch-specific sections later.
1302 * -- Cort
1303 */
Paul Mackerras033ef332005-10-26 17:05:24 +10001304#ifdef CONFIG_PPC_RTAS
Paul Mackerras9994a332005-10-10 22:36:14 +10001305/*
1306 * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
1307 * called with the MMU off.
1308 */
1309_GLOBAL(enter_rtas)
1310 stwu r1,-INT_FRAME_SIZE(r1)
1311 mflr r0
1312 stw r0,INT_FRAME_SIZE+4(r1)
David Gibsone58c3492006-01-13 14:56:25 +11001313 LOAD_REG_ADDR(r4, rtas)
Paul Mackerras9994a332005-10-10 22:36:14 +10001314 lis r6,1f@ha /* physical return address for rtas */
1315 addi r6,r6,1f@l
1316 tophys(r6,r6)
1317 tophys(r7,r1)
Paul Mackerras033ef332005-10-26 17:05:24 +10001318 lwz r8,RTASENTRY(r4)
1319 lwz r4,RTASBASE(r4)
Paul Mackerras9994a332005-10-10 22:36:14 +10001320 mfmsr r9
1321 stw r9,8(r1)
1322 LOAD_MSR_KERNEL(r0,MSR_KERNEL)
1323 SYNC /* disable interrupts so SRR0/1 */
1324 MTMSRD(r0) /* don't get trashed */
1325 li r9,MSR_KERNEL & ~(MSR_IR|MSR_DR)
1326 mtlr r6
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001327 mtspr SPRN_SPRG_RTAS,r7
Paul Mackerras9994a332005-10-10 22:36:14 +10001328 mtspr SPRN_SRR0,r8
1329 mtspr SPRN_SRR1,r9
1330 RFI
13311: tophys(r9,r1)
1332 lwz r8,INT_FRAME_SIZE+4(r9) /* get return address */
1333 lwz r9,8(r9) /* original msr value */
Paul Mackerras9994a332005-10-10 22:36:14 +10001334 addi r1,r1,INT_FRAME_SIZE
1335 li r0,0
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001336 mtspr SPRN_SPRG_RTAS,r0
Paul Mackerras9994a332005-10-10 22:36:14 +10001337 mtspr SPRN_SRR0,r8
1338 mtspr SPRN_SRR1,r9
1339 RFI /* return to caller */
1340
1341 .globl machine_check_in_rtas
1342machine_check_in_rtas:
1343 twi 31,0,0
1344 /* XXX load up BATs and panic */
1345
Paul Mackerras033ef332005-10-26 17:05:24 +10001346#endif /* CONFIG_PPC_RTAS */