Lines Matching defs:pdc_cache
382 struct pdc_cache { /* PDC_CACHE */ struct
384 u_int ic_size; /* size of I-cache (in bytes) */
385 struct cache_cf ic_conf;/* cache configuration (see above) */
386 u_int ic_base; /* start addr of I-cache (for FICE flush) */
387 u_int ic_stride; /* addr incr per i_count iteration (flush) */
388 u_int ic_count; /* number of i_loop iterations (flush) */
389 u_int ic_loop; /* number of FICE's per addr stride (flush) */
391 u_int dc_size; /* size of D-cache (in bytes) */
392 struct cache_cf dc_conf;/* cache configuration (see above) */
393 u_int dc_base; /* start addr of D-cache (for FDCE flush) */
394 u_int dc_stride; /* addr incr per d_count iteration (flush) */
395 u_int dc_count; /* number of d_loop iterations (flush) */
396 u_int dc_loop; /* number of FDCE's per addr stride (flush) */
398 u_int it_size; /* number of entries in I-TLB */
399 struct tlb_cf it_conf; /* I-TLB configuration (see above) */
400 u_int it_sp_base; /* start space of I-TLB (for PITLBE flush) */
401 u_int it_sp_stride; /* space incr per sp_count iteration (flush) */
402 u_int it_sp_count; /* number of off_count iterations (flush) */
403 u_int it_off_base; /* start offset of I-TLB (for PITLBE flush) */
404 u_int it_off_stride; /* offset incr per off_count iteration (flush)*/
405 u_int it_off_count; /* number of it_loop iterations/space (flush) */
406 u_int it_loop; /* number of PITLBE's per off_stride (flush) */
408 u_int dt_size; /* number of entries in D-TLB */
409 struct tlb_cf dt_conf; /* D-TLB configuration (see above) */
410 u_int dt_sp_base; /* start space of D-TLB (for PDTLBE flush) */
411 u_int dt_sp_stride; /* space incr per sp_count iteration (flush) */
412 u_int dt_sp_count; /* number of off_count iterations (flush) */
413 u_int dt_off_base; /* start offset of D-TLB (for PDTLBE flush) */
414 u_int dt_off_stride; /* offset incr per off_count iteration (flush)*/
415 u_int dt_off_count; /* number of dt_loop iterations/space (flush) */
416 u_int dt_loop; /* number of PDTLBE's per off_stride (flush) */
417 u_int filler[2];