blob: 841bf8f7fab7263c28208c4a9451ff8fd458b787 [file] [log] [blame]
Catalin Marinas0aea86a2012-03-05 11:49:32 +00001/*
2 * Copy from user space to user space
3 *
4 * Copyright (C) 2012 ARM Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include <linux/linkage.h>
James Morse338d4f42015-07-22 19:05:54 +010020
21#include <asm/alternative.h>
Catalin Marinas0aea86a2012-03-05 11:49:32 +000022#include <asm/assembler.h>
Feng Kan40426882015-09-23 11:55:39 -070023#include <asm/cache.h>
James Morse338d4f42015-07-22 19:05:54 +010024#include <asm/cpufeature.h>
25#include <asm/sysreg.h>
Catalin Marinas0aea86a2012-03-05 11:49:32 +000026
27/*
28 * Copy from user space to user space (alignment handled by the hardware)
29 *
30 * Parameters:
31 * x0 - to
32 * x1 - from
33 * x2 - n
34 * Returns:
35 * x0 - bytes not copied
36 */
Feng Kan40426882015-09-23 11:55:39 -070037 .macro ldrb1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000038 uao_user_alternative 9998f, ldrb, ldtrb, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070039 .endm
40
41 .macro strb1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000042 uao_user_alternative 9998f, strb, sttrb, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070043 .endm
44
45 .macro ldrh1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000046 uao_user_alternative 9998f, ldrh, ldtrh, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070047 .endm
48
49 .macro strh1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000050 uao_user_alternative 9998f, strh, sttrh, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070051 .endm
52
53 .macro ldr1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000054 uao_user_alternative 9998f, ldr, ldtr, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070055 .endm
56
57 .macro str1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000058 uao_user_alternative 9998f, str, sttr, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070059 .endm
60
61 .macro ldp1 ptr, regB, regC, val
James Morse57f49592016-02-05 14:58:48 +000062 uao_ldp 9998f, \ptr, \regB, \regC, \val
Feng Kan40426882015-09-23 11:55:39 -070063 .endm
64
65 .macro stp1 ptr, regB, regC, val
James Morse57f49592016-02-05 14:58:48 +000066 uao_stp 9998f, \ptr, \regB, \regC, \val
Feng Kan40426882015-09-23 11:55:39 -070067 .endm
68
69end .req x5
Mark Rutland4504c5c2018-04-12 12:11:05 +010070ENTRY(__arch_copy_in_user)
James Morse70544192016-02-05 14:58:50 +000071ALTERNATIVE("nop", __stringify(SET_PSTATE_PAN(0)), ARM64_ALT_PAN_NOT_UAO, \
James Morse338d4f42015-07-22 19:05:54 +010072 CONFIG_ARM64_PAN)
Feng Kan40426882015-09-23 11:55:39 -070073 add end, x0, x2
74#include "copy_template.S"
James Morse70544192016-02-05 14:58:50 +000075ALTERNATIVE("nop", __stringify(SET_PSTATE_PAN(1)), ARM64_ALT_PAN_NOT_UAO, \
James Morse338d4f42015-07-22 19:05:54 +010076 CONFIG_ARM64_PAN)
Feng Kan40426882015-09-23 11:55:39 -070077 mov x0, #0
Catalin Marinas0aea86a2012-03-05 11:49:32 +000078 ret
Mark Rutland4504c5c2018-04-12 12:11:05 +010079ENDPROC(__arch_copy_in_user)
Catalin Marinas0aea86a2012-03-05 11:49:32 +000080
81 .section .fixup,"ax"
82 .align 2
Feng Kan40426882015-09-23 11:55:39 -0700839998: sub x0, end, dst // bytes not copied
Catalin Marinas0aea86a2012-03-05 11:49:32 +000084 ret
85 .previous