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