1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 ARM Ltd.
6 #include <linux/linkage.h>
8 #include <asm/asm-uaccess.h>
9 #include <asm/assembler.h>
10 #include <asm/cache.h>
13 * Copy from user space to a kernel buffer (alignment handled by the hardware)
20 * x0 - bytes not copied
23 .macro ldrb1 ptr, regB, val
24 uao_user_alternative 9998f, ldrb, ldtrb, \ptr, \regB, \val
27 .macro strb1 ptr, regB, val
28 strb \ptr, [\regB], \val
31 .macro ldrh1 ptr, regB, val
32 uao_user_alternative 9998f, ldrh, ldtrh, \ptr, \regB, \val
35 .macro strh1 ptr, regB, val
36 strh \ptr, [\regB], \val
39 .macro ldr1 ptr, regB, val
40 uao_user_alternative 9998f, ldr, ldtr, \ptr, \regB, \val
43 .macro str1 ptr, regB, val
44 str \ptr, [\regB], \val
47 .macro ldp1 ptr, regB, regC, val
48 uao_ldp 9998f, \ptr, \regB, \regC, \val
51 .macro stp1 ptr, regB, regC, val
52 stp \ptr, \regB, [\regC], \val
56 ENTRY(__arch_copy_from_user)
57 uaccess_enable_not_uao x3, x4, x5
59 #include "copy_template.S"
60 uaccess_disable_not_uao x3, x4
61 mov x0, #0 // Nothing to copy
63 ENDPROC(__arch_copy_from_user)
64 EXPORT_SYMBOL(__arch_copy_from_user)
68 9998: sub x0, end, dst // bytes not copied