2 * linux/arch/arm/mm/cache-v4wb.S
4 * Copyright (C) 1997-2002 Russell king
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/linkage.h>
11 #include <linux/init.h>
12 #include <asm/memory.h>
14 #include "proc-macros.S"
17 * The size of one data cache line.
19 #define CACHE_DLINESIZE 32
22 * The total size of the data cache.
24 #if defined(CONFIG_CPU_SA110)
25 # define CACHE_DSIZE 16384
26 #elif defined(CONFIG_CPU_SA1100)
27 # define CACHE_DSIZE 8192
29 # error Unknown cache size
33 * This is the size at which it becomes more efficient to
34 * clean the whole cache, rather than using the individual
35 * cache line maintenance instructions.
37 * Size Clean (ticks) Dirty (ticks)
38 * 4096 21 20 21 53 55 54
39 * 8192 40 41 40 106 100 102
40 * 16384 77 77 76 140 140 138
41 * 32768 150 149 150 214 216 212 <---
42 * 65536 296 297 296 351 358 361
43 * 131072 591 591 591 656 657 651
44 * Whole 132 136 132 221 217 207 <---
46 #define CACHE_DLIMIT (CACHE_DSIZE * 4)
56 * Unconditionally clean and invalidate the entire icache.
58 ENTRY(v4wb_flush_icache_all)
60 mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
62 ENDPROC(v4wb_flush_icache_all)
65 * flush_user_cache_all()
67 * Clean and invalidate all cache entries in a particular address
70 ENTRY(v4wb_flush_user_cache_all)
73 * flush_kern_cache_all()
75 * Clean and invalidate the entire cache.
77 ENTRY(v4wb_flush_kern_cache_all)
79 mcr p15, 0, ip, c7, c5, 0 @ invalidate I cache
83 eor r1, r1, #CACHE_DSIZE
85 add r2, r1, #CACHE_DSIZE
89 #ifdef FLUSH_BASE_MINICACHE
90 add r2, r2, #FLUSH_BASE_MINICACHE - FLUSH_BASE
91 sub r1, r2, #512 @ only 512 bytes
96 mcr p15, 0, ip, c7, c10, 4 @ drain write buffer
100 * flush_user_cache_range(start, end, flags)
102 * Invalidate a range of cache entries in the specified
105 * - start - start address (inclusive, page aligned)
106 * - end - end address (exclusive, page aligned)
107 * - flags - vma_area_struct flags describing address space
109 ENTRY(v4wb_flush_user_cache_range)
111 sub r3, r1, r0 @ calculate total size
112 tst r2, #VM_EXEC @ executable region?
113 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
115 cmp r3, #CACHE_DLIMIT @ total size >= limit?
116 bhs __flush_whole_cache @ flush whole D cache
118 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
119 mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
120 add r0, r0, #CACHE_DLINESIZE
124 mcrne p15, 0, ip, c7, c10, 4 @ drain write buffer
128 * flush_kern_dcache_area(void *addr, size_t size)
130 * Ensure no D cache aliasing occurs, either with itself or
133 * - addr - kernel address
134 * - size - region size
136 ENTRY(v4wb_flush_kern_dcache_area)
141 * coherent_kern_range(start, end)
143 * Ensure coherency between the Icache and the Dcache in the
144 * region described by start. If you have non-snooping
145 * Harvard caches, you need to implement this function.
147 * - start - virtual start address
148 * - end - virtual end address
150 ENTRY(v4wb_coherent_kern_range)
154 * coherent_user_range(start, end)
156 * Ensure coherency between the Icache and the Dcache in the
157 * region described by start. If you have non-snooping
158 * Harvard caches, you need to implement this function.
160 * - start - virtual start address
161 * - end - virtual end address
163 ENTRY(v4wb_coherent_user_range)
164 bic r0, r0, #CACHE_DLINESIZE - 1
165 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
166 mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
167 add r0, r0, #CACHE_DLINESIZE
171 mcr p15, 0, ip, c7, c5, 0 @ invalidate I cache
172 mcr p15, 0, ip, c7, c10, 4 @ drain WB
177 * dma_inv_range(start, end)
179 * Invalidate (discard) the specified virtual address range.
180 * May not write back any entries. If 'start' or 'end'
181 * are not cache line aligned, those lines must be written
184 * - start - virtual start address
185 * - end - virtual end address
188 tst r0, #CACHE_DLINESIZE - 1
189 bic r0, r0, #CACHE_DLINESIZE - 1
190 mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
191 tst r1, #CACHE_DLINESIZE - 1
192 mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
193 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
194 add r0, r0, #CACHE_DLINESIZE
197 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
201 * dma_clean_range(start, end)
203 * Clean (write back) the specified virtual address range.
205 * - start - virtual start address
206 * - end - virtual end address
208 v4wb_dma_clean_range:
209 bic r0, r0, #CACHE_DLINESIZE - 1
210 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
211 add r0, r0, #CACHE_DLINESIZE
214 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
218 * dma_flush_range(start, end)
220 * Clean and invalidate the specified virtual address range.
222 * - start - virtual start address
223 * - end - virtual end address
225 * This is actually the same as v4wb_coherent_kern_range()
227 .globl v4wb_dma_flush_range
228 .set v4wb_dma_flush_range, v4wb_coherent_kern_range
231 * dma_map_area(start, size, dir)
232 * - start - kernel virtual start address
233 * - size - size of region
234 * - dir - DMA direction
236 ENTRY(v4wb_dma_map_area)
238 cmp r2, #DMA_TO_DEVICE
239 beq v4wb_dma_clean_range
240 bcs v4wb_dma_inv_range
241 b v4wb_dma_flush_range
242 ENDPROC(v4wb_dma_map_area)
245 * dma_unmap_area(start, size, dir)
246 * - start - kernel virtual start address
247 * - size - size of region
248 * - dir - DMA direction
250 ENTRY(v4wb_dma_unmap_area)
252 ENDPROC(v4wb_dma_unmap_area)
256 @ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
257 define_cache_functions v4wb