]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/ppc64/kernel/misc.S
ppc64: use the merged syscall table
[karo-tx-linux.git] / arch / ppc64 / kernel / misc.S
1 /*
2  *  arch/ppc/kernel/misc.S
3  *
4  *  
5  *
6  * This file contains miscellaneous low-level functions.
7  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
8  *
9  * Largely rewritten by Cort Dougan (cort@cs.nmt.edu)
10  * and Paul Mackerras.
11  * Adapted for iSeries by Mike Corrigan (mikejc@us.ibm.com)
12  * PPC64 updates by Dave Engebretsen (engebret@us.ibm.com) 
13  * 
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version
17  * 2 of the License, or (at your option) any later version.
18  *
19  */
20
21 #include <linux/config.h>
22 #include <linux/sys.h>
23 #include <asm/unistd.h>
24 #include <asm/errno.h>
25 #include <asm/processor.h>
26 #include <asm/page.h>
27 #include <asm/cache.h>
28 #include <asm/ppc_asm.h>
29 #include <asm/asm-offsets.h>
30 #include <asm/cputable.h>
31 #include <asm/thread_info.h>
32
33         .text
34
35 /*
36  * Returns (address we were linked at) - (address we are running at)
37  * for use before the text and data are mapped to KERNELBASE.
38  */
39
40 _GLOBAL(reloc_offset)
41         mflr    r0
42         bl      1f
43 1:      mflr    r3
44         LOADADDR(r4,1b)
45         sub     r3,r4,r3
46         mtlr    r0
47         blr
48
49 _GLOBAL(get_msr)
50         mfmsr   r3
51         blr
52
53 _GLOBAL(get_dar)
54         mfdar   r3
55         blr
56
57 _GLOBAL(get_srr0)
58         mfsrr0  r3
59         blr
60
61 _GLOBAL(get_srr1)
62         mfsrr1  r3
63         blr
64         
65 _GLOBAL(get_sp)
66         mr      r3,r1
67         blr
68
69 #ifdef CONFIG_IRQSTACKS
70 _GLOBAL(call_do_softirq)
71         mflr    r0
72         std     r0,16(r1)
73         stdu    r1,THREAD_SIZE-112(r3)
74         mr      r1,r3
75         bl      .__do_softirq
76         ld      r1,0(r1)
77         ld      r0,16(r1)
78         mtlr    r0
79         blr
80
81 _GLOBAL(call_handle_IRQ_event)
82         mflr    r0
83         std     r0,16(r1)
84         stdu    r1,THREAD_SIZE-112(r6)
85         mr      r1,r6
86         bl      .handle_IRQ_event
87         ld      r1,0(r1)
88         ld      r0,16(r1)
89         mtlr    r0
90         blr
91 #endif /* CONFIG_IRQSTACKS */
92
93         /*
94  * To be called by C code which needs to do some operations with MMU
95  * disabled. Note that interrupts have to be disabled by the caller
96  * prior to calling us. The code called _MUST_ be in the RMO of course
97  * and part of the linear mapping as we don't attempt to translate the
98  * stack pointer at all. The function is called with the stack switched
99  * to this CPU emergency stack
100  *
101  * prototype is void *call_with_mmu_off(void *func, void *data);
102  *
103  * the called function is expected to be of the form
104  *
105  * void *called(void *data); 
106  */
107 _GLOBAL(call_with_mmu_off)
108         mflr    r0                      /* get link, save it on stackframe */
109         std     r0,16(r1)
110         mr      r1,r5                   /* save old stack ptr */
111         ld      r1,PACAEMERGSP(r13)     /* get emerg. stack */
112         subi    r1,r1,STACK_FRAME_OVERHEAD
113         std     r0,16(r1)               /* save link on emerg. stack */
114         std     r5,0(r1)                /* save old stack ptr in backchain */
115         ld      r3,0(r3)                /* get to real function ptr (assume same TOC) */
116         bl      2f                      /* we need LR to return, continue at label 2 */
117
118         ld      r0,16(r1)               /* we return here from the call, get LR and */
119         ld      r1,0(r1)                /* .. old stack ptr */
120         mtspr   SPRN_SRR0,r0            /* and get back to virtual mode with these */
121         mfmsr   r4
122         ori     r4,r4,MSR_IR|MSR_DR
123         mtspr   SPRN_SRR1,r4
124         rfid
125
126 2:      mtspr   SPRN_SRR0,r3            /* coming from above, enter real mode */
127         mr      r3,r4                   /* get parameter */
128         mfmsr   r0
129         ori     r0,r0,MSR_IR|MSR_DR
130         xori    r0,r0,MSR_IR|MSR_DR
131         mtspr   SPRN_SRR1,r0
132         rfid
133
134
135         .section        ".toc","aw"
136 PPC64_CACHES:
137         .tc             ppc64_caches[TC],ppc64_caches
138         .section        ".text"
139
140 /*
141  * Write any modified data cache blocks out to memory
142  * and invalidate the corresponding instruction cache blocks.
143  *
144  * flush_icache_range(unsigned long start, unsigned long stop)
145  *
146  *   flush all bytes from start through stop-1 inclusive
147  */
148
149 _KPROBE(__flush_icache_range)
150
151 /*
152  * Flush the data cache to memory 
153  * 
154  * Different systems have different cache line sizes
155  * and in some cases i-cache and d-cache line sizes differ from
156  * each other.
157  */
158         ld      r10,PPC64_CACHES@toc(r2)
159         lwz     r7,DCACHEL1LINESIZE(r10)/* Get cache line size */
160         addi    r5,r7,-1
161         andc    r6,r3,r5                /* round low to line bdy */
162         subf    r8,r6,r4                /* compute length */
163         add     r8,r8,r5                /* ensure we get enough */
164         lwz     r9,DCACHEL1LOGLINESIZE(r10)     /* Get log-2 of cache line size */
165         srw.    r8,r8,r9                /* compute line count */
166         beqlr                           /* nothing to do? */
167         mtctr   r8
168 1:      dcbst   0,r6
169         add     r6,r6,r7
170         bdnz    1b
171         sync
172
173 /* Now invalidate the instruction cache */
174         
175         lwz     r7,ICACHEL1LINESIZE(r10)        /* Get Icache line size */
176         addi    r5,r7,-1
177         andc    r6,r3,r5                /* round low to line bdy */
178         subf    r8,r6,r4                /* compute length */
179         add     r8,r8,r5
180         lwz     r9,ICACHEL1LOGLINESIZE(r10)     /* Get log-2 of Icache line size */
181         srw.    r8,r8,r9                /* compute line count */
182         beqlr                           /* nothing to do? */
183         mtctr   r8
184 2:      icbi    0,r6
185         add     r6,r6,r7
186         bdnz    2b
187         isync
188         blr
189         .previous .text
190 /*
191  * Like above, but only do the D-cache.
192  *
193  * flush_dcache_range(unsigned long start, unsigned long stop)
194  *
195  *    flush all bytes from start to stop-1 inclusive
196  */
197 _GLOBAL(flush_dcache_range)
198
199 /*
200  * Flush the data cache to memory 
201  * 
202  * Different systems have different cache line sizes
203  */
204         ld      r10,PPC64_CACHES@toc(r2)
205         lwz     r7,DCACHEL1LINESIZE(r10)        /* Get dcache line size */
206         addi    r5,r7,-1
207         andc    r6,r3,r5                /* round low to line bdy */
208         subf    r8,r6,r4                /* compute length */
209         add     r8,r8,r5                /* ensure we get enough */
210         lwz     r9,DCACHEL1LOGLINESIZE(r10)     /* Get log-2 of dcache line size */
211         srw.    r8,r8,r9                /* compute line count */
212         beqlr                           /* nothing to do? */
213         mtctr   r8
214 0:      dcbst   0,r6
215         add     r6,r6,r7
216         bdnz    0b
217         sync
218         blr
219
220 /*
221  * Like above, but works on non-mapped physical addresses.
222  * Use only for non-LPAR setups ! It also assumes real mode
223  * is cacheable. Used for flushing out the DART before using
224  * it as uncacheable memory 
225  *
226  * flush_dcache_phys_range(unsigned long start, unsigned long stop)
227  *
228  *    flush all bytes from start to stop-1 inclusive
229  */
230 _GLOBAL(flush_dcache_phys_range)
231         ld      r10,PPC64_CACHES@toc(r2)
232         lwz     r7,DCACHEL1LINESIZE(r10)        /* Get dcache line size */
233         addi    r5,r7,-1
234         andc    r6,r3,r5                /* round low to line bdy */
235         subf    r8,r6,r4                /* compute length */
236         add     r8,r8,r5                /* ensure we get enough */
237         lwz     r9,DCACHEL1LOGLINESIZE(r10)     /* Get log-2 of dcache line size */
238         srw.    r8,r8,r9                /* compute line count */
239         beqlr                           /* nothing to do? */
240         mfmsr   r5                      /* Disable MMU Data Relocation */
241         ori     r0,r5,MSR_DR
242         xori    r0,r0,MSR_DR
243         sync
244         mtmsr   r0
245         sync
246         isync
247         mtctr   r8
248 0:      dcbst   0,r6
249         add     r6,r6,r7
250         bdnz    0b
251         sync
252         isync
253         mtmsr   r5                      /* Re-enable MMU Data Relocation */
254         sync
255         isync
256         blr
257
258 _GLOBAL(flush_inval_dcache_range)
259         ld      r10,PPC64_CACHES@toc(r2)
260         lwz     r7,DCACHEL1LINESIZE(r10)        /* Get dcache line size */
261         addi    r5,r7,-1
262         andc    r6,r3,r5                /* round low to line bdy */
263         subf    r8,r6,r4                /* compute length */
264         add     r8,r8,r5                /* ensure we get enough */
265         lwz     r9,DCACHEL1LOGLINESIZE(r10)/* Get log-2 of dcache line size */
266         srw.    r8,r8,r9                /* compute line count */
267         beqlr                           /* nothing to do? */
268         sync
269         isync
270         mtctr   r8
271 0:      dcbf    0,r6
272         add     r6,r6,r7
273         bdnz    0b
274         sync
275         isync
276         blr
277
278
279 /*
280  * Flush a particular page from the data cache to RAM.
281  * Note: this is necessary because the instruction cache does *not*
282  * snoop from the data cache.
283  *
284  *      void __flush_dcache_icache(void *page)
285  */
286 _GLOBAL(__flush_dcache_icache)
287 /*
288  * Flush the data cache to memory 
289  * 
290  * Different systems have different cache line sizes
291  */
292
293 /* Flush the dcache */
294         ld      r7,PPC64_CACHES@toc(r2)
295         clrrdi  r3,r3,PAGE_SHIFT                    /* Page align */
296         lwz     r4,DCACHEL1LINESPERPAGE(r7)     /* Get # dcache lines per page */
297         lwz     r5,DCACHEL1LINESIZE(r7)         /* Get dcache line size */
298         mr      r6,r3
299         mtctr   r4
300 0:      dcbst   0,r6
301         add     r6,r6,r5
302         bdnz    0b
303         sync
304
305 /* Now invalidate the icache */ 
306
307         lwz     r4,ICACHEL1LINESPERPAGE(r7)     /* Get # icache lines per page */
308         lwz     r5,ICACHEL1LINESIZE(r7)         /* Get icache line size */
309         mtctr   r4
310 1:      icbi    0,r3
311         add     r3,r3,r5
312         bdnz    1b
313         isync
314         blr
315         
316 /*
317  * I/O string operations
318  *
319  * insb(port, buf, len)
320  * outsb(port, buf, len)
321  * insw(port, buf, len)
322  * outsw(port, buf, len)
323  * insl(port, buf, len)
324  * outsl(port, buf, len)
325  * insw_ns(port, buf, len)
326  * outsw_ns(port, buf, len)
327  * insl_ns(port, buf, len)
328  * outsl_ns(port, buf, len)
329  *
330  * The *_ns versions don't do byte-swapping.
331  */
332 _GLOBAL(_insb)
333         cmpwi   0,r5,0
334         mtctr   r5
335         subi    r4,r4,1
336         blelr-
337 00:     lbz     r5,0(r3)
338         eieio
339         stbu    r5,1(r4)
340         bdnz    00b
341         twi     0,r5,0
342         isync
343         blr
344
345 _GLOBAL(_outsb)
346         cmpwi   0,r5,0
347         mtctr   r5
348         subi    r4,r4,1
349         blelr-
350 00:     lbzu    r5,1(r4)
351         stb     r5,0(r3)
352         bdnz    00b
353         sync
354         blr     
355
356 _GLOBAL(_insw)
357         cmpwi   0,r5,0
358         mtctr   r5
359         subi    r4,r4,2
360         blelr-
361 00:     lhbrx   r5,0,r3
362         eieio
363         sthu    r5,2(r4)
364         bdnz    00b
365         twi     0,r5,0
366         isync
367         blr
368
369 _GLOBAL(_outsw)
370         cmpwi   0,r5,0
371         mtctr   r5
372         subi    r4,r4,2
373         blelr-
374 00:     lhzu    r5,2(r4)
375         sthbrx  r5,0,r3 
376         bdnz    00b
377         sync
378         blr     
379
380 _GLOBAL(_insl)
381         cmpwi   0,r5,0
382         mtctr   r5
383         subi    r4,r4,4
384         blelr-
385 00:     lwbrx   r5,0,r3
386         eieio
387         stwu    r5,4(r4)
388         bdnz    00b
389         twi     0,r5,0
390         isync
391         blr
392
393 _GLOBAL(_outsl)
394         cmpwi   0,r5,0
395         mtctr   r5
396         subi    r4,r4,4
397         blelr-
398 00:     lwzu    r5,4(r4)
399         stwbrx  r5,0,r3
400         bdnz    00b
401         sync
402         blr     
403
404 /* _GLOBAL(ide_insw) now in drivers/ide/ide-iops.c */
405 _GLOBAL(_insw_ns)
406         cmpwi   0,r5,0
407         mtctr   r5
408         subi    r4,r4,2
409         blelr-
410 00:     lhz     r5,0(r3)
411         eieio
412         sthu    r5,2(r4)
413         bdnz    00b
414         twi     0,r5,0
415         isync
416         blr
417
418 /* _GLOBAL(ide_outsw) now in drivers/ide/ide-iops.c */
419 _GLOBAL(_outsw_ns)
420         cmpwi   0,r5,0
421         mtctr   r5
422         subi    r4,r4,2
423         blelr-
424 00:     lhzu    r5,2(r4)
425         sth     r5,0(r3)
426         bdnz    00b
427         sync
428         blr     
429
430 _GLOBAL(_insl_ns)
431         cmpwi   0,r5,0
432         mtctr   r5
433         subi    r4,r4,4
434         blelr-
435 00:     lwz     r5,0(r3)
436         eieio
437         stwu    r5,4(r4)
438         bdnz    00b
439         twi     0,r5,0
440         isync
441         blr
442
443 _GLOBAL(_outsl_ns)
444         cmpwi   0,r5,0
445         mtctr   r5
446         subi    r4,r4,4
447         blelr-
448 00:     lwzu    r5,4(r4)
449         stw     r5,0(r3)
450         bdnz    00b
451         sync
452         blr     
453
454 /*
455  * identify_cpu and calls setup_cpu
456  * In:  r3 = base of the cpu_specs array
457  *      r4 = address of cur_cpu_spec
458  *      r5 = relocation offset
459  */
460 _GLOBAL(identify_cpu)
461         mfpvr   r7
462 1:
463         lwz     r8,CPU_SPEC_PVR_MASK(r3)
464         and     r8,r8,r7
465         lwz     r9,CPU_SPEC_PVR_VALUE(r3)
466         cmplw   0,r9,r8
467         beq     1f
468         addi    r3,r3,CPU_SPEC_ENTRY_SIZE
469         b       1b
470 1:
471         add     r0,r3,r5
472         std     r0,0(r4)
473         ld      r4,CPU_SPEC_SETUP(r3)
474         sub     r4,r4,r5
475         ld      r4,0(r4)
476         sub     r4,r4,r5
477         mtctr   r4
478         /* Calling convention for cpu setup is r3=offset, r4=cur_cpu_spec */
479         mr      r4,r3
480         mr      r3,r5
481         bctr
482
483 /*
484  * do_cpu_ftr_fixups - goes through the list of CPU feature fixups
485  * and writes nop's over sections of code that don't apply for this cpu.
486  * r3 = data offset (not changed)
487  */
488 _GLOBAL(do_cpu_ftr_fixups)
489         /* Get CPU 0 features */
490         LOADADDR(r6,cur_cpu_spec)
491         sub     r6,r6,r3
492         ld      r4,0(r6)
493         sub     r4,r4,r3
494         ld      r4,CPU_SPEC_FEATURES(r4)
495         /* Get the fixup table */
496         LOADADDR(r6,__start___ftr_fixup)
497         sub     r6,r6,r3
498         LOADADDR(r7,__stop___ftr_fixup)
499         sub     r7,r7,r3
500         /* Do the fixup */
501 1:      cmpld   r6,r7
502         bgelr
503         addi    r6,r6,32
504         ld      r8,-32(r6)      /* mask */
505         and     r8,r8,r4
506         ld      r9,-24(r6)      /* value */
507         cmpld   r8,r9
508         beq     1b
509         ld      r8,-16(r6)      /* section begin */
510         ld      r9,-8(r6)       /* section end */
511         subf.   r9,r8,r9
512         beq     1b
513         /* write nops over the section of code */
514         /* todo: if large section, add a branch at the start of it */
515         srwi    r9,r9,2
516         mtctr   r9
517         sub     r8,r8,r3
518         lis     r0,0x60000000@h /* nop */
519 3:      stw     r0,0(r8)
520         andi.   r10,r4,CPU_FTR_SPLIT_ID_CACHE@l
521         beq     2f
522         dcbst   0,r8            /* suboptimal, but simpler */
523         sync
524         icbi    0,r8
525 2:      addi    r8,r8,4
526         bdnz    3b
527         sync                    /* additional sync needed on g4 */
528         isync
529         b       1b
530
531 #if defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE)
532 /*
533  * Do an IO access in real mode
534  */
535 _GLOBAL(real_readb)
536         mfmsr   r7
537         ori     r0,r7,MSR_DR
538         xori    r0,r0,MSR_DR
539         sync
540         mtmsrd  r0
541         sync
542         isync
543         mfspr   r6,SPRN_HID4
544         rldicl  r5,r6,32,0
545         ori     r5,r5,0x100
546         rldicl  r5,r5,32,0
547         sync
548         mtspr   SPRN_HID4,r5
549         isync
550         slbia
551         isync
552         lbz     r3,0(r3)
553         sync
554         mtspr   SPRN_HID4,r6
555         isync
556         slbia
557         isync
558         mtmsrd  r7
559         sync
560         isync
561         blr
562
563         /*
564  * Do an IO access in real mode
565  */
566 _GLOBAL(real_writeb)
567         mfmsr   r7
568         ori     r0,r7,MSR_DR
569         xori    r0,r0,MSR_DR
570         sync
571         mtmsrd  r0
572         sync
573         isync
574         mfspr   r6,SPRN_HID4
575         rldicl  r5,r6,32,0
576         ori     r5,r5,0x100
577         rldicl  r5,r5,32,0
578         sync
579         mtspr   SPRN_HID4,r5
580         isync
581         slbia
582         isync
583         stb     r3,0(r4)
584         sync
585         mtspr   SPRN_HID4,r6
586         isync
587         slbia
588         isync
589         mtmsrd  r7
590         sync
591         isync
592         blr
593 #endif /* defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE) */
594
595 /*
596  * Create a kernel thread
597  *   kernel_thread(fn, arg, flags)
598  */
599 _GLOBAL(kernel_thread)
600         std     r29,-24(r1)
601         std     r30,-16(r1)
602         stdu    r1,-STACK_FRAME_OVERHEAD(r1)
603         mr      r29,r3
604         mr      r30,r4
605         ori     r3,r5,CLONE_VM  /* flags */
606         oris    r3,r3,(CLONE_UNTRACED>>16)
607         li      r4,0            /* new sp (unused) */
608         li      r0,__NR_clone
609         sc
610         cmpdi   0,r3,0          /* parent or child? */
611         bne     1f              /* return if parent */
612         li      r0,0
613         stdu    r0,-STACK_FRAME_OVERHEAD(r1)
614         ld      r2,8(r29)
615         ld      r29,0(r29)
616         mtlr    r29              /* fn addr in lr */
617         mr      r3,r30          /* load arg and call fn */
618         blrl
619         li      r0,__NR_exit    /* exit after child exits */
620         li      r3,0
621         sc
622 1:      addi    r1,r1,STACK_FRAME_OVERHEAD      
623         ld      r29,-24(r1)
624         ld      r30,-16(r1)
625         blr
626
627 /*
628  * disable_kernel_fp()
629  * Disable the FPU.
630  */
631 _GLOBAL(disable_kernel_fp)
632         mfmsr   r3
633         rldicl  r0,r3,(63-MSR_FP_LG),1
634         rldicl  r3,r0,(MSR_FP_LG+1),0
635         mtmsrd  r3                      /* disable use of fpu now */
636         isync
637         blr
638
639 #ifdef CONFIG_ALTIVEC
640
641 #if 0 /* this has no callers for now */
642 /*
643  * disable_kernel_altivec()
644  * Disable the VMX.
645  */
646 _GLOBAL(disable_kernel_altivec)
647         mfmsr   r3
648         rldicl  r0,r3,(63-MSR_VEC_LG),1
649         rldicl  r3,r0,(MSR_VEC_LG+1),0
650         mtmsrd  r3                      /* disable use of VMX now */
651         isync
652         blr
653 #endif /* 0 */
654
655 /*
656  * giveup_altivec(tsk)
657  * Disable VMX for the task given as the argument,
658  * and save the vector registers in its thread_struct.
659  * Enables the VMX for use in the kernel on return.
660  */
661 _GLOBAL(giveup_altivec)
662         mfmsr   r5
663         oris    r5,r5,MSR_VEC@h
664         mtmsrd  r5                      /* enable use of VMX now */
665         isync
666         cmpdi   0,r3,0
667         beqlr-                          /* if no previous owner, done */
668         addi    r3,r3,THREAD            /* want THREAD of task */
669         ld      r5,PT_REGS(r3)
670         cmpdi   0,r5,0
671         SAVE_32VRS(0,r4,r3)
672         mfvscr  vr0
673         li      r4,THREAD_VSCR
674         stvx    vr0,r4,r3
675         beq     1f
676         ld      r4,_MSR-STACK_FRAME_OVERHEAD(r5)
677         lis     r3,MSR_VEC@h
678         andc    r4,r4,r3                /* disable FP for previous task */
679         std     r4,_MSR-STACK_FRAME_OVERHEAD(r5)
680 1:
681 #ifndef CONFIG_SMP
682         li      r5,0
683         ld      r4,last_task_used_altivec@got(r2)
684         std     r5,0(r4)
685 #endif /* CONFIG_SMP */
686         blr
687
688 #endif /* CONFIG_ALTIVEC */
689
690 _GLOBAL(__setup_cpu_power3)
691         blr
692
693 _GLOBAL(execve)
694         li      r0,__NR_execve
695         sc
696         bnslr
697         neg     r3,r3
698         blr
699
700 /* kexec_wait(phys_cpu)
701  *
702  * wait for the flag to change, indicating this kernel is going away but
703  * the slave code for the next one is at addresses 0 to 100.
704  *
705  * This is used by all slaves.
706  *
707  * Physical (hardware) cpu id should be in r3.
708  */
709 _GLOBAL(kexec_wait)
710         bl      1f
711 1:      mflr    r5
712         addi    r5,r5,kexec_flag-1b
713
714 99:     HMT_LOW
715 #ifdef CONFIG_KEXEC             /* use no memory without kexec */
716         lwz     r4,0(r5)
717         cmpwi   0,r4,0
718         bnea    0x60
719 #endif
720         b       99b
721
722 /* this can be in text because we won't change it until we are
723  * running in real anyways
724  */
725 kexec_flag:
726         .long   0
727
728
729 #ifdef CONFIG_KEXEC
730
731 /* kexec_smp_wait(void)
732  *
733  * call with interrupts off
734  * note: this is a terminal routine, it does not save lr
735  *
736  * get phys id from paca
737  * set paca id to -1 to say we got here
738  * switch to real mode
739  * join other cpus in kexec_wait(phys_id)
740  */
741 _GLOBAL(kexec_smp_wait)
742         lhz     r3,PACAHWCPUID(r13)
743         li      r4,-1
744         sth     r4,PACAHWCPUID(r13)     /* let others know we left */
745         bl      real_mode
746         b       .kexec_wait
747
748 /*
749  * switch to real mode (turn mmu off)
750  * we use the early kernel trick that the hardware ignores bits
751  * 0 and 1 (big endian) of the effective address in real mode
752  *
753  * don't overwrite r3 here, it is live for kexec_wait above.
754  */
755 real_mode:      /* assume normal blr return */
756 1:      li      r9,MSR_RI
757         li      r10,MSR_DR|MSR_IR
758         mflr    r11             /* return address to SRR0 */
759         mfmsr   r12
760         andc    r9,r12,r9
761         andc    r10,r12,r10
762
763         mtmsrd  r9,1
764         mtspr   SPRN_SRR1,r10
765         mtspr   SPRN_SRR0,r11
766         rfid
767
768
769 /*
770  * kexec_sequence(newstack, start, image, control, clear_all())
771  *
772  * does the grungy work with stack switching and real mode switches
773  * also does simple calls to other code
774  */
775
776 _GLOBAL(kexec_sequence)
777         mflr    r0
778         std     r0,16(r1)
779
780         /* switch stacks to newstack -- &kexec_stack.stack */
781         stdu    r1,THREAD_SIZE-112(r3)
782         mr      r1,r3
783
784         li      r0,0
785         std     r0,16(r1)
786
787         /* save regs for local vars on new stack.
788          * yes, we won't go back, but ...
789          */
790         std     r31,-8(r1)
791         std     r30,-16(r1)
792         std     r29,-24(r1)
793         std     r28,-32(r1)
794         std     r27,-40(r1)
795         std     r26,-48(r1)
796         std     r25,-56(r1)
797
798         stdu    r1,-112-64(r1)
799
800         /* save args into preserved regs */
801         mr      r31,r3                  /* newstack (both) */
802         mr      r30,r4                  /* start (real) */
803         mr      r29,r5                  /* image (virt) */
804         mr      r28,r6                  /* control, unused */
805         mr      r27,r7                  /* clear_all() fn desc */
806         mr      r26,r8                  /* spare */
807         lhz     r25,PACAHWCPUID(r13)    /* get our phys cpu from paca */
808
809         /* disable interrupts, we are overwriting kernel data next */
810         mfmsr   r3
811         rlwinm  r3,r3,0,17,15
812         mtmsrd  r3,1
813
814         /* copy dest pages, flush whole dest image */
815         mr      r3,r29
816         bl      .kexec_copy_flush       /* (image) */
817
818         /* turn off mmu */
819         bl      real_mode
820
821         /* clear out hardware hash page table and tlb */
822         ld      r5,0(r27)               /* deref function descriptor */
823         mtctr   r5
824         bctrl                           /* ppc_md.hash_clear_all(void); */
825
826 /*
827  *   kexec image calling is:
828  *      the first 0x100 bytes of the entry point are copied to 0
829  *
830  *      all slaves branch to slave = 0x60 (absolute)
831  *              slave(phys_cpu_id);
832  *
833  *      master goes to start = entry point
834  *              start(phys_cpu_id, start, 0);
835  *
836  *
837  *   a wrapper is needed to call existing kernels, here is an approximate
838  *   description of one method:
839  *
840  * v2: (2.6.10)
841  *   start will be near the boot_block (maybe 0x100 bytes before it?)
842  *   it will have a 0x60, which will b to boot_block, where it will wait
843  *   and 0 will store phys into struct boot-block and load r3 from there,
844  *   copy kernel 0-0x100 and tell slaves to back down to 0x60 again
845  *
846  * v1: (2.6.9)
847  *    boot block will have all cpus scanning device tree to see if they
848  *    are the boot cpu ?????
849  *    other device tree differences (prop sizes, va vs pa, etc)...
850  */
851
852         /* copy  0x100 bytes starting at start to 0 */
853         li      r3,0
854         mr      r4,r30
855         li      r5,0x100
856         li      r6,0
857         bl      .copy_and_flush /* (dest, src, copy limit, start offset) */
858 1:      /* assume normal blr return */
859
860         /* release other cpus to the new kernel secondary start at 0x60 */
861         mflr    r5
862         li      r6,1
863         stw     r6,kexec_flag-1b(5)
864         mr      r3,r25  # my phys cpu
865         mr      r4,r30  # start, aka phys mem offset
866         mtlr    4
867         li      r5,0
868         blr     /* image->start(physid, image->start, 0); */
869 #endif /* CONFIG_KEXEC */