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()
298 unsigned long config; in tx39_flush_cache_sigtramp() local
305 config = read_c0_conf(); in tx39_flush_cache_sigtramp()
306 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_flush_cache_sigtramp()
309 write_c0_conf(config); in tx39_flush_cache_sigtramp()
315 unsigned long config; in tx39_probe_cache() local
317 config = read_c0_conf(); in tx39_probe_cache()
319 icache_size = 1 << (10 + ((config & TX39_CONF_ICS_MASK) >> in tx39_probe_cache()
321 dcache_size = 1 << (10 + ((config & TX39_CONF_DCS_MASK) >> in tx39_probe_cache()
351 unsigned long config; in tx39_cache_init() local
353 config = read_c0_conf(); in tx39_cache_init()
354 config &= ~TX39_CONF_WBON; in tx39_cache_init()
355 write_c0_conf(config); in tx39_cache_init()