NetBSD/sys/arch/pmax/include/vmparam.h
thorpej c7ad933ffa Add a second memory free list, which holds the first 8M of RAM. This is
so that devices which must allocate DMA memory in this range (e.g.
PixelStamp graphics boards) have a better chance of doing so, without
an awful hack.
1999-05-07 18:04:36 +00:00

18 lines
442 B
C

/* $NetBSD: vmparam.h,v 1.9 1999/05/07 18:04:37 thorpej Exp $ */
#include <mips/vmparam.h>
/*
* DECstation has one physical memory segment.
*/
#define VM_PHYSSEG_MAX 2 /* 2 free lists */
#define VM_PHYSSEG_STRAT VM_PSTRAT_BSEARCH
#define VM_PHYSSEG_NOADD /* can't add RAM after vm_mem_init */
#define VM_NFREELIST 2
#define VM_FREELIST_DEFAULT 0
#define VM_FREELIST_FIRST8 1
/* pcb base */
/*#define pcbb(p) ((u_int)(p)->p_addr) */