Home | History | Annotate | Line # | Download | only in include
vmparam.h revision 1.1
      1  1.1  thorpej /*	$NetBSD: vmparam.h,v 1.1 2001/05/28 16:22:20 thorpej Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej #ifndef _ALGOR_VMPARAM_H_
      4  1.1  thorpej #define _ALGOR_VMPARAM_H_
      5  1.1  thorpej 
      6  1.1  thorpej #include <mips/vmparam.h>
      7  1.1  thorpej 
      8  1.1  thorpej /*
      9  1.1  thorpej  * We have two freelists.  We need to squirrel away memory for ISA
     10  1.1  thorpej  * DMA (it's limited to 8MB on the Algorithmics P-5064, for example,
     11  1.1  thorpej  * starting at 8MB).
     12  1.1  thorpej  */
     13  1.1  thorpej #define	VM_NFREELIST		2
     14  1.1  thorpej #define	VM_FREELIST_DEFAULT	0
     15  1.1  thorpej #define	VM_FREELIST_ISADMA	1
     16  1.1  thorpej 
     17  1.1  thorpej #define	VM_PHYSSEG_MAX		2
     18  1.1  thorpej 
     19  1.1  thorpej #endif	/* !_ALGOR_VMPARAM_H_ */
     20