2 * linux/arch/arm/mm/cache-v4wt.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 * ARMv4 write through cache operations support.
12 * We assume that the write buffer is not enabled.
14 #include <linux/linkage.h>
15 #include <linux/init.h>
16 #include <asm/hardware.h>
18 #include "proc-macros.S"
21 * The size of one data cache line.
23 #define CACHE_DLINESIZE 32
26 * The number of data cache segments.
28 #define CACHE_DSEGMENTS 8
31 * The number of lines in a cache segment.
33 #define CACHE_DENTRIES 64
36 * This is the size at which it becomes more efficient to
37 * clean the whole cache, rather than using the individual
38 * cache line maintainence instructions.
40 * *** This needs benchmarking
42 #define CACHE_DLIMIT 16384
45 * flush_user_cache_all()
47 * Invalidate all cache entries in a particular address
50 ENTRY(v4wt_flush_user_cache_all)
53 * flush_kern_cache_all()
55 * Clean and invalidate the entire cache.
57 ENTRY(v4wt_flush_kern_cache_all)
62 mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
63 mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache
67 * flush_user_cache_range(start, end, flags)
69 * Clean and invalidate a range of cache entries in the specified
72 * - start - start address (inclusive, page aligned)
73 * - end - end address (exclusive, page aligned)
74 * - flags - vma_area_struct flags describing address space
76 ENTRY(v4wt_flush_user_cache_range)
77 sub r3, r1, r0 @ calculate total size
79 bhs __flush_whole_cache
81 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
83 mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry
84 add r0, r0, #CACHE_DLINESIZE
90 * coherent_kern_range(start, end)
92 * Ensure coherency between the Icache and the Dcache in the
93 * region described by start. If you have non-snooping
94 * Harvard caches, you need to implement this function.
96 * - start - virtual start address
97 * - end - virtual end address
99 ENTRY(v4wt_coherent_kern_range)
103 * coherent_user_range(start, end)
105 * Ensure coherency between the Icache and the Dcache in the
106 * region described by start. If you have non-snooping
107 * Harvard caches, you need to implement this function.
109 * - start - virtual start address
110 * - end - virtual end address
112 ENTRY(v4wt_coherent_user_range)
113 bic r0, r0, #CACHE_DLINESIZE - 1
114 1: mcr p15, 0, r0, c7, c5, 1 @ invalidate I entry
115 add r0, r0, #CACHE_DLINESIZE
121 * flush_kern_dcache_page(void *page)
123 * Ensure no D cache aliasing occurs, either with itself or
126 * - addr - page aligned address
128 ENTRY(v4wt_flush_kern_dcache_page)
130 mcr p15, 0, r2, c7, c5, 0 @ invalidate I cache
135 * dma_inv_range(start, end)
137 * Invalidate (discard) the specified virtual address range.
138 * May not write back any entries. If 'start' or 'end'
139 * are not cache line aligned, those lines must be written
142 * - start - virtual start address
143 * - end - virtual end address
145 ENTRY(v4wt_dma_inv_range)
146 bic r0, r0, #CACHE_DLINESIZE - 1
147 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
148 add r0, r0, #CACHE_DLINESIZE
154 * dma_clean_range(start, end)
156 * Clean the specified virtual address range.
158 * - start - virtual start address
159 * - end - virtual end address
161 ENTRY(v4wt_dma_clean_range)
165 * dma_flush_range(start, end)
167 * Clean and invalidate the specified virtual address range.
169 * - start - virtual start address
170 * - end - virtual end address
172 .globl v4wt_dma_flush_range
173 .equ v4wt_dma_flush_range, v4wt_dma_inv_range
177 .type v4wt_cache_fns, #object
178 ENTRY(v4wt_cache_fns)
179 .long v4wt_flush_kern_cache_all
180 .long v4wt_flush_user_cache_all
181 .long v4wt_flush_user_cache_range
182 .long v4wt_coherent_kern_range
183 .long v4wt_coherent_user_range
184 .long v4wt_flush_kern_dcache_page
185 .long v4wt_dma_inv_range
186 .long v4wt_dma_clean_range
187 .long v4wt_dma_flush_range
188 .size v4wt_cache_fns, . - v4wt_cache_fns