]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/ppc64/kernel/misc.S
9cae3d5c40e680e6a4d0d5aa83d2e7ceff21029f
[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 */
870
871 /* Why isn't this a) automatic, b) written in 'C'? */   
872         .balign 8
873 _GLOBAL(sys_call_table32)
874         .llong .sys_restart_syscall     /* 0 */
875         .llong .sys_exit
876         .llong .ppc_fork
877         .llong .sys_read
878         .llong .sys_write
879         .llong .compat_sys_open         /* 5 */
880         .llong .sys_close
881         .llong .compat_sys_waitpid
882         .llong .compat_sys_creat
883         .llong .sys_link
884         .llong .sys_unlink              /* 10 */
885         .llong .compat_sys_execve
886         .llong .sys_chdir
887         .llong .compat_sys_time
888         .llong .sys_mknod
889         .llong .sys_chmod               /* 15 */
890         .llong .sys_lchown
891         .llong .sys_ni_syscall          /* old break syscall */
892         .llong .sys_ni_syscall          /* old stat syscall */
893         .llong .ppc32_lseek
894         .llong .sys_getpid              /* 20 */
895         .llong .compat_sys_mount
896         .llong .sys_oldumount
897         .llong .sys_setuid
898         .llong .sys_getuid
899         .llong .compat_sys_stime        /* 25 */
900         .llong .compat_sys_ptrace
901         .llong .sys_alarm
902         .llong .sys_ni_syscall          /* old fstat syscall */
903         .llong .compat_sys_pause
904         .llong .compat_sys_utime        /* 30 */
905         .llong .sys_ni_syscall          /* old stty syscall */
906         .llong .sys_ni_syscall          /* old gtty syscall */
907         .llong .compat_sys_access
908         .llong .compat_sys_nice
909         .llong .sys_ni_syscall          /* 35 - old ftime syscall */
910         .llong .sys_sync
911         .llong .compat_sys_kill
912         .llong .sys_rename
913         .llong .compat_sys_mkdir
914         .llong .sys_rmdir               /* 40 */
915         .llong .sys_dup
916         .llong .sys_pipe
917         .llong .compat_sys_times
918         .llong .sys_ni_syscall          /* old prof syscall */
919         .llong .sys_brk                 /* 45 */
920         .llong .sys_setgid
921         .llong .sys_getgid
922         .llong .sys_signal
923         .llong .sys_geteuid
924         .llong .sys_getegid             /* 50 */
925         .llong .sys_acct
926         .llong .sys_umount
927         .llong .sys_ni_syscall          /* old lock syscall */
928         .llong .compat_sys_ioctl
929         .llong .compat_sys_fcntl                /* 55 */
930         .llong .sys_ni_syscall          /* old mpx syscall */
931         .llong .compat_sys_setpgid
932         .llong .sys_ni_syscall          /* old ulimit syscall */
933         .llong .sys_olduname
934         .llong .compat_sys_umask        /* 60 */
935         .llong .sys_chroot
936         .llong .sys_ustat
937         .llong .sys_dup2
938         .llong .sys_getppid
939         .llong .sys_getpgrp             /* 65 */
940         .llong .sys_setsid
941         .llong .compat_sys_sigaction
942         .llong .sys_sgetmask
943         .llong .compat_sys_ssetmask
944         .llong .sys_setreuid            /* 70 */
945         .llong .sys_setregid
946         .llong .ppc32_sigsuspend
947         .llong .compat_sys_sigpending
948         .llong .compat_sys_sethostname
949         .llong .compat_sys_setrlimit    /* 75 */
950         .llong .compat_sys_old_getrlimit
951         .llong .compat_sys_getrusage
952         .llong .compat_sys_gettimeofday
953         .llong .compat_sys_settimeofday
954         .llong .compat_sys_getgroups    /* 80 */
955         .llong .compat_sys_setgroups
956         .llong .sys_ni_syscall          /* old select syscall */
957         .llong .sys_symlink
958         .llong .sys_ni_syscall          /* old lstat syscall */
959         .llong .compat_sys_readlink     /* 85 */
960         .llong .sys_uselib
961         .llong .sys_swapon
962         .llong .sys_reboot
963         .llong .old32_readdir
964         .llong .sys_mmap                /* 90 */
965         .llong .sys_munmap
966         .llong .sys_truncate
967         .llong .sys_ftruncate
968         .llong .sys_fchmod
969         .llong .sys_fchown              /* 95 */
970         .llong .compat_sys_getpriority
971         .llong .compat_sys_setpriority
972         .llong .sys_ni_syscall          /* old profil syscall */
973         .llong .compat_sys_statfs
974         .llong .compat_sys_fstatfs      /* 100 */
975         .llong .sys_ni_syscall          /* old ioperm syscall */
976         .llong .compat_sys_socketcall
977         .llong .compat_sys_syslog
978         .llong .compat_sys_setitimer
979         .llong .compat_sys_getitimer    /* 105 */
980         .llong .compat_sys_newstat
981         .llong .compat_sys_newlstat
982         .llong .compat_sys_newfstat
983         .llong .sys_uname
984         .llong .sys_ni_syscall          /* 110 old iopl syscall */
985         .llong .sys_vhangup
986         .llong .sys_ni_syscall          /* old idle syscall */
987         .llong .sys_ni_syscall          /* old vm86 syscall */
988         .llong .compat_sys_wait4
989         .llong .sys_swapoff             /* 115 */
990         .llong .compat_sys_sysinfo
991         .llong .sys32_ipc
992         .llong .sys_fsync
993         .llong .ppc32_sigreturn
994         .llong .ppc_clone               /* 120 */
995         .llong .compat_sys_setdomainname
996         .llong .ppc_newuname
997         .llong .sys_ni_syscall          /* old modify_ldt syscall */
998         .llong .compat_sys_adjtimex
999         .llong .sys_mprotect            /* 125 */
1000         .llong .compat_sys_sigprocmask
1001         .llong .sys_ni_syscall          /* old create_module syscall */
1002         .llong .sys_init_module
1003         .llong .sys_delete_module
1004         .llong .sys_ni_syscall          /* 130 old get_kernel_syms syscall */
1005         .llong .sys_quotactl
1006         .llong .compat_sys_getpgid
1007         .llong .sys_fchdir
1008         .llong .sys_bdflush
1009         .llong .compat_sys_sysfs        /* 135 */
1010         .llong .ppc64_personality
1011         .llong .sys_ni_syscall          /* for afs_syscall */
1012         .llong .sys_setfsuid
1013         .llong .sys_setfsgid
1014         .llong .sys_llseek              /* 140 */
1015         .llong .compat_sys_getdents
1016         .llong .ppc32_select
1017         .llong .sys_flock
1018         .llong .sys_msync
1019         .llong .compat_sys_readv        /* 145 */
1020         .llong .compat_sys_writev
1021         .llong .compat_sys_getsid
1022         .llong .sys_fdatasync
1023         .llong .compat_sys_sysctl
1024         .llong .sys_mlock               /* 150 */
1025         .llong .sys_munlock
1026         .llong .sys_mlockall
1027         .llong .sys_munlockall
1028         .llong .compat_sys_sched_setparam
1029         .llong .compat_sys_sched_getparam       /* 155 */
1030         .llong .compat_sys_sched_setscheduler
1031         .llong .compat_sys_sched_getscheduler
1032         .llong .sys_sched_yield
1033         .llong .compat_sys_sched_get_priority_max
1034         .llong .compat_sys_sched_get_priority_min  /* 160 */
1035         .llong .compat_sys_sched_rr_get_interval
1036         .llong .compat_sys_nanosleep
1037         .llong .sys_mremap
1038         .llong .sys_setresuid
1039         .llong .sys_getresuid           /* 165 */
1040         .llong .sys_ni_syscall          /* old query_module syscall */
1041         .llong .sys_poll
1042         .llong .compat_sys_nfsservctl
1043         .llong .sys_setresgid
1044         .llong .sys_getresgid           /* 170 */
1045         .llong .compat_sys_prctl
1046         .llong .ppc32_rt_sigreturn
1047         .llong .compat_sys_rt_sigaction
1048         .llong .compat_sys_rt_sigprocmask
1049         .llong .compat_sys_rt_sigpending     /* 175 */
1050         .llong .compat_sys_rt_sigtimedwait
1051         .llong .compat_sys_rt_sigqueueinfo
1052         .llong .ppc32_rt_sigsuspend
1053         .llong .compat_sys_pread64
1054         .llong .compat_sys_pwrite64     /* 180 */
1055         .llong .sys_chown
1056         .llong .sys_getcwd
1057         .llong .sys_capget
1058         .llong .sys_capset
1059         .llong .compat_sys_sigaltstack  /* 185 */
1060         .llong .compat_sys_sendfile
1061         .llong .sys_ni_syscall          /* reserved for streams1 */
1062         .llong .sys_ni_syscall          /* reserved for streams2 */
1063         .llong .ppc_vfork
1064         .llong .compat_sys_getrlimit            /* 190 */
1065         .llong .compat_sys_readahead
1066         .llong .compat_sys_mmap2
1067         .llong .compat_sys_truncate64
1068         .llong .compat_sys_ftruncate64
1069         .llong .sys_stat64              /* 195 */
1070         .llong .sys_lstat64
1071         .llong .sys_fstat64
1072         .llong .compat_sys_pciconfig_read
1073         .llong .compat_sys_pciconfig_write
1074         .llong .compat_sys_pciconfig_iobase     /* 200 - pciconfig_iobase */
1075         .llong .sys_ni_syscall          /* reserved for MacOnLinux */
1076         .llong .sys_getdents64
1077         .llong .sys_pivot_root
1078         .llong .compat_sys_fcntl64
1079         .llong .sys_madvise             /* 205 */
1080         .llong .sys_mincore
1081         .llong .sys_gettid
1082         .llong .sys_tkill
1083         .llong .sys_setxattr
1084         .llong .sys_lsetxattr           /* 210 */
1085         .llong .sys_fsetxattr
1086         .llong .sys_getxattr
1087         .llong .sys_lgetxattr
1088         .llong .sys_fgetxattr
1089         .llong .sys_listxattr           /* 215 */
1090         .llong .sys_llistxattr
1091         .llong .sys_flistxattr
1092         .llong .sys_removexattr
1093         .llong .sys_lremovexattr
1094         .llong .sys_fremovexattr        /* 220 */
1095         .llong .compat_sys_futex
1096         .llong .compat_sys_sched_setaffinity
1097         .llong .compat_sys_sched_getaffinity
1098         .llong .sys_ni_syscall
1099         .llong .sys_ni_syscall          /* 225 - reserved for tux */
1100         .llong .compat_sys_sendfile64
1101         .llong .compat_sys_io_setup
1102         .llong .sys_io_destroy
1103         .llong .compat_sys_io_getevents
1104         .llong .compat_sys_io_submit
1105         .llong .sys_io_cancel
1106         .llong .sys_set_tid_address
1107         .llong .ppc32_fadvise64
1108         .llong .sys_exit_group
1109         .llong .ppc32_lookup_dcookie    /* 235 */
1110         .llong .sys_epoll_create
1111         .llong .sys_epoll_ctl
1112         .llong .sys_epoll_wait
1113         .llong .sys_remap_file_pages
1114         .llong .ppc32_timer_create      /* 240 */
1115         .llong .compat_sys_timer_settime
1116         .llong .compat_sys_timer_gettime
1117         .llong .sys_timer_getoverrun
1118         .llong .sys_timer_delete
1119         .llong .compat_sys_clock_settime/* 245 */
1120         .llong .compat_sys_clock_gettime
1121         .llong .compat_sys_clock_getres
1122         .llong .compat_sys_clock_nanosleep
1123         .llong .ppc32_swapcontext
1124         .llong .compat_sys_tgkill       /* 250 */
1125         .llong .compat_sys_utimes
1126         .llong .compat_sys_statfs64
1127         .llong .compat_sys_fstatfs64
1128         .llong .ppc_fadvise64_64        /* 32bit only fadvise64_64 */
1129         .llong .ppc_rtas                /* 255 */
1130         .llong .sys_ni_syscall          /* 256 reserved for sys_debug_setcontext */
1131         .llong .sys_ni_syscall          /* 257 reserved for vserver */
1132         .llong .sys_ni_syscall          /* 258 reserved for new sys_remap_file_pages */
1133         .llong .compat_sys_mbind
1134         .llong .compat_sys_get_mempolicy        /* 260 */
1135         .llong .compat_sys_set_mempolicy
1136         .llong .compat_sys_mq_open
1137         .llong .sys_mq_unlink
1138         .llong .compat_sys_mq_timedsend
1139         .llong .compat_sys_mq_timedreceive /* 265 */
1140         .llong .compat_sys_mq_notify
1141         .llong .compat_sys_mq_getsetattr
1142         .llong .compat_sys_kexec_load
1143         .llong .compat_sys_add_key
1144         .llong .compat_sys_request_key  /* 270 */
1145         .llong .compat_sys_keyctl
1146         .llong .compat_sys_waitid
1147         .llong .compat_sys_ioprio_set
1148         .llong .compat_sys_ioprio_get
1149         .llong .sys_inotify_init        /* 275 */
1150         .llong .sys_inotify_add_watch
1151         .llong .sys_inotify_rm_watch
1152
1153         .balign 8
1154 _GLOBAL(sys_call_table)
1155         .llong .sys_restart_syscall     /* 0 */
1156         .llong .sys_exit
1157         .llong .ppc_fork
1158         .llong .sys_read
1159         .llong .sys_write
1160         .llong .sys_open                /* 5 */
1161         .llong .sys_close
1162         .llong .sys_waitpid
1163         .llong .sys_creat
1164         .llong .sys_link
1165         .llong .sys_unlink              /* 10 */
1166         .llong .sys_execve
1167         .llong .sys_chdir
1168         .llong .sys64_time
1169         .llong .sys_mknod
1170         .llong .sys_chmod               /* 15 */
1171         .llong .sys_lchown
1172         .llong .sys_ni_syscall          /* old break syscall */
1173         .llong .sys_ni_syscall          /* old stat syscall */
1174         .llong .sys_lseek
1175         .llong .sys_getpid              /* 20 */
1176         .llong .sys_mount
1177         .llong .sys_ni_syscall          /* old umount syscall */
1178         .llong .sys_setuid
1179         .llong .sys_getuid
1180         .llong .sys_stime               /* 25 */
1181         .llong .sys_ptrace
1182         .llong .sys_alarm
1183         .llong .sys_ni_syscall          /* old fstat syscall */
1184         .llong .sys_pause
1185         .llong .sys_utime               /* 30 */
1186         .llong .sys_ni_syscall          /* old stty syscall */
1187         .llong .sys_ni_syscall          /* old gtty syscall */
1188         .llong .sys_access
1189         .llong .sys_nice
1190         .llong .sys_ni_syscall          /* 35 - old ftime syscall */
1191         .llong .sys_sync
1192         .llong .sys_kill
1193         .llong .sys_rename
1194         .llong .sys_mkdir
1195         .llong .sys_rmdir               /* 40 */
1196         .llong .sys_dup
1197         .llong .sys_pipe
1198         .llong .sys_times
1199         .llong .sys_ni_syscall          /* old prof syscall */
1200         .llong .sys_brk                 /* 45 */
1201         .llong .sys_setgid
1202         .llong .sys_getgid
1203         .llong .sys_signal
1204         .llong .sys_geteuid
1205         .llong .sys_getegid             /* 50 */
1206         .llong .sys_acct
1207         .llong .sys_umount
1208         .llong .sys_ni_syscall          /* old lock syscall */
1209         .llong .sys_ioctl
1210         .llong .sys_fcntl               /* 55 */
1211         .llong .sys_ni_syscall          /* old mpx syscall */
1212         .llong .sys_setpgid
1213         .llong .sys_ni_syscall          /* old ulimit syscall */
1214         .llong .sys_ni_syscall          /* old uname syscall */
1215         .llong .sys_umask               /* 60 */
1216         .llong .sys_chroot
1217         .llong .sys_ustat
1218         .llong .sys_dup2
1219         .llong .sys_getppid
1220         .llong .sys_getpgrp             /* 65 */
1221         .llong .sys_setsid
1222         .llong .sys_ni_syscall
1223         .llong .sys_sgetmask
1224         .llong .sys_ssetmask
1225         .llong .sys_setreuid            /* 70 */
1226         .llong .sys_setregid
1227         .llong .sys_ni_syscall
1228         .llong .sys_ni_syscall
1229         .llong .sys_sethostname
1230         .llong .sys_setrlimit           /* 75 */
1231         .llong .sys_ni_syscall          /* old getrlimit syscall */
1232         .llong .sys_getrusage
1233         .llong .sys_gettimeofday
1234         .llong .sys_settimeofday
1235         .llong .sys_getgroups           /* 80 */
1236         .llong .sys_setgroups
1237         .llong .sys_ni_syscall          /* old select syscall */
1238         .llong .sys_symlink
1239         .llong .sys_ni_syscall          /* old lstat syscall */
1240         .llong .sys_readlink            /* 85 */
1241         .llong .sys_uselib
1242         .llong .sys_swapon
1243         .llong .sys_reboot
1244         .llong .sys_ni_syscall          /* old readdir syscall */
1245         .llong .sys_mmap                /* 90 */
1246         .llong .sys_munmap
1247         .llong .sys_truncate
1248         .llong .sys_ftruncate
1249         .llong .sys_fchmod
1250         .llong .sys_fchown              /* 95 */
1251         .llong .sys_getpriority
1252         .llong .sys_setpriority
1253         .llong .sys_ni_syscall          /* old profil syscall holder */
1254         .llong .sys_statfs
1255         .llong .sys_fstatfs             /* 100 */
1256         .llong .sys_ni_syscall          /* old ioperm syscall */
1257         .llong .sys_socketcall
1258         .llong .sys_syslog
1259         .llong .sys_setitimer
1260         .llong .sys_getitimer           /* 105 */
1261         .llong .sys_newstat
1262         .llong .sys_newlstat
1263         .llong .sys_newfstat
1264         .llong .sys_ni_syscall          /* old uname syscall */
1265         .llong .sys_ni_syscall          /* 110 old iopl syscall */
1266         .llong .sys_vhangup
1267         .llong .sys_ni_syscall          /* old idle syscall */
1268         .llong .sys_ni_syscall          /* old vm86 syscall */
1269         .llong .sys_wait4
1270         .llong .sys_swapoff             /* 115 */
1271         .llong .sys_sysinfo
1272         .llong .sys_ipc
1273         .llong .sys_fsync
1274         .llong .sys_ni_syscall
1275         .llong .ppc_clone               /* 120 */
1276         .llong .sys_setdomainname
1277         .llong .ppc_newuname
1278         .llong .sys_ni_syscall          /* old modify_ldt syscall */
1279         .llong .sys_adjtimex
1280         .llong .sys_mprotect            /* 125 */
1281         .llong .sys_ni_syscall
1282         .llong .sys_ni_syscall          /* old create_module syscall */
1283         .llong .sys_init_module
1284         .llong .sys_delete_module
1285         .llong .sys_ni_syscall          /* 130 old get_kernel_syms syscall */
1286         .llong .sys_quotactl
1287         .llong .sys_getpgid
1288         .llong .sys_fchdir
1289         .llong .sys_bdflush
1290         .llong .sys_sysfs               /* 135 */
1291         .llong .ppc64_personality
1292         .llong .sys_ni_syscall          /* for afs_syscall */
1293         .llong .sys_setfsuid
1294         .llong .sys_setfsgid
1295         .llong .sys_llseek              /* 140 */
1296         .llong .sys_getdents
1297         .llong .sys_select
1298         .llong .sys_flock
1299         .llong .sys_msync
1300         .llong .sys_readv               /* 145 */
1301         .llong .sys_writev
1302         .llong .sys_getsid
1303         .llong .sys_fdatasync
1304         .llong .sys_sysctl
1305         .llong .sys_mlock               /* 150 */
1306         .llong .sys_munlock
1307         .llong .sys_mlockall
1308         .llong .sys_munlockall
1309         .llong .sys_sched_setparam
1310         .llong .sys_sched_getparam      /* 155 */
1311         .llong .sys_sched_setscheduler
1312         .llong .sys_sched_getscheduler
1313         .llong .sys_sched_yield
1314         .llong .sys_sched_get_priority_max
1315         .llong .sys_sched_get_priority_min  /* 160 */
1316         .llong .sys_sched_rr_get_interval
1317         .llong .sys_nanosleep
1318         .llong .sys_mremap
1319         .llong .sys_setresuid
1320         .llong .sys_getresuid           /* 165 */
1321         .llong .sys_ni_syscall          /* old query_module syscall */
1322         .llong .sys_poll
1323         .llong .sys_nfsservctl
1324         .llong .sys_setresgid
1325         .llong .sys_getresgid           /* 170 */
1326         .llong .sys_prctl
1327         .llong .ppc64_rt_sigreturn
1328         .llong .sys_rt_sigaction
1329         .llong .sys_rt_sigprocmask      
1330         .llong .sys_rt_sigpending       /* 175 */
1331         .llong .sys_rt_sigtimedwait
1332         .llong .sys_rt_sigqueueinfo
1333         .llong .ppc64_rt_sigsuspend
1334         .llong .sys_pread64
1335         .llong .sys_pwrite64            /* 180 */
1336         .llong .sys_chown
1337         .llong .sys_getcwd
1338         .llong .sys_capget
1339         .llong .sys_capset
1340         .llong .sys_sigaltstack         /* 185 */
1341         .llong .sys_sendfile64
1342         .llong .sys_ni_syscall          /* reserved for streams1 */
1343         .llong .sys_ni_syscall          /* reserved for streams2 */
1344         .llong .ppc_vfork
1345         .llong .sys_getrlimit           /* 190 */
1346         .llong .sys_readahead
1347         .llong .sys_ni_syscall          /* 32bit only mmap2 */
1348         .llong .sys_ni_syscall          /* 32bit only truncate64 */
1349         .llong .sys_ni_syscall          /* 32bit only ftruncate64 */
1350         .llong .sys_ni_syscall          /* 195 - 32bit only stat64 */
1351         .llong .sys_ni_syscall          /* 32bit only lstat64 */
1352         .llong .sys_ni_syscall          /* 32bit only fstat64 */
1353         .llong .sys_pciconfig_read
1354         .llong .sys_pciconfig_write
1355         .llong .sys_pciconfig_iobase    /* 200 - pciconfig_iobase */
1356         .llong .sys_ni_syscall          /* reserved for MacOnLinux */
1357         .llong .sys_getdents64
1358         .llong .sys_pivot_root
1359         .llong .sys_ni_syscall          /* 32bit only fcntl64 */
1360         .llong .sys_madvise             /* 205 */
1361         .llong .sys_mincore
1362         .llong .sys_gettid
1363         .llong .sys_tkill
1364         .llong .sys_setxattr
1365         .llong .sys_lsetxattr           /* 210 */
1366         .llong .sys_fsetxattr
1367         .llong .sys_getxattr
1368         .llong .sys_lgetxattr
1369         .llong .sys_fgetxattr
1370         .llong .sys_listxattr           /* 215 */
1371         .llong .sys_llistxattr
1372         .llong .sys_flistxattr
1373         .llong .sys_removexattr
1374         .llong .sys_lremovexattr
1375         .llong .sys_fremovexattr        /* 220 */
1376         .llong .sys_futex
1377         .llong .sys_sched_setaffinity
1378         .llong .sys_sched_getaffinity
1379         .llong .sys_ni_syscall
1380         .llong .sys_ni_syscall          /* 225 - reserved for tux */
1381         .llong .sys_ni_syscall          /* 32bit only sendfile64 */
1382         .llong .sys_io_setup
1383         .llong .sys_io_destroy
1384         .llong .sys_io_getevents
1385         .llong .sys_io_submit           /* 230 */
1386         .llong .sys_io_cancel
1387         .llong .sys_set_tid_address
1388         .llong .sys_fadvise64
1389         .llong .sys_exit_group
1390         .llong .sys_lookup_dcookie      /* 235 */
1391         .llong .sys_epoll_create
1392         .llong .sys_epoll_ctl
1393         .llong .sys_epoll_wait
1394         .llong .sys_remap_file_pages
1395         .llong .sys_timer_create        /* 240 */
1396         .llong .sys_timer_settime
1397         .llong .sys_timer_gettime
1398         .llong .sys_timer_getoverrun
1399         .llong .sys_timer_delete
1400         .llong .sys_clock_settime       /* 245 */
1401         .llong .sys_clock_gettime
1402         .llong .sys_clock_getres
1403         .llong .sys_clock_nanosleep
1404         .llong .ppc64_swapcontext
1405         .llong .sys_tgkill              /* 250 */
1406         .llong .sys_utimes
1407         .llong .sys_statfs64
1408         .llong .sys_fstatfs64
1409         .llong .sys_ni_syscall          /* 32bit only fadvise64_64 */
1410         .llong .ppc_rtas                /* 255 */
1411         .llong .sys_ni_syscall          /* 256 reserved for sys_debug_setcontext */
1412         .llong .sys_ni_syscall          /* 257 reserved for vserver */
1413         .llong .sys_ni_syscall          /* 258 reserved for new sys_remap_file_pages */
1414         .llong .sys_mbind
1415         .llong .sys_get_mempolicy       /* 260 */
1416         .llong .sys_set_mempolicy
1417         .llong .sys_mq_open
1418         .llong .sys_mq_unlink
1419         .llong .sys_mq_timedsend
1420         .llong .sys_mq_timedreceive     /* 265 */
1421         .llong .sys_mq_notify
1422         .llong .sys_mq_getsetattr
1423         .llong .sys_kexec_load
1424         .llong .sys_add_key
1425         .llong .sys_request_key         /* 270 */
1426         .llong .sys_keyctl
1427         .llong .sys_waitid
1428         .llong .sys_ioprio_set
1429         .llong .sys_ioprio_get
1430         .llong .sys_inotify_init        /* 275 */
1431         .llong .sys_inotify_add_watch
1432         .llong .sys_inotify_rm_watch