HomeSort by: relevance | last modified time | path
    Searched refs:pdc_cache (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/hppa/dev/
cpu.c 84 extern struct pdc_cache pdc_cache;
131 if (pdc_cache.dc_conf.cc_fsel)
132 aprint_normal("%uK cache", pdc_cache.dc_size / 1024);
134 aprint_normal("%uK/%uK D/I caches", pdc_cache.dc_size / 1024,
135 pdc_cache.ic_size / 1024);
136 if (pdc_cache.dt_conf.tc_sh)
137 aprint_normal(", %u shared TLB", pdc_cache.dt_size);
139 aprint_normal(", %u/%u D/I TLBs", pdc_cache.dt_size,
140 pdc_cache.it_size)
    [all...]
pdc.c 639 pdcproc_cache(struct pdc_cache *pc)
643 err = pdc_call((iodcio_t)pdc, 0, PDC_CACHE, PDC_CACHE_DFLT, &pdcret1);
659 err = pdc_call((iodcio_t)pdc, 0, PDC_CACHE, PDC_CACHE_GETSPIDB,
  /src/sys/arch/hppa/hppa/
machdep.c 182 struct pdc_cache pdc_cache; variable in typeref:struct:pdc_cache
477 error = pdcproc_cache(&pdc_cache);
479 DPRINTF(("WARNING: PDC_CACHE error %d\n", error));
482 dcache_line_mask = pdc_cache.dc_conf.cc_line * 16 - 1;
483 dcache_stride = pdc_cache.dc_stride;
484 icache_line_mask = pdc_cache.ic_conf.cc_line * 16 - 1;
485 icache_stride = pdc_cache.ic_stride;
1008 fall(pdc_cache.ic_base, pdc_cache.ic_count, pdc_cache.ic_loop
    [all...]
  /src/sys/arch/hppa/include/
pdc.h 133 #define PDC_CACHE 5 /* return cache and TLB params */
381 struct cache_cf { /* PDC_CACHE (for "struct pdc_cache") */
393 struct itlb_cf { /* PDC_CACHE (for "struct pdc_cache") */
404 struct dtlb_cf { /* PDC_CACHE (for "struct pdc_cache") */
414 struct pdc_cache { /* PDC_CACHE */ struct
451 struct pdc_spidb { /* PDC_CACHE, PDC_CACHE_GETSPIDB *
    [all...]
  /src/sys/arch/hppa/stand/common/
pdc.c 422 struct pdc_cache pdc_cacheinfo PDC_ALIGNMENT;
429 if ((err = (*pdc)(PDC_CACHE, PDC_CACHE_DFLT, &pdc_cacheinfo)) < 0) {
432 printf("fcacheall: PDC_CACHE failed (%d).\n", err);
438 printf("pdc_cache:\nic={%u,%x,%x,%u,%u,%u}\n"

Completed in 15 milliseconds