1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1990 The Regents of the University of California. 5 * All rights reserved. 6 * Copyright (c) 1994 John S. Dyson 7 * All rights reserved. 8 * 9 * This code is derived from software contributed to Berkeley by 10 * William Jolitz. 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice, this list of conditions and the following disclaimer. 17 * 2. Redistributions in binary form must reproduce the above copyright 18 * notice, this list of conditions and the following disclaimer in the 19 * documentation and/or other materials provided with the distribution. 20 * 3. Neither the name of the University nor the names of its contributors 21 * may be used to endorse or promote products derived from this software 22 * without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 * 36 * from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91 37 * $FreeBSD$ 38 */ 39 40 41 #ifndef _MACHINE_VMPARAM_H_ 42 #define _MACHINE_VMPARAM_H_ 1 43 44 /* 45 * Machine dependent constants for 386. 46 */ 47 48 /* 49 * Virtual memory related constants, all in bytes 50 */ 51 #define MAXTSIZ (128UL*1024*1024) /* max text size */ 52 #ifndef DFLDSIZ 53 #define DFLDSIZ (128UL*1024*1024) /* initial data size limit */ 54 #endif 55 #ifndef MAXDSIZ 56 #define MAXDSIZ (512UL*1024*1024) /* max data size */ 57 #endif 58 #ifndef DFLSSIZ 59 #define DFLSSIZ (8UL*1024*1024) /* initial stack size limit */ 60 #endif 61 #ifndef MAXSSIZ 62 #define MAXSSIZ (64UL*1024*1024) /* max stack size */ 63 #endif 64 #ifndef SGROWSIZ 65 #define SGROWSIZ (128UL*1024) /* amount to grow stack */ 66 #endif 67 68 /* 69 * Choose between DENSE and SPARSE based on whether lower execution time or 70 * lower kernel address space consumption is desired. Under PAE, kernel 71 * address space is often in short supply. 72 */ 73 #ifdef PAE 74 #define VM_PHYSSEG_SPARSE 75 #else 76 #define VM_PHYSSEG_DENSE 77 #endif 78 79 /* 80 * The number of PHYSSEG entries must be one greater than the number 81 * of phys_avail entries because the phys_avail entry that spans the 82 * largest physical address that is accessible by ISA DMA is split 83 * into two PHYSSEG entries. 84 */ 85 #define VM_PHYSSEG_MAX 17 86 87 /* 88 * Create one free page pool. Since the i386 kernel virtual address 89 * space does not include a mapping onto the machine's entire physical 90 * memory, VM_FREEPOOL_DIRECT is defined as an alias for the default 91 * pool, VM_FREEPOOL_DEFAULT. 92 */ 93 #define VM_NFREEPOOL 1 94 #define VM_FREEPOOL_DEFAULT 0 95 #define VM_FREEPOOL_DIRECT 0 96 97 /* 98 * Create two free page lists: VM_FREELIST_DEFAULT is for physical 99 * pages that are above the largest physical address that is 100 * accessible by ISA DMA and VM_FREELIST_ISADMA is for physical pages 101 * that are below that address. 102 */ 103 #define VM_NFREELIST 2 104 #define VM_FREELIST_DEFAULT 0 105 #define VM_FREELIST_ISADMA 1 106 107 /* 108 * The largest allocation size is 2MB under PAE and 4MB otherwise. 109 */ 110 #ifdef PAE 111 #define VM_NFREEORDER 10 112 #else 113 #define VM_NFREEORDER 11 114 #endif 115 116 /* 117 * Enable superpage reservations: 1 level. 118 */ 119 #ifndef VM_NRESERVLEVEL 120 #define VM_NRESERVLEVEL 1 121 #endif 122 123 /* 124 * Level 0 reservations consist of 512 pages when PAE pagetables are 125 * used, and 1024 pages otherwise. 126 */ 127 #ifndef VM_LEVEL_0_ORDER 128 #if defined(PAE) || defined(PAE_TABLES) 129 #define VM_LEVEL_0_ORDER 9 130 #else 131 #define VM_LEVEL_0_ORDER 10 132 #endif 133 #endif 134 135 /* 136 * Kernel physical load address. 137 */ 138 #ifndef KERNLOAD 139 #define KERNLOAD (1 << PDRSHIFT) 140 #endif /* !defined(KERNLOAD) */ 141 142 /* 143 * Virtual addresses of things. Derived from the page directory and 144 * page table indexes from pmap.h for precision. 145 * Because of the page that is both a PD and PT, it looks a little 146 * messy at times, but hey, we'll do anything to save a page :-) 147 */ 148 149 #define VM_MAX_KERNEL_ADDRESS VADDR(KPTDI+NKPDE-1, NPTEPG-1) 150 151 #define VM_MIN_KERNEL_ADDRESS VADDR(PTDPTDI, PTDPTDI) 152 153 #define KERNBASE VADDR(KPTDI, 0) 154 155 #define UPT_MAX_ADDRESS VADDR(PTDPTDI, PTDPTDI) 156 #define UPT_MIN_ADDRESS VADDR(PTDPTDI, 0) 157 158 #define VM_MAXUSER_ADDRESS VADDR(PTDPTDI, 0) 159 160 #define SHAREDPAGE (VM_MAXUSER_ADDRESS - PAGE_SIZE) 161 #define USRSTACK SHAREDPAGE 162 163 #define VM_MAX_ADDRESS VADDR(PTDPTDI, PTDPTDI) 164 #define VM_MIN_ADDRESS ((vm_offset_t)0) 165 166 /* 167 * How many physical pages per kmem arena virtual page. 168 */ 169 #ifndef VM_KMEM_SIZE_SCALE 170 #define VM_KMEM_SIZE_SCALE (3) 171 #endif 172 173 /* 174 * Optional floor (in bytes) on the size of the kmem arena. 175 */ 176 #ifndef VM_KMEM_SIZE_MIN 177 #define VM_KMEM_SIZE_MIN (12 * 1024 * 1024) 178 #endif 179 180 /* 181 * Optional ceiling (in bytes) on the size of the kmem arena: 40% of the 182 * kernel map rounded to the nearest multiple of the superpage size. 183 */ 184 #ifndef VM_KMEM_SIZE_MAX 185 #define VM_KMEM_SIZE_MAX (((((VM_MAX_KERNEL_ADDRESS - \ 186 VM_MIN_KERNEL_ADDRESS) >> (PDRSHIFT - 2)) + 5) / 10) << PDRSHIFT) 187 #endif 188 189 /* initial pagein size of beginning of executable file */ 190 #ifndef VM_INITIAL_PAGEIN 191 #define VM_INITIAL_PAGEIN 16 192 #endif 193 194 #define ZERO_REGION_SIZE (64 * 1024) /* 64KB */ 195 196 #ifndef VM_MAX_AUTOTUNE_MAXUSERS 197 #define VM_MAX_AUTOTUNE_MAXUSERS 384 198 #endif 199 200 #define SFBUF 201 #define SFBUF_MAP 202 #define SFBUF_CPUSET 203 #define SFBUF_PROCESS_PAGE 204 205 #endif /* _MACHINE_VMPARAM_H_ */ 206