Home | History | Annotate | Line # | Download | only in include
      1 /* $NetBSD: pmap.h,v 1.2 2007/02/22 16:55:22 thorpej Exp $ */
      2 
      3 #include <mips/pmap.h>
      4 
      5 /* uncached accesses are bad; all accesses should be cached (and coherent) */
      6 #undef PMAP_PAGEIDLEZERO
      7 #define	PMAP_PAGEIDLEZERO(pa)   (pmap_zero_page(pa), true)
      8 
      9 int sbmips_cca_for_pa(paddr_t);
     10 
     11 #undef PMAP_CCA_FOR_PA
     12 #define	PMAP_CCA_FOR_PA(pa)	sbmips_cca_for_pa(pa)
     13