2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Unified implementation of memcpy, memmove and the __copy_user backend.
8 * Copyright (C) 1998, 99, 2000, 01, 2002 Ralf Baechle (ralf@gnu.org)
9 * Copyright (C) 1999, 2000, 01, 2002 Silicon Graphics, Inc.
10 * Copyright (C) 2002 Broadcom, Inc.
11 * memcpy/copy_user author: Mark Vandevoorde
13 * Mnemonic names for arguments to memcpy/__copy_user
17 #include <asm/asm-offsets.h>
18 #include <asm/regdef.h>
27 * memcpy copies len bytes from src to dst and sets v0 to dst.
29 * - src and dst don't overlap
32 * memcpy uses the standard calling convention
34 * __copy_user copies up to len bytes from src to dst and sets a2 (len) to
35 * the number of uncopied bytes due to an exception caused by a read or write.
36 * __copy_user assumes that src and dst don't overlap, and that the call is
37 * implementing one of the following:
39 * - src is readable (no exceptions when reading src)
41 * - dst is writable (no exceptions when writing dst)
42 * __copy_user uses a non-standard calling convention; see
43 * arch/mips/include/asm/uaccess.h
45 * When an exception happens on a load, the handler must
46 # ensure that all of the destination buffer is overwritten to prevent
47 * leaking information to user mode programs.
55 * The exception handler for loads requires that:
56 * 1- AT contain the address of the byte just past the end of the source
58 * 2- src_entry <= src < AT, and
59 * 3- (dst - src) == (dst_entry - src_entry),
60 * The _entry suffix denotes values when __copy_user was called.
62 * (1) is set up up by uaccess.h and maintained by not writing AT in copy_user
63 * (2) is met by incrementing src by the number of bytes copied
64 * (3) is met by not doing loads between a pair of increments of dst and src
66 * The exception handlers for stores adjust len (if necessary) and return.
67 * These handlers do not need to overwrite any data.
69 * For __rmemcpy and memmove an exception is always a kernel bug, therefore
70 * they're not protected.
73 #define EXC(inst_reg,addr,handler) \
75 .section __ex_table,"a"; \
80 * Only on the 64-bit kernel we can made use of 64-bit registers.
100 * As we are sharing code base with the mips32 tree (which use the o32 ABI
101 * register definitions). We need to redefine the register definitions from
102 * the n64 ABI register naming to the o32 ABI register naming.
117 #ifdef CONFIG_CPU_LITTLE_ENDIAN
118 #define LDFIRST LOADR
120 #define STFIRST STORER
121 #define STREST STOREL
122 #define SHIFT_DISCARD SLLV
124 #define LDFIRST LOADL
126 #define STFIRST STOREL
127 #define STREST STORER
128 #define SHIFT_DISCARD SRLV
131 #define FIRST(unit) ((unit)*NBYTES)
132 #define REST(unit) (FIRST(unit)+NBYTES-1)
133 #define UNIT(unit) FIRST(unit)
135 #define ADDRMASK (NBYTES-1)
142 * t7 is used as a flag to note inatomic mode.
144 LEAF(__copy_user_inatomic)
147 END(__copy_user_inatomic)
150 * A combined memcpy/__copy_user
151 * __copy_user sets len to 0 for success; else to an upper bound of
152 * the number of uncopied bytes.
153 * memcpy sets v0 to dst.
156 LEAF(memcpy) /* a0=dst a1=src a2=len */
157 move v0, dst /* return value */
160 li t7, 0 /* not inatomic */
163 * Note: dst & src may be unaligned, len may be 0
167 # Octeon doesn't care if the destination is unaligned. The hardware
168 # can fix it faster than we can special case the assembly.
171 sltu t0, len, NBYTES # Check if < 1 word
172 bnez t0, copy_bytes_checklen
173 and t0, src, ADDRMASK # Check if src unaligned
174 bnez t0, src_unaligned
175 sltu t0, len, 4*NBYTES # Check if < 4 words
176 bnez t0, less_than_4units
177 sltu t0, len, 8*NBYTES # Check if < 8 words
178 bnez t0, less_than_8units
179 sltu t0, len, 16*NBYTES # Check if < 16 words
180 bnez t0, cleanup_both_aligned
181 sltu t0, len, 128+1 # Check if len < 129
182 bnez t0, 1f # Skip prefetch if len is too short
183 sltu t0, len, 256+1 # Check if len < 257
184 bnez t0, 1f # Skip prefetch if len is too short
185 pref 0, 128(src) # We must not prefetch invalid addresses
187 # This is where we loop if there is more than 128 bytes left
188 2: pref 0, 256(src) # We must not prefetch invalid addresses
190 # This is where we loop if we can't prefetch anymore
192 EXC( LOAD t0, UNIT(0)(src), l_exc)
193 EXC( LOAD t1, UNIT(1)(src), l_exc_copy)
194 EXC( LOAD t2, UNIT(2)(src), l_exc_copy)
195 EXC( LOAD t3, UNIT(3)(src), l_exc_copy)
196 SUB len, len, 16*NBYTES
197 EXC( STORE t0, UNIT(0)(dst), s_exc_p16u)
198 EXC( STORE t1, UNIT(1)(dst), s_exc_p15u)
199 EXC( STORE t2, UNIT(2)(dst), s_exc_p14u)
200 EXC( STORE t3, UNIT(3)(dst), s_exc_p13u)
201 EXC( LOAD t0, UNIT(4)(src), l_exc_copy)
202 EXC( LOAD t1, UNIT(5)(src), l_exc_copy)
203 EXC( LOAD t2, UNIT(6)(src), l_exc_copy)
204 EXC( LOAD t3, UNIT(7)(src), l_exc_copy)
205 EXC( STORE t0, UNIT(4)(dst), s_exc_p12u)
206 EXC( STORE t1, UNIT(5)(dst), s_exc_p11u)
207 EXC( STORE t2, UNIT(6)(dst), s_exc_p10u)
208 ADD src, src, 16*NBYTES
209 EXC( STORE t3, UNIT(7)(dst), s_exc_p9u)
210 ADD dst, dst, 16*NBYTES
211 EXC( LOAD t0, UNIT(-8)(src), l_exc_copy)
212 EXC( LOAD t1, UNIT(-7)(src), l_exc_copy)
213 EXC( LOAD t2, UNIT(-6)(src), l_exc_copy)
214 EXC( LOAD t3, UNIT(-5)(src), l_exc_copy)
215 EXC( STORE t0, UNIT(-8)(dst), s_exc_p8u)
216 EXC( STORE t1, UNIT(-7)(dst), s_exc_p7u)
217 EXC( STORE t2, UNIT(-6)(dst), s_exc_p6u)
218 EXC( STORE t3, UNIT(-5)(dst), s_exc_p5u)
219 EXC( LOAD t0, UNIT(-4)(src), l_exc_copy)
220 EXC( LOAD t1, UNIT(-3)(src), l_exc_copy)
221 EXC( LOAD t2, UNIT(-2)(src), l_exc_copy)
222 EXC( LOAD t3, UNIT(-1)(src), l_exc_copy)
223 EXC( STORE t0, UNIT(-4)(dst), s_exc_p4u)
224 EXC( STORE t1, UNIT(-3)(dst), s_exc_p3u)
225 EXC( STORE t2, UNIT(-2)(dst), s_exc_p2u)
226 EXC( STORE t3, UNIT(-1)(dst), s_exc_p1u)
227 sltu t0, len, 256+1 # See if we can prefetch more
229 sltu t0, len, 128 # See if we can loop more time
233 # Jump here if there are less than 16*NBYTES left.
235 cleanup_both_aligned:
237 sltu t0, len, 8*NBYTES
238 bnez t0, less_than_8units
240 EXC( LOAD t0, UNIT(0)(src), l_exc)
241 EXC( LOAD t1, UNIT(1)(src), l_exc_copy)
242 EXC( LOAD t2, UNIT(2)(src), l_exc_copy)
243 EXC( LOAD t3, UNIT(3)(src), l_exc_copy)
244 SUB len, len, 8*NBYTES
245 EXC( STORE t0, UNIT(0)(dst), s_exc_p8u)
246 EXC( STORE t1, UNIT(1)(dst), s_exc_p7u)
247 EXC( STORE t2, UNIT(2)(dst), s_exc_p6u)
248 EXC( STORE t3, UNIT(3)(dst), s_exc_p5u)
249 EXC( LOAD t0, UNIT(4)(src), l_exc_copy)
250 EXC( LOAD t1, UNIT(5)(src), l_exc_copy)
251 EXC( LOAD t2, UNIT(6)(src), l_exc_copy)
252 EXC( LOAD t3, UNIT(7)(src), l_exc_copy)
253 EXC( STORE t0, UNIT(4)(dst), s_exc_p4u)
254 EXC( STORE t1, UNIT(5)(dst), s_exc_p3u)
255 EXC( STORE t2, UNIT(6)(dst), s_exc_p2u)
256 EXC( STORE t3, UNIT(7)(dst), s_exc_p1u)
257 ADD src, src, 8*NBYTES
259 ADD dst, dst, 8*NBYTES
261 # Jump here if there are less than 8*NBYTES left.
264 sltu t0, len, 4*NBYTES
265 bnez t0, less_than_4units
267 EXC( LOAD t0, UNIT(0)(src), l_exc)
268 EXC( LOAD t1, UNIT(1)(src), l_exc_copy)
269 EXC( LOAD t2, UNIT(2)(src), l_exc_copy)
270 EXC( LOAD t3, UNIT(3)(src), l_exc_copy)
271 SUB len, len, 4*NBYTES
272 EXC( STORE t0, UNIT(0)(dst), s_exc_p4u)
273 EXC( STORE t1, UNIT(1)(dst), s_exc_p3u)
274 EXC( STORE t2, UNIT(2)(dst), s_exc_p2u)
275 EXC( STORE t3, UNIT(3)(dst), s_exc_p1u)
276 ADD src, src, 4*NBYTES
278 ADD dst, dst, 4*NBYTES
280 # Jump here if there are less than 4*NBYTES left. This means
281 # we may need to copy up to 3 NBYTES words.
284 sltu t0, len, 1*NBYTES
285 bnez t0, copy_bytes_checklen
288 # 1) Copy NBYTES, then check length again
290 EXC( LOAD t0, 0(src), l_exc)
293 EXC( STORE t0, 0(dst), s_exc_p1u)
295 bnez t1, copy_bytes_checklen
298 # 2) Copy NBYTES, then check length again
300 EXC( LOAD t0, 0(src), l_exc)
303 EXC( STORE t0, 0(dst), s_exc_p1u)
305 bnez t1, copy_bytes_checklen
308 # 3) Copy NBYTES, then check length again
310 EXC( LOAD t0, 0(src), l_exc)
314 b copy_bytes_checklen
315 EXC( STORE t0, -8(dst), s_exc_p1u)
319 SRL t0, len, LOG_NBYTES+2 # +2 for 4 units/iter
320 beqz t0, cleanup_src_unaligned
321 and rem, len, (4*NBYTES-1) # rem = len % 4*NBYTES
324 * Avoid consecutive LD*'s to the same register since some mips
325 * implementations can't issue them in the same cycle.
326 * It's OK to load FIRST(N+1) before REST(N) because the two addresses
327 * are to the same unit (unless src is aligned, but it's not).
329 EXC( LDFIRST t0, FIRST(0)(src), l_exc)
330 EXC( LDFIRST t1, FIRST(1)(src), l_exc_copy)
331 SUB len, len, 4*NBYTES
332 EXC( LDREST t0, REST(0)(src), l_exc_copy)
333 EXC( LDREST t1, REST(1)(src), l_exc_copy)
334 EXC( LDFIRST t2, FIRST(2)(src), l_exc_copy)
335 EXC( LDFIRST t3, FIRST(3)(src), l_exc_copy)
336 EXC( LDREST t2, REST(2)(src), l_exc_copy)
337 EXC( LDREST t3, REST(3)(src), l_exc_copy)
338 ADD src, src, 4*NBYTES
339 EXC( STORE t0, UNIT(0)(dst), s_exc_p4u)
340 EXC( STORE t1, UNIT(1)(dst), s_exc_p3u)
341 EXC( STORE t2, UNIT(2)(dst), s_exc_p2u)
342 EXC( STORE t3, UNIT(3)(dst), s_exc_p1u)
344 ADD dst, dst, 4*NBYTES
346 cleanup_src_unaligned:
348 and rem, len, NBYTES-1 # rem = len % NBYTES
349 beq rem, len, copy_bytes
352 EXC( LDFIRST t0, FIRST(0)(src), l_exc)
353 EXC( LDREST t0, REST(0)(src), l_exc_copy)
355 EXC( STORE t0, 0(dst), s_exc_p1u)
364 /* 0 < len < NBYTES */
365 #define COPY_BYTE(N) \
366 EXC( lb t0, N(src), l_exc); \
369 EXC( sb t0, N(dst), s_exc_p1)
377 EXC( lb t0, NBYTES-2(src), l_exc)
380 EXC( sb t0, NBYTES-2(dst), s_exc_p1)
388 * Copy bytes from src until faulting load address (or until a
391 * When reached by a faulting LDFIRST/LDREST, THREAD_BUADDR($28)
392 * may be more than a byte beyond the last address.
393 * Hence, the lb below may get an exception.
395 * Assumes src < THREAD_BUADDR($28)
397 LOAD t0, TI_TASK($28)
398 LOAD t0, THREAD_BUADDR(t0)
400 EXC( lb t1, 0(src), l_exc)
402 sb t1, 0(dst) # can't fault -- we're copy_from_user
406 LOAD t0, TI_TASK($28)
407 LOAD t0, THREAD_BUADDR(t0) # t0 is just past last good address
408 SUB len, AT, t0 # len number of uncopied bytes
409 bnez t7, 2f /* Skip the zeroing out part if inatomic */
411 * Here's where we rely on src and dst being incremented in tandem,
413 * dst += (fault addr - src) to put dst at first byte to clear
415 ADD dst, t0 # compute start address in a1
418 * Clear len bytes starting at dst. Can't call __bzero because it
419 * might modify len. An inefficient loop for these rare times...
434 ADD len, len, n*NBYTES
464 sltu t0, a1, t0 # dst + len <= src -> memcpy
465 sltu t1, a0, t1 # dst >= src + len -> memcpy
468 move v0, a0 /* return value */
472 /* fall through to __rmemcpy */
473 LEAF(__rmemcpy) /* a0=dst a1=src a2=len */
475 beqz t0, r_end_bytes_up # src >= dst
477 ADD a0, a2 # dst = dst + len
478 ADD a1, a2 # src = src + len
497 bnez a2, r_end_bytes_up