1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2021 Arm Ltd.
6 #include <linux/linkage.h>
7 #include <asm/asm-uaccess.h>
11 /* Prototype: int __arch_clear_user(void *addr, size_t sz)
12 * Purpose : clear some user memory
13 * Params : addr - user memory address to clear
14 * : sz - number of bytes to clear
15 * Returns : number of bytes NOT cleared
17 * Alignment fixed up by hardware.
21 // Alignment is for the loop, but since the prologue (including BTI)
22 // is also 16 bytes we can keep any padding outside the function
23 SYM_FUNC_START(__arch_clear_user)
28 USER(9f, sttr xzr, [x0])
32 USER(9f, sttr xzr, [x2, #-8])
37 USER(9f, sttr wzr, [x0])
38 USER(8f, sttr wzr, [x2, #-4])
43 USER(9f, sttrh wzr, [x0])
45 USER(7f, sttrb wzr, [x2, #-1])
50 7: sub x0, x2, #5 // Adjust for faulting on the final byte...
51 8: add x0, x0, #4 // ...or the second word of the 4-7 byte case
54 SYM_FUNC_END(__arch_clear_user)
55 EXPORT_SYMBOL(__arch_clear_user)