2 * linux/arch/arm/mm/cache-v6.S
4 * Copyright (C) 2001 Deep Blue Solutions Ltd.
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 * This is the "shell" of the ARMv6 processor support.
12 #include <linux/linkage.h>
13 #include <linux/init.h>
14 #include <asm/assembler.h>
15 #include <asm/unwind.h>
17 #include "proc-macros.S"
20 #define CACHE_LINE_SIZE 32
21 #define D_CACHE_LINE_SIZE 32
22 #define BTB_FLUSH_SIZE 8
25 * v6_flush_icache_all()
27 * Flush the whole I-cache.
29 * ARM1136 erratum 411920 - Invalidate Instruction Cache operation can fail.
30 * This erratum is present in 1136, 1156 and 1176. It does not affect the
37 ENTRY(v6_flush_icache_all)
39 #ifdef CONFIG_ARM_ERRATA_411920
41 cpsid ifa @ disable interrupts
42 mcr p15, 0, r0, c7, c5, 0 @ invalidate entire I-cache
43 mcr p15, 0, r0, c7, c5, 0 @ invalidate entire I-cache
44 mcr p15, 0, r0, c7, c5, 0 @ invalidate entire I-cache
45 mcr p15, 0, r0, c7, c5, 0 @ invalidate entire I-cache
46 msr cpsr_cx, r1 @ restore interrupts
47 .rept 11 @ ARM Ltd recommends at least
51 mcr p15, 0, r0, c7, c5, 0 @ invalidate I-cache
54 ENDPROC(v6_flush_icache_all)
57 * v6_flush_cache_all()
59 * Flush the entire cache.
63 ENTRY(v6_flush_kern_cache_all)
66 mcr p15, 0, r0, c7, c14, 0 @ D cache clean+invalidate
67 #ifndef CONFIG_ARM_ERRATA_411920
68 mcr p15, 0, r0, c7, c5, 0 @ I+BTB cache invalidate
73 mcr p15, 0, r0, c7, c15, 0 @ Cache clean+invalidate
78 * v6_flush_cache_all()
80 * Flush all TLB entries in a particular address space
82 * - mm - mm_struct describing address space
84 ENTRY(v6_flush_user_cache_all)
88 * v6_flush_cache_range(start, end, flags)
90 * Flush a range of TLB entries in the specified address space.
92 * - start - start address (may not be aligned)
93 * - end - end address (exclusive, may not be aligned)
94 * - flags - vm_area_struct flags describing address space
97 * - we have a VIPT cache.
99 ENTRY(v6_flush_user_cache_range)
103 * v6_coherent_kern_range(start,end)
105 * Ensure that the I and D caches are coherent within specified
106 * region. This is typically used when code has been written to
107 * a memory region, and will be executed.
109 * - start - virtual start address of region
110 * - end - virtual end address of region
112 * It is assumed that:
113 * - the Icache does not read data from the write buffer
115 ENTRY(v6_coherent_kern_range)
119 * v6_coherent_user_range(start,end)
121 * Ensure that the I and D caches are coherent within specified
122 * region. This is typically used when code has been written to
123 * a memory region, and will be executed.
125 * - start - virtual start address of region
126 * - end - virtual end address of region
128 * It is assumed that:
129 * - the Icache does not read data from the write buffer
131 ENTRY(v6_coherent_user_range)
134 bic r0, r0, #CACHE_LINE_SIZE - 1
136 USER( mcr p15, 0, r0, c7, c10, 1 ) @ clean D line
137 add r0, r0, #CACHE_LINE_SIZE
144 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
145 #ifndef CONFIG_ARM_ERRATA_411920
146 mcr p15, 0, r0, c7, c5, 0 @ I+BTB cache invalidate
148 b v6_flush_icache_all
151 mcr p15, 0, r0, c7, c5, 6 @ invalidate BTB
156 * Fault handling for the cache operation above. If the virtual address in r0
157 * isn't mapped, just try the next page.
165 ENDPROC(v6_coherent_user_range)
166 ENDPROC(v6_coherent_kern_range)
169 * v6_flush_kern_dcache_area(void *addr, size_t size)
171 * Ensure that the data held in the page kaddr is written back
172 * to the page in question.
174 * - addr - kernel address
175 * - size - region size
177 ENTRY(v6_flush_kern_dcache_area)
181 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line
183 mcr p15, 0, r0, c7, c15, 1 @ clean & invalidate unified line
185 add r0, r0, #D_CACHE_LINE_SIZE
190 mcr p15, 0, r0, c7, c10, 4
196 * v6_dma_inv_range(start,end)
198 * Invalidate the data cache within the specified region; we will
199 * be performing a DMA operation in this region and we want to
200 * purge old data in the cache.
202 * - start - virtual start address of region
203 * - end - virtual end address of region
206 #ifdef CONFIG_DMA_CACHE_RWFO
207 ldrb r2, [r0] @ read for ownership
208 strb r2, [r0] @ write for ownership
210 tst r0, #D_CACHE_LINE_SIZE - 1
211 bic r0, r0, #D_CACHE_LINE_SIZE - 1
213 mcrne p15, 0, r0, c7, c10, 1 @ clean D line
215 mcrne p15, 0, r0, c7, c11, 1 @ clean unified line
217 tst r1, #D_CACHE_LINE_SIZE - 1
218 #ifdef CONFIG_DMA_CACHE_RWFO
219 ldrneb r2, [r1, #-1] @ read for ownership
220 strneb r2, [r1, #-1] @ write for ownership
222 bic r1, r1, #D_CACHE_LINE_SIZE - 1
224 mcrne p15, 0, r1, c7, c14, 1 @ clean & invalidate D line
226 mcrne p15, 0, r1, c7, c15, 1 @ clean & invalidate unified line
230 mcr p15, 0, r0, c7, c6, 1 @ invalidate D line
232 mcr p15, 0, r0, c7, c7, 1 @ invalidate unified line
234 add r0, r0, #D_CACHE_LINE_SIZE
236 #ifdef CONFIG_DMA_CACHE_RWFO
237 ldrlo r2, [r0] @ read for ownership
238 strlo r2, [r0] @ write for ownership
242 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
246 * v6_dma_clean_range(start,end)
247 * - start - virtual start address of region
248 * - end - virtual end address of region
251 bic r0, r0, #D_CACHE_LINE_SIZE - 1
253 #ifdef CONFIG_DMA_CACHE_RWFO
254 ldr r2, [r0] @ read for ownership
257 mcr p15, 0, r0, c7, c10, 1 @ clean D line
259 mcr p15, 0, r0, c7, c11, 1 @ clean unified line
261 add r0, r0, #D_CACHE_LINE_SIZE
265 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
269 * v6_dma_flush_range(start,end)
270 * - start - virtual start address of region
271 * - end - virtual end address of region
273 ENTRY(v6_dma_flush_range)
274 #ifdef CONFIG_DMA_CACHE_RWFO
275 ldrb r2, [r0] @ read for ownership
276 strb r2, [r0] @ write for ownership
278 bic r0, r0, #D_CACHE_LINE_SIZE - 1
281 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line
283 mcr p15, 0, r0, c7, c15, 1 @ clean & invalidate line
285 add r0, r0, #D_CACHE_LINE_SIZE
287 #ifdef CONFIG_DMA_CACHE_RWFO
288 ldrlob r2, [r0] @ read for ownership
289 strlob r2, [r0] @ write for ownership
293 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
297 * dma_map_area(start, size, dir)
298 * - start - kernel virtual start address
299 * - size - size of region
300 * - dir - DMA direction
302 ENTRY(v6_dma_map_area)
304 teq r2, #DMA_FROM_DEVICE
306 #ifndef CONFIG_DMA_CACHE_RWFO
309 teq r2, #DMA_TO_DEVICE
310 beq v6_dma_clean_range
313 ENDPROC(v6_dma_map_area)
316 * dma_unmap_area(start, size, dir)
317 * - start - kernel virtual start address
318 * - size - size of region
319 * - dir - DMA direction
321 ENTRY(v6_dma_unmap_area)
322 #ifndef CONFIG_DMA_CACHE_RWFO
324 teq r2, #DMA_TO_DEVICE
328 ENDPROC(v6_dma_unmap_area)
332 .type v6_cache_fns, #object
334 .long v6_flush_icache_all
335 .long v6_flush_kern_cache_all
336 .long v6_flush_user_cache_all
337 .long v6_flush_user_cache_range
338 .long v6_coherent_kern_range
339 .long v6_coherent_user_range
340 .long v6_flush_kern_dcache_area
341 .long v6_dma_map_area
342 .long v6_dma_unmap_area
343 .long v6_dma_flush_range
344 .size v6_cache_fns, . - v6_cache_fns