Searched refs:pdc_cache (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/sys/arch/hppa/dev/ |
H A D | cpu.c | 84 extern struct pdc_cache pdc_cache; in cpuattach() 131 if (pdc_cache.dc_conf.cc_fsel) in cpuattach() 132 aprint_normal("%uK cache", pdc_cache.dc_size / 1024); in cpuattach() 134 aprint_normal("%uK/%uK D/I caches", pdc_cache.dc_size / 1024, in cpuattach() 135 pdc_cache.ic_size / 1024); in cpuattach() 136 if (pdc_cache.dt_conf.tc_sh) in cpuattach() 137 aprint_normal(", %u shared TLB", pdc_cache.dt_size); in cpuattach() 139 aprint_normal(", %u/%u D/I TLBs", pdc_cache.dt_size, in cpuattach() 140 pdc_cache.it_size); in cpuattach()
|
H A D | pdc.c | 637 pdcproc_cache(struct pdc_cache *pc) in pdcproc_cache()
|
/netbsd-src/sys/arch/hppa/hppa/ |
H A D | machdep.c | 182 struct pdc_cache pdc_cache; variable 477 error = pdcproc_cache(&pdc_cache); in hppa_init() 482 dcache_line_mask = pdc_cache.dc_conf.cc_line * 16 - 1; in hppa_init() 483 dcache_stride = pdc_cache.dc_stride; in hppa_init() 484 icache_line_mask = pdc_cache.ic_conf.cc_line * 16 - 1; in hppa_init() 485 icache_stride = pdc_cache.ic_stride; in hppa_init() 1008 fall(pdc_cache.ic_base, pdc_cache.ic_count, pdc_cache.ic_loop, in fcacheall() 1009 pdc_cache.ic_stride, 0); in fcacheall() 1011 fall(pdc_cache.dc_base, pdc_cache.dc_count, pdc_cache.dc_loop, in fcacheall() 1012 pdc_cache.dc_stride, 1); in fcacheall() [all …]
|
/netbsd-src/sys/arch/hppa/include/ |
H A D | pdc.h | 414 struct pdc_cache { /* PDC_CACHE */ struct 783 int pdcproc_cache(struct pdc_cache *);
|
/netbsd-src/sys/arch/hppa/stand/common/ |
H A D | pdc.c | 422 struct pdc_cache pdc_cacheinfo PDC_ALIGNMENT;
|