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