2 * Copyright (C) 2002 Paul Mackerras, IBM Corp.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 #include <asm/processor.h>
10 #include <asm/ppc_asm.h>
13 #define sLd sld /* Shift towards low-numbered address. */
14 #define sHd srd /* Shift towards high-numbered address. */
16 #define sLd srd /* Shift towards low-numbered address. */
17 #define sHd sld /* Shift towards high-numbered address. */
21 _GLOBAL_TOC(__copy_tofrom_user)
25 b __copy_tofrom_user_power7
26 ALT_FTR_SECTION_END_IFCLR(CPU_FTR_VMX_COPY)
27 _GLOBAL(__copy_tofrom_user_base)
28 /* first check for a whole page copy on a page boundary */
32 neg r6,r3 /* LS 3 bits = # bytes to 8-byte dest bdry */
35 crand cr0*4+2,cr0*4+2,cr6*4+2
43 /* Below we want to nop out the bne if we're on a CPU that has the
44 * CPU_FTR_UNALIGNED_LD_STD bit set and the CPU_FTR_CP_USE_DCBTZ bit
46 * At the time of writing the only CPU that has this combination of bits
53 ALT_FTR_SECTION_END(CPU_FTR_UNALIGNED_LD_STD | CPU_FTR_CP_USE_DCBTZ, \
54 CPU_FTR_UNALIGNED_LD_STD)
60 END_FTR_SECTION_IFCLR(CPU_FTR_UNALIGNED_LD_STD)
61 blt cr1,.Ldo_tail /* if < 16 bytes to copy */
127 24: ld r9,0(r4) /* 3+2n loads, 2+2n stores */
138 28: ld r0,0(r4) /* 4+2n loads, 3+2n stores */
183 #ifdef __BIG_ENDIAN__
187 #ifdef __LITTLE_ENDIAN__
192 #ifdef __BIG_ENDIAN__
196 #ifdef __LITTLE_ENDIAN__
201 #ifdef __BIG_ENDIAN__
205 #ifdef __LITTLE_ENDIAN__
212 PPC_MTOCRF(0x01,r6) /* put #bytes to 8B bdry into cr7 */
227 3: PPC_MTOCRF(0x01,r5)
257 * exception handlers follow
258 * we have to return the number of bytes not copied
259 * for an exception on a load, we set the rest of the destination to 0
298 * here we have had a fault on a load and r3 points to the first
299 * unmodified byte of the destination
306 subf r5,r6,r5 /* #bytes left to go */
309 * first see if we can copy any more bytes before hitting another exception
317 li r3,0 /* huh? all copied successfully this time? */
321 * here we have trapped again, need to clear ctr bytes starting at r3
326 mr r3,r5 /* return the number of bytes not copied */
350 * exception handlers for stores: we just need to work
351 * out how many bytes weren't copied
390 subf r3,r3,r6 /* #bytes not copied */
394 blr /* #bytes not copied in r3 */
396 .section __ex_table,"a"
462 * Routine to copy a whole page of data, optimized for POWER4.
463 * On POWER4 it is more than 50% faster than the simple loop
464 * above (following the .Ldst_aligned label).
580 * on an exception, reset to the beginning and jump back into the
581 * standard __copy_tofrom_user
600 .section __ex_table,"a"