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