1 /* $NetBSD: bcopy_page.S,v 1.6.2.3 2004/09/21 13:13:08 skrll Exp $ */
4 * Copyright (c) 1995 Scott Stevens
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Scott Stevens.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * RiscBSD kernel project
36 * page optimised bcopy and bzero routines
41 #include <machine/asm.h>
47 /* #define BIG_LOOPS */
50 * bcopy_page(src, dest)
52 * Optimised copy page routine.
59 * number of bytes per page (PAGE_SIZE) is a multiple of 512 (BIG_LOOPS), 128
65 #define PREFETCH_FIRST_CHUNK /* nothing */
66 #define PREFETCH_NEXT_CHUNK /* nothing */
70 PREFETCH_NEXT_CHUNK ; \
71 ldmia r0!, {r3-r8,ip,lr} ; \
72 stmia r1!, {r3-r8,ip,lr}
73 #endif /* ! COPY_CHUNK */
76 #define SAVE_REGS stmfd sp!, {r4-r8, lr}
77 #define RESTORE_REGS ldmfd sp!, {r4-r8, pc}
84 mov r2, #(PAGE_SIZE >> 9)
86 mov r2, #(PAGE_SIZE >> 7)
96 /* There is little point making the loop any larger; unless we are
97 running with the cache off, the load/store overheads will
98 completely dominate this loop. */
117 RESTORE_REGS /* ...and return. */
122 * Optimised zero page routine.
128 * number of bytes per page (PAGE_SIZE) is a multiple of 512 (BIG_LOOPS), 128
133 stmfd sp!, {r4-r8, lr}
135 mov r2, #(PAGE_SIZE >> 9)
137 mov r2, #(PAGE_SIZE >> 7)
149 stmia r0!, {r3-r8,ip,lr}
150 stmia r0!, {r3-r8,ip,lr}
151 stmia r0!, {r3-r8,ip,lr}
152 stmia r0!, {r3-r8,ip,lr}
155 /* There is little point making the loop any larger; unless we are
156 running with the cache off, the load/store overheads will
157 completely dominate this loop. */
158 stmia r0!, {r3-r8,ip,lr}
159 stmia r0!, {r3-r8,ip,lr}
160 stmia r0!, {r3-r8,ip,lr}
161 stmia r0!, {r3-r8,ip,lr}
163 stmia r0!, {r3-r8,ip,lr}
164 stmia r0!, {r3-r8,ip,lr}
165 stmia r0!, {r3-r8,ip,lr}
166 stmia r0!, {r3-r8,ip,lr}
168 stmia r0!, {r3-r8,ip,lr}
169 stmia r0!, {r3-r8,ip,lr}
170 stmia r0!, {r3-r8,ip,lr}
171 stmia r0!, {r3-r8,ip,lr}
178 ldmfd sp!, {r4-r8, pc}
180 #else /* __XSCALE__ */
183 * XSCALE version of bcopy_page
189 ldr r2, [r0], #0x04 /* 0x00 */
190 ldr r3, [r0], #0x04 /* 0x04 */
191 1: pld [r0, #0x18] /* Prefetch 0x20 */
192 ldr r4, [r0], #0x04 /* 0x08 */
193 ldr r5, [r0], #0x04 /* 0x0c */
195 ldr r2, [r0], #0x04 /* 0x10 */
196 ldr r3, [r0], #0x04 /* 0x14 */
198 ldr r4, [r0], #0x04 /* 0x18 */
199 ldr r5, [r0], #0x04 /* 0x1c */
201 ldr r2, [r0], #0x04 /* 0x20 */
202 ldr r3, [r0], #0x04 /* 0x24 */
203 pld [r0, #0x18] /* Prefetch 0x40 */
205 ldr r4, [r0], #0x04 /* 0x28 */
206 ldr r5, [r0], #0x04 /* 0x2c */
208 ldr r2, [r0], #0x04 /* 0x30 */
209 ldr r3, [r0], #0x04 /* 0x34 */
211 ldr r4, [r0], #0x04 /* 0x38 */
212 ldr r5, [r0], #0x04 /* 0x3c */
214 ldr r2, [r0], #0x04 /* 0x40 */
215 ldr r3, [r0], #0x04 /* 0x44 */
216 pld [r0, #0x18] /* Prefetch 0x60 */
218 ldr r4, [r0], #0x04 /* 0x48 */
219 ldr r5, [r0], #0x04 /* 0x4c */
221 ldr r2, [r0], #0x04 /* 0x50 */
222 ldr r3, [r0], #0x04 /* 0x54 */
224 ldr r4, [r0], #0x04 /* 0x58 */
225 ldr r5, [r0], #0x04 /* 0x5c */
227 ldr r2, [r0], #0x04 /* 0x60 */
228 ldr r3, [r0], #0x04 /* 0x64 */
229 pld [r0, #0x18] /* Prefetch 0x80 */
231 ldr r4, [r0], #0x04 /* 0x68 */
232 ldr r5, [r0], #0x04 /* 0x6c */
234 ldr r2, [r0], #0x04 /* 0x70 */
235 ldr r3, [r0], #0x04 /* 0x74 */
237 ldr r4, [r0], #0x04 /* 0x78 */
238 ldr r5, [r0], #0x04 /* 0x7c */
241 ldrgt r2, [r0], #0x04 /* 0x80 */
242 ldrgt r3, [r0], #0x04 /* 0x84 */
249 * XSCALE version of bzero_page
255 1: strd r2, [r0], #8 /* 32 */
259 strd r2, [r0], #8 /* 64 */
263 strd r2, [r0], #8 /* 96 */
267 strd r2, [r0], #8 /* 128 */
274 #endif /* __XSCALE__ */