2019-06-03 13:44:50 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-03-05 19:49:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 ARM Ltd.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
2015-07-23 02:05:54 +08:00
|
|
|
|
2016-12-26 17:10:19 +08:00
|
|
|
#include <asm/asm-uaccess.h>
|
2018-12-08 02:08:20 +08:00
|
|
|
#include <asm/assembler.h>
|
|
|
|
#include <asm/cache.h>
|
2012-03-05 19:49:32 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy from user space to a kernel buffer (alignment handled by the hardware)
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* x0 - to
|
|
|
|
* x1 - from
|
|
|
|
* x2 - n
|
|
|
|
* Returns:
|
|
|
|
* x0 - bytes not copied
|
|
|
|
*/
|
2015-09-24 02:55:39 +08:00
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro ldrb1 reg, ptr, val
|
|
|
|
uao_user_alternative 9998f, ldrb, ldtrb, \reg, \ptr, \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro strb1 reg, ptr, val
|
|
|
|
strb \reg, [\ptr], \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro ldrh1 reg, ptr, val
|
|
|
|
uao_user_alternative 9998f, ldrh, ldtrh, \reg, \ptr, \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro strh1 reg, ptr, val
|
|
|
|
strh \reg, [\ptr], \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro ldr1 reg, ptr, val
|
|
|
|
uao_user_alternative 9998f, ldr, ldtr, \reg, \ptr, \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro str1 reg, ptr, val
|
|
|
|
str \reg, [\ptr], \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro ldp1 reg1, reg2, ptr, val
|
|
|
|
uao_ldp 9998f, \reg1, \reg2, \ptr, \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
2020-04-30 02:37:02 +08:00
|
|
|
.macro stp1 reg1, reg2, ptr, val
|
|
|
|
stp \reg1, \reg2, [\ptr], \val
|
2015-09-24 02:55:39 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
end .req x5
|
2020-01-07 03:58:17 +08:00
|
|
|
SYM_FUNC_START(__arch_copy_from_user)
|
2015-09-24 02:55:39 +08:00
|
|
|
add end, x0, x2
|
|
|
|
#include "copy_template.S"
|
|
|
|
mov x0, #0 // Nothing to copy
|
2012-03-05 19:49:32 +08:00
|
|
|
ret
|
2020-01-07 03:58:17 +08:00
|
|
|
SYM_FUNC_END(__arch_copy_from_user)
|
2018-12-08 02:08:20 +08:00
|
|
|
EXPORT_SYMBOL(__arch_copy_from_user)
|
2012-03-05 19:49:32 +08:00
|
|
|
|
|
|
|
.section .fixup,"ax"
|
|
|
|
.align 2
|
2016-09-11 04:50:00 +08:00
|
|
|
9998: sub x0, end, dst // bytes not copied
|
2012-03-05 19:49:32 +08:00
|
|
|
ret
|
|
|
|
.previous
|