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>
16 #include "proc-macros.S"
19 #define CACHE_LINE_SIZE 32
20 #define D_CACHE_LINE_SIZE 32
23 * v6_flush_cache_all()
25 * Flush the entire cache.
29 ENTRY(v6_flush_kern_cache_all)
32 mcr p15, 0, r0, c7, c14, 0 @ D cache clean+invalidate
33 mcr p15, 0, r0, c7, c5, 0 @ I+BTB cache invalidate
35 mcr p15, 0, r0, c7, c15, 0 @ Cache clean+invalidate
40 * v6_flush_cache_all()
42 * Flush all TLB entries in a particular address space
44 * - mm - mm_struct describing address space
46 ENTRY(v6_flush_user_cache_all)
50 * v6_flush_cache_range(start, end, flags)
52 * Flush a range of TLB entries in the specified address space.
54 * - start - start address (may not be aligned)
55 * - end - end address (exclusive, may not be aligned)
56 * - flags - vm_area_struct flags describing address space
59 * - we have a VIPT cache.
61 ENTRY(v6_flush_user_cache_range)
65 * v6_coherent_kern_range(start,end)
67 * Ensure that the I and D caches are coherent within specified
68 * region. This is typically used when code has been written to
69 * a memory region, and will be executed.
71 * - start - virtual start address of region
72 * - end - virtual end address of region
75 * - the Icache does not read data from the write buffer
77 ENTRY(v6_coherent_kern_range)
81 * v6_coherent_user_range(start,end)
83 * Ensure that the I and D caches are coherent within specified
84 * region. This is typically used when code has been written to
85 * a memory region, and will be executed.
87 * - start - virtual start address of region
88 * - end - virtual end address of region
91 * - the Icache does not read data from the write buffer
93 ENTRY(v6_coherent_user_range)
94 bic r0, r0, #CACHE_LINE_SIZE - 1
97 mcr p15, 0, r0, c7, c10, 1 @ clean D line
98 mcr p15, 0, r0, c7, c5, 1 @ invalidate I line
100 mcr p15, 0, r0, c7, c5, 7 @ invalidate BTB entry
101 add r0, r0, #CACHE_LINE_SIZE
106 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
111 * v6_flush_kern_dcache_page(kaddr)
113 * Ensure that the data held in the page kaddr is written back
114 * to the page in question.
116 * - kaddr - kernel address (guaranteed to be page aligned)
118 ENTRY(v6_flush_kern_dcache_page)
122 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line
124 mcr p15, 0, r0, c7, c15, 1 @ clean & invalidate unified line
126 add r0, r0, #D_CACHE_LINE_SIZE
131 mcr p15, 0, r0, c7, c10, 4
137 * v6_dma_inv_range(start,end)
139 * Invalidate the data cache within the specified region; we will
140 * be performing a DMA operation in this region and we want to
141 * purge old data in the cache.
143 * - start - virtual start address of region
144 * - end - virtual end address of region
146 ENTRY(v6_dma_inv_range)
147 tst r0, #D_CACHE_LINE_SIZE - 1
148 bic r0, r0, #D_CACHE_LINE_SIZE - 1
150 mcrne p15, 0, r0, c7, c10, 1 @ clean D line
152 mcrne p15, 0, r0, c7, c11, 1 @ clean unified line
154 tst r1, #D_CACHE_LINE_SIZE - 1
155 bic r1, r1, #D_CACHE_LINE_SIZE - 1
157 mcrne p15, 0, r1, c7, c14, 1 @ clean & invalidate D line
159 mcrne p15, 0, r1, c7, c15, 1 @ clean & invalidate unified line
163 mcr p15, 0, r0, c7, c6, 1 @ invalidate D line
165 mcr p15, 0, r0, c7, c7, 1 @ invalidate unified line
167 add r0, r0, #D_CACHE_LINE_SIZE
171 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
175 * v6_dma_clean_range(start,end)
176 * - start - virtual start address of region
177 * - end - virtual end address of region
179 ENTRY(v6_dma_clean_range)
180 bic r0, r0, #D_CACHE_LINE_SIZE - 1
183 mcr p15, 0, r0, c7, c10, 1 @ clean D line
185 mcr p15, 0, r0, c7, c11, 1 @ clean unified line
187 add r0, r0, #D_CACHE_LINE_SIZE
191 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
195 * v6_dma_flush_range(start,end)
196 * - start - virtual start address of region
197 * - end - virtual end address of region
199 ENTRY(v6_dma_flush_range)
200 bic r0, r0, #D_CACHE_LINE_SIZE - 1
203 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line
205 mcr p15, 0, r0, c7, c15, 1 @ clean & invalidate line
207 add r0, r0, #D_CACHE_LINE_SIZE
211 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
216 .type v6_cache_fns, #object
218 .long v6_flush_kern_cache_all
219 .long v6_flush_user_cache_all
220 .long v6_flush_user_cache_range
221 .long v6_coherent_kern_range
222 .long v6_coherent_user_range
223 .long v6_flush_kern_dcache_page
224 .long v6_dma_inv_range
225 .long v6_dma_clean_range
226 .long v6_dma_flush_range
227 .size v6_cache_fns, . - v6_cache_fns