xref: /freebsd/sys/arm/include/vmparam.h (revision 42d704bfc45a1eee601e7cd33ae4bef01c24b9ed)
1 /*	$NetBSD: vmparam.h,v 1.26 2003/08/07 16:27:47 agc Exp $	*/
2 
3 /*-
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  * Copyright (c) 1988 The Regents of the University of California.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 #ifndef	_MACHINE_VMPARAM_H_
35 #define	_MACHINE_VMPARAM_H_
36 
37 /*
38  * Machine dependent constants for ARM.
39  */
40 
41 /*
42  * Virtual memory related constants, all in bytes
43  */
44 #ifndef	MAXTSIZ
45 #define	MAXTSIZ		(256UL*1024*1024)	/* max text size */
46 #endif
47 #ifndef	DFLDSIZ
48 #define	DFLDSIZ		(128UL*1024*1024)	/* initial data size limit */
49 #endif
50 #ifndef	MAXDSIZ
51 #define	MAXDSIZ		(512UL*1024*1024)	/* max data size */
52 #endif
53 #ifndef	DFLSSIZ
54 #define	DFLSSIZ		(4UL*1024*1024)		/* initial stack size limit */
55 #endif
56 #ifndef	MAXSSIZ
57 #define	MAXSSIZ		(64UL*1024*1024)	/* max stack size */
58 #endif
59 #ifndef	SGROWSIZ
60 #define	SGROWSIZ	(128UL*1024)		/* amount to grow stack */
61 #endif
62 
63 /*
64  * Address space constants
65  */
66 
67 /*
68  * The line between user space and kernel space
69  * Mappings >= KERNEL_BASE are constant across all processes
70  */
71 #ifndef KERNBASE
72 #define	KERNBASE		0xc0000000
73 #endif
74 
75 /*
76  * The virtual address the kernel is linked to run at. For armv7 the kernel can
77  * be loaded at any 2MB boundary, and KERNVIRTADDR can also be set to any 2MB
78  * boundary.  It is typically overridden in the std.platform file only when
79  * KERNBASE is also set to a lower address to provide more KVA.
80  */
81 #ifndef KERNVIRTADDR
82 #define	KERNVIRTADDR		0xc0000000
83 #endif
84 
85 /*
86  * max number of non-contig chunks of physical RAM you can have
87  */
88 
89 #define	VM_PHYSSEG_MAX		32
90 
91 /*
92  * The physical address space may be sparsely populated on some ARM systems.
93  */
94 #define	VM_PHYSSEG_SPARSE
95 
96 /*
97  * Create one free page pool.  Since the ARM kernel virtual address
98  * space does not include a mapping onto the machine's entire physical
99  * memory, VM_FREEPOOL_DIRECT is defined as an alias for the default
100  * pool, VM_FREEPOOL_DEFAULT.
101  */
102 #define	VM_NFREEPOOL		1
103 #define	VM_FREEPOOL_DEFAULT	0
104 #define	VM_FREEPOOL_DIRECT	0
105 
106 /*
107  * We need just one free list:  DEFAULT.
108  */
109 #define	VM_NFREELIST		1
110 #define	VM_FREELIST_DEFAULT	0
111 
112 /*
113  * The largest allocation size is 1MB.
114  */
115 #define	VM_NFREEORDER		9
116 
117 /*
118  * Enable superpage reservations: 1 level.
119  */
120 #ifndef	VM_NRESERVLEVEL
121 #define	VM_NRESERVLEVEL		1
122 #endif
123 
124 /*
125  * Level 0 reservations consist of 256 pages.
126  */
127 #ifndef	VM_LEVEL_0_ORDER
128 #define	VM_LEVEL_0_ORDER	8
129 #endif
130 
131 #define VM_MIN_ADDRESS          (0x00001000)
132 #ifndef VM_MAXUSER_ADDRESS
133 #define VM_MAXUSER_ADDRESS      (KERNBASE - 0x00400000) /* !!! PT2MAP_SIZE */
134 #endif
135 #define VM_MAX_ADDRESS          VM_MAXUSER_ADDRESS
136 
137 #define	SHAREDPAGE		(VM_MAXUSER_ADDRESS - PAGE_SIZE)
138 #define	USRSTACK		SHAREDPAGE
139 
140 /* initial pagein size of beginning of executable file */
141 #ifndef VM_INITIAL_PAGEIN
142 #define VM_INITIAL_PAGEIN       16
143 #endif
144 
145 #ifndef VM_MIN_KERNEL_ADDRESS
146 #define VM_MIN_KERNEL_ADDRESS KERNBASE
147 #endif
148 
149 #define	VM_MAX_KERNEL_ADDRESS	(vm_max_kernel_address)
150 
151 /*
152  * How many physical pages per kmem arena virtual page.
153  */
154 #ifndef VM_KMEM_SIZE_SCALE
155 #define	VM_KMEM_SIZE_SCALE	(3)
156 #endif
157 
158 /*
159  * Optional floor (in bytes) on the size of the kmem arena.
160  */
161 #ifndef VM_KMEM_SIZE_MIN
162 #define	VM_KMEM_SIZE_MIN	(12 * 1024 * 1024)
163 #endif
164 
165 /*
166  * Optional ceiling (in bytes) on the size of the kmem arena: 40% of the
167  * kernel map.
168  */
169 #ifndef VM_KMEM_SIZE_MAX
170 #define	VM_KMEM_SIZE_MAX	((vm_max_kernel_address - \
171     VM_MIN_KERNEL_ADDRESS + 1) * 2 / 5)
172 #endif
173 
174 extern vm_offset_t vm_max_kernel_address;
175 
176 #define	ZERO_REGION_SIZE	(64 * 1024)	/* 64KB */
177 
178 #ifndef VM_MAX_AUTOTUNE_MAXUSERS
179 #define	VM_MAX_AUTOTUNE_MAXUSERS	384
180 #endif
181 
182 #define	SFBUF
183 #define	SFBUF_MAP
184 
185 #define	PMAP_HAS_DMAP	0
186 #define	PHYS_TO_DMAP(x)	({ panic("No direct map exists"); 0; })
187 #define	DMAP_TO_PHYS(x)	({ panic("No direct map exists"); 0; })
188 
189 #define	DEVMAP_MAX_VADDR	ARM_VECTORS_HIGH
190 
191 /*
192  * No non-transparent large page support in the pmap.
193  */
194 #define	PMAP_HAS_LARGEPAGES	0
195 
196 /*
197  * Need a page dump array for minidump.
198  */
199 #define MINIDUMP_PAGE_TRACKING	1
200 #define MINIDUMP_STARTUP_PAGE_TRACKING 0
201 
202 #endif	/* _MACHINE_VMPARAM_H_ */
203