Lines Matching refs:config

45 	unsigned long flags, config;  in tx39h_flush_icache_all()  local
49 config = read_c0_conf(); in tx39h_flush_icache_all()
50 write_c0_conf(config & ~TX39_CONF_ICE); in tx39h_flush_icache_all()
53 write_c0_conf(config); in tx39h_flush_icache_all()
86 unsigned long flags, config; in tx39_blast_icache_page() local
89 config = read_c0_conf(); in tx39_blast_icache_page()
90 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache_page()
93 write_c0_conf(config); in tx39_blast_icache_page()
99 unsigned long flags, config; in tx39_blast_icache_page_indexed() local
102 config = read_c0_conf(); in tx39_blast_icache_page_indexed()
103 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache_page_indexed()
106 write_c0_conf(config); in tx39_blast_icache_page_indexed()
112 unsigned long flags, config; in tx39_blast_icache() local
115 config = read_c0_conf(); in tx39_blast_icache()
116 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache()
119 write_c0_conf(config); in tx39_blast_icache()
241 unsigned long flags, config; in tx39_flush_icache_range() local
244 config = read_c0_conf(); in tx39_flush_icache_range()
245 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_flush_icache_range()
248 write_c0_conf(config); in tx39_flush_icache_range()
296 unsigned long config; in tx39_flush_cache_sigtramp() local
303 config = read_c0_conf(); in tx39_flush_cache_sigtramp()
304 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_flush_cache_sigtramp()
307 write_c0_conf(config); in tx39_flush_cache_sigtramp()
313 unsigned long config; in tx39_probe_cache() local
315 config = read_c0_conf(); in tx39_probe_cache()
317 icache_size = 1 << (10 + ((config & TX39_CONF_ICS_MASK) >> in tx39_probe_cache()
319 dcache_size = 1 << (10 + ((config & TX39_CONF_DCS_MASK) >> in tx39_probe_cache()
349 unsigned long config; in tx39_cache_init() local
351 config = read_c0_conf(); in tx39_cache_init()
352 config &= ~TX39_CONF_WBON; in tx39_cache_init()
353 write_c0_conf(config); in tx39_cache_init()