Home
last modified time | relevance | path

Searched refs:sh_cache_ops (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/sys/arch/sh3/include/
H A Dcache.h117 struct sh_cache_ops { struct
156 extern struct sh_cache_ops sh_cache_ops;
159 (*sh_cache_ops._icache_sync_all)()
162 (*sh_cache_ops._icache_sync_range)((v), (s))
165 (*sh_cache_ops._icache_sync_range_index)((v), (s))
168 (*sh_cache_ops._dcache_wbinv_all)()
171 (*sh_cache_ops._dcache_wbinv_range)((v), (s))
174 (*sh_cache_ops._dcache_wbinv_range_index)((v), (s))
177 (*sh_cache_ops._dcache_inv_range)((v), (s))
180 (*sh_cache_ops._dcache_wb_range)((v), (s))
/netbsd-src/sys/arch/sh3/sh3/
H A Dcache_sh4.c163 sh_cache_ops._icache_sync_all = sh4_icache_sync_all; in sh4_cache_config()
164 sh_cache_ops._icache_sync_range = sh4_icache_sync_range; in sh4_cache_config()
165 sh_cache_ops._icache_sync_range_index = sh4_icache_sync_range_index; in sh4_cache_config()
167 sh_cache_ops._dcache_wbinv_all = sh4_dcache_wbinv_all; in sh4_cache_config()
168 sh_cache_ops._dcache_wbinv_range = sh4_dcache_wbinv_range; in sh4_cache_config()
169 sh_cache_ops._dcache_wbinv_range_index = sh4_dcache_wbinv_range_index; in sh4_cache_config()
170 sh_cache_ops._dcache_inv_range = sh4_dcache_inv_range; in sh4_cache_config()
171 sh_cache_ops._dcache_wb_range = sh4_dcache_wb_range; in sh4_cache_config()
177 sh_cache_ops._dcache_wbinv_all in sh4_cache_config()
179 sh_cache_ops._dcache_wbinv_range_index in sh4_cache_config()
[all …]
H A Dcache_sh3.c119 sh_cache_ops._icache_sync_all = sh3_cache_wbinv_all; in sh3_cache_config()
120 sh_cache_ops._icache_sync_range = sh3_cache_wbinv_range; in sh3_cache_config()
121 sh_cache_ops._icache_sync_range_index = sh3_cache_wbinv_range_index; in sh3_cache_config()
122 sh_cache_ops._dcache_wbinv_all = sh3_cache_wbinv_all; in sh3_cache_config()
123 sh_cache_ops._dcache_wbinv_range = sh3_cache_wbinv_range; in sh3_cache_config()
124 sh_cache_ops._dcache_wbinv_range_index = sh3_cache_wbinv_range_index; in sh3_cache_config()
126 sh_cache_ops._dcache_inv_range = sh3_cache_panic; in sh3_cache_config()
128 sh_cache_ops._dcache_wb_range = sh3_cache_nop; in sh3_cache_config()
131 sh_cache_ops._dcache_wb_range = sh3_cache_wbinv_range; in sh3_cache_config()
H A Dcache.c50 struct sh_cache_ops sh_cache_ops = { variable