11.1Spooka/*	$NetBSD: vmparam.h,v 1.1 2011/01/26 01:18:52 pooka Exp $	*/
21.1Spooka
31.1Spooka#ifndef _EMIPS_VMPARAM_H_
41.1Spooka#define _EMIPS_VMPARAM_H_
51.1Spooka
61.1Spooka#include <mips/vmparam.h>
71.1Spooka
81.1Spooka/*
91.1Spooka * We have two freelists. The first 8M of RAM goes onto a lower-priority
101.1Spooka * free list, since some TC boards (e.g. PixelStamp boards) are only able
111.1Spooka * to DMA into this region, and we want them to have a fighting chance of
121.1Spooka * allocating their DMA memory during autoconfiguration.
131.1Spooka */
141.1Spooka#define	VM_FREELIST_FIRST8	1
151.1Spooka
161.1Spooka#define	VM_PHYSSEG_MAX		16	/* 15 + 1 free lists */
171.1Spooka
181.1Spooka#endif	/* !_EMIPS_VMPARAM_H_ */
19