Home
last modified time | relevance | path

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

/openbsd/src/sys/arch/sh/include/
Dcache.h118 struct sh_cache_ops { struct
155 extern struct sh_cache_ops sh_cache_ops;
158 (*sh_cache_ops._icache_sync_all)()
161 (*sh_cache_ops._icache_sync_range)((v), (s))
164 (*sh_cache_ops._icache_sync_range_index)((v), (s))
167 (*sh_cache_ops._dcache_wbinv_all)()
170 (*sh_cache_ops._dcache_wbinv_range)((v), (s))
173 (*sh_cache_ops._dcache_wbinv_range_index)((v), (s))
176 (*sh_cache_ops._dcache_inv_range)((v), (s))
179 (*sh_cache_ops._dcache_wb_range)((v), (s))
/openbsd/src/sys/arch/sh/sh/
Dcache_sh3.c113 sh_cache_ops._icache_sync_all = sh3_cache_wbinv_all; in sh3_cache_config()
114 sh_cache_ops._icache_sync_range = sh3_cache_wbinv_range; in sh3_cache_config()
115 sh_cache_ops._icache_sync_range_index = sh3_cache_wbinv_range_index; in sh3_cache_config()
116 sh_cache_ops._dcache_wbinv_all = sh3_cache_wbinv_all; in sh3_cache_config()
117 sh_cache_ops._dcache_wbinv_range = sh3_cache_wbinv_range; in sh3_cache_config()
118 sh_cache_ops._dcache_wbinv_range_index = sh3_cache_wbinv_range_index; in sh3_cache_config()
120 sh_cache_ops._dcache_inv_range = sh3_cache_panic; in sh3_cache_config()
122 sh_cache_ops._dcache_wb_range = sh3_cache_nop; in sh3_cache_config()
125 sh_cache_ops._dcache_wb_range = sh3_cache_wbinv_range; in sh3_cache_config()
Dcache_sh4.c146 sh_cache_ops._icache_sync_all = sh4_icache_sync_all; in sh4_cache_config()
147 sh_cache_ops._icache_sync_range = sh4_icache_sync_range; in sh4_cache_config()
148 sh_cache_ops._icache_sync_range_index = sh4_icache_sync_range_index; in sh4_cache_config()
150 sh_cache_ops._dcache_wbinv_all = sh4_dcache_wbinv_all; in sh4_cache_config()
151 sh_cache_ops._dcache_wbinv_range = sh4_dcache_wbinv_range; in sh4_cache_config()
152 sh_cache_ops._dcache_wbinv_range_index = sh4_dcache_wbinv_range_index; in sh4_cache_config()
153 sh_cache_ops._dcache_inv_range = sh4_dcache_inv_range; in sh4_cache_config()
154 sh_cache_ops._dcache_wb_range = sh4_dcache_wb_range; in sh4_cache_config()
160 sh_cache_ops._dcache_wbinv_all = in sh4_cache_config()
162 sh_cache_ops._dcache_wbinv_range_index = in sh4_cache_config()
[all …]
Dcache.c45 struct sh_cache_ops sh_cache_ops = { variable