Home
last modified time | relevance | path

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

/linux-4.4.14/arch/arc/mm/
Dcache.c111 struct cpuinfo_arc_cache *p_ic, *p_dc; in read_decode_cache_bcr() local
141 p_dc = &cpuinfo_arc700[cpu].dcache; in read_decode_cache_bcr()
149 p_dc->assoc = 4; /* Fixed to 4w set assoc */ in read_decode_cache_bcr()
150 p_dc->vipt = 1; in read_decode_cache_bcr()
151 p_dc->alias = p_dc->sz_k/p_dc->assoc/TO_KB(PAGE_SIZE) > 1; in read_decode_cache_bcr()
153 p_dc->assoc = 1 << dbcr.config; /* 1,2,4,8 */ in read_decode_cache_bcr()
154 p_dc->vipt = 0; in read_decode_cache_bcr()
155 p_dc->alias = 0; /* PIPT so can't VIPT alias */ in read_decode_cache_bcr()
158 p_dc->line_len = 16 << dbcr.line_len; in read_decode_cache_bcr()
159 p_dc->sz_k = 1 << (dbcr.sz - 1); in read_decode_cache_bcr()
[all …]