1 1.1 simonb /* $NetBSD: pmap.h,v 1.1 2002/03/06 02:13:46 simonb 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.1 simonb #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