blob: f6cfcc0441de64e2e159557e1f3e3594bd011f3f [file] [log] [blame]
Catalin Marinas0aea86a2012-03-05 11:49:32 +00001/*
2 * Copyright (C) 2012 ARM Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include <linux/linkage.h>
James Morse338d4f42015-07-22 19:05:54 +010018
Feng Kan40426882015-09-23 11:55:39 -070019#include <asm/cache.h>
Catalin Marinas2962f1d2016-07-01 14:58:21 +010020#include <asm/uaccess.h>
Catalin Marinas0aea86a2012-03-05 11:49:32 +000021
22/*
23 * Copy to user space from a kernel buffer (alignment handled by the hardware)
24 *
25 * Parameters:
26 * x0 - to
27 * x1 - from
28 * x2 - n
29 * Returns:
30 * x0 - bytes not copied
31 */
Feng Kan40426882015-09-23 11:55:39 -070032 .macro ldrb1 ptr, regB, val
33 ldrb \ptr, [\regB], \val
34 .endm
35
36 .macro strb1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000037 uao_user_alternative 9998f, strb, sttrb, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070038 .endm
39
40 .macro ldrh1 ptr, regB, val
41 ldrh \ptr, [\regB], \val
42 .endm
43
44 .macro strh1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000045 uao_user_alternative 9998f, strh, sttrh, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070046 .endm
47
48 .macro ldr1 ptr, regB, val
49 ldr \ptr, [\regB], \val
50 .endm
51
52 .macro str1 ptr, regB, val
James Morse57f49592016-02-05 14:58:48 +000053 uao_user_alternative 9998f, str, sttr, \ptr, \regB, \val
Feng Kan40426882015-09-23 11:55:39 -070054 .endm
55
56 .macro ldp1 ptr, regB, regC, val
57 ldp \ptr, \regB, [\regC], \val
58 .endm
59
60 .macro stp1 ptr, regB, regC, val
James Morse57f49592016-02-05 14:58:48 +000061 uao_stp 9998f, \ptr, \regB, \regC, \val
Feng Kan40426882015-09-23 11:55:39 -070062 .endm
63
64end .req x5
Yang Shibffe1baff2016-06-08 14:40:56 -070065ENTRY(__arch_copy_to_user)
Will Deacon599c71f2017-08-10 13:58:16 +010066 uaccess_enable_not_uao x3, x4, x5
Feng Kan40426882015-09-23 11:55:39 -070067 add end, x0, x2
68#include "copy_template.S"
Catalin Marinas87883132018-01-10 13:18:30 +000069 uaccess_disable_not_uao x3, x4
Feng Kan40426882015-09-23 11:55:39 -070070 mov x0, #0
Catalin Marinas0aea86a2012-03-05 11:49:32 +000071 ret
Yang Shibffe1baff2016-06-08 14:40:56 -070072ENDPROC(__arch_copy_to_user)
Catalin Marinas0aea86a2012-03-05 11:49:32 +000073
74 .section .fixup,"ax"
75 .align 2
Feng Kan40426882015-09-23 11:55:39 -0700769998: sub x0, end, dst // bytes not copied
Catalin Marinas0aea86a2012-03-05 11:49:32 +000077 ret
78 .previous