blob: 2350f3e09f953e04ce1e1b57be8cbdab919531d2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file contains miscellaneous low-level functions.
3 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 *
5 * Largely rewritten by Cort Dougan (cort@cs.nmt.edu)
6 * and Paul Mackerras.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 *
13 */
14
15#include <linux/config.h>
16#include <linux/sys.h>
17#include <asm/unistd.h>
18#include <asm/errno.h>
19#include <asm/processor.h>
20#include <asm/page.h>
21#include <asm/cache.h>
22#include <asm/cputable.h>
23#include <asm/mmu.h>
24#include <asm/ppc_asm.h>
25#include <asm/thread_info.h>
Sam Ravnborg0013a852005-09-09 20:57:26 +020026#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28 .text
29
30 .align 5
31_GLOBAL(__delay)
32 cmpwi 0,r3,0
33 mtctr r3
34 beqlr
351: bdnz 1b
36 blr
37
38/*
39 * Returns (address we're running at) - (address we were linked at)
40 * for use before the text and data are mapped to KERNELBASE.
41 */
42_GLOBAL(reloc_offset)
43 mflr r0
44 bl 1f
451: mflr r3
46 lis r4,1b@ha
47 addi r4,r4,1b@l
48 subf r3,r4,r3
49 mtlr r0
50 blr
51
52/*
53 * add_reloc_offset(x) returns x + reloc_offset().
54 */
55_GLOBAL(add_reloc_offset)
56 mflr r0
57 bl 1f
581: mflr r5
59 lis r4,1b@ha
60 addi r4,r4,1b@l
61 subf r5,r4,r5
62 add r3,r3,r5
63 mtlr r0
64 blr
65
66/*
67 * sub_reloc_offset(x) returns x - reloc_offset().
68 */
69_GLOBAL(sub_reloc_offset)
70 mflr r0
71 bl 1f
721: mflr r5
73 lis r4,1b@ha
74 addi r4,r4,1b@l
75 subf r5,r4,r5
76 subf r3,r5,r3
77 mtlr r0
78 blr
79
80/*
81 * reloc_got2 runs through the .got2 section adding an offset
82 * to each entry.
83 */
84_GLOBAL(reloc_got2)
85 mflr r11
86 lis r7,__got2_start@ha
87 addi r7,r7,__got2_start@l
88 lis r8,__got2_end@ha
89 addi r8,r8,__got2_end@l
90 subf r8,r7,r8
91 srwi. r8,r8,2
92 beqlr
93 mtctr r8
94 bl 1f
951: mflr r0
96 lis r4,1b@ha
97 addi r4,r4,1b@l
98 subf r0,r4,r0
99 add r7,r0,r7
1002: lwz r0,0(r7)
101 add r0,r0,r3
102 stw r0,0(r7)
103 addi r7,r7,4
104 bdnz 2b
105 mtlr r11
106 blr
107
108/*
109 * identify_cpu,
110 * called with r3 = data offset and r4 = CPU number
111 * doesn't change r3
112 */
113_GLOBAL(identify_cpu)
114 addis r8,r3,cpu_specs@ha
115 addi r8,r8,cpu_specs@l
116 mfpvr r7
1171:
118 lwz r5,CPU_SPEC_PVR_MASK(r8)
119 and r5,r5,r7
120 lwz r6,CPU_SPEC_PVR_VALUE(r8)
121 cmplw 0,r6,r5
122 beq 1f
123 addi r8,r8,CPU_SPEC_ENTRY_SIZE
124 b 1b
1251:
126 addis r6,r3,cur_cpu_spec@ha
127 addi r6,r6,cur_cpu_spec@l
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 sub r8,r8,r3
Kumar Gala400d2212005-09-27 15:13:12 -0500129 stw r8,0(r6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 blr
131
132/*
133 * do_cpu_ftr_fixups - goes through the list of CPU feature fixups
134 * and writes nop's over sections of code that don't apply for this cpu.
135 * r3 = data offset (not changed)
136 */
137_GLOBAL(do_cpu_ftr_fixups)
138 /* Get CPU 0 features */
139 addis r6,r3,cur_cpu_spec@ha
140 addi r6,r6,cur_cpu_spec@l
141 lwz r4,0(r6)
142 add r4,r4,r3
143 lwz r4,CPU_SPEC_FEATURES(r4)
144
145 /* Get the fixup table */
146 addis r6,r3,__start___ftr_fixup@ha
147 addi r6,r6,__start___ftr_fixup@l
148 addis r7,r3,__stop___ftr_fixup@ha
149 addi r7,r7,__stop___ftr_fixup@l
150
151 /* Do the fixup */
1521: cmplw 0,r6,r7
153 bgelr
154 addi r6,r6,16
155 lwz r8,-16(r6) /* mask */
156 and r8,r8,r4
157 lwz r9,-12(r6) /* value */
158 cmplw 0,r8,r9
159 beq 1b
160 lwz r8,-8(r6) /* section begin */
161 lwz r9,-4(r6) /* section end */
162 subf. r9,r8,r9
163 beq 1b
164 /* write nops over the section of code */
165 /* todo: if large section, add a branch at the start of it */
166 srwi r9,r9,2
167 mtctr r9
168 add r8,r8,r3
169 lis r0,0x60000000@h /* nop */
1703: stw r0,0(r8)
171 andi. r10,r4,CPU_FTR_SPLIT_ID_CACHE@l
172 beq 2f
173 dcbst 0,r8 /* suboptimal, but simpler */
174 sync
175 icbi 0,r8
1762: addi r8,r8,4
177 bdnz 3b
178 sync /* additional sync needed on g4 */
179 isync
180 b 1b
181
182/*
183 * call_setup_cpu - call the setup_cpu function for this cpu
184 * r3 = data offset, r24 = cpu number
185 *
186 * Setup function is called with:
187 * r3 = data offset
Kumar Gala400d2212005-09-27 15:13:12 -0500188 * r4 = ptr to CPU spec (relocated)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
190_GLOBAL(call_setup_cpu)
Kumar Gala400d2212005-09-27 15:13:12 -0500191 addis r4,r3,cur_cpu_spec@ha
192 addi r4,r4,cur_cpu_spec@l
193 lwz r4,0(r4)
194 add r4,r4,r3
195 lwz r5,CPU_SPEC_SETUP(r4)
196 cmpi 0,r5,0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 add r5,r5,r3
Kumar Gala400d2212005-09-27 15:13:12 -0500198 beqlr
199 mtctr r5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 bctr
201
202#if defined(CONFIG_CPU_FREQ_PMAC) && defined(CONFIG_6xx)
203
204/* This gets called by via-pmu.c to switch the PLL selection
205 * on 750fx CPU. This function should really be moved to some
206 * other place (as most of the cpufreq code in via-pmu
207 */
208_GLOBAL(low_choose_750fx_pll)
209 /* Clear MSR:EE */
210 mfmsr r7
211 rlwinm r0,r7,0,17,15
212 mtmsr r0
213
214 /* If switching to PLL1, disable HID0:BTIC */
215 cmplwi cr0,r3,0
216 beq 1f
217 mfspr r5,SPRN_HID0
218 rlwinm r5,r5,0,27,25
219 sync
220 mtspr SPRN_HID0,r5
221 isync
222 sync
223
2241:
225 /* Calc new HID1 value */
226 mfspr r4,SPRN_HID1 /* Build a HID1:PS bit from parameter */
227 rlwinm r5,r3,16,15,15 /* Clear out HID1:PS from value read */
228 rlwinm r4,r4,0,16,14 /* Could have I used rlwimi here ? */
229 or r4,r4,r5
230 mtspr SPRN_HID1,r4
231
232 /* Store new HID1 image */
233 rlwinm r6,r1,0,0,18
234 lwz r6,TI_CPU(r6)
235 slwi r6,r6,2
236 addis r6,r6,nap_save_hid1@ha
237 stw r4,nap_save_hid1@l(r6)
238
239 /* If switching to PLL0, enable HID0:BTIC */
240 cmplwi cr0,r3,0
241 bne 1f
242 mfspr r5,SPRN_HID0
243 ori r5,r5,HID0_BTIC
244 sync
245 mtspr SPRN_HID0,r5
246 isync
247 sync
248
2491:
250 /* Return */
251 mtmsr r7
252 blr
253
254_GLOBAL(low_choose_7447a_dfs)
255 /* Clear MSR:EE */
256 mfmsr r7
257 rlwinm r0,r7,0,17,15
258 mtmsr r0
259
260 /* Calc new HID1 value */
261 mfspr r4,SPRN_HID1
262 insrwi r4,r3,1,9 /* insert parameter into bit 9 */
263 sync
264 mtspr SPRN_HID1,r4
265 sync
266 isync
267
268 /* Return */
269 mtmsr r7
270 blr
271
272#endif /* CONFIG_CPU_FREQ_PMAC && CONFIG_6xx */
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/*
275 * complement mask on the msr then "or" some values on.
276 * _nmask_and_or_msr(nmask, value_to_or)
277 */
278_GLOBAL(_nmask_and_or_msr)
279 mfmsr r0 /* Get current msr */
280 andc r0,r0,r3 /* And off the bits set in r3 (first parm) */
281 or r0,r0,r4 /* Or on the bits in r4 (second parm) */
282 SYNC /* Some chip revs have problems here... */
283 mtmsr r0 /* Update machine state */
284 isync
285 blr /* Done */
286
287
288/*
289 * Flush MMU TLB
290 */
291_GLOBAL(_tlbia)
292#if defined(CONFIG_40x)
293 sync /* Flush to memory before changing mapping */
294 tlbia
295 isync /* Flush shadow TLB */
296#elif defined(CONFIG_44x)
297 li r3,0
298 sync
299
300 /* Load high watermark */
301 lis r4,tlb_44x_hwater@ha
302 lwz r5,tlb_44x_hwater@l(r4)
303
3041: tlbwe r3,r3,PPC44x_TLB_PAGEID
305 addi r3,r3,1
306 cmpw 0,r3,r5
307 ble 1b
308
309 isync
310#elif defined(CONFIG_FSL_BOOKE)
311 /* Invalidate all entries in TLB0 */
312 li r3, 0x04
313 tlbivax 0,3
314 /* Invalidate all entries in TLB1 */
315 li r3, 0x0c
316 tlbivax 0,3
317 /* Invalidate all entries in TLB2 */
318 li r3, 0x14
319 tlbivax 0,3
320 /* Invalidate all entries in TLB3 */
321 li r3, 0x1c
322 tlbivax 0,3
323 msync
324#ifdef CONFIG_SMP
325 tlbsync
326#endif /* CONFIG_SMP */
327#else /* !(CONFIG_40x || CONFIG_44x || CONFIG_FSL_BOOKE) */
328#if defined(CONFIG_SMP)
329 rlwinm r8,r1,0,0,18
330 lwz r8,TI_CPU(r8)
331 oris r8,r8,10
332 mfmsr r10
333 SYNC
334 rlwinm r0,r10,0,17,15 /* clear bit 16 (MSR_EE) */
335 rlwinm r0,r0,0,28,26 /* clear DR */
336 mtmsr r0
337 SYNC_601
338 isync
339 lis r9,mmu_hash_lock@h
340 ori r9,r9,mmu_hash_lock@l
341 tophys(r9,r9)
34210: lwarx r7,0,r9
343 cmpwi 0,r7,0
344 bne- 10b
345 stwcx. r8,0,r9
346 bne- 10b
347 sync
348 tlbia
349 sync
350 TLBSYNC
351 li r0,0
352 stw r0,0(r9) /* clear mmu_hash_lock */
353 mtmsr r10
354 SYNC_601
355 isync
356#else /* CONFIG_SMP */
357 sync
358 tlbia
359 sync
360#endif /* CONFIG_SMP */
361#endif /* ! defined(CONFIG_40x) */
362 blr
363
364/*
365 * Flush MMU TLB for a particular address
366 */
367_GLOBAL(_tlbie)
368#if defined(CONFIG_40x)
369 tlbsx. r3, 0, r3
370 bne 10f
371 sync
372 /* There are only 64 TLB entries, so r3 < 64, which means bit 25 is clear.
373 * Since 25 is the V bit in the TLB_TAG, loading this value will invalidate
374 * the TLB entry. */
375 tlbwe r3, r3, TLB_TAG
376 isync
37710:
378#elif defined(CONFIG_44x)
379 mfspr r4,SPRN_MMUCR
380 mfspr r5,SPRN_PID /* Get PID */
381 rlwimi r4,r5,0,24,31 /* Set TID */
382 mtspr SPRN_MMUCR,r4
383
384 tlbsx. r3, 0, r3
385 bne 10f
386 sync
387 /* There are only 64 TLB entries, so r3 < 64,
388 * which means bit 22, is clear. Since 22 is
389 * the V bit in the TLB_PAGEID, loading this
390 * value will invalidate the TLB entry.
391 */
392 tlbwe r3, r3, PPC44x_TLB_PAGEID
393 isync
39410:
395#elif defined(CONFIG_FSL_BOOKE)
396 rlwinm r4, r3, 0, 0, 19
397 ori r5, r4, 0x08 /* TLBSEL = 1 */
398 ori r6, r4, 0x10 /* TLBSEL = 2 */
399 ori r7, r4, 0x18 /* TLBSEL = 3 */
400 tlbivax 0, r4
401 tlbivax 0, r5
402 tlbivax 0, r6
403 tlbivax 0, r7
404 msync
405#if defined(CONFIG_SMP)
406 tlbsync
407#endif /* CONFIG_SMP */
408#else /* !(CONFIG_40x || CONFIG_44x || CONFIG_FSL_BOOKE) */
409#if defined(CONFIG_SMP)
410 rlwinm r8,r1,0,0,18
411 lwz r8,TI_CPU(r8)
412 oris r8,r8,11
413 mfmsr r10
414 SYNC
415 rlwinm r0,r10,0,17,15 /* clear bit 16 (MSR_EE) */
416 rlwinm r0,r0,0,28,26 /* clear DR */
417 mtmsr r0
418 SYNC_601
419 isync
420 lis r9,mmu_hash_lock@h
421 ori r9,r9,mmu_hash_lock@l
422 tophys(r9,r9)
42310: lwarx r7,0,r9
424 cmpwi 0,r7,0
425 bne- 10b
426 stwcx. r8,0,r9
427 bne- 10b
428 eieio
429 tlbie r3
430 sync
431 TLBSYNC
432 li r0,0
433 stw r0,0(r9) /* clear mmu_hash_lock */
434 mtmsr r10
435 SYNC_601
436 isync
437#else /* CONFIG_SMP */
438 tlbie r3
439 sync
440#endif /* CONFIG_SMP */
441#endif /* ! CONFIG_40x */
442 blr
443
444/*
445 * Flush instruction cache.
446 * This is a no-op on the 601.
447 */
448_GLOBAL(flush_instruction_cache)
449#if defined(CONFIG_8xx)
450 isync
451 lis r5, IDC_INVALL@h
452 mtspr SPRN_IC_CST, r5
453#elif defined(CONFIG_4xx)
454#ifdef CONFIG_403GCX
455 li r3, 512
456 mtctr r3
457 lis r4, KERNELBASE@h
4581: iccci 0, r4
459 addi r4, r4, 16
460 bdnz 1b
461#else
462 lis r3, KERNELBASE@h
463 iccci 0,r3
464#endif
465#elif CONFIG_FSL_BOOKE
Kumar Gala33d9e9b2005-06-25 14:54:37 -0700466BEGIN_FTR_SECTION
467 mfspr r3,SPRN_L1CSR0
468 ori r3,r3,L1CSR0_CFI|L1CSR0_CLFC
469 /* msync; isync recommended here */
470 mtspr SPRN_L1CSR0,r3
471 isync
472 blr
473END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 mfspr r3,SPRN_L1CSR1
475 ori r3,r3,L1CSR1_ICFI|L1CSR1_ICLFR
476 mtspr SPRN_L1CSR1,r3
477#else
478 mfspr r3,SPRN_PVR
479 rlwinm r3,r3,16,16,31
480 cmpwi 0,r3,1
481 beqlr /* for 601, do nothing */
482 /* 603/604 processor - use invalidate-all bit in HID0 */
483 mfspr r3,SPRN_HID0
484 ori r3,r3,HID0_ICFI
485 mtspr SPRN_HID0,r3
486#endif /* CONFIG_8xx/4xx */
487 isync
488 blr
489
490/*
491 * Write any modified data cache blocks out to memory
492 * and invalidate the corresponding instruction cache blocks.
493 * This is a no-op on the 601.
494 *
495 * flush_icache_range(unsigned long start, unsigned long stop)
496 */
497_GLOBAL(flush_icache_range)
498BEGIN_FTR_SECTION
499 blr /* for 601, do nothing */
Kumar Gala4481e8e2005-06-06 13:35:57 -0700500END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000501 li r5,L1_CACHE_BYTES-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 andc r3,r3,r5
503 subf r4,r3,r4
504 add r4,r4,r5
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000505 srwi. r4,r4,L1_CACHE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 beqlr
507 mtctr r4
508 mr r6,r3
5091: dcbst 0,r3
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000510 addi r3,r3,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 bdnz 1b
512 sync /* wait for dcbst's to get to ram */
513 mtctr r4
5142: icbi 0,r6
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000515 addi r6,r6,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 bdnz 2b
517 sync /* additional sync needed on g4 */
518 isync
519 blr
520/*
521 * Write any modified data cache blocks out to memory.
522 * Does not invalidate the corresponding cache lines (especially for
523 * any corresponding instruction cache).
524 *
525 * clean_dcache_range(unsigned long start, unsigned long stop)
526 */
527_GLOBAL(clean_dcache_range)
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000528 li r5,L1_CACHE_BYTES-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 andc r3,r3,r5
530 subf r4,r3,r4
531 add r4,r4,r5
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000532 srwi. r4,r4,L1_CACHE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 beqlr
534 mtctr r4
535
5361: dcbst 0,r3
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000537 addi r3,r3,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 bdnz 1b
539 sync /* wait for dcbst's to get to ram */
540 blr
541
542/*
543 * Write any modified data cache blocks out to memory and invalidate them.
544 * Does not invalidate the corresponding instruction cache blocks.
545 *
546 * flush_dcache_range(unsigned long start, unsigned long stop)
547 */
548_GLOBAL(flush_dcache_range)
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000549 li r5,L1_CACHE_BYTES-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 andc r3,r3,r5
551 subf r4,r3,r4
552 add r4,r4,r5
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000553 srwi. r4,r4,L1_CACHE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 beqlr
555 mtctr r4
556
5571: dcbf 0,r3
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000558 addi r3,r3,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 bdnz 1b
560 sync /* wait for dcbst's to get to ram */
561 blr
562
563/*
564 * Like above, but invalidate the D-cache. This is used by the 8xx
565 * to invalidate the cache so the PPC core doesn't get stale data
566 * from the CPM (no cache snooping here :-).
567 *
568 * invalidate_dcache_range(unsigned long start, unsigned long stop)
569 */
570_GLOBAL(invalidate_dcache_range)
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000571 li r5,L1_CACHE_BYTES-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 andc r3,r3,r5
573 subf r4,r3,r4
574 add r4,r4,r5
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000575 srwi. r4,r4,L1_CACHE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 beqlr
577 mtctr r4
578
5791: dcbi 0,r3
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000580 addi r3,r3,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 bdnz 1b
582 sync /* wait for dcbi's to get to ram */
583 blr
584
585#ifdef CONFIG_NOT_COHERENT_CACHE
586/*
587 * 40x cores have 8K or 16K dcache and 32 byte line size.
588 * 44x has a 32K dcache and 32 byte line size.
589 * 8xx has 1, 2, 4, 8K variants.
590 * For now, cover the worst case of the 44x.
591 * Must be called with external interrupts disabled.
592 */
593#define CACHE_NWAYS 64
594#define CACHE_NLINES 16
595
596_GLOBAL(flush_dcache_all)
597 li r4, (2 * CACHE_NWAYS * CACHE_NLINES)
598 mtctr r4
599 lis r5, KERNELBASE@h
6001: lwz r3, 0(r5) /* Load one word from every line */
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000601 addi r5, r5, L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 bdnz 1b
603 blr
604#endif /* CONFIG_NOT_COHERENT_CACHE */
605
606/*
607 * Flush a particular page from the data cache to RAM.
608 * Note: this is necessary because the instruction cache does *not*
609 * snoop from the data cache.
610 * This is a no-op on the 601 which has a unified cache.
611 *
612 * void __flush_dcache_icache(void *page)
613 */
614_GLOBAL(__flush_dcache_icache)
615BEGIN_FTR_SECTION
616 blr /* for 601, do nothing */
Kumar Gala4481e8e2005-06-06 13:35:57 -0700617END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 rlwinm r3,r3,0,0,19 /* Get page base address */
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000619 li r4,4096/L1_CACHE_BYTES /* Number of lines in a page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 mtctr r4
621 mr r6,r3
6220: dcbst 0,r3 /* Write line to ram */
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000623 addi r3,r3,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 bdnz 0b
625 sync
626 mtctr r4
6271: icbi 0,r6
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000628 addi r6,r6,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 bdnz 1b
630 sync
631 isync
632 blr
633
634/*
635 * Flush a particular page from the data cache to RAM, identified
636 * by its physical address. We turn off the MMU so we can just use
637 * the physical address (this may be a highmem page without a kernel
638 * mapping).
639 *
640 * void __flush_dcache_icache_phys(unsigned long physaddr)
641 */
642_GLOBAL(__flush_dcache_icache_phys)
643BEGIN_FTR_SECTION
644 blr /* for 601, do nothing */
Kumar Gala4481e8e2005-06-06 13:35:57 -0700645END_FTR_SECTION_IFCLR(CPU_FTR_SPLIT_ID_CACHE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 mfmsr r10
647 rlwinm r0,r10,0,28,26 /* clear DR */
648 mtmsr r0
649 isync
650 rlwinm r3,r3,0,0,19 /* Get page base address */
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000651 li r4,4096/L1_CACHE_BYTES /* Number of lines in a page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 mtctr r4
653 mr r6,r3
6540: dcbst 0,r3 /* Write line to ram */
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000655 addi r3,r3,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 bdnz 0b
657 sync
658 mtctr r4
6591: icbi 0,r6
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000660 addi r6,r6,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 bdnz 1b
662 sync
663 mtmsr r10 /* restore DR */
664 isync
665 blr
666
667/*
668 * Clear pages using the dcbz instruction, which doesn't cause any
669 * memory traffic (except to write out any cache lines which get
670 * displaced). This only works on cacheable memory.
671 *
672 * void clear_pages(void *page, int order) ;
673 */
674_GLOBAL(clear_pages)
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000675 li r0,4096/L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 slw r0,r0,r4
677 mtctr r0
678#ifdef CONFIG_8xx
679 li r4, 0
6801: stw r4, 0(r3)
681 stw r4, 4(r3)
682 stw r4, 8(r3)
683 stw r4, 12(r3)
684#else
6851: dcbz 0,r3
686#endif
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000687 addi r3,r3,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 bdnz 1b
689 blr
690
691/*
692 * Copy a whole page. We use the dcbz instruction on the destination
693 * to reduce memory traffic (it eliminates the unnecessary reads of
694 * the destination into cache). This requires that the destination
695 * is cacheable.
696 */
697#define COPY_16_BYTES \
698 lwz r6,4(r4); \
699 lwz r7,8(r4); \
700 lwz r8,12(r4); \
701 lwzu r9,16(r4); \
702 stw r6,4(r3); \
703 stw r7,8(r3); \
704 stw r8,12(r3); \
705 stwu r9,16(r3)
706
707_GLOBAL(copy_page)
708 addi r3,r3,-4
709 addi r4,r4,-4
710
711#ifdef CONFIG_8xx
712 /* don't use prefetch on 8xx */
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000713 li r0,4096/L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 mtctr r0
7151: COPY_16_BYTES
716 bdnz 1b
717 blr
718
719#else /* not 8xx, we can prefetch */
720 li r5,4
721
722#if MAX_COPY_PREFETCH > 1
723 li r0,MAX_COPY_PREFETCH
724 li r11,4
725 mtctr r0
72611: dcbt r11,r4
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000727 addi r11,r11,L1_CACHE_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 bdnz 11b
729#else /* MAX_COPY_PREFETCH == 1 */
730 dcbt r5,r4
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000731 li r11,L1_CACHE_BYTES+4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#endif /* MAX_COPY_PREFETCH */
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000733 li r0,4096/L1_CACHE_BYTES - MAX_COPY_PREFETCH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 crclr 4*cr0+eq
7352:
736 mtctr r0
7371:
738 dcbt r11,r4
739 dcbz r5,r3
740 COPY_16_BYTES
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000741#if L1_CACHE_BYTES >= 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 COPY_16_BYTES
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000743#if L1_CACHE_BYTES >= 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 COPY_16_BYTES
745 COPY_16_BYTES
Stephen Rothwell7dffb722005-10-17 11:50:32 +1000746#if L1_CACHE_BYTES >= 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 COPY_16_BYTES
748 COPY_16_BYTES
749 COPY_16_BYTES
750 COPY_16_BYTES
751#endif
752#endif
753#endif
754 bdnz 1b
755 beqlr
756 crnot 4*cr0+eq,4*cr0+eq
757 li r0,MAX_COPY_PREFETCH
758 li r11,4
759 b 2b
760#endif /* CONFIG_8xx */
761
762/*
763 * void atomic_clear_mask(atomic_t mask, atomic_t *addr)
764 * void atomic_set_mask(atomic_t mask, atomic_t *addr);
765 */
766_GLOBAL(atomic_clear_mask)
76710: lwarx r5,0,r4
768 andc r5,r5,r3
769 PPC405_ERR77(0,r4)
770 stwcx. r5,0,r4
771 bne- 10b
772 blr
773_GLOBAL(atomic_set_mask)
77410: lwarx r5,0,r4
775 or r5,r5,r3
776 PPC405_ERR77(0,r4)
777 stwcx. r5,0,r4
778 bne- 10b
779 blr
780
781/*
782 * I/O string operations
783 *
784 * insb(port, buf, len)
785 * outsb(port, buf, len)
786 * insw(port, buf, len)
787 * outsw(port, buf, len)
788 * insl(port, buf, len)
789 * outsl(port, buf, len)
790 * insw_ns(port, buf, len)
791 * outsw_ns(port, buf, len)
792 * insl_ns(port, buf, len)
793 * outsl_ns(port, buf, len)
794 *
795 * The *_ns versions don't do byte-swapping.
796 */
797_GLOBAL(_insb)
798 cmpwi 0,r5,0
799 mtctr r5
800 subi r4,r4,1
801 blelr-
80200: lbz r5,0(r3)
803 eieio
804 stbu r5,1(r4)
805 bdnz 00b
806 blr
807
808_GLOBAL(_outsb)
809 cmpwi 0,r5,0
810 mtctr r5
811 subi r4,r4,1
812 blelr-
81300: lbzu r5,1(r4)
814 stb r5,0(r3)
815 eieio
816 bdnz 00b
817 blr
818
819_GLOBAL(_insw)
820 cmpwi 0,r5,0
821 mtctr r5
822 subi r4,r4,2
823 blelr-
82400: lhbrx r5,0,r3
825 eieio
826 sthu r5,2(r4)
827 bdnz 00b
828 blr
829
830_GLOBAL(_outsw)
831 cmpwi 0,r5,0
832 mtctr r5
833 subi r4,r4,2
834 blelr-
83500: lhzu r5,2(r4)
836 eieio
837 sthbrx r5,0,r3
838 bdnz 00b
839 blr
840
841_GLOBAL(_insl)
842 cmpwi 0,r5,0
843 mtctr r5
844 subi r4,r4,4
845 blelr-
84600: lwbrx r5,0,r3
847 eieio
848 stwu r5,4(r4)
849 bdnz 00b
850 blr
851
852_GLOBAL(_outsl)
853 cmpwi 0,r5,0
854 mtctr r5
855 subi r4,r4,4
856 blelr-
85700: lwzu r5,4(r4)
858 stwbrx r5,0,r3
859 eieio
860 bdnz 00b
861 blr
862
863_GLOBAL(__ide_mm_insw)
864_GLOBAL(_insw_ns)
865 cmpwi 0,r5,0
866 mtctr r5
867 subi r4,r4,2
868 blelr-
86900: lhz r5,0(r3)
870 eieio
871 sthu r5,2(r4)
872 bdnz 00b
873 blr
874
875_GLOBAL(__ide_mm_outsw)
876_GLOBAL(_outsw_ns)
877 cmpwi 0,r5,0
878 mtctr r5
879 subi r4,r4,2
880 blelr-
88100: lhzu r5,2(r4)
882 sth r5,0(r3)
883 eieio
884 bdnz 00b
885 blr
886
887_GLOBAL(__ide_mm_insl)
888_GLOBAL(_insl_ns)
889 cmpwi 0,r5,0
890 mtctr r5
891 subi r4,r4,4
892 blelr-
89300: lwz r5,0(r3)
894 eieio
895 stwu r5,4(r4)
896 bdnz 00b
897 blr
898
899_GLOBAL(__ide_mm_outsl)
900_GLOBAL(_outsl_ns)
901 cmpwi 0,r5,0
902 mtctr r5
903 subi r4,r4,4
904 blelr-
90500: lwzu r5,4(r4)
906 stw r5,0(r3)
907 eieio
908 bdnz 00b
909 blr
910
911/*
912 * Extended precision shifts.
913 *
914 * Updated to be valid for shift counts from 0 to 63 inclusive.
915 * -- Gabriel
916 *
917 * R3/R4 has 64 bit value
918 * R5 has shift count
919 * result in R3/R4
920 *
921 * ashrdi3: arithmetic right shift (sign propagation)
922 * lshrdi3: logical right shift
923 * ashldi3: left shift
924 */
925_GLOBAL(__ashrdi3)
926 subfic r6,r5,32
927 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count
928 addi r7,r5,32 # could be xori, or addi with -32
929 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
930 rlwinm r8,r7,0,32 # t3 = (count < 32) ? 32 : 0
931 sraw r7,r3,r7 # t2 = MSW >> (count-32)
932 or r4,r4,r6 # LSW |= t1
933 slw r7,r7,r8 # t2 = (count < 32) ? 0 : t2
934 sraw r3,r3,r5 # MSW = MSW >> count
935 or r4,r4,r7 # LSW |= t2
936 blr
937
938_GLOBAL(__ashldi3)
939 subfic r6,r5,32
940 slw r3,r3,r5 # MSW = count > 31 ? 0 : MSW << count
941 addi r7,r5,32 # could be xori, or addi with -32
942 srw r6,r4,r6 # t1 = count > 31 ? 0 : LSW >> (32-count)
943 slw r7,r4,r7 # t2 = count < 32 ? 0 : LSW << (count-32)
944 or r3,r3,r6 # MSW |= t1
945 slw r4,r4,r5 # LSW = LSW << count
946 or r3,r3,r7 # MSW |= t2
947 blr
948
949_GLOBAL(__lshrdi3)
950 subfic r6,r5,32
951 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count
952 addi r7,r5,32 # could be xori, or addi with -32
953 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
954 srw r7,r3,r7 # t2 = count < 32 ? 0 : MSW >> (count-32)
955 or r4,r4,r6 # LSW |= t1
956 srw r3,r3,r5 # MSW = MSW >> count
957 or r4,r4,r7 # LSW |= t2
958 blr
959
960_GLOBAL(abs)
961 srawi r4,r3,31
962 xor r3,r3,r4
963 sub r3,r3,r4
964 blr
965
966_GLOBAL(_get_SP)
967 mr r3,r1 /* Close enough */
968 blr
969
970/*
971 * These are used in the alignment trap handler when emulating
972 * single-precision loads and stores.
973 * We restore and save the fpscr so the task gets the same result
974 * and exceptions as if the cpu had performed the load or store.
975 */
976
Paul Mackerras443a8482005-05-01 08:58:40 -0700977#ifdef CONFIG_PPC_FPU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978_GLOBAL(cvt_fd)
979 lfd 0,-4(r5) /* load up fpscr value */
980 mtfsf 0xff,0
981 lfs 0,0(r3)
982 stfd 0,0(r4)
983 mffs 0 /* save new fpscr value */
984 stfd 0,-4(r5)
985 blr
986
987_GLOBAL(cvt_df)
988 lfd 0,-4(r5) /* load up fpscr value */
989 mtfsf 0xff,0
990 lfd 0,0(r3)
991 stfs 0,0(r4)
992 mffs 0 /* save new fpscr value */
993 stfd 0,-4(r5)
994 blr
995#endif
996
997/*
998 * Create a kernel thread
999 * kernel_thread(fn, arg, flags)
1000 */
1001_GLOBAL(kernel_thread)
1002 stwu r1,-16(r1)
1003 stw r30,8(r1)
1004 stw r31,12(r1)
1005 mr r30,r3 /* function */
1006 mr r31,r4 /* argument */
1007 ori r3,r5,CLONE_VM /* flags */
1008 oris r3,r3,CLONE_UNTRACED>>16
1009 li r4,0 /* new sp (unused) */
1010 li r0,__NR_clone
1011 sc
1012 cmpwi 0,r3,0 /* parent or child? */
1013 bne 1f /* return if parent */
1014 li r0,0 /* make top-level stack frame */
1015 stwu r0,-16(r1)
1016 mtlr r30 /* fn addr in lr */
1017 mr r3,r31 /* load arg and call fn */
Matt Porterc9cf73a2005-07-31 22:34:52 -07001018 PPC440EP_ERR42
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 blrl
1020 li r0,__NR_exit /* exit if function returns */
1021 li r3,0
1022 sc
10231: lwz r30,8(r1)
1024 lwz r31,12(r1)
1025 addi r1,r1,16
1026 blr
1027
1028/*
1029 * This routine is just here to keep GCC happy - sigh...
1030 */
1031_GLOBAL(__main)
1032 blr
1033
1034#define SYSCALL(name) \
1035_GLOBAL(name) \
1036 li r0,__NR_##name; \
1037 sc; \
1038 bnslr; \
1039 lis r4,errno@ha; \
1040 stw r3,errno@l(r4); \
1041 li r3,-1; \
1042 blr
1043
1044SYSCALL(execve)
1045
1046/* Why isn't this a) automatic, b) written in 'C'? */
1047 .data
1048 .align 4
1049_GLOBAL(sys_call_table)
1050 .long sys_restart_syscall /* 0 */
1051 .long sys_exit
1052 .long ppc_fork
1053 .long sys_read
1054 .long sys_write
1055 .long sys_open /* 5 */
1056 .long sys_close
1057 .long sys_waitpid
1058 .long sys_creat
1059 .long sys_link
1060 .long sys_unlink /* 10 */
1061 .long sys_execve
1062 .long sys_chdir
1063 .long sys_time
1064 .long sys_mknod
1065 .long sys_chmod /* 15 */
1066 .long sys_lchown
1067 .long sys_ni_syscall /* old break syscall holder */
1068 .long sys_stat
1069 .long sys_lseek
1070 .long sys_getpid /* 20 */
1071 .long sys_mount
1072 .long sys_oldumount
1073 .long sys_setuid
1074 .long sys_getuid
1075 .long sys_stime /* 25 */
1076 .long sys_ptrace
1077 .long sys_alarm
1078 .long sys_fstat
1079 .long sys_pause
1080 .long sys_utime /* 30 */
1081 .long sys_ni_syscall /* old stty syscall holder */
1082 .long sys_ni_syscall /* old gtty syscall holder */
1083 .long sys_access
1084 .long sys_nice
1085 .long sys_ni_syscall /* 35 */ /* old ftime syscall holder */
1086 .long sys_sync
1087 .long sys_kill
1088 .long sys_rename
1089 .long sys_mkdir
1090 .long sys_rmdir /* 40 */
1091 .long sys_dup
1092 .long sys_pipe
1093 .long sys_times
1094 .long sys_ni_syscall /* old prof syscall holder */
1095 .long sys_brk /* 45 */
1096 .long sys_setgid
1097 .long sys_getgid
1098 .long sys_signal
1099 .long sys_geteuid
1100 .long sys_getegid /* 50 */
1101 .long sys_acct
1102 .long sys_umount /* recycled never used phys() */
1103 .long sys_ni_syscall /* old lock syscall holder */
1104 .long sys_ioctl
1105 .long sys_fcntl /* 55 */
1106 .long sys_ni_syscall /* old mpx syscall holder */
1107 .long sys_setpgid
1108 .long sys_ni_syscall /* old ulimit syscall holder */
1109 .long sys_olduname
1110 .long sys_umask /* 60 */
1111 .long sys_chroot
1112 .long sys_ustat
1113 .long sys_dup2
1114 .long sys_getppid
1115 .long sys_getpgrp /* 65 */
1116 .long sys_setsid
1117 .long sys_sigaction
1118 .long sys_sgetmask
1119 .long sys_ssetmask
1120 .long sys_setreuid /* 70 */
1121 .long sys_setregid
1122 .long ppc_sigsuspend
1123 .long sys_sigpending
1124 .long sys_sethostname
1125 .long sys_setrlimit /* 75 */
1126 .long sys_old_getrlimit
1127 .long sys_getrusage
1128 .long sys_gettimeofday
1129 .long sys_settimeofday
1130 .long sys_getgroups /* 80 */
1131 .long sys_setgroups
1132 .long ppc_select
1133 .long sys_symlink
1134 .long sys_lstat
1135 .long sys_readlink /* 85 */
1136 .long sys_uselib
1137 .long sys_swapon
1138 .long sys_reboot
1139 .long old_readdir
1140 .long sys_mmap /* 90 */
1141 .long sys_munmap
1142 .long sys_truncate
1143 .long sys_ftruncate
1144 .long sys_fchmod
1145 .long sys_fchown /* 95 */
1146 .long sys_getpriority
1147 .long sys_setpriority
1148 .long sys_ni_syscall /* old profil syscall holder */
1149 .long sys_statfs
1150 .long sys_fstatfs /* 100 */
1151 .long sys_ni_syscall
1152 .long sys_socketcall
1153 .long sys_syslog
1154 .long sys_setitimer
1155 .long sys_getitimer /* 105 */
1156 .long sys_newstat
1157 .long sys_newlstat
1158 .long sys_newfstat
1159 .long sys_uname
1160 .long sys_ni_syscall /* 110 */
1161 .long sys_vhangup
1162 .long sys_ni_syscall /* old 'idle' syscall */
1163 .long sys_ni_syscall
1164 .long sys_wait4
1165 .long sys_swapoff /* 115 */
1166 .long sys_sysinfo
1167 .long sys_ipc
1168 .long sys_fsync
1169 .long sys_sigreturn
1170 .long ppc_clone /* 120 */
1171 .long sys_setdomainname
1172 .long sys_newuname
1173 .long sys_ni_syscall
1174 .long sys_adjtimex
1175 .long sys_mprotect /* 125 */
1176 .long sys_sigprocmask
1177 .long sys_ni_syscall /* old sys_create_module */
1178 .long sys_init_module
1179 .long sys_delete_module
1180 .long sys_ni_syscall /* old sys_get_kernel_syms */ /* 130 */
1181 .long sys_quotactl
1182 .long sys_getpgid
1183 .long sys_fchdir
1184 .long sys_bdflush
1185 .long sys_sysfs /* 135 */
1186 .long sys_personality
1187 .long sys_ni_syscall /* for afs_syscall */
1188 .long sys_setfsuid
1189 .long sys_setfsgid
1190 .long sys_llseek /* 140 */
1191 .long sys_getdents
1192 .long ppc_select
1193 .long sys_flock
1194 .long sys_msync
1195 .long sys_readv /* 145 */
1196 .long sys_writev
1197 .long sys_getsid
1198 .long sys_fdatasync
1199 .long sys_sysctl
1200 .long sys_mlock /* 150 */
1201 .long sys_munlock
1202 .long sys_mlockall
1203 .long sys_munlockall
1204 .long sys_sched_setparam
1205 .long sys_sched_getparam /* 155 */
1206 .long sys_sched_setscheduler
1207 .long sys_sched_getscheduler
1208 .long sys_sched_yield
1209 .long sys_sched_get_priority_max
1210 .long sys_sched_get_priority_min /* 160 */
1211 .long sys_sched_rr_get_interval
1212 .long sys_nanosleep
1213 .long sys_mremap
1214 .long sys_setresuid
1215 .long sys_getresuid /* 165 */
1216 .long sys_ni_syscall /* old sys_query_module */
1217 .long sys_poll
1218 .long sys_nfsservctl
1219 .long sys_setresgid
1220 .long sys_getresgid /* 170 */
1221 .long sys_prctl
1222 .long sys_rt_sigreturn
1223 .long sys_rt_sigaction
1224 .long sys_rt_sigprocmask
1225 .long sys_rt_sigpending /* 175 */
1226 .long sys_rt_sigtimedwait
1227 .long sys_rt_sigqueueinfo
1228 .long ppc_rt_sigsuspend
1229 .long sys_pread64
1230 .long sys_pwrite64 /* 180 */
1231 .long sys_chown
1232 .long sys_getcwd
1233 .long sys_capget
1234 .long sys_capset
1235 .long sys_sigaltstack /* 185 */
1236 .long sys_sendfile
1237 .long sys_ni_syscall /* streams1 */
1238 .long sys_ni_syscall /* streams2 */
1239 .long ppc_vfork
1240 .long sys_getrlimit /* 190 */
1241 .long sys_readahead
1242 .long sys_mmap2
1243 .long sys_truncate64
1244 .long sys_ftruncate64
1245 .long sys_stat64 /* 195 */
1246 .long sys_lstat64
1247 .long sys_fstat64
1248 .long sys_pciconfig_read
1249 .long sys_pciconfig_write
1250 .long sys_pciconfig_iobase /* 200 */
1251 .long sys_ni_syscall /* 201 - reserved - MacOnLinux - new */
1252 .long sys_getdents64
1253 .long sys_pivot_root
1254 .long sys_fcntl64
1255 .long sys_madvise /* 205 */
1256 .long sys_mincore
1257 .long sys_gettid
1258 .long sys_tkill
1259 .long sys_setxattr
1260 .long sys_lsetxattr /* 210 */
1261 .long sys_fsetxattr
1262 .long sys_getxattr
1263 .long sys_lgetxattr
1264 .long sys_fgetxattr
1265 .long sys_listxattr /* 215 */
1266 .long sys_llistxattr
1267 .long sys_flistxattr
1268 .long sys_removexattr
1269 .long sys_lremovexattr
1270 .long sys_fremovexattr /* 220 */
1271 .long sys_futex
1272 .long sys_sched_setaffinity
1273 .long sys_sched_getaffinity
1274 .long sys_ni_syscall
1275 .long sys_ni_syscall /* 225 - reserved for Tux */
1276 .long sys_sendfile64
1277 .long sys_io_setup
1278 .long sys_io_destroy
1279 .long sys_io_getevents
1280 .long sys_io_submit /* 230 */
1281 .long sys_io_cancel
1282 .long sys_set_tid_address
1283 .long sys_fadvise64
1284 .long sys_exit_group
1285 .long sys_lookup_dcookie /* 235 */
1286 .long sys_epoll_create
1287 .long sys_epoll_ctl
1288 .long sys_epoll_wait
1289 .long sys_remap_file_pages
1290 .long sys_timer_create /* 240 */
1291 .long sys_timer_settime
1292 .long sys_timer_gettime
1293 .long sys_timer_getoverrun
1294 .long sys_timer_delete
1295 .long sys_clock_settime /* 245 */
1296 .long sys_clock_gettime
1297 .long sys_clock_getres
1298 .long sys_clock_nanosleep
1299 .long ppc_swapcontext
1300 .long sys_tgkill /* 250 */
1301 .long sys_utimes
1302 .long sys_statfs64
1303 .long sys_fstatfs64
1304 .long ppc_fadvise64_64
1305 .long sys_ni_syscall /* 255 - rtas (used on ppc64) */
1306 .long sys_debug_setcontext
1307 .long sys_ni_syscall /* 257 reserved for vserver */
1308 .long sys_ni_syscall /* 258 reserved for new sys_remap_file_pages */
1309 .long sys_ni_syscall /* 259 reserved for new sys_mbind */
1310 .long sys_ni_syscall /* 260 reserved for new sys_get_mempolicy */
1311 .long sys_ni_syscall /* 261 reserved for new sys_set_mempolicy */
1312 .long sys_mq_open
1313 .long sys_mq_unlink
1314 .long sys_mq_timedsend
1315 .long sys_mq_timedreceive /* 265 */
1316 .long sys_mq_notify
1317 .long sys_mq_getsetattr
Eric W. Biederman70765aa2005-06-25 14:58:07 -07001318 .long sys_kexec_load
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 .long sys_add_key
1320 .long sys_request_key /* 270 */
1321 .long sys_keyctl
1322 .long sys_waitid
Jens Axboe22e2c502005-06-27 10:55:12 +02001323 .long sys_ioprio_set
1324 .long sys_ioprio_get
Robert Love141d7512005-07-29 22:59:16 -07001325 .long sys_inotify_init /* 275 */
1326 .long sys_inotify_add_watch
1327 .long sys_inotify_rm_watch