blob: 2d881f34dd9d54017c7565cc5749d88084ab4235 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +00002/*
3 * Cache maintenance
4 *
5 * Copyright (C) 2001 Deep Blue Solutions Ltd.
6 * Copyright (C) 2012 ARM Ltd.
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +00007 */
8
Vladimir Murzina2d25a52014-12-01 10:53:08 +00009#include <linux/errno.h>
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000010#include <linux/linkage.h>
11#include <linux/init.h>
12#include <asm/assembler.h>
Andre Przywara301bcfa2014-11-14 15:54:10 +000013#include <asm/cpufeature.h>
Marc Zyngier8d883b22015-06-01 10:47:41 +010014#include <asm/alternative.h>
Al Virob4b86642016-12-26 04:10:19 -050015#include <asm/asm-uaccess.h>
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000016
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000017/*
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000018 * flush_icache_range(start,end)
19 *
20 * Ensure that the I and D caches are coherent within specified region.
21 * This is typically used when code has been written to a memory region,
22 * and will be executed.
23 *
24 * - start - virtual start address of region
25 * - end - virtual end address of region
26 */
Mark Brownf4659254a2020-01-06 19:58:18 +000027SYM_FUNC_START(__flush_icache_range)
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000028 /* FALLTHROUGH */
29
30/*
31 * __flush_cache_user_range(start,end)
32 *
33 * Ensure that the I and D caches are coherent within specified region.
34 * This is typically used when code has been written to a memory region,
35 * and will be executed.
36 *
37 * - start - virtual start address of region
38 * - end - virtual end address of region
39 */
Mark Brownf4659254a2020-01-06 19:58:18 +000040SYM_FUNC_START(__flush_cache_user_range)
Christoffer Dall448fadc2018-01-09 11:51:58 +010041 uaccess_ttbr0_enable x2, x3, x4
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -060042alternative_if ARM64_HAS_CACHE_IDC
43 dsb ishst
44 b 7f
45alternative_else_nop_endif
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000046 dcache_line_size x2, x3
47 sub x3, x2, #1
48 bic x4, x0, x3
491:
Andre Przywara290622e2016-06-28 18:07:28 +010050user_alt 9f, "dc cvau, x4", "dc civac, x4", ARM64_WORKAROUND_CLEAN_CACHE
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000051 add x4, x4, x2
52 cmp x4, x1
53 b.lo 1b
Will Deacondc60b772014-05-02 16:24:15 +010054 dsb ish
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000055
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600567:
57alternative_if ARM64_HAS_CACHE_DIC
58 isb
59 b 8f
60alternative_else_nop_endif
Marc Zyngier4fee9472017-10-23 17:11:16 +010061 invalidate_icache_by_line x0, x1, x2, x3, 9f
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600628: mov x0, #0
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100631:
Christoffer Dall0482b502018-01-17 12:35:27 +010064 uaccess_ttbr0_disable x1, x2
Vladimir Murzina2d25a52014-12-01 10:53:08 +000065 ret
669:
67 mov x0, #-EFAULT
Catalin Marinas39bc88e2016-09-02 14:54:03 +010068 b 1b
Mark Brownf4659254a2020-01-06 19:58:18 +000069SYM_FUNC_END(__flush_icache_range)
70SYM_FUNC_END(__flush_cache_user_range)
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000071
72/*
Marc Zyngier4fee9472017-10-23 17:11:16 +010073 * invalidate_icache_range(start,end)
74 *
75 * Ensure that the I cache is invalid within specified region.
76 *
77 * - start - virtual start address of region
78 * - end - virtual end address of region
79 */
Mark Brownf4659254a2020-01-06 19:58:18 +000080SYM_FUNC_START(invalidate_icache_range)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -060081alternative_if ARM64_HAS_CACHE_DIC
82 mov x0, xzr
83 isb
84 ret
85alternative_else_nop_endif
86
Christoffer Dall448fadc2018-01-09 11:51:58 +010087 uaccess_ttbr0_enable x2, x3, x4
Marc Zyngier4fee9472017-10-23 17:11:16 +010088
89 invalidate_icache_by_line x0, x1, x2, x3, 2f
90 mov x0, xzr
911:
Christoffer Dall0482b502018-01-17 12:35:27 +010092 uaccess_ttbr0_disable x1, x2
Marc Zyngier4fee9472017-10-23 17:11:16 +010093 ret
942:
95 mov x0, #-EFAULT
96 b 1b
Mark Brownf4659254a2020-01-06 19:58:18 +000097SYM_FUNC_END(invalidate_icache_range)
Marc Zyngier4fee9472017-10-23 17:11:16 +010098
99/*
Jingoo Han03324e62014-01-21 01:17:47 +0000100 * __flush_dcache_area(kaddr, size)
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +0000101 *
Ashok Kumar0a287142015-12-17 01:38:32 -0800102 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
103 * are cleaned and invalidated to the PoC.
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +0000104 *
105 * - kaddr - kernel address
106 * - size - size in question
107 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000108SYM_FUNC_START_PI(__flush_dcache_area)
Ashok Kumar0a287142015-12-17 01:38:32 -0800109 dcache_by_line_op civac, sy, x0, x1, x2, x3
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +0000110 ret
Mark Brownf4659254a2020-01-06 19:58:18 +0000111SYM_FUNC_END_PI(__flush_dcache_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100112
113/*
Ashok Kumar0a287142015-12-17 01:38:32 -0800114 * __clean_dcache_area_pou(kaddr, size)
115 *
116 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
117 * are cleaned to the PoU.
118 *
119 * - kaddr - kernel address
120 * - size - size in question
121 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000122SYM_FUNC_START(__clean_dcache_area_pou)
Shanker Donthineni6ae4b6e2018-03-07 09:00:08 -0600123alternative_if ARM64_HAS_CACHE_IDC
124 dsb ishst
125 ret
126alternative_else_nop_endif
Ashok Kumar0a287142015-12-17 01:38:32 -0800127 dcache_by_line_op cvau, ish, x0, x1, x2, x3
128 ret
Mark Brownf4659254a2020-01-06 19:58:18 +0000129SYM_FUNC_END(__clean_dcache_area_pou)
Ashok Kumar0a287142015-12-17 01:38:32 -0800130
131/*
Robin Murphyd46befe2017-07-25 11:55:39 +0100132 * __inval_dcache_area(kaddr, size)
133 *
134 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
135 * are invalidated. Any partial lines at the ends of the interval are
136 * also cleaned to PoC to prevent data loss.
137 *
138 * - kaddr - kernel address
139 * - size - size in question
140 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000141SYM_FUNC_START_LOCAL(__dma_inv_area)
142SYM_FUNC_START_PI(__inval_dcache_area)
Robin Murphyd46befe2017-07-25 11:55:39 +0100143 /* FALLTHROUGH */
144
145/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900146 * __dma_inv_area(start, size)
147 * - start - virtual start address of region
148 * - size - size in question
149 */
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900150 add x1, x1, x0
Catalin Marinas73635902013-05-21 17:35:19 +0100151 dcache_line_size x2, x3
152 sub x3, x2, #1
Catalin Marinasebf81a92014-04-01 18:32:55 +0100153 tst x1, x3 // end cache line aligned?
Catalin Marinas73635902013-05-21 17:35:19 +0100154 bic x1, x1, x3
Catalin Marinasebf81a92014-04-01 18:32:55 +0100155 b.eq 1f
156 dc civac, x1 // clean & invalidate D / U line
1571: tst x0, x3 // start cache line aligned?
158 bic x0, x0, x3
159 b.eq 2f
160 dc civac, x0 // clean & invalidate D / U line
161 b 3f
1622: dc ivac, x0 // invalidate D / U line
1633: add x0, x0, x2
Catalin Marinas73635902013-05-21 17:35:19 +0100164 cmp x0, x1
Catalin Marinasebf81a92014-04-01 18:32:55 +0100165 b.lo 2b
Catalin Marinas73635902013-05-21 17:35:19 +0100166 dsb sy
167 ret
Mark Brownf4659254a2020-01-06 19:58:18 +0000168SYM_FUNC_END_PI(__inval_dcache_area)
169SYM_FUNC_END(__dma_inv_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100170
171/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900172 * __clean_dcache_area_poc(kaddr, size)
173 *
174 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
175 * are cleaned to the PoC.
176 *
177 * - kaddr - kernel address
178 * - size - size in question
Catalin Marinas73635902013-05-21 17:35:19 +0100179 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000180SYM_FUNC_START_LOCAL(__dma_clean_area)
181SYM_FUNC_START_PI(__clean_dcache_area_poc)
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900182 /* FALLTHROUGH */
Catalin Marinas73635902013-05-21 17:35:19 +0100183
184/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900185 * __dma_clean_area(start, size)
Catalin Marinas73635902013-05-21 17:35:19 +0100186 * - start - virtual start address of region
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900187 * - size - size in question
Catalin Marinas73635902013-05-21 17:35:19 +0100188 */
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900189 dcache_by_line_op cvac, sy, x0, x1, x2, x3
Catalin Marinas73635902013-05-21 17:35:19 +0100190 ret
Mark Brownf4659254a2020-01-06 19:58:18 +0000191SYM_FUNC_END_PI(__clean_dcache_area_poc)
192SYM_FUNC_END(__dma_clean_area)
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900193
194/*
Robin Murphyd50e0712017-07-25 11:55:42 +0100195 * __clean_dcache_area_pop(kaddr, size)
196 *
197 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
198 * are cleaned to the PoP.
199 *
200 * - kaddr - kernel address
201 * - size - size in question
202 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000203SYM_FUNC_START_PI(__clean_dcache_area_pop)
Will Deacon33309ec2018-12-10 13:39:48 +0000204 alternative_if_not ARM64_HAS_DCPOP
205 b __clean_dcache_area_poc
206 alternative_else_nop_endif
Robin Murphyd50e0712017-07-25 11:55:42 +0100207 dcache_by_line_op cvap, sy, x0, x1, x2, x3
208 ret
Mark Brownf4659254a2020-01-06 19:58:18 +0000209SYM_FUNC_END_PI(__clean_dcache_area_pop)
Robin Murphyd50e0712017-07-25 11:55:42 +0100210
211/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900212 * __dma_flush_area(start, size)
213 *
214 * clean & invalidate D / U line
215 *
216 * - start - virtual start address of region
217 * - size - size in question
218 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000219SYM_FUNC_START_PI(__dma_flush_area)
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900220 dcache_by_line_op civac, sy, x0, x1, x2, x3
221 ret
Mark Brownf4659254a2020-01-06 19:58:18 +0000222SYM_FUNC_END_PI(__dma_flush_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100223
224/*
225 * __dma_map_area(start, size, dir)
226 * - start - kernel virtual start address
227 * - size - size of region
228 * - dir - DMA direction
229 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000230SYM_FUNC_START_PI(__dma_map_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100231 cmp w2, #DMA_FROM_DEVICE
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900232 b.eq __dma_inv_area
233 b __dma_clean_area
Mark Brownf4659254a2020-01-06 19:58:18 +0000234SYM_FUNC_END_PI(__dma_map_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100235
236/*
237 * __dma_unmap_area(start, size, dir)
238 * - start - kernel virtual start address
239 * - size - size of region
240 * - dir - DMA direction
241 */
Mark Brownf4659254a2020-01-06 19:58:18 +0000242SYM_FUNC_START_PI(__dma_unmap_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100243 cmp w2, #DMA_TO_DEVICE
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900244 b.ne __dma_inv_area
Catalin Marinas73635902013-05-21 17:35:19 +0100245 ret
Mark Brownf4659254a2020-01-06 19:58:18 +0000246SYM_FUNC_END_PI(__dma_unmap_area)