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