vmparam.h revision 1.11
1/*	$NetBSD: vmparam.h,v 1.11 2000/01/09 15:34:44 ad Exp $	*/
2
3#ifndef _PMAX_VMPARAM_H_
4#define _PMAX_VMPARAM_H_
5
6#include <mips/vmparam.h>
7
8/*
9 * VM_PHYSSEG_MAX
10 *   We have two freelists. The first 8M of RAM goes onto a lower-priority
11 *   free list, since some TC boards (e.g. PixelStamp boards) are only able
12 *   to DMA into this region, and we want them to have a fighting chance of
13 *   allocating their DMA memory during autoconfiguration.
14 *
15 * VM_PHYSSEG_NOADD
16 *   We can't add RAM after vm_mem_init.
17 */
18
19#define	VM_PHYSSEG_MAX		2
20#define	VM_PHYSSEG_STRAT	VM_PSTRAT_BSEARCH
21#define	VM_PHYSSEG_NOADD	1
22
23#define	VM_NFREELIST		2
24#define	VM_FREELIST_DEFAULT	0
25#define	VM_FREELIST_FIRST8	1
26
27#endif	/* !_PMAX_VMPARAM_H_ */
28