1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 ARM Ltd.
6 #include <linux/linkage.h>
7 #include <linux/const.h>
8 #include <asm/assembler.h>
10 #include <asm/cpufeature.h>
11 #include <asm/alternative.h>
14 * Copy a page from src to dest (both are page aligned)
20 SYM_FUNC_START(__pi_copy_page)
21 #ifdef CONFIG_AS_HAS_MOPS
23 alternative_if_not ARM64_HAS_MOPS
25 alternative_else_nop_endif
28 cpypwn [x0]!, [x1]!, x2!
29 cpymwn [x0]!, [x1]!, x2!
30 cpyewn [x0]!, [x1]!, x2!
38 ldp x10, x11, [x1, #64]
39 ldp x12, x13, [x1, #80]
40 ldp x14, x15, [x1, #96]
41 ldp x16, x17, [x1, #112]
46 tst x0, #(PAGE_SIZE - 1)
48 stnp x2, x3, [x0, #-256]
50 stnp x4, x5, [x0, #16 - 256]
52 stnp x6, x7, [x0, #32 - 256]
54 stnp x8, x9, [x0, #48 - 256]
56 stnp x10, x11, [x0, #64 - 256]
57 ldp x10, x11, [x1, #64]
58 stnp x12, x13, [x0, #80 - 256]
59 ldp x12, x13, [x1, #80]
60 stnp x14, x15, [x0, #96 - 256]
61 ldp x14, x15, [x1, #96]
62 stnp x16, x17, [x0, #112 - 256]
63 ldp x16, x17, [x1, #112]
70 stnp x2, x3, [x0, #-256]
71 stnp x4, x5, [x0, #16 - 256]
72 stnp x6, x7, [x0, #32 - 256]
73 stnp x8, x9, [x0, #48 - 256]
74 stnp x10, x11, [x0, #64 - 256]
75 stnp x12, x13, [x0, #80 - 256]
76 stnp x14, x15, [x0, #96 - 256]
77 stnp x16, x17, [x0, #112 - 256]
80 SYM_FUNC_END(__pi_copy_page)
81 SYM_FUNC_ALIAS(copy_page, __pi_copy_page)
82 EXPORT_SYMBOL(copy_page)