Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / arch / powerpc / kernel / entry_32.S
1 /*
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
22 #include <linux/errno.h>
23 #include <linux/sys.h>
24 #include <linux/threads.h>
25 #include <asm/reg.h>
26 #include <asm/page.h>
27 #include <asm/mmu.h>
28 #include <asm/cputable.h>
29 #include <asm/thread_info.h>
30 #include <asm/ppc_asm.h>
31 #include <asm/asm-offsets.h>
32 #include <asm/unistd.h>
33 #include <asm/ftrace.h>
34 #include <asm/ptrace.h>
35
36 /*
37  * MSR_KERNEL is > 0x10000 on 4xx/Book-E since it include MSR_CE.
38  */
39 #if MSR_KERNEL >= 0x10000
40 #define LOAD_MSR_KERNEL(r, x)   lis r,(x)@h; ori r,r,(x)@l
41 #else
42 #define LOAD_MSR_KERNEL(r, x)   li r,(x)
43 #endif
44
45 #ifdef CONFIG_BOOKE
46         .globl  mcheck_transfer_to_handler
47 mcheck_transfer_to_handler:
48         mfspr   r0,SPRN_DSRR0
49         stw     r0,_DSRR0(r11)
50         mfspr   r0,SPRN_DSRR1
51         stw     r0,_DSRR1(r11)
52         /* fall through */
53
54         .globl  debug_transfer_to_handler
55 debug_transfer_to_handler:
56         mfspr   r0,SPRN_CSRR0
57         stw     r0,_CSRR0(r11)
58         mfspr   r0,SPRN_CSRR1
59         stw     r0,_CSRR1(r11)
60         /* fall through */
61
62         .globl  crit_transfer_to_handler
63 crit_transfer_to_handler:
64 #ifdef CONFIG_PPC_BOOK3E_MMU
65         mfspr   r0,SPRN_MAS0
66         stw     r0,MAS0(r11)
67         mfspr   r0,SPRN_MAS1
68         stw     r0,MAS1(r11)
69         mfspr   r0,SPRN_MAS2
70         stw     r0,MAS2(r11)
71         mfspr   r0,SPRN_MAS3
72         stw     r0,MAS3(r11)
73         mfspr   r0,SPRN_MAS6
74         stw     r0,MAS6(r11)
75 #ifdef CONFIG_PHYS_64BIT
76         mfspr   r0,SPRN_MAS7
77         stw     r0,MAS7(r11)
78 #endif /* CONFIG_PHYS_64BIT */
79 #endif /* CONFIG_PPC_BOOK3E_MMU */
80 #ifdef CONFIG_44x
81         mfspr   r0,SPRN_MMUCR
82         stw     r0,MMUCR(r11)
83 #endif
84         mfspr   r0,SPRN_SRR0
85         stw     r0,_SRR0(r11)
86         mfspr   r0,SPRN_SRR1
87         stw     r0,_SRR1(r11)
88
89         /* set the stack limit to the current stack
90          * and set the limit to protect the thread_info
91          * struct
92          */
93         mfspr   r8,SPRN_SPRG_THREAD
94         lwz     r0,KSP_LIMIT(r8)
95         stw     r0,SAVED_KSP_LIMIT(r11)
96         rlwimi  r0,r1,0,0,(31-THREAD_SHIFT)
97         stw     r0,KSP_LIMIT(r8)
98         /* fall through */
99 #endif
100
101 #ifdef CONFIG_40x
102         .globl  crit_transfer_to_handler
103 crit_transfer_to_handler:
104         lwz     r0,crit_r10@l(0)
105         stw     r0,GPR10(r11)
106         lwz     r0,crit_r11@l(0)
107         stw     r0,GPR11(r11)
108         mfspr   r0,SPRN_SRR0
109         stw     r0,crit_srr0@l(0)
110         mfspr   r0,SPRN_SRR1
111         stw     r0,crit_srr1@l(0)
112
113         /* set the stack limit to the current stack
114          * and set the limit to protect the thread_info
115          * struct
116          */
117         mfspr   r8,SPRN_SPRG_THREAD
118         lwz     r0,KSP_LIMIT(r8)
119         stw     r0,saved_ksp_limit@l(0)
120         rlwimi  r0,r1,0,0,(31-THREAD_SHIFT)
121         stw     r0,KSP_LIMIT(r8)
122         /* fall through */
123 #endif
124
125 /*
126  * This code finishes saving the registers to the exception frame
127  * and jumps to the appropriate handler for the exception, turning
128  * on address translation.
129  * Note that we rely on the caller having set cr0.eq iff the exception
130  * occurred in kernel mode (i.e. MSR:PR = 0).
131  */
132         .globl  transfer_to_handler_full
133 transfer_to_handler_full:
134         SAVE_NVGPRS(r11)
135         /* fall through */
136
137         .globl  transfer_to_handler
138 transfer_to_handler:
139         stw     r2,GPR2(r11)
140         stw     r12,_NIP(r11)
141         stw     r9,_MSR(r11)
142         andi.   r2,r9,MSR_PR
143         mfctr   r12
144         mfspr   r2,SPRN_XER
145         stw     r12,_CTR(r11)
146         stw     r2,_XER(r11)
147         mfspr   r12,SPRN_SPRG_THREAD
148         addi    r2,r12,-THREAD
149         tovirt(r2,r2)                   /* set r2 to current */
150         beq     2f                      /* if from user, fix up THREAD.regs */
151         addi    r11,r1,STACK_FRAME_OVERHEAD
152         stw     r11,PT_REGS(r12)
153 #if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
154         /* Check to see if the dbcr0 register is set up to debug.  Use the
155            internal debug mode bit to do this. */
156         lwz     r12,THREAD_DBCR0(r12)
157         andis.  r12,r12,DBCR0_IDM@h
158         beq+    3f
159         /* From user and task is ptraced - load up global dbcr0 */
160         li      r12,-1                  /* clear all pending debug events */
161         mtspr   SPRN_DBSR,r12
162         lis     r11,global_dbcr0@ha
163         tophys(r11,r11)
164         addi    r11,r11,global_dbcr0@l
165 #ifdef CONFIG_SMP
166         CURRENT_THREAD_INFO(r9, r1)
167         lwz     r9,TI_CPU(r9)
168         slwi    r9,r9,3
169         add     r11,r11,r9
170 #endif
171         lwz     r12,0(r11)
172         mtspr   SPRN_DBCR0,r12
173         lwz     r12,4(r11)
174         addi    r12,r12,-1
175         stw     r12,4(r11)
176 #endif
177         b       3f
178
179 2:      /* if from kernel, check interrupted DOZE/NAP mode and
180          * check for stack overflow
181          */
182         lwz     r9,KSP_LIMIT(r12)
183         cmplw   r1,r9                   /* if r1 <= ksp_limit */
184         ble-    stack_ovf               /* then the kernel stack overflowed */
185 5:
186 #if defined(CONFIG_6xx) || defined(CONFIG_E500)
187         CURRENT_THREAD_INFO(r9, r1)
188         tophys(r9,r9)                   /* check local flags */
189         lwz     r12,TI_LOCAL_FLAGS(r9)
190         mtcrf   0x01,r12
191         bt-     31-TLF_NAPPING,4f
192         bt-     31-TLF_SLEEPING,7f
193 #endif /* CONFIG_6xx || CONFIG_E500 */
194         .globl transfer_to_handler_cont
195 transfer_to_handler_cont:
196 3:
197         mflr    r9
198         lwz     r11,0(r9)               /* virtual address of handler */
199         lwz     r9,4(r9)                /* where to go when done */
200 #ifdef CONFIG_TRACE_IRQFLAGS
201         lis     r12,reenable_mmu@h
202         ori     r12,r12,reenable_mmu@l
203         mtspr   SPRN_SRR0,r12
204         mtspr   SPRN_SRR1,r10
205         SYNC
206         RFI
207 reenable_mmu:                           /* re-enable mmu so we can */
208         mfmsr   r10
209         lwz     r12,_MSR(r1)
210         xor     r10,r10,r12
211         andi.   r10,r10,MSR_EE          /* Did EE change? */
212         beq     1f
213
214         /*
215          * The trace_hardirqs_off will use CALLER_ADDR0 and CALLER_ADDR1.
216          * If from user mode there is only one stack frame on the stack, and
217          * accessing CALLER_ADDR1 will cause oops. So we need create a dummy
218          * stack frame to make trace_hardirqs_off happy.
219          *
220          * This is handy because we also need to save a bunch of GPRs,
221          * r3 can be different from GPR3(r1) at this point, r9 and r11
222          * contains the old MSR and handler address respectively,
223          * r4 & r5 can contain page fault arguments that need to be passed
224          * along as well. r12, CCR, CTR, XER etc... are left clobbered as
225          * they aren't useful past this point (aren't syscall arguments),
226          * the rest is restored from the exception frame.
227          */
228         stwu    r1,-32(r1)
229         stw     r9,8(r1)
230         stw     r11,12(r1)
231         stw     r3,16(r1)
232         stw     r4,20(r1)
233         stw     r5,24(r1)
234         bl      trace_hardirqs_off
235         lwz     r5,24(r1)
236         lwz     r4,20(r1)
237         lwz     r3,16(r1)
238         lwz     r11,12(r1)
239         lwz     r9,8(r1)
240         addi    r1,r1,32
241         lwz     r0,GPR0(r1)
242         lwz     r6,GPR6(r1)
243         lwz     r7,GPR7(r1)
244         lwz     r8,GPR8(r1)
245 1:      mtctr   r11
246         mtlr    r9
247         bctr                            /* jump to handler */
248 #else /* CONFIG_TRACE_IRQFLAGS */
249         mtspr   SPRN_SRR0,r11
250         mtspr   SPRN_SRR1,r10
251         mtlr    r9
252         SYNC
253         RFI                             /* jump to handler, enable MMU */
254 #endif /* CONFIG_TRACE_IRQFLAGS */
255
256 #if defined (CONFIG_6xx) || defined(CONFIG_E500)
257 4:      rlwinm  r12,r12,0,~_TLF_NAPPING
258         stw     r12,TI_LOCAL_FLAGS(r9)
259         b       power_save_ppc32_restore
260
261 7:      rlwinm  r12,r12,0,~_TLF_SLEEPING
262         stw     r12,TI_LOCAL_FLAGS(r9)
263         lwz     r9,_MSR(r11)            /* if sleeping, clear MSR.EE */
264         rlwinm  r9,r9,0,~MSR_EE
265         lwz     r12,_LINK(r11)          /* and return to address in LR */
266         b       fast_exception_return
267 #endif
268
269 /*
270  * On kernel stack overflow, load up an initial stack pointer
271  * and call StackOverflow(regs), which should not return.
272  */
273 stack_ovf:
274         /* sometimes we use a statically-allocated stack, which is OK. */
275         lis     r12,_end@h
276         ori     r12,r12,_end@l
277         cmplw   r1,r12
278         ble     5b                      /* r1 <= &_end is OK */
279         SAVE_NVGPRS(r11)
280         addi    r3,r1,STACK_FRAME_OVERHEAD
281         lis     r1,init_thread_union@ha
282         addi    r1,r1,init_thread_union@l
283         addi    r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD
284         lis     r9,StackOverflow@ha
285         addi    r9,r9,StackOverflow@l
286         LOAD_MSR_KERNEL(r10,MSR_KERNEL)
287         FIX_SRR1(r10,r12)
288         mtspr   SPRN_SRR0,r9
289         mtspr   SPRN_SRR1,r10
290         SYNC
291         RFI
292
293 /*
294  * Handle a system call.
295  */
296         .stabs  "arch/powerpc/kernel/",N_SO,0,0,0f
297         .stabs  "entry_32.S",N_SO,0,0,0f
298 0:
299
300 _GLOBAL(DoSyscall)
301         stw     r3,ORIG_GPR3(r1)
302         li      r12,0
303         stw     r12,RESULT(r1)
304         lwz     r11,_CCR(r1)    /* Clear SO bit in CR */
305         rlwinm  r11,r11,0,4,2
306         stw     r11,_CCR(r1)
307 #ifdef CONFIG_TRACE_IRQFLAGS
308         /* Return from syscalls can (and generally will) hard enable
309          * interrupts. You aren't supposed to call a syscall with
310          * interrupts disabled in the first place. However, to ensure
311          * that we get it right vs. lockdep if it happens, we force
312          * that hard enable here with appropriate tracing if we see
313          * that we have been called with interrupts off
314          */
315         mfmsr   r11
316         andi.   r12,r11,MSR_EE
317         bne+    1f
318         /* We came in with interrupts disabled, we enable them now */
319         bl      trace_hardirqs_on
320         mfmsr   r11
321         lwz     r0,GPR0(r1)
322         lwz     r3,GPR3(r1)
323         lwz     r4,GPR4(r1)
324         ori     r11,r11,MSR_EE
325         lwz     r5,GPR5(r1)
326         lwz     r6,GPR6(r1)
327         lwz     r7,GPR7(r1)
328         lwz     r8,GPR8(r1)
329         mtmsr   r11
330 1:
331 #endif /* CONFIG_TRACE_IRQFLAGS */
332         CURRENT_THREAD_INFO(r10, r1)
333         lwz     r11,TI_FLAGS(r10)
334         andi.   r11,r11,_TIF_SYSCALL_DOTRACE
335         bne-    syscall_dotrace
336 syscall_dotrace_cont:
337         cmplwi  0,r0,NR_syscalls
338         lis     r10,sys_call_table@h
339         ori     r10,r10,sys_call_table@l
340         slwi    r0,r0,2
341         bge-    66f
342         lwzx    r10,r10,r0      /* Fetch system call handler [ptr] */
343         mtlr    r10
344         addi    r9,r1,STACK_FRAME_OVERHEAD
345         PPC440EP_ERR42
346         blrl                    /* Call handler */
347         .globl  ret_from_syscall
348 ret_from_syscall:
349         mr      r6,r3
350         CURRENT_THREAD_INFO(r12, r1)
351         /* disable interrupts so current_thread_info()->flags can't change */
352         LOAD_MSR_KERNEL(r10,MSR_KERNEL) /* doesn't include MSR_EE */
353         /* Note: We don't bother telling lockdep about it */
354         SYNC
355         MTMSRD(r10)
356         lwz     r9,TI_FLAGS(r12)
357         li      r8,-_LAST_ERRNO
358         andi.   r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK)
359         bne-    syscall_exit_work
360         cmplw   0,r3,r8
361         blt+    syscall_exit_cont
362         lwz     r11,_CCR(r1)                    /* Load CR */
363         neg     r3,r3
364         oris    r11,r11,0x1000  /* Set SO bit in CR */
365         stw     r11,_CCR(r1)
366 syscall_exit_cont:
367         lwz     r8,_MSR(r1)
368 #ifdef CONFIG_TRACE_IRQFLAGS
369         /* If we are going to return from the syscall with interrupts
370          * off, we trace that here. It shouldn't happen though but we
371          * want to catch the bugger if it does right ?
372          */
373         andi.   r10,r8,MSR_EE
374         bne+    1f
375         stw     r3,GPR3(r1)
376         bl      trace_hardirqs_off
377         lwz     r3,GPR3(r1)
378 1:
379 #endif /* CONFIG_TRACE_IRQFLAGS */
380 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
381         /* If the process has its own DBCR0 value, load it up.  The internal
382            debug mode bit tells us that dbcr0 should be loaded. */
383         lwz     r0,THREAD+THREAD_DBCR0(r2)
384         andis.  r10,r0,DBCR0_IDM@h
385         bnel-   load_dbcr0
386 #endif
387 #ifdef CONFIG_44x
388 BEGIN_MMU_FTR_SECTION
389         lis     r4,icache_44x_need_flush@ha
390         lwz     r5,icache_44x_need_flush@l(r4)
391         cmplwi  cr0,r5,0
392         bne-    2f
393 1:
394 END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_47x)
395 #endif /* CONFIG_44x */
396 BEGIN_FTR_SECTION
397         lwarx   r7,0,r1
398 END_FTR_SECTION_IFSET(CPU_FTR_NEED_PAIRED_STWCX)
399         stwcx.  r0,0,r1                 /* to clear the reservation */
400         lwz     r4,_LINK(r1)
401         lwz     r5,_CCR(r1)
402         mtlr    r4
403         mtcr    r5
404         lwz     r7,_NIP(r1)
405         FIX_SRR1(r8, r0)
406         lwz     r2,GPR2(r1)
407         lwz     r1,GPR1(r1)
408         mtspr   SPRN_SRR0,r7
409         mtspr   SPRN_SRR1,r8
410         SYNC
411         RFI
412 #ifdef CONFIG_44x
413 2:      li      r7,0
414         iccci   r0,r0
415         stw     r7,icache_44x_need_flush@l(r4)
416         b       1b
417 #endif  /* CONFIG_44x */
418
419 66:     li      r3,-ENOSYS
420         b       ret_from_syscall
421
422         .globl  ret_from_fork
423 ret_from_fork:
424         REST_NVGPRS(r1)
425         bl      schedule_tail
426         li      r3,0
427         b       ret_from_syscall
428
429         .globl  ret_from_kernel_thread
430 ret_from_kernel_thread:
431         REST_NVGPRS(r1)
432         bl      schedule_tail
433         mtlr    r14
434         mr      r3,r15
435         PPC440EP_ERR42
436         blrl
437         li      r3,0
438         b       ret_from_syscall
439
440 /* Traced system call support */
441 syscall_dotrace:
442         SAVE_NVGPRS(r1)
443         li      r0,0xc00
444         stw     r0,_TRAP(r1)
445         addi    r3,r1,STACK_FRAME_OVERHEAD
446         bl      do_syscall_trace_enter
447         /*
448          * Restore argument registers possibly just changed.
449          * We use the return value of do_syscall_trace_enter
450          * for call number to look up in the table (r0).
451          */
452         mr      r0,r3
453         lwz     r3,GPR3(r1)
454         lwz     r4,GPR4(r1)
455         lwz     r5,GPR5(r1)
456         lwz     r6,GPR6(r1)
457         lwz     r7,GPR7(r1)
458         lwz     r8,GPR8(r1)
459         REST_NVGPRS(r1)
460         b       syscall_dotrace_cont
461
462 syscall_exit_work:
463         andi.   r0,r9,_TIF_RESTOREALL
464         beq+    0f
465         REST_NVGPRS(r1)
466         b       2f
467 0:      cmplw   0,r3,r8
468         blt+    1f
469         andi.   r0,r9,_TIF_NOERROR
470         bne-    1f
471         lwz     r11,_CCR(r1)                    /* Load CR */
472         neg     r3,r3
473         oris    r11,r11,0x1000  /* Set SO bit in CR */
474         stw     r11,_CCR(r1)
475
476 1:      stw     r6,RESULT(r1)   /* Save result */
477         stw     r3,GPR3(r1)     /* Update return value */
478 2:      andi.   r0,r9,(_TIF_PERSYSCALL_MASK)
479         beq     4f
480
481         /* Clear per-syscall TIF flags if any are set.  */
482
483         li      r11,_TIF_PERSYSCALL_MASK
484         addi    r12,r12,TI_FLAGS
485 3:      lwarx   r8,0,r12
486         andc    r8,r8,r11
487 #ifdef CONFIG_IBM405_ERR77
488         dcbt    0,r12
489 #endif
490         stwcx.  r8,0,r12
491         bne-    3b
492         subi    r12,r12,TI_FLAGS
493         
494 4:      /* Anything which requires enabling interrupts? */
495         andi.   r0,r9,(_TIF_SYSCALL_DOTRACE|_TIF_SINGLESTEP)
496         beq     ret_from_except
497
498         /* Re-enable interrupts. There is no need to trace that with
499          * lockdep as we are supposed to have IRQs on at this point
500          */
501         ori     r10,r10,MSR_EE
502         SYNC
503         MTMSRD(r10)
504
505         /* Save NVGPRS if they're not saved already */
506         lwz     r4,_TRAP(r1)
507         andi.   r4,r4,1
508         beq     5f
509         SAVE_NVGPRS(r1)
510         li      r4,0xc00
511         stw     r4,_TRAP(r1)
512 5:
513         addi    r3,r1,STACK_FRAME_OVERHEAD
514         bl      do_syscall_trace_leave
515         b       ret_from_except_full
516
517 /*
518  * The fork/clone functions need to copy the full register set into
519  * the child process. Therefore we need to save all the nonvolatile
520  * registers (r13 - r31) before calling the C code.
521  */
522         .globl  ppc_fork
523 ppc_fork:
524         SAVE_NVGPRS(r1)
525         lwz     r0,_TRAP(r1)
526         rlwinm  r0,r0,0,0,30            /* clear LSB to indicate full */
527         stw     r0,_TRAP(r1)            /* register set saved */
528         b       sys_fork
529
530         .globl  ppc_vfork
531 ppc_vfork:
532         SAVE_NVGPRS(r1)
533         lwz     r0,_TRAP(r1)
534         rlwinm  r0,r0,0,0,30            /* clear LSB to indicate full */
535         stw     r0,_TRAP(r1)            /* register set saved */
536         b       sys_vfork
537
538         .globl  ppc_clone
539 ppc_clone:
540         SAVE_NVGPRS(r1)
541         lwz     r0,_TRAP(r1)
542         rlwinm  r0,r0,0,0,30            /* clear LSB to indicate full */
543         stw     r0,_TRAP(r1)            /* register set saved */
544         b       sys_clone
545
546         .globl  ppc_swapcontext
547 ppc_swapcontext:
548         SAVE_NVGPRS(r1)
549         lwz     r0,_TRAP(r1)
550         rlwinm  r0,r0,0,0,30            /* clear LSB to indicate full */
551         stw     r0,_TRAP(r1)            /* register set saved */
552         b       sys_swapcontext
553
554 /*
555  * Top-level page fault handling.
556  * This is in assembler because if do_page_fault tells us that
557  * it is a bad kernel page fault, we want to save the non-volatile
558  * registers before calling bad_page_fault.
559  */
560         .globl  handle_page_fault
561 handle_page_fault:
562         stw     r4,_DAR(r1)
563         addi    r3,r1,STACK_FRAME_OVERHEAD
564         bl      do_page_fault
565         cmpwi   r3,0
566         beq+    ret_from_except
567         SAVE_NVGPRS(r1)
568         lwz     r0,_TRAP(r1)
569         clrrwi  r0,r0,1
570         stw     r0,_TRAP(r1)
571         mr      r5,r3
572         addi    r3,r1,STACK_FRAME_OVERHEAD
573         lwz     r4,_DAR(r1)
574         bl      bad_page_fault
575         b       ret_from_except_full
576
577 /*
578  * This routine switches between two different tasks.  The process
579  * state of one is saved on its kernel stack.  Then the state
580  * of the other is restored from its kernel stack.  The memory
581  * management hardware is updated to the second process's state.
582  * Finally, we can return to the second process.
583  * On entry, r3 points to the THREAD for the current task, r4
584  * points to the THREAD for the new task.
585  *
586  * This routine is always called with interrupts disabled.
587  *
588  * Note: there are two ways to get to the "going out" portion
589  * of this code; either by coming in via the entry (_switch)
590  * or via "fork" which must set up an environment equivalent
591  * to the "_switch" path.  If you change this , you'll have to
592  * change the fork code also.
593  *
594  * The code which creates the new task context is in 'copy_thread'
595  * in arch/ppc/kernel/process.c
596  */
597 _GLOBAL(_switch)
598         stwu    r1,-INT_FRAME_SIZE(r1)
599         mflr    r0
600         stw     r0,INT_FRAME_SIZE+4(r1)
601         /* r3-r12 are caller saved -- Cort */
602         SAVE_NVGPRS(r1)
603         stw     r0,_NIP(r1)     /* Return to switch caller */
604         mfmsr   r11
605         li      r0,MSR_FP       /* Disable floating-point */
606 #ifdef CONFIG_ALTIVEC
607 BEGIN_FTR_SECTION
608         oris    r0,r0,MSR_VEC@h /* Disable altivec */
609         mfspr   r12,SPRN_VRSAVE /* save vrsave register value */
610         stw     r12,THREAD+THREAD_VRSAVE(r2)
611 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
612 #endif /* CONFIG_ALTIVEC */
613 #ifdef CONFIG_SPE
614 BEGIN_FTR_SECTION
615         oris    r0,r0,MSR_SPE@h  /* Disable SPE */
616         mfspr   r12,SPRN_SPEFSCR /* save spefscr register value */
617         stw     r12,THREAD+THREAD_SPEFSCR(r2)
618 END_FTR_SECTION_IFSET(CPU_FTR_SPE)
619 #endif /* CONFIG_SPE */
620         and.    r0,r0,r11       /* FP or altivec or SPE enabled? */
621         beq+    1f
622         andc    r11,r11,r0
623         MTMSRD(r11)
624         isync
625 1:      stw     r11,_MSR(r1)
626         mfcr    r10
627         stw     r10,_CCR(r1)
628         stw     r1,KSP(r3)      /* Set old stack pointer */
629
630 #ifdef CONFIG_SMP
631         /* We need a sync somewhere here to make sure that if the
632          * previous task gets rescheduled on another CPU, it sees all
633          * stores it has performed on this one.
634          */
635         sync
636 #endif /* CONFIG_SMP */
637
638         tophys(r0,r4)
639         CLR_TOP32(r0)
640         mtspr   SPRN_SPRG_THREAD,r0     /* Update current THREAD phys addr */
641         lwz     r1,KSP(r4)      /* Load new stack pointer */
642
643         /* save the old current 'last' for return value */
644         mr      r3,r2
645         addi    r2,r4,-THREAD   /* Update current */
646
647 #ifdef CONFIG_ALTIVEC
648 BEGIN_FTR_SECTION
649         lwz     r0,THREAD+THREAD_VRSAVE(r2)
650         mtspr   SPRN_VRSAVE,r0          /* if G4, restore VRSAVE reg */
651 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
652 #endif /* CONFIG_ALTIVEC */
653 #ifdef CONFIG_SPE
654 BEGIN_FTR_SECTION
655         lwz     r0,THREAD+THREAD_SPEFSCR(r2)
656         mtspr   SPRN_SPEFSCR,r0         /* restore SPEFSCR reg */
657 END_FTR_SECTION_IFSET(CPU_FTR_SPE)
658 #endif /* CONFIG_SPE */
659
660         lwz     r0,_CCR(r1)
661         mtcrf   0xFF,r0
662         /* r3-r12 are destroyed -- Cort */
663         REST_NVGPRS(r1)
664
665         lwz     r4,_NIP(r1)     /* Return to _switch caller in new task */
666         mtlr    r4
667         addi    r1,r1,INT_FRAME_SIZE
668         blr
669
670         .globl  fast_exception_return
671 fast_exception_return:
672 #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
673         andi.   r10,r9,MSR_RI           /* check for recoverable interrupt */
674         beq     1f                      /* if not, we've got problems */
675 #endif
676
677 2:      REST_4GPRS(3, r11)
678         lwz     r10,_CCR(r11)
679         REST_GPR(1, r11)
680         mtcr    r10
681         lwz     r10,_LINK(r11)
682         mtlr    r10
683         REST_GPR(10, r11)
684         mtspr   SPRN_SRR1,r9
685         mtspr   SPRN_SRR0,r12
686         REST_GPR(9, r11)
687         REST_GPR(12, r11)
688         lwz     r11,GPR11(r11)
689         SYNC
690         RFI
691
692 #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
693 /* check if the exception happened in a restartable section */
694 1:      lis     r3,exc_exit_restart_end@ha
695         addi    r3,r3,exc_exit_restart_end@l
696         cmplw   r12,r3
697         bge     3f
698         lis     r4,exc_exit_restart@ha
699         addi    r4,r4,exc_exit_restart@l
700         cmplw   r12,r4
701         blt     3f
702         lis     r3,fee_restarts@ha
703         tophys(r3,r3)
704         lwz     r5,fee_restarts@l(r3)
705         addi    r5,r5,1
706         stw     r5,fee_restarts@l(r3)
707         mr      r12,r4          /* restart at exc_exit_restart */
708         b       2b
709
710         .section .bss
711         .align  2
712 fee_restarts:
713         .space  4
714         .previous
715
716 /* aargh, a nonrecoverable interrupt, panic */
717 /* aargh, we don't know which trap this is */
718 /* but the 601 doesn't implement the RI bit, so assume it's OK */
719 3:
720 BEGIN_FTR_SECTION
721         b       2b
722 END_FTR_SECTION_IFSET(CPU_FTR_601)
723         li      r10,-1
724         stw     r10,_TRAP(r11)
725         addi    r3,r1,STACK_FRAME_OVERHEAD
726         lis     r10,MSR_KERNEL@h
727         ori     r10,r10,MSR_KERNEL@l
728         bl      transfer_to_handler_full
729         .long   nonrecoverable_exception
730         .long   ret_from_except
731 #endif
732
733         .globl  ret_from_except_full
734 ret_from_except_full:
735         REST_NVGPRS(r1)
736         /* fall through */
737
738         .globl  ret_from_except
739 ret_from_except:
740         /* Hard-disable interrupts so that current_thread_info()->flags
741          * can't change between when we test it and when we return
742          * from the interrupt. */
743         /* Note: We don't bother telling lockdep about it */
744         LOAD_MSR_KERNEL(r10,MSR_KERNEL)
745         SYNC                    /* Some chip revs have problems here... */
746         MTMSRD(r10)             /* disable interrupts */
747
748         lwz     r3,_MSR(r1)     /* Returning to user mode? */
749         andi.   r0,r3,MSR_PR
750         beq     resume_kernel
751
752 user_exc_return:                /* r10 contains MSR_KERNEL here */
753         /* Check current_thread_info()->flags */
754         CURRENT_THREAD_INFO(r9, r1)
755         lwz     r9,TI_FLAGS(r9)
756         andi.   r0,r9,_TIF_USER_WORK_MASK
757         bne     do_work
758
759 restore_user:
760 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
761         /* Check whether this process has its own DBCR0 value.  The internal
762            debug mode bit tells us that dbcr0 should be loaded. */
763         lwz     r0,THREAD+THREAD_DBCR0(r2)
764         andis.  r10,r0,DBCR0_IDM@h
765         bnel-   load_dbcr0
766 #endif
767
768         b       restore
769
770 /* N.B. the only way to get here is from the beq following ret_from_except. */
771 resume_kernel:
772         /* check current_thread_info, _TIF_EMULATE_STACK_STORE */
773         CURRENT_THREAD_INFO(r9, r1)
774         lwz     r8,TI_FLAGS(r9)
775         andis.  r0,r8,_TIF_EMULATE_STACK_STORE@h
776         beq+    1f
777
778         addi    r8,r1,INT_FRAME_SIZE    /* Get the kprobed function entry */
779
780         lwz     r3,GPR1(r1)
781         subi    r3,r3,INT_FRAME_SIZE    /* dst: Allocate a trampoline exception frame */
782         mr      r4,r1                   /* src:  current exception frame */
783         mr      r1,r3                   /* Reroute the trampoline frame to r1 */
784
785         /* Copy from the original to the trampoline. */
786         li      r5,INT_FRAME_SIZE/4     /* size: INT_FRAME_SIZE */
787         li      r6,0                    /* start offset: 0 */
788         mtctr   r5
789 2:      lwzx    r0,r6,r4
790         stwx    r0,r6,r3
791         addi    r6,r6,4
792         bdnz    2b
793
794         /* Do real store operation to complete stwu */
795         lwz     r5,GPR1(r1)
796         stw     r8,0(r5)
797
798         /* Clear _TIF_EMULATE_STACK_STORE flag */
799         lis     r11,_TIF_EMULATE_STACK_STORE@h
800         addi    r5,r9,TI_FLAGS
801 0:      lwarx   r8,0,r5
802         andc    r8,r8,r11
803 #ifdef CONFIG_IBM405_ERR77
804         dcbt    0,r5
805 #endif
806         stwcx.  r8,0,r5
807         bne-    0b
808 1:
809
810 #ifdef CONFIG_PREEMPT
811         /* check current_thread_info->preempt_count */
812         lwz     r0,TI_PREEMPT(r9)
813         cmpwi   0,r0,0          /* if non-zero, just restore regs and return */
814         bne     restore
815         andi.   r8,r8,_TIF_NEED_RESCHED
816         bne+    1f
817         lwz     r0,TI_PREEMPT_LAZY(r9)
818         cmpwi   0,r0,0          /* if non-zero, just restore regs and return */
819         bne     restore
820         lwz     r0,TI_FLAGS(r9)
821         andi.   r0,r0,_TIF_NEED_RESCHED_LAZY
822         beq+    restore
823 1:
824         lwz     r3,_MSR(r1)
825         andi.   r0,r3,MSR_EE    /* interrupts off? */
826         beq     restore         /* don't schedule if so */
827 #ifdef CONFIG_TRACE_IRQFLAGS
828         /* Lockdep thinks irqs are enabled, we need to call
829          * preempt_schedule_irq with IRQs off, so we inform lockdep
830          * now that we -did- turn them off already
831          */
832         bl      trace_hardirqs_off
833 #endif
834 2:      bl      preempt_schedule_irq
835         CURRENT_THREAD_INFO(r9, r1)
836         lwz     r3,TI_FLAGS(r9)
837         andi.   r0,r3,_TIF_NEED_RESCHED_MASK
838         bne-    2b
839 #ifdef CONFIG_TRACE_IRQFLAGS
840         /* And now, to properly rebalance the above, we tell lockdep they
841          * are being turned back on, which will happen when we return
842          */
843         bl      trace_hardirqs_on
844 #endif
845 #endif /* CONFIG_PREEMPT */
846
847         /* interrupts are hard-disabled at this point */
848 restore:
849 #ifdef CONFIG_44x
850 BEGIN_MMU_FTR_SECTION
851         b       1f
852 END_MMU_FTR_SECTION_IFSET(MMU_FTR_TYPE_47x)
853         lis     r4,icache_44x_need_flush@ha
854         lwz     r5,icache_44x_need_flush@l(r4)
855         cmplwi  cr0,r5,0
856         beq+    1f
857         li      r6,0
858         iccci   r0,r0
859         stw     r6,icache_44x_need_flush@l(r4)
860 1:
861 #endif  /* CONFIG_44x */
862
863         lwz     r9,_MSR(r1)
864 #ifdef CONFIG_TRACE_IRQFLAGS
865         /* Lockdep doesn't know about the fact that IRQs are temporarily turned
866          * off in this assembly code while peeking at TI_FLAGS() and such. However
867          * we need to inform it if the exception turned interrupts off, and we
868          * are about to trun them back on.
869          *
870          * The problem here sadly is that we don't know whether the exceptions was
871          * one that turned interrupts off or not. So we always tell lockdep about
872          * turning them on here when we go back to wherever we came from with EE
873          * on, even if that may meen some redudant calls being tracked. Maybe later
874          * we could encode what the exception did somewhere or test the exception
875          * type in the pt_regs but that sounds overkill
876          */
877         andi.   r10,r9,MSR_EE
878         beq     1f
879         /*
880          * Since the ftrace irqsoff latency trace checks CALLER_ADDR1,
881          * which is the stack frame here, we need to force a stack frame
882          * in case we came from user space.
883          */
884         stwu    r1,-32(r1)
885         mflr    r0
886         stw     r0,4(r1)
887         stwu    r1,-32(r1)
888         bl      trace_hardirqs_on
889         lwz     r1,0(r1)
890         lwz     r1,0(r1)
891         lwz     r9,_MSR(r1)
892 1:
893 #endif /* CONFIG_TRACE_IRQFLAGS */
894
895         lwz     r0,GPR0(r1)
896         lwz     r2,GPR2(r1)
897         REST_4GPRS(3, r1)
898         REST_2GPRS(7, r1)
899
900         lwz     r10,_XER(r1)
901         lwz     r11,_CTR(r1)
902         mtspr   SPRN_XER,r10
903         mtctr   r11
904
905         PPC405_ERR77(0,r1)
906 BEGIN_FTR_SECTION
907         lwarx   r11,0,r1
908 END_FTR_SECTION_IFSET(CPU_FTR_NEED_PAIRED_STWCX)
909         stwcx.  r0,0,r1                 /* to clear the reservation */
910
911 #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
912         andi.   r10,r9,MSR_RI           /* check if this exception occurred */
913         beql    nonrecoverable          /* at a bad place (MSR:RI = 0) */
914
915         lwz     r10,_CCR(r1)
916         lwz     r11,_LINK(r1)
917         mtcrf   0xFF,r10
918         mtlr    r11
919
920         /*
921          * Once we put values in SRR0 and SRR1, we are in a state
922          * where exceptions are not recoverable, since taking an
923          * exception will trash SRR0 and SRR1.  Therefore we clear the
924          * MSR:RI bit to indicate this.  If we do take an exception,
925          * we can't return to the point of the exception but we
926          * can restart the exception exit path at the label
927          * exc_exit_restart below.  -- paulus
928          */
929         LOAD_MSR_KERNEL(r10,MSR_KERNEL & ~MSR_RI)
930         SYNC
931         MTMSRD(r10)             /* clear the RI bit */
932         .globl exc_exit_restart
933 exc_exit_restart:
934         lwz     r12,_NIP(r1)
935         FIX_SRR1(r9,r10)
936         mtspr   SPRN_SRR0,r12
937         mtspr   SPRN_SRR1,r9
938         REST_4GPRS(9, r1)
939         lwz     r1,GPR1(r1)
940         .globl exc_exit_restart_end
941 exc_exit_restart_end:
942         SYNC
943         RFI
944
945 #else /* !(CONFIG_4xx || CONFIG_BOOKE) */
946         /*
947          * This is a bit different on 4xx/Book-E because it doesn't have
948          * the RI bit in the MSR.
949          * The TLB miss handler checks if we have interrupted
950          * the exception exit path and restarts it if so
951          * (well maybe one day it will... :).
952          */
953         lwz     r11,_LINK(r1)
954         mtlr    r11
955         lwz     r10,_CCR(r1)
956         mtcrf   0xff,r10
957         REST_2GPRS(9, r1)
958         .globl exc_exit_restart
959 exc_exit_restart:
960         lwz     r11,_NIP(r1)
961         lwz     r12,_MSR(r1)
962 exc_exit_start:
963         mtspr   SPRN_SRR0,r11
964         mtspr   SPRN_SRR1,r12
965         REST_2GPRS(11, r1)
966         lwz     r1,GPR1(r1)
967         .globl exc_exit_restart_end
968 exc_exit_restart_end:
969         PPC405_ERR77_SYNC
970         rfi
971         b       .                       /* prevent prefetch past rfi */
972
973 /*
974  * Returning from a critical interrupt in user mode doesn't need
975  * to be any different from a normal exception.  For a critical
976  * interrupt in the kernel, we just return (without checking for
977  * preemption) since the interrupt may have happened at some crucial
978  * place (e.g. inside the TLB miss handler), and because we will be
979  * running with r1 pointing into critical_stack, not the current
980  * process's kernel stack (and therefore current_thread_info() will
981  * give the wrong answer).
982  * We have to restore various SPRs that may have been in use at the
983  * time of the critical interrupt.
984  *
985  */
986 #ifdef CONFIG_40x
987 #define PPC_40x_TURN_OFF_MSR_DR                                             \
988         /* avoid any possible TLB misses here by turning off MSR.DR, we     \
989          * assume the instructions here are mapped by a pinned TLB entry */ \
990         li      r10,MSR_IR;                                                 \
991         mtmsr   r10;                                                        \
992         isync;                                                              \
993         tophys(r1, r1);
994 #else
995 #define PPC_40x_TURN_OFF_MSR_DR
996 #endif
997
998 #define RET_FROM_EXC_LEVEL(exc_lvl_srr0, exc_lvl_srr1, exc_lvl_rfi)     \
999         REST_NVGPRS(r1);                                                \
1000         lwz     r3,_MSR(r1);                                            \
1001         andi.   r3,r3,MSR_PR;                                           \
1002         LOAD_MSR_KERNEL(r10,MSR_KERNEL);                                \
1003         bne     user_exc_return;                                        \
1004         lwz     r0,GPR0(r1);                                            \
1005         lwz     r2,GPR2(r1);                                            \
1006         REST_4GPRS(3, r1);                                              \
1007         REST_2GPRS(7, r1);                                              \
1008         lwz     r10,_XER(r1);                                           \
1009         lwz     r11,_CTR(r1);                                           \
1010         mtspr   SPRN_XER,r10;                                           \
1011         mtctr   r11;                                                    \
1012         PPC405_ERR77(0,r1);                                             \
1013         stwcx.  r0,0,r1;                /* to clear the reservation */  \
1014         lwz     r11,_LINK(r1);                                          \
1015         mtlr    r11;                                                    \
1016         lwz     r10,_CCR(r1);                                           \
1017         mtcrf   0xff,r10;                                               \
1018         PPC_40x_TURN_OFF_MSR_DR;                                        \
1019         lwz     r9,_DEAR(r1);                                           \
1020         lwz     r10,_ESR(r1);                                           \
1021         mtspr   SPRN_DEAR,r9;                                           \
1022         mtspr   SPRN_ESR,r10;                                           \
1023         lwz     r11,_NIP(r1);                                           \
1024         lwz     r12,_MSR(r1);                                           \
1025         mtspr   exc_lvl_srr0,r11;                                       \
1026         mtspr   exc_lvl_srr1,r12;                                       \
1027         lwz     r9,GPR9(r1);                                            \
1028         lwz     r12,GPR12(r1);                                          \
1029         lwz     r10,GPR10(r1);                                          \
1030         lwz     r11,GPR11(r1);                                          \
1031         lwz     r1,GPR1(r1);                                            \
1032         PPC405_ERR77_SYNC;                                              \
1033         exc_lvl_rfi;                                                    \
1034         b       .;              /* prevent prefetch past exc_lvl_rfi */
1035
1036 #define RESTORE_xSRR(exc_lvl_srr0, exc_lvl_srr1)                        \
1037         lwz     r9,_##exc_lvl_srr0(r1);                                 \
1038         lwz     r10,_##exc_lvl_srr1(r1);                                \
1039         mtspr   SPRN_##exc_lvl_srr0,r9;                                 \
1040         mtspr   SPRN_##exc_lvl_srr1,r10;
1041
1042 #if defined(CONFIG_PPC_BOOK3E_MMU)
1043 #ifdef CONFIG_PHYS_64BIT
1044 #define RESTORE_MAS7                                                    \
1045         lwz     r11,MAS7(r1);                                           \
1046         mtspr   SPRN_MAS7,r11;
1047 #else
1048 #define RESTORE_MAS7
1049 #endif /* CONFIG_PHYS_64BIT */
1050 #define RESTORE_MMU_REGS                                                \
1051         lwz     r9,MAS0(r1);                                            \
1052         lwz     r10,MAS1(r1);                                           \
1053         lwz     r11,MAS2(r1);                                           \
1054         mtspr   SPRN_MAS0,r9;                                           \
1055         lwz     r9,MAS3(r1);                                            \
1056         mtspr   SPRN_MAS1,r10;                                          \
1057         lwz     r10,MAS6(r1);                                           \
1058         mtspr   SPRN_MAS2,r11;                                          \
1059         mtspr   SPRN_MAS3,r9;                                           \
1060         mtspr   SPRN_MAS6,r10;                                          \
1061         RESTORE_MAS7;
1062 #elif defined(CONFIG_44x)
1063 #define RESTORE_MMU_REGS                                                \
1064         lwz     r9,MMUCR(r1);                                           \
1065         mtspr   SPRN_MMUCR,r9;
1066 #else
1067 #define RESTORE_MMU_REGS
1068 #endif
1069
1070 #ifdef CONFIG_40x
1071         .globl  ret_from_crit_exc
1072 ret_from_crit_exc:
1073         mfspr   r9,SPRN_SPRG_THREAD
1074         lis     r10,saved_ksp_limit@ha;
1075         lwz     r10,saved_ksp_limit@l(r10);
1076         tovirt(r9,r9);
1077         stw     r10,KSP_LIMIT(r9)
1078         lis     r9,crit_srr0@ha;
1079         lwz     r9,crit_srr0@l(r9);
1080         lis     r10,crit_srr1@ha;
1081         lwz     r10,crit_srr1@l(r10);
1082         mtspr   SPRN_SRR0,r9;
1083         mtspr   SPRN_SRR1,r10;
1084         RET_FROM_EXC_LEVEL(SPRN_CSRR0, SPRN_CSRR1, PPC_RFCI)
1085 #endif /* CONFIG_40x */
1086
1087 #ifdef CONFIG_BOOKE
1088         .globl  ret_from_crit_exc
1089 ret_from_crit_exc:
1090         mfspr   r9,SPRN_SPRG_THREAD
1091         lwz     r10,SAVED_KSP_LIMIT(r1)
1092         stw     r10,KSP_LIMIT(r9)
1093         RESTORE_xSRR(SRR0,SRR1);
1094         RESTORE_MMU_REGS;
1095         RET_FROM_EXC_LEVEL(SPRN_CSRR0, SPRN_CSRR1, PPC_RFCI)
1096
1097         .globl  ret_from_debug_exc
1098 ret_from_debug_exc:
1099         mfspr   r9,SPRN_SPRG_THREAD
1100         lwz     r10,SAVED_KSP_LIMIT(r1)
1101         stw     r10,KSP_LIMIT(r9)
1102         lwz     r9,THREAD_INFO-THREAD(r9)
1103         CURRENT_THREAD_INFO(r10, r1)
1104         lwz     r10,TI_PREEMPT(r10)
1105         stw     r10,TI_PREEMPT(r9)
1106         RESTORE_xSRR(SRR0,SRR1);
1107         RESTORE_xSRR(CSRR0,CSRR1);
1108         RESTORE_MMU_REGS;
1109         RET_FROM_EXC_LEVEL(SPRN_DSRR0, SPRN_DSRR1, PPC_RFDI)
1110
1111         .globl  ret_from_mcheck_exc
1112 ret_from_mcheck_exc:
1113         mfspr   r9,SPRN_SPRG_THREAD
1114         lwz     r10,SAVED_KSP_LIMIT(r1)
1115         stw     r10,KSP_LIMIT(r9)
1116         RESTORE_xSRR(SRR0,SRR1);
1117         RESTORE_xSRR(CSRR0,CSRR1);
1118         RESTORE_xSRR(DSRR0,DSRR1);
1119         RESTORE_MMU_REGS;
1120         RET_FROM_EXC_LEVEL(SPRN_MCSRR0, SPRN_MCSRR1, PPC_RFMCI)
1121 #endif /* CONFIG_BOOKE */
1122
1123 /*
1124  * Load the DBCR0 value for a task that is being ptraced,
1125  * having first saved away the global DBCR0.  Note that r0
1126  * has the dbcr0 value to set upon entry to this.
1127  */
1128 load_dbcr0:
1129         mfmsr   r10             /* first disable debug exceptions */
1130         rlwinm  r10,r10,0,~MSR_DE
1131         mtmsr   r10
1132         isync
1133         mfspr   r10,SPRN_DBCR0
1134         lis     r11,global_dbcr0@ha
1135         addi    r11,r11,global_dbcr0@l
1136 #ifdef CONFIG_SMP
1137         CURRENT_THREAD_INFO(r9, r1)
1138         lwz     r9,TI_CPU(r9)
1139         slwi    r9,r9,3
1140         add     r11,r11,r9
1141 #endif
1142         stw     r10,0(r11)
1143         mtspr   SPRN_DBCR0,r0
1144         lwz     r10,4(r11)
1145         addi    r10,r10,1
1146         stw     r10,4(r11)
1147         li      r11,-1
1148         mtspr   SPRN_DBSR,r11   /* clear all pending debug events */
1149         blr
1150
1151         .section .bss
1152         .align  4
1153 global_dbcr0:
1154         .space  8*NR_CPUS
1155         .previous
1156 #endif /* !(CONFIG_4xx || CONFIG_BOOKE) */
1157
1158 do_work:                        /* r10 contains MSR_KERNEL here */
1159         andi.   r0,r9,_TIF_NEED_RESCHED_MASK
1160         beq     do_user_signal
1161
1162 do_resched:                     /* r10 contains MSR_KERNEL here */
1163         /* Note: We don't need to inform lockdep that we are enabling
1164          * interrupts here. As far as it knows, they are already enabled
1165          */
1166         ori     r10,r10,MSR_EE
1167         SYNC
1168         MTMSRD(r10)             /* hard-enable interrupts */
1169         bl      schedule
1170 recheck:
1171         /* Note: And we don't tell it we are disabling them again
1172          * neither. Those disable/enable cycles used to peek at
1173          * TI_FLAGS aren't advertised.
1174          */
1175         LOAD_MSR_KERNEL(r10,MSR_KERNEL)
1176         SYNC
1177         MTMSRD(r10)             /* disable interrupts */
1178         CURRENT_THREAD_INFO(r9, r1)
1179         lwz     r9,TI_FLAGS(r9)
1180         andi.   r0,r9,_TIF_NEED_RESCHED_MASK
1181         bne-    do_resched
1182         andi.   r0,r9,_TIF_USER_WORK_MASK
1183         beq     restore_user
1184 do_user_signal:                 /* r10 contains MSR_KERNEL here */
1185         ori     r10,r10,MSR_EE
1186         SYNC
1187         MTMSRD(r10)             /* hard-enable interrupts */
1188         /* save r13-r31 in the exception frame, if not already done */
1189         lwz     r3,_TRAP(r1)
1190         andi.   r0,r3,1
1191         beq     2f
1192         SAVE_NVGPRS(r1)
1193         rlwinm  r3,r3,0,0,30
1194         stw     r3,_TRAP(r1)
1195 2:      addi    r3,r1,STACK_FRAME_OVERHEAD
1196         mr      r4,r9
1197         bl      do_notify_resume
1198         REST_NVGPRS(r1)
1199         b       recheck
1200
1201 /*
1202  * We come here when we are at the end of handling an exception
1203  * that occurred at a place where taking an exception will lose
1204  * state information, such as the contents of SRR0 and SRR1.
1205  */
1206 nonrecoverable:
1207         lis     r10,exc_exit_restart_end@ha
1208         addi    r10,r10,exc_exit_restart_end@l
1209         cmplw   r12,r10
1210         bge     3f
1211         lis     r11,exc_exit_restart@ha
1212         addi    r11,r11,exc_exit_restart@l
1213         cmplw   r12,r11
1214         blt     3f
1215         lis     r10,ee_restarts@ha
1216         lwz     r12,ee_restarts@l(r10)
1217         addi    r12,r12,1
1218         stw     r12,ee_restarts@l(r10)
1219         mr      r12,r11         /* restart at exc_exit_restart */
1220         blr
1221 3:      /* OK, we can't recover, kill this process */
1222         /* but the 601 doesn't implement the RI bit, so assume it's OK */
1223 BEGIN_FTR_SECTION
1224         blr
1225 END_FTR_SECTION_IFSET(CPU_FTR_601)
1226         lwz     r3,_TRAP(r1)
1227         andi.   r0,r3,1
1228         beq     4f
1229         SAVE_NVGPRS(r1)
1230         rlwinm  r3,r3,0,0,30
1231         stw     r3,_TRAP(r1)
1232 4:      addi    r3,r1,STACK_FRAME_OVERHEAD
1233         bl      nonrecoverable_exception
1234         /* shouldn't return */
1235         b       4b
1236
1237         .section .bss
1238         .align  2
1239 ee_restarts:
1240         .space  4
1241         .previous
1242
1243 /*
1244  * PROM code for specific machines follows.  Put it
1245  * here so it's easy to add arch-specific sections later.
1246  * -- Cort
1247  */
1248 #ifdef CONFIG_PPC_RTAS
1249 /*
1250  * On CHRP, the Run-Time Abstraction Services (RTAS) have to be
1251  * called with the MMU off.
1252  */
1253 _GLOBAL(enter_rtas)
1254         stwu    r1,-INT_FRAME_SIZE(r1)
1255         mflr    r0
1256         stw     r0,INT_FRAME_SIZE+4(r1)
1257         LOAD_REG_ADDR(r4, rtas)
1258         lis     r6,1f@ha        /* physical return address for rtas */
1259         addi    r6,r6,1f@l
1260         tophys(r6,r6)
1261         tophys(r7,r1)
1262         lwz     r8,RTASENTRY(r4)
1263         lwz     r4,RTASBASE(r4)
1264         mfmsr   r9
1265         stw     r9,8(r1)
1266         LOAD_MSR_KERNEL(r0,MSR_KERNEL)
1267         SYNC                    /* disable interrupts so SRR0/1 */
1268         MTMSRD(r0)              /* don't get trashed */
1269         li      r9,MSR_KERNEL & ~(MSR_IR|MSR_DR)
1270         mtlr    r6
1271         mtspr   SPRN_SPRG_RTAS,r7
1272         mtspr   SPRN_SRR0,r8
1273         mtspr   SPRN_SRR1,r9
1274         RFI
1275 1:      tophys(r9,r1)
1276         lwz     r8,INT_FRAME_SIZE+4(r9) /* get return address */
1277         lwz     r9,8(r9)        /* original msr value */
1278         FIX_SRR1(r9,r0)
1279         addi    r1,r1,INT_FRAME_SIZE
1280         li      r0,0
1281         mtspr   SPRN_SPRG_RTAS,r0
1282         mtspr   SPRN_SRR0,r8
1283         mtspr   SPRN_SRR1,r9
1284         RFI                     /* return to caller */
1285
1286         .globl  machine_check_in_rtas
1287 machine_check_in_rtas:
1288         twi     31,0,0
1289         /* XXX load up BATs and panic */
1290
1291 #endif /* CONFIG_PPC_RTAS */
1292
1293 #ifdef CONFIG_FUNCTION_TRACER
1294 #ifdef CONFIG_DYNAMIC_FTRACE
1295 _GLOBAL(mcount)
1296 _GLOBAL(_mcount)
1297         /*
1298          * It is required that _mcount on PPC32 must preserve the
1299          * link register. But we have r0 to play with. We use r0
1300          * to push the return address back to the caller of mcount
1301          * into the ctr register, restore the link register and
1302          * then jump back using the ctr register.
1303          */
1304         mflr    r0
1305         mtctr   r0
1306         lwz     r0, 4(r1)
1307         mtlr    r0
1308         bctr
1309
1310 _GLOBAL(ftrace_caller)
1311         MCOUNT_SAVE_FRAME
1312         /* r3 ends up with link register */
1313         subi    r3, r3, MCOUNT_INSN_SIZE
1314 .globl ftrace_call
1315 ftrace_call:
1316         bl      ftrace_stub
1317         nop
1318 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1319 .globl ftrace_graph_call
1320 ftrace_graph_call:
1321         b       ftrace_graph_stub
1322 _GLOBAL(ftrace_graph_stub)
1323 #endif
1324         MCOUNT_RESTORE_FRAME
1325         /* old link register ends up in ctr reg */
1326         bctr
1327 #else
1328 _GLOBAL(mcount)
1329 _GLOBAL(_mcount)
1330
1331         MCOUNT_SAVE_FRAME
1332
1333         subi    r3, r3, MCOUNT_INSN_SIZE
1334         LOAD_REG_ADDR(r5, ftrace_trace_function)
1335         lwz     r5,0(r5)
1336
1337         mtctr   r5
1338         bctrl
1339         nop
1340
1341 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1342         b       ftrace_graph_caller
1343 #endif
1344         MCOUNT_RESTORE_FRAME
1345         bctr
1346 #endif
1347
1348 _GLOBAL(ftrace_stub)
1349         blr
1350
1351 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1352 _GLOBAL(ftrace_graph_caller)
1353         /* load r4 with local address */
1354         lwz     r4, 44(r1)
1355         subi    r4, r4, MCOUNT_INSN_SIZE
1356
1357         /* Grab the LR out of the caller stack frame */
1358         lwz     r3,52(r1)
1359
1360         bl      prepare_ftrace_return
1361         nop
1362
1363         /*
1364          * prepare_ftrace_return gives us the address we divert to.
1365          * Change the LR in the callers stack frame to this.
1366          */
1367         stw     r3,52(r1)
1368
1369         MCOUNT_RESTORE_FRAME
1370         /* old link register ends up in ctr reg */
1371         bctr
1372
1373 _GLOBAL(return_to_handler)
1374         /* need to save return values */
1375         stwu    r1, -32(r1)
1376         stw     r3, 20(r1)
1377         stw     r4, 16(r1)
1378         stw     r31, 12(r1)
1379         mr      r31, r1
1380
1381         bl      ftrace_return_to_handler
1382         nop
1383
1384         /* return value has real return address */
1385         mtlr    r3
1386
1387         lwz     r3, 20(r1)
1388         lwz     r4, 16(r1)
1389         lwz     r31,12(r1)
1390         lwz     r1, 0(r1)
1391
1392         /* Jump back to real return address */
1393         blr
1394 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1395
1396 #endif /* CONFIG_FUNCTION_TRACER */