4b7a128684
"swarm"). Other SB-cpu boards will be supported by this port in the future. Includes support for on-chip ethernet and serial. Many features still missing - notably SMP, PCI/LDT and IDE. This code is provided by the Broadband Processor Business Unit at Broadcom Corp with minor updates by me.
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)
|