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_slow(void *to, void *from)
20 * r0, r1, r2, r3, r4, r5, r6, r7 --- scratch
21 * r8 --- from + PAGE_SIZE
44 #if defined(CONFIG_CPU_SH3)
46 #elif defined(CONFIG_CPU_SH4)
58 #if defined(CONFIG_CPU_SH4)
72 .Lpsz: .long PAGE_SIZE
74 * __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n);
75 * Return the number of bytes NOT copied
79 .section __ex_table, "a"; \
80 .long 9999b, 6000f ; \
83 ! Check if small number of bytes
86 cmp/gt r0,r6 ! r6 (len) > r0 (11)
87 bf/s .L_cleanup_loop_no_pop
88 add r6,r3 ! last destination address
90 ! Calculate bytes needed to align to src
102 ! Copy bytes to long word align src
110 ! Jump to appropriate routine depending on dest
129 * Come here if there are less than 12 bytes to copy
131 * Keep the branch target close, so the bf/s callee doesn't overflow
132 * and result in a more expensive branch being inserted. This is the
133 * fast-path for small copies, the jump via the jump table will hit the
134 * default slow-path cleanup. -PFM.
136 .L_cleanup_loop_no_pop:
137 tst r6,r6 ! Check explicitly for zero
147 1: mov #0,r0 ! normal return
151 .section .fixup, "ax"
167 ! Skip the large copy for small transfers
169 cmp/gt r6, r0 ! r0 (60) > r6 (len)
172 ! Align dest to a 32 byte boundary
197 #ifdef CONFIG_CPU_SH4
203 EX( mov.l r1,@(4,r4) )
205 EX( mov.l r2,@(8,r4) )
206 cmp/gt r6, r0 ! r0 (32) > r6 (len)
207 EX( mov.l r7,@(12,r4) )
208 EX( mov.l r8,@(16,r4) )
209 EX( mov.l r9,@(20,r4) )
210 EX( mov.l r10,@(24,r4) )
211 EX( mov.l r11,@(28,r4) )
241 #ifdef CONFIG_CPU_LITTLE_ENDIAN
255 EX( mov.l r1,@(4,r4) )
256 EX( mov.l r8,@(8,r4) )
257 EX( mov.l r9,@(12,r4) )
266 EX( mov.l r10,@(16,r4) )
267 EX( mov.l r1,@(20,r4) )
268 EX( mov.l r8,@(24,r4) )
269 EX( mov.w r0,@(28,r4) )
273 EX( mov.l @(28,r5),r0 )
274 EX( mov.l @(24,r5),r8 )
275 EX( mov.l @(20,r5),r9 )
276 EX( mov.l @(16,r5),r10 )
277 EX( mov.w r0,@(30,r4) )
282 EX( mov.l r0,@(28,r4) )
283 EX( mov.l r8,@(24,r4) )
284 EX( mov.l r9,@(20,r4) )
286 EX( mov.l @(12,r5),r0 )
287 EX( mov.l @(8,r5),r8 )
289 EX( mov.l @(4,r5),r9 )
295 EX( mov.l r0,@(12,r4) )
296 EX( mov.l r8,@(8,r4) )
298 EX( mov.l r9,@(4,r4) )
299 EX( mov.w r0,@(2,r4) )
308 1: ! Read longword, write two words per iteration
311 #ifdef CONFIG_CPU_LITTLE_ENDIAN
314 EX( mov.w r0,@(2,r4) )
316 EX( mov.w r0,@(2,r4) )
326 ! Destination = 01 or 11
330 ! Read longword, write byte, word, byte per iteration
333 #ifdef CONFIG_CPU_LITTLE_ENDIAN
339 EX( mov.b r0,@(2,r4) )
343 EX( mov.b r0,@(3,r4) )
353 ! Cleanup last few bytes
369 mov #0,r0 ! normal return
374 .section .fixup, "ax"