blob: c3cd65e3181414bcaf3ec5b50937f95bf895570b [file] [log] [blame]
Marc Zyngierf27bb132012-03-05 11:49:33 +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>
18#include <linux/const.h>
19#include <asm/assembler.h>
20#include <asm/page.h>
Andrew Pinski60e0a092016-02-02 12:46:26 +000021#include <asm/cpufeature.h>
22#include <asm/alternative.h>
Marc Zyngierf27bb132012-03-05 11:49:33 +000023
24/*
25 * Copy a page from src to dest (both are page aligned)
26 *
27 * Parameters:
28 * x0 - dest
29 * x1 - src
30 */
31ENTRY(copy_page)
Mark Rutland6ba3b552016-09-07 11:07:09 +010032alternative_if ARM64_HAS_NO_HW_PREFETCH
Andrew Pinski60e0a092016-02-02 12:46:26 +000033 # Prefetch two cache lines ahead.
34 prfm pldl1strm, [x1, #128]
35 prfm pldl1strm, [x1, #256]
Mark Rutland6ba3b552016-09-07 11:07:09 +010036alternative_else_nop_endif
Andrew Pinski60e0a092016-02-02 12:46:26 +000037
Will Deacon223e23e2016-02-02 12:46:25 +000038 ldp x2, x3, [x1]
Marc Zyngierf27bb132012-03-05 11:49:33 +000039 ldp x4, x5, [x1, #16]
40 ldp x6, x7, [x1, #32]
41 ldp x8, x9, [x1, #48]
Will Deacon223e23e2016-02-02 12:46:25 +000042 ldp x10, x11, [x1, #64]
43 ldp x12, x13, [x1, #80]
44 ldp x14, x15, [x1, #96]
45 ldp x16, x17, [x1, #112]
46
47 mov x18, #(PAGE_SIZE - 128)
48 add x1, x1, #128
491:
50 subs x18, x18, #128
51
Mark Rutland6ba3b552016-09-07 11:07:09 +010052alternative_if ARM64_HAS_NO_HW_PREFETCH
Andrew Pinski60e0a092016-02-02 12:46:26 +000053 prfm pldl1strm, [x1, #384]
Mark Rutland6ba3b552016-09-07 11:07:09 +010054alternative_else_nop_endif
Andrew Pinski60e0a092016-02-02 12:46:26 +000055
Will Deacon223e23e2016-02-02 12:46:25 +000056 stnp x2, x3, [x0]
57 ldp x2, x3, [x1]
58 stnp x4, x5, [x0, #16]
59 ldp x4, x5, [x1, #16]
60 stnp x6, x7, [x0, #32]
61 ldp x6, x7, [x1, #32]
62 stnp x8, x9, [x0, #48]
63 ldp x8, x9, [x1, #48]
64 stnp x10, x11, [x0, #64]
65 ldp x10, x11, [x1, #64]
66 stnp x12, x13, [x0, #80]
67 ldp x12, x13, [x1, #80]
68 stnp x14, x15, [x0, #96]
69 ldp x14, x15, [x1, #96]
70 stnp x16, x17, [x0, #112]
71 ldp x16, x17, [x1, #112]
72
73 add x0, x0, #128
74 add x1, x1, #128
75
76 b.gt 1b
77
Marc Zyngierf27bb132012-03-05 11:49:33 +000078 stnp x2, x3, [x0]
79 stnp x4, x5, [x0, #16]
80 stnp x6, x7, [x0, #32]
81 stnp x8, x9, [x0, #48]
Will Deacon223e23e2016-02-02 12:46:25 +000082 stnp x10, x11, [x0, #64]
83 stnp x12, x13, [x0, #80]
84 stnp x14, x15, [x0, #96]
85 stnp x16, x17, [x0, #112]
86
Marc Zyngierf27bb132012-03-05 11:49:33 +000087 ret
88ENDPROC(copy_page)