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