]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
6d2010ae | 2 | * Copyright (c) 2000-2010 Apple Inc. All rights reserved. |
1c79356b | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
1c79356b | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
8f6c56a5 | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b A |
27 | */ |
28 | /* | |
29 | * @OSF_COPYRIGHT@ | |
30 | */ | |
31 | /* | |
32 | * Mach Operating System | |
33 | * Copyright (c) 1991,1990,1989,1988 Carnegie Mellon University | |
34 | * All Rights Reserved. | |
35 | * | |
36 | * Permission to use, copy, modify and distribute this software and its | |
37 | * documentation is hereby granted, provided that both the copyright | |
38 | * notice and this permission notice appear in all copies of the | |
39 | * software, derivative works or modified versions, and any portions | |
40 | * thereof, and that both notices appear in supporting documentation. | |
41 | * | |
42 | * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" | |
43 | * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR | |
44 | * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. | |
45 | * | |
46 | * Carnegie Mellon requests users of this software to return to | |
47 | * | |
48 | * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU | |
49 | * School of Computer Science | |
50 | * Carnegie Mellon University | |
51 | * Pittsburgh PA 15213-3890 | |
52 | * | |
53 | * any improvements or extensions that they make and grant Carnegie Mellon | |
54 | * the rights to redistribute these changes. | |
55 | */ | |
56 | /* | |
57 | */ | |
58 | ||
59 | /* | |
60 | * File: pmap.c | |
61 | * Author: Avadis Tevanian, Jr., Michael Wayne Young | |
62 | * (These guys wrote the Vax version) | |
63 | * | |
64 | * Physical Map management code for Intel i386, i486, and i860. | |
65 | * | |
66 | * Manages physical address maps. | |
67 | * | |
68 | * In addition to hardware address maps, this | |
69 | * module is called upon to provide software-use-only | |
70 | * maps which may or may not be stored in the same | |
71 | * form as hardware maps. These pseudo-maps are | |
72 | * used to store intermediate results from copy | |
73 | * operations to and from address spaces. | |
74 | * | |
75 | * Since the information managed by this module is | |
76 | * also stored by the logical address mapping module, | |
77 | * this module may throw away valid virtual-to-physical | |
78 | * mappings at almost any time. However, invalidations | |
79 | * of virtual-to-physical mappings must be done as | |
80 | * requested. | |
81 | * | |
82 | * In order to cope with hardware architectures which | |
83 | * make virtual-to-physical map invalidates expensive, | |
84 | * this module may delay invalidate or reduced protection | |
85 | * operations until such time as they are actually | |
86 | * necessary. This module is given full information as | |
87 | * to which processors are currently using which maps, | |
88 | * and to when physical maps must be made correct. | |
89 | */ | |
90 | ||
1c79356b | 91 | #include <string.h> |
1c79356b A |
92 | #include <mach_ldebug.h> |
93 | ||
2d21ac55 A |
94 | #include <libkern/OSAtomic.h> |
95 | ||
1c79356b A |
96 | #include <mach/machine/vm_types.h> |
97 | ||
98 | #include <mach/boolean.h> | |
99 | #include <kern/thread.h> | |
100 | #include <kern/zalloc.h> | |
2d21ac55 | 101 | #include <kern/queue.h> |
316670eb | 102 | #include <kern/ledger.h> |
1c79356b A |
103 | |
104 | #include <kern/lock.h> | |
91447636 | 105 | #include <kern/kalloc.h> |
1c79356b A |
106 | #include <kern/spl.h> |
107 | ||
108 | #include <vm/pmap.h> | |
109 | #include <vm/vm_map.h> | |
110 | #include <vm/vm_kern.h> | |
111 | #include <mach/vm_param.h> | |
112 | #include <mach/vm_prot.h> | |
113 | #include <vm/vm_object.h> | |
114 | #include <vm/vm_page.h> | |
115 | ||
116 | #include <mach/machine/vm_param.h> | |
117 | #include <machine/thread.h> | |
118 | ||
119 | #include <kern/misc_protos.h> /* prototyping */ | |
120 | #include <i386/misc_protos.h> | |
121 | ||
122 | #include <i386/cpuid.h> | |
91447636 | 123 | #include <i386/cpu_data.h> |
55e303ae A |
124 | #include <i386/cpu_number.h> |
125 | #include <i386/machine_cpu.h> | |
0c530ab8 | 126 | #include <i386/seg.h> |
2d21ac55 | 127 | #include <i386/serial_io.h> |
0c530ab8 | 128 | #include <i386/cpu_capabilities.h> |
2d21ac55 A |
129 | #include <i386/machine_routines.h> |
130 | #include <i386/proc_reg.h> | |
131 | #include <i386/tsc.h> | |
b0d623f7 A |
132 | #include <i386/acpi.h> |
133 | #include <i386/pmap_internal.h> | |
1c79356b | 134 | |
91447636 A |
135 | #include <vm/vm_protos.h> |
136 | ||
137 | #include <i386/mp.h> | |
0c530ab8 | 138 | #include <i386/mp_desc.h> |
b0d623f7 | 139 | #include <i386/i386_lowmem.h> |
6d2010ae | 140 | #include <i386/lowglobals.h> |
0c530ab8 | 141 | |
0c530ab8 | 142 | |
2d21ac55 A |
143 | /* #define DEBUGINTERRUPTS 1 uncomment to ensure pmap callers have interrupts enabled */ |
144 | #ifdef DEBUGINTERRUPTS | |
145 | #define pmap_intr_assert() {if (processor_avail_count > 1 && !ml_get_interrupts_enabled()) panic("pmap interrupt assert %s, %d",__FILE__, __LINE__);} | |
146 | #else | |
147 | #define pmap_intr_assert() | |
148 | #endif | |
149 | ||
0c530ab8 A |
150 | #ifdef IWANTTODEBUG |
151 | #undef DEBUG | |
152 | #define DEBUG 1 | |
153 | #define POSTCODE_DELAY 1 | |
154 | #include <i386/postcode.h> | |
155 | #endif /* IWANTTODEBUG */ | |
1c79356b | 156 | |
0c530ab8 A |
157 | #ifdef PMAP_DEBUG |
158 | void dump_pmap(pmap_t); | |
159 | void dump_4GB_pdpt(pmap_t p); | |
160 | void dump_4GB_pdpt_thread(thread_t tp); | |
161 | #endif | |
1c79356b | 162 | |
0c530ab8 | 163 | int nx_enabled = 1; /* enable no-execute protection */ |
4a3eedf9 A |
164 | #ifdef CONFIG_EMBEDDED |
165 | int allow_data_exec = 0; /* no exec from data, embedded is hardcore like that */ | |
166 | #else | |
2d21ac55 | 167 | int allow_data_exec = VM_ABI_32; /* 32-bit apps may execute data by default, 64-bit apps may not */ |
4a3eedf9 | 168 | #endif |
2d21ac55 | 169 | int allow_stack_exec = 0; /* No apps may execute from the stack by default */ |
0c530ab8 | 170 | |
6d2010ae | 171 | #if CONFIG_YONAH |
b0d623f7 | 172 | boolean_t cpu_64bit = FALSE; |
6d2010ae A |
173 | #else |
174 | const boolean_t cpu_64bit = TRUE; | |
175 | #endif | |
b0d623f7 | 176 | boolean_t pmap_trace = FALSE; |
1c79356b | 177 | |
2d21ac55 A |
178 | uint64_t max_preemption_latency_tsc = 0; |
179 | ||
2d21ac55 A |
180 | pv_hashed_entry_t *pv_hash_table; /* hash lists */ |
181 | ||
182 | uint32_t npvhash = 0; | |
183 | ||
1c79356b A |
184 | /* |
185 | * pv_list entries are kept on a list that can only be accessed | |
186 | * with the pmap system locked (at SPLVM, not in the cpus_active set). | |
2d21ac55 | 187 | * The list is refilled from the pv_hashed_list_zone if it becomes empty. |
1c79356b | 188 | */ |
2d21ac55 A |
189 | pv_rooted_entry_t pv_free_list = PV_ROOTED_ENTRY_NULL; /* free list at SPLVM */ |
190 | pv_hashed_entry_t pv_hashed_free_list = PV_HASHED_ENTRY_NULL; | |
191 | pv_hashed_entry_t pv_hashed_kern_free_list = PV_HASHED_ENTRY_NULL; | |
192 | decl_simple_lock_data(,pv_hashed_free_list_lock) | |
193 | decl_simple_lock_data(,pv_hashed_kern_free_list_lock) | |
194 | decl_simple_lock_data(,pv_hash_table_lock) | |
195 | ||
2d21ac55 | 196 | zone_t pv_hashed_list_zone; /* zone of pv_hashed_entry structures */ |
1c79356b | 197 | |
91447636 | 198 | static zone_t pdpt_zone; |
91447636 | 199 | |
1c79356b A |
200 | /* |
201 | * First and last physical addresses that we maintain any information | |
202 | * for. Initialized to zero so that pmap operations done before | |
203 | * pmap_init won't touch any non-existent structures. | |
204 | */ | |
1c79356b A |
205 | boolean_t pmap_initialized = FALSE;/* Has pmap_init completed? */ |
206 | ||
91447636 A |
207 | static struct vm_object kptobj_object_store; |
208 | static vm_object_t kptobj; | |
91447636 | 209 | |
6d2010ae A |
210 | /* |
211 | * Index into pv_head table, its lock bits, and the modify/reference and managed bits | |
212 | */ | |
213 | ||
1c79356b A |
214 | /* |
215 | * Array of physical page attribites for managed pages. | |
216 | * One byte per physical page. | |
217 | */ | |
218 | char *pmap_phys_attributes; | |
2d21ac55 | 219 | unsigned int last_managed_page = 0; |
1c79356b | 220 | |
0c530ab8 | 221 | uint64_t pde_mapped_size; |
1c79356b | 222 | |
316670eb A |
223 | const boolean_t pmap_disable_kheap_nx = TRUE; |
224 | const boolean_t pmap_disable_kstack_nx = TRUE; | |
1c79356b | 225 | |
1c79356b | 226 | |
55e303ae A |
227 | #if USLOCK_DEBUG |
228 | extern int max_lock_loops; | |
91447636 A |
229 | #define LOOP_VAR \ |
230 | unsigned int loop_count; \ | |
2d21ac55 | 231 | loop_count = disable_serial_output ? max_lock_loops \ |
91447636 | 232 | : max_lock_loops*100 |
55e303ae | 233 | #define LOOP_CHECK(msg, pmap) \ |
91447636 | 234 | if (--loop_count == 0) { \ |
55e303ae | 235 | mp_disable_preemption(); \ |
0c530ab8 A |
236 | kprintf("%s: cpu %d pmap %x\n", \ |
237 | msg, cpu_number(), pmap); \ | |
55e303ae A |
238 | Debugger("deadlock detection"); \ |
239 | mp_enable_preemption(); \ | |
91447636 | 240 | loop_count = max_lock_loops; \ |
55e303ae A |
241 | } |
242 | #else /* USLOCK_DEBUG */ | |
243 | #define LOOP_VAR | |
244 | #define LOOP_CHECK(msg, pmap) | |
245 | #endif /* USLOCK_DEBUG */ | |
1c79356b | 246 | |
b0d623f7 A |
247 | unsigned pmap_memory_region_count; |
248 | unsigned pmap_memory_region_current; | |
1c79356b | 249 | |
91447636 | 250 | pmap_memory_region_t pmap_memory_regions[PMAP_MEMORY_REGIONS_SIZE]; |
1c79356b A |
251 | |
252 | /* | |
253 | * Other useful macros. | |
254 | */ | |
91447636 | 255 | #define current_pmap() (vm_map_pmap(current_thread()->map)) |
1c79356b A |
256 | |
257 | struct pmap kernel_pmap_store; | |
258 | pmap_t kernel_pmap; | |
259 | ||
0c530ab8 A |
260 | pd_entry_t high_shared_pde; |
261 | pd_entry_t commpage64_pde; | |
91447636 | 262 | |
1c79356b A |
263 | struct zone *pmap_zone; /* zone of pmap structures */ |
264 | ||
265 | int pmap_debug = 0; /* flag for debugging prints */ | |
91447636 | 266 | |
2d21ac55 | 267 | unsigned int inuse_ptepages_count = 0; |
6d2010ae A |
268 | long long alloc_ptepages_count __attribute__((aligned(8))) = 0LL; /* aligned for atomic access */ |
269 | unsigned int bootstrap_wired_pages = 0; | |
270 | int pt_fake_zone_index = -1; | |
271 | ||
272 | extern long NMIPI_acks; | |
273 | ||
0c530ab8 A |
274 | addr64_t kernel64_cr3; |
275 | boolean_t no_shared_cr3 = FALSE; /* -no_shared_cr3 boot arg */ | |
276 | ||
6d2010ae A |
277 | boolean_t kernel_text_ps_4K = TRUE; |
278 | boolean_t wpkernel = TRUE; | |
1c79356b | 279 | |
1c79356b | 280 | extern char end; |
91447636 A |
281 | static int nkpt; |
282 | ||
283 | pt_entry_t *DMAP1, *DMAP2; | |
284 | caddr_t DADDR1; | |
285 | caddr_t DADDR2; | |
6d2010ae | 286 | |
0c530ab8 A |
287 | /* |
288 | * for legacy, returns the address of the pde entry. | |
289 | * for 64 bit, causes the pdpt page containing the pde entry to be mapped, | |
290 | * then returns the mapped address of the pde entry in that page | |
291 | */ | |
292 | pd_entry_t * | |
293 | pmap_pde(pmap_t m, vm_map_offset_t v) | |
4452a7af | 294 | { |
0c530ab8 A |
295 | pd_entry_t *pde; |
296 | if (!cpu_64bit || (m == kernel_pmap)) { | |
297 | pde = (&((m)->dirbase[(vm_offset_t)(v) >> PDESHIFT])); | |
298 | } else { | |
299 | assert(m); | |
300 | assert(ml_get_interrupts_enabled() == 0 || get_preemption_level() != 0); | |
301 | pde = pmap64_pde(m, v); | |
302 | } | |
303 | return pde; | |
4452a7af A |
304 | } |
305 | ||
4452a7af | 306 | /* |
0c530ab8 A |
307 | * the single pml4 page per pmap is allocated at pmap create time and exists |
308 | * for the duration of the pmap. we allocate this page in kernel vm (to save us one | |
309 | * level of page table dynamic mapping. | |
310 | * this returns the address of the requested pml4 entry in the top level page. | |
4452a7af | 311 | */ |
0c530ab8 A |
312 | static inline |
313 | pml4_entry_t * | |
314 | pmap64_pml4(pmap_t pmap, vm_map_offset_t vaddr) | |
315 | { | |
316 | return ((pml4_entry_t *)pmap->pm_hold + ((vm_offset_t)((vaddr>>PML4SHIFT)&(NPML4PG-1)))); | |
317 | } | |
318 | ||
319 | /* | |
320 | * maps in the pml4 page, if any, containing the pdpt entry requested | |
321 | * and returns the address of the pdpt entry in that mapped page | |
322 | */ | |
323 | pdpt_entry_t * | |
324 | pmap64_pdpt(pmap_t pmap, vm_map_offset_t vaddr) | |
325 | { | |
326 | pml4_entry_t newpf; | |
327 | pml4_entry_t *pml4; | |
328 | int i; | |
329 | ||
330 | assert(pmap); | |
331 | assert(ml_get_interrupts_enabled() == 0 || get_preemption_level() != 0); | |
332 | if ((vaddr > 0x00007FFFFFFFFFFFULL) && (vaddr < 0xFFFF800000000000ULL)) { | |
333 | return(0); | |
4452a7af | 334 | } |
0c530ab8 A |
335 | |
336 | pml4 = pmap64_pml4(pmap, vaddr); | |
337 | ||
338 | if (pml4 && ((*pml4 & INTEL_PTE_VALID))) { | |
339 | ||
340 | newpf = *pml4 & PG_FRAME; | |
341 | ||
342 | ||
343 | for (i=PMAP_PDPT_FIRST_WINDOW; i < PMAP_PDPT_FIRST_WINDOW+PMAP_PDPT_NWINDOWS; i++) { | |
344 | if (((*(current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CMAP)) & PG_FRAME) == newpf) { | |
345 | return((pdpt_entry_t *)(current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CADDR) + | |
346 | ((vm_offset_t)((vaddr>>PDPTSHIFT)&(NPDPTPG-1)))); | |
347 | } | |
348 | } | |
349 | ||
350 | current_cpu_datap()->cpu_pmap->pdpt_window_index++; | |
351 | if (current_cpu_datap()->cpu_pmap->pdpt_window_index > (PMAP_PDPT_FIRST_WINDOW+PMAP_PDPT_NWINDOWS-1)) | |
352 | current_cpu_datap()->cpu_pmap->pdpt_window_index = PMAP_PDPT_FIRST_WINDOW; | |
353 | pmap_store_pte( | |
354 | (current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pdpt_window_index].prv_CMAP), | |
355 | newpf | INTEL_PTE_RW | INTEL_PTE_VALID); | |
356 | invlpg((u_int)(current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pdpt_window_index].prv_CADDR)); | |
357 | return ((pdpt_entry_t *)(current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pdpt_window_index].prv_CADDR) + | |
358 | ((vm_offset_t)((vaddr>>PDPTSHIFT)&(NPDPTPG-1)))); | |
359 | } | |
360 | ||
2d21ac55 | 361 | return (NULL); |
4452a7af A |
362 | } |
363 | ||
0c530ab8 A |
364 | /* |
365 | * maps in the pdpt page, if any, containing the pde entry requested | |
366 | * and returns the address of the pde entry in that mapped page | |
367 | */ | |
368 | pd_entry_t * | |
369 | pmap64_pde(pmap_t pmap, vm_map_offset_t vaddr) | |
4452a7af | 370 | { |
0c530ab8 A |
371 | pdpt_entry_t newpf; |
372 | pdpt_entry_t *pdpt; | |
373 | int i; | |
4452a7af | 374 | |
0c530ab8 A |
375 | assert(pmap); |
376 | assert(ml_get_interrupts_enabled() == 0 || get_preemption_level() != 0); | |
377 | if ((vaddr > 0x00007FFFFFFFFFFFULL) && (vaddr < 0xFFFF800000000000ULL)) { | |
378 | return(0); | |
379 | } | |
380 | ||
381 | /* if (vaddr & (1ULL << 63)) panic("neg addr");*/ | |
382 | pdpt = pmap64_pdpt(pmap, vaddr); | |
383 | ||
384 | if (pdpt && ((*pdpt & INTEL_PTE_VALID))) { | |
385 | ||
386 | newpf = *pdpt & PG_FRAME; | |
387 | ||
388 | for (i=PMAP_PDE_FIRST_WINDOW; i < PMAP_PDE_FIRST_WINDOW+PMAP_PDE_NWINDOWS; i++) { | |
389 | if (((*(current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CMAP)) & PG_FRAME) == newpf) { | |
390 | return((pd_entry_t *)(current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CADDR) + | |
391 | ((vm_offset_t)((vaddr>>PDSHIFT)&(NPDPG-1)))); | |
392 | } | |
4452a7af | 393 | } |
0c530ab8 A |
394 | |
395 | current_cpu_datap()->cpu_pmap->pde_window_index++; | |
396 | if (current_cpu_datap()->cpu_pmap->pde_window_index > (PMAP_PDE_FIRST_WINDOW+PMAP_PDE_NWINDOWS-1)) | |
397 | current_cpu_datap()->cpu_pmap->pde_window_index = PMAP_PDE_FIRST_WINDOW; | |
398 | pmap_store_pte( | |
399 | (current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pde_window_index].prv_CMAP), | |
400 | newpf | INTEL_PTE_RW | INTEL_PTE_VALID); | |
401 | invlpg((u_int)(current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pde_window_index].prv_CADDR)); | |
402 | return ((pd_entry_t *)(current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pde_window_index].prv_CADDR) + | |
403 | ((vm_offset_t)((vaddr>>PDSHIFT)&(NPDPG-1)))); | |
21362eb3 | 404 | } |
4452a7af | 405 | |
2d21ac55 | 406 | return (NULL); |
0c530ab8 A |
407 | } |
408 | ||
2d21ac55 A |
409 | /* |
410 | * Because the page tables (top 3 levels) are mapped into per cpu windows, | |
411 | * callers must either disable interrupts or disable preemption before calling | |
412 | * one of the pte mapping routines (e.g. pmap_pte()) as the returned vaddr | |
413 | * is in one of those mapped windows and that cannot be allowed to change until | |
414 | * the caller is done using the returned pte pointer. When done, the caller | |
415 | * restores interrupts or preemption to its previous state after which point the | |
416 | * vaddr for the returned pte can no longer be used | |
417 | */ | |
0c530ab8 A |
418 | |
419 | ||
420 | /* | |
421 | * return address of mapped pte for vaddr va in pmap pmap. | |
422 | * must be called with pre-emption or interrupts disabled | |
423 | * if targeted pmap is not the kernel pmap | |
424 | * since we may be passing back a virtual address that is | |
425 | * associated with this cpu... pre-emption or interrupts | |
426 | * must remain disabled until the caller is done using | |
427 | * the pointer that was passed back . | |
428 | * | |
429 | * maps the pde page, if any, containing the pte in and returns | |
430 | * the address of the pte in that mapped page | |
431 | */ | |
432 | pt_entry_t * | |
433 | pmap_pte(pmap_t pmap, vm_map_offset_t vaddr) | |
434 | { | |
435 | pd_entry_t *pde; | |
436 | pd_entry_t newpf; | |
437 | int i; | |
438 | ||
439 | assert(pmap); | |
440 | pde = pmap_pde(pmap,vaddr); | |
441 | ||
442 | if (pde && ((*pde & INTEL_PTE_VALID))) { | |
b0d623f7 A |
443 | if (*pde & INTEL_PTE_PS) |
444 | return pde; | |
2d21ac55 A |
445 | if (pmap == kernel_pmap) |
446 | return (vtopte(vaddr)); /* compat kernel still has pte's mapped */ | |
447 | #if TESTING | |
448 | if (ml_get_interrupts_enabled() && get_preemption_level() == 0) | |
449 | panic("pmap_pte: unsafe call"); | |
450 | #endif | |
0c530ab8 A |
451 | assert(ml_get_interrupts_enabled() == 0 || get_preemption_level() != 0); |
452 | ||
453 | newpf = *pde & PG_FRAME; | |
454 | ||
455 | for (i=PMAP_PTE_FIRST_WINDOW; i < PMAP_PTE_FIRST_WINDOW+PMAP_PTE_NWINDOWS; i++) { | |
456 | if (((*(current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CMAP)) & PG_FRAME) == newpf) { | |
457 | return((pt_entry_t *)(current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CADDR) + | |
458 | ((vm_offset_t)i386_btop(vaddr) & (NPTEPG-1))); | |
459 | } | |
460 | } | |
461 | ||
462 | current_cpu_datap()->cpu_pmap->pte_window_index++; | |
463 | if (current_cpu_datap()->cpu_pmap->pte_window_index > (PMAP_PTE_FIRST_WINDOW+PMAP_PTE_NWINDOWS-1)) | |
464 | current_cpu_datap()->cpu_pmap->pte_window_index = PMAP_PTE_FIRST_WINDOW; | |
465 | pmap_store_pte( | |
466 | (current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pte_window_index].prv_CMAP), | |
467 | newpf | INTEL_PTE_RW | INTEL_PTE_VALID); | |
468 | invlpg((u_int)(current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pte_window_index].prv_CADDR)); | |
469 | return ((pt_entry_t *)(current_cpu_datap()->cpu_pmap->mapwindow[current_cpu_datap()->cpu_pmap->pte_window_index].prv_CADDR) + | |
470 | ((vm_offset_t)i386_btop(vaddr) & (NPTEPG-1))); | |
6601e61a | 471 | } |
0c530ab8 | 472 | |
2d21ac55 | 473 | return(NULL); |
1c79356b | 474 | } |
2d21ac55 | 475 | |
1c79356b A |
476 | |
477 | /* | |
478 | * Map memory at initialization. The physical addresses being | |
479 | * mapped are not managed and are never unmapped. | |
480 | * | |
481 | * For now, VM is already on, we only need to map the | |
482 | * specified memory. | |
483 | */ | |
484 | vm_offset_t | |
485 | pmap_map( | |
0c530ab8 A |
486 | vm_offset_t virt, |
487 | vm_map_offset_t start_addr, | |
488 | vm_map_offset_t end_addr, | |
489 | vm_prot_t prot, | |
490 | unsigned int flags) | |
1c79356b | 491 | { |
0c530ab8 | 492 | int ps; |
1c79356b A |
493 | |
494 | ps = PAGE_SIZE; | |
91447636 | 495 | while (start_addr < end_addr) { |
0c530ab8 | 496 | pmap_enter(kernel_pmap, (vm_map_offset_t)virt, |
316670eb | 497 | (ppnum_t) i386_btop(start_addr), prot, VM_PROT_NONE, flags, FALSE); |
1c79356b | 498 | virt += ps; |
91447636 | 499 | start_addr += ps; |
1c79356b A |
500 | } |
501 | return(virt); | |
502 | } | |
503 | ||
6d2010ae | 504 | extern pmap_paddr_t first_avail; |
b0d623f7 A |
505 | extern vm_offset_t virtual_avail, virtual_end; |
506 | extern pmap_paddr_t avail_start, avail_end; | |
6d2010ae A |
507 | extern vm_offset_t sHIB; |
508 | extern vm_offset_t eHIB; | |
509 | extern vm_offset_t stext; | |
510 | extern vm_offset_t etext; | |
511 | extern vm_offset_t sdata; | |
512 | ||
513 | extern void *KPTphys; | |
1c79356b | 514 | |
2d21ac55 A |
515 | void |
516 | pmap_cpu_init(void) | |
517 | { | |
518 | /* | |
519 | * Here early in the life of a processor (from cpu_mode_init()). | |
2d21ac55 | 520 | */ |
2d21ac55 A |
521 | |
522 | /* | |
523 | * Initialize the per-cpu, TLB-related fields. | |
524 | */ | |
525 | current_cpu_datap()->cpu_active_cr3 = kernel_pmap->pm_cr3; | |
526 | current_cpu_datap()->cpu_tlb_invalid = FALSE; | |
527 | } | |
0c530ab8 A |
528 | |
529 | vm_offset_t | |
530 | pmap_high_shared_remap(enum high_fixed_addresses e, vm_offset_t va, int sz) | |
531 | { | |
532 | vm_offset_t ve = pmap_index_to_virt(e); | |
533 | pt_entry_t *ptep; | |
534 | pmap_paddr_t pa; | |
535 | int i; | |
2d21ac55 | 536 | spl_t s; |
0c530ab8 A |
537 | |
538 | assert(0 == (va & PAGE_MASK)); /* expecting page aligned */ | |
2d21ac55 | 539 | s = splhigh(); |
0c530ab8 A |
540 | ptep = pmap_pte(kernel_pmap, (vm_map_offset_t)ve); |
541 | ||
542 | for (i=0; i< sz; i++) { | |
543 | pa = (pmap_paddr_t) kvtophys(va); | |
544 | pmap_store_pte(ptep, (pa & PG_FRAME) | |
545 | | INTEL_PTE_VALID | |
546 | | INTEL_PTE_GLOBAL | |
547 | | INTEL_PTE_RW | |
548 | | INTEL_PTE_REF | |
549 | | INTEL_PTE_MOD); | |
550 | va+= PAGE_SIZE; | |
551 | ptep++; | |
552 | } | |
2d21ac55 | 553 | splx(s); |
0c530ab8 A |
554 | return ve; |
555 | } | |
556 | ||
557 | vm_offset_t | |
558 | pmap_cpu_high_shared_remap(int cpu, enum high_cpu_types e, vm_offset_t va, int sz) | |
559 | { | |
560 | enum high_fixed_addresses a = e + HIGH_CPU_END * cpu; | |
561 | return pmap_high_shared_remap(HIGH_FIXED_CPUS_BEGIN + a, va, sz); | |
562 | } | |
563 | ||
564 | void pmap_init_high_shared(void); | |
565 | ||
566 | extern vm_offset_t gdtptr, idtptr; | |
567 | ||
568 | extern uint32_t low_intstack; | |
569 | ||
570 | extern struct fake_descriptor ldt_desc_pattern; | |
571 | extern struct fake_descriptor tss_desc_pattern; | |
572 | ||
573 | extern char hi_remap_text, hi_remap_etext; | |
574 | extern char t_zero_div; | |
575 | ||
576 | pt_entry_t *pte_unique_base; | |
577 | ||
578 | void | |
579 | pmap_init_high_shared(void) | |
580 | { | |
581 | ||
582 | vm_offset_t haddr; | |
2d21ac55 | 583 | spl_t s; |
0c530ab8 | 584 | |
b0d623f7 A |
585 | cpu_desc_index_t * cdi = &cpu_data_master.cpu_desc_index; |
586 | ||
0c530ab8 A |
587 | kprintf("HIGH_MEM_BASE 0x%x fixed per-cpu begin 0x%x\n", |
588 | HIGH_MEM_BASE,pmap_index_to_virt(HIGH_FIXED_CPUS_BEGIN)); | |
2d21ac55 | 589 | s = splhigh(); |
0c530ab8 | 590 | pte_unique_base = pmap_pte(kernel_pmap, (vm_map_offset_t)pmap_index_to_virt(HIGH_FIXED_CPUS_BEGIN)); |
2d21ac55 | 591 | splx(s); |
0c530ab8 A |
592 | |
593 | if (i386_btop(&hi_remap_etext - &hi_remap_text + 1) > | |
594 | HIGH_FIXED_TRAMPS_END - HIGH_FIXED_TRAMPS + 1) | |
595 | panic("tramps too large"); | |
596 | haddr = pmap_high_shared_remap(HIGH_FIXED_TRAMPS, | |
597 | (vm_offset_t) &hi_remap_text, 3); | |
598 | kprintf("tramp: 0x%x, ",haddr); | |
0c530ab8 A |
599 | /* map gdt up high and update ptr for reload */ |
600 | haddr = pmap_high_shared_remap(HIGH_FIXED_GDT, | |
601 | (vm_offset_t) master_gdt, 1); | |
b0d623f7 | 602 | cdi->cdi_gdt.ptr = (void *)haddr; |
0c530ab8 A |
603 | kprintf("GDT: 0x%x, ",haddr); |
604 | /* map ldt up high */ | |
605 | haddr = pmap_high_shared_remap(HIGH_FIXED_LDT_BEGIN, | |
606 | (vm_offset_t) master_ldt, | |
607 | HIGH_FIXED_LDT_END - HIGH_FIXED_LDT_BEGIN + 1); | |
b0d623f7 | 608 | cdi->cdi_ldt = (struct fake_descriptor *)haddr; |
0c530ab8 A |
609 | kprintf("LDT: 0x%x, ",haddr); |
610 | /* put new ldt addr into gdt */ | |
b0d623f7 A |
611 | struct fake_descriptor temp_fake_desc; |
612 | temp_fake_desc = ldt_desc_pattern; | |
613 | temp_fake_desc.offset = (vm_offset_t) haddr; | |
614 | fix_desc(&temp_fake_desc, 1); | |
615 | ||
616 | *(struct fake_descriptor *) &master_gdt[sel_idx(KERNEL_LDT)] = temp_fake_desc; | |
617 | *(struct fake_descriptor *) &master_gdt[sel_idx(USER_LDT)] = temp_fake_desc; | |
0c530ab8 A |
618 | |
619 | /* map idt up high */ | |
620 | haddr = pmap_high_shared_remap(HIGH_FIXED_IDT, | |
621 | (vm_offset_t) master_idt, 1); | |
b0d623f7 | 622 | cdi->cdi_idt.ptr = (void *)haddr; |
0c530ab8 A |
623 | kprintf("IDT: 0x%x, ", haddr); |
624 | /* remap ktss up high and put new high addr into gdt */ | |
625 | haddr = pmap_high_shared_remap(HIGH_FIXED_KTSS, | |
626 | (vm_offset_t) &master_ktss, 1); | |
b0d623f7 A |
627 | |
628 | temp_fake_desc = tss_desc_pattern; | |
629 | temp_fake_desc.offset = (vm_offset_t) haddr; | |
630 | fix_desc(&temp_fake_desc, 1); | |
631 | *(struct fake_descriptor *) &master_gdt[sel_idx(KERNEL_TSS)] = temp_fake_desc; | |
0c530ab8 | 632 | kprintf("KTSS: 0x%x, ",haddr); |
0c530ab8 A |
633 | |
634 | /* remap dftss up high and put new high addr into gdt */ | |
635 | haddr = pmap_high_shared_remap(HIGH_FIXED_DFTSS, | |
636 | (vm_offset_t) &master_dftss, 1); | |
b0d623f7 A |
637 | temp_fake_desc = tss_desc_pattern; |
638 | temp_fake_desc.offset = (vm_offset_t) haddr; | |
639 | fix_desc(&temp_fake_desc, 1); | |
640 | *(struct fake_descriptor *) &master_gdt[sel_idx(DF_TSS)] = temp_fake_desc; | |
0c530ab8 A |
641 | kprintf("DFTSS: 0x%x\n",haddr); |
642 | ||
643 | /* remap mctss up high and put new high addr into gdt */ | |
644 | haddr = pmap_high_shared_remap(HIGH_FIXED_DFTSS, | |
645 | (vm_offset_t) &master_mctss, 1); | |
b0d623f7 A |
646 | temp_fake_desc = tss_desc_pattern; |
647 | temp_fake_desc.offset = (vm_offset_t) haddr; | |
648 | fix_desc(&temp_fake_desc, 1); | |
649 | *(struct fake_descriptor *) &master_gdt[sel_idx(MC_TSS)] = temp_fake_desc; | |
0c530ab8 A |
650 | kprintf("MCTSS: 0x%x\n",haddr); |
651 | ||
b0d623f7 | 652 | cpu_desc_load(&cpu_data_master); |
0c530ab8 A |
653 | } |
654 | ||
655 | ||
1c79356b A |
656 | /* |
657 | * Bootstrap the system enough to run with virtual memory. | |
658 | * Map the kernel's code and data, and allocate the system page table. | |
659 | * Called with mapping OFF. Page_size must already be set. | |
1c79356b A |
660 | */ |
661 | ||
662 | void | |
663 | pmap_bootstrap( | |
0c530ab8 A |
664 | __unused vm_offset_t load_start, |
665 | boolean_t IA32e) | |
1c79356b | 666 | { |
91447636 | 667 | vm_offset_t va; |
316670eb | 668 | unsigned i; |
0c530ab8 | 669 | pdpt_entry_t *pdpt; |
2d21ac55 | 670 | spl_t s; |
1c79356b | 671 | |
91447636 A |
672 | vm_last_addr = VM_MAX_KERNEL_ADDRESS; /* Set the highest address |
673 | * known to VM */ | |
1c79356b A |
674 | /* |
675 | * The kernel's pmap is statically allocated so we don't | |
676 | * have to use pmap_create, which is unlikely to work | |
677 | * correctly at this part of the boot sequence. | |
678 | */ | |
679 | ||
0c530ab8 | 680 | |
1c79356b | 681 | kernel_pmap = &kernel_pmap_store; |
91447636 | 682 | kernel_pmap->ref_count = 1; |
0c530ab8 | 683 | kernel_pmap->nx_enabled = FALSE; |
2d21ac55 | 684 | kernel_pmap->pm_task_map = TASK_MAP_32BIT; |
91447636 A |
685 | kernel_pmap->pm_obj = (vm_object_t) NULL; |
686 | kernel_pmap->dirbase = (pd_entry_t *)((unsigned int)IdlePTD | KERNBASE); | |
0c530ab8 A |
687 | kernel_pmap->pdirbase = (pmap_paddr_t)((int)IdlePTD); |
688 | pdpt = (pd_entry_t *)((unsigned int)IdlePDPT | KERNBASE ); | |
689 | kernel_pmap->pm_pdpt = pdpt; | |
690 | kernel_pmap->pm_cr3 = (pmap_paddr_t)((int)IdlePDPT); | |
1c79356b | 691 | |
b0d623f7 | 692 | |
91447636 A |
693 | va = (vm_offset_t)kernel_pmap->dirbase; |
694 | /* setup self referential mapping(s) */ | |
0c530ab8 | 695 | for (i = 0; i< NPGPTD; i++, pdpt++) { |
91447636 | 696 | pmap_paddr_t pa; |
b0d623f7 | 697 | pa = (pmap_paddr_t) kvtophys((vm_offset_t)(va + i386_ptob(i))); |
0c530ab8 A |
698 | pmap_store_pte( |
699 | (pd_entry_t *) (kernel_pmap->dirbase + PTDPTDI + i), | |
91447636 | 700 | (pa & PG_FRAME) | INTEL_PTE_VALID | INTEL_PTE_RW | INTEL_PTE_REF | |
0c530ab8 A |
701 | INTEL_PTE_MOD | INTEL_PTE_WIRED) ; |
702 | pmap_store_pte(pdpt, pa | INTEL_PTE_VALID); | |
91447636 | 703 | } |
1c79356b | 704 | |
6d2010ae A |
705 | #if CONFIG_YONAH |
706 | /* 32-bit and legacy support depends on IA32e mode being disabled */ | |
0c530ab8 | 707 | cpu_64bit = IA32e; |
6d2010ae | 708 | #endif |
0c530ab8 A |
709 | |
710 | lo_kernel_cr3 = kernel_pmap->pm_cr3; | |
711 | current_cpu_datap()->cpu_kernel_cr3 = (addr64_t) kernel_pmap->pm_cr3; | |
712 | ||
713 | /* save the value we stuff into created pmaps to share the gdts etc */ | |
714 | high_shared_pde = *pmap_pde(kernel_pmap, HIGH_MEM_BASE); | |
715 | /* make sure G bit is on for high shared pde entry */ | |
716 | high_shared_pde |= INTEL_PTE_GLOBAL; | |
2d21ac55 | 717 | s = splhigh(); |
0c530ab8 | 718 | pmap_store_pte(pmap_pde(kernel_pmap, HIGH_MEM_BASE), high_shared_pde); |
2d21ac55 | 719 | splx(s); |
0c530ab8 | 720 | |
91447636 | 721 | nkpt = NKPT; |
b0d623f7 | 722 | OSAddAtomic(NKPT, &inuse_ptepages_count); |
6d2010ae A |
723 | OSAddAtomic64(NKPT, &alloc_ptepages_count); |
724 | bootstrap_wired_pages = NKPT; | |
1c79356b | 725 | |
91447636 A |
726 | virtual_avail = (vm_offset_t)VADDR(KPTDI,0) + (vm_offset_t)first_avail; |
727 | virtual_end = (vm_offset_t)(VM_MAX_KERNEL_ADDRESS); | |
1c79356b A |
728 | |
729 | /* | |
91447636 A |
730 | * Reserve some special page table entries/VA space for temporary |
731 | * mapping of pages. | |
1c79356b | 732 | */ |
91447636 | 733 | va = virtual_avail; |
6d2010ae | 734 | pt_entry_t *pte; |
0c530ab8 | 735 | pte = vtopte(va); |
6d2010ae A |
736 | #define SYSMAP(c, p, v, n) \ |
737 | v = (c)va; va += ((n)*INTEL_PGBYTES); p = pte; pte += (n) | |
6601e61a | 738 | |
0c530ab8 A |
739 | for (i=0; i<PMAP_NWINDOWS; i++) { |
740 | SYSMAP(caddr_t, | |
741 | (current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CMAP), | |
742 | (current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CADDR), | |
743 | 1); | |
744 | *current_cpu_datap()->cpu_pmap->mapwindow[i].prv_CMAP = 0; | |
745 | } | |
1c79356b | 746 | |
91447636 A |
747 | /* DMAP user for debugger */ |
748 | SYSMAP(caddr_t, DMAP1, DADDR1, 1); | |
749 | SYSMAP(caddr_t, DMAP2, DADDR2, 1); /* XXX temporary - can remove */ | |
1c79356b | 750 | |
91447636 | 751 | virtual_avail = va; |
1c79356b | 752 | |
593a1d5f | 753 | if (PE_parse_boot_argn("npvhash", &npvhash, sizeof (npvhash))) { |
2d21ac55 A |
754 | if (0 != ((npvhash+1) & npvhash)) { |
755 | kprintf("invalid hash %d, must be ((2^N)-1), using default %d\n",npvhash,NPVHASH); | |
756 | npvhash = NPVHASH; | |
757 | } | |
758 | } else { | |
759 | npvhash = NPVHASH; | |
760 | } | |
761 | printf("npvhash=%d\n",npvhash); | |
762 | ||
91447636 | 763 | simple_lock_init(&kernel_pmap->lock, 0); |
2d21ac55 A |
764 | simple_lock_init(&pv_hashed_free_list_lock, 0); |
765 | simple_lock_init(&pv_hashed_kern_free_list_lock, 0); | |
766 | simple_lock_init(&pv_hash_table_lock,0); | |
1c79356b | 767 | |
2d21ac55 | 768 | pmap_init_high_shared(); |
0c530ab8 A |
769 | |
770 | pde_mapped_size = PDE_MAPPED_SIZE; | |
771 | ||
772 | if (cpu_64bit) { | |
b0d623f7 | 773 | pdpt_entry_t *ppdpt = IdlePDPT; |
0c530ab8 A |
774 | pdpt_entry_t *ppdpt64 = (pdpt_entry_t *)IdlePDPT64; |
775 | pdpt_entry_t *ppml4 = (pdpt_entry_t *)IdlePML4; | |
776 | int istate = ml_set_interrupts_enabled(FALSE); | |
777 | ||
778 | /* | |
779 | * Clone a new 64-bit 3rd-level page table directory, IdlePML4, | |
780 | * with page bits set for the correct IA-32e operation and so that | |
781 | * the legacy-mode IdlePDPT is retained for slave processor start-up. | |
782 | * This is necessary due to the incompatible use of page bits between | |
783 | * 64-bit and legacy modes. | |
784 | */ | |
785 | kernel_pmap->pm_cr3 = (pmap_paddr_t)((int)IdlePML4); /* setup in start.s for us */ | |
786 | kernel_pmap->pm_pml4 = IdlePML4; | |
787 | kernel_pmap->pm_pdpt = (pd_entry_t *) | |
788 | ((unsigned int)IdlePDPT64 | KERNBASE ); | |
789 | #define PAGE_BITS INTEL_PTE_VALID|INTEL_PTE_RW|INTEL_PTE_USER|INTEL_PTE_REF | |
790 | pmap_store_pte(kernel_pmap->pm_pml4, | |
791 | (uint32_t)IdlePDPT64 | PAGE_BITS); | |
792 | pmap_store_pte((ppdpt64+0), *(ppdpt+0) | PAGE_BITS); | |
793 | pmap_store_pte((ppdpt64+1), *(ppdpt+1) | PAGE_BITS); | |
794 | pmap_store_pte((ppdpt64+2), *(ppdpt+2) | PAGE_BITS); | |
795 | pmap_store_pte((ppdpt64+3), *(ppdpt+3) | PAGE_BITS); | |
796 | ||
797 | /* | |
798 | * The kernel is also mapped in the uber-sapce at the 4GB starting | |
799 | * 0xFFFFFF80:00000000. This is the highest entry in the 4th-level. | |
800 | */ | |
801 | pmap_store_pte((ppml4+KERNEL_UBER_PML4_INDEX), *(ppml4+0)); | |
802 | ||
803 | kernel64_cr3 = (addr64_t) kernel_pmap->pm_cr3; | |
0c530ab8 | 804 | |
2d21ac55 | 805 | /* Re-initialize descriptors and prepare to switch modes */ |
b0d623f7 | 806 | cpu_desc_init64(&cpu_data_master); |
2d21ac55 A |
807 | current_cpu_datap()->cpu_is64bit = TRUE; |
808 | current_cpu_datap()->cpu_active_cr3 = kernel64_cr3; | |
0c530ab8 A |
809 | |
810 | pde_mapped_size = 512*4096 ; | |
811 | ||
812 | ml_set_interrupts_enabled(istate); | |
0c530ab8 | 813 | } |
2d21ac55 | 814 | |
b0d623f7 | 815 | /* Sets 64-bit mode if required. */ |
2d21ac55 | 816 | cpu_mode_init(&cpu_data_master); |
b0d623f7 A |
817 | /* Update in-kernel CPUID information if we're now in 64-bit mode */ |
818 | if (IA32e) | |
819 | cpuid_set_info(); | |
2d21ac55 | 820 | |
0c530ab8 | 821 | kernel_pmap->pm_hold = (vm_offset_t)kernel_pmap->pm_pml4; |
1c79356b | 822 | |
91447636 A |
823 | kprintf("Kernel virtual space from 0x%x to 0x%x.\n", |
824 | VADDR(KPTDI,0), virtual_end); | |
6601e61a | 825 | printf("PAE enabled\n"); |
0c530ab8 A |
826 | if (cpu_64bit){ |
827 | printf("64 bit mode enabled\n");kprintf("64 bit mode enabled\n"); } | |
828 | ||
829 | kprintf("Available physical space from 0x%llx to 0x%llx\n", | |
6601e61a | 830 | avail_start, avail_end); |
0c530ab8 A |
831 | |
832 | /* | |
833 | * By default for 64-bit users loaded at 4GB, share kernel mapping. | |
834 | * But this may be overridden by the -no_shared_cr3 boot-arg. | |
835 | */ | |
593a1d5f | 836 | if (PE_parse_boot_argn("-no_shared_cr3", &no_shared_cr3, sizeof (no_shared_cr3))) { |
0c530ab8 | 837 | kprintf("Shared kernel address space disabled\n"); |
2d21ac55 A |
838 | } |
839 | ||
840 | #ifdef PMAP_TRACES | |
593a1d5f | 841 | if (PE_parse_boot_argn("-pmap_trace", &pmap_trace, sizeof (pmap_trace))) { |
2d21ac55 A |
842 | kprintf("Kernel traces for pmap operations enabled\n"); |
843 | } | |
844 | #endif /* PMAP_TRACES */ | |
1c79356b A |
845 | } |
846 | ||
847 | void | |
848 | pmap_virtual_space( | |
849 | vm_offset_t *startp, | |
850 | vm_offset_t *endp) | |
851 | { | |
852 | *startp = virtual_avail; | |
853 | *endp = virtual_end; | |
854 | } | |
855 | ||
856 | /* | |
857 | * Initialize the pmap module. | |
858 | * Called by vm_init, to initialize any structures that the pmap | |
859 | * system needs to map virtual memory. | |
860 | */ | |
861 | void | |
862 | pmap_init(void) | |
863 | { | |
0b4c1975 A |
864 | long npages; |
865 | vm_map_offset_t vaddr; | |
866 | vm_offset_t addr; | |
867 | vm_size_t s, vsize; | |
868 | ppnum_t ppn; | |
1c79356b A |
869 | |
870 | /* | |
871 | * Allocate memory for the pv_head_table and its lock bits, | |
872 | * the modify bit array, and the pte_page table. | |
873 | */ | |
874 | ||
2d21ac55 A |
875 | /* |
876 | * zero bias all these arrays now instead of off avail_start | |
877 | * so we cover all memory | |
878 | */ | |
879 | ||
b0d623f7 | 880 | npages = (long)i386_btop(avail_end); |
2d21ac55 A |
881 | s = (vm_size_t) (sizeof(struct pv_rooted_entry) * npages |
882 | + (sizeof (struct pv_hashed_entry_t *) * (npvhash+1)) | |
883 | + pv_lock_table_size(npages) | |
884 | + pv_hash_lock_table_size((npvhash+1)) | |
1c79356b A |
885 | + npages); |
886 | ||
887 | s = round_page(s); | |
b0d623f7 A |
888 | if (kernel_memory_allocate(kernel_map, &addr, s, 0, |
889 | KMA_KOBJECT | KMA_PERMANENT) | |
890 | != KERN_SUCCESS) | |
1c79356b A |
891 | panic("pmap_init"); |
892 | ||
893 | memset((char *)addr, 0, s); | |
894 | ||
0b4c1975 A |
895 | vaddr = addr; |
896 | vsize = s; | |
897 | ||
2d21ac55 A |
898 | #if PV_DEBUG |
899 | if (0 == npvhash) panic("npvhash not initialized"); | |
900 | #endif | |
901 | ||
1c79356b A |
902 | /* |
903 | * Allocate the structures first to preserve word-alignment. | |
904 | */ | |
2d21ac55 | 905 | pv_head_table = (pv_rooted_entry_t) addr; |
1c79356b A |
906 | addr = (vm_offset_t) (pv_head_table + npages); |
907 | ||
2d21ac55 A |
908 | pv_hash_table = (pv_hashed_entry_t *)addr; |
909 | addr = (vm_offset_t) (pv_hash_table + (npvhash + 1)); | |
910 | ||
1c79356b A |
911 | pv_lock_table = (char *) addr; |
912 | addr = (vm_offset_t) (pv_lock_table + pv_lock_table_size(npages)); | |
913 | ||
2d21ac55 A |
914 | pv_hash_lock_table = (char *) addr; |
915 | addr = (vm_offset_t) (pv_hash_lock_table + pv_hash_lock_table_size((npvhash+1))); | |
916 | ||
1c79356b | 917 | pmap_phys_attributes = (char *) addr; |
2d21ac55 A |
918 | { |
919 | unsigned int i; | |
920 | unsigned int pn; | |
921 | ppnum_t last_pn; | |
922 | pmap_memory_region_t *pmptr = pmap_memory_regions; | |
923 | ||
b0d623f7 | 924 | last_pn = (ppnum_t)i386_btop(avail_end); |
2d21ac55 A |
925 | |
926 | for (i = 0; i < pmap_memory_region_count; i++, pmptr++) { | |
927 | if (pmptr->type == kEfiConventionalMemory) { | |
b0d623f7 | 928 | |
2d21ac55 A |
929 | for (pn = pmptr->base; pn <= pmptr->end; pn++) { |
930 | if (pn < last_pn) { | |
931 | pmap_phys_attributes[pn] |= PHYS_MANAGED; | |
932 | ||
933 | if (pn > last_managed_page) | |
934 | last_managed_page = pn; | |
0b4c1975 | 935 | |
7ddcb079 | 936 | if (pn >= lowest_hi && pn <= highest_hi) |
0b4c1975 | 937 | pmap_phys_attributes[pn] |= PHYS_NOENCRYPT; |
2d21ac55 A |
938 | } |
939 | } | |
940 | } | |
941 | } | |
942 | } | |
0b4c1975 A |
943 | while (vsize) { |
944 | ppn = pmap_find_phys(kernel_pmap, vaddr); | |
945 | ||
946 | pmap_phys_attributes[ppn] |= PHYS_NOENCRYPT; | |
947 | ||
948 | vaddr += PAGE_SIZE; | |
949 | vsize -= PAGE_SIZE; | |
950 | } | |
1c79356b A |
951 | /* |
952 | * Create the zone of physical maps, | |
953 | * and of the physical-to-virtual entries. | |
954 | */ | |
955 | s = (vm_size_t) sizeof(struct pmap); | |
956 | pmap_zone = zinit(s, 400*s, 4096, "pmap"); /* XXX */ | |
0b4c1975 A |
957 | zone_change(pmap_zone, Z_NOENCRYPT, TRUE); |
958 | ||
2d21ac55 | 959 | s = (vm_size_t) sizeof(struct pv_hashed_entry); |
6d2010ae A |
960 | pv_hashed_list_zone = zinit(s, 10000*s /* Expandable zone */, |
961 | 4096 * 4 /* LCM i386 */, "pv_list"); | |
0b4c1975 A |
962 | zone_change(pv_hashed_list_zone, Z_NOENCRYPT, TRUE); |
963 | ||
91447636 A |
964 | s = 63; |
965 | pdpt_zone = zinit(s, 400*s, 4096, "pdpt"); /* XXX */ | |
0b4c1975 | 966 | zone_change(pdpt_zone, Z_NOENCRYPT, TRUE); |
55e303ae | 967 | |
91447636 | 968 | kptobj = &kptobj_object_store; |
2d21ac55 | 969 | _vm_object_allocate((vm_object_size_t)(NPGPTD*NPTDPG), kptobj); |
91447636 | 970 | kernel_pmap->pm_obj = kptobj; |
91447636 A |
971 | |
972 | /* create pv entries for kernel pages mapped by low level | |
973 | startup code. these have to exist so we can pmap_remove() | |
974 | e.g. kext pages from the middle of our addr space */ | |
975 | ||
0c530ab8 | 976 | vaddr = (vm_map_offset_t)0; |
91447636 | 977 | for (ppn = 0; ppn < i386_btop(avail_start) ; ppn++ ) { |
2d21ac55 | 978 | pv_rooted_entry_t pv_e; |
91447636 A |
979 | |
980 | pv_e = pai_to_pvh(ppn); | |
981 | pv_e->va = vaddr; | |
982 | vaddr += PAGE_SIZE; | |
983 | pv_e->pmap = kernel_pmap; | |
2d21ac55 | 984 | queue_init(&pv_e->qlink); |
91447636 A |
985 | } |
986 | ||
1c79356b A |
987 | pmap_initialized = TRUE; |
988 | ||
6d2010ae A |
989 | max_preemption_latency_tsc = tmrCvt((uint64_t)MAX_PREEMPTION_LATENCY_NS, tscFCvtn2t); |
990 | ||
991 | } | |
992 | ||
993 | #ifdef PMAP_DEBUG | |
994 | #define DBG(x...) kprintf("DBG: " x) | |
995 | #else | |
996 | #define DBG(x...) | |
997 | #endif | |
998 | ||
999 | /* | |
1000 | * Called once VM is fully initialized so that we can release unused | |
1001 | * sections of low memory to the general pool. | |
1002 | * Also complete the set-up of identity-mapped sections of the kernel: | |
1003 | * 1) write-protect kernel text | |
1004 | * 2) map kernel text using large pages if possible | |
1005 | * 3) read and write-protect page zero (for K32) | |
1006 | * 4) map the global page at the appropriate virtual address. | |
1007 | * | |
1008 | * Use of large pages | |
1009 | * ------------------ | |
1010 | * To effectively map and write-protect all kernel text pages, the text | |
1011 | * must be 2M-aligned at the base, and the data section above must also be | |
1012 | * 2M-aligned. That is, there's padding below and above. This is achieved | |
1013 | * through linker directives. Large pages are used only if this alignment | |
1014 | * exists (and not overriden by the -kernel_text_page_4K boot-arg). The | |
1015 | * memory layout is: | |
1016 | * | |
1017 | * : : | |
1018 | * | __DATA | | |
1019 | * sdata: ================== 2Meg | |
1020 | * | | | |
1021 | * | zero-padding | | |
1022 | * | | | |
1023 | * etext: ------------------ | |
1024 | * | | | |
1025 | * : : | |
1026 | * | | | |
1027 | * | __TEXT | | |
1028 | * | | | |
1029 | * : : | |
1030 | * | | | |
1031 | * stext: ================== 2Meg | |
1032 | * | | | |
1033 | * | zero-padding | | |
1034 | * | | | |
1035 | * eHIB: ------------------ | |
1036 | * | __HIB | | |
1037 | * : : | |
1038 | * | |
1039 | * Prior to changing the mapping from 4K to 2M, the zero-padding pages | |
1040 | * [eHIB,stext] and [etext,sdata] are ml_static_mfree()'d. Then all the | |
1041 | * 4K pages covering [stext,etext] are coalesced as 2M large pages. | |
1042 | * The now unused level-1 PTE pages are also freed. | |
1043 | */ | |
1044 | extern uint32_t pmap_reserved_ranges; | |
1045 | void | |
1046 | pmap_lowmem_finalize(void) | |
1047 | { | |
1048 | spl_t spl; | |
1049 | int i; | |
1050 | ||
1051 | /* Check the kernel is linked at the expected base address */ | |
1052 | if (i386_btop(kvtophys((vm_offset_t) &IdlePML4)) != | |
1053 | I386_KERNEL_IMAGE_BASE_PAGE) | |
1054 | panic("pmap_lowmem_finalize() unexpected kernel base address"); | |
1055 | ||
1c79356b | 1056 | /* |
6d2010ae | 1057 | * Update wired memory statistics for early boot pages |
1c79356b | 1058 | */ |
316670eb | 1059 | PMAP_ZINFO_PALLOC(kernel_pmap, bootstrap_wired_pages * PAGE_SIZE); |
2d21ac55 | 1060 | |
6d2010ae A |
1061 | /* |
1062 | * Free all pages in pmap regions below the base: | |
1063 | * rdar://6332712 | |
1064 | * We can't free all the pages to VM that EFI reports available. | |
1065 | * Pages in the range 0xc0000-0xff000 aren't safe over sleep/wake. | |
1066 | * There's also a size miscalculation here: pend is one page less | |
1067 | * than it should be but this is not fixed to be backwards | |
1068 | * compatible. | |
1069 | * Due to this current EFI limitation, we take only the first | |
1070 | * entry in the memory region table. However, the loop is retained | |
1071 | * (with the intended termination criteria commented out) in the | |
1072 | * hope that some day we can free all low-memory ranges. | |
1073 | */ | |
1074 | for (i = 0; | |
1075 | // pmap_memory_regions[i].end <= I386_KERNEL_IMAGE_BASE_PAGE; | |
1076 | i < 1 && (pmap_reserved_ranges == 0); | |
1077 | i++) { | |
1078 | vm_offset_t pbase = (vm_offset_t)i386_ptob(pmap_memory_regions[i].base); | |
1079 | vm_offset_t pend = (vm_offset_t)i386_ptob(pmap_memory_regions[i].end); | |
1080 | // vm_offset_t pend = i386_ptob(pmap_memory_regions[i].end+1); | |
1081 | ||
1082 | DBG("ml_static_mfree(%p,%p) for pmap region %d\n", | |
1083 | (void *) ml_static_ptovirt(pbase), | |
1084 | (void *) (pend - pbase), i); | |
1085 | ml_static_mfree(ml_static_ptovirt(pbase), pend - pbase); | |
1086 | } | |
2d21ac55 | 1087 | |
6d2010ae A |
1088 | /* |
1089 | * If text and data are both 2MB-aligned, | |
1090 | * we can map text with large-pages, | |
1091 | * unless the -kernel_text_ps_4K boot-arg overrides. | |
1092 | */ | |
1093 | if ((stext & I386_LPGMASK) == 0 && (sdata & I386_LPGMASK) == 0) { | |
1094 | kprintf("Kernel text is 2MB aligned"); | |
1095 | kernel_text_ps_4K = FALSE; | |
1096 | if (PE_parse_boot_argn("-kernel_text_ps_4K", | |
1097 | &kernel_text_ps_4K, | |
1098 | sizeof (kernel_text_ps_4K))) | |
1099 | kprintf(" but will be mapped with 4K pages\n"); | |
1100 | else | |
1101 | kprintf(" and will be mapped with 2M pages\n"); | |
1102 | } | |
1103 | ||
1104 | (void) PE_parse_boot_argn("wpkernel", &wpkernel, sizeof (wpkernel)); | |
1105 | if (wpkernel) | |
1106 | kprintf("Kernel text %p-%p to be write-protected\n", | |
1107 | (void *) stext, (void *) etext); | |
1108 | ||
1109 | spl = splhigh(); | |
1110 | ||
1111 | /* | |
1112 | * Scan over text if mappings are to be changed: | |
1113 | * - Remap kernel text readonly unless the "wpkernel" boot-arg is 0 | |
1114 | * - Change to large-pages if possible and not overriden. | |
1115 | */ | |
1116 | if (kernel_text_ps_4K && wpkernel) { | |
1117 | vm_offset_t myva; | |
1118 | for (myva = stext; myva < etext; myva += PAGE_SIZE) { | |
1119 | pt_entry_t *ptep; | |
1120 | ||
1121 | ptep = pmap_pte(kernel_pmap, (vm_map_offset_t)myva); | |
1122 | if (ptep) | |
1123 | pmap_store_pte(ptep, *ptep & ~INTEL_PTE_RW); | |
1124 | } | |
1125 | } | |
1126 | ||
1127 | if (!kernel_text_ps_4K) { | |
1128 | vm_offset_t myva; | |
1129 | ||
1130 | /* | |
1131 | * Release zero-filled page padding used for 2M-alignment. | |
1132 | */ | |
1133 | DBG("ml_static_mfree(%p,%p) for padding below text\n", | |
1134 | (void *) eHIB, (void *) (stext - eHIB)); | |
1135 | ml_static_mfree(eHIB, stext - eHIB); | |
1136 | DBG("ml_static_mfree(%p,%p) for padding above text\n", | |
1137 | (void *) etext, (void *) (sdata - etext)); | |
1138 | ml_static_mfree(etext, sdata - etext); | |
1139 | ||
1140 | /* | |
1141 | * Coalesce text pages into large pages. | |
1142 | */ | |
1143 | for (myva = stext; myva < sdata; myva += I386_LPGBYTES) { | |
1144 | pt_entry_t *ptep; | |
1145 | vm_offset_t pte_phys; | |
1146 | pt_entry_t *pdep; | |
1147 | pt_entry_t pde; | |
1148 | ||
1149 | pdep = pmap_pde(kernel_pmap, (vm_map_offset_t)myva); | |
1150 | ptep = pmap_pte(kernel_pmap, (vm_map_offset_t)myva); | |
1151 | DBG("myva: %p pdep: %p ptep: %p\n", | |
1152 | (void *) myva, (void *) pdep, (void *) ptep); | |
1153 | if ((*ptep & INTEL_PTE_VALID) == 0) | |
1154 | continue; | |
1155 | pte_phys = (vm_offset_t)(*ptep & PG_FRAME); | |
1156 | pde = *pdep & PTMASK; /* page attributes from pde */ | |
1157 | pde |= INTEL_PTE_PS; /* make it a 2M entry */ | |
1158 | pde |= pte_phys; /* take page frame from pte */ | |
1159 | ||
1160 | if (wpkernel) | |
1161 | pde &= ~INTEL_PTE_RW; | |
1162 | DBG("pmap_store_pte(%p,0x%llx)\n", | |
1163 | (void *)pdep, pde); | |
1164 | pmap_store_pte(pdep, pde); | |
1165 | ||
1166 | /* | |
1167 | * Free the now-unused level-1 pte. | |
1168 | * Note: ptep is a virtual address to the pte in the | |
1169 | * recursive map. We can't use this address to free | |
1170 | * the page. Instead we need to compute its address | |
1171 | * in the Idle PTEs in "low memory". | |
1172 | */ | |
1173 | vm_offset_t vm_ptep = (vm_offset_t) KPTphys | |
1174 | + (pte_phys >> PTPGSHIFT); | |
1175 | DBG("ml_static_mfree(%p,0x%x) for pte\n", | |
1176 | (void *) vm_ptep, PAGE_SIZE); | |
1177 | ml_static_mfree(vm_ptep, PAGE_SIZE); | |
1178 | } | |
1179 | ||
1180 | /* Change variable read by sysctl machdep.pmap */ | |
1181 | pmap_kernel_text_ps = I386_LPGBYTES; | |
1182 | } | |
1c79356b | 1183 | |
6d2010ae A |
1184 | /* no matter what, kernel page zero is not accessible */ |
1185 | pmap_store_pte(pmap_pte(kernel_pmap, 0), INTEL_PTE_INVALID); | |
1186 | ||
1187 | /* map lowmem global page into fixed addr */ | |
1188 | pt_entry_t *pte = NULL; | |
1189 | if (0 == (pte = pmap_pte(kernel_pmap, | |
1190 | VM_MIN_KERNEL_LOADED_ADDRESS + 0x2000))) | |
1191 | panic("lowmem pte"); | |
1192 | /* make sure it is defined on page boundary */ | |
1193 | assert(0 == ((vm_offset_t) &lowGlo & PAGE_MASK)); | |
1194 | pmap_store_pte(pte, kvtophys((vm_offset_t)&lowGlo) | |
1195 | | INTEL_PTE_REF | |
1196 | | INTEL_PTE_MOD | |
1197 | | INTEL_PTE_WIRED | |
1198 | | INTEL_PTE_VALID | |
1199 | | INTEL_PTE_RW); | |
1200 | splx(spl); | |
1201 | flush_tlb(); | |
1202 | } | |
1c79356b | 1203 | |
2d21ac55 | 1204 | #define managed_page(x) ( (unsigned int)x <= last_managed_page && (pmap_phys_attributes[x] & PHYS_MANAGED) ) |
1c79356b | 1205 | |
2d21ac55 A |
1206 | /* |
1207 | * this function is only used for debugging fron the vm layer | |
1208 | */ | |
1c79356b A |
1209 | boolean_t |
1210 | pmap_verify_free( | |
55e303ae | 1211 | ppnum_t pn) |
1c79356b | 1212 | { |
2d21ac55 | 1213 | pv_rooted_entry_t pv_h; |
1c79356b | 1214 | int pai; |
1c79356b A |
1215 | boolean_t result; |
1216 | ||
55e303ae | 1217 | assert(pn != vm_page_fictitious_addr); |
2d21ac55 | 1218 | |
1c79356b A |
1219 | if (!pmap_initialized) |
1220 | return(TRUE); | |
1221 | ||
2d21ac55 A |
1222 | if (pn == vm_page_guard_addr) |
1223 | return TRUE; | |
1c79356b | 1224 | |
2d21ac55 A |
1225 | pai = ppn_to_pai(pn); |
1226 | if (!managed_page(pai)) | |
1227 | return(FALSE); | |
1228 | pv_h = pai_to_pvh(pn); | |
1229 | result = (pv_h->pmap == PMAP_NULL); | |
1230 | return(result); | |
1231 | } | |
1c79356b | 1232 | |
2d21ac55 A |
1233 | boolean_t |
1234 | pmap_is_empty( | |
1235 | pmap_t pmap, | |
b0d623f7 A |
1236 | vm_map_offset_t va_start, |
1237 | vm_map_offset_t va_end) | |
2d21ac55 A |
1238 | { |
1239 | vm_map_offset_t offset; | |
1240 | ppnum_t phys_page; | |
1c79356b | 1241 | |
2d21ac55 A |
1242 | if (pmap == PMAP_NULL) { |
1243 | return TRUE; | |
1244 | } | |
b0d623f7 A |
1245 | |
1246 | /* | |
1247 | * Check the resident page count | |
1248 | * - if it's zero, the pmap is completely empty. | |
1249 | * This short-circuit test prevents a virtual address scan which is | |
1250 | * painfully slow for 64-bit spaces. | |
1251 | * This assumes the count is correct | |
1252 | * .. the debug kernel ought to be checking perhaps by page table walk. | |
1253 | */ | |
1254 | if (pmap->stats.resident_count == 0) | |
1255 | return TRUE; | |
1256 | ||
1257 | for (offset = va_start; | |
1258 | offset < va_end; | |
2d21ac55 A |
1259 | offset += PAGE_SIZE_64) { |
1260 | phys_page = pmap_find_phys(pmap, offset); | |
1261 | if (phys_page) { | |
1262 | if (pmap != kernel_pmap && | |
1263 | pmap->pm_task_map == TASK_MAP_32BIT && | |
1264 | offset >= HIGH_MEM_BASE) { | |
1265 | /* | |
1266 | * The "high_shared_pde" is used to share | |
1267 | * the entire top-most 2MB of address space | |
1268 | * between the kernel and all 32-bit tasks. | |
1269 | * So none of this can be removed from 32-bit | |
1270 | * tasks. | |
1271 | * Let's pretend there's nothing up | |
1272 | * there... | |
1273 | */ | |
1274 | return TRUE; | |
1275 | } | |
1276 | kprintf("pmap_is_empty(%p,0x%llx,0x%llx): " | |
1277 | "page %d at 0x%llx\n", | |
b0d623f7 | 1278 | pmap, va_start, va_end, phys_page, offset); |
2d21ac55 A |
1279 | return FALSE; |
1280 | } | |
1281 | } | |
1c79356b | 1282 | |
2d21ac55 | 1283 | return TRUE; |
1c79356b A |
1284 | } |
1285 | ||
2d21ac55 | 1286 | |
1c79356b A |
1287 | /* |
1288 | * Create and return a physical map. | |
1289 | * | |
1290 | * If the size specified for the map | |
1291 | * is zero, the map is an actual physical | |
1292 | * map, and may be referenced by the | |
1293 | * hardware. | |
1294 | * | |
1295 | * If the size specified is non-zero, | |
1296 | * the map will be used in software only, and | |
1297 | * is bounded by that size. | |
1298 | */ | |
1299 | pmap_t | |
1300 | pmap_create( | |
316670eb A |
1301 | ledger_t ledger, |
1302 | vm_map_size_t sz, | |
1303 | boolean_t is_64bit) | |
1c79356b | 1304 | { |
316670eb A |
1305 | pmap_t p; |
1306 | unsigned i; | |
0c530ab8 A |
1307 | vm_offset_t va; |
1308 | vm_size_t size; | |
1309 | pdpt_entry_t *pdpt; | |
1310 | pml4_entry_t *pml4p; | |
0c530ab8 | 1311 | pd_entry_t *pdp; |
2d21ac55 | 1312 | int template; |
0c530ab8 A |
1313 | spl_t s; |
1314 | ||
2d21ac55 A |
1315 | PMAP_TRACE(PMAP_CODE(PMAP__CREATE) | DBG_FUNC_START, |
1316 | (int) (sz>>32), (int) sz, (int) is_64bit, 0, 0); | |
1317 | ||
0c530ab8 | 1318 | size = (vm_size_t) sz; |
1c79356b A |
1319 | |
1320 | /* | |
1321 | * A software use-only map doesn't even need a map. | |
1322 | */ | |
1323 | ||
1324 | if (size != 0) { | |
1325 | return(PMAP_NULL); | |
1326 | } | |
1327 | ||
91447636 A |
1328 | p = (pmap_t) zalloc(pmap_zone); |
1329 | if (PMAP_NULL == p) | |
2d21ac55 | 1330 | panic("pmap_create zalloc"); |
6601e61a | 1331 | |
0c530ab8 A |
1332 | /* init counts now since we'll be bumping some */ |
1333 | simple_lock_init(&p->lock, 0); | |
1c79356b | 1334 | p->stats.resident_count = 0; |
2d21ac55 | 1335 | p->stats.resident_max = 0; |
1c79356b | 1336 | p->stats.wired_count = 0; |
316670eb A |
1337 | ledger_reference(ledger); |
1338 | p->ledger = ledger; | |
1c79356b | 1339 | p->ref_count = 1; |
0c530ab8 | 1340 | p->nx_enabled = 1; |
0c530ab8 A |
1341 | p->pm_shared = FALSE; |
1342 | ||
2d21ac55 A |
1343 | assert(!is_64bit || cpu_64bit); |
1344 | p->pm_task_map = is_64bit ? TASK_MAP_64BIT : TASK_MAP_32BIT;; | |
1345 | ||
0c530ab8 | 1346 | if (!cpu_64bit) { |
2d21ac55 A |
1347 | /* legacy 32 bit setup */ |
1348 | /* in the legacy case the pdpt layer is hardwired to 4 entries and each | |
1349 | * entry covers 1GB of addr space */ | |
b0d623f7 A |
1350 | if (KERN_SUCCESS != kmem_alloc_kobject(kernel_map, (vm_offset_t *)(&p->dirbase), NBPTD)) |
1351 | panic("pmap_create kmem_alloc_kobject"); | |
2d21ac55 A |
1352 | p->pm_hold = (vm_offset_t)zalloc(pdpt_zone); |
1353 | if ((vm_offset_t)NULL == p->pm_hold) { | |
1354 | panic("pdpt zalloc"); | |
1355 | } | |
1356 | pdpt = (pdpt_entry_t *) (( p->pm_hold + 31) & ~31); | |
1357 | p->pm_cr3 = (pmap_paddr_t)kvtophys((vm_offset_t)pdpt); | |
1358 | if (NULL == (p->pm_obj = vm_object_allocate((vm_object_size_t)(NPGPTD*NPTDPG)))) | |
1359 | panic("pmap_create vm_object_allocate"); | |
0c530ab8 | 1360 | |
2d21ac55 | 1361 | memset((char *)p->dirbase, 0, NBPTD); |
0c530ab8 | 1362 | |
2d21ac55 A |
1363 | va = (vm_offset_t)p->dirbase; |
1364 | p->pdirbase = kvtophys(va); | |
0c530ab8 | 1365 | |
316670eb | 1366 | PMAP_ZINFO_SALLOC(p,NBPTD); |
6d2010ae | 1367 | |
b7266188 | 1368 | template = INTEL_PTE_VALID; |
2d21ac55 A |
1369 | for (i = 0; i< NPGPTD; i++, pdpt++ ) { |
1370 | pmap_paddr_t pa; | |
b0d623f7 | 1371 | pa = (pmap_paddr_t) kvtophys((vm_offset_t)(va + i386_ptob(i))); |
2d21ac55 A |
1372 | pmap_store_pte(pdpt, pa | template); |
1373 | } | |
0c530ab8 | 1374 | |
2d21ac55 A |
1375 | /* map the high shared pde */ |
1376 | s = splhigh(); | |
1377 | pmap_store_pte(pmap_pde(p, HIGH_MEM_BASE), high_shared_pde); | |
1378 | splx(s); | |
4452a7af | 1379 | |
0c530ab8 | 1380 | } else { |
2d21ac55 | 1381 | /* 64 bit setup */ |
4452a7af | 1382 | |
2d21ac55 | 1383 | /* alloc the pml4 page in kernel vm */ |
b0d623f7 A |
1384 | if (KERN_SUCCESS != kmem_alloc_kobject(kernel_map, (vm_offset_t *)(&p->pm_hold), PAGE_SIZE)) |
1385 | panic("pmap_create kmem_alloc_kobject pml4"); | |
4452a7af | 1386 | |
2d21ac55 A |
1387 | memset((char *)p->pm_hold, 0, PAGE_SIZE); |
1388 | p->pm_cr3 = (pmap_paddr_t)kvtophys((vm_offset_t)p->pm_hold); | |
0c530ab8 | 1389 | |
b0d623f7 | 1390 | OSAddAtomic(1, &inuse_ptepages_count); |
6d2010ae | 1391 | OSAddAtomic64(1, &alloc_ptepages_count); |
316670eb | 1392 | PMAP_ZINFO_SALLOC(p, PAGE_SIZE); |
0c530ab8 | 1393 | |
2d21ac55 | 1394 | /* allocate the vm_objs to hold the pdpt, pde and pte pages */ |
0c530ab8 | 1395 | |
2d21ac55 A |
1396 | if (NULL == (p->pm_obj_pml4 = vm_object_allocate((vm_object_size_t)(NPML4PGS)))) |
1397 | panic("pmap_create pdpt obj"); | |
0c530ab8 | 1398 | |
2d21ac55 A |
1399 | if (NULL == (p->pm_obj_pdpt = vm_object_allocate((vm_object_size_t)(NPDPTPGS)))) |
1400 | panic("pmap_create pdpt obj"); | |
0c530ab8 | 1401 | |
2d21ac55 A |
1402 | if (NULL == (p->pm_obj = vm_object_allocate((vm_object_size_t)(NPDEPGS)))) |
1403 | panic("pmap_create pte obj"); | |
0c530ab8 | 1404 | |
2d21ac55 A |
1405 | /* uber space points to uber mapped kernel */ |
1406 | s = splhigh(); | |
1407 | pml4p = pmap64_pml4(p, 0ULL); | |
6d2010ae | 1408 | pmap_store_pte((pml4p+KERNEL_UBER_PML4_INDEX),*kernel_pmap->pm_pml4); |
0c530ab8 | 1409 | |
0c530ab8 | 1410 | |
2d21ac55 A |
1411 | if (!is_64bit) { |
1412 | while ((pdp = pmap64_pde(p, (uint64_t)HIGH_MEM_BASE)) == PD_ENTRY_NULL) { | |
1413 | splx(s); | |
316670eb | 1414 | pmap_expand_pdpt(p, (uint64_t)HIGH_MEM_BASE, PMAP_EXPAND_OPTIONS_NONE); /* need room for another pde entry */ |
2d21ac55 A |
1415 | s = splhigh(); |
1416 | } | |
1417 | pmap_store_pte(pdp, high_shared_pde); | |
1418 | } | |
1419 | splx(s); | |
0c530ab8 | 1420 | } |
1c79356b | 1421 | |
2d21ac55 A |
1422 | PMAP_TRACE(PMAP_CODE(PMAP__CREATE) | DBG_FUNC_START, |
1423 | (int) p, is_64bit, 0, 0, 0); | |
1424 | ||
1c79356b A |
1425 | return(p); |
1426 | } | |
1427 | ||
2d21ac55 A |
1428 | /* |
1429 | * The following routines implement the shared address optmization for 64-bit | |
1430 | * users with a 4GB page zero. | |
1431 | * | |
1432 | * pmap_set_4GB_pagezero() | |
1433 | * is called in the exec and fork paths to mirror the kernel's | |
1434 | * mapping in the bottom 4G of the user's pmap. The task mapping changes | |
1435 | * from TASK_MAP_64BIT to TASK_MAP_64BIT_SHARED. This routine returns | |
1436 | * without doing anything if the -no_shared_cr3 boot-arg is set. | |
1437 | * | |
1438 | * pmap_clear_4GB_pagezero() | |
1439 | * is called in the exec/exit paths to undo this mirror. The task mapping | |
1440 | * reverts to TASK_MAP_64BIT. In addition, we switch to the kernel's | |
1441 | * CR3 by calling pmap_load_kernel_cr3(). | |
1442 | * | |
1443 | * pmap_load_kernel_cr3() | |
1444 | * loads cr3 with the kernel's page table. In addition to being called | |
1445 | * by pmap_clear_4GB_pagezero(), it is used both prior to teardown and | |
1446 | * when we go idle in the context of a shared map. | |
1447 | * | |
1448 | * Further notes on per-cpu data used: | |
1449 | * | |
1450 | * cpu_kernel_cr3 is the cr3 for the kernel's pmap. | |
1451 | * This is loaded in a trampoline on entering the kernel | |
1452 | * from a 32-bit user (or non-shared-cr3 64-bit user). | |
1453 | * cpu_task_cr3 is the cr3 for the current thread. | |
1454 | * This is loaded in a trampoline as we exit the kernel. | |
1455 | * cpu_active_cr3 reflects the cr3 currently loaded. | |
1456 | * However, the low order bit is set when the | |
1457 | * processor is idle or interrupts are disabled | |
1458 | * while the system pmap lock is held. It is used by | |
1459 | * tlb shoot-down. | |
1460 | * cpu_task_map indicates whether the task cr3 belongs to | |
1461 | * a 32-bit, a 64-bit or a 64-bit shared map. | |
1462 | * The latter allows the avoidance of the cr3 load | |
1463 | * on kernel entry and exit. | |
1464 | * cpu_tlb_invalid set TRUE when a tlb flush is requested. | |
1465 | * If the cr3 is "inactive" (the cpu is idle or the | |
1466 | * system-wide pmap lock is held) this not serviced by | |
1467 | * an IPI but at time when the cr3 becomes "active". | |
1468 | */ | |
1469 | ||
0c530ab8 A |
1470 | void |
1471 | pmap_set_4GB_pagezero(pmap_t p) | |
1472 | { | |
0c530ab8 A |
1473 | pdpt_entry_t *user_pdptp; |
1474 | pdpt_entry_t *kern_pdptp; | |
1475 | ||
2d21ac55 | 1476 | assert(p->pm_task_map != TASK_MAP_32BIT); |
0c530ab8 A |
1477 | |
1478 | /* Kernel-shared cr3 may be disabled by boot arg. */ | |
1479 | if (no_shared_cr3) | |
1480 | return; | |
1481 | ||
1482 | /* | |
1483 | * Set the bottom 4 3rd-level pte's to be the kernel's. | |
1484 | */ | |
2d21ac55 | 1485 | PMAP_LOCK(p); |
0c530ab8 | 1486 | while ((user_pdptp = pmap64_pdpt(p, 0x0)) == PDPT_ENTRY_NULL) { |
2d21ac55 | 1487 | PMAP_UNLOCK(p); |
316670eb | 1488 | pmap_expand_pml4(p, 0x0, PMAP_EXPAND_OPTIONS_NONE); |
2d21ac55 | 1489 | PMAP_LOCK(p); |
0c530ab8 A |
1490 | } |
1491 | kern_pdptp = kernel_pmap->pm_pdpt; | |
1492 | pmap_store_pte(user_pdptp+0, *(kern_pdptp+0)); | |
1493 | pmap_store_pte(user_pdptp+1, *(kern_pdptp+1)); | |
1494 | pmap_store_pte(user_pdptp+2, *(kern_pdptp+2)); | |
1495 | pmap_store_pte(user_pdptp+3, *(kern_pdptp+3)); | |
2d21ac55 A |
1496 | p->pm_task_map = TASK_MAP_64BIT_SHARED; |
1497 | PMAP_UNLOCK(p); | |
0c530ab8 A |
1498 | } |
1499 | ||
1500 | void | |
1501 | pmap_clear_4GB_pagezero(pmap_t p) | |
1502 | { | |
0c530ab8 | 1503 | pdpt_entry_t *user_pdptp; |
6d2010ae | 1504 | boolean_t istate; |
0c530ab8 | 1505 | |
2d21ac55 | 1506 | if (p->pm_task_map != TASK_MAP_64BIT_SHARED) |
0c530ab8 A |
1507 | return; |
1508 | ||
2d21ac55 A |
1509 | PMAP_LOCK(p); |
1510 | ||
1511 | p->pm_task_map = TASK_MAP_64BIT; | |
1512 | ||
6d2010ae | 1513 | istate = ml_set_interrupts_enabled(FALSE); |
316670eb | 1514 | |
6d2010ae | 1515 | if (current_cpu_datap()->cpu_task_map == TASK_MAP_64BIT_SHARED) |
316670eb A |
1516 | current_cpu_datap()->cpu_task_map = TASK_MAP_64BIT; |
1517 | ||
2d21ac55 A |
1518 | pmap_load_kernel_cr3(); |
1519 | ||
0c530ab8 A |
1520 | user_pdptp = pmap64_pdpt(p, 0x0); |
1521 | pmap_store_pte(user_pdptp+0, 0); | |
1522 | pmap_store_pte(user_pdptp+1, 0); | |
1523 | pmap_store_pte(user_pdptp+2, 0); | |
1524 | pmap_store_pte(user_pdptp+3, 0); | |
1525 | ||
6d2010ae A |
1526 | ml_set_interrupts_enabled(istate); |
1527 | ||
2d21ac55 A |
1528 | PMAP_UNLOCK(p); |
1529 | } | |
0c530ab8 | 1530 | |
2d21ac55 A |
1531 | void |
1532 | pmap_load_kernel_cr3(void) | |
1533 | { | |
1534 | uint64_t kernel_cr3; | |
0c530ab8 | 1535 | |
2d21ac55 A |
1536 | assert(ml_get_interrupts_enabled() == 0 || get_preemption_level() != 0); |
1537 | ||
1538 | /* | |
1539 | * Reload cr3 with the true kernel cr3. | |
1540 | */ | |
1541 | kernel_cr3 = current_cpu_datap()->cpu_kernel_cr3; | |
1542 | set64_cr3(kernel_cr3); | |
1543 | current_cpu_datap()->cpu_active_cr3 = kernel_cr3; | |
1544 | current_cpu_datap()->cpu_tlb_invalid = FALSE; | |
1545 | __asm__ volatile("mfence"); | |
0c530ab8 A |
1546 | } |
1547 | ||
1c79356b A |
1548 | /* |
1549 | * Retire the given physical map from service. | |
1550 | * Should only be called if the map contains | |
1551 | * no valid mappings. | |
1552 | */ | |
1553 | ||
1554 | void | |
1555 | pmap_destroy( | |
1556 | register pmap_t p) | |
1557 | { | |
1c79356b | 1558 | register int c; |
1c79356b A |
1559 | |
1560 | if (p == PMAP_NULL) | |
1561 | return; | |
2d21ac55 A |
1562 | |
1563 | PMAP_TRACE(PMAP_CODE(PMAP__DESTROY) | DBG_FUNC_START, | |
1564 | (int) p, 0, 0, 0, 0); | |
1565 | ||
1566 | PMAP_LOCK(p); | |
1567 | ||
1c79356b | 1568 | c = --p->ref_count; |
2d21ac55 | 1569 | |
1c79356b | 1570 | if (c == 0) { |
1c79356b A |
1571 | /* |
1572 | * If some cpu is not using the physical pmap pointer that it | |
1573 | * is supposed to be (see set_dirbase), we might be using the | |
1574 | * pmap that is being destroyed! Make sure we are | |
1575 | * physically on the right pmap: | |
1576 | */ | |
55e303ae | 1577 | PMAP_UPDATE_TLBS(p, |
2d21ac55 A |
1578 | 0x0ULL, |
1579 | 0xFFFFFFFFFFFFF000ULL); | |
1c79356b | 1580 | } |
2d21ac55 A |
1581 | |
1582 | PMAP_UNLOCK(p); | |
1c79356b A |
1583 | |
1584 | if (c != 0) { | |
2d21ac55 A |
1585 | PMAP_TRACE(PMAP_CODE(PMAP__DESTROY) | DBG_FUNC_END, |
1586 | (int) p, 1, 0, 0, 0); | |
1587 | return; /* still in use */ | |
1c79356b A |
1588 | } |
1589 | ||
1590 | /* | |
1591 | * Free the memory maps, then the | |
1592 | * pmap structure. | |
1593 | */ | |
0c530ab8 | 1594 | if (!cpu_64bit) { |
b0d623f7 | 1595 | OSAddAtomic(-p->pm_obj->resident_page_count, &inuse_ptepages_count); |
316670eb | 1596 | PMAP_ZINFO_PFREE(p, p->pm_obj->resident_page_count * PAGE_SIZE); |
91447636 | 1597 | |
2d21ac55 | 1598 | kmem_free(kernel_map, (vm_offset_t)p->dirbase, NBPTD); |
316670eb | 1599 | PMAP_ZINFO_SFREE(p, NBPTD); |
6d2010ae | 1600 | |
2d21ac55 | 1601 | zfree(pdpt_zone, (void *)p->pm_hold); |
0c530ab8 | 1602 | |
2d21ac55 A |
1603 | vm_object_deallocate(p->pm_obj); |
1604 | } else { | |
1605 | /* 64 bit */ | |
1606 | int inuse_ptepages = 0; | |
0c530ab8 | 1607 | |
2d21ac55 | 1608 | /* free 64 bit mode structs */ |
2d21ac55 | 1609 | kmem_free(kernel_map, (vm_offset_t)p->pm_hold, PAGE_SIZE); |
316670eb | 1610 | PMAP_ZINFO_SFREE(p, PAGE_SIZE); |
2d21ac55 A |
1611 | |
1612 | inuse_ptepages += p->pm_obj_pml4->resident_page_count; | |
1613 | vm_object_deallocate(p->pm_obj_pml4); | |
1614 | ||
1615 | inuse_ptepages += p->pm_obj_pdpt->resident_page_count; | |
1616 | vm_object_deallocate(p->pm_obj_pdpt); | |
0c530ab8 | 1617 | |
2d21ac55 A |
1618 | inuse_ptepages += p->pm_obj->resident_page_count; |
1619 | vm_object_deallocate(p->pm_obj); | |
1620 | ||
6d2010ae | 1621 | OSAddAtomic(-(inuse_ptepages+1), &inuse_ptepages_count); |
316670eb | 1622 | PMAP_ZINFO_PFREE(p, inuse_ptepages * PAGE_SIZE); |
2d21ac55 | 1623 | } |
316670eb | 1624 | ledger_dereference(p->ledger); |
6d2010ae | 1625 | |
2d21ac55 | 1626 | zfree(pmap_zone, p); |
1c79356b | 1627 | |
2d21ac55 A |
1628 | PMAP_TRACE(PMAP_CODE(PMAP__DESTROY) | DBG_FUNC_END, |
1629 | 0, 0, 0, 0, 0); | |
0c530ab8 | 1630 | |
1c79356b A |
1631 | } |
1632 | ||
1633 | /* | |
1634 | * Add a reference to the specified pmap. | |
1635 | */ | |
1636 | ||
1637 | void | |
1638 | pmap_reference( | |
1639 | register pmap_t p) | |
1640 | { | |
1c79356b A |
1641 | |
1642 | if (p != PMAP_NULL) { | |
2d21ac55 | 1643 | PMAP_LOCK(p); |
1c79356b | 1644 | p->ref_count++; |
2d21ac55 | 1645 | PMAP_UNLOCK(p);; |
1c79356b A |
1646 | } |
1647 | } | |
1648 | ||
0b4e3aa0 A |
1649 | /* |
1650 | * Remove phys addr if mapped in specified map | |
1651 | * | |
1652 | */ | |
1653 | void | |
1654 | pmap_remove_some_phys( | |
91447636 A |
1655 | __unused pmap_t map, |
1656 | __unused ppnum_t pn) | |
0b4e3aa0 A |
1657 | { |
1658 | ||
1659 | /* Implement to support working set code */ | |
1660 | ||
1661 | } | |
1662 | ||
1c79356b A |
1663 | /* |
1664 | * Set the physical protection on the | |
1665 | * specified range of this map as requested. | |
1666 | * Will not increase permissions. | |
1667 | */ | |
1668 | void | |
1669 | pmap_protect( | |
1670 | pmap_t map, | |
0c530ab8 A |
1671 | vm_map_offset_t sva, |
1672 | vm_map_offset_t eva, | |
1c79356b A |
1673 | vm_prot_t prot) |
1674 | { | |
1675 | register pt_entry_t *pde; | |
1676 | register pt_entry_t *spte, *epte; | |
0c530ab8 A |
1677 | vm_map_offset_t lva; |
1678 | vm_map_offset_t orig_sva; | |
0c530ab8 | 1679 | boolean_t set_NX; |
2d21ac55 A |
1680 | int num_found = 0; |
1681 | ||
1682 | pmap_intr_assert(); | |
1c79356b A |
1683 | |
1684 | if (map == PMAP_NULL) | |
1685 | return; | |
1686 | ||
0c530ab8 A |
1687 | if (prot == VM_PROT_NONE) { |
1688 | pmap_remove(map, sva, eva); | |
1c79356b A |
1689 | return; |
1690 | } | |
1691 | ||
2d21ac55 A |
1692 | PMAP_TRACE(PMAP_CODE(PMAP__PROTECT) | DBG_FUNC_START, |
1693 | (int) map, | |
1694 | (int) (sva>>32), (int) sva, | |
1695 | (int) (eva>>32), (int) eva); | |
1696 | ||
0c530ab8 A |
1697 | if ( (prot & VM_PROT_EXECUTE) || !nx_enabled || !map->nx_enabled ) |
1698 | set_NX = FALSE; | |
1699 | else | |
1700 | set_NX = TRUE; | |
1701 | ||
2d21ac55 | 1702 | PMAP_LOCK(map); |
1c79356b | 1703 | |
0c530ab8 A |
1704 | orig_sva = sva; |
1705 | while (sva < eva) { | |
1706 | lva = (sva + pde_mapped_size) & ~(pde_mapped_size-1); | |
1707 | if (lva > eva) | |
1708 | lva = eva; | |
1709 | pde = pmap_pde(map, sva); | |
1710 | if (pde && (*pde & INTEL_PTE_VALID)) { | |
1711 | spte = (pt_entry_t *)pmap_pte(map, (sva & ~(pde_mapped_size-1))); | |
1712 | spte = &spte[ptenum(sva)]; | |
1713 | epte = &spte[intel_btop(lva-sva)]; | |
1c79356b A |
1714 | |
1715 | while (spte < epte) { | |
2d21ac55 | 1716 | |
316670eb A |
1717 | if (*spte & INTEL_PTE_VALID) { |
1718 | if (prot & VM_PROT_WRITE) | |
1719 | pmap_update_pte(spte, 0, INTEL_PTE_WRITE); | |
1720 | else | |
1721 | pmap_update_pte(spte, INTEL_PTE_WRITE, 0); | |
0c530ab8 | 1722 | |
316670eb A |
1723 | if (set_NX == TRUE) |
1724 | pmap_update_pte(spte,0, INTEL_PTE_NX); | |
1725 | else | |
1726 | pmap_update_pte(spte, INTEL_PTE_NX, 0); | |
0c530ab8 | 1727 | |
316670eb A |
1728 | num_found++; |
1729 | } | |
1730 | spte++; | |
1c79356b A |
1731 | } |
1732 | } | |
0c530ab8 | 1733 | sva = lva; |
1c79356b | 1734 | } |
0c530ab8 | 1735 | if (num_found) |
6d2010ae | 1736 | { |
316670eb | 1737 | PMAP_UPDATE_TLBS(map, orig_sva, eva); |
6d2010ae | 1738 | } |
2d21ac55 A |
1739 | |
1740 | PMAP_UNLOCK(map); | |
1741 | ||
1742 | PMAP_TRACE(PMAP_CODE(PMAP__PROTECT) | DBG_FUNC_END, | |
316670eb | 1743 | 0, 0, 0, 0, 0); |
91447636 | 1744 | |
1c79356b A |
1745 | } |
1746 | ||
0c530ab8 A |
1747 | /* Map a (possibly) autogenned block */ |
1748 | void | |
1749 | pmap_map_block( | |
1750 | pmap_t pmap, | |
1751 | addr64_t va, | |
1752 | ppnum_t pa, | |
1753 | uint32_t size, | |
1754 | vm_prot_t prot, | |
1755 | int attr, | |
1756 | __unused unsigned int flags) | |
1757 | { | |
2d21ac55 | 1758 | uint32_t page; |
0c530ab8 | 1759 | |
2d21ac55 | 1760 | for (page = 0; page < size; page++) { |
316670eb | 1761 | pmap_enter(pmap, va, pa, prot, VM_PROT_NONE, attr, TRUE); |
2d21ac55 A |
1762 | va += PAGE_SIZE; |
1763 | pa++; | |
1764 | } | |
0c530ab8 | 1765 | } |
1c79356b | 1766 | |
1c79356b A |
1767 | /* |
1768 | * Routine: pmap_extract | |
1769 | * Function: | |
1770 | * Extract the physical page address associated | |
1771 | * with the given map/virtual_address pair. | |
91447636 A |
1772 | * Change to shim for backwards compatibility but will not |
1773 | * work for 64 bit systems. Some old drivers that we cannot | |
1774 | * change need this. | |
1c79356b A |
1775 | */ |
1776 | ||
1777 | vm_offset_t | |
1778 | pmap_extract( | |
1779 | register pmap_t pmap, | |
0c530ab8 | 1780 | vm_map_offset_t vaddr) |
1c79356b | 1781 | { |
0c530ab8 A |
1782 | ppnum_t ppn; |
1783 | vm_offset_t paddr; | |
91447636 | 1784 | |
0c530ab8 A |
1785 | paddr = (vm_offset_t)0; |
1786 | ppn = pmap_find_phys(pmap, vaddr); | |
2d21ac55 | 1787 | |
0c530ab8 | 1788 | if (ppn) { |
b0d623f7 | 1789 | paddr = ((vm_offset_t)i386_ptob(ppn)) | ((vm_offset_t)vaddr & INTEL_OFFMASK); |
0c530ab8 A |
1790 | } |
1791 | return (paddr); | |
1c79356b A |
1792 | } |
1793 | ||
316670eb | 1794 | kern_return_t |
0c530ab8 A |
1795 | pmap_expand_pml4( |
1796 | pmap_t map, | |
316670eb A |
1797 | vm_map_offset_t vaddr, |
1798 | __unused unsigned int options) | |
1c79356b | 1799 | { |
1c79356b | 1800 | register vm_page_t m; |
91447636 | 1801 | register pmap_paddr_t pa; |
0c530ab8 | 1802 | uint64_t i; |
1c79356b | 1803 | spl_t spl; |
55e303ae | 1804 | ppnum_t pn; |
0c530ab8 | 1805 | pml4_entry_t *pml4p; |
89b3af67 | 1806 | |
0c530ab8 A |
1807 | if (kernel_pmap == map) panic("expand kernel pml4"); |
1808 | ||
1809 | spl = splhigh(); | |
2d21ac55 A |
1810 | pml4p = pmap64_pml4(map, vaddr); |
1811 | splx(spl); | |
1812 | if (PML4_ENTRY_NULL == pml4p) panic("pmap_expand_pml4 no pml4p"); | |
1c79356b A |
1813 | |
1814 | /* | |
0c530ab8 | 1815 | * Allocate a VM page for the pml4 page |
1c79356b A |
1816 | */ |
1817 | while ((m = vm_page_grab()) == VM_PAGE_NULL) | |
1818 | VM_PAGE_WAIT(); | |
1819 | ||
1820 | /* | |
91447636 | 1821 | * put the page into the pmap's obj list so it |
1c79356b A |
1822 | * can be found later. |
1823 | */ | |
55e303ae A |
1824 | pn = m->phys_page; |
1825 | pa = i386_ptob(pn); | |
0c530ab8 A |
1826 | i = pml4idx(map, vaddr); |
1827 | ||
2d21ac55 A |
1828 | /* |
1829 | * Zero the page. | |
1830 | */ | |
1831 | pmap_zero_page(pn); | |
0c530ab8 | 1832 | |
b0d623f7 | 1833 | vm_page_lockspin_queues(); |
1c79356b | 1834 | vm_page_wire(m); |
2d21ac55 | 1835 | vm_page_unlock_queues(); |
1c79356b | 1836 | |
b0d623f7 | 1837 | OSAddAtomic(1, &inuse_ptepages_count); |
6d2010ae | 1838 | OSAddAtomic64(1, &alloc_ptepages_count); |
316670eb | 1839 | PMAP_ZINFO_PALLOC(map, PAGE_SIZE); |
b0d623f7 | 1840 | |
2d21ac55 A |
1841 | /* Take the oject lock (mutex) before the PMAP_LOCK (spinlock) */ |
1842 | vm_object_lock(map->pm_obj_pml4); | |
1c79356b | 1843 | |
2d21ac55 | 1844 | PMAP_LOCK(map); |
1c79356b A |
1845 | /* |
1846 | * See if someone else expanded us first | |
1847 | */ | |
0c530ab8 | 1848 | if (pmap64_pdpt(map, vaddr) != PDPT_ENTRY_NULL) { |
2d21ac55 A |
1849 | PMAP_UNLOCK(map); |
1850 | vm_object_unlock(map->pm_obj_pml4); | |
1851 | ||
b0d623f7 | 1852 | VM_PAGE_FREE(m); |
2d21ac55 | 1853 | |
b0d623f7 | 1854 | OSAddAtomic(-1, &inuse_ptepages_count); |
316670eb A |
1855 | PMAP_ZINFO_PFREE(map, PAGE_SIZE); |
1856 | return KERN_SUCCESS; | |
1c79356b | 1857 | } |
0b4c1975 | 1858 | pmap_set_noencrypt(pn); |
1c79356b | 1859 | |
2d21ac55 A |
1860 | #if 0 /* DEBUG */ |
1861 | if (0 != vm_page_lookup(map->pm_obj_pml4, (vm_object_offset_t)i)) { | |
1862 | panic("pmap_expand_pml4: obj not empty, pmap %p pm_obj %p vaddr 0x%llx i 0x%llx\n", | |
1863 | map, map->pm_obj_pml4, vaddr, i); | |
1864 | } | |
1865 | #endif | |
1866 | vm_page_insert(m, map->pm_obj_pml4, (vm_object_offset_t)i); | |
1867 | vm_object_unlock(map->pm_obj_pml4); | |
1868 | ||
1c79356b A |
1869 | /* |
1870 | * Set the page directory entry for this page table. | |
1c79356b | 1871 | */ |
0c530ab8 | 1872 | pml4p = pmap64_pml4(map, vaddr); /* refetch under lock */ |
c0fea474 | 1873 | |
0c530ab8 A |
1874 | pmap_store_pte(pml4p, pa_to_pte(pa) |
1875 | | INTEL_PTE_VALID | |
1876 | | INTEL_PTE_USER | |
1877 | | INTEL_PTE_WRITE); | |
5d5c5d0d | 1878 | |
2d21ac55 | 1879 | PMAP_UNLOCK(map); |
89b3af67 | 1880 | |
316670eb | 1881 | return KERN_SUCCESS; |
6601e61a | 1882 | } |
89b3af67 | 1883 | |
316670eb A |
1884 | kern_return_t |
1885 | pmap_expand_pdpt(pmap_t map, vm_map_offset_t vaddr, __unused unsigned int options) | |
6601e61a | 1886 | { |
0c530ab8 A |
1887 | register vm_page_t m; |
1888 | register pmap_paddr_t pa; | |
1889 | uint64_t i; | |
1890 | spl_t spl; | |
1891 | ppnum_t pn; | |
1892 | pdpt_entry_t *pdptp; | |
89b3af67 | 1893 | |
0c530ab8 | 1894 | if (kernel_pmap == map) panic("expand kernel pdpt"); |
89b3af67 | 1895 | |
0c530ab8 | 1896 | spl = splhigh(); |
2d21ac55 A |
1897 | while ((pdptp = pmap64_pdpt(map, vaddr)) == PDPT_ENTRY_NULL) { |
1898 | splx(spl); | |
316670eb | 1899 | pmap_expand_pml4(map, vaddr, PMAP_EXPAND_OPTIONS_NONE); /* need room for another pdpt entry */ |
2d21ac55 A |
1900 | spl = splhigh(); |
1901 | } | |
1902 | splx(spl); | |
4452a7af | 1903 | |
0c530ab8 A |
1904 | /* |
1905 | * Allocate a VM page for the pdpt page | |
1906 | */ | |
1907 | while ((m = vm_page_grab()) == VM_PAGE_NULL) | |
1908 | VM_PAGE_WAIT(); | |
4452a7af | 1909 | |
4452a7af | 1910 | /* |
0c530ab8 A |
1911 | * put the page into the pmap's obj list so it |
1912 | * can be found later. | |
4452a7af | 1913 | */ |
0c530ab8 A |
1914 | pn = m->phys_page; |
1915 | pa = i386_ptob(pn); | |
1916 | i = pdptidx(map, vaddr); | |
4452a7af | 1917 | |
2d21ac55 A |
1918 | /* |
1919 | * Zero the page. | |
1920 | */ | |
1921 | pmap_zero_page(pn); | |
0c530ab8 | 1922 | |
b0d623f7 | 1923 | vm_page_lockspin_queues(); |
0c530ab8 | 1924 | vm_page_wire(m); |
2d21ac55 | 1925 | vm_page_unlock_queues(); |
0c530ab8 | 1926 | |
b0d623f7 | 1927 | OSAddAtomic(1, &inuse_ptepages_count); |
6d2010ae | 1928 | OSAddAtomic64(1, &alloc_ptepages_count); |
316670eb | 1929 | PMAP_ZINFO_PALLOC(map, PAGE_SIZE); |
b0d623f7 | 1930 | |
2d21ac55 A |
1931 | /* Take the oject lock (mutex) before the PMAP_LOCK (spinlock) */ |
1932 | vm_object_lock(map->pm_obj_pdpt); | |
0c530ab8 | 1933 | |
2d21ac55 | 1934 | PMAP_LOCK(map); |
0c530ab8 A |
1935 | /* |
1936 | * See if someone else expanded us first | |
1937 | */ | |
1938 | if (pmap64_pde(map, vaddr) != PD_ENTRY_NULL) { | |
2d21ac55 A |
1939 | PMAP_UNLOCK(map); |
1940 | vm_object_unlock(map->pm_obj_pdpt); | |
1941 | ||
b0d623f7 | 1942 | VM_PAGE_FREE(m); |
2d21ac55 | 1943 | |
b0d623f7 | 1944 | OSAddAtomic(-1, &inuse_ptepages_count); |
316670eb A |
1945 | PMAP_ZINFO_PFREE(map, PAGE_SIZE); |
1946 | return KERN_SUCCESS; | |
0c530ab8 | 1947 | } |
0b4c1975 | 1948 | pmap_set_noencrypt(pn); |
0c530ab8 | 1949 | |
2d21ac55 A |
1950 | #if 0 /* DEBUG */ |
1951 | if (0 != vm_page_lookup(map->pm_obj_pdpt, (vm_object_offset_t)i)) { | |
1952 | panic("pmap_expand_pdpt: obj not empty, pmap %p pm_obj %p vaddr 0x%llx i 0x%llx\n", | |
1953 | map, map->pm_obj_pdpt, vaddr, i); | |
1954 | } | |
1955 | #endif | |
1956 | vm_page_insert(m, map->pm_obj_pdpt, (vm_object_offset_t)i); | |
1957 | vm_object_unlock(map->pm_obj_pdpt); | |
1958 | ||
0c530ab8 A |
1959 | /* |
1960 | * Set the page directory entry for this page table. | |
0c530ab8 | 1961 | */ |
0c530ab8 A |
1962 | pdptp = pmap64_pdpt(map, vaddr); /* refetch under lock */ |
1963 | ||
1964 | pmap_store_pte(pdptp, pa_to_pte(pa) | |
1965 | | INTEL_PTE_VALID | |
1966 | | INTEL_PTE_USER | |
1967 | | INTEL_PTE_WRITE); | |
1968 | ||
2d21ac55 | 1969 | PMAP_UNLOCK(map); |
0c530ab8 | 1970 | |
316670eb | 1971 | return KERN_SUCCESS; |
0c530ab8 A |
1972 | } |
1973 | ||
1974 | ||
1975 | ||
1976 | /* | |
1977 | * Routine: pmap_expand | |
1978 | * | |
1979 | * Expands a pmap to be able to map the specified virtual address. | |
1980 | * | |
1981 | * Allocates new virtual memory for the P0 or P1 portion of the | |
1982 | * pmap, then re-maps the physical pages that were in the old | |
1983 | * pmap to be in the new pmap. | |
1984 | * | |
1985 | * Must be called with the pmap system and the pmap unlocked, | |
1986 | * since these must be unlocked to use vm_allocate or vm_deallocate. | |
1987 | * Thus it must be called in a loop that checks whether the map | |
1988 | * has been expanded enough. | |
1989 | * (We won't loop forever, since page tables aren't shrunk.) | |
1990 | */ | |
316670eb | 1991 | kern_return_t |
0c530ab8 A |
1992 | pmap_expand( |
1993 | pmap_t map, | |
316670eb A |
1994 | vm_map_offset_t vaddr, |
1995 | __unused unsigned int options) | |
0c530ab8 A |
1996 | { |
1997 | pt_entry_t *pdp; | |
1998 | register vm_page_t m; | |
1999 | register pmap_paddr_t pa; | |
2000 | uint64_t i; | |
2001 | spl_t spl; | |
2002 | ppnum_t pn; | |
2003 | ||
2004 | /* | |
2005 | * if not the kernel map (while we are still compat kernel mode) | |
2006 | * and we are 64 bit, propagate expand upwards | |
2007 | */ | |
2008 | ||
2009 | if (cpu_64bit && (map != kernel_pmap)) { | |
2d21ac55 A |
2010 | spl = splhigh(); |
2011 | while ((pdp = pmap64_pde(map, vaddr)) == PD_ENTRY_NULL) { | |
2012 | splx(spl); | |
316670eb | 2013 | pmap_expand_pdpt(map, vaddr, PMAP_EXPAND_OPTIONS_NONE); /* need room for another pde entry */ |
2d21ac55 A |
2014 | spl = splhigh(); |
2015 | } | |
2016 | splx(spl); | |
0c530ab8 A |
2017 | } |
2018 | ||
0c530ab8 A |
2019 | /* |
2020 | * Allocate a VM page for the pde entries. | |
2021 | */ | |
2022 | while ((m = vm_page_grab()) == VM_PAGE_NULL) | |
2023 | VM_PAGE_WAIT(); | |
2024 | ||
2025 | /* | |
2026 | * put the page into the pmap's obj list so it | |
2027 | * can be found later. | |
2028 | */ | |
2029 | pn = m->phys_page; | |
2030 | pa = i386_ptob(pn); | |
2031 | i = pdeidx(map, vaddr); | |
2032 | ||
2d21ac55 A |
2033 | /* |
2034 | * Zero the page. | |
2035 | */ | |
2036 | pmap_zero_page(pn); | |
0c530ab8 | 2037 | |
b0d623f7 | 2038 | vm_page_lockspin_queues(); |
0c530ab8 | 2039 | vm_page_wire(m); |
0c530ab8 | 2040 | vm_page_unlock_queues(); |
0c530ab8 | 2041 | |
b0d623f7 | 2042 | OSAddAtomic(1, &inuse_ptepages_count); |
6d2010ae | 2043 | OSAddAtomic64(1, &alloc_ptepages_count); |
316670eb | 2044 | PMAP_ZINFO_PALLOC(map, PAGE_SIZE); |
b0d623f7 | 2045 | |
2d21ac55 A |
2046 | /* Take the oject lock (mutex) before the PMAP_LOCK (spinlock) */ |
2047 | vm_object_lock(map->pm_obj); | |
0c530ab8 | 2048 | |
2d21ac55 | 2049 | PMAP_LOCK(map); |
0c530ab8 A |
2050 | /* |
2051 | * See if someone else expanded us first | |
2052 | */ | |
2d21ac55 | 2053 | |
0c530ab8 | 2054 | if (pmap_pte(map, vaddr) != PT_ENTRY_NULL) { |
2d21ac55 A |
2055 | PMAP_UNLOCK(map); |
2056 | vm_object_unlock(map->pm_obj); | |
0c530ab8 | 2057 | |
b0d623f7 | 2058 | VM_PAGE_FREE(m); |
2d21ac55 | 2059 | |
b0d623f7 | 2060 | OSAddAtomic(-1, &inuse_ptepages_count); |
316670eb A |
2061 | PMAP_ZINFO_PFREE(map, PAGE_SIZE); |
2062 | return KERN_SUCCESS; | |
0c530ab8 | 2063 | } |
0b4c1975 | 2064 | pmap_set_noencrypt(pn); |
0c530ab8 | 2065 | |
2d21ac55 A |
2066 | #if 0 /* DEBUG */ |
2067 | if (0 != vm_page_lookup(map->pm_obj, (vm_object_offset_t)i)) { | |
2068 | panic("pmap_expand: obj not empty, pmap 0x%x pm_obj 0x%x vaddr 0x%llx i 0x%llx\n", | |
2069 | map, map->pm_obj, vaddr, i); | |
2070 | } | |
2071 | #endif | |
2072 | vm_page_insert(m, map->pm_obj, (vm_object_offset_t)i); | |
2073 | vm_object_unlock(map->pm_obj); | |
0c530ab8 A |
2074 | |
2075 | /* | |
2d21ac55 | 2076 | * refetch while locked |
0c530ab8 A |
2077 | */ |
2078 | ||
2d21ac55 A |
2079 | pdp = pmap_pde(map, vaddr); |
2080 | ||
2081 | /* | |
2082 | * Set the page directory entry for this page table. | |
2083 | */ | |
0c530ab8 A |
2084 | pmap_store_pte(pdp, pa_to_pte(pa) |
2085 | | INTEL_PTE_VALID | |
2086 | | INTEL_PTE_USER | |
2087 | | INTEL_PTE_WRITE); | |
0c530ab8 | 2088 | |
2d21ac55 | 2089 | PMAP_UNLOCK(map); |
0c530ab8 | 2090 | |
316670eb | 2091 | return KERN_SUCCESS; |
0c530ab8 A |
2092 | } |
2093 | ||
2094 | ||
2095 | /* | |
2096 | * pmap_sync_page_data_phys(ppnum_t pa) | |
2097 | * | |
2098 | * Invalidates all of the instruction cache on a physical page and | |
2099 | * pushes any dirty data from the data cache for the same physical page | |
2100 | * Not required in i386. | |
2101 | */ | |
2102 | void | |
2103 | pmap_sync_page_data_phys(__unused ppnum_t pa) | |
2104 | { | |
2105 | return; | |
2106 | } | |
2107 | ||
2108 | /* | |
2109 | * pmap_sync_page_attributes_phys(ppnum_t pa) | |
2110 | * | |
2111 | * Write back and invalidate all cachelines on a physical page. | |
2112 | */ | |
2113 | void | |
2114 | pmap_sync_page_attributes_phys(ppnum_t pa) | |
2115 | { | |
2116 | cache_flush_page_phys(pa); | |
2117 | } | |
2118 | ||
2d21ac55 A |
2119 | |
2120 | ||
2121 | #ifdef CURRENTLY_UNUSED_AND_UNTESTED | |
2122 | ||
0c530ab8 A |
2123 | int collect_ref; |
2124 | int collect_unref; | |
2125 | ||
2126 | /* | |
2127 | * Routine: pmap_collect | |
2128 | * Function: | |
2129 | * Garbage collects the physical map system for | |
2130 | * pages which are no longer used. | |
2131 | * Success need not be guaranteed -- that is, there | |
2132 | * may well be pages which are not referenced, but | |
2133 | * others may be collected. | |
2134 | * Usage: | |
2135 | * Called by the pageout daemon when pages are scarce. | |
2136 | */ | |
2137 | void | |
2138 | pmap_collect( | |
2139 | pmap_t p) | |
2140 | { | |
2141 | register pt_entry_t *pdp, *ptp; | |
2142 | pt_entry_t *eptp; | |
2143 | int wired; | |
0c530ab8 A |
2144 | |
2145 | if (p == PMAP_NULL) | |
2146 | return; | |
2147 | ||
2148 | if (p == kernel_pmap) | |
2149 | return; | |
2150 | ||
2151 | /* | |
2152 | * Garbage collect map. | |
2153 | */ | |
2d21ac55 | 2154 | PMAP_LOCK(p); |
0c530ab8 A |
2155 | |
2156 | for (pdp = (pt_entry_t *)p->dirbase; | |
4452a7af A |
2157 | pdp < (pt_entry_t *)&p->dirbase[(UMAXPTDI+1)]; |
2158 | pdp++) | |
2159 | { | |
2160 | if (*pdp & INTEL_PTE_VALID) { | |
2161 | if(*pdp & INTEL_PTE_REF) { | |
0c530ab8 | 2162 | pmap_store_pte(pdp, *pdp & ~INTEL_PTE_REF); |
4452a7af A |
2163 | collect_ref++; |
2164 | } else { | |
2165 | collect_unref++; | |
2166 | ptp = pmap_pte(p, pdetova(pdp - (pt_entry_t *)p->dirbase)); | |
2167 | eptp = ptp + NPTEPG; | |
2168 | ||
2169 | /* | |
2170 | * If the pte page has any wired mappings, we cannot | |
2171 | * free it. | |
2172 | */ | |
2173 | wired = 0; | |
2174 | { | |
2175 | register pt_entry_t *ptep; | |
2176 | for (ptep = ptp; ptep < eptp; ptep++) { | |
2177 | if (iswired(*ptep)) { | |
2178 | wired = 1; | |
5d5c5d0d | 2179 | break; |
1c79356b A |
2180 | } |
2181 | } | |
2182 | } | |
2183 | if (!wired) { | |
2184 | /* | |
2185 | * Remove the virtual addresses mapped by this pte page. | |
2186 | */ | |
2187 | pmap_remove_range(p, | |
91447636 | 2188 | pdetova(pdp - (pt_entry_t *)p->dirbase), |
1c79356b A |
2189 | ptp, |
2190 | eptp); | |
2191 | ||
2192 | /* | |
2193 | * Invalidate the page directory pointer. | |
2194 | */ | |
0c530ab8 | 2195 | pmap_store_pte(pdp, 0x0); |
91447636 | 2196 | |
2d21ac55 | 2197 | PMAP_UNLOCK(p); |
1c79356b A |
2198 | |
2199 | /* | |
2200 | * And free the pte page itself. | |
2201 | */ | |
2202 | { | |
2203 | register vm_page_t m; | |
2204 | ||
91447636 | 2205 | vm_object_lock(p->pm_obj); |
2d21ac55 | 2206 | |
91447636 | 2207 | m = vm_page_lookup(p->pm_obj,(vm_object_offset_t)(pdp - (pt_entry_t *)&p->dirbase[0])); |
1c79356b A |
2208 | if (m == VM_PAGE_NULL) |
2209 | panic("pmap_collect: pte page not in object"); | |
2d21ac55 | 2210 | |
6d2010ae A |
2211 | vm_object_unlock(p->pm_obj); |
2212 | ||
b0d623f7 A |
2213 | VM_PAGE_FREE(m); |
2214 | ||
2215 | OSAddAtomic(-1, &inuse_ptepages_count); | |
316670eb | 2216 | PMAP_ZINFO_PFREE(map, PAGE_SIZE); |
1c79356b A |
2217 | } |
2218 | ||
2d21ac55 | 2219 | PMAP_LOCK(p); |
1c79356b | 2220 | } |
91447636 A |
2221 | } |
2222 | } | |
1c79356b | 2223 | } |
0c530ab8 | 2224 | |
2d21ac55 A |
2225 | PMAP_UPDATE_TLBS(p, 0x0, 0xFFFFFFFFFFFFF000ULL); |
2226 | PMAP_UNLOCK(p); | |
1c79356b A |
2227 | return; |
2228 | ||
2229 | } | |
2d21ac55 | 2230 | #endif |
1c79356b | 2231 | |
1c79356b | 2232 | |
1c79356b | 2233 | void |
2d21ac55 | 2234 | pmap_copy_page(ppnum_t src, ppnum_t dst) |
1c79356b | 2235 | { |
2d21ac55 A |
2236 | bcopy_phys((addr64_t)i386_ptob(src), |
2237 | (addr64_t)i386_ptob(dst), | |
2238 | PAGE_SIZE); | |
1c79356b | 2239 | } |
1c79356b | 2240 | |
1c79356b A |
2241 | |
2242 | /* | |
2243 | * Routine: pmap_pageable | |
2244 | * Function: | |
2245 | * Make the specified pages (by pmap, offset) | |
2246 | * pageable (or not) as requested. | |
2247 | * | |
2248 | * A page which is not pageable may not take | |
2249 | * a fault; therefore, its page table entry | |
2250 | * must remain valid for the duration. | |
2251 | * | |
2252 | * This routine is merely advisory; pmap_enter | |
2253 | * will specify that these pages are to be wired | |
2254 | * down (or not) as appropriate. | |
2255 | */ | |
2256 | void | |
2257 | pmap_pageable( | |
91447636 | 2258 | __unused pmap_t pmap, |
0c530ab8 A |
2259 | __unused vm_map_offset_t start_addr, |
2260 | __unused vm_map_offset_t end_addr, | |
91447636 | 2261 | __unused boolean_t pageable) |
1c79356b A |
2262 | { |
2263 | #ifdef lint | |
91447636 | 2264 | pmap++; start_addr++; end_addr++; pageable++; |
1c79356b A |
2265 | #endif /* lint */ |
2266 | } | |
2267 | ||
1c79356b | 2268 | void |
91447636 A |
2269 | invalidate_icache(__unused vm_offset_t addr, |
2270 | __unused unsigned cnt, | |
2271 | __unused int phys) | |
1c79356b A |
2272 | { |
2273 | return; | |
2274 | } | |
2275 | void | |
91447636 A |
2276 | flush_dcache(__unused vm_offset_t addr, |
2277 | __unused unsigned count, | |
2278 | __unused int phys) | |
1c79356b A |
2279 | { |
2280 | return; | |
2281 | } | |
2282 | ||
2d21ac55 A |
2283 | #if CONFIG_DTRACE |
2284 | /* | |
2285 | * Constrain DTrace copyin/copyout actions | |
2286 | */ | |
2287 | extern kern_return_t dtrace_copyio_preflight(addr64_t); | |
2288 | extern kern_return_t dtrace_copyio_postflight(addr64_t); | |
2289 | ||
2290 | kern_return_t dtrace_copyio_preflight(__unused addr64_t va) | |
2291 | { | |
2292 | thread_t thread = current_thread(); | |
2293 | ||
2294 | if (current_map() == kernel_map) | |
2295 | return KERN_FAILURE; | |
2296 | else if (thread->machine.specFlags & CopyIOActive) | |
2297 | return KERN_FAILURE; | |
2298 | else | |
2299 | return KERN_SUCCESS; | |
2300 | } | |
2301 | ||
2302 | kern_return_t dtrace_copyio_postflight(__unused addr64_t va) | |
2303 | { | |
2304 | return KERN_SUCCESS; | |
2305 | } | |
2306 | #endif /* CONFIG_DTRACE */ | |
2307 | ||
1c79356b A |
2308 | #include <mach_vm_debug.h> |
2309 | #if MACH_VM_DEBUG | |
2310 | #include <vm/vm_debug.h> | |
2311 | ||
2312 | int | |
2313 | pmap_list_resident_pages( | |
91447636 A |
2314 | __unused pmap_t pmap, |
2315 | __unused vm_offset_t *listp, | |
2316 | __unused int space) | |
1c79356b A |
2317 | { |
2318 | return 0; | |
2319 | } | |
2320 | #endif /* MACH_VM_DEBUG */ | |
2321 | ||
6601e61a | 2322 | |
1c79356b | 2323 | |
91447636 A |
2324 | /* temporary workaround */ |
2325 | boolean_t | |
0c530ab8 | 2326 | coredumpok(__unused vm_map_t map, __unused vm_offset_t va) |
91447636 | 2327 | { |
0c530ab8 | 2328 | #if 0 |
91447636 | 2329 | pt_entry_t *ptep; |
1c79356b | 2330 | |
91447636 A |
2331 | ptep = pmap_pte(map->pmap, va); |
2332 | if (0 == ptep) | |
2333 | return FALSE; | |
2334 | return ((*ptep & (INTEL_PTE_NCACHE | INTEL_PTE_WIRED)) != (INTEL_PTE_NCACHE | INTEL_PTE_WIRED)); | |
0c530ab8 A |
2335 | #else |
2336 | return TRUE; | |
1c79356b | 2337 | #endif |
1c79356b A |
2338 | } |
2339 | ||
1c79356b | 2340 | |
9bccf70c | 2341 | boolean_t |
91447636 A |
2342 | phys_page_exists( |
2343 | ppnum_t pn) | |
9bccf70c | 2344 | { |
91447636 A |
2345 | assert(pn != vm_page_fictitious_addr); |
2346 | ||
2347 | if (!pmap_initialized) | |
2348 | return (TRUE); | |
2d21ac55 A |
2349 | |
2350 | if (pn == vm_page_guard_addr) | |
2351 | return FALSE; | |
2352 | ||
2353 | if (!managed_page(ppn_to_pai(pn))) | |
91447636 A |
2354 | return (FALSE); |
2355 | ||
2356 | return TRUE; | |
2357 | } | |
2358 | ||
91447636 | 2359 | void |
0c530ab8 | 2360 | pmap_commpage32_init(vm_offset_t kernel_commpage, vm_offset_t user_commpage, int cnt) |
91447636 | 2361 | { |
2d21ac55 A |
2362 | int i; |
2363 | pt_entry_t *opte, *npte; | |
2364 | pt_entry_t pte; | |
2365 | spl_t s; | |
2366 | ||
2367 | for (i = 0; i < cnt; i++) { | |
2368 | s = splhigh(); | |
2369 | opte = pmap_pte(kernel_pmap, (vm_map_offset_t)kernel_commpage); | |
2370 | if (0 == opte) | |
2371 | panic("kernel_commpage"); | |
2372 | pte = *opte | INTEL_PTE_USER|INTEL_PTE_GLOBAL; | |
2373 | pte &= ~INTEL_PTE_WRITE; // ensure read only | |
2374 | npte = pmap_pte(kernel_pmap, (vm_map_offset_t)user_commpage); | |
2375 | if (0 == npte) | |
2376 | panic("user_commpage"); | |
2377 | pmap_store_pte(npte, pte); | |
2378 | splx(s); | |
2379 | kernel_commpage += INTEL_PGBYTES; | |
2380 | user_commpage += INTEL_PGBYTES; | |
2381 | } | |
91447636 A |
2382 | } |
2383 | ||
2d21ac55 | 2384 | |
0c530ab8 A |
2385 | #define PMAP_COMMPAGE64_CNT (_COMM_PAGE64_AREA_USED/PAGE_SIZE) |
2386 | pt_entry_t pmap_commpage64_ptes[PMAP_COMMPAGE64_CNT]; | |
2387 | ||
2388 | void | |
2389 | pmap_commpage64_init(vm_offset_t kernel_commpage, __unused vm_map_offset_t user_commpage, int cnt) | |
2390 | { | |
2d21ac55 A |
2391 | int i; |
2392 | pt_entry_t *kptep; | |
0c530ab8 | 2393 | |
2d21ac55 | 2394 | PMAP_LOCK(kernel_pmap); |
0c530ab8 | 2395 | |
2d21ac55 A |
2396 | for (i = 0; i < cnt; i++) { |
2397 | kptep = pmap_pte(kernel_pmap, (uint64_t)kernel_commpage + (i*PAGE_SIZE)); | |
2398 | if ((0 == kptep) || (0 == (*kptep & INTEL_PTE_VALID))) | |
2399 | panic("pmap_commpage64_init pte"); | |
2400 | pmap_commpage64_ptes[i] = ((*kptep & ~INTEL_PTE_WRITE) | INTEL_PTE_USER); | |
2401 | } | |
2402 | PMAP_UNLOCK(kernel_pmap); | |
0c530ab8 A |
2403 | } |
2404 | ||
0c530ab8 | 2405 | |
91447636 | 2406 | static cpu_pmap_t cpu_pmap_master; |
91447636 A |
2407 | |
2408 | struct cpu_pmap * | |
2409 | pmap_cpu_alloc(boolean_t is_boot_cpu) | |
2410 | { | |
2411 | int ret; | |
2412 | int i; | |
2413 | cpu_pmap_t *cp; | |
91447636 | 2414 | vm_offset_t address; |
0c530ab8 | 2415 | vm_map_address_t mapaddr; |
91447636 | 2416 | vm_map_entry_t entry; |
0c530ab8 | 2417 | pt_entry_t *pte; |
91447636 A |
2418 | |
2419 | if (is_boot_cpu) { | |
2420 | cp = &cpu_pmap_master; | |
91447636 A |
2421 | } else { |
2422 | /* | |
2423 | * The per-cpu pmap data structure itself. | |
2424 | */ | |
2425 | ret = kmem_alloc(kernel_map, | |
2426 | (vm_offset_t *) &cp, sizeof(cpu_pmap_t)); | |
2427 | if (ret != KERN_SUCCESS) { | |
2428 | printf("pmap_cpu_alloc() failed ret=%d\n", ret); | |
2429 | return NULL; | |
2430 | } | |
2431 | bzero((void *)cp, sizeof(cpu_pmap_t)); | |
2432 | ||
2433 | /* | |
0c530ab8 | 2434 | * The temporary windows used for copy/zero - see loose_ends.c |
91447636 | 2435 | */ |
0c530ab8 A |
2436 | ret = vm_map_find_space(kernel_map, |
2437 | &mapaddr, PMAP_NWINDOWS*PAGE_SIZE, (vm_map_offset_t)0, 0, &entry); | |
91447636 | 2438 | if (ret != KERN_SUCCESS) { |
0c530ab8 A |
2439 | printf("pmap_cpu_alloc() " |
2440 | "vm_map_find_space ret=%d\n", ret); | |
91447636 A |
2441 | pmap_cpu_free(cp); |
2442 | return NULL; | |
2443 | } | |
0c530ab8 | 2444 | address = (vm_offset_t)mapaddr; |
4452a7af | 2445 | |
0c530ab8 | 2446 | for (i = 0; i < PMAP_NWINDOWS; i++, address += PAGE_SIZE) { |
2d21ac55 A |
2447 | spl_t s; |
2448 | s = splhigh(); | |
0c530ab8 | 2449 | while ((pte = pmap_pte(kernel_pmap, (vm_map_offset_t)address)) == 0) |
316670eb | 2450 | pmap_expand(kernel_pmap, (vm_map_offset_t)address, PMAP_EXPAND_OPTIONS_NONE); |
0c530ab8 | 2451 | * (int *) pte = 0; |
6601e61a | 2452 | cp->mapwindow[i].prv_CADDR = (caddr_t) address; |
0c530ab8 | 2453 | cp->mapwindow[i].prv_CMAP = pte; |
2d21ac55 | 2454 | splx(s); |
4452a7af | 2455 | } |
0c530ab8 | 2456 | vm_map_unlock(kernel_map); |
4452a7af A |
2457 | } |
2458 | ||
0c530ab8 A |
2459 | cp->pdpt_window_index = PMAP_PDPT_FIRST_WINDOW; |
2460 | cp->pde_window_index = PMAP_PDE_FIRST_WINDOW; | |
2461 | cp->pte_window_index = PMAP_PTE_FIRST_WINDOW; | |
4452a7af | 2462 | |
6601e61a | 2463 | return cp; |
4452a7af A |
2464 | } |
2465 | ||
2466 | void | |
6601e61a | 2467 | pmap_cpu_free(struct cpu_pmap *cp) |
4452a7af | 2468 | { |
6601e61a | 2469 | if (cp != NULL && cp != &cpu_pmap_master) { |
6601e61a | 2470 | kfree((void *) cp, sizeof(cpu_pmap_t)); |
4452a7af | 2471 | } |
4452a7af | 2472 | } |
0c530ab8 | 2473 | |
0c530ab8 A |
2474 | mapwindow_t * |
2475 | pmap_get_mapwindow(pt_entry_t pentry) | |
2476 | { | |
2477 | mapwindow_t *mp; | |
2478 | int i; | |
0c530ab8 | 2479 | |
2d21ac55 | 2480 | assert(ml_get_interrupts_enabled() == 0 || get_preemption_level() != 0); |
6d2010ae A |
2481 | /* fold in cache attributes for this physical page */ |
2482 | pentry |= pmap_get_cache_attributes(i386_btop(pte_to_pa(pentry))); | |
0c530ab8 A |
2483 | /* |
2484 | * Note: 0th map reserved for pmap_pte() | |
2485 | */ | |
2486 | for (i = PMAP_NWINDOWS_FIRSTFREE; i < PMAP_NWINDOWS; i++) { | |
2487 | mp = ¤t_cpu_datap()->cpu_pmap->mapwindow[i]; | |
2488 | ||
2489 | if (*mp->prv_CMAP == 0) { | |
6d2010ae | 2490 | pmap_store_pte(mp->prv_CMAP, pentry); |
2d21ac55 | 2491 | |
6d2010ae | 2492 | invlpg((uintptr_t)mp->prv_CADDR); |
2d21ac55 | 2493 | |
6d2010ae | 2494 | return (mp); |
0c530ab8 A |
2495 | } |
2496 | } | |
2d21ac55 A |
2497 | panic("pmap_get_mapwindow: no windows available"); |
2498 | ||
2499 | return NULL; | |
2500 | } | |
2501 | ||
2502 | ||
2503 | void | |
2504 | pmap_put_mapwindow(mapwindow_t *mp) | |
2505 | { | |
2506 | pmap_store_pte(mp->prv_CMAP, 0); | |
0c530ab8 A |
2507 | } |
2508 | ||
0c530ab8 A |
2509 | void |
2510 | pmap_switch(pmap_t tpmap) | |
2511 | { | |
2512 | spl_t s; | |
0c530ab8 A |
2513 | |
2514 | s = splhigh(); /* Make sure interruptions are disabled */ | |
0c530ab8 | 2515 | |
b0d623f7 | 2516 | set_dirbase(tpmap, current_thread()); |
0c530ab8 A |
2517 | |
2518 | splx(s); | |
2519 | } | |
2520 | ||
2521 | ||
2522 | /* | |
2523 | * disable no-execute capability on | |
2524 | * the specified pmap | |
2525 | */ | |
2526 | void pmap_disable_NX(pmap_t pmap) { | |
2527 | ||
2528 | pmap->nx_enabled = 0; | |
2529 | } | |
2530 | ||
2531 | void | |
6d2010ae A |
2532 | pt_fake_zone_init(int zone_index) |
2533 | { | |
2534 | pt_fake_zone_index = zone_index; | |
2535 | } | |
2536 | ||
2537 | void | |
2538 | pt_fake_zone_info(int *count, | |
2539 | vm_size_t *cur_size, vm_size_t *max_size, vm_size_t *elem_size, vm_size_t *alloc_size, | |
2540 | uint64_t *sum_size, int *collectable, int *exhaustable, int *caller_acct) | |
0c530ab8 A |
2541 | { |
2542 | *count = inuse_ptepages_count; | |
2543 | *cur_size = PAGE_SIZE * inuse_ptepages_count; | |
2544 | *max_size = PAGE_SIZE * (inuse_ptepages_count + vm_page_inactive_count + vm_page_active_count + vm_page_free_count); | |
2545 | *elem_size = PAGE_SIZE; | |
2546 | *alloc_size = PAGE_SIZE; | |
6d2010ae | 2547 | *sum_size = alloc_ptepages_count * PAGE_SIZE; |
0c530ab8 A |
2548 | |
2549 | *collectable = 1; | |
2550 | *exhaustable = 0; | |
6d2010ae | 2551 | *caller_acct = 1; |
0c530ab8 A |
2552 | } |
2553 | ||
2554 | vm_offset_t pmap_cpu_high_map_vaddr(int cpu, enum high_cpu_types e) | |
2555 | { | |
2556 | enum high_fixed_addresses a; | |
2557 | a = e + HIGH_CPU_END * cpu; | |
2558 | return pmap_index_to_virt(HIGH_FIXED_CPUS_BEGIN + a); | |
2559 | } | |
2560 | ||
2561 | vm_offset_t pmap_high_map_vaddr(enum high_cpu_types e) | |
2562 | { | |
2563 | return pmap_cpu_high_map_vaddr(cpu_number(), e); | |
2564 | } | |
2565 | ||
2566 | vm_offset_t pmap_high_map(pt_entry_t pte, enum high_cpu_types e) | |
2567 | { | |
2568 | enum high_fixed_addresses a; | |
2569 | vm_offset_t vaddr; | |
2570 | ||
2571 | a = e + HIGH_CPU_END * cpu_number(); | |
2572 | vaddr = (vm_offset_t)pmap_index_to_virt(HIGH_FIXED_CPUS_BEGIN + a); | |
2d21ac55 | 2573 | pmap_store_pte(pte_unique_base + a, pte); |
0c530ab8 A |
2574 | |
2575 | /* TLB flush for this page for this cpu */ | |
2576 | invlpg((uintptr_t)vaddr); | |
2577 | ||
2578 | return vaddr; | |
2579 | } | |
2580 | ||
935ed37a A |
2581 | static inline void |
2582 | pmap_cpuset_NMIPI(cpu_set cpu_mask) { | |
2583 | unsigned int cpu, cpu_bit; | |
2584 | uint64_t deadline; | |
2585 | ||
2586 | for (cpu = 0, cpu_bit = 1; cpu < real_ncpus; cpu++, cpu_bit <<= 1) { | |
2587 | if (cpu_mask & cpu_bit) | |
2588 | cpu_NMI_interrupt(cpu); | |
2589 | } | |
6d2010ae | 2590 | deadline = mach_absolute_time() + (((uint64_t)LockTimeOut) * 3); |
935ed37a A |
2591 | while (mach_absolute_time() < deadline) |
2592 | cpu_pause(); | |
2593 | } | |
2594 | ||
0c530ab8 A |
2595 | /* |
2596 | * Called with pmap locked, we: | |
2597 | * - scan through per-cpu data to see which other cpus need to flush | |
2598 | * - send an IPI to each non-idle cpu to be flushed | |
2599 | * - wait for all to signal back that they are inactive or we see that | |
2600 | * they are in an interrupt handler or at a safe point | |
2601 | * - flush the local tlb is active for this pmap | |
2602 | * - return ... the caller will unlock the pmap | |
2603 | */ | |
2604 | void | |
6d2010ae | 2605 | pmap_flush_tlbs(pmap_t pmap, vm_map_offset_t startv, vm_map_offset_t endv) |
0c530ab8 A |
2606 | { |
2607 | unsigned int cpu; | |
2608 | unsigned int cpu_bit; | |
2609 | cpu_set cpus_to_signal; | |
2610 | unsigned int my_cpu = cpu_number(); | |
2611 | pmap_paddr_t pmap_cr3 = pmap->pm_cr3; | |
2612 | boolean_t flush_self = FALSE; | |
2613 | uint64_t deadline; | |
2614 | ||
2d21ac55 A |
2615 | assert((processor_avail_count < 2) || |
2616 | (ml_get_interrupts_enabled() && get_preemption_level() != 0)); | |
0c530ab8 A |
2617 | |
2618 | /* | |
2619 | * Scan other cpus for matching active or task CR3. | |
2620 | * For idle cpus (with no active map) we mark them invalid but | |
2621 | * don't signal -- they'll check as they go busy. | |
2622 | * Note: for the kernel pmap we look for 64-bit shared address maps. | |
2623 | */ | |
2624 | cpus_to_signal = 0; | |
2625 | for (cpu = 0, cpu_bit = 1; cpu < real_ncpus; cpu++, cpu_bit <<= 1) { | |
2626 | if (!cpu_datap(cpu)->cpu_running) | |
2627 | continue; | |
2d21ac55 A |
2628 | if ((cpu_datap(cpu)->cpu_task_cr3 == pmap_cr3) || |
2629 | (CPU_GET_ACTIVE_CR3(cpu) == pmap_cr3) || | |
0c530ab8 A |
2630 | (pmap->pm_shared) || |
2631 | ((pmap == kernel_pmap) && | |
2632 | (!CPU_CR3_IS_ACTIVE(cpu) || | |
2633 | cpu_datap(cpu)->cpu_task_map == TASK_MAP_64BIT_SHARED))) { | |
2634 | if (cpu == my_cpu) { | |
2635 | flush_self = TRUE; | |
2636 | continue; | |
2637 | } | |
2638 | cpu_datap(cpu)->cpu_tlb_invalid = TRUE; | |
2639 | __asm__ volatile("mfence"); | |
2640 | ||
2641 | if (CPU_CR3_IS_ACTIVE(cpu)) { | |
2642 | cpus_to_signal |= cpu_bit; | |
2643 | i386_signal_cpu(cpu, MP_TLB_FLUSH, ASYNC); | |
2644 | } | |
2645 | } | |
2646 | } | |
2647 | ||
6d2010ae A |
2648 | PMAP_TRACE_CONSTANT(PMAP_CODE(PMAP__FLUSH_TLBS) | DBG_FUNC_START, |
2649 | (uintptr_t) pmap, cpus_to_signal, flush_self, startv, 0); | |
0c530ab8 | 2650 | |
2d21ac55 | 2651 | if (cpus_to_signal) { |
935ed37a A |
2652 | cpu_set cpus_to_respond = cpus_to_signal; |
2653 | ||
0c530ab8 A |
2654 | deadline = mach_absolute_time() + LockTimeOut; |
2655 | /* | |
2656 | * Wait for those other cpus to acknowledge | |
2657 | */ | |
935ed37a | 2658 | while (cpus_to_respond != 0) { |
060df5ea | 2659 | long orig_acks = 0; |
6d2010ae | 2660 | |
935ed37a A |
2661 | for (cpu = 0, cpu_bit = 1; cpu < real_ncpus; cpu++, cpu_bit <<= 1) { |
2662 | if ((cpus_to_respond & cpu_bit) != 0) { | |
2663 | if (!cpu_datap(cpu)->cpu_running || | |
2664 | cpu_datap(cpu)->cpu_tlb_invalid == FALSE || | |
2665 | !CPU_CR3_IS_ACTIVE(cpu)) { | |
2666 | cpus_to_respond &= ~cpu_bit; | |
2667 | } | |
2668 | cpu_pause(); | |
2d21ac55 | 2669 | } |
935ed37a A |
2670 | if (cpus_to_respond == 0) |
2671 | break; | |
0c530ab8 | 2672 | } |
6d2010ae A |
2673 | |
2674 | if (cpus_to_respond && (mach_absolute_time() > deadline)) { | |
060df5ea A |
2675 | if (machine_timeout_suspended()) |
2676 | continue; | |
2677 | pmap_tlb_flush_timeout = TRUE; | |
2678 | orig_acks = NMIPI_acks; | |
2679 | pmap_cpuset_NMIPI(cpus_to_respond); | |
2680 | ||
2681 | panic("TLB invalidation IPI timeout: " | |
2682 | "CPU(s) failed to respond to interrupts, unresponsive CPU bitmap: 0x%lx, NMIPI acks: orig: 0x%lx, now: 0x%lx", | |
2683 | cpus_to_respond, orig_acks, NMIPI_acks); | |
2684 | } | |
0c530ab8 | 2685 | } |
0c530ab8 | 2686 | } |
0c530ab8 A |
2687 | /* |
2688 | * Flush local tlb if required. | |
2689 | * We need this flush even if the pmap being changed | |
2690 | * is the user map... in case we do a copyin/out | |
2691 | * before returning to user mode. | |
2692 | */ | |
2693 | if (flush_self) | |
2694 | flush_tlb(); | |
2695 | ||
b0d623f7 A |
2696 | if ((pmap == kernel_pmap) && (flush_self != TRUE)) { |
2697 | panic("pmap_flush_tlbs: pmap == kernel_pmap && flush_self != TRUE; kernel CR3: 0x%llX, CPU active CR3: 0x%llX, CPU Task Map: %d", kernel_pmap->pm_cr3, current_cpu_datap()->cpu_active_cr3, current_cpu_datap()->cpu_task_map); | |
2698 | } | |
2699 | ||
6d2010ae A |
2700 | PMAP_TRACE_CONSTANT(PMAP_CODE(PMAP__FLUSH_TLBS) | DBG_FUNC_END, |
2701 | (uintptr_t) pmap, cpus_to_signal, startv, endv, 0); | |
0c530ab8 A |
2702 | } |
2703 | ||
2704 | void | |
2705 | process_pmap_updates(void) | |
2706 | { | |
2d21ac55 A |
2707 | assert(ml_get_interrupts_enabled() == 0 || get_preemption_level() != 0); |
2708 | ||
0c530ab8 A |
2709 | flush_tlb(); |
2710 | ||
2711 | current_cpu_datap()->cpu_tlb_invalid = FALSE; | |
2712 | __asm__ volatile("mfence"); | |
2713 | } | |
2714 | ||
2715 | void | |
2716 | pmap_update_interrupt(void) | |
2717 | { | |
2d21ac55 A |
2718 | PMAP_TRACE(PMAP_CODE(PMAP__UPDATE_INTERRUPT) | DBG_FUNC_START, |
2719 | 0, 0, 0, 0, 0); | |
0c530ab8 A |
2720 | |
2721 | process_pmap_updates(); | |
2722 | ||
2d21ac55 A |
2723 | PMAP_TRACE(PMAP_CODE(PMAP__UPDATE_INTERRUPT) | DBG_FUNC_END, |
2724 | 0, 0, 0, 0, 0); | |
0c530ab8 | 2725 | } |
0c530ab8 A |
2726 | #ifdef PMAP_DEBUG |
2727 | void | |
2728 | pmap_dump(pmap_t p) | |
2729 | { | |
2730 | int i; | |
2731 | ||
2732 | kprintf("pmap 0x%x\n",p); | |
2733 | ||
2734 | kprintf(" pm_cr3 0x%llx\n",p->pm_cr3); | |
2735 | kprintf(" pm_pml4 0x%x\n",p->pm_pml4); | |
2736 | kprintf(" pm_pdpt 0x%x\n",p->pm_pdpt); | |
2737 | ||
2738 | kprintf(" pml4[0] 0x%llx\n",*p->pm_pml4); | |
2739 | for (i=0;i<8;i++) | |
2740 | kprintf(" pdpt[%d] 0x%llx\n",i, p->pm_pdpt[i]); | |
2741 | } | |
2742 | ||
2743 | void pmap_dump_wrap(void) | |
2744 | { | |
2745 | pmap_dump(current_cpu_datap()->cpu_active_thread->task->map->pmap); | |
2746 | } | |
2747 | ||
2748 | void | |
2749 | dump_4GB_pdpt(pmap_t p) | |
2750 | { | |
2751 | int spl; | |
2752 | pdpt_entry_t *user_pdptp; | |
2753 | pdpt_entry_t *kern_pdptp; | |
2754 | pdpt_entry_t *pml4p; | |
2755 | ||
2756 | spl = splhigh(); | |
2757 | while ((user_pdptp = pmap64_pdpt(p, 0x0)) == PDPT_ENTRY_NULL) { | |
2758 | splx(spl); | |
316670eb | 2759 | pmap_expand_pml4(p, 0x0, PMAP_EXPAND_OPTIONS_NONE); |
0c530ab8 A |
2760 | spl = splhigh(); |
2761 | } | |
2762 | kern_pdptp = kernel_pmap->pm_pdpt; | |
2763 | if (kern_pdptp == NULL) | |
2764 | panic("kern_pdptp == NULL"); | |
2765 | kprintf("dump_4GB_pdpt(%p)\n" | |
2766 | "kern_pdptp=%p (phys=0x%016llx)\n" | |
2767 | "\t 0x%08x: 0x%016llx\n" | |
2768 | "\t 0x%08x: 0x%016llx\n" | |
2769 | "\t 0x%08x: 0x%016llx\n" | |
2770 | "\t 0x%08x: 0x%016llx\n" | |
2771 | "\t 0x%08x: 0x%016llx\n" | |
2772 | "user_pdptp=%p (phys=0x%016llx)\n" | |
2773 | "\t 0x%08x: 0x%016llx\n" | |
2774 | "\t 0x%08x: 0x%016llx\n" | |
2775 | "\t 0x%08x: 0x%016llx\n" | |
2776 | "\t 0x%08x: 0x%016llx\n" | |
2777 | "\t 0x%08x: 0x%016llx\n", | |
2778 | p, kern_pdptp, kvtophys(kern_pdptp), | |
2779 | kern_pdptp+0, *(kern_pdptp+0), | |
2780 | kern_pdptp+1, *(kern_pdptp+1), | |
2781 | kern_pdptp+2, *(kern_pdptp+2), | |
2782 | kern_pdptp+3, *(kern_pdptp+3), | |
2783 | kern_pdptp+4, *(kern_pdptp+4), | |
2784 | user_pdptp, kvtophys(user_pdptp), | |
2785 | user_pdptp+0, *(user_pdptp+0), | |
2786 | user_pdptp+1, *(user_pdptp+1), | |
2787 | user_pdptp+2, *(user_pdptp+2), | |
2788 | user_pdptp+3, *(user_pdptp+3), | |
2789 | user_pdptp+4, *(user_pdptp+4)); | |
2790 | kprintf("user pm_cr3=0x%016llx pm_hold=0x%08x pm_pml4=0x%08x\n", | |
2791 | p->pm_cr3, p->pm_hold, p->pm_pml4); | |
2792 | pml4p = (pdpt_entry_t *)p->pm_hold; | |
2793 | if (pml4p == NULL) | |
2794 | panic("user pml4p == NULL"); | |
2795 | kprintf("\t 0x%08x: 0x%016llx\n" | |
2796 | "\t 0x%08x: 0x%016llx\n", | |
2797 | pml4p+0, *(pml4p), | |
2798 | pml4p+KERNEL_UBER_PML4_INDEX, *(pml4p+KERNEL_UBER_PML4_INDEX)); | |
2799 | kprintf("kern pm_cr3=0x%016llx pm_hold=0x%08x pm_pml4=0x%08x\n", | |
2800 | kernel_pmap->pm_cr3, kernel_pmap->pm_hold, kernel_pmap->pm_pml4); | |
2801 | pml4p = (pdpt_entry_t *)kernel_pmap->pm_hold; | |
2802 | if (pml4p == NULL) | |
2803 | panic("kern pml4p == NULL"); | |
2804 | kprintf("\t 0x%08x: 0x%016llx\n" | |
2805 | "\t 0x%08x: 0x%016llx\n", | |
2806 | pml4p+0, *(pml4p), | |
2807 | pml4p+511, *(pml4p+511)); | |
2808 | splx(spl); | |
2809 | } | |
2810 | ||
2811 | void dump_4GB_pdpt_thread(thread_t tp) | |
2812 | { | |
2813 | dump_4GB_pdpt(tp->map->pmap); | |
2814 | } | |
2815 | ||
2816 | ||
2817 | #endif |