memcpy.S 1.8 KB
Newer Older
1 2
/*
 * Copyright (C) 2013 ARM Ltd.
3 4 5 6 7 8 9 10
 * Copyright (C) 2013 Linaro.
 *
 * This code is based on glibc cortex strings work originally authored by Linaro
 * and re-licensed under GPLv2 for the Linux kernel. The original code can
 * be found @
 *
 * http://bazaar.launchpad.net/~linaro-toolchain-dev/cortex-strings/trunk/
 * files/head:/src/aarch64/
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <linux/linkage.h>
#include <asm/assembler.h>
27
#include <asm/cache.h>
28 29 30 31 32 33 34 35 36 37 38

/*
 * Copy a buffer from src to dest (alignment handled by the hardware)
 *
 * Parameters:
 *	x0 - dest
 *	x1 - src
 *	x2 - n
 * Returns:
 *	x0 - dest
 */
39 40 41
	.macro ldrb1 ptr, regB, val
	ldrb  \ptr, [\regB], \val
	.endm
42

43 44 45
	.macro strb1 ptr, regB, val
	strb \ptr, [\regB], \val
	.endm
46

47 48 49
	.macro ldrh1 ptr, regB, val
	ldrh  \ptr, [\regB], \val
	.endm
50

51 52 53
	.macro strh1 ptr, regB, val
	strh \ptr, [\regB], \val
	.endm
54

55 56 57
	.macro ldr1 ptr, regB, val
	ldr \ptr, [\regB], \val
	.endm
58

59 60 61
	.macro str1 ptr, regB, val
	str \ptr, [\regB], \val
	.endm
62

63 64 65
	.macro ldp1 ptr, regB, regC, val
	ldp \ptr, \regB, [\regC], \val
	.endm
66

67 68 69
	.macro stp1 ptr, regB, regC, val
	stp \ptr, \regB, [\regC], \val
	.endm
70

A
Andrey Ryabinin 已提交
71 72
	.weak memcpy
ENTRY(__memcpy)
73 74
ENTRY(memcpy)
#include "copy_template.S"
75
	ret
76
ENDPIPROC(memcpy)
77
EXPORT_SYMBOL(memcpy)
A
Andrey Ryabinin 已提交
78
ENDPROC(__memcpy)
79
EXPORT_SYMBOL(__memcpy)