2 * linux/arch/arm/mm/cache-fa.S
4 * Copyright (C) 2005 Faraday Corp.
5 * Copyright (C) 2008-2009 Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
7 * Based on cache-v4wb.S:
8 * Copyright (C) 1997-2002 Russell king
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 * Processors: FA520 FA526 FA626
16 #include <linux/linkage.h>
17 #include <linux/init.h>
18 #include <asm/assembler.h>
19 #include <asm/memory.h>
22 #include "proc-macros.S"
25 * The size of one data cache line.
27 #define CACHE_DLINESIZE 16
30 * The total size of the data cache.
32 #ifdef CONFIG_ARCH_GEMINI
33 #define CACHE_DSIZE 8192
35 #define CACHE_DSIZE 16384
38 /* FIXME: put optimal value here. Current one is just estimation */
39 #define CACHE_DLIMIT (CACHE_DSIZE * 2)
44 * Unconditionally clean and invalidate the entire icache.
46 ENTRY(fa_flush_icache_all)
48 mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
50 ENDPROC(fa_flush_icache_all)
53 * flush_user_cache_all()
55 * Clean and invalidate all cache entries in a particular address
58 ENTRY(fa_flush_user_cache_all)
61 * flush_kern_cache_all()
63 * Clean and invalidate the entire cache.
65 ENTRY(fa_flush_kern_cache_all)
69 mcr p15, 0, ip, c7, c14, 0 @ clean/invalidate D cache
71 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
72 mcrne p15, 0, ip, c7, c5, 6 @ invalidate BTB
73 mcrne p15, 0, ip, c7, c10, 4 @ drain write buffer
74 mcrne p15, 0, ip, c7, c5, 4 @ prefetch flush
78 * flush_user_cache_range(start, end, flags)
80 * Invalidate a range of cache entries in the specified
83 * - start - start address (inclusive, page aligned)
84 * - end - end address (exclusive, page aligned)
85 * - flags - vma_area_struct flags describing address space
87 ENTRY(fa_flush_user_cache_range)
89 sub r3, r1, r0 @ calculate total size
90 cmp r3, #CACHE_DLIMIT @ total size >= limit?
91 bhs __flush_whole_cache @ flush whole D cache
94 mcrne p15, 0, r0, c7, c5, 1 @ invalidate I line
95 mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry
96 add r0, r0, #CACHE_DLINESIZE
100 mcrne p15, 0, ip, c7, c5, 6 @ invalidate BTB
101 mcrne p15, 0, ip, c7, c10, 4 @ data write barrier
102 mcrne p15, 0, ip, c7, c5, 4 @ prefetch flush
106 * coherent_kern_range(start, end)
108 * Ensure coherency between the Icache and the Dcache in the
109 * region described by start. If you have non-snooping
110 * Harvard caches, you need to implement this function.
112 * - start - virtual start address
113 * - end - virtual end address
115 ENTRY(fa_coherent_kern_range)
119 * coherent_user_range(start, end)
121 * Ensure coherency between the Icache and the Dcache in the
122 * region described by start. If you have non-snooping
123 * Harvard caches, you need to implement this function.
125 * - start - virtual start address
126 * - end - virtual end address
128 ENTRY(fa_coherent_user_range)
129 bic r0, r0, #CACHE_DLINESIZE - 1
130 1: mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry
131 mcr p15, 0, r0, c7, c5, 1 @ invalidate I entry
132 add r0, r0, #CACHE_DLINESIZE
136 mcr p15, 0, r0, c7, c5, 6 @ invalidate BTB
137 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
138 mcr p15, 0, r0, c7, c5, 4 @ prefetch flush
142 * flush_kern_dcache_area(void *addr, size_t size)
144 * Ensure that the data held in the page kaddr is written back
145 * to the page in question.
147 * - addr - kernel address
148 * - size - size of region
150 ENTRY(fa_flush_kern_dcache_area)
152 1: mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line
153 add r0, r0, #CACHE_DLINESIZE
157 mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
158 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
162 * dma_inv_range(start, end)
164 * Invalidate (discard) the specified virtual address range.
165 * May not write back any entries. If 'start' or 'end'
166 * are not cache line aligned, those lines must be written
169 * - start - virtual start address
170 * - end - virtual end address
173 tst r0, #CACHE_DLINESIZE - 1
174 bic r0, r0, #CACHE_DLINESIZE - 1
175 mcrne p15, 0, r0, c7, c14, 1 @ clean & invalidate D entry
176 tst r1, #CACHE_DLINESIZE - 1
177 bic r1, r1, #CACHE_DLINESIZE - 1
178 mcrne p15, 0, r1, c7, c14, 1 @ clean & invalidate D entry
179 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
180 add r0, r0, #CACHE_DLINESIZE
184 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
188 * dma_clean_range(start, end)
190 * Clean (write back) the specified virtual address range.
192 * - start - virtual start address
193 * - end - virtual end address
196 bic r0, r0, #CACHE_DLINESIZE - 1
197 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
198 add r0, r0, #CACHE_DLINESIZE
202 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
206 * dma_flush_range(start,end)
207 * - start - virtual start address of region
208 * - end - virtual end address of region
210 ENTRY(fa_dma_flush_range)
211 bic r0, r0, #CACHE_DLINESIZE - 1
212 1: mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D entry
213 add r0, r0, #CACHE_DLINESIZE
217 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
221 * dma_map_area(start, size, dir)
222 * - start - kernel virtual start address
223 * - size - size of region
224 * - dir - DMA direction
226 ENTRY(fa_dma_map_area)
228 cmp r2, #DMA_TO_DEVICE
229 beq fa_dma_clean_range
232 ENDPROC(fa_dma_map_area)
235 * dma_unmap_area(start, size, dir)
236 * - start - kernel virtual start address
237 * - size - size of region
238 * - dir - DMA direction
240 ENTRY(fa_dma_unmap_area)
242 ENDPROC(fa_dma_unmap_area)
244 .globl fa_flush_kern_cache_louis
245 .equ fa_flush_kern_cache_louis, fa_flush_kern_cache_all
249 @ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
250 define_cache_functions fa