xref: /netbsd-src/sys/arch/sbmips/include/vmparam.h (revision 6f35b2ec8f636a3b3e3dc6b249a8d95286326679)
1 /* $NetBSD: vmparam.h,v 1.3 2011/02/20 07:47:38 matt Exp $ */
2 
3 #ifndef _SBMIPS_VMPARAM_H_
4 #define _SBMIPS_VMPARAM_H_
5 #include <mips/vmparam.h>
6 
7 /* XXXcgd */
8 #define	VM_PHYSSEG_MAX		8
9 
10 #undef VM_FREELIST_MAX
11 #define VM_FREELIST_MAX		3
12 #if defined(_MIPS_PADDR_T_64BIT) || defined(_LP64)
13 #define VM_FREELIST_FIRST4G	2
14 #endif
15 #if !defined(_LP64)
16 #define VM_FREELIST_FIRST512M	1
17 #endif
18 
19 #endif /* _SBMIPS_VMPARAM_H_ */
20