Catalin Marinas | 0aea86a | 2012-03-05 11:49:32 +0000 | [diff] [blame] | 1 | /* |
| 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 Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 18 | |
Al Viro | b4b8664 | 2016-12-26 04:10:19 -0500 | [diff] [blame] | 19 | #include <asm/asm-uaccess.h> |
Mark Rutland | 56c08ec | 2018-12-07 18:08:20 +0000 | [diff] [blame] | 20 | #include <asm/assembler.h> |
| 21 | #include <asm/cache.h> |
Catalin Marinas | 0aea86a | 2012-03-05 11:49:32 +0000 | [diff] [blame] | 22 | |
| 23 | /* |
| 24 | * Copy from user space to a kernel buffer (alignment handled by the hardware) |
| 25 | * |
| 26 | * Parameters: |
| 27 | * x0 - to |
| 28 | * x1 - from |
| 29 | * x2 - n |
| 30 | * Returns: |
| 31 | * x0 - bytes not copied |
| 32 | */ |
Feng Kan | 4042688 | 2015-09-23 11:55:39 -0700 | [diff] [blame] | 33 | |
| 34 | .macro ldrb1 ptr, regB, val |
James Morse | 57f4959 | 2016-02-05 14:58:48 +0000 | [diff] [blame] | 35 | uao_user_alternative 9998f, ldrb, ldtrb, \ptr, \regB, \val |
Feng Kan | 4042688 | 2015-09-23 11:55:39 -0700 | [diff] [blame] | 36 | .endm |
| 37 | |
| 38 | .macro strb1 ptr, regB, val |
| 39 | strb \ptr, [\regB], \val |
| 40 | .endm |
| 41 | |
| 42 | .macro ldrh1 ptr, regB, val |
James Morse | 57f4959 | 2016-02-05 14:58:48 +0000 | [diff] [blame] | 43 | uao_user_alternative 9998f, ldrh, ldtrh, \ptr, \regB, \val |
Feng Kan | 4042688 | 2015-09-23 11:55:39 -0700 | [diff] [blame] | 44 | .endm |
| 45 | |
| 46 | .macro strh1 ptr, regB, val |
| 47 | strh \ptr, [\regB], \val |
| 48 | .endm |
| 49 | |
| 50 | .macro ldr1 ptr, regB, val |
James Morse | 57f4959 | 2016-02-05 14:58:48 +0000 | [diff] [blame] | 51 | uao_user_alternative 9998f, ldr, ldtr, \ptr, \regB, \val |
Feng Kan | 4042688 | 2015-09-23 11:55:39 -0700 | [diff] [blame] | 52 | .endm |
| 53 | |
| 54 | .macro str1 ptr, regB, val |
| 55 | str \ptr, [\regB], \val |
| 56 | .endm |
| 57 | |
| 58 | .macro ldp1 ptr, regB, regC, val |
James Morse | 57f4959 | 2016-02-05 14:58:48 +0000 | [diff] [blame] | 59 | uao_ldp 9998f, \ptr, \regB, \regC, \val |
Feng Kan | 4042688 | 2015-09-23 11:55:39 -0700 | [diff] [blame] | 60 | .endm |
| 61 | |
| 62 | .macro stp1 ptr, regB, regC, val |
| 63 | stp \ptr, \regB, [\regC], \val |
| 64 | .endm |
| 65 | |
| 66 | end .req x5 |
Yang Shi | bffe1ba | 2016-06-08 14:40:56 -0700 | [diff] [blame] | 67 | ENTRY(__arch_copy_from_user) |
Will Deacon | 27a921e | 2017-08-10 13:58:16 +0100 | [diff] [blame] | 68 | uaccess_enable_not_uao x3, x4, x5 |
Feng Kan | 4042688 | 2015-09-23 11:55:39 -0700 | [diff] [blame] | 69 | add end, x0, x2 |
| 70 | #include "copy_template.S" |
Catalin Marinas | 6b88a32 | 2018-01-10 13:18:30 +0000 | [diff] [blame] | 71 | uaccess_disable_not_uao x3, x4 |
Feng Kan | 4042688 | 2015-09-23 11:55:39 -0700 | [diff] [blame] | 72 | mov x0, #0 // Nothing to copy |
Catalin Marinas | 0aea86a | 2012-03-05 11:49:32 +0000 | [diff] [blame] | 73 | ret |
Yang Shi | bffe1ba | 2016-06-08 14:40:56 -0700 | [diff] [blame] | 74 | ENDPROC(__arch_copy_from_user) |
Mark Rutland | 56c08ec | 2018-12-07 18:08:20 +0000 | [diff] [blame] | 75 | EXPORT_SYMBOL(__arch_copy_from_user) |
Catalin Marinas | 0aea86a | 2012-03-05 11:49:32 +0000 | [diff] [blame] | 76 | |
| 77 | .section .fixup,"ax" |
| 78 | .align 2 |
Al Viro | 4855bd2 | 2016-09-10 16:50:00 -0400 | [diff] [blame] | 79 | 9998: sub x0, end, dst // bytes not copied |
Catalin Marinas | 0aea86a | 2012-03-05 11:49:32 +0000 | [diff] [blame] | 80 | ret |
| 81 | .previous |