1 /* $NetBSD: cache.h,v 1.6.2.2 2005/04/01 14:27:54 skrll Exp $ */
4 * Copyright 2001 Wasabi Systems, Inc.
7 * Written by Jason R. Thorpe for Wasabi Systems, Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed for the NetBSD Project by
20 * Wasabi Systems, Inc.
21 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 * or promote products derived from this software without specific prior
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
41 * We define the following primitives:
43 * --- Instruction cache synchronization (mandatory):
45 * icache_sync_all Synchronize I-cache
47 * icache_sync_range Synchronize I-cache range
49 * icache_sync_range_index (index ops)
51 * --- Primary data cache (mandatory):
53 * pdcache_wbinv_all Write-back Invalidate primary D-cache
55 * pdcache_wbinv_range Write-back Invalidate primary D-cache range
57 * pdcache_wbinv_range_index (index ops)
59 * pdcache_inv_range Invalidate primary D-cache range
61 * pdcache_wb_range Write-back primary D-cache range
63 * --- Secondary data cache (optional):
65 * sdcache_wbinv_all Write-back Invalidate secondary D-cache
67 * sdcache_wbinv_range Write-back Invalidate secondary D-cache range
69 * sdcache_wbinv_range_index (index ops)
71 * sdcache_inv_range Invalidate secondary D-cache range
73 * sdcache_wb_range Write-back secondary D-cache range
75 * There are some rules that must be followed:
77 * I-cache Synch (all or range):
78 * The goal is to synchronize the instruction stream,
79 * so you may need to write-back dirty data cache
80 * blocks first. If a range is requested, and you
81 * can't synchronize just a range, you have to hit
84 * D-cache Write-back Invalidate range:
85 * If you can't WB-Inv a range, you must WB-Inv the
89 * If you can't Inv the D-cache without doing a
90 * Write-back, YOU MUST PANIC. This is to catch
91 * errors in calling code. Callers must be aware
92 * of this scenario, and must handle it appropriately
93 * (consider the bus_dma(9) operations).
96 * If you can't Write-back without doing an invalidate,
97 * that's fine. Then treat this as a WB-Inv. Skipping
98 * the invalidate is merely an optimization.
101 * Valid virtual addresses must be passed to the
104 * Finally, these primitives are grouped together in reasonable
105 * ways. For all operations described here, first the primary
106 * cache is frobbed, then the secondary cache frobbed, if the
107 * operation for the secondary cache exists.
109 * mips_icache_sync_all Synchronize I-cache
111 * mips_icache_sync_range Synchronize I-cache range
113 * mips_icache_sync_range_index (index ops)
115 * mips_dcache_wbinv_all Write-back Invalidate D-cache
117 * mips_dcache_wbinv_range Write-back Invalidate D-cache range
119 * mips_dcache_wbinv_range_index (index ops)
121 * mips_dcache_inv_range Invalidate D-cache range
123 * mips_dcache_wb_range Write-back D-cache range
126 struct mips_cache_ops
{
127 void (*mco_icache_sync_all
)(void);
128 void (*mco_icache_sync_range
)(vaddr_t
, vsize_t
);
129 void (*mco_icache_sync_range_index
)(vaddr_t
, vsize_t
);
131 void (*mco_pdcache_wbinv_all
)(void);
132 void (*mco_pdcache_wbinv_range
)(vaddr_t
, vsize_t
);
133 void (*mco_pdcache_wbinv_range_index
)(vaddr_t
, vsize_t
);
134 void (*mco_pdcache_inv_range
)(vaddr_t
, vsize_t
);
135 void (*mco_pdcache_wb_range
)(vaddr_t
, vsize_t
);
137 /* These are called only by the (mipsNN) icache functions. */
138 void (*mco_intern_pdcache_wbinv_all
)(void);
139 void (*mco_intern_pdcache_wbinv_range_index
)(vaddr_t
, vsize_t
);
140 void (*mco_intern_pdcache_wb_range
)(vaddr_t
, vsize_t
);
142 void (*mco_sdcache_wbinv_all
)(void);
143 void (*mco_sdcache_wbinv_range
)(vaddr_t
, vsize_t
);
144 void (*mco_sdcache_wbinv_range_index
)(vaddr_t
, vsize_t
);
145 void (*mco_sdcache_inv_range
)(vaddr_t
, vsize_t
);
146 void (*mco_sdcache_wb_range
)(vaddr_t
, vsize_t
);
148 /* These are called only by the (mipsNN) icache functions. */
149 void (*mco_intern_sdcache_wbinv_all
)(void);
150 void (*mco_intern_sdcache_wbinv_range_index
)(vaddr_t
, vsize_t
);
151 void (*mco_intern_sdcache_wb_range
)(vaddr_t
, vsize_t
);
154 extern struct mips_cache_ops mips_cache_ops
;
156 /* PRIMARY CACHE VARIABLES */
157 extern u_int mips_picache_size
;
158 extern u_int mips_picache_line_size
;
159 extern u_int mips_picache_ways
;
160 extern u_int mips_picache_way_size
;
161 extern u_int mips_picache_way_mask
;
163 extern u_int mips_pdcache_size
; /* and unified */
164 extern u_int mips_pdcache_line_size
;
165 extern u_int mips_pdcache_ways
;
166 extern u_int mips_pdcache_way_size
;
167 extern u_int mips_pdcache_way_mask
;
168 extern int mips_pdcache_write_through
;
170 extern int mips_pcache_unified
;
172 /* SECONDARY CACHE VARIABLES */
173 extern u_int mips_sicache_size
;
174 extern u_int mips_sicache_line_size
;
175 extern u_int mips_sicache_ways
;
176 extern u_int mips_sicache_way_size
;
177 extern u_int mips_sicache_way_mask
;
179 extern u_int mips_sdcache_size
; /* and unified */
180 extern u_int mips_sdcache_line_size
;
181 extern u_int mips_sdcache_ways
;
182 extern u_int mips_sdcache_way_size
;
183 extern u_int mips_sdcache_way_mask
;
184 extern int mips_sdcache_write_through
;
186 extern int mips_scache_unified
;
188 /* TERTIARY CACHE VARIABLES */
189 extern u_int mips_tcache_size
; /* always unified */
190 extern u_int mips_tcache_line_size
;
191 extern u_int mips_tcache_ways
;
192 extern u_int mips_tcache_way_size
;
193 extern u_int mips_tcache_way_mask
;
194 extern int mips_tcache_write_through
;
196 extern u_int mips_dcache_align
;
197 extern u_int mips_dcache_align_mask
;
199 extern u_int mips_cache_alias_mask
;
200 extern u_int mips_cache_prefer_mask
;
202 extern int mips_cache_virtual_alias
;
205 * XXX XXX XXX THIS SHOULD NOT EXIST XXX XXX XXX
207 #define mips_cache_indexof(x) (((vaddr_t)(x)) & mips_cache_alias_mask)
209 #define __mco_noargs(prefix, x) \
211 (*mips_cache_ops.mco_ ## prefix ## p ## x )(); \
212 if (*mips_cache_ops.mco_ ## prefix ## s ## x ) \
213 (*mips_cache_ops.mco_ ## prefix ## s ## x )(); \
214 } while (/*CONSTCOND*/0)
216 #define __mco_2args(prefix, x, a, b) \
218 (*mips_cache_ops.mco_ ## prefix ## p ## x )((a), (b)); \
219 if (*mips_cache_ops.mco_ ## prefix ## s ## x ) \
220 (*mips_cache_ops.mco_ ## prefix ## s ## x )((a), (b)); \
221 } while (/*CONSTCOND*/0)
223 #define mips_icache_sync_all() \
224 (*mips_cache_ops.mco_icache_sync_all)()
226 #define mips_icache_sync_range(v, s) \
227 (*mips_cache_ops.mco_icache_sync_range)((v), (s))
229 #define mips_icache_sync_range_index(v, s) \
230 (*mips_cache_ops.mco_icache_sync_range_index)((v), (s))
232 #define mips_dcache_wbinv_all() \
233 __mco_noargs(, dcache_wbinv_all)
235 #define mips_dcache_wbinv_range(v, s) \
236 __mco_2args(, dcache_wbinv_range, (v), (s))
238 #define mips_dcache_wbinv_range_index(v, s) \
239 __mco_2args(, dcache_wbinv_range_index, (v), (s))
241 #define mips_dcache_inv_range(v, s) \
242 __mco_2args(, dcache_inv_range, (v), (s))
244 #define mips_dcache_wb_range(v, s) \
245 __mco_2args(, dcache_wb_range, (v), (s))
249 * Private D-cache functions only called from (currently only the
250 * mipsNN) I-cache functions.
252 #define mips_intern_dcache_wbinv_all() \
253 __mco_noargs(intern_, dcache_wbinv_all)
255 #define mips_intern_dcache_wbinv_range_index(v, s) \
256 __mco_2args(intern_, dcache_wbinv_range_index, (v), (s))
258 #define mips_intern_dcache_wb_range(v, s) \
259 __mco_2args(intern_, dcache_wb_range, (v), (s))
261 void mips_config_cache(void);
262 void mips_dcache_compute_align(void);
264 #include <mips/cache_mipsNN.h>