13 lines
355 B
C
13 lines
355 B
C
/* $NetBSD: pmap.h,v 1.1 2002/03/06 02:13:46 simonb Exp $ */
|
|
|
|
#include <mips/pmap.h>
|
|
|
|
/* uncached accesses are bad; all accesses should be cached (and coherent) */
|
|
#undef PMAP_PAGEIDLEZERO
|
|
#define PMAP_PAGEIDLEZERO(pa) (pmap_zero_page(pa), TRUE)
|
|
|
|
int sbmips_cca_for_pa(paddr_t);
|
|
|
|
#undef PMAP_CCA_FOR_PA
|
|
#define PMAP_CCA_FOR_PA(pa) sbmips_cca_for_pa(pa)
|