blob: 8a8569009c7e7b924c825fef55373cb5113f2a9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* $NetBSD: vmparam.h,v 1.1 2011/01/26 01:18:52 pooka Exp $ */
#ifndef _EMIPS_VMPARAM_H_
#define _EMIPS_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_FREELIST_FIRST8 1
#define VM_PHYSSEG_MAX 16 /* 15 + 1 free lists */
#endif /* !_EMIPS_VMPARAM_H_ */
|