Lines Matching refs:config

49 	unsigned long flags, config;  in tx39h_flush_icache_all()  local
53 config = read_c0_conf(); in tx39h_flush_icache_all()
54 write_c0_conf(config & ~TX39_CONF_ICE); in tx39h_flush_icache_all()
63 write_c0_conf(config); in tx39h_flush_icache_all()
105 unsigned long flags, config; in tx39_blast_icache_page() local
108 config = read_c0_conf(); in tx39_blast_icache_page()
109 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache_page()
112 write_c0_conf(config); in tx39_blast_icache_page()
118 unsigned long flags, config; in tx39_blast_icache_page_indexed() local
121 config = read_c0_conf(); in tx39_blast_icache_page_indexed()
122 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache_page_indexed()
125 write_c0_conf(config); in tx39_blast_icache_page_indexed()
131 unsigned long flags, config; in tx39_blast_icache() local
134 config = read_c0_conf(); in tx39_blast_icache()
135 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_blast_icache()
138 write_c0_conf(config); in tx39_blast_icache()
262 unsigned long flags, config; in tx39_flush_icache_range() local
267 config = read_c0_conf(); in tx39_flush_icache_range()
268 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_flush_icache_range()
277 write_c0_conf(config); in tx39_flush_icache_range()
361 unsigned long config; in tx39_flush_cache_sigtramp() local
368 config = read_c0_conf(); in tx39_flush_cache_sigtramp()
369 write_c0_conf(config & ~TX39_CONF_ICE); in tx39_flush_cache_sigtramp()
372 write_c0_conf(config); in tx39_flush_cache_sigtramp()
378 unsigned long config; in tx39_probe_cache() local
380 config = read_c0_conf(); in tx39_probe_cache()
382 icache_size = 1 << (10 + ((config & TX39_CONF_ICS_MASK) >> in tx39_probe_cache()
384 dcache_size = 1 << (10 + ((config & TX39_CONF_DCS_MASK) >> in tx39_probe_cache()
414 unsigned long config; in ld_mmu_tx39() local
416 config = read_c0_conf(); in ld_mmu_tx39()
417 config &= ~TX39_CONF_WBON; in ld_mmu_tx39()
418 write_c0_conf(config); in ld_mmu_tx39()