diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/sparc/lib/blockops.S |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/sparc/lib/blockops.S')
-rw-r--r-- | arch/sparc/lib/blockops.S | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/arch/sparc/lib/blockops.S b/arch/sparc/lib/blockops.S new file mode 100644 index 000000000000..a7c7ffaa4a94 --- /dev/null +++ b/arch/sparc/lib/blockops.S | |||
@@ -0,0 +1,89 @@ | |||
1 | /* $Id: blockops.S,v 1.8 1998/01/30 10:58:44 jj Exp $ | ||
2 | * blockops.S: Common block zero optimized routines. | ||
3 | * | ||
4 | * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) | ||
5 | */ | ||
6 | |||
7 | #include <asm/page.h> | ||
8 | |||
9 | /* Zero out 64 bytes of memory at (buf + offset). | ||
10 | * Assumes %g1 contains zero. | ||
11 | */ | ||
12 | #define BLAST_BLOCK(buf, offset) \ | ||
13 | std %g0, [buf + offset + 0x38]; \ | ||
14 | std %g0, [buf + offset + 0x30]; \ | ||
15 | std %g0, [buf + offset + 0x28]; \ | ||
16 | std %g0, [buf + offset + 0x20]; \ | ||
17 | std %g0, [buf + offset + 0x18]; \ | ||
18 | std %g0, [buf + offset + 0x10]; \ | ||
19 | std %g0, [buf + offset + 0x08]; \ | ||
20 | std %g0, [buf + offset + 0x00]; | ||
21 | |||
22 | /* Copy 32 bytes of memory at (src + offset) to | ||
23 | * (dst + offset). | ||
24 | */ | ||
25 | #define MIRROR_BLOCK(dst, src, offset, t0, t1, t2, t3, t4, t5, t6, t7) \ | ||
26 | ldd [src + offset + 0x18], t0; \ | ||
27 | ldd [src + offset + 0x10], t2; \ | ||
28 | ldd [src + offset + 0x08], t4; \ | ||
29 | ldd [src + offset + 0x00], t6; \ | ||
30 | std t0, [dst + offset + 0x18]; \ | ||
31 | std t2, [dst + offset + 0x10]; \ | ||
32 | std t4, [dst + offset + 0x08]; \ | ||
33 | std t6, [dst + offset + 0x00]; | ||
34 | |||
35 | /* Profiling evidence indicates that memset() is | ||
36 | * commonly called for blocks of size PAGE_SIZE, | ||
37 | * and (2 * PAGE_SIZE) (for kernel stacks) | ||
38 | * and with a second arg of zero. We assume in | ||
39 | * all of these cases that the buffer is aligned | ||
40 | * on at least an 8 byte boundary. | ||
41 | * | ||
42 | * Therefore we special case them to make them | ||
43 | * as fast as possible. | ||
44 | */ | ||
45 | |||
46 | .text | ||
47 | .align 4 | ||
48 | .globl bzero_1page, __copy_1page | ||
49 | |||
50 | bzero_1page: | ||
51 | /* NOTE: If you change the number of insns of this routine, please check | ||
52 | * arch/sparc/mm/hypersparc.S */ | ||
53 | /* %o0 = buf */ | ||
54 | or %g0, %g0, %g1 | ||
55 | or %o0, %g0, %o1 | ||
56 | or %g0, (PAGE_SIZE >> 8), %g2 | ||
57 | 1: | ||
58 | BLAST_BLOCK(%o0, 0x00) | ||
59 | BLAST_BLOCK(%o0, 0x40) | ||
60 | BLAST_BLOCK(%o0, 0x80) | ||
61 | BLAST_BLOCK(%o0, 0xc0) | ||
62 | subcc %g2, 1, %g2 | ||
63 | bne 1b | ||
64 | add %o0, 0x100, %o0 | ||
65 | |||
66 | retl | ||
67 | nop | ||
68 | |||
69 | __copy_1page: | ||
70 | /* NOTE: If you change the number of insns of this routine, please check | ||
71 | * arch/sparc/mm/hypersparc.S */ | ||
72 | /* %o0 = dst, %o1 = src */ | ||
73 | or %g0, (PAGE_SIZE >> 8), %g1 | ||
74 | 1: | ||
75 | MIRROR_BLOCK(%o0, %o1, 0x00, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
76 | MIRROR_BLOCK(%o0, %o1, 0x20, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
77 | MIRROR_BLOCK(%o0, %o1, 0x40, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
78 | MIRROR_BLOCK(%o0, %o1, 0x60, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
79 | MIRROR_BLOCK(%o0, %o1, 0x80, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
80 | MIRROR_BLOCK(%o0, %o1, 0xa0, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
81 | MIRROR_BLOCK(%o0, %o1, 0xc0, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
82 | MIRROR_BLOCK(%o0, %o1, 0xe0, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5) | ||
83 | subcc %g1, 1, %g1 | ||
84 | add %o0, 0x100, %o0 | ||
85 | bne 1b | ||
86 | add %o1, 0x100, %o1 | ||
87 | |||
88 | retl | ||
89 | nop | ||