2 * linux/arch/arm/mm/cache-v7.S
4 * Copyright (C) 2001 Deep Blue Solutions Ltd.
5 * Copyright (C) 2005 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 is the "shell" of the ARMv7 processor support.
13 #include <linux/linkage.h>
14 #include <linux/init.h>
15 #include <asm/assembler.h>
16 #include <asm/errno.h>
17 #include <asm/unwind.h>
19 #include "proc-macros.S"
22 * v7_flush_icache_all()
24 * Flush the whole I-cache.
29 ENTRY(v7_flush_icache_all)
31 ALT_SMP(mcr p15, 0, r0, c7, c1, 0) @ invalidate I-cache inner shareable
32 ALT_UP(mcr p15, 0, r0, c7, c5, 0) @ I+BTB cache invalidate
34 ENDPROC(v7_flush_icache_all)
37 * v7_flush_dcache_all()
39 * Flush the whole D-cache.
41 * Corrupted registers: r0-r7, r9-r11 (r6 only in Thumb mode)
43 * - mm - mm_struct describing address space
45 ENTRY(v7_flush_dcache_all)
46 dmb @ ensure ordering with previous memory accesses
47 mrc p15, 1, r0, c0, c0, 1 @ read clidr
48 ands r3, r0, #0x7000000 @ extract loc from clidr
49 mov r3, r3, lsr #23 @ left align loc bit field
50 beq finished @ if loc is 0, then no need to clean
51 mov r10, #0 @ start clean at cache level 0
53 add r2, r10, r10, lsr #1 @ work out 3x current cache level
54 mov r1, r0, lsr r2 @ extract cache type bits from clidr
55 and r1, r1, #7 @ mask of the bits for current cache only
56 cmp r1, #2 @ see what cache we have at this level
57 blt skip @ skip if no cache, or just i-cache
59 save_and_disable_irqs_notrace r9 @ make cssr&csidr read atomic
61 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
62 isb @ isb to sych the new cssr&csidr
63 mrc p15, 1, r1, c0, c0, 0 @ read the new csidr
65 restore_irqs_notrace r9
67 and r2, r1, #7 @ extract the length of the cache lines
68 add r2, r2, #4 @ add 4 (line length offset)
70 ands r4, r4, r1, lsr #3 @ find maximum number on the way size
71 clz r5, r4 @ find bit position of way size increment
73 ands r7, r7, r1, lsr #13 @ extract max number of the index size
75 mov r9, r4 @ create working copy of max way size
77 ARM( orr r11, r10, r9, lsl r5 ) @ factor way and cache number into r11
78 THUMB( lsl r6, r9, r5 )
79 THUMB( orr r11, r10, r6 ) @ factor way and cache number into r11
80 ARM( orr r11, r11, r7, lsl r2 ) @ factor index number into r11
81 THUMB( lsl r6, r7, r2 )
82 THUMB( orr r11, r11, r6 ) @ factor index number into r11
83 mcr p15, 0, r11, c7, c14, 2 @ clean & invalidate by set/way
84 subs r9, r9, #1 @ decrement the way
86 subs r7, r7, #1 @ decrement the index
89 add r10, r10, #2 @ increment cache number
93 mov r10, #0 @ swith back to cache level 0
94 mcr p15, 2, r10, c0, c0, 0 @ select current cache level in cssr
98 ENDPROC(v7_flush_dcache_all)
101 * v7_flush_cache_all()
103 * Flush the entire cache system.
104 * The data cache flush is now achieved using atomic clean / invalidates
105 * working outwards from L1 cache. This is done using Set/Way based cache
106 * maintenance instructions.
107 * The instruction cache can still be invalidated back to the point of
108 * unification in a single instruction.
111 ENTRY(v7_flush_kern_cache_all)
112 ARM( stmfd sp!, {r4-r5, r7, r9-r11, lr} )
113 THUMB( stmfd sp!, {r4-r7, r9-r11, lr} )
114 bl v7_flush_dcache_all
116 ALT_SMP(mcr p15, 0, r0, c7, c1, 0) @ invalidate I-cache inner shareable
117 ALT_UP(mcr p15, 0, r0, c7, c5, 0) @ I+BTB cache invalidate
118 ARM( ldmfd sp!, {r4-r5, r7, r9-r11, lr} )
119 THUMB( ldmfd sp!, {r4-r7, r9-r11, lr} )
121 ENDPROC(v7_flush_kern_cache_all)
124 * v7_flush_cache_all()
126 * Flush all TLB entries in a particular address space
128 * - mm - mm_struct describing address space
130 ENTRY(v7_flush_user_cache_all)
134 * v7_flush_cache_range(start, end, flags)
136 * Flush a range of TLB entries in the specified address space.
138 * - start - start address (may not be aligned)
139 * - end - end address (exclusive, may not be aligned)
140 * - flags - vm_area_struct flags describing address space
142 * It is assumed that:
143 * - we have a VIPT cache.
145 ENTRY(v7_flush_user_cache_range)
147 ENDPROC(v7_flush_user_cache_all)
148 ENDPROC(v7_flush_user_cache_range)
151 * v7_coherent_kern_range(start,end)
153 * Ensure that the I and D caches are coherent within specified
154 * region. This is typically used when code has been written to
155 * a memory region, and will be executed.
157 * - start - virtual start address of region
158 * - end - virtual end address of region
160 * It is assumed that:
161 * - the Icache does not read data from the write buffer
163 ENTRY(v7_coherent_kern_range)
167 * v7_coherent_user_range(start,end)
169 * Ensure that the I and D caches are coherent within specified
170 * region. This is typically used when code has been written to
171 * a memory region, and will be executed.
173 * - start - virtual start address of region
174 * - end - virtual end address of region
176 * It is assumed that:
177 * - the Icache does not read data from the write buffer
179 ENTRY(v7_coherent_user_range)
181 dcache_line_size r2, r3
184 #ifdef CONFIG_ARM_ERRATA_764369
189 USER( mcr p15, 0, r12, c7, c11, 1 ) @ clean D line to the point of unification
194 icache_line_size r2, r3
198 USER( mcr p15, 0, r12, c7, c5, 1 ) @ invalidate I line
203 ALT_SMP(mcr p15, 0, r0, c7, c1, 6) @ invalidate BTB Inner Shareable
204 ALT_UP(mcr p15, 0, r0, c7, c5, 6) @ invalidate BTB
210 * Fault handling for the cache operation above. If the virtual address in r0
211 * isn't mapped, fail with -EFAULT.
214 #ifdef CONFIG_ARM_ERRATA_775420
220 ENDPROC(v7_coherent_kern_range)
221 ENDPROC(v7_coherent_user_range)
224 * v7_flush_kern_dcache_area(void *addr, size_t size)
226 * Ensure that the data held in the page kaddr is written back
227 * to the page in question.
229 * - addr - kernel address
230 * - size - region size
232 ENTRY(v7_flush_kern_dcache_area)
233 dcache_line_size r2, r3
237 #ifdef CONFIG_ARM_ERRATA_764369
242 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line / unified line
248 ENDPROC(v7_flush_kern_dcache_area)
251 * v7_dma_inv_range(start,end)
253 * Invalidate the data cache within the specified region; we will
254 * be performing a DMA operation in this region and we want to
255 * purge old data in the cache.
257 * - start - virtual start address of region
258 * - end - virtual end address of region
261 dcache_line_size r2, r3
265 #ifdef CONFIG_ARM_ERRATA_764369
269 mcrne p15, 0, r0, c7, c14, 1 @ clean & invalidate D / U line
273 mcrne p15, 0, r1, c7, c14, 1 @ clean & invalidate D / U line
275 mcr p15, 0, r0, c7, c6, 1 @ invalidate D / U line
281 ENDPROC(v7_dma_inv_range)
284 * v7_dma_clean_range(start,end)
285 * - start - virtual start address of region
286 * - end - virtual end address of region
289 dcache_line_size r2, r3
292 #ifdef CONFIG_ARM_ERRATA_764369
297 mcr p15, 0, r0, c7, c10, 1 @ clean D / U line
303 ENDPROC(v7_dma_clean_range)
306 * v7_dma_flush_range(start,end)
307 * - start - virtual start address of region
308 * - end - virtual end address of region
310 ENTRY(v7_dma_flush_range)
311 dcache_line_size r2, r3
314 #ifdef CONFIG_ARM_ERRATA_764369
319 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D / U line
325 ENDPROC(v7_dma_flush_range)
328 * dma_map_area(start, size, dir)
329 * - start - kernel virtual start address
330 * - size - size of region
331 * - dir - DMA direction
333 ENTRY(v7_dma_map_area)
335 teq r2, #DMA_FROM_DEVICE
338 ENDPROC(v7_dma_map_area)
341 * dma_unmap_area(start, size, dir)
342 * - start - kernel virtual start address
343 * - size - size of region
344 * - dir - DMA direction
346 ENTRY(v7_dma_unmap_area)
348 teq r2, #DMA_TO_DEVICE
351 ENDPROC(v7_dma_unmap_area)
355 @ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
356 define_cache_functions v7