2 * copy_page, __copy_user_page, __copy_user implementation of SuperH
4 * Copyright (C) 2001 Niibe Yutaka & Kaz Kojima
5 * Copyright (C) 2002 Toshinobu Sugioka
6 * Copyright (C) 2006 Paul Mundt
8 #include <linux/linkage.h>
16 * void copy_page(void *to, void *from)
20 * r0, r1, r2, r3, r4, r5, r6, r7 --- scratch
21 * r8 --- from + PAGE_SIZE
44 #if defined(CONFIG_CPU_SH4)
58 #if defined(CONFIG_CPU_SH4)
72 .Lpsz: .long PAGE_SIZE
75 * __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n);
76 * Return the number of bytes NOT copied
80 .section __ex_table, "a"; \
81 .long 9999b, 6000f ; \
84 ! Check if small number of bytes
87 cmp/gt r0,r6 ! r6 (len) > r0 (11)
88 bf/s .L_cleanup_loop_no_pop
89 add r6,r3 ! last destination address
91 ! Calculate bytes needed to align to src
103 ! Copy bytes to long word align src
111 ! Jump to appropriate routine depending on dest
130 * Come here if there are less than 12 bytes to copy
132 * Keep the branch target close, so the bf/s callee doesn't overflow
133 * and result in a more expensive branch being inserted. This is the
134 * fast-path for small copies, the jump via the jump table will hit the
135 * default slow-path cleanup. -PFM.
137 .L_cleanup_loop_no_pop:
138 tst r6,r6 ! Check explicitly for zero
148 1: mov #0,r0 ! normal return
152 .section .fixup, "ax"
168 ! Skip the large copy for small transfers
170 cmp/gt r6, r0 ! r0 (60) > r6 (len)
173 ! Align dest to a 32 byte boundary
198 #ifdef CONFIG_CPU_SH4
204 EX( mov.l r1,@(4,r4) )
206 EX( mov.l r2,@(8,r4) )
207 cmp/gt r6, r0 ! r0 (32) > r6 (len)
208 EX( mov.l r7,@(12,r4) )
209 EX( mov.l r8,@(16,r4) )
210 EX( mov.l r9,@(20,r4) )
211 EX( mov.l r10,@(24,r4) )
212 EX( mov.l r11,@(28,r4) )
242 #ifdef CONFIG_CPU_LITTLE_ENDIAN
256 EX( mov.l r1,@(4,r4) )
257 EX( mov.l r8,@(8,r4) )
258 EX( mov.l r9,@(12,r4) )
267 EX( mov.l r10,@(16,r4) )
268 EX( mov.l r1,@(20,r4) )
269 EX( mov.l r8,@(24,r4) )
270 EX( mov.w r0,@(28,r4) )
274 EX( mov.l @(28,r5),r0 )
275 EX( mov.l @(24,r5),r8 )
276 EX( mov.l @(20,r5),r9 )
277 EX( mov.l @(16,r5),r10 )
278 EX( mov.w r0,@(30,r4) )
283 EX( mov.l r0,@(28,r4) )
284 EX( mov.l r8,@(24,r4) )
285 EX( mov.l r9,@(20,r4) )
287 EX( mov.l @(12,r5),r0 )
288 EX( mov.l @(8,r5),r8 )
290 EX( mov.l @(4,r5),r9 )
296 EX( mov.l r0,@(12,r4) )
297 EX( mov.l r8,@(8,r4) )
299 EX( mov.l r9,@(4,r4) )
300 EX( mov.w r0,@(2,r4) )
309 1: ! Read longword, write two words per iteration
312 #ifdef CONFIG_CPU_LITTLE_ENDIAN
315 EX( mov.w r0,@(2,r4) )
317 EX( mov.w r0,@(2,r4) )
327 ! Destination = 01 or 11
331 ! Read longword, write byte, word, byte per iteration
334 #ifdef CONFIG_CPU_LITTLE_ENDIAN
340 EX( mov.b r0,@(2,r4) )
344 EX( mov.b r0,@(3,r4) )
354 ! Cleanup last few bytes
370 mov #0,r0 ! normal return
375 .section .fixup, "ax"