vmparam.h revision 1.1
1/* $NetBSD: vmparam.h,v 1.1 2001/04/06 13:13:05 fredette Exp $ */ 2 3/*- 4 * Copyright (c) 1998 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. All advertising materials mentioning features or use of this software 16 * must display the following acknowledgement: 17 * This product includes software developed by the NetBSD 18 * Foundation, Inc. and its contributors. 19 * 4. Neither the name of The NetBSD Foundation nor the names of its 20 * contributors may be used to endorse or promote products derived 21 * from this software without specific prior written permission. 22 * 23 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 24 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 25 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 26 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 27 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 33 * POSSIBILITY OF SUCH DAMAGE. 34 */ 35 36/* 37 * Machine dependent constants for Sun2 38 * 39 * The Sun2 has limited total kernel virtual space (14MB) and 40 * can not use main memory for page tables. (All active PTEs 41 * must be installed in special translation RAM in the MMU). 42 * Therefore, parameters that would normally configure the 43 * size of various page tables are irrelevant. Only things 44 * that consume portions of kernel virtual (KV) space matter, 45 * and those things should be chosen to conserve KV space. 46 */ 47 48/* 49 * We definitely need a small pager map. 50 */ 51#define PAGER_MAP_SIZE (1 * 1024 * 1024) 52 53/* 54 * USRTEXT is the start of the user text/data space, while 55 * USRSTACK is the top (end) of the user stack. 56 */ 57#define USRTEXT NBPG /* Start of user text */ 58#define USRSTACK 0x1000000 /* High end of user stack */ 59 60/* 61 * Virtual memory related constants, all in bytes. 62 * The Sun2 has only 16 MB of user-virtual space, 63 * so we need to be conservative with these limits. 64 */ 65#ifndef MAXTSIZ 66#define MAXTSIZ (5*1024*1024) /* max text size */ 67#endif 68#ifndef DFLDSIZ 69#define DFLDSIZ (4*1024*1024) /* initial data size limit */ 70#endif 71#ifndef MAXDSIZ 72#define MAXDSIZ (6*1024*1024) /* max data size */ 73#endif 74#ifndef DFLSSIZ 75#define DFLSSIZ (512*1024) /* initial stack size limit */ 76#endif 77#ifndef MAXSSIZ 78#define MAXSSIZ (4*1024*1024) /* max stack size */ 79#endif 80 81/* 82 * PTEs for mapping user space into the kernel for phyio operations. 83 * The actual limitation for physio requests will be the DVMA space, 84 * and that is fixed by hardware design at 256K. We could make the 85 * physio map larger than that, but it would not buy us much. 86 */ 87#ifndef USRIOSIZE 88#define USRIOSIZE 128 /* 256K */ 89#endif 90 91/* 92 * PTEs for system V style shared memory. 93 * This is basically slop for kmempt which we actually allocate (malloc) from. 94 */ 95#ifndef SHMMAXPGS 96#define SHMMAXPGS 512 /* 4 MB */ 97#endif 98 99/* 100 * Mach-derived constants: 101 */ 102 103/* user/kernel map constants */ 104#define VM_MIN_ADDRESS ((vm_offset_t)0) 105#define VM_MAX_ADDRESS ((vm_offset_t)USRSTACK) 106#define VM_MAXUSER_ADDRESS ((vm_offset_t)USRSTACK) 107#define VM_MIN_KERNEL_ADDRESS ((vm_offset_t)KERNBASE) 108#define VM_MAX_KERNEL_ADDRESS ((vm_offset_t)KERN_END) 109 110/* virtual sizes (bytes) for various kernel submaps */ 111#define VM_PHYS_SIZE (USRIOSIZE*NBPG) 112 113#define VM_PHYSSEG_STRAT VM_PSTRAT_BSEARCH 114#define VM_PHYSSEG_NOADD /* can't add RAM after vm_mem_init */ 115 116#define VM_NFREELIST 1 117#define VM_FREELIST_DEFAULT 0 118 119#ifdef _LKM 120#define USRSTACK KERNBASE 121extern char KERNBASE[]; 122#endif /* _LKM */ 123 124/* This is needed by some LKMs. */ 125#define VM_PHYSSEG_MAX 4 126struct pmap_physseg { 127 /* NULL */ 128}; 129 130/* 131 * The time for a process to be blocked before being very swappable. 132 * This is a number of seconds which the system takes as being a non-trivial 133 * amount of real time. You probably shouldn't change this; 134 * it is used in subtle ways (fractions and multiples of it are, that is, like 135 * half of a ``long time'', almost a long time, etc.) 136 * It is related to human patience and other factors which don't really 137 * change over time. 138 */ 139#define MAXSLP 20 140