Lines Matching refs:config
47 unsigned long flags, config; in tx39h_flush_icache_all() local
51 config = read_c0_conf(); in tx39h_flush_icache_all()
52 write_c0_conf(config & ~TX39_CONF_ICE); in tx39h_flush_icache_all()
55 write_c0_conf(config); in tx39h_flush_icache_all()
88 unsigned long flags, config; in tx39_blast_icache_page() local
91 config = read_c0_conf(); in tx39_blast_icache_page()
92 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache_page()
95 write_c0_conf(config); in tx39_blast_icache_page()
101 unsigned long flags, config; in tx39_blast_icache_page_indexed() local
104 config = read_c0_conf(); in tx39_blast_icache_page_indexed()
105 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache_page_indexed()
108 write_c0_conf(config); in tx39_blast_icache_page_indexed()
114 unsigned long flags, config; in tx39_blast_icache() local
117 config = read_c0_conf(); in tx39_blast_icache()
118 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache()
121 write_c0_conf(config); in tx39_blast_icache()
243 unsigned long flags, config; in tx39_flush_icache_range() local
246 config = read_c0_conf(); in tx39_flush_icache_range()
247 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_flush_icache_range()
250 write_c0_conf(config); in tx39_flush_icache_range()
293 unsigned long config; in tx39_flush_cache_sigtramp() local
300 config = read_c0_conf(); in tx39_flush_cache_sigtramp()
301 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_flush_cache_sigtramp()
304 write_c0_conf(config); in tx39_flush_cache_sigtramp()
310 unsigned long config; in tx39_probe_cache() local
312 config = read_c0_conf(); in tx39_probe_cache()
314 icache_size = 1 << (10 + ((config & TX39_CONF_ICS_MASK) >> in tx39_probe_cache()
316 dcache_size = 1 << (10 + ((config & TX39_CONF_DCS_MASK) >> in tx39_probe_cache()
346 unsigned long config; in tx39_cache_init() local
348 config = read_c0_conf(); in tx39_cache_init()
349 config &= ~TX39_CONF_WBON; in tx39_cache_init()
350 write_c0_conf(config); in tx39_cache_init()