2 * Copyright (c) 1991 Regents of the University of California.
3 * Copyright (c) 1994 John S. Dyson
4 * Copyright (c) 1994 David Greenman
5 * Copyright (c) 2003 Peter Wemm
6 * Copyright (c) 2005-2008 Alan L. Cox <alc@cs.rice.edu>
7 * Copyright (c) 2008, 2009 The DragonFly Project.
8 * Copyright (c) 2008, 2009 Jordan Gordeev.
9 * Copyright (c) 2011-2012 Matthew Dillon
10 * All rights reserved.
12 * This code is derived from software contributed to Berkeley by
13 * the Systems Programming Group of the University of Utah Computer
14 * Science Department and William Jolitz of UUNET Technologies Inc.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 * 3. All advertising materials mentioning features or use of this software
25 * must display the following acknowledgement:
26 * This product includes software developed by the University of
27 * California, Berkeley and its contributors.
28 * 4. Neither the name of the University nor the names of its contributors
29 * may be used to endorse or promote products derived from this software
30 * without specific prior written permission.
32 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
45 * Manage physical address maps for x86-64 systems.
49 #include "opt_disable_pse.h"
52 #include "opt_msgbuf.h"
54 #include <sys/param.h>
55 #include <sys/systm.h>
56 #include <sys/kernel.h>
58 #include <sys/msgbuf.h>
59 #include <sys/vmmeter.h>
63 #include <vm/vm_param.h>
64 #include <sys/sysctl.h>
66 #include <vm/vm_kern.h>
67 #include <vm/vm_page.h>
68 #include <vm/vm_map.h>
69 #include <vm/vm_object.h>
70 #include <vm/vm_extern.h>
71 #include <vm/vm_pageout.h>
72 #include <vm/vm_pager.h>
73 #include <vm/vm_zone.h>
76 #include <sys/thread2.h>
77 #include <sys/sysref2.h>
78 #include <sys/spinlock2.h>
79 #include <vm/vm_page2.h>
81 #include <machine/cputypes.h>
82 #include <machine/md_var.h>
83 #include <machine/specialreg.h>
84 #include <machine/smp.h>
85 #include <machine_base/apic/apicreg.h>
86 #include <machine/globaldata.h>
87 #include <machine/pmap.h>
88 #include <machine/pmap_inval.h>
89 #include <machine/inttypes.h>
93 #define PMAP_KEEP_PDIRS
94 #ifndef PMAP_SHPGPERPROC
95 #define PMAP_SHPGPERPROC 2000
98 #if defined(DIAGNOSTIC)
99 #define PMAP_DIAGNOSTIC
105 * pmap debugging will report who owns a pv lock when blocking.
109 #define PMAP_DEBUG_DECL ,const char *func, int lineno
110 #define PMAP_DEBUG_ARGS , __func__, __LINE__
111 #define PMAP_DEBUG_COPY , func, lineno
113 #define pv_get(pmap, pindex) _pv_get(pmap, pindex \
115 #define pv_lock(pv) _pv_lock(pv \
117 #define pv_hold_try(pv) _pv_hold_try(pv \
119 #define pv_alloc(pmap, pindex, isnewp) _pv_alloc(pmap, pindex, isnewp \
124 #define PMAP_DEBUG_DECL
125 #define PMAP_DEBUG_ARGS
126 #define PMAP_DEBUG_COPY
128 #define pv_get(pmap, pindex) _pv_get(pmap, pindex)
129 #define pv_lock(pv) _pv_lock(pv)
130 #define pv_hold_try(pv) _pv_hold_try(pv)
131 #define pv_alloc(pmap, pindex, isnewp) _pv_alloc(pmap, pindex, isnewp)
136 * Get PDEs and PTEs for user/kernel address space
138 #define pdir_pde(m, v) (m[(vm_offset_t)(v) >> PDRSHIFT])
140 #define pmap_pde_v(pte) ((*(pd_entry_t *)pte & PG_V) != 0)
141 #define pmap_pte_w(pte) ((*(pt_entry_t *)pte & PG_W) != 0)
142 #define pmap_pte_m(pte) ((*(pt_entry_t *)pte & PG_M) != 0)
143 #define pmap_pte_u(pte) ((*(pt_entry_t *)pte & PG_A) != 0)
144 #define pmap_pte_v(pte) ((*(pt_entry_t *)pte & PG_V) != 0)
147 * Given a map and a machine independent protection code,
148 * convert to a vax protection code.
150 #define pte_prot(m, p) \
151 (protection_codes[p & (VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE)])
152 static int protection_codes[8];
154 struct pmap kernel_pmap;
155 static TAILQ_HEAD(,pmap) pmap_list = TAILQ_HEAD_INITIALIZER(pmap_list);
157 MALLOC_DEFINE(M_OBJPMAP, "objpmap", "pmaps associated with VM objects");
159 vm_paddr_t avail_start; /* PA of first available physical page */
160 vm_paddr_t avail_end; /* PA of last available physical page */
161 vm_offset_t virtual2_start; /* cutout free area prior to kernel start */
162 vm_offset_t virtual2_end;
163 vm_offset_t virtual_start; /* VA of first avail page (after kernel bss) */
164 vm_offset_t virtual_end; /* VA of last avail page (end of kernel AS) */
165 vm_offset_t KvaStart; /* VA start of KVA space */
166 vm_offset_t KvaEnd; /* VA end of KVA space (non-inclusive) */
167 vm_offset_t KvaSize; /* max size of kernel virtual address space */
168 static boolean_t pmap_initialized = FALSE; /* Has pmap_init completed? */
169 static int pgeflag; /* PG_G or-in */
170 static int pseflag; /* PG_PS or-in */
173 static vm_paddr_t dmaplimit;
175 vm_offset_t kernel_vm_end = VM_MIN_KERNEL_ADDRESS;
177 static uint64_t KPTbase;
178 static uint64_t KPTphys;
179 static uint64_t KPDphys; /* phys addr of kernel level 2 */
180 static uint64_t KPDbase; /* phys addr of kernel level 2 @ KERNBASE */
181 uint64_t KPDPphys; /* phys addr of kernel level 3 */
182 uint64_t KPML4phys; /* phys addr of kernel level 4 */
184 static uint64_t DMPDphys; /* phys addr of direct mapped level 2 */
185 static uint64_t DMPDPphys; /* phys addr of direct mapped level 3 */
188 * Data for the pv entry allocation mechanism
190 static vm_zone_t pvzone;
191 static struct vm_zone pvzone_store;
192 static struct vm_object pvzone_obj;
193 static int pv_entry_max=0, pv_entry_high_water=0;
194 static int pmap_pagedaemon_waken = 0;
195 static struct pv_entry *pvinit;
198 * All those kernel PT submaps that BSD is so fond of
200 pt_entry_t *CMAP1 = NULL, *ptmmap;
201 caddr_t CADDR1 = NULL, ptvmmap = NULL;
202 static pt_entry_t *msgbufmap;
203 struct msgbuf *msgbufp=NULL;
208 static pt_entry_t *pt_crashdumpmap;
209 static caddr_t crashdumpmap;
211 static int pmap_yield_count = 64;
212 SYSCTL_INT(_machdep, OID_AUTO, pmap_yield_count, CTLFLAG_RW,
213 &pmap_yield_count, 0, "Yield during init_pt/release");
214 static int pmap_mmu_optimize = 0;
215 SYSCTL_INT(_machdep, OID_AUTO, pmap_mmu_optimize, CTLFLAG_RW,
216 &pmap_mmu_optimize, 0, "Share page table pages when possible");
220 static void pv_hold(pv_entry_t pv);
221 static int _pv_hold_try(pv_entry_t pv
223 static void pv_drop(pv_entry_t pv);
224 static void _pv_lock(pv_entry_t pv
226 static void pv_unlock(pv_entry_t pv);
227 static pv_entry_t _pv_alloc(pmap_t pmap, vm_pindex_t pindex, int *isnew
229 static pv_entry_t _pv_get(pmap_t pmap, vm_pindex_t pindex
231 static pv_entry_t pv_get_try(pmap_t pmap, vm_pindex_t pindex, int *errorp);
232 static pv_entry_t pv_find(pmap_t pmap, vm_pindex_t pindex);
233 static void pv_put(pv_entry_t pv);
234 static void pv_free(pv_entry_t pv);
235 static void *pv_pte_lookup(pv_entry_t pv, vm_pindex_t pindex);
236 static pv_entry_t pmap_allocpte(pmap_t pmap, vm_pindex_t ptepindex,
238 static pv_entry_t pmap_allocpte_seg(pmap_t pmap, vm_pindex_t ptepindex,
239 pv_entry_t *pvpp, vm_map_entry_t entry, vm_offset_t va);
240 static void pmap_remove_pv_pte(pv_entry_t pv, pv_entry_t pvp,
241 struct pmap_inval_info *info);
242 static vm_page_t pmap_remove_pv_page(pv_entry_t pv);
243 static int pmap_release_pv(pv_entry_t pv, pv_entry_t pvp);
245 struct pmap_scan_info;
246 static void pmap_remove_callback(pmap_t pmap, struct pmap_scan_info *info,
247 pv_entry_t pte_pv, pv_entry_t pt_pv, int sharept,
248 vm_offset_t va, pt_entry_t *ptep, void *arg __unused);
249 static void pmap_protect_callback(pmap_t pmap, struct pmap_scan_info *info,
250 pv_entry_t pte_pv, pv_entry_t pt_pv, int sharept,
251 vm_offset_t va, pt_entry_t *ptep, void *arg __unused);
253 static void i386_protection_init (void);
254 static void create_pagetables(vm_paddr_t *firstaddr);
255 static void pmap_remove_all (vm_page_t m);
256 static boolean_t pmap_testbit (vm_page_t m, int bit);
258 static pt_entry_t * pmap_pte_quick (pmap_t pmap, vm_offset_t va);
259 static vm_offset_t pmap_kmem_choose(vm_offset_t addr);
261 static unsigned pdir4mb;
264 pv_entry_compare(pv_entry_t pv1, pv_entry_t pv2)
266 if (pv1->pv_pindex < pv2->pv_pindex)
268 if (pv1->pv_pindex > pv2->pv_pindex)
273 RB_GENERATE2(pv_entry_rb_tree, pv_entry, pv_entry,
274 pv_entry_compare, vm_pindex_t, pv_pindex);
277 * Move the kernel virtual free pointer to the next
278 * 2MB. This is used to help improve performance
279 * by using a large (2MB) page for much of the kernel
280 * (.text, .data, .bss)
284 pmap_kmem_choose(vm_offset_t addr)
286 vm_offset_t newaddr = addr;
288 newaddr = (addr + (NBPDR - 1)) & ~(NBPDR - 1);
295 * Super fast pmap_pte routine best used when scanning the pv lists.
296 * This eliminates many course-grained invltlb calls. Note that many of
297 * the pv list scans are across different pmaps and it is very wasteful
298 * to do an entire invltlb when checking a single mapping.
300 static __inline pt_entry_t *pmap_pte(pmap_t pmap, vm_offset_t va);
304 pmap_pte_quick(pmap_t pmap, vm_offset_t va)
306 return pmap_pte(pmap, va);
310 * Returns the pindex of a page table entry (representing a terminal page).
311 * There are NUPTE_TOTAL page table entries possible (a huge number)
313 * x86-64 has a 48-bit address space, where bit 47 is sign-extended out.
314 * We want to properly translate negative KVAs.
318 pmap_pte_pindex(vm_offset_t va)
320 return ((va >> PAGE_SHIFT) & (NUPTE_TOTAL - 1));
324 * Returns the pindex of a page table.
328 pmap_pt_pindex(vm_offset_t va)
330 return (NUPTE_TOTAL + ((va >> PDRSHIFT) & (NUPT_TOTAL - 1)));
334 * Returns the pindex of a page directory.
338 pmap_pd_pindex(vm_offset_t va)
340 return (NUPTE_TOTAL + NUPT_TOTAL +
341 ((va >> PDPSHIFT) & (NUPD_TOTAL - 1)));
346 pmap_pdp_pindex(vm_offset_t va)
348 return (NUPTE_TOTAL + NUPT_TOTAL + NUPD_TOTAL +
349 ((va >> PML4SHIFT) & (NUPDP_TOTAL - 1)));
354 pmap_pml4_pindex(void)
356 return (NUPTE_TOTAL + NUPT_TOTAL + NUPD_TOTAL + NUPDP_TOTAL);
360 * Return various clipped indexes for a given VA
362 * Returns the index of a pte in a page table, representing a terminal
367 pmap_pte_index(vm_offset_t va)
369 return ((va >> PAGE_SHIFT) & ((1ul << NPTEPGSHIFT) - 1));
373 * Returns the index of a pt in a page directory, representing a page
378 pmap_pt_index(vm_offset_t va)
380 return ((va >> PDRSHIFT) & ((1ul << NPDEPGSHIFT) - 1));
384 * Returns the index of a pd in a page directory page, representing a page
389 pmap_pd_index(vm_offset_t va)
391 return ((va >> PDPSHIFT) & ((1ul << NPDPEPGSHIFT) - 1));
395 * Returns the index of a pdp in the pml4 table, representing a page
400 pmap_pdp_index(vm_offset_t va)
402 return ((va >> PML4SHIFT) & ((1ul << NPML4EPGSHIFT) - 1));
406 * Generic procedure to index a pte from a pt, pd, or pdp.
408 * NOTE: Normally passed pindex as pmap_xx_index(). pmap_xx_pindex() is NOT
409 * a page table page index but is instead of PV lookup index.
413 pv_pte_lookup(pv_entry_t pv, vm_pindex_t pindex)
417 pte = (pt_entry_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(pv->pv_m));
418 return(&pte[pindex]);
422 * Return pointer to PDP slot in the PML4
426 pmap_pdp(pmap_t pmap, vm_offset_t va)
428 return (&pmap->pm_pml4[pmap_pdp_index(va)]);
432 * Return pointer to PD slot in the PDP given a pointer to the PDP
436 pmap_pdp_to_pd(pml4_entry_t pdp_pte, vm_offset_t va)
440 pd = (pdp_entry_t *)PHYS_TO_DMAP(pdp_pte & PG_FRAME);
441 return (&pd[pmap_pd_index(va)]);
445 * Return pointer to PD slot in the PDP.
449 pmap_pd(pmap_t pmap, vm_offset_t va)
453 pdp = pmap_pdp(pmap, va);
454 if ((*pdp & PG_V) == 0)
456 return (pmap_pdp_to_pd(*pdp, va));
460 * Return pointer to PT slot in the PD given a pointer to the PD
464 pmap_pd_to_pt(pdp_entry_t pd_pte, vm_offset_t va)
468 pt = (pd_entry_t *)PHYS_TO_DMAP(pd_pte & PG_FRAME);
469 return (&pt[pmap_pt_index(va)]);
473 * Return pointer to PT slot in the PD
475 * SIMPLE PMAP NOTE: Simple pmaps (embedded in objects) do not have PDPs,
476 * so we cannot lookup the PD via the PDP. Instead we
477 * must look it up via the pmap.
481 pmap_pt(pmap_t pmap, vm_offset_t va)
485 vm_pindex_t pd_pindex;
487 if (pmap->pm_flags & PMAP_FLAG_SIMPLE) {
488 pd_pindex = pmap_pd_pindex(va);
489 spin_lock(&pmap->pm_spin);
490 pv = pv_entry_rb_tree_RB_LOOKUP(&pmap->pm_pvroot, pd_pindex);
491 spin_unlock(&pmap->pm_spin);
492 if (pv == NULL || pv->pv_m == NULL)
494 return (pmap_pd_to_pt(VM_PAGE_TO_PHYS(pv->pv_m), va));
496 pd = pmap_pd(pmap, va);
497 if (pd == NULL || (*pd & PG_V) == 0)
499 return (pmap_pd_to_pt(*pd, va));
504 * Return pointer to PTE slot in the PT given a pointer to the PT
508 pmap_pt_to_pte(pd_entry_t pt_pte, vm_offset_t va)
512 pte = (pt_entry_t *)PHYS_TO_DMAP(pt_pte & PG_FRAME);
513 return (&pte[pmap_pte_index(va)]);
517 * Return pointer to PTE slot in the PT
521 pmap_pte(pmap_t pmap, vm_offset_t va)
525 pt = pmap_pt(pmap, va);
526 if (pt == NULL || (*pt & PG_V) == 0)
528 if ((*pt & PG_PS) != 0)
529 return ((pt_entry_t *)pt);
530 return (pmap_pt_to_pte(*pt, va));
534 * Of all the layers (PTE, PT, PD, PDP, PML4) the best one to cache is
535 * the PT layer. This will speed up core pmap operations considerably.
539 pv_cache(pv_entry_t pv, vm_pindex_t pindex)
541 if (pindex >= pmap_pt_pindex(0) && pindex <= pmap_pd_pindex(0))
542 pv->pv_pmap->pm_pvhint = pv;
547 * KVM - return address of PT slot in PD
551 vtopt(vm_offset_t va)
553 uint64_t mask = ((1ul << (NPDEPGSHIFT + NPDPEPGSHIFT +
554 NPML4EPGSHIFT)) - 1);
556 return (PDmap + ((va >> PDRSHIFT) & mask));
560 * KVM - return address of PTE slot in PT
564 vtopte(vm_offset_t va)
566 uint64_t mask = ((1ul << (NPTEPGSHIFT + NPDEPGSHIFT +
567 NPDPEPGSHIFT + NPML4EPGSHIFT)) - 1);
569 return (PTmap + ((va >> PAGE_SHIFT) & mask));
573 allocpages(vm_paddr_t *firstaddr, long n)
578 bzero((void *)ret, n * PAGE_SIZE);
579 *firstaddr += n * PAGE_SIZE;
585 create_pagetables(vm_paddr_t *firstaddr)
587 long i; /* must be 64 bits */
593 * We are running (mostly) V=P at this point
595 * Calculate NKPT - number of kernel page tables. We have to
596 * accomodoate prealloction of the vm_page_array, dump bitmap,
597 * MSGBUF_SIZE, and other stuff. Be generous.
599 * Maxmem is in pages.
601 * ndmpdp is the number of 1GB pages we wish to map.
603 ndmpdp = (ptoa(Maxmem) + NBPDP - 1) >> PDPSHIFT;
604 if (ndmpdp < 4) /* Minimum 4GB of dirmap */
606 KKASSERT(ndmpdp <= NKPDPE * NPDEPG);
609 * Starting at the beginning of kvm (not KERNBASE).
611 nkpt_phys = (Maxmem * sizeof(struct vm_page) + NBPDR - 1) / NBPDR;
612 nkpt_phys += (Maxmem * sizeof(struct pv_entry) + NBPDR - 1) / NBPDR;
613 nkpt_phys += ((nkpt + nkpt + 1 + NKPML4E + NKPDPE + NDMPML4E +
614 ndmpdp) + 511) / 512;
618 * Starting at KERNBASE - map 2G worth of page table pages.
619 * KERNBASE is offset -2G from the end of kvm.
621 nkpt_base = (NPDPEPG - KPDPI) * NPTEPG; /* typically 2 x 512 */
626 KPTbase = allocpages(firstaddr, nkpt_base);
627 KPTphys = allocpages(firstaddr, nkpt_phys);
628 KPML4phys = allocpages(firstaddr, 1);
629 KPDPphys = allocpages(firstaddr, NKPML4E);
630 KPDphys = allocpages(firstaddr, NKPDPE);
633 * Calculate the page directory base for KERNBASE,
634 * that is where we start populating the page table pages.
635 * Basically this is the end - 2.
637 KPDbase = KPDphys + ((NKPDPE - (NPDPEPG - KPDPI)) << PAGE_SHIFT);
639 DMPDPphys = allocpages(firstaddr, NDMPML4E);
640 if ((amd_feature & AMDID_PAGE1GB) == 0)
641 DMPDphys = allocpages(firstaddr, ndmpdp);
642 dmaplimit = (vm_paddr_t)ndmpdp << PDPSHIFT;
645 * Fill in the underlying page table pages for the area around
646 * KERNBASE. This remaps low physical memory to KERNBASE.
648 * Read-only from zero to physfree
649 * XXX not fully used, underneath 2M pages
651 for (i = 0; (i << PAGE_SHIFT) < *firstaddr; i++) {
652 ((pt_entry_t *)KPTbase)[i] = i << PAGE_SHIFT;
653 ((pt_entry_t *)KPTbase)[i] |= PG_RW | PG_V | PG_G;
657 * Now map the initial kernel page tables. One block of page
658 * tables is placed at the beginning of kernel virtual memory,
659 * and another block is placed at KERNBASE to map the kernel binary,
660 * data, bss, and initial pre-allocations.
662 for (i = 0; i < nkpt_base; i++) {
663 ((pd_entry_t *)KPDbase)[i] = KPTbase + (i << PAGE_SHIFT);
664 ((pd_entry_t *)KPDbase)[i] |= PG_RW | PG_V;
666 for (i = 0; i < nkpt_phys; i++) {
667 ((pd_entry_t *)KPDphys)[i] = KPTphys + (i << PAGE_SHIFT);
668 ((pd_entry_t *)KPDphys)[i] |= PG_RW | PG_V;
672 * Map from zero to end of allocations using 2M pages as an
673 * optimization. This will bypass some of the KPTBase pages
674 * above in the KERNBASE area.
676 for (i = 0; (i << PDRSHIFT) < *firstaddr; i++) {
677 ((pd_entry_t *)KPDbase)[i] = i << PDRSHIFT;
678 ((pd_entry_t *)KPDbase)[i] |= PG_RW | PG_V | PG_PS | PG_G;
682 * And connect up the PD to the PDP. The kernel pmap is expected
683 * to pre-populate all of its PDs. See NKPDPE in vmparam.h.
685 for (i = 0; i < NKPDPE; i++) {
686 ((pdp_entry_t *)KPDPphys)[NPDPEPG - NKPDPE + i] =
687 KPDphys + (i << PAGE_SHIFT);
688 ((pdp_entry_t *)KPDPphys)[NPDPEPG - NKPDPE + i] |=
693 * Now set up the direct map space using either 2MB or 1GB pages
694 * Preset PG_M and PG_A because demotion expects it.
696 * When filling in entries in the PD pages make sure any excess
697 * entries are set to zero as we allocated enough PD pages
699 if ((amd_feature & AMDID_PAGE1GB) == 0) {
700 for (i = 0; i < NPDEPG * ndmpdp; i++) {
701 ((pd_entry_t *)DMPDphys)[i] = i << PDRSHIFT;
702 ((pd_entry_t *)DMPDphys)[i] |= PG_RW | PG_V | PG_PS |
707 * And the direct map space's PDP
709 for (i = 0; i < ndmpdp; i++) {
710 ((pdp_entry_t *)DMPDPphys)[i] = DMPDphys +
712 ((pdp_entry_t *)DMPDPphys)[i] |= PG_RW | PG_V | PG_U;
715 for (i = 0; i < ndmpdp; i++) {
716 ((pdp_entry_t *)DMPDPphys)[i] =
717 (vm_paddr_t)i << PDPSHIFT;
718 ((pdp_entry_t *)DMPDPphys)[i] |= PG_RW | PG_V | PG_PS |
723 /* And recursively map PML4 to itself in order to get PTmap */
724 ((pdp_entry_t *)KPML4phys)[PML4PML4I] = KPML4phys;
725 ((pdp_entry_t *)KPML4phys)[PML4PML4I] |= PG_RW | PG_V | PG_U;
728 * Connect the Direct Map slots up to the PML4
730 for (j = 0; j < NDMPML4E; ++j) {
731 ((pdp_entry_t *)KPML4phys)[DMPML4I + j] =
732 (DMPDPphys + ((vm_paddr_t)j << PML4SHIFT)) |
737 * Connect the KVA slot up to the PML4
739 ((pdp_entry_t *)KPML4phys)[KPML4I] = KPDPphys;
740 ((pdp_entry_t *)KPML4phys)[KPML4I] |= PG_RW | PG_V | PG_U;
744 * Bootstrap the system enough to run with virtual memory.
746 * On the i386 this is called after mapping has already been enabled
747 * and just syncs the pmap module with what has already been done.
748 * [We can't call it easily with mapping off since the kernel is not
749 * mapped with PA == VA, hence we would have to relocate every address
750 * from the linked base (virtual) address "KERNBASE" to the actual
751 * (physical) address starting relative to 0]
754 pmap_bootstrap(vm_paddr_t *firstaddr)
758 struct mdglobaldata *gd;
761 KvaStart = VM_MIN_KERNEL_ADDRESS;
762 KvaEnd = VM_MAX_KERNEL_ADDRESS;
763 KvaSize = KvaEnd - KvaStart;
765 avail_start = *firstaddr;
768 * Create an initial set of page tables to run the kernel in.
770 create_pagetables(firstaddr);
772 virtual2_start = KvaStart;
773 virtual2_end = PTOV_OFFSET;
775 virtual_start = (vm_offset_t) PTOV_OFFSET + *firstaddr;
776 virtual_start = pmap_kmem_choose(virtual_start);
778 virtual_end = VM_MAX_KERNEL_ADDRESS;
780 /* XXX do %cr0 as well */
781 load_cr4(rcr4() | CR4_PGE | CR4_PSE);
785 * Initialize protection array.
787 i386_protection_init();
790 * The kernel's pmap is statically allocated so we don't have to use
791 * pmap_create, which is unlikely to work correctly at this part of
792 * the boot sequence (XXX and which no longer exists).
794 kernel_pmap.pm_pml4 = (pdp_entry_t *) (PTOV_OFFSET + KPML4phys);
795 kernel_pmap.pm_count = 1;
796 kernel_pmap.pm_active = (cpumask_t)-1 & ~CPUMASK_LOCK;
797 RB_INIT(&kernel_pmap.pm_pvroot);
798 spin_init(&kernel_pmap.pm_spin);
799 lwkt_token_init(&kernel_pmap.pm_token, "kpmap_tok");
802 * Reserve some special page table entries/VA space for temporary
805 #define SYSMAP(c, p, v, n) \
806 v = (c)va; va += ((n)*PAGE_SIZE); p = pte; pte += (n);
812 * CMAP1/CMAP2 are used for zeroing and copying pages.
814 SYSMAP(caddr_t, CMAP1, CADDR1, 1)
819 SYSMAP(caddr_t, pt_crashdumpmap, crashdumpmap, MAXDUMPPGS);
822 * ptvmmap is used for reading arbitrary physical pages via
825 SYSMAP(caddr_t, ptmmap, ptvmmap, 1)
828 * msgbufp is used to map the system message buffer.
829 * XXX msgbufmap is not used.
831 SYSMAP(struct msgbuf *, msgbufmap, msgbufp,
832 atop(round_page(MSGBUF_SIZE)))
839 * PG_G is terribly broken on SMP because we IPI invltlb's in some
840 * cases rather then invl1pg. Actually, I don't even know why it
841 * works under UP because self-referential page table mappings
846 if (cpu_feature & CPUID_PGE)
851 * Initialize the 4MB page size flag
855 * The 4MB page version of the initial
856 * kernel page mapping.
860 #if !defined(DISABLE_PSE)
861 if (cpu_feature & CPUID_PSE) {
864 * Note that we have enabled PSE mode
867 ptditmp = *(PTmap + x86_64_btop(KERNBASE));
868 ptditmp &= ~(NBPDR - 1);
869 ptditmp |= PG_V | PG_RW | PG_PS | PG_U | pgeflag;
874 * Enable the PSE mode. If we are SMP we can't do this
875 * now because the APs will not be able to use it when
878 load_cr4(rcr4() | CR4_PSE);
881 * We can do the mapping here for the single processor
882 * case. We simply ignore the old page table page from
886 * For SMP, we still need 4K pages to bootstrap APs,
887 * PSE will be enabled as soon as all APs are up.
889 PTD[KPTDI] = (pd_entry_t)ptditmp;
896 * We need to finish setting up the globaldata page for the BSP.
897 * locore has already populated the page table for the mdglobaldata
900 pg = MDGLOBALDATA_BASEALLOC_PAGES;
901 gd = &CPU_prvspace[0].mdglobaldata;
908 * Set 4mb pdir for mp startup
913 if (pseflag && (cpu_feature & CPUID_PSE)) {
914 load_cr4(rcr4() | CR4_PSE);
915 if (pdir4mb && mycpu->gd_cpuid == 0) { /* only on BSP */
923 * Initialize the pmap module.
924 * Called by vm_init, to initialize any structures that the pmap
925 * system needs to map virtual memory.
926 * pmap_init has been enhanced to support in a fairly consistant
927 * way, discontiguous physical memory.
936 * Allocate memory for random pmap data structures. Includes the
940 for (i = 0; i < vm_page_array_size; i++) {
943 m = &vm_page_array[i];
944 TAILQ_INIT(&m->md.pv_list);
948 * init the pv free list
950 initial_pvs = vm_page_array_size;
951 if (initial_pvs < MINPV)
953 pvzone = &pvzone_store;
954 pvinit = (void *)kmem_alloc(&kernel_map,
955 initial_pvs * sizeof (struct pv_entry));
956 zbootinit(pvzone, "PV ENTRY", sizeof (struct pv_entry),
957 pvinit, initial_pvs);
960 * Now it is safe to enable pv_table recording.
962 pmap_initialized = TRUE;
966 * Initialize the address space (zone) for the pv_entries. Set a
967 * high water mark so that the system can recover from excessive
968 * numbers of pv entries.
973 int shpgperproc = PMAP_SHPGPERPROC;
976 TUNABLE_INT_FETCH("vm.pmap.shpgperproc", &shpgperproc);
977 pv_entry_max = shpgperproc * maxproc + vm_page_array_size;
978 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max);
979 pv_entry_high_water = 9 * (pv_entry_max / 10);
982 * Subtract out pages already installed in the zone (hack)
984 entry_max = pv_entry_max - vm_page_array_size;
988 zinitna(pvzone, &pvzone_obj, NULL, 0, entry_max, ZONE_INTERRUPT, 1);
992 /***************************************************
993 * Low level helper routines.....
994 ***************************************************/
997 * this routine defines the region(s) of memory that should
998 * not be tested for the modified bit.
1002 pmap_track_modified(vm_pindex_t pindex)
1004 vm_offset_t va = (vm_offset_t)pindex << PAGE_SHIFT;
1005 if ((va < clean_sva) || (va >= clean_eva))
1012 * Extract the physical page address associated with the map/VA pair.
1013 * The page must be wired for this to work reliably.
1015 * XXX for the moment we're using pv_find() instead of pv_get(), as
1016 * callers might be expecting non-blocking operation.
1019 pmap_extract(pmap_t pmap, vm_offset_t va)
1026 if (va >= VM_MAX_USER_ADDRESS) {
1028 * Kernel page directories might be direct-mapped and
1029 * there is typically no PV tracking of pte's
1033 pt = pmap_pt(pmap, va);
1034 if (pt && (*pt & PG_V)) {
1036 rtval = *pt & PG_PS_FRAME;
1037 rtval |= va & PDRMASK;
1039 ptep = pmap_pt_to_pte(*pt, va);
1041 rtval = *ptep & PG_FRAME;
1042 rtval |= va & PAGE_MASK;
1048 * User pages currently do not direct-map the page directory
1049 * and some pages might not used managed PVs. But all PT's
1052 pt_pv = pv_find(pmap, pmap_pt_pindex(va));
1054 ptep = pv_pte_lookup(pt_pv, pmap_pte_index(va));
1056 rtval = *ptep & PG_FRAME;
1057 rtval |= va & PAGE_MASK;
1066 * Extract the physical page address associated kernel virtual address.
1069 pmap_kextract(vm_offset_t va)
1071 pd_entry_t pt; /* pt entry in pd */
1074 if (va >= DMAP_MIN_ADDRESS && va < DMAP_MAX_ADDRESS) {
1075 pa = DMAP_TO_PHYS(va);
1079 pa = (pt & PG_PS_FRAME) | (va & PDRMASK);
1082 * Beware of a concurrent promotion that changes the
1083 * PDE at this point! For example, vtopte() must not
1084 * be used to access the PTE because it would use the
1085 * new PDE. It is, however, safe to use the old PDE
1086 * because the page table page is preserved by the
1089 pa = *pmap_pt_to_pte(pt, va);
1090 pa = (pa & PG_FRAME) | (va & PAGE_MASK);
1096 /***************************************************
1097 * Low level mapping routines.....
1098 ***************************************************/
1101 * Routine: pmap_kenter
1103 * Add a wired page to the KVA
1104 * NOTE! note that in order for the mapping to take effect -- you
1105 * should do an invltlb after doing the pmap_kenter().
1108 pmap_kenter(vm_offset_t va, vm_paddr_t pa)
1112 pmap_inval_info info;
1114 pmap_inval_init(&info); /* XXX remove */
1115 npte = pa | PG_RW | PG_V | pgeflag;
1117 pmap_inval_interlock(&info, &kernel_pmap, va); /* XXX remove */
1119 pmap_inval_deinterlock(&info, &kernel_pmap); /* XXX remove */
1120 pmap_inval_done(&info); /* XXX remove */
1124 * Routine: pmap_kenter_quick
1126 * Similar to pmap_kenter(), except we only invalidate the
1127 * mapping on the current CPU.
1130 pmap_kenter_quick(vm_offset_t va, vm_paddr_t pa)
1135 npte = pa | PG_RW | PG_V | pgeflag;
1138 cpu_invlpg((void *)va);
1142 pmap_kenter_sync(vm_offset_t va)
1144 pmap_inval_info info;
1146 pmap_inval_init(&info);
1147 pmap_inval_interlock(&info, &kernel_pmap, va);
1148 pmap_inval_deinterlock(&info, &kernel_pmap);
1149 pmap_inval_done(&info);
1153 pmap_kenter_sync_quick(vm_offset_t va)
1155 cpu_invlpg((void *)va);
1159 * remove a page from the kernel pagetables
1162 pmap_kremove(vm_offset_t va)
1165 pmap_inval_info info;
1167 pmap_inval_init(&info);
1169 pmap_inval_interlock(&info, &kernel_pmap, va);
1170 (void)pte_load_clear(pte);
1171 pmap_inval_deinterlock(&info, &kernel_pmap);
1172 pmap_inval_done(&info);
1176 pmap_kremove_quick(vm_offset_t va)
1180 (void)pte_load_clear(pte);
1181 cpu_invlpg((void *)va);
1185 * XXX these need to be recoded. They are not used in any critical path.
1188 pmap_kmodify_rw(vm_offset_t va)
1190 atomic_set_long(vtopte(va), PG_RW);
1191 cpu_invlpg((void *)va);
1195 pmap_kmodify_nc(vm_offset_t va)
1197 atomic_set_long(vtopte(va), PG_N);
1198 cpu_invlpg((void *)va);
1202 * Used to map a range of physical addresses into kernel virtual
1203 * address space during the low level boot, typically to map the
1204 * dump bitmap, message buffer, and vm_page_array.
1206 * These mappings are typically made at some pointer after the end of the
1209 * We could return PHYS_TO_DMAP(start) here and not allocate any
1210 * via (*virtp), but then kmem from userland and kernel dumps won't
1211 * have access to the related pointers.
1214 pmap_map(vm_offset_t *virtp, vm_paddr_t start, vm_paddr_t end, int prot)
1217 vm_offset_t va_start;
1219 /*return PHYS_TO_DMAP(start);*/
1224 while (start < end) {
1225 pmap_kenter_quick(va, start);
1235 * Add a list of wired pages to the kva
1236 * this routine is only used for temporary
1237 * kernel mappings that do not need to have
1238 * page modification or references recorded.
1239 * Note that old mappings are simply written
1240 * over. The page *must* be wired.
1243 pmap_qenter(vm_offset_t va, vm_page_t *m, int count)
1247 end_va = va + count * PAGE_SIZE;
1249 while (va < end_va) {
1253 *pte = VM_PAGE_TO_PHYS(*m) | PG_RW | PG_V | pgeflag;
1254 cpu_invlpg((void *)va);
1262 * This routine jerks page mappings from the
1263 * kernel -- it is meant only for temporary mappings.
1265 * MPSAFE, INTERRUPT SAFE (cluster callback)
1268 pmap_qremove(vm_offset_t va, int count)
1272 end_va = va + count * PAGE_SIZE;
1274 while (va < end_va) {
1278 (void)pte_load_clear(pte);
1279 cpu_invlpg((void *)va);
1286 * Create a new thread and optionally associate it with a (new) process.
1287 * NOTE! the new thread's cpu may not equal the current cpu.
1290 pmap_init_thread(thread_t td)
1292 /* enforce pcb placement & alignment */
1293 td->td_pcb = (struct pcb *)(td->td_kstack + td->td_kstack_size) - 1;
1294 td->td_pcb = (struct pcb *)((intptr_t)td->td_pcb & ~(intptr_t)0xF);
1295 td->td_savefpu = &td->td_pcb->pcb_save;
1296 td->td_sp = (char *)td->td_pcb; /* no -16 */
1300 * This routine directly affects the fork perf for a process.
1303 pmap_init_proc(struct proc *p)
1308 * Initialize pmap0/vmspace0. This pmap is not added to pmap_list because
1309 * it, and IdlePTD, represents the template used to update all other pmaps.
1311 * On architectures where the kernel pmap is not integrated into the user
1312 * process pmap, this pmap represents the process pmap, not the kernel pmap.
1313 * kernel_pmap should be used to directly access the kernel_pmap.
1316 pmap_pinit0(struct pmap *pmap)
1318 pmap->pm_pml4 = (pml4_entry_t *)(PTOV_OFFSET + KPML4phys);
1320 pmap->pm_active = 0;
1321 pmap->pm_pvhint = NULL;
1322 RB_INIT(&pmap->pm_pvroot);
1323 spin_init(&pmap->pm_spin);
1324 lwkt_token_init(&pmap->pm_token, "pmap_tok");
1325 bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1329 * Initialize a preallocated and zeroed pmap structure,
1330 * such as one in a vmspace structure.
1333 pmap_pinit_simple(struct pmap *pmap)
1336 * Misc initialization
1339 pmap->pm_active = 0;
1340 pmap->pm_pvhint = NULL;
1341 pmap->pm_flags = PMAP_FLAG_SIMPLE;
1344 * Don't blow up locks/tokens on re-use (XXX fix/use drop code
1347 if (pmap->pm_pmlpv == NULL) {
1348 RB_INIT(&pmap->pm_pvroot);
1349 bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1350 spin_init(&pmap->pm_spin);
1351 lwkt_token_init(&pmap->pm_token, "pmap_tok");
1356 pmap_pinit(struct pmap *pmap)
1361 pmap_pinit_simple(pmap);
1362 pmap->pm_flags &= ~PMAP_FLAG_SIMPLE;
1365 * No need to allocate page table space yet but we do need a valid
1366 * page directory table.
1368 if (pmap->pm_pml4 == NULL) {
1370 (pml4_entry_t *)kmem_alloc_pageable(&kernel_map, PAGE_SIZE);
1374 * Allocate the page directory page, which wires it even though
1375 * it isn't being entered into some higher level page table (it
1376 * being the highest level). If one is already cached we don't
1377 * have to do anything.
1379 if ((pv = pmap->pm_pmlpv) == NULL) {
1380 pv = pmap_allocpte(pmap, pmap_pml4_pindex(), NULL);
1381 pmap->pm_pmlpv = pv;
1382 pmap_kenter((vm_offset_t)pmap->pm_pml4,
1383 VM_PAGE_TO_PHYS(pv->pv_m));
1387 * Install DMAP and KMAP.
1389 for (j = 0; j < NDMPML4E; ++j) {
1390 pmap->pm_pml4[DMPML4I + j] =
1391 (DMPDPphys + ((vm_paddr_t)j << PML4SHIFT)) |
1392 PG_RW | PG_V | PG_U;
1394 pmap->pm_pml4[KPML4I] = KPDPphys | PG_RW | PG_V | PG_U;
1397 * install self-referential address mapping entry
1399 pmap->pm_pml4[PML4PML4I] = VM_PAGE_TO_PHYS(pv->pv_m) |
1400 PG_V | PG_RW | PG_A | PG_M;
1402 KKASSERT(pv->pv_m->flags & PG_MAPPED);
1403 KKASSERT(pv->pv_m->flags & PG_WRITEABLE);
1405 KKASSERT(pmap->pm_pml4[255] == 0);
1406 KKASSERT(RB_ROOT(&pmap->pm_pvroot) == pv);
1407 KKASSERT(pv->pv_entry.rbe_left == NULL);
1408 KKASSERT(pv->pv_entry.rbe_right == NULL);
1412 * Clean up a pmap structure so it can be physically freed. This routine
1413 * is called by the vmspace dtor function. A great deal of pmap data is
1414 * left passively mapped to improve vmspace management so we have a bit
1415 * of cleanup work to do here.
1418 pmap_puninit(pmap_t pmap)
1423 KKASSERT(pmap->pm_active == 0);
1424 if ((pv = pmap->pm_pmlpv) != NULL) {
1425 if (pv_hold_try(pv) == 0)
1427 p = pmap_remove_pv_page(pv);
1429 pmap_kremove((vm_offset_t)pmap->pm_pml4);
1430 vm_page_busy_wait(p, FALSE, "pgpun");
1431 KKASSERT(p->flags & (PG_FICTITIOUS|PG_UNMANAGED));
1432 vm_page_unwire(p, 0);
1433 vm_page_flag_clear(p, PG_MAPPED | PG_WRITEABLE);
1436 * XXX eventually clean out PML4 static entries and
1437 * use vm_page_free_zero()
1440 pmap->pm_pmlpv = NULL;
1442 if (pmap->pm_pml4) {
1443 KKASSERT(pmap->pm_pml4 != (void *)(PTOV_OFFSET + KPML4phys));
1444 kmem_free(&kernel_map, (vm_offset_t)pmap->pm_pml4, PAGE_SIZE);
1445 pmap->pm_pml4 = NULL;
1447 KKASSERT(pmap->pm_stats.resident_count == 0);
1448 KKASSERT(pmap->pm_stats.wired_count == 0);
1452 * Wire in kernel global address entries. To avoid a race condition
1453 * between pmap initialization and pmap_growkernel, this procedure
1454 * adds the pmap to the master list (which growkernel scans to update),
1455 * then copies the template.
1458 pmap_pinit2(struct pmap *pmap)
1460 spin_lock(&pmap_spin);
1461 TAILQ_INSERT_TAIL(&pmap_list, pmap, pm_pmnode);
1462 spin_unlock(&pmap_spin);
1466 * This routine is called when various levels in the page table need to
1467 * be populated. This routine cannot fail.
1469 * This function returns two locked pv_entry's, one representing the
1470 * requested pv and one representing the requested pv's parent pv. If
1471 * the pv did not previously exist it will be mapped into its parent
1472 * and wired, otherwise no additional wire count will be added.
1476 pmap_allocpte(pmap_t pmap, vm_pindex_t ptepindex, pv_entry_t *pvpp)
1481 vm_pindex_t pt_pindex;
1487 * If the pv already exists and we aren't being asked for the
1488 * parent page table page we can just return it. A locked+held pv
1492 pv = pv_alloc(pmap, ptepindex, &isnew);
1493 if (isnew == 0 && pvpp == NULL)
1497 * This is a new PV, we have to resolve its parent page table and
1498 * add an additional wiring to the page if necessary.
1502 * Special case terminal PVs. These are not page table pages so
1503 * no vm_page is allocated (the caller supplied the vm_page). If
1504 * pvpp is non-NULL we are being asked to also removed the pt_pv
1507 * Note that pt_pv's are only returned for user VAs. We assert that
1508 * a pt_pv is not being requested for kernel VAs.
1510 if (ptepindex < pmap_pt_pindex(0)) {
1511 if (ptepindex >= NUPTE_USER)
1512 KKASSERT(pvpp == NULL);
1514 KKASSERT(pvpp != NULL);
1516 pt_pindex = NUPTE_TOTAL + (ptepindex >> NPTEPGSHIFT);
1517 pvp = pmap_allocpte(pmap, pt_pindex, NULL);
1519 vm_page_wire_quick(pvp->pv_m);
1528 * Non-terminal PVs allocate a VM page to represent the page table,
1529 * so we have to resolve pvp and calculate ptepindex for the pvp
1530 * and then for the page table entry index in the pvp for
1533 if (ptepindex < pmap_pd_pindex(0)) {
1535 * pv is PT, pvp is PD
1537 ptepindex = (ptepindex - pmap_pt_pindex(0)) >> NPDEPGSHIFT;
1538 ptepindex += NUPTE_TOTAL + NUPT_TOTAL;
1539 pvp = pmap_allocpte(pmap, ptepindex, NULL);
1546 ptepindex = pv->pv_pindex - pmap_pt_pindex(0);
1547 ptepindex &= ((1ul << NPDEPGSHIFT) - 1);
1549 } else if (ptepindex < pmap_pdp_pindex(0)) {
1551 * pv is PD, pvp is PDP
1553 * SIMPLE PMAP NOTE: Simple pmaps do not allocate above
1556 ptepindex = (ptepindex - pmap_pd_pindex(0)) >> NPDPEPGSHIFT;
1557 ptepindex += NUPTE_TOTAL + NUPT_TOTAL + NUPD_TOTAL;
1559 if (pmap->pm_flags & PMAP_FLAG_SIMPLE) {
1560 KKASSERT(pvpp == NULL);
1563 pvp = pmap_allocpte(pmap, ptepindex, NULL);
1571 ptepindex = pv->pv_pindex - pmap_pd_pindex(0);
1572 ptepindex &= ((1ul << NPDPEPGSHIFT) - 1);
1573 } else if (ptepindex < pmap_pml4_pindex()) {
1575 * pv is PDP, pvp is the root pml4 table
1577 pvp = pmap_allocpte(pmap, pmap_pml4_pindex(), NULL);
1584 ptepindex = pv->pv_pindex - pmap_pdp_pindex(0);
1585 ptepindex &= ((1ul << NPML4EPGSHIFT) - 1);
1588 * pv represents the top-level PML4, there is no parent.
1596 * This code is only reached if isnew is TRUE and this is not a
1597 * terminal PV. We need to allocate a vm_page for the page table
1598 * at this level and enter it into the parent page table.
1600 * page table pages are marked PG_WRITEABLE and PG_MAPPED.
1603 m = vm_page_alloc(NULL, pv->pv_pindex,
1604 VM_ALLOC_NORMAL | VM_ALLOC_SYSTEM |
1605 VM_ALLOC_INTERRUPT);
1610 vm_page_spin_lock(m);
1611 TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list);
1613 vm_page_flag_set(m, PG_MAPPED | PG_WRITEABLE);
1614 vm_page_spin_unlock(m);
1615 vm_page_unmanage(m); /* m must be spinunlocked */
1617 if ((m->flags & PG_ZERO) == 0) {
1618 pmap_zero_page(VM_PAGE_TO_PHYS(m));
1622 pmap_page_assertzero(VM_PAGE_TO_PHYS(m));
1625 m->valid = VM_PAGE_BITS_ALL;
1626 vm_page_flag_clear(m, PG_ZERO);
1627 vm_page_wire(m); /* wire for mapping in parent */
1630 * Wire the page into pvp, bump the wire-count for pvp's page table
1631 * page. Bump the resident_count for the pmap. There is no pvp
1632 * for the top level, address the pm_pml4[] array directly.
1634 * If the caller wants the parent we return it, otherwise
1635 * we just put it away.
1637 * No interlock is needed for pte 0 -> non-zero.
1639 * In the situation where *ptep is valid we might have an unmanaged
1640 * page table page shared from another page table which we need to
1641 * unshare before installing our private page table page.
1644 ptep = pv_pte_lookup(pvp, ptepindex);
1647 pmap_inval_info info;
1649 kprintf("pmap_allocpte: restate shared pg table pg\n");
1652 panic("pmap_allocpte: unexpected pte %p/%d",
1653 pvp, (int)ptepindex);
1655 pmap_inval_init(&info);
1656 pmap_inval_interlock(&info, pmap, (vm_offset_t)-1);
1657 pte = pte_load_clear(ptep);
1658 pmap_inval_deinterlock(&info, pmap);
1659 pmap_inval_done(&info);
1660 if (vm_page_unwire_quick(PHYS_TO_VM_PAGE(pte & PG_FRAME)))
1661 panic("pmap_allocpte: shared pgtable pg bad wirecount");
1663 vm_page_wire_quick(pvp->pv_m);
1665 *ptep = VM_PAGE_TO_PHYS(m) | (PG_U | PG_RW | PG_V |
1678 * This version of pmap_allocpte() checks for possible segment optimizations
1679 * that would allow page-table sharing. It can be called for terminal
1680 * page or page table page ptepindex's.
1682 * The function is called with page table page ptepindex's for fictitious
1683 * and unmanaged terminal pages. That is, we don't want to allocate a
1684 * terminal pv, we just want the pt_pv. pvpp is usually passed as NULL
1687 * This function can return a pv and *pvpp associated with the passed in pmap
1688 * OR a pv and *pvpp associated with the shared pmap. In the latter case
1689 * an unmanaged page table page will be entered into the pass in pmap.
1693 pmap_allocpte_seg(pmap_t pmap, vm_pindex_t ptepindex, pv_entry_t *pvpp,
1694 vm_map_entry_t entry, vm_offset_t va)
1696 struct pmap_inval_info info;
1701 pv_entry_t pte_pv; /* in original or shared pmap */
1702 pv_entry_t pt_pv; /* in original or shared pmap */
1703 pv_entry_t proc_pd_pv; /* in original pmap */
1704 pv_entry_t proc_pt_pv; /* in original pmap */
1705 pv_entry_t xpv; /* PT in shared pmap */
1706 pd_entry_t *pt; /* PT entry in PD of original pmap */
1707 pd_entry_t opte; /* contents of *pt */
1708 pd_entry_t npte; /* contents of *pt */
1712 * Basic tests, require a non-NULL vm_map_entry, require proper
1713 * alignment and type for the vm_map_entry, require that the
1714 * underlying object already be allocated.
1716 * We currently allow any type of object to use this optimization.
1717 * The object itself does NOT have to be sized to a multiple of the
1718 * segment size, but the memory mapping does.
1720 if (entry == NULL ||
1721 pmap_mmu_optimize == 0 || /* not enabled */
1722 ptepindex >= pmap_pd_pindex(0) || /* not terminal */
1723 entry->inheritance != VM_INHERIT_SHARE || /* not shared */
1724 entry->maptype != VM_MAPTYPE_NORMAL || /* weird map type */
1725 entry->object.vm_object == NULL || /* needs VM object */
1726 (entry->offset & SEG_MASK) || /* must be aligned */
1727 (entry->start & SEG_MASK)) {
1728 return(pmap_allocpte(pmap, ptepindex, pvpp));
1732 * Make sure the full segment can be represented.
1734 b = va & ~(vm_offset_t)SEG_MASK;
1735 if (b < entry->start && b + SEG_SIZE > entry->end)
1736 return(pmap_allocpte(pmap, ptepindex, pvpp));
1739 * If the full segment can be represented dive the VM object's
1740 * shared pmap, allocating as required.
1742 object = entry->object.vm_object;
1744 if (entry->protection & VM_PROT_WRITE)
1745 obpmapp = &object->md.pmap_rw;
1747 obpmapp = &object->md.pmap_ro;
1750 * We allocate what appears to be a normal pmap but because portions
1751 * of this pmap are shared with other unrelated pmaps we have to
1752 * set pm_active to point to all cpus.
1754 * XXX Currently using pmap_spin to interlock the update, can't use
1755 * vm_object_hold/drop because the token might already be held
1756 * shared OR exclusive and we don't know.
1758 while ((obpmap = *obpmapp) == NULL) {
1759 obpmap = kmalloc(sizeof(*obpmap), M_OBJPMAP, M_WAITOK|M_ZERO);
1760 pmap_pinit_simple(obpmap);
1761 pmap_pinit2(obpmap);
1762 spin_lock(&pmap_spin);
1763 if (*obpmapp != NULL) {
1767 spin_unlock(&pmap_spin);
1768 pmap_release(obpmap);
1769 pmap_puninit(obpmap);
1770 kfree(obpmap, M_OBJPMAP);
1772 obpmap->pm_active = smp_active_mask;
1774 spin_unlock(&pmap_spin);
1779 * Layering is: PTE, PT, PD, PDP, PML4. We have to return the
1780 * pte/pt using the shared pmap from the object but also adjust
1781 * the process pmap's page table page as a side effect.
1785 * Resolve the terminal PTE and PT in the shared pmap. This is what
1786 * we will return. This is true if ptepindex represents a terminal
1787 * page, otherwise pte_pv is actually the PT and pt_pv is actually
1791 pte_pv = pmap_allocpte(obpmap, ptepindex, &pt_pv);
1792 if (ptepindex >= pmap_pt_pindex(0))
1798 * Resolve the PD in the process pmap so we can properly share the
1799 * page table page. Lock order is bottom-up (leaf first)!
1801 * NOTE: proc_pt_pv can be NULL.
1803 proc_pt_pv = pv_get(pmap, pmap_pt_pindex(b));
1804 proc_pd_pv = pmap_allocpte(pmap, pmap_pd_pindex(b), NULL);
1807 * xpv is the page table page pv from the shared object
1808 * (for convenience).
1810 * Calculate the pte value for the PT to load into the process PD.
1811 * If we have to change it we must properly dispose of the previous
1814 pt = pv_pte_lookup(proc_pd_pv, pmap_pt_index(b));
1815 npte = VM_PAGE_TO_PHYS(xpv->pv_m) |
1816 (PG_U | PG_RW | PG_V | PG_A | PG_M);
1819 * Dispose of previous entry if it was local to the process pmap.
1820 * (This should zero-out *pt)
1823 pmap_release_pv(proc_pt_pv, proc_pd_pv);
1826 pt = pv_pte_lookup(proc_pd_pv, pmap_pt_index(b));
1830 * Handle remaining cases.
1834 vm_page_wire_quick(xpv->pv_m);
1835 vm_page_wire_quick(proc_pd_pv->pv_m);
1836 atomic_add_long(&pmap->pm_stats.resident_count, 1);
1837 } else if (*pt != npte) {
1838 pmap_inval_init(&info);
1839 pmap_inval_interlock(&info, pmap, (vm_offset_t)-1);
1841 opte = pte_load_clear(pt);
1842 KKASSERT(opte && opte != npte);
1845 vm_page_wire_quick(xpv->pv_m); /* pgtable pg that is npte */
1848 * Clean up opte, bump the wire_count for the process
1849 * PD page representing the new entry if it was
1852 * If the entry was not previously empty and we have
1853 * a PT in the proc pmap then opte must match that
1854 * pt. The proc pt must be retired (this is done
1855 * later on in this procedure).
1857 * NOTE: replacing valid pte, wire_count on proc_pd_pv
1860 KKASSERT(opte & PG_V);
1861 m = PHYS_TO_VM_PAGE(opte & PG_FRAME);
1862 if (vm_page_unwire_quick(m)) {
1863 panic("pmap_allocpte_seg: "
1864 "bad wire count %p",
1868 pmap_inval_deinterlock(&info, pmap);
1869 pmap_inval_done(&info);
1873 * The existing process page table was replaced and must be destroyed
1887 * Release any resources held by the given physical map.
1889 * Called when a pmap initialized by pmap_pinit is being released. Should
1890 * only be called if the map contains no valid mappings.
1892 * Caller must hold pmap->pm_token
1894 struct pmap_release_info {
1899 static int pmap_release_callback(pv_entry_t pv, void *data);
1902 pmap_release(struct pmap *pmap)
1904 struct pmap_release_info info;
1906 KASSERT(pmap->pm_active == 0,
1907 ("pmap still active! %016jx", (uintmax_t)pmap->pm_active));
1909 spin_lock(&pmap_spin);
1910 TAILQ_REMOVE(&pmap_list, pmap, pm_pmnode);
1911 spin_unlock(&pmap_spin);
1914 * Pull pv's off the RB tree in order from low to high and release
1920 spin_lock(&pmap->pm_spin);
1921 RB_SCAN(pv_entry_rb_tree, &pmap->pm_pvroot, NULL,
1922 pmap_release_callback, &info);
1923 spin_unlock(&pmap->pm_spin);
1924 } while (info.retry);
1928 * One resident page (the pml4 page) should remain.
1929 * No wired pages should remain.
1931 KKASSERT(pmap->pm_stats.resident_count ==
1932 ((pmap->pm_flags & PMAP_FLAG_SIMPLE) ? 0 : 1));
1934 KKASSERT(pmap->pm_stats.wired_count == 0);
1938 pmap_release_callback(pv_entry_t pv, void *data)
1940 struct pmap_release_info *info = data;
1941 pmap_t pmap = info->pmap;
1944 if (pv_hold_try(pv)) {
1945 spin_unlock(&pmap->pm_spin);
1947 spin_unlock(&pmap->pm_spin);
1949 if (pv->pv_pmap != pmap) {
1951 spin_lock(&pmap->pm_spin);
1956 r = pmap_release_pv(pv, NULL);
1957 spin_lock(&pmap->pm_spin);
1962 * Called with held (i.e. also locked) pv. This function will dispose of
1963 * the lock along with the pv.
1965 * If the caller already holds the locked parent page table for pv it
1966 * must pass it as pvp, allowing us to avoid a deadlock, else it can
1967 * pass NULL for pvp.
1970 pmap_release_pv(pv_entry_t pv, pv_entry_t pvp)
1975 * The pmap is currently not spinlocked, pv is held+locked.
1976 * Remove the pv's page from its parent's page table. The
1977 * parent's page table page's wire_count will be decremented.
1979 pmap_remove_pv_pte(pv, pvp, NULL);
1982 * Terminal pvs are unhooked from their vm_pages. Because
1983 * terminal pages aren't page table pages they aren't wired
1984 * by us, so we have to be sure not to unwire them either.
1986 if (pv->pv_pindex < pmap_pt_pindex(0)) {
1987 pmap_remove_pv_page(pv);
1992 * We leave the top-level page table page cached, wired, and
1993 * mapped in the pmap until the dtor function (pmap_puninit())
1996 * Since we are leaving the top-level pv intact we need
1997 * to break out of what would otherwise be an infinite loop.
1999 if (pv->pv_pindex == pmap_pml4_pindex()) {
2005 * For page table pages (other than the top-level page),
2006 * remove and free the vm_page. The representitive mapping
2007 * removed above by pmap_remove_pv_pte() did not undo the
2008 * last wire_count so we have to do that as well.
2010 p = pmap_remove_pv_page(pv);
2011 vm_page_busy_wait(p, FALSE, "pmaprl");
2012 if (p->wire_count != 1) {
2013 kprintf("p->wire_count was %016lx %d\n",
2014 pv->pv_pindex, p->wire_count);
2016 KKASSERT(p->wire_count == 1);
2017 KKASSERT(p->flags & PG_UNMANAGED);
2019 vm_page_unwire(p, 0);
2020 KKASSERT(p->wire_count == 0);
2023 * Theoretically this page, if not the pml4 page, should contain
2024 * all-zeros. But its just too dangerous to mark it PG_ZERO. Free
2034 * This function will remove the pte associated with a pv from its parent.
2035 * Terminal pv's are supported. The removal will be interlocked if info
2036 * is non-NULL. The caller must dispose of pv instead of just unlocking
2039 * The wire count will be dropped on the parent page table. The wire
2040 * count on the page being removed (pv->pv_m) from the parent page table
2041 * is NOT touched. Note that terminal pages will not have any additional
2042 * wire counts while page table pages will have at least one representing
2043 * the mapping, plus others representing sub-mappings.
2045 * NOTE: Cannot be called on kernel page table pages, only KVM terminal
2046 * pages and user page table and terminal pages.
2048 * The pv must be locked.
2050 * XXX must lock parent pv's if they exist to remove pte XXX
2054 pmap_remove_pv_pte(pv_entry_t pv, pv_entry_t pvp, struct pmap_inval_info *info)
2056 vm_pindex_t ptepindex = pv->pv_pindex;
2057 pmap_t pmap = pv->pv_pmap;
2063 if (ptepindex == pmap_pml4_pindex()) {
2065 * We are the top level pml4 table, there is no parent.
2067 p = pmap->pm_pmlpv->pv_m;
2068 } else if (ptepindex >= pmap_pdp_pindex(0)) {
2070 * Remove a PDP page from the pml4e. This can only occur
2071 * with user page tables. We do not have to lock the
2072 * pml4 PV so just ignore pvp.
2074 vm_pindex_t pml4_pindex;
2075 vm_pindex_t pdp_index;
2078 pdp_index = ptepindex - pmap_pdp_pindex(0);
2080 pml4_pindex = pmap_pml4_pindex();
2081 pvp = pv_get(pv->pv_pmap, pml4_pindex);
2085 pdp = &pmap->pm_pml4[pdp_index & ((1ul << NPML4EPGSHIFT) - 1)];
2086 KKASSERT((*pdp & PG_V) != 0);
2087 p = PHYS_TO_VM_PAGE(*pdp & PG_FRAME);
2089 KKASSERT(info == NULL);
2090 } else if (ptepindex >= pmap_pd_pindex(0)) {
2092 * Remove a PD page from the pdp
2094 * SIMPLE PMAP NOTE: Non-existant pvp's are ok in the case
2095 * of a simple pmap because it stops at
2098 vm_pindex_t pdp_pindex;
2099 vm_pindex_t pd_index;
2102 pd_index = ptepindex - pmap_pd_pindex(0);
2105 pdp_pindex = NUPTE_TOTAL + NUPT_TOTAL + NUPD_TOTAL +
2106 (pd_index >> NPML4EPGSHIFT);
2107 pvp = pv_get(pv->pv_pmap, pdp_pindex);
2112 pd = pv_pte_lookup(pvp, pd_index &
2113 ((1ul << NPDPEPGSHIFT) - 1));
2114 KKASSERT((*pd & PG_V) != 0);
2115 p = PHYS_TO_VM_PAGE(*pd & PG_FRAME);
2118 KKASSERT(pmap->pm_flags & PMAP_FLAG_SIMPLE);
2119 p = pv->pv_m; /* degenerate test later */
2121 KKASSERT(info == NULL);
2122 } else if (ptepindex >= pmap_pt_pindex(0)) {
2124 * Remove a PT page from the pd
2126 vm_pindex_t pd_pindex;
2127 vm_pindex_t pt_index;
2130 pt_index = ptepindex - pmap_pt_pindex(0);
2133 pd_pindex = NUPTE_TOTAL + NUPT_TOTAL +
2134 (pt_index >> NPDPEPGSHIFT);
2135 pvp = pv_get(pv->pv_pmap, pd_pindex);
2139 pt = pv_pte_lookup(pvp, pt_index & ((1ul << NPDPEPGSHIFT) - 1));
2140 KKASSERT((*pt & PG_V) != 0);
2141 p = PHYS_TO_VM_PAGE(*pt & PG_FRAME);
2143 KKASSERT(info == NULL);
2146 * Remove a PTE from the PT page
2148 * NOTE: pv's must be locked bottom-up to avoid deadlocking.
2149 * pv is a pte_pv so we can safely lock pt_pv.
2151 vm_pindex_t pt_pindex;
2156 pt_pindex = ptepindex >> NPTEPGSHIFT;
2157 va = (vm_offset_t)ptepindex << PAGE_SHIFT;
2159 if (ptepindex >= NUPTE_USER) {
2160 ptep = vtopte(ptepindex << PAGE_SHIFT);
2161 KKASSERT(pvp == NULL);
2164 pt_pindex = NUPTE_TOTAL +
2165 (ptepindex >> NPDPEPGSHIFT);
2166 pvp = pv_get(pv->pv_pmap, pt_pindex);
2170 ptep = pv_pte_lookup(pvp, ptepindex &
2171 ((1ul << NPDPEPGSHIFT) - 1));
2175 pmap_inval_interlock(info, pmap, va);
2176 pte = pte_load_clear(ptep);
2178 pmap_inval_deinterlock(info, pmap);
2180 cpu_invlpg((void *)va);
2183 * Now update the vm_page_t
2185 if ((pte & (PG_MANAGED|PG_V)) != (PG_MANAGED|PG_V)) {
2186 kprintf("remove_pte badpte %016lx %016lx %d\n",
2188 pv->pv_pindex < pmap_pt_pindex(0));
2190 /*KKASSERT((pte & (PG_MANAGED|PG_V)) == (PG_MANAGED|PG_V));*/
2191 p = PHYS_TO_VM_PAGE(pte & PG_FRAME);
2194 if (pmap_track_modified(ptepindex))
2198 vm_page_flag_set(p, PG_REFERENCED);
2201 atomic_add_long(&pmap->pm_stats.wired_count, -1);
2203 cpu_invlpg((void *)va);
2207 * Unwire the parent page table page. The wire_count cannot go below
2208 * 1 here because the parent page table page is itself still mapped.
2210 * XXX remove the assertions later.
2212 KKASSERT(pv->pv_m == p);
2213 if (pvp && vm_page_unwire_quick(pvp->pv_m))
2214 panic("pmap_remove_pv_pte: Insufficient wire_count");
2222 pmap_remove_pv_page(pv_entry_t pv)
2228 vm_page_spin_lock(m);
2230 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
2233 atomic_add_int(&m->object->agg_pv_list_count, -1);
2235 if (TAILQ_EMPTY(&m->md.pv_list))
2236 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
2237 vm_page_spin_unlock(m);
2242 * Grow the number of kernel page table entries, if needed.
2244 * This routine is always called to validate any address space
2245 * beyond KERNBASE (for kldloads). kernel_vm_end only governs the address
2246 * space below KERNBASE.
2249 pmap_growkernel(vm_offset_t kstart, vm_offset_t kend)
2252 vm_offset_t ptppaddr;
2254 pd_entry_t *pt, newpt;
2256 int update_kernel_vm_end;
2259 * bootstrap kernel_vm_end on first real VM use
2261 if (kernel_vm_end == 0) {
2262 kernel_vm_end = VM_MIN_KERNEL_ADDRESS;
2264 while ((*pmap_pt(&kernel_pmap, kernel_vm_end) & PG_V) != 0) {
2265 kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
2266 ~(PAGE_SIZE * NPTEPG - 1);
2268 if (kernel_vm_end - 1 >= kernel_map.max_offset) {
2269 kernel_vm_end = kernel_map.max_offset;
2276 * Fill in the gaps. kernel_vm_end is only adjusted for ranges
2277 * below KERNBASE. Ranges above KERNBASE are kldloaded and we
2278 * do not want to force-fill 128G worth of page tables.
2280 if (kstart < KERNBASE) {
2281 if (kstart > kernel_vm_end)
2282 kstart = kernel_vm_end;
2283 KKASSERT(kend <= KERNBASE);
2284 update_kernel_vm_end = 1;
2286 update_kernel_vm_end = 0;
2289 kstart = rounddown2(kstart, PAGE_SIZE * NPTEPG);
2290 kend = roundup2(kend, PAGE_SIZE * NPTEPG);
2292 if (kend - 1 >= kernel_map.max_offset)
2293 kend = kernel_map.max_offset;
2295 while (kstart < kend) {
2296 pt = pmap_pt(&kernel_pmap, kstart);
2298 /* We need a new PDP entry */
2299 nkpg = vm_page_alloc(NULL, nkpt,
2302 VM_ALLOC_INTERRUPT);
2304 panic("pmap_growkernel: no memory to grow "
2307 paddr = VM_PAGE_TO_PHYS(nkpg);
2308 if ((nkpg->flags & PG_ZERO) == 0)
2309 pmap_zero_page(paddr);
2310 vm_page_flag_clear(nkpg, PG_ZERO);
2311 newpd = (pdp_entry_t)
2312 (paddr | PG_V | PG_RW | PG_A | PG_M);
2313 *pmap_pd(&kernel_pmap, kstart) = newpd;
2315 continue; /* try again */
2317 if ((*pt & PG_V) != 0) {
2318 kstart = (kstart + PAGE_SIZE * NPTEPG) &
2319 ~(PAGE_SIZE * NPTEPG - 1);
2320 if (kstart - 1 >= kernel_map.max_offset) {
2321 kstart = kernel_map.max_offset;
2328 * This index is bogus, but out of the way
2330 nkpg = vm_page_alloc(NULL, nkpt,
2333 VM_ALLOC_INTERRUPT);
2335 panic("pmap_growkernel: no memory to grow kernel");
2338 ptppaddr = VM_PAGE_TO_PHYS(nkpg);
2339 pmap_zero_page(ptppaddr);
2340 vm_page_flag_clear(nkpg, PG_ZERO);
2341 newpt = (pd_entry_t) (ptppaddr | PG_V | PG_RW | PG_A | PG_M);
2342 *pmap_pt(&kernel_pmap, kstart) = newpt;
2345 kstart = (kstart + PAGE_SIZE * NPTEPG) &
2346 ~(PAGE_SIZE * NPTEPG - 1);
2348 if (kstart - 1 >= kernel_map.max_offset) {
2349 kstart = kernel_map.max_offset;
2355 * Only update kernel_vm_end for areas below KERNBASE.
2357 if (update_kernel_vm_end && kernel_vm_end < kstart)
2358 kernel_vm_end = kstart;
2362 * Add a reference to the specified pmap.
2365 pmap_reference(pmap_t pmap)
2368 lwkt_gettoken(&pmap->pm_token);
2370 lwkt_reltoken(&pmap->pm_token);
2375 pmap_drop(pmap_t pmap)
2378 lwkt_gettoken(&pmap->pm_token);
2380 lwkt_reltoken(&pmap->pm_token);
2384 /***************************************************
2385 * page management routines.
2386 ***************************************************/
2389 * Hold a pv without locking it
2392 pv_hold(pv_entry_t pv)
2396 if (atomic_cmpset_int(&pv->pv_hold, 0, 1))
2400 count = pv->pv_hold;
2402 if (atomic_cmpset_int(&pv->pv_hold, count, count + 1))
2409 * Hold a pv_entry, preventing its destruction. TRUE is returned if the pv
2410 * was successfully locked, FALSE if it wasn't. The caller must dispose of
2413 * Either the pmap->pm_spin or the related vm_page_spin (if traversing a
2414 * pv list via its page) must be held by the caller.
2417 _pv_hold_try(pv_entry_t pv PMAP_DEBUG_DECL)
2421 if (atomic_cmpset_int(&pv->pv_hold, 0, PV_HOLD_LOCKED | 1)) {
2424 pv->pv_line = lineno;
2430 count = pv->pv_hold;
2432 if ((count & PV_HOLD_LOCKED) == 0) {
2433 if (atomic_cmpset_int(&pv->pv_hold, count,
2434 (count + 1) | PV_HOLD_LOCKED)) {
2437 pv->pv_line = lineno;
2442 if (atomic_cmpset_int(&pv->pv_hold, count, count + 1))
2450 * Drop a previously held pv_entry which could not be locked, allowing its
2453 * Must not be called with a spinlock held as we might zfree() the pv if it
2454 * is no longer associated with a pmap and this was the last hold count.
2457 pv_drop(pv_entry_t pv)
2461 if (atomic_cmpset_int(&pv->pv_hold, 1, 0)) {
2462 if (pv->pv_pmap == NULL)
2468 count = pv->pv_hold;
2470 KKASSERT((count & PV_HOLD_MASK) > 0);
2471 KKASSERT((count & (PV_HOLD_LOCKED | PV_HOLD_MASK)) !=
2472 (PV_HOLD_LOCKED | 1));
2473 if (atomic_cmpset_int(&pv->pv_hold, count, count - 1)) {
2474 if (count == 1 && pv->pv_pmap == NULL)
2483 * Find or allocate the requested PV entry, returning a locked pv
2487 _pv_alloc(pmap_t pmap, vm_pindex_t pindex, int *isnew PMAP_DEBUG_DECL)
2490 pv_entry_t pnew = NULL;
2492 spin_lock(&pmap->pm_spin);
2494 if ((pv = pmap->pm_pvhint) == NULL || pv->pv_pindex != pindex) {
2495 pv = pv_entry_rb_tree_RB_LOOKUP(&pmap->pm_pvroot,
2500 spin_unlock(&pmap->pm_spin);
2501 pnew = zalloc(pvzone);
2502 spin_lock(&pmap->pm_spin);
2505 pnew->pv_pmap = pmap;
2506 pnew->pv_pindex = pindex;
2507 pnew->pv_hold = PV_HOLD_LOCKED | 1;
2509 pnew->pv_func = func;
2510 pnew->pv_line = lineno;
2512 pv_entry_rb_tree_RB_INSERT(&pmap->pm_pvroot, pnew);
2513 atomic_add_long(&pmap->pm_stats.resident_count, 1);
2514 spin_unlock(&pmap->pm_spin);
2519 spin_unlock(&pmap->pm_spin);
2520 zfree(pvzone, pnew);
2522 spin_lock(&pmap->pm_spin);
2525 if (_pv_hold_try(pv PMAP_DEBUG_COPY)) {
2526 spin_unlock(&pmap->pm_spin);
2530 spin_unlock(&pmap->pm_spin);
2531 _pv_lock(pv PMAP_DEBUG_COPY);
2532 if (pv->pv_pmap == pmap && pv->pv_pindex == pindex) {
2537 spin_lock(&pmap->pm_spin);
2544 * Find the requested PV entry, returning a locked+held pv or NULL
2548 _pv_get(pmap_t pmap, vm_pindex_t pindex PMAP_DEBUG_DECL)
2552 spin_lock(&pmap->pm_spin);
2557 if ((pv = pmap->pm_pvhint) == NULL || pv->pv_pindex != pindex) {
2558 pv = pv_entry_rb_tree_RB_LOOKUP(&pmap->pm_pvroot,
2562 spin_unlock(&pmap->pm_spin);
2565 if (_pv_hold_try(pv PMAP_DEBUG_COPY)) {
2566 pv_cache(pv, pindex);
2567 spin_unlock(&pmap->pm_spin);
2570 spin_unlock(&pmap->pm_spin);
2571 _pv_lock(pv PMAP_DEBUG_COPY);
2572 if (pv->pv_pmap == pmap && pv->pv_pindex == pindex)
2575 spin_lock(&pmap->pm_spin);
2580 * Lookup, hold, and attempt to lock (pmap,pindex).
2582 * If the entry does not exist NULL is returned and *errorp is set to 0
2584 * If the entry exists and could be successfully locked it is returned and
2585 * errorp is set to 0.
2587 * If the entry exists but could NOT be successfully locked it is returned
2588 * held and *errorp is set to 1.
2592 pv_get_try(pmap_t pmap, vm_pindex_t pindex, int *errorp)
2596 spin_lock(&pmap->pm_spin);
2597 if ((pv = pmap->pm_pvhint) == NULL || pv->pv_pindex != pindex)
2598 pv = pv_entry_rb_tree_RB_LOOKUP(&pmap->pm_pvroot, pindex);
2600 spin_unlock(&pmap->pm_spin);
2604 if (pv_hold_try(pv)) {
2605 pv_cache(pv, pindex);
2606 spin_unlock(&pmap->pm_spin);
2608 return(pv); /* lock succeeded */
2610 spin_unlock(&pmap->pm_spin);
2612 return (pv); /* lock failed */
2616 * Find the requested PV entry, returning a held pv or NULL
2620 pv_find(pmap_t pmap, vm_pindex_t pindex)
2624 spin_lock(&pmap->pm_spin);
2626 if ((pv = pmap->pm_pvhint) == NULL || pv->pv_pindex != pindex)
2627 pv = pv_entry_rb_tree_RB_LOOKUP(&pmap->pm_pvroot, pindex);
2629 spin_unlock(&pmap->pm_spin);
2633 pv_cache(pv, pindex);
2634 spin_unlock(&pmap->pm_spin);
2639 * Lock a held pv, keeping the hold count
2643 _pv_lock(pv_entry_t pv PMAP_DEBUG_DECL)
2648 count = pv->pv_hold;
2650 if ((count & PV_HOLD_LOCKED) == 0) {
2651 if (atomic_cmpset_int(&pv->pv_hold, count,
2652 count | PV_HOLD_LOCKED)) {
2655 pv->pv_line = lineno;
2661 tsleep_interlock(pv, 0);
2662 if (atomic_cmpset_int(&pv->pv_hold, count,
2663 count | PV_HOLD_WAITING)) {
2665 kprintf("pv waiting on %s:%d\n",
2666 pv->pv_func, pv->pv_line);
2668 tsleep(pv, PINTERLOCKED, "pvwait", hz);
2675 * Unlock a held and locked pv, keeping the hold count.
2679 pv_unlock(pv_entry_t pv)
2683 if (atomic_cmpset_int(&pv->pv_hold, PV_HOLD_LOCKED | 1, 1))
2687 count = pv->pv_hold;
2689 KKASSERT((count & (PV_HOLD_LOCKED|PV_HOLD_MASK)) >=
2690 (PV_HOLD_LOCKED | 1));
2691 if (atomic_cmpset_int(&pv->pv_hold, count,
2693 ~(PV_HOLD_LOCKED | PV_HOLD_WAITING))) {
2694 if (count & PV_HOLD_WAITING)
2702 * Unlock and drop a pv. If the pv is no longer associated with a pmap
2703 * and the hold count drops to zero we will free it.
2705 * Caller should not hold any spin locks. We are protected from hold races
2706 * by virtue of holds only occuring only with a pmap_spin or vm_page_spin
2707 * lock held. A pv cannot be located otherwise.
2711 pv_put(pv_entry_t pv)
2713 if (atomic_cmpset_int(&pv->pv_hold, PV_HOLD_LOCKED | 1, 0)) {
2714 if (pv->pv_pmap == NULL)
2723 * Unlock, drop, and free a pv, destroying it. The pv is removed from its
2724 * pmap. Any pte operations must have already been completed.
2728 pv_free(pv_entry_t pv)
2732 KKASSERT(pv->pv_m == NULL);
2733 if ((pmap = pv->pv_pmap) != NULL) {
2734 spin_lock(&pmap->pm_spin);
2735 pv_entry_rb_tree_RB_REMOVE(&pmap->pm_pvroot, pv);
2736 if (pmap->pm_pvhint == pv)
2737 pmap->pm_pvhint = NULL;
2738 atomic_add_long(&pmap->pm_stats.resident_count, -1);
2741 spin_unlock(&pmap->pm_spin);
2747 * This routine is very drastic, but can save the system
2755 static int warningdone=0;
2757 if (pmap_pagedaemon_waken == 0)
2759 pmap_pagedaemon_waken = 0;
2760 if (warningdone < 5) {
2761 kprintf("pmap_collect: collecting pv entries -- "
2762 "suggest increasing PMAP_SHPGPERPROC\n");
2766 for (i = 0; i < vm_page_array_size; i++) {
2767 m = &vm_page_array[i];
2768 if (m->wire_count || m->hold_count)
2770 if (vm_page_busy_try(m, TRUE) == 0) {
2771 if (m->wire_count == 0 && m->hold_count == 0) {
2780 * Scan the pmap for active page table entries and issue a callback.
2781 * The callback must dispose of pte_pv, whos PTE entry is at *ptep in
2782 * its parent page table.
2784 * pte_pv will be NULL if the page or page table is unmanaged.
2785 * pt_pv will point to the page table page containing the pte for the page.
2787 * NOTE! If we come across an unmanaged page TABLE (verses an unmanaged page),
2788 * we pass a NULL pte_pv and we pass a pt_pv pointing to the passed
2789 * process pmap's PD and page to the callback function. This can be
2790 * confusing because the pt_pv is really a pd_pv, and the target page
2791 * table page is simply aliased by the pmap and not owned by it.
2793 * It is assumed that the start and end are properly rounded to the page size.
2795 * It is assumed that PD pages and above are managed and thus in the RB tree,
2796 * allowing us to use RB_SCAN from the PD pages down for ranged scans.
2798 struct pmap_scan_info {
2802 vm_pindex_t sva_pd_pindex;
2803 vm_pindex_t eva_pd_pindex;
2804 void (*func)(pmap_t, struct pmap_scan_info *,
2805 pv_entry_t, pv_entry_t, int, vm_offset_t,
2806 pt_entry_t *, void *);
2809 struct pmap_inval_info inval;
2812 static int pmap_scan_cmp(pv_entry_t pv, void *data);
2813 static int pmap_scan_callback(pv_entry_t pv, void *data);
2816 pmap_scan(struct pmap_scan_info *info)
2818 struct pmap *pmap = info->pmap;
2819 pv_entry_t pd_pv; /* A page directory PV */
2820 pv_entry_t pt_pv; /* A page table PV */
2821 pv_entry_t pte_pv; /* A page table entry PV */
2823 struct pv_entry dummy_pv;
2829 * Hold the token for stability; if the pmap is empty we have nothing
2832 lwkt_gettoken(&pmap->pm_token);
2834 if (pmap->pm_stats.resident_count == 0) {
2835 lwkt_reltoken(&pmap->pm_token);
2840 pmap_inval_init(&info->inval);
2843 * Special handling for scanning one page, which is a very common
2844 * operation (it is?).
2846 * NOTE: Locks must be ordered bottom-up. pte,pt,pd,pdp,pml4
2848 if (info->sva + PAGE_SIZE == info->eva) {
2849 if (info->sva >= VM_MAX_USER_ADDRESS) {
2851 * Kernel mappings do not track wire counts on
2852 * page table pages and only maintain pd_pv and
2853 * pte_pv levels so pmap_scan() works.
2856 pte_pv = pv_get(pmap, pmap_pte_pindex(info->sva));
2857 ptep = vtopte(info->sva);
2860 * User pages which are unmanaged will not have a
2861 * pte_pv. User page table pages which are unmanaged
2862 * (shared from elsewhere) will also not have a pt_pv.
2863 * The func() callback will pass both pte_pv and pt_pv
2864 * as NULL in that case.
2866 pte_pv = pv_get(pmap, pmap_pte_pindex(info->sva));
2867 pt_pv = pv_get(pmap, pmap_pt_pindex(info->sva));
2868 if (pt_pv == NULL) {
2869 KKASSERT(pte_pv == NULL);
2870 pd_pv = pv_get(pmap, pmap_pd_pindex(info->sva));
2872 ptep = pv_pte_lookup(pd_pv,
2873 pmap_pt_index(info->sva));
2875 info->func(pmap, info,
2884 ptep = pv_pte_lookup(pt_pv, pmap_pte_index(info->sva));
2888 * Unlike the pv_find() case below we actually
2889 * acquired a locked pv in this case so any
2890 * race should have been resolved. It is expected
2893 KKASSERT(pte_pv == NULL);
2894 } else if (pte_pv) {
2895 KASSERT((*ptep & (PG_MANAGED|PG_V)) == (PG_MANAGED|
2897 ("bad *ptep %016lx sva %016lx pte_pv %p",
2898 *ptep, info->sva, pte_pv));
2899 info->func(pmap, info, pte_pv, pt_pv, 0,
2900 info->sva, ptep, info->arg);
2902 KASSERT((*ptep & (PG_MANAGED|PG_V)) == PG_V,
2903 ("bad *ptep %016lx sva %016lx pte_pv NULL",
2905 info->func(pmap, info, NULL, pt_pv, 0,
2906 info->sva, ptep, info->arg);
2911 pmap_inval_done(&info->inval);
2912 lwkt_reltoken(&pmap->pm_token);
2917 * Nominal scan case, RB_SCAN() for PD pages and iterate from
2920 info->sva_pd_pindex = pmap_pd_pindex(info->sva);
2921 info->eva_pd_pindex = pmap_pd_pindex(info->eva + NBPDP - 1);
2923 if (info->sva >= VM_MAX_USER_ADDRESS) {
2925 * The kernel does not currently maintain any pv_entry's for
2926 * higher-level page tables.
2928 bzero(&dummy_pv, sizeof(dummy_pv));
2929 dummy_pv.pv_pindex = info->sva_pd_pindex;
2930 spin_lock(&pmap->pm_spin);
2931 while (dummy_pv.pv_pindex < info->eva_pd_pindex) {
2932 pmap_scan_callback(&dummy_pv, info);
2933 ++dummy_pv.pv_pindex;
2935 spin_unlock(&pmap->pm_spin);
2938 * User page tables maintain local PML4, PDP, and PD
2939 * pv_entry's at the very least. PT pv's might be
2940 * unmanaged and thus not exist. PTE pv's might be
2941 * unmanaged and thus not exist.
2943 spin_lock(&pmap->pm_spin);
2944 pv_entry_rb_tree_RB_SCAN(&pmap->pm_pvroot,
2945 pmap_scan_cmp, pmap_scan_callback, info);
2946 spin_unlock(&pmap->pm_spin);
2948 pmap_inval_done(&info->inval);
2949 lwkt_reltoken(&pmap->pm_token);
2953 * WARNING! pmap->pm_spin held
2956 pmap_scan_cmp(pv_entry_t pv, void *data)
2958 struct pmap_scan_info *info = data;
2959 if (pv->pv_pindex < info->sva_pd_pindex)
2961 if (pv->pv_pindex >= info->eva_pd_pindex)
2967 * WARNING! pmap->pm_spin held
2970 pmap_scan_callback(pv_entry_t pv, void *data)
2972 struct pmap_scan_info *info = data;
2973 struct pmap *pmap = info->pmap;
2974 pv_entry_t pd_pv; /* A page directory PV */
2975 pv_entry_t pt_pv; /* A page table PV */
2976 pv_entry_t pte_pv; /* A page table entry PV */
2980 vm_offset_t va_next;
2981 vm_pindex_t pd_pindex;
2985 * Pull the PD pindex from the pv before releasing the spinlock.
2987 * WARNING: pv is faked for kernel pmap scans.
2989 pd_pindex = pv->pv_pindex;
2990 spin_unlock(&pmap->pm_spin);
2991 pv = NULL; /* invalid after spinlock unlocked */
2994 * Calculate the page range within the PD. SIMPLE pmaps are
2995 * direct-mapped for the entire 2^64 address space. Normal pmaps
2996 * reflect the user and kernel address space which requires
2997 * cannonicalization w/regards to converting pd_pindex's back
3000 sva = (pd_pindex - NUPTE_TOTAL - NUPT_TOTAL) << PDPSHIFT;
3001 if ((pmap->pm_flags & PMAP_FLAG_SIMPLE) == 0 &&
3002 (sva & PML4_SIGNMASK)) {
3003 sva |= PML4_SIGNMASK;
3005 eva = sva + NBPDP; /* can overflow */
3006 if (sva < info->sva)
3008 if (eva < info->sva || eva > info->eva)
3012 * NOTE: kernel mappings do not track page table pages, only
3015 * NOTE: Locks must be ordered bottom-up. pte,pt,pd,pdp,pml4.
3016 * However, for the scan to be efficient we try to
3017 * cache items top-down.
3022 for (; sva < eva; sva = va_next) {
3023 if (sva >= VM_MAX_USER_ADDRESS) {
3032 * PD cache (degenerate case if we skip). It is possible
3033 * for the PD to not exist due to races. This is ok.
3035 if (pd_pv == NULL) {
3036 pd_pv = pv_get(pmap, pmap_pd_pindex(sva));
3037 } else if (pd_pv->pv_pindex != pmap_pd_pindex(sva)) {
3039 pd_pv = pv_get(pmap, pmap_pd_pindex(sva));
3041 if (pd_pv == NULL) {
3042 va_next = (sva + NBPDP) & ~PDPMASK;
3051 if (pt_pv == NULL) {
3056 pt_pv = pv_get(pmap, pmap_pt_pindex(sva));
3057 } else if (pt_pv->pv_pindex != pmap_pt_pindex(sva)) {
3063 pt_pv = pv_get(pmap, pmap_pt_pindex(sva));
3067 * If pt_pv is NULL we either have an shared page table
3068 * page and must issue a callback specific to that case,
3069 * or there is no page table page.
3071 * Either way we can skip the page table page.
3073 if (pt_pv == NULL) {
3075 * Possible unmanaged (shared from another pmap)
3079 pd_pv = pv_get(pmap, pmap_pd_pindex(sva));
3080 KKASSERT(pd_pv != NULL);
3081 ptep = pv_pte_lookup(pd_pv, pmap_pt_index(sva));
3083 info->func(pmap, info, NULL, pd_pv, 1,
3084 sva, ptep, info->arg);
3088 * Done, move to next page table page.
3090 va_next = (sva + NBPDR) & ~PDRMASK;
3097 * From this point in the loop testing pt_pv for non-NULL
3098 * means we are in UVM, else if it is NULL we are in KVM.
3100 * Limit our scan to either the end of the va represented
3101 * by the current page table page, or to the end of the
3102 * range being removed.
3105 va_next = (sva + NBPDR) & ~PDRMASK;
3112 * Scan the page table for pages. Some pages may not be
3113 * managed (might not have a pv_entry).
3115 * There is no page table management for kernel pages so
3116 * pt_pv will be NULL in that case, but otherwise pt_pv
3117 * is non-NULL, locked, and referenced.
3121 * At this point a non-NULL pt_pv means a UVA, and a NULL
3122 * pt_pv means a KVA.
3125 ptep = pv_pte_lookup(pt_pv, pmap_pte_index(sva));
3129 while (sva < va_next) {
3131 * Acquire the related pte_pv, if any. If *ptep == 0
3132 * the related pte_pv should not exist, but if *ptep
3133 * is not zero the pte_pv may or may not exist (e.g.
3134 * will not exist for an unmanaged page).
3136 * However a multitude of races are possible here.
3138 * In addition, the (pt_pv, pte_pv) lock order is
3139 * backwards, so we have to be careful in aquiring
3140 * a properly locked pte_pv.
3143 pte_pv = pv_get_try(pmap, pmap_pte_pindex(sva),
3150 pv_put(pt_pv); /* must be non-NULL */
3152 pv_lock(pte_pv); /* safe to block now */
3155 pt_pv = pv_get(pmap,
3156 pmap_pt_pindex(sva));
3158 * pt_pv reloaded, need new ptep
3160 KKASSERT(pt_pv != NULL);
3161 ptep = pv_pte_lookup(pt_pv,
3162 pmap_pte_index(sva));
3166 pte_pv = pv_get(pmap, pmap_pte_pindex(sva));
3170 * Ok, if *ptep == 0 we had better NOT have a pte_pv.
3174 kprintf("Unexpected non-NULL pte_pv "
3175 "%p pt_pv %p *ptep = %016lx\n",
3176 pte_pv, pt_pv, *ptep);
3177 panic("Unexpected non-NULL pte_pv");
3185 * Ready for the callback. The locked pte_pv (if any)
3186 * is consumed by the callback. pte_pv will exist if
3187 * the page is managed, and will not exist if it
3191 KASSERT((*ptep & (PG_MANAGED|PG_V)) ==
3193 ("bad *ptep %016lx sva %016lx "
3195 *ptep, sva, pte_pv));
3196 info->func(pmap, info, pte_pv, pt_pv, 0,
3197 sva, ptep, info->arg);
3199 KASSERT((*ptep & (PG_MANAGED|PG_V)) ==
3201 ("bad *ptep %016lx sva %016lx "
3204 info->func(pmap, info, NULL, pt_pv, 0,
3205 sva, ptep, info->arg);
3224 * Relock before returning.
3226 spin_lock(&pmap->pm_spin);
3231 pmap_remove(struct pmap *pmap, vm_offset_t sva, vm_offset_t eva)
3233 struct pmap_scan_info info;
3238 info.func = pmap_remove_callback;
3240 info.doinval = 1; /* normal remove requires pmap inval */
3245 pmap_remove_noinval(struct pmap *pmap, vm_offset_t sva, vm_offset_t eva)
3247 struct pmap_scan_info info;
3252 info.func = pmap_remove_callback;
3254 info.doinval = 0; /* normal remove requires pmap inval */
3259 pmap_remove_callback(pmap_t pmap, struct pmap_scan_info *info,
3260 pv_entry_t pte_pv, pv_entry_t pt_pv, int sharept,
3261 vm_offset_t va, pt_entry_t *ptep, void *arg __unused)
3267 * This will also drop pt_pv's wire_count. Note that
3268 * terminal pages are not wired based on mmu presence.
3271 pmap_remove_pv_pte(pte_pv, pt_pv, &info->inval);
3273 pmap_remove_pv_pte(pte_pv, pt_pv, NULL);
3274 pmap_remove_pv_page(pte_pv);
3276 } else if (sharept == 0) {
3280 * pt_pv's wire_count is still bumped by unmanaged pages
3281 * so we must decrement it manually.
3284 pmap_inval_interlock(&info->inval, pmap, va);
3285 pte = pte_load_clear(ptep);
3287 pmap_inval_deinterlock(&info->inval, pmap);
3289 atomic_add_long(&pmap->pm_stats.wired_count, -1);
3290 atomic_add_long(&pmap->pm_stats.resident_count, -1);
3291 if (vm_page_unwire_quick(pt_pv->pv_m))
3292 panic("pmap_remove: insufficient wirecount");
3295 * Unmanaged page table, pt_pv is actually the pd_pv
3296 * for our pmap (not the share object pmap).
3298 * We have to unwire the target page table page and we
3299 * have to unwire our page directory page.
3302 pmap_inval_interlock(&info->inval, pmap, va);
3303 pte = pte_load_clear(ptep);
3305 pmap_inval_deinterlock(&info->inval, pmap);
3306 atomic_add_long(&pmap->pm_stats.resident_count, -1);
3307 if (vm_page_unwire_quick(PHYS_TO_VM_PAGE(pte & PG_FRAME)))
3308 panic("pmap_remove: shared pgtable1 bad wirecount");
3309 if (vm_page_unwire_quick(pt_pv->pv_m))
3310 panic("pmap_remove: shared pgtable2 bad wirecount");
3315 * Removes this physical page from all physical maps in which it resides.
3316 * Reflects back modify bits to the pager.
3318 * This routine may not be called from an interrupt.
3322 pmap_remove_all(vm_page_t m)
3324 struct pmap_inval_info info;
3327 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
3330 pmap_inval_init(&info);
3331 vm_page_spin_lock(m);
3332 while ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
3333 KKASSERT(pv->pv_m == m);
3334 if (pv_hold_try(pv)) {
3335 vm_page_spin_unlock(m);
3337 vm_page_spin_unlock(m);
3339 if (pv->pv_m != m) {
3341 vm_page_spin_lock(m);
3346 * Holding no spinlocks, pv is locked.
3348 pmap_remove_pv_pte(pv, NULL, &info);
3349 pmap_remove_pv_page(pv);
3351 vm_page_spin_lock(m);
3353 KKASSERT((m->flags & (PG_MAPPED|PG_WRITEABLE)) == 0);
3354 vm_page_spin_unlock(m);
3355 pmap_inval_done(&info);
3359 * Set the physical protection on the specified range of this map
3360 * as requested. This function is typically only used for debug watchpoints
3363 * This function may not be called from an interrupt if the map is
3364 * not the kernel_pmap.
3366 * NOTE! For shared page table pages we just unmap the page.
3369 pmap_protect(pmap_t pmap, vm_offset_t sva, vm_offset_t eva, vm_prot_t prot)
3371 struct pmap_scan_info info;
3372 /* JG review for NX */
3376 if ((prot & VM_PROT_READ) == VM_PROT_NONE) {
3377 pmap_remove(pmap, sva, eva);
3380 if (prot & VM_PROT_WRITE)
3385 info.func = pmap_protect_callback;
3393 pmap_protect_callback(pmap_t pmap, struct pmap_scan_info *info,
3394 pv_entry_t pte_pv, pv_entry_t pt_pv, int sharept,
3395 vm_offset_t va, pt_entry_t *ptep, void *arg __unused)
3405 pmap_inval_interlock(&info->inval, pmap, va);
3412 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME);
3413 KKASSERT(m == pte_pv->pv_m);
3414 vm_page_flag_set(m, PG_REFERENCED);
3418 if (pmap_track_modified(pte_pv->pv_pindex)) {
3420 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME);
3425 } else if (sharept) {
3427 * Unmanaged page table, pt_pv is actually the pd_pv
3428 * for our pmap (not the share object pmap).
3430 * When asked to protect something in a shared page table
3431 * page we just unmap the page table page. We have to
3432 * invalidate the tlb in this situation.
3434 pte = pte_load_clear(ptep);
3435 pmap_inval_invltlb(&info->inval);
3436 if (vm_page_unwire_quick(PHYS_TO_VM_PAGE(pte & PG_FRAME)))
3437 panic("pmap_protect: pgtable1 pg bad wirecount");
3438 if (vm_page_unwire_quick(pt_pv->pv_m))
3439 panic("pmap_protect: pgtable2 pg bad wirecount");
3442 /* else unmanaged page, adjust bits, no wire changes */
3446 if (pbits != cbits && !atomic_cmpset_long(ptep, pbits, cbits)) {
3450 pmap_inval_deinterlock(&info->inval, pmap);
3456 * Insert the vm_page (m) at the virtual address (va), replacing any prior
3457 * mapping at that address. Set protection and wiring as requested.
3459 * If entry is non-NULL we check to see if the SEG_SIZE optimization is
3460 * possible. If it is we enter the page into the appropriate shared pmap
3461 * hanging off the related VM object instead of the passed pmap, then we
3462 * share the page table page from the VM object's pmap into the current pmap.
3464 * NOTE: This routine MUST insert the page into the pmap now, it cannot
3468 pmap_enter(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot,
3469 boolean_t wired, vm_map_entry_t entry __unused)
3471 pmap_inval_info info;
3472 pv_entry_t pt_pv; /* page table */
3473 pv_entry_t pte_pv; /* page table entry */
3476 pt_entry_t origpte, newpte;
3481 va = trunc_page(va);
3482 #ifdef PMAP_DIAGNOSTIC
3484 panic("pmap_enter: toobig");
3485 if ((va >= UPT_MIN_ADDRESS) && (va < UPT_MAX_ADDRESS))
3486 panic("pmap_enter: invalid to pmap_enter page table "
3487 "pages (va: 0x%lx)", va);
3489 if (va < UPT_MAX_ADDRESS && pmap == &kernel_pmap) {
3490 kprintf("Warning: pmap_enter called on UVA with "
3493 db_print_backtrace();
3496 if (va >= UPT_MAX_ADDRESS && pmap != &kernel_pmap) {
3497 kprintf("Warning: pmap_enter called on KVA without"
3500 db_print_backtrace();
3505 * Get locked PV entries for our new page table entry (pte_pv)
3506 * and for its parent page table (pt_pv). We need the parent
3507 * so we can resolve the location of the ptep.
3509 * Only hardware MMU actions can modify the ptep out from
3512 * if (m) is fictitious or unmanaged we do not create a managing
3513 * pte_pv for it. Any pre-existing page's management state must
3514 * match (avoiding code complexity).
3516 * If the pmap is still being initialized we assume existing
3519 * Kernel mapppings do not track page table pages (i.e. pt_pv).
3520 * pmap_allocpte() checks the
3522 if (pmap_initialized == FALSE) {
3526 } else if (m->flags & (PG_FICTITIOUS | PG_UNMANAGED)) { /* XXX */
3528 if (va >= VM_MAX_USER_ADDRESS) {
3532 pt_pv = pmap_allocpte_seg(pmap, pmap_pt_pindex(va),
3534 ptep = pv_pte_lookup(pt_pv, pmap_pte_index(va));
3536 KKASSERT(*ptep == 0 || (*ptep & PG_MANAGED) == 0);
3538 if (va >= VM_MAX_USER_ADDRESS) {
3540 * Kernel map, pv_entry-tracked.
3543 pte_pv = pmap_allocpte(pmap, pmap_pte_pindex(va), NULL);
3549 pte_pv = pmap_allocpte_seg(pmap, pmap_pte_pindex(va),
3551 ptep = pv_pte_lookup(pt_pv, pmap_pte_index(va));
3553 KKASSERT(*ptep == 0 || (*ptep & PG_MANAGED));
3556 pa = VM_PAGE_TO_PHYS(m);
3558 opa = origpte & PG_FRAME;
3560 newpte = (pt_entry_t)(pa | pte_prot(pmap, prot) | PG_V | PG_A);
3563 if (va < VM_MAX_USER_ADDRESS)
3566 newpte |= PG_MANAGED;
3567 if (pmap == &kernel_pmap)
3571 * It is possible for multiple faults to occur in threaded
3572 * environments, the existing pte might be correct.
3574 if (((origpte ^ newpte) & ~(pt_entry_t)(PG_M|PG_A)) == 0)
3577 if ((prot & VM_PROT_NOSYNC) == 0)
3578 pmap_inval_init(&info);
3581 * Ok, either the address changed or the protection or wiring
3584 * Clear the current entry, interlocking the removal. For managed
3585 * pte's this will also flush the modified state to the vm_page.
3586 * Atomic ops are mandatory in order to ensure that PG_M events are
3587 * not lost during any transition.
3592 * pmap_remove_pv_pte() unwires pt_pv and assumes
3593 * we will free pte_pv, but since we are reusing
3594 * pte_pv we want to retain the wire count.
3596 * pt_pv won't exist for a kernel page (managed or
3600 vm_page_wire_quick(pt_pv->pv_m);
3601 if (prot & VM_PROT_NOSYNC)
3602 pmap_remove_pv_pte(pte_pv, pt_pv, NULL);
3604 pmap_remove_pv_pte(pte_pv, pt_pv, &info);
3606 pmap_remove_pv_page(pte_pv);
3607 } else if (prot & VM_PROT_NOSYNC) {
3609 * Unmanaged page, NOSYNC (no mmu sync) requested.
3611 * Leave wire count on PT page intact.
3613 (void)pte_load_clear(ptep);
3614 cpu_invlpg((void *)va);
3615 atomic_add_long(&pmap->pm_stats.resident_count, -1);
3618 * Unmanaged page, normal enter.
3620 * Leave wire count on PT page intact.
3622 pmap_inval_interlock(&info, pmap, va);
3623 (void)pte_load_clear(ptep);
3624 pmap_inval_deinterlock(&info, pmap);
3625 atomic_add_long(&pmap->pm_stats.resident_count, -1);
3627 KKASSERT(*ptep == 0);
3632 * Enter on the PV list if part of our managed memory.
3633 * Wiring of the PT page is already handled.
3635 KKASSERT(pte_pv->pv_m == NULL);
3636 vm_page_spin_lock(m);
3638 TAILQ_INSERT_TAIL(&m->md.pv_list, pte_pv, pv_list);
3641 atomic_add_int(&m->object->agg_pv_list_count, 1);
3643 vm_page_flag_set(m, PG_MAPPED);
3644 vm_page_spin_unlock(m);
3645 } else if (pt_pv && opa == 0) {
3647 * We have to adjust the wire count on the PT page ourselves
3648 * for unmanaged entries. If opa was non-zero we retained
3649 * the existing wire count from the removal.
3651 vm_page_wire_quick(pt_pv->pv_m);
3655 * Kernel VMAs (pt_pv == NULL) require pmap invalidation interlocks.
3657 * User VMAs do not because those will be zero->non-zero, so no
3658 * stale entries to worry about at this point.
3660 * For KVM there appear to still be issues. Theoretically we
3661 * should be able to scrap the interlocks entirely but we
3664 if ((prot & VM_PROT_NOSYNC) == 0 && pt_pv == NULL)
3665 pmap_inval_interlock(&info, pmap, va);
3670 *(volatile pt_entry_t *)ptep = newpte;
3672 if ((prot & VM_PROT_NOSYNC) == 0 && pt_pv == NULL)
3673 pmap_inval_deinterlock(&info, pmap);
3674 else if (pt_pv == NULL)
3675 cpu_invlpg((void *)va);
3679 atomic_add_long(&pte_pv->pv_pmap->pm_stats.wired_count,
3682 atomic_add_long(&pmap->pm_stats.wired_count, 1);
3686 vm_page_flag_set(m, PG_WRITEABLE);
3689 * Unmanaged pages need manual resident_count tracking.
3691 if (pte_pv == NULL && pt_pv)
3692 atomic_add_long(&pt_pv->pv_pmap->pm_stats.resident_count, 1);
3697 if ((prot & VM_PROT_NOSYNC) == 0 || pte_pv == NULL)
3698 pmap_inval_done(&info);
3700 KKASSERT((newpte & PG_MANAGED) == 0 || (m->flags & PG_MAPPED));
3703 * Cleanup the pv entry, allowing other accessors.
3712 * This code works like pmap_enter() but assumes VM_PROT_READ and not-wired.
3713 * This code also assumes that the pmap has no pre-existing entry for this
3716 * This code currently may only be used on user pmaps, not kernel_pmap.
3719 pmap_enter_quick(pmap_t pmap, vm_offset_t va, vm_page_t m)
3721 pmap_enter(pmap, va, m, VM_PROT_READ, FALSE, NULL);
3725 * Make a temporary mapping for a physical address. This is only intended
3726 * to be used for panic dumps.
3728 * The caller is responsible for calling smp_invltlb().
3731 pmap_kenter_temporary(vm_paddr_t pa, long i)
3733 pmap_kenter_quick((vm_offset_t)crashdumpmap + (i * PAGE_SIZE), pa);
3734 return ((void *)crashdumpmap);
3737 #define MAX_INIT_PT (96)
3740 * This routine preloads the ptes for a given object into the specified pmap.
3741 * This eliminates the blast of soft faults on process startup and
3742 * immediately after an mmap.
3744 static int pmap_object_init_pt_callback(vm_page_t p, void *data);
3747 pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, vm_prot_t prot,
3748 vm_object_t object, vm_pindex_t pindex,
3749 vm_size_t size, int limit)
3751 struct rb_vm_page_scan_info info;
3756 * We can't preinit if read access isn't set or there is no pmap
3759 if ((prot & VM_PROT_READ) == 0 || pmap == NULL || object == NULL)
3763 * We can't preinit if the pmap is not the current pmap
3765 lp = curthread->td_lwp;
3766 if (lp == NULL || pmap != vmspace_pmap(lp->lwp_vmspace))
3770 * Misc additional checks
3772 psize = x86_64_btop(size);
3774 if ((object->type != OBJT_VNODE) ||
3775 ((limit & MAP_PREFAULT_PARTIAL) && (psize > MAX_INIT_PT) &&
3776 (object->resident_page_count > MAX_INIT_PT))) {
3780 if (pindex + psize > object->size) {
3781 if (object->size < pindex)
3783 psize = object->size - pindex;
3790 * If everything is segment-aligned do not pre-init here. Instead
3791 * allow the normal vm_fault path to pass a segment hint to
3792 * pmap_enter() which will then use an object-referenced shared
3795 if ((addr & SEG_MASK) == 0 &&
3796 (ctob(psize) & SEG_MASK) == 0 &&
3797 (ctob(pindex) & SEG_MASK) == 0) {
3802 * Use a red-black scan to traverse the requested range and load
3803 * any valid pages found into the pmap.
3805 * We cannot safely scan the object's memq without holding the
3808 info.start_pindex = pindex;
3809 info.end_pindex = pindex + psize - 1;
3815 vm_object_hold_shared(object);
3816 vm_page_rb_tree_RB_SCAN(&object->rb_memq, rb_vm_page_scancmp,
3817 pmap_object_init_pt_callback, &info);
3818 vm_object_drop(object);
3823 pmap_object_init_pt_callback(vm_page_t p, void *data)
3825 struct rb_vm_page_scan_info *info = data;
3826 vm_pindex_t rel_index;
3829 * don't allow an madvise to blow away our really
3830 * free pages allocating pv entries.
3832 if ((info->limit & MAP_PREFAULT_MADVISE) &&
3833 vmstats.v_free_count < vmstats.v_free_reserved) {
3838 * Ignore list markers and ignore pages we cannot instantly
3839 * busy (while holding the object token).
3841 if (p->flags & PG_MARKER)
3843 if (vm_page_busy_try(p, TRUE))
3845 if (((p->valid & VM_PAGE_BITS_ALL) == VM_PAGE_BITS_ALL) &&
3846 (p->flags & PG_FICTITIOUS) == 0) {
3847 if ((p->queue - p->pc) == PQ_CACHE)
3848 vm_page_deactivate(p);
3849 rel_index = p->pindex - info->start_pindex;
3850 pmap_enter_quick(info->pmap,
3851 info->addr + x86_64_ptob(rel_index), p);
3859 * Return TRUE if the pmap is in shape to trivially pre-fault the specified
3862 * Returns FALSE if it would be non-trivial or if a pte is already loaded
3865 * XXX This is safe only because page table pages are not freed.
3868 pmap_prefault_ok(pmap_t pmap, vm_offset_t addr)
3872 /*spin_lock(&pmap->pm_spin);*/
3873 if ((pte = pmap_pte(pmap, addr)) != NULL) {
3875 /*spin_unlock(&pmap->pm_spin);*/
3879 /*spin_unlock(&pmap->pm_spin);*/
3884 * Change the wiring attribute for a pmap/va pair. The mapping must already
3885 * exist in the pmap. The mapping may or may not be managed.
3888 pmap_change_wiring(pmap_t pmap, vm_offset_t va, boolean_t wired,
3889 vm_map_entry_t entry)
3896 lwkt_gettoken(&pmap->pm_token);
3897 pv = pmap_allocpte_seg(pmap, pmap_pt_pindex(va), NULL, entry, va);
3898 ptep = pv_pte_lookup(pv, pmap_pte_index(va));
3900 if (wired && !pmap_pte_w(ptep))
3901 atomic_add_long(&pv->pv_pmap->pm_stats.wired_count, 1);
3902 else if (!wired && pmap_pte_w(ptep))
3903 atomic_add_long(&pv->pv_pmap->pm_stats.wired_count, -1);
3906 * Wiring is not a hardware characteristic so there is no need to
3907 * invalidate TLB. However, in an SMP environment we must use
3908 * a locked bus cycle to update the pte (if we are not using
3909 * the pmap_inval_*() API that is)... it's ok to do this for simple
3914 atomic_set_long(ptep, PG_W);
3916 atomic_clear_long(ptep, PG_W);
3919 atomic_set_long_nonlocked(ptep, PG_W);
3921 atomic_clear_long_nonlocked(ptep, PG_W);
3924 lwkt_reltoken(&pmap->pm_token);
3930 * Copy the range specified by src_addr/len from the source map to
3931 * the range dst_addr/len in the destination map.
3933 * This routine is only advisory and need not do anything.
3936 pmap_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr,
3937 vm_size_t len, vm_offset_t src_addr)
3944 * Zero the specified physical page.
3946 * This function may be called from an interrupt and no locking is
3950 pmap_zero_page(vm_paddr_t phys)
3952 vm_offset_t va = PHYS_TO_DMAP(phys);
3954 pagezero((void *)va);
3958 * pmap_page_assertzero:
3960 * Assert that a page is empty, panic if it isn't.
3963 pmap_page_assertzero(vm_paddr_t phys)
3965 vm_offset_t va = PHYS_TO_DMAP(phys);
3968 for (i = 0; i < PAGE_SIZE; i += sizeof(long)) {
3969 if (*(long *)((char *)va + i) != 0) {
3970 panic("pmap_page_assertzero() @ %p not zero!",
3971 (void *)(intptr_t)va);
3979 * Zero part of a physical page by mapping it into memory and clearing
3980 * its contents with bzero.
3982 * off and size may not cover an area beyond a single hardware page.
3985 pmap_zero_page_area(vm_paddr_t phys, int off, int size)
3987 vm_offset_t virt = PHYS_TO_DMAP(phys);
3989 bzero((char *)virt + off, size);
3995 * Copy the physical page from the source PA to the target PA.
3996 * This function may be called from an interrupt. No locking
4000 pmap_copy_page(vm_paddr_t src, vm_paddr_t dst)
4002 vm_offset_t src_virt, dst_virt;
4004 src_virt = PHYS_TO_DMAP(src);
4005 dst_virt = PHYS_TO_DMAP(dst);
4006 bcopy((void *)src_virt, (void *)dst_virt, PAGE_SIZE);
4010 * pmap_copy_page_frag:
4012 * Copy the physical page from the source PA to the target PA.
4013 * This function may be called from an interrupt. No locking
4017 pmap_copy_page_frag(vm_paddr_t src, vm_paddr_t dst, size_t bytes)
4019 vm_offset_t src_virt, dst_virt;
4021 src_virt = PHYS_TO_DMAP(src);
4022 dst_virt = PHYS_TO_DMAP(dst);
4024 bcopy((char *)src_virt + (src & PAGE_MASK),
4025 (char *)dst_virt + (dst & PAGE_MASK),
4030 * Returns true if the pmap's pv is one of the first 16 pvs linked to from
4031 * this page. This count may be changed upwards or downwards in the future;
4032 * it is only necessary that true be returned for a small subset of pmaps
4033 * for proper page aging.
4036 pmap_page_exists_quick(pmap_t pmap, vm_page_t m)
4041 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
4044 vm_page_spin_lock(m);
4045 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
4046 if (pv->pv_pmap == pmap) {
4047 vm_page_spin_unlock(m);
4054 vm_page_spin_unlock(m);
4059 * Remove all pages from specified address space this aids process exit
4060 * speeds. Also, this code may be special cased for the current process
4064 pmap_remove_pages(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
4066 pmap_remove_noinval(pmap, sva, eva);
4071 * pmap_testbit tests bits in pte's note that the testbit/clearbit
4072 * routines are inline, and a lot of things compile-time evaluate.
4076 pmap_testbit(vm_page_t m, int bit)
4081 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
4084 if (TAILQ_FIRST(&m->md.pv_list) == NULL)
4086 vm_page_spin_lock(m);
4087 if (TAILQ_FIRST(&m->md.pv_list) == NULL) {
4088 vm_page_spin_unlock(m);
4092 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
4094 * if the bit being tested is the modified bit, then
4095 * mark clean_map and ptes as never
4098 if (bit & (PG_A|PG_M)) {
4099 if (!pmap_track_modified(pv->pv_pindex))
4103 #if defined(PMAP_DIAGNOSTIC)
4104 if (pv->pv_pmap == NULL) {
4105 kprintf("Null pmap (tb) at pindex: %"PRIu64"\n",
4110 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_pindex << PAGE_SHIFT);
4112 vm_page_spin_unlock(m);
4116 vm_page_spin_unlock(m);
4121 * This routine is used to modify bits in ptes. Only one bit should be
4122 * specified. PG_RW requires special handling.
4124 * Caller must NOT hold any spin locks
4128 pmap_clearbit(vm_page_t m, int bit)
4130 struct pmap_inval_info info;
4137 vm_page_flag_clear(m, PG_WRITEABLE);
4138 if (!pmap_initialized || (m->flags & PG_FICTITIOUS)) {
4145 * Loop over all current mappings setting/clearing as appropos If
4146 * setting RO do we need to clear the VAC?
4148 * NOTE: When clearing PG_M we could also (not implemented) drop
4149 * through to the PG_RW code and clear PG_RW too, forcing
4150 * a fault on write to redetect PG_M for virtual kernels, but
4151 * it isn't necessary since virtual kernels invalidate the
4152 * pte when they clear the VPTE_M bit in their virtual page
4155 * NOTE: Does not re-dirty the page when clearing only PG_M.
4157 if ((bit & PG_RW) == 0) {
4158 vm_page_spin_lock(m);
4159 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
4160 #if defined(PMAP_DIAGNOSTIC)
4161 if (pv->pv_pmap == NULL) {
4162 kprintf("Null pmap (cb) at pindex: %"PRIu64"\n",
4167 pte = pmap_pte_quick(pv->pv_pmap,
4168 pv->pv_pindex << PAGE_SHIFT);
4171 atomic_clear_long(pte, bit);
4173 vm_page_spin_unlock(m);
4178 * Clear PG_RW. Also clears PG_M and marks the page dirty if PG_M
4181 pmap_inval_init(&info);
4184 vm_page_spin_lock(m);
4185 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
4187 * don't write protect pager mappings
4189 if (!pmap_track_modified(pv->pv_pindex))
4192 #if defined(PMAP_DIAGNOSTIC)
4193 if (pv->pv_pmap == NULL) {
4194 kprintf("Null pmap (cb) at pindex: %"PRIu64"\n",
4200 * Skip pages which do not have PG_RW set.
4202 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_pindex << PAGE_SHIFT);
4203 if ((*pte & PG_RW) == 0)
4209 if (pv_hold_try(pv) == 0) {
4210 vm_page_spin_unlock(m);
4211 pv_lock(pv); /* held, now do a blocking lock */
4212 pv_put(pv); /* and release */
4213 goto restart; /* anything could have happened */
4216 save_pmap = pv->pv_pmap;
4217 vm_page_spin_unlock(m);
4218 pmap_inval_interlock(&info, save_pmap,
4219 (vm_offset_t)pv->pv_pindex << PAGE_SHIFT);
4220 KKASSERT(pv->pv_pmap == save_pmap);
4224 if (atomic_cmpset_long(pte, pbits,
4225 pbits & ~(PG_RW|PG_M))) {
4229 pmap_inval_deinterlock(&info, save_pmap);
4230 vm_page_spin_lock(m);
4233 * If PG_M was found to be set while we were clearing PG_RW
4234 * we also clear PG_M (done above) and mark the page dirty.
4235 * Callers expect this behavior.
4241 vm_page_spin_unlock(m);
4242 pmap_inval_done(&info);
4246 * Lower the permission for all mappings to a given page.
4248 * Page must be busied by caller.
4251 pmap_page_protect(vm_page_t m, vm_prot_t prot)
4253 /* JG NX support? */
4254 if ((prot & VM_PROT_WRITE) == 0) {
4255 if (prot & (VM_PROT_READ | VM_PROT_EXECUTE)) {
4257 * NOTE: pmap_clearbit(.. PG_RW) also clears
4258 * the PG_WRITEABLE flag in (m).
4260 pmap_clearbit(m, PG_RW);
4268 pmap_phys_address(vm_pindex_t ppn)
4270 return (x86_64_ptob(ppn));
4274 * Return a count of reference bits for a page, clearing those bits.
4275 * It is not necessary for every reference bit to be cleared, but it
4276 * is necessary that 0 only be returned when there are truly no
4277 * reference bits set.
4279 * XXX: The exact number of bits to check and clear is a matter that
4280 * should be tested and standardized at some point in the future for
4281 * optimal aging of shared pages.
4283 * This routine may not block.
4286 pmap_ts_referenced(vm_page_t m)
4292 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
4295 vm_page_spin_lock(m);
4296 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
4297 if (!pmap_track_modified(pv->pv_pindex))
4299 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_pindex << PAGE_SHIFT);
4300 if (pte && (*pte & PG_A)) {
4302 atomic_clear_long(pte, PG_A);
4304 atomic_clear_long_nonlocked(pte, PG_A);
4311 vm_page_spin_unlock(m);
4318 * Return whether or not the specified physical page was modified
4319 * in any physical maps.
4322 pmap_is_modified(vm_page_t m)
4326 res = pmap_testbit(m, PG_M);
4331 * Clear the modify bits on the specified physical page.
4334 pmap_clear_modify(vm_page_t m)
4336 pmap_clearbit(m, PG_M);
4340 * pmap_clear_reference:
4342 * Clear the reference bit on the specified physical page.
4345 pmap_clear_reference(vm_page_t m)
4347 pmap_clearbit(m, PG_A);
4351 * Miscellaneous support routines follow
4356 i386_protection_init(void)
4360 /* JG NX support may go here; No VM_PROT_EXECUTE ==> set NX bit */
4361 kp = protection_codes;
4362 for (prot = 0; prot < 8; prot++) {
4364 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_NONE:
4366 * Read access is also 0. There isn't any execute bit,
4367 * so just make it readable.
4369 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_NONE:
4370 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_EXECUTE:
4371 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_EXECUTE:
4374 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_NONE:
4375 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_EXECUTE:
4376 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_NONE:
4377 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE:
4385 * Map a set of physical memory pages into the kernel virtual
4386 * address space. Return a pointer to where it is mapped. This
4387 * routine is intended to be used for mapping device memory,
4390 * NOTE: we can't use pgeflag unless we invalidate the pages one at
4394 pmap_mapdev(vm_paddr_t pa, vm_size_t size)
4396 vm_offset_t va, tmpva, offset;
4399 offset = pa & PAGE_MASK;
4400 size = roundup(offset + size, PAGE_SIZE);
4402 va = kmem_alloc_nofault(&kernel_map, size, PAGE_SIZE);
4404 panic("pmap_mapdev: Couldn't alloc kernel virtual memory");
4406 pa = pa & ~PAGE_MASK;
4407 for (tmpva = va; size > 0;) {
4408 pte = vtopte(tmpva);
4409 *pte = pa | PG_RW | PG_V; /* | pgeflag; */
4417 return ((void *)(va + offset));
4421 pmap_mapdev_uncacheable(vm_paddr_t pa, vm_size_t size)
4423 vm_offset_t va, tmpva, offset;
4426 offset = pa & PAGE_MASK;
4427 size = roundup(offset + size, PAGE_SIZE);
4429 va = kmem_alloc_nofault(&kernel_map, size, PAGE_SIZE);
4431 panic("pmap_mapdev: Couldn't alloc kernel virtual memory");
4433 pa = pa & ~PAGE_MASK;
4434 for (tmpva = va; size > 0;) {
4435 pte = vtopte(tmpva);
4436 *pte = pa | PG_RW | PG_V | PG_N; /* | pgeflag; */
4444 return ((void *)(va + offset));
4448 pmap_unmapdev(vm_offset_t va, vm_size_t size)
4450 vm_offset_t base, offset;
4452 base = va & ~PAGE_MASK;
4453 offset = va & PAGE_MASK;
4454 size = roundup(offset + size, PAGE_SIZE);
4455 pmap_qremove(va, size >> PAGE_SHIFT);
4456 kmem_free(&kernel_map, base, size);
4460 * perform the pmap work for mincore
4463 pmap_mincore(pmap_t pmap, vm_offset_t addr)
4465 pt_entry_t *ptep, pte;
4469 lwkt_gettoken(&pmap->pm_token);
4470 ptep = pmap_pte(pmap, addr);
4472 if (ptep && (pte = *ptep) != 0) {
4475 val = MINCORE_INCORE;
4476 if ((pte & PG_MANAGED) == 0)
4479 pa = pte & PG_FRAME;
4481 m = PHYS_TO_VM_PAGE(pa);
4487 val |= MINCORE_MODIFIED|MINCORE_MODIFIED_OTHER;
4489 * Modified by someone
4491 else if (m->dirty || pmap_is_modified(m))
4492 val |= MINCORE_MODIFIED_OTHER;
4497 val |= MINCORE_REFERENCED|MINCORE_REFERENCED_OTHER;
4500 * Referenced by someone
4502 else if ((m->flags & PG_REFERENCED) || pmap_ts_referenced(m)) {
4503 val |= MINCORE_REFERENCED_OTHER;
4504 vm_page_flag_set(m, PG_REFERENCED);
4508 lwkt_reltoken(&pmap->pm_token);
4514 * Replace p->p_vmspace with a new one. If adjrefs is non-zero the new
4515 * vmspace will be ref'd and the old one will be deref'd.
4517 * The vmspace for all lwps associated with the process will be adjusted
4518 * and cr3 will be reloaded if any lwp is the current lwp.
4520 * The process must hold the vmspace->vm_map.token for oldvm and newvm
4523 pmap_replacevm(struct proc *p, struct vmspace *newvm, int adjrefs)
4525 struct vmspace *oldvm;
4528 oldvm = p->p_vmspace;
4529 if (oldvm != newvm) {
4531 sysref_get(&newvm->vm_sysref);
4532 p->p_vmspace = newvm;
4533 KKASSERT(p->p_nthreads == 1);
4534 lp = RB_ROOT(&p->p_lwp_tree);
4535 pmap_setlwpvm(lp, newvm);
4537 sysref_put(&oldvm->vm_sysref);
4542 * Set the vmspace for a LWP. The vmspace is almost universally set the
4543 * same as the process vmspace, but virtual kernels need to swap out contexts
4544 * on a per-lwp basis.
4546 * Caller does not necessarily hold any vmspace tokens. Caller must control
4547 * the lwp (typically be in the context of the lwp). We use a critical
4548 * section to protect against statclock and hardclock (statistics collection).
4551 pmap_setlwpvm(struct lwp *lp, struct vmspace *newvm)
4553 struct vmspace *oldvm;
4556 oldvm = lp->lwp_vmspace;
4558 if (oldvm != newvm) {
4560 lp->lwp_vmspace = newvm;
4561 if (curthread->td_lwp == lp) {
4562 pmap = vmspace_pmap(newvm);
4564 atomic_set_cpumask(&pmap->pm_active, mycpu->gd_cpumask);
4565 if (pmap->pm_active & CPUMASK_LOCK)
4566 pmap_interlock_wait(newvm);
4568 pmap->pm_active |= 1;
4570 #if defined(SWTCH_OPTIM_STATS)
4573 curthread->td_pcb->pcb_cr3 = vtophys(pmap->pm_pml4);
4574 curthread->td_pcb->pcb_cr3 |= PG_RW | PG_U | PG_V;
4575 load_cr3(curthread->td_pcb->pcb_cr3);
4576 pmap = vmspace_pmap(oldvm);
4578 atomic_clear_cpumask(&pmap->pm_active, mycpu->gd_cpumask);
4580 pmap->pm_active &= ~(cpumask_t)1;
4590 * Called when switching to a locked pmap, used to interlock against pmaps
4591 * undergoing modifications to prevent us from activating the MMU for the
4592 * target pmap until all such modifications have completed. We have to do
4593 * this because the thread making the modifications has already set up its
4594 * SMP synchronization mask.
4596 * This function cannot sleep!
4601 pmap_interlock_wait(struct vmspace *vm)
4603 struct pmap *pmap = &vm->vm_pmap;
4605 if (pmap->pm_active & CPUMASK_LOCK) {
4607 KKASSERT(curthread->td_critcount >= 2);
4608 DEBUG_PUSH_INFO("pmap_interlock_wait");
4609 while (pmap->pm_active & CPUMASK_LOCK) {
4611 lwkt_process_ipiq();
4621 pmap_addr_hint(vm_object_t obj, vm_offset_t addr, vm_size_t size)
4624 if ((obj == NULL) || (size < NBPDR) || (obj->type != OBJT_DEVICE)) {
4628 addr = (addr + (NBPDR - 1)) & ~(NBPDR - 1);
4633 * Used by kmalloc/kfree, page already exists at va
4636 pmap_kvtom(vm_offset_t va)
4638 return(PHYS_TO_VM_PAGE(*vtopte(va) & PG_FRAME));
4642 * Initialize machine-specific shared page directory support. This
4643 * is executed when a VM object is created.
4646 pmap_object_init(vm_object_t object)
4648 object->md.pmap_rw = NULL;
4649 object->md.pmap_ro = NULL;
4653 * Clean up machine-specific shared page directory support. This
4654 * is executed when a VM object is destroyed.
4657 pmap_object_free(vm_object_t object)
4661 if ((pmap = object->md.pmap_rw) != NULL) {
4662 object->md.pmap_rw = NULL;
4663 kprintf("pmap_object_free: destroying pmap %p in obj %p\n",
4665 pmap_remove_noinval(pmap,
4666 VM_MIN_USER_ADDRESS, VM_MAX_USER_ADDRESS);
4667 pmap->pm_active = 0;
4670 kfree(pmap, M_OBJPMAP);
4672 if ((pmap = object->md.pmap_ro) != NULL) {
4673 object->md.pmap_ro = NULL;
4674 kprintf("pmap_object_free: destroying pmap %p in obj %p\n",
4676 pmap_remove_noinval(pmap,
4677 VM_MIN_USER_ADDRESS, VM_MAX_USER_ADDRESS);
4678 pmap->pm_active = 0;
4681 kfree(pmap, M_OBJPMAP);