4 * Copyright (C) 2001 Deep Blue Solutions Ltd.
5 * Copyright (C) 2012 ARM Ltd.
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.
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.
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/>.
20 #include <linux/errno.h>
21 #include <linux/linkage.h>
22 #include <linux/init.h>
23 #include <asm/assembler.h>
24 #include <asm/cpufeature.h>
25 #include <asm/alternative.h>
27 #include "proc-macros.S"
30 * flush_icache_range(start,end)
32 * Ensure that the I and D caches are coherent within specified region.
33 * This is typically used when code has been written to a memory region,
34 * and will be executed.
36 * - start - virtual start address of region
37 * - end - virtual end address of region
39 ENTRY(flush_icache_range)
43 * __flush_cache_user_range(start,end)
45 * Ensure that the I and D caches are coherent within specified region.
46 * This is typically used when code has been written to a memory region,
47 * and will be executed.
49 * - start - virtual start address of region
50 * - end - virtual end address of region
52 ENTRY(__flush_cache_user_range)
53 dcache_line_size x2, x3
57 USER(9f, dc cvau, x4 ) // clean D line to PoU
63 icache_line_size x2, x3
67 USER(9f, ic ivau, x4 ) // invalidate I line PoU
78 ENDPROC(flush_icache_range)
79 ENDPROC(__flush_cache_user_range)
82 * __flush_dcache_area(kaddr, size)
84 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
85 * are cleaned and invalidated to the PoC.
87 * - kaddr - kernel address
88 * - size - size in question
90 ENTRY(__flush_dcache_area)
91 dcache_by_line_op civac, sy, x0, x1, x2, x3
93 ENDPIPROC(__flush_dcache_area)
96 * __clean_dcache_area_pou(kaddr, size)
98 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
99 * are cleaned to the PoU.
101 * - kaddr - kernel address
102 * - size - size in question
104 ENTRY(__clean_dcache_area_pou)
105 dcache_by_line_op cvau, ish, x0, x1, x2, x3
107 ENDPROC(__clean_dcache_area_pou)
110 * __inval_cache_range(start, end)
111 * - start - start address of region
112 * - end - end address of region
114 ENTRY(__inval_cache_range)
118 * __dma_inv_range(start, end)
119 * - start - virtual start address of region
120 * - end - virtual end address of region
123 dcache_line_size x2, x3
125 tst x1, x3 // end cache line aligned?
128 dc civac, x1 // clean & invalidate D / U line
129 1: tst x0, x3 // start cache line aligned?
132 dc civac, x0 // clean & invalidate D / U line
134 2: dc ivac, x0 // invalidate D / U line
140 ENDPIPROC(__inval_cache_range)
141 ENDPROC(__dma_inv_range)
144 * __dma_clean_range(start, end)
145 * - start - virtual start address of region
146 * - end - virtual end address of region
149 dcache_line_size x2, x3
153 alternative_if_not ARM64_WORKAROUND_CLEAN_CACHE
163 ENDPROC(__dma_clean_range)
166 * __dma_flush_range(start, end)
167 * - start - virtual start address of region
168 * - end - virtual end address of region
170 ENTRY(__dma_flush_range)
171 dcache_line_size x2, x3
174 1: dc civac, x0 // clean & invalidate D / U line
180 ENDPIPROC(__dma_flush_range)
183 * __dma_map_area(start, size, dir)
184 * - start - kernel virtual start address
185 * - size - size of region
186 * - dir - DMA direction
188 ENTRY(__dma_map_area)
190 cmp w2, #DMA_FROM_DEVICE
193 ENDPIPROC(__dma_map_area)
196 * __dma_unmap_area(start, size, dir)
197 * - start - kernel virtual start address
198 * - size - size of region
199 * - dir - DMA direction
201 ENTRY(__dma_unmap_area)
203 cmp w2, #DMA_TO_DEVICE
206 ENDPIPROC(__dma_unmap_area)