blob: 58b5a906ff786781dfeae9155865345181c585e2 [file] [log] [blame]
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +00001/*
2 * Cache maintenance
3 *
4 * Copyright (C) 2001 Deep Blue Solutions Ltd.
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Vladimir Murzina2d25a52014-12-01 10:53:08 +000020#include <linux/errno.h>
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000021#include <linux/linkage.h>
22#include <linux/init.h>
23#include <asm/assembler.h>
Andre Przywara301bcfa2014-11-14 15:54:10 +000024#include <asm/cpufeature.h>
Marc Zyngier8d883b22015-06-01 10:47:41 +010025#include <asm/alternative.h>
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000026
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000027/*
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000028 * flush_icache_range(start,end)
29 *
30 * Ensure that the I and D caches are coherent within specified region.
31 * This is typically used when code has been written to a memory region,
32 * and will be executed.
33 *
34 * - start - virtual start address of region
35 * - end - virtual end address of region
36 */
37ENTRY(flush_icache_range)
38 /* FALLTHROUGH */
39
40/*
41 * __flush_cache_user_range(start,end)
42 *
43 * Ensure that the I and D caches are coherent within specified region.
44 * This is typically used when code has been written to a memory region,
45 * and will be executed.
46 *
47 * - start - virtual start address of region
48 * - end - virtual end address of region
49 */
50ENTRY(__flush_cache_user_range)
51 dcache_line_size x2, x3
52 sub x3, x2, #1
53 bic x4, x0, x3
541:
Andre Przywara290622e2016-06-28 18:07:28 +010055user_alt 9f, "dc cvau, x4", "dc civac, x4", ARM64_WORKAROUND_CLEAN_CACHE
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000056 add x4, x4, x2
57 cmp x4, x1
58 b.lo 1b
Will Deacondc60b772014-05-02 16:24:15 +010059 dsb ish
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000060
61 icache_line_size x2, x3
62 sub x3, x2, #1
63 bic x4, x0, x3
641:
65USER(9f, ic ivau, x4 ) // invalidate I line PoU
66 add x4, x4, x2
67 cmp x4, x1
68 b.lo 1b
Will Deacondc60b772014-05-02 16:24:15 +010069 dsb ish
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000070 isb
Vladimir Murzina2d25a52014-12-01 10:53:08 +000071 mov x0, #0
72 ret
739:
74 mov x0, #-EFAULT
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000075 ret
76ENDPROC(flush_icache_range)
77ENDPROC(__flush_cache_user_range)
78
79/*
Jingoo Han03324e62014-01-21 01:17:47 +000080 * __flush_dcache_area(kaddr, size)
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000081 *
Ashok Kumar0a287142015-12-17 01:38:32 -080082 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
83 * are cleaned and invalidated to the PoC.
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000084 *
85 * - kaddr - kernel address
86 * - size - size in question
87 */
88ENTRY(__flush_dcache_area)
Ashok Kumar0a287142015-12-17 01:38:32 -080089 dcache_by_line_op civac, sy, x0, x1, x2, x3
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000090 ret
Ard Biesheuvel20791842015-10-08 20:02:03 +010091ENDPIPROC(__flush_dcache_area)
Catalin Marinas73635902013-05-21 17:35:19 +010092
93/*
Ashok Kumar0a287142015-12-17 01:38:32 -080094 * __clean_dcache_area_pou(kaddr, size)
95 *
96 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
97 * are cleaned to the PoU.
98 *
99 * - kaddr - kernel address
100 * - size - size in question
101 */
102ENTRY(__clean_dcache_area_pou)
103 dcache_by_line_op cvau, ish, x0, x1, x2, x3
104 ret
105ENDPROC(__clean_dcache_area_pou)
106
107/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900108 * __dma_inv_area(start, size)
109 * - start - virtual start address of region
110 * - size - size in question
111 */
112__dma_inv_area:
113 add x1, x1, x0
114 /* FALLTHROUGH */
115
116/*
Catalin Marinasc218bca2014-03-26 18:25:55 +0000117 * __inval_cache_range(start, end)
118 * - start - start address of region
119 * - end - end address of region
120 */
121ENTRY(__inval_cache_range)
Catalin Marinas73635902013-05-21 17:35:19 +0100122 dcache_line_size x2, x3
123 sub x3, x2, #1
Catalin Marinasebf81a92014-04-01 18:32:55 +0100124 tst x1, x3 // end cache line aligned?
Catalin Marinas73635902013-05-21 17:35:19 +0100125 bic x1, x1, x3
Catalin Marinasebf81a92014-04-01 18:32:55 +0100126 b.eq 1f
127 dc civac, x1 // clean & invalidate D / U line
1281: tst x0, x3 // start cache line aligned?
129 bic x0, x0, x3
130 b.eq 2f
131 dc civac, x0 // clean & invalidate D / U line
132 b 3f
1332: dc ivac, x0 // invalidate D / U line
1343: add x0, x0, x2
Catalin Marinas73635902013-05-21 17:35:19 +0100135 cmp x0, x1
Catalin Marinasebf81a92014-04-01 18:32:55 +0100136 b.lo 2b
Catalin Marinas73635902013-05-21 17:35:19 +0100137 dsb sy
138 ret
Ard Biesheuvel20791842015-10-08 20:02:03 +0100139ENDPIPROC(__inval_cache_range)
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900140ENDPROC(__dma_inv_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100141
142/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900143 * __clean_dcache_area_poc(kaddr, size)
144 *
145 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
146 * are cleaned to the PoC.
147 *
148 * - kaddr - kernel address
149 * - size - size in question
Catalin Marinas73635902013-05-21 17:35:19 +0100150 */
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900151ENTRY(__clean_dcache_area_poc)
152 /* FALLTHROUGH */
Catalin Marinas73635902013-05-21 17:35:19 +0100153
154/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900155 * __dma_clean_area(start, size)
Catalin Marinas73635902013-05-21 17:35:19 +0100156 * - start - virtual start address of region
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900157 * - size - size in question
Catalin Marinas73635902013-05-21 17:35:19 +0100158 */
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900159__dma_clean_area:
160 dcache_by_line_op cvac, sy, x0, x1, x2, x3
Catalin Marinas73635902013-05-21 17:35:19 +0100161 ret
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900162ENDPIPROC(__clean_dcache_area_poc)
163ENDPROC(__dma_clean_area)
164
165/*
166 * __dma_flush_area(start, size)
167 *
168 * clean & invalidate D / U line
169 *
170 * - start - virtual start address of region
171 * - size - size in question
172 */
173ENTRY(__dma_flush_area)
174 dcache_by_line_op civac, sy, x0, x1, x2, x3
175 ret
176ENDPIPROC(__dma_flush_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100177
178/*
179 * __dma_map_area(start, size, dir)
180 * - start - kernel virtual start address
181 * - size - size of region
182 * - dir - DMA direction
183 */
184ENTRY(__dma_map_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100185 cmp w2, #DMA_FROM_DEVICE
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900186 b.eq __dma_inv_area
187 b __dma_clean_area
Ard Biesheuvel20791842015-10-08 20:02:03 +0100188ENDPIPROC(__dma_map_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100189
190/*
191 * __dma_unmap_area(start, size, dir)
192 * - start - kernel virtual start address
193 * - size - size of region
194 * - dir - DMA direction
195 */
196ENTRY(__dma_unmap_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100197 cmp w2, #DMA_TO_DEVICE
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900198 b.ne __dma_inv_area
Catalin Marinas73635902013-05-21 17:35:19 +0100199 ret
Ard Biesheuvel20791842015-10-08 20:02:03 +0100200ENDPIPROC(__dma_unmap_area)