4 * Copyright (c) 1991 Regents of the University of California.
6 * Copyright (c) 1994 John S. Dyson
8 * Copyright (c) 1994 David Greenman
11 * This code is derived from software contributed to Berkeley by
12 * the Systems Programming Group of the University of Utah Computer
13 * Science Department and William Jolitz of UUNET Technologies Inc.
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 * 3. All advertising materials mentioning features or use of this software
24 * must display the following acknowledgement:
25 * This product includes software developed by the University of
26 * California, Berkeley and its contributors.
27 * 4. Neither the name of the University nor the names of its contributors
28 * may be used to endorse or promote products derived from this software
29 * without specific prior written permission.
31 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
32 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
35 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
39 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
40 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
44 * $FreeBSD: src/sys/i386/i386/pmap.c,v 1.250.2.18 2002/03/06 22:48:53 silby Exp $
48 * Manages physical address maps.
50 * In most cases we hold page table pages busy in order to manipulate them.
53 * PMAP_DEBUG - see platform/pc32/include/pmap.h
56 #include "opt_disable_pse.h"
58 #include "opt_msgbuf.h"
60 #include <sys/param.h>
61 #include <sys/systm.h>
62 #include <sys/kernel.h>
64 #include <sys/msgbuf.h>
65 #include <sys/vmmeter.h>
67 #include <sys/thread.h>
70 #include <vm/vm_param.h>
71 #include <sys/sysctl.h>
73 #include <vm/vm_kern.h>
74 #include <vm/vm_page.h>
75 #include <vm/vm_map.h>
76 #include <vm/vm_object.h>
77 #include <vm/vm_extern.h>
78 #include <vm/vm_pageout.h>
79 #include <vm/vm_pager.h>
80 #include <vm/vm_zone.h>
83 #include <sys/thread2.h>
84 #include <sys/sysref2.h>
85 #include <sys/spinlock2.h>
86 #include <vm/vm_page2.h>
88 #include <machine/cputypes.h>
89 #include <machine/md_var.h>
90 #include <machine/specialreg.h>
91 #include <machine/smp.h>
92 #include <machine_base/apic/apicreg.h>
93 #include <machine/globaldata.h>
94 #include <machine/pmap.h>
95 #include <machine/pmap_inval.h>
97 #define PMAP_KEEP_PDIRS
98 #ifndef PMAP_SHPGPERPROC
99 #define PMAP_SHPGPERPROC 200
100 #define PMAP_PVLIMIT 1400000 /* i386 kvm problems */
103 #if defined(DIAGNOSTIC)
104 #define PMAP_DIAGNOSTIC
109 #if !defined(PMAP_DIAGNOSTIC)
110 #define PMAP_INLINE __inline
116 * Get PDEs and PTEs for user/kernel address space
118 #define pmap_pde(m, v) (&((m)->pm_pdir[(vm_offset_t)(v) >> PDRSHIFT]))
119 #define pdir_pde(m, v) (m[(vm_offset_t)(v) >> PDRSHIFT])
121 #define pmap_pde_v(pte) ((*(int *)pte & PG_V) != 0)
122 #define pmap_pte_w(pte) ((*(int *)pte & PG_W) != 0)
123 #define pmap_pte_m(pte) ((*(int *)pte & PG_M) != 0)
124 #define pmap_pte_u(pte) ((*(int *)pte & PG_A) != 0)
125 #define pmap_pte_v(pte) ((*(int *)pte & PG_V) != 0)
128 * Given a map and a machine independent protection code,
129 * convert to a vax protection code.
131 #define pte_prot(m, p) \
132 (protection_codes[p & (VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE)])
133 static int protection_codes[8];
135 struct pmap kernel_pmap;
136 static TAILQ_HEAD(,pmap) pmap_list = TAILQ_HEAD_INITIALIZER(pmap_list);
138 vm_paddr_t avail_start; /* PA of first available physical page */
139 vm_paddr_t avail_end; /* PA of last available physical page */
140 vm_offset_t virtual_start; /* VA of first avail page (after kernel bss) */
141 vm_offset_t virtual_end; /* VA of last avail page (end of kernel AS) */
142 vm_offset_t virtual2_start;
143 vm_offset_t virtual2_end;
144 vm_offset_t KvaStart; /* VA start of KVA space */
145 vm_offset_t KvaEnd; /* VA end of KVA space (non-inclusive) */
146 vm_offset_t KvaSize; /* max size of kernel virtual address space */
147 static boolean_t pmap_initialized = FALSE; /* Has pmap_init completed? */
148 static int pgeflag; /* PG_G or-in */
149 static int pseflag; /* PG_PS or-in */
151 static vm_object_t kptobj;
154 vm_offset_t kernel_vm_end;
157 * Data for the pv entry allocation mechanism
159 static vm_zone_t pvzone;
160 static struct vm_zone pvzone_store;
161 static struct vm_object pvzone_obj;
162 static int pv_entry_count=0, pv_entry_max=0, pv_entry_high_water=0;
163 static int pmap_pagedaemon_waken = 0;
164 static struct pv_entry *pvinit;
167 * Considering all the issues I'm having with pmap caching, if breakage
168 * continues to occur, and for debugging, I've added a sysctl that will
169 * just do an unconditional invltlb.
171 static int dreadful_invltlb;
173 SYSCTL_INT(_vm, OID_AUTO, dreadful_invltlb,
174 CTLFLAG_RW, &dreadful_invltlb, 0, "Debugging sysctl to force invltlb on pmap operations");
177 * All those kernel PT submaps that BSD is so fond of
179 pt_entry_t *CMAP1 = NULL, *ptmmap;
180 caddr_t CADDR1 = NULL, ptvmmap = NULL;
181 static pt_entry_t *msgbufmap;
182 struct msgbuf *msgbufp=NULL;
187 static pt_entry_t *pt_crashdumpmap;
188 static caddr_t crashdumpmap;
190 extern pt_entry_t *SMPpt;
192 static PMAP_INLINE void free_pv_entry (pv_entry_t pv);
193 static unsigned * get_ptbase (pmap_t pmap);
194 static pv_entry_t get_pv_entry (void);
195 static void i386_protection_init (void);
196 static __inline void pmap_clearbit (vm_page_t m, int bit);
198 static void pmap_remove_all (vm_page_t m);
199 static void pmap_remove_pte (struct pmap *pmap, unsigned *ptq,
200 vm_offset_t sva, pmap_inval_info_t info);
201 static void pmap_remove_page (struct pmap *pmap,
202 vm_offset_t va, pmap_inval_info_t info);
203 static void pmap_remove_entry (struct pmap *pmap, vm_page_t m,
204 vm_offset_t va, pmap_inval_info_t info);
205 static boolean_t pmap_testbit (vm_page_t m, int bit);
206 static void pmap_insert_entry (pmap_t pmap, pv_entry_t pv,
207 vm_offset_t va, vm_page_t mpte, vm_page_t m);
209 static vm_page_t pmap_allocpte (pmap_t pmap, vm_offset_t va);
211 static int pmap_release_free_page (pmap_t pmap, vm_page_t p);
212 static vm_page_t _pmap_allocpte (pmap_t pmap, unsigned ptepindex);
213 static unsigned * pmap_pte_quick (pmap_t pmap, vm_offset_t va);
214 static vm_page_t pmap_page_lookup (vm_object_t object, vm_pindex_t pindex);
215 static void pmap_unuse_pt (pmap_t, vm_offset_t, vm_page_t, pmap_inval_info_t);
216 static vm_offset_t pmap_kmem_choose(vm_offset_t addr);
218 static void pmap_hold(pmap_t pmap);
219 static void pmap_drop(pmap_t pmap);
220 static void pmap_wait(pmap_t pmap, int count);
222 static unsigned pdir4mb;
225 * Move the kernel virtual free pointer to the next
226 * 4MB. This is used to help improve performance
227 * by using a large (4MB) page for much of the kernel
228 * (.text, .data, .bss)
232 pmap_kmem_choose(vm_offset_t addr)
234 vm_offset_t newaddr = addr;
236 if (cpu_feature & CPUID_PSE) {
237 newaddr = (addr + (NBPDR - 1)) & ~(NBPDR - 1);
244 * This function returns a pointer to the pte entry in the pmap and has
245 * the side effect of potentially retaining a cached mapping of the pmap.
247 * The caller must hold vm_token and the returned value is only valid
248 * until the caller blocks or releases the token.
252 pmap_pte(pmap_t pmap, vm_offset_t va)
256 ASSERT_LWKT_TOKEN_HELD(&vm_token);
258 pdeaddr = (unsigned *) pmap_pde(pmap, va);
259 if (*pdeaddr & PG_PS)
262 return get_ptbase(pmap) + i386_btop(va);
268 * pmap_pte using the kernel_pmap
270 * Used for debugging, no requirements.
273 pmap_kernel_pte(vm_offset_t va)
277 pdeaddr = (unsigned *) pmap_pde(&kernel_pmap, va);
278 if (*pdeaddr & PG_PS)
281 return (unsigned *)vtopte(va);
288 * Super fast pmap_pte routine best used when scanning the pv lists.
289 * This eliminates many course-grained invltlb calls. Note that many of
290 * the pv list scans are across different pmaps and it is very wasteful
291 * to do an entire invltlb when checking a single mapping.
293 * Should only be called while in a critical section.
295 * The caller must hold vm_token and the returned value is only valid
296 * until the caller blocks or releases the token.
300 pmap_pte_quick(pmap_t pmap, vm_offset_t va)
302 struct mdglobaldata *gd = mdcpu;
305 ASSERT_LWKT_TOKEN_HELD(&vm_token);
306 if ((pde = (unsigned) pmap->pm_pdir[va >> PDRSHIFT]) != 0) {
307 unsigned frame = (unsigned) pmap->pm_pdir[PTDPTDI] & PG_FRAME;
308 unsigned index = i386_btop(va);
309 /* are we current address space or kernel? */
310 if ((pmap == &kernel_pmap) ||
311 (frame == (((unsigned) PTDpde) & PG_FRAME))) {
312 return (unsigned *) PTmap + index;
314 newpf = pde & PG_FRAME;
315 if (((*(unsigned *)gd->gd_PMAP1) & PG_FRAME) != newpf) {
316 *(unsigned *)gd->gd_PMAP1 = newpf | PG_RW | PG_V;
317 cpu_invlpg(gd->gd_PADDR1);
319 return gd->gd_PADDR1 + (index & (NPTEPG - 1));
326 * Bootstrap the system enough to run with virtual memory.
328 * On the i386 this is called after mapping has already been enabled
329 * and just syncs the pmap module with what has already been done.
330 * [We can't call it easily with mapping off since the kernel is not
331 * mapped with PA == VA, hence we would have to relocate every address
332 * from the linked base (virtual) address "KERNBASE" to the actual
333 * (physical) address starting relative to 0]
336 pmap_bootstrap(vm_paddr_t firstaddr, vm_paddr_t loadaddr)
340 struct mdglobaldata *gd;
344 KvaStart = (vm_offset_t)VADDR(PTDPTDI, 0);
345 KvaSize = (vm_offset_t)VADDR(APTDPTDI, 0) - KvaStart;
346 KvaEnd = KvaStart + KvaSize;
348 avail_start = firstaddr;
351 * XXX The calculation of virtual_start is wrong. It's NKPT*PAGE_SIZE
352 * too large. It should instead be correctly calculated in locore.s and
353 * not based on 'first' (which is a physical address, not a virtual
354 * address, for the start of unused physical memory). The kernel
355 * page tables are NOT double mapped and thus should not be included
356 * in this calculation.
358 virtual_start = (vm_offset_t) KERNBASE + firstaddr;
359 virtual_start = pmap_kmem_choose(virtual_start);
360 virtual_end = VADDR(KPTDI+NKPDE-1, NPTEPG-1);
363 * Initialize protection array.
365 i386_protection_init();
368 * The kernel's pmap is statically allocated so we don't have to use
369 * pmap_create, which is unlikely to work correctly at this part of
370 * the boot sequence (XXX and which no longer exists).
372 * The kernel_pmap's pm_pteobj is used only for locking and not
375 kernel_pmap.pm_pdir = (pd_entry_t *)(KERNBASE + (u_int)IdlePTD);
376 kernel_pmap.pm_count = 1;
377 kernel_pmap.pm_active = (cpumask_t)-1 & ~CPUMASK_LOCK;
378 kernel_pmap.pm_pteobj = &kernel_object;
379 TAILQ_INIT(&kernel_pmap.pm_pvlist);
380 TAILQ_INIT(&kernel_pmap.pm_pvlist_free);
381 spin_init(&kernel_pmap.pm_spin);
382 lwkt_token_init(&kernel_pmap.pm_token, "kpmap_tok");
386 * Reserve some special page table entries/VA space for temporary
389 #define SYSMAP(c, p, v, n) \
390 v = (c)va; va += ((n)*PAGE_SIZE); p = pte; pte += (n);
393 pte = (pt_entry_t *) pmap_kernel_pte(va);
396 * CMAP1/CMAP2 are used for zeroing and copying pages.
398 SYSMAP(caddr_t, CMAP1, CADDR1, 1)
403 SYSMAP(caddr_t, pt_crashdumpmap, crashdumpmap, MAXDUMPPGS);
406 * ptvmmap is used for reading arbitrary physical pages via
409 SYSMAP(caddr_t, ptmmap, ptvmmap, 1)
412 * msgbufp is used to map the system message buffer.
413 * XXX msgbufmap is not used.
415 SYSMAP(struct msgbuf *, msgbufmap, msgbufp,
416 atop(round_page(MSGBUF_SIZE)))
421 for (i = 0; i < NKPT; i++)
425 * PG_G is terribly broken on SMP because we IPI invltlb's in some
426 * cases rather then invl1pg. Actually, I don't even know why it
427 * works under UP because self-referential page table mappings
432 if (cpu_feature & CPUID_PGE)
437 * Initialize the 4MB page size flag
441 * The 4MB page version of the initial
442 * kernel page mapping.
446 #if !defined(DISABLE_PSE)
447 if (cpu_feature & CPUID_PSE) {
450 * Note that we have enabled PSE mode
453 ptditmp = *((unsigned *)PTmap + i386_btop(KERNBASE));
454 ptditmp &= ~(NBPDR - 1);
455 ptditmp |= PG_V | PG_RW | PG_PS | PG_U | pgeflag;
460 * Enable the PSE mode. If we are SMP we can't do this
461 * now because the APs will not be able to use it when
464 load_cr4(rcr4() | CR4_PSE);
467 * We can do the mapping here for the single processor
468 * case. We simply ignore the old page table page from
472 * For SMP, we still need 4K pages to bootstrap APs,
473 * PSE will be enabled as soon as all APs are up.
475 PTD[KPTDI] = (pd_entry_t)ptditmp;
476 kernel_pmap.pm_pdir[KPTDI] = (pd_entry_t)ptditmp;
483 * We need to finish setting up the globaldata page for the BSP.
484 * locore has already populated the page table for the mdglobaldata
487 pg = MDGLOBALDATA_BASEALLOC_PAGES;
488 gd = &CPU_prvspace[0].mdglobaldata;
489 gd->gd_CMAP1 = &SMPpt[pg + 0];
490 gd->gd_CMAP2 = &SMPpt[pg + 1];
491 gd->gd_CMAP3 = &SMPpt[pg + 2];
492 gd->gd_PMAP1 = &SMPpt[pg + 3];
493 gd->gd_GDMAP1 = &PTD[APTDPTDI];
494 gd->gd_CADDR1 = CPU_prvspace[0].CPAGE1;
495 gd->gd_CADDR2 = CPU_prvspace[0].CPAGE2;
496 gd->gd_CADDR3 = CPU_prvspace[0].CPAGE3;
497 gd->gd_PADDR1 = (unsigned *)CPU_prvspace[0].PPAGE1;
498 gd->gd_GDADDR1= (unsigned *)VADDR(APTDPTDI, 0);
505 * Set 4mb pdir for mp startup
510 if (pseflag && (cpu_feature & CPUID_PSE)) {
511 load_cr4(rcr4() | CR4_PSE);
512 if (pdir4mb && mycpu->gd_cpuid == 0) { /* only on BSP */
513 kernel_pmap.pm_pdir[KPTDI] =
514 PTD[KPTDI] = (pd_entry_t)pdir4mb;
522 * Initialize the pmap module, called by vm_init()
524 * Called from the low level boot code only.
533 * object for kernel page table pages
535 kptobj = vm_object_allocate(OBJT_DEFAULT, NKPDE);
538 * Allocate memory for random pmap data structures. Includes the
542 for(i = 0; i < vm_page_array_size; i++) {
545 m = &vm_page_array[i];
546 TAILQ_INIT(&m->md.pv_list);
547 m->md.pv_list_count = 0;
551 * init the pv free list
553 initial_pvs = vm_page_array_size;
554 if (initial_pvs < MINPV)
556 pvzone = &pvzone_store;
557 pvinit = (void *)kmem_alloc(&kernel_map,
558 initial_pvs * sizeof (struct pv_entry));
559 zbootinit(pvzone, "PV ENTRY", sizeof (struct pv_entry),
560 pvinit, initial_pvs);
563 * Now it is safe to enable pv_table recording.
565 pmap_initialized = TRUE;
569 * Initialize the address space (zone) for the pv_entries. Set a
570 * high water mark so that the system can recover from excessive
571 * numbers of pv entries.
573 * Called from the low level boot code only.
578 int shpgperproc = PMAP_SHPGPERPROC;
581 TUNABLE_INT_FETCH("vm.pmap.shpgperproc", &shpgperproc);
582 pv_entry_max = shpgperproc * maxproc + vm_page_array_size;
586 * Horrible hack for systems with a lot of memory running i386.
587 * the calculated pv_entry_max can wind up eating a ton of KVM
588 * so put a cap on the number of entries if the user did not
589 * change any of the values. This saves about 44MB of KVM on
590 * boxes with 3+GB of ram.
592 * On the flip side, this makes it more likely that some setups
593 * will run out of pv entries. Those sysads will have to bump
594 * the limit up with vm.pamp.pv_entries or vm.pmap.shpgperproc.
596 if (shpgperproc == PMAP_SHPGPERPROC) {
597 if (pv_entry_max > PMAP_PVLIMIT)
598 pv_entry_max = PMAP_PVLIMIT;
601 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max);
602 pv_entry_high_water = 9 * (pv_entry_max / 10);
605 * Subtract out pages already installed in the zone (hack)
607 entry_max = pv_entry_max - vm_page_array_size;
611 zinitna(pvzone, &pvzone_obj, NULL, 0, entry_max, ZONE_INTERRUPT, 1);
615 /***************************************************
616 * Low level helper routines.....
617 ***************************************************/
622 test_m_maps_pv(vm_page_t m, pv_entry_t pv)
628 KKASSERT(pv->pv_m == m);
630 TAILQ_FOREACH(spv, &m->md.pv_list, pv_list) {
637 panic("test_m_maps_pv: failed m %p pv %p", m, pv);
641 ptbase_assert(struct pmap *pmap)
643 unsigned frame = (unsigned) pmap->pm_pdir[PTDPTDI] & PG_FRAME;
645 /* are we current address space or kernel? */
646 if (pmap == &kernel_pmap || frame == (((unsigned)PTDpde) & PG_FRAME))
648 KKASSERT(frame == (*mdcpu->gd_GDMAP1 & PG_FRAME));
653 #define test_m_maps_pv(m, pv)
654 #define ptbase_assert(pmap)
658 #if defined(PMAP_DIAGNOSTIC)
661 * This code checks for non-writeable/modified pages.
662 * This should be an invalid condition.
665 pmap_nw_modified(pt_entry_t ptea)
671 if ((pte & (PG_M|PG_RW)) == PG_M)
680 * This routine defines the region(s) of memory that should not be tested
681 * for the modified bit.
685 static PMAP_INLINE int
686 pmap_track_modified(vm_offset_t va)
688 if ((va < clean_sva) || (va >= clean_eva))
695 * Retrieve the mapped page table base for a particular pmap. Use our self
696 * mapping for the kernel_pmap or our current pmap.
698 * For foreign pmaps we use the per-cpu page table map. Since this involves
699 * installing a ptd it's actually (per-process x per-cpu). However, we
700 * still cannot depend on our mapping to survive thread switches because
701 * the process might be threaded and switching to another thread for the
702 * same process on the same cpu will allow that other thread to make its
705 * This could be a bit confusing but the jist is for something like the
706 * vkernel which uses foreign pmaps all the time this represents a pretty
707 * good cache that avoids unnecessary invltlb()s.
709 * The caller must hold vm_token and the returned value is only valid
710 * until the caller blocks or releases the token.
713 get_ptbase(pmap_t pmap)
715 unsigned frame = (unsigned) pmap->pm_pdir[PTDPTDI] & PG_FRAME;
716 struct mdglobaldata *gd = mdcpu;
718 ASSERT_LWKT_TOKEN_HELD(&vm_token);
721 * We can use PTmap if the pmap is our current address space or
722 * the kernel address space.
724 if (pmap == &kernel_pmap || frame == (((unsigned) PTDpde) & PG_FRAME)) {
725 return (unsigned *) PTmap;
729 * Otherwise we use the per-cpu alternative page table map. Each
730 * cpu gets its own map. Because of this we cannot use this map
731 * from interrupts or threads which can preempt.
733 * Even if we already have the map cached we may still have to
734 * invalidate the TLB if another cpu modified a PDE in the map.
736 KKASSERT(gd->mi.gd_intr_nesting_level == 0 &&
737 (gd->mi.gd_curthread->td_flags & TDF_INTTHREAD) == 0);
739 if ((*gd->gd_GDMAP1 & PG_FRAME) != frame) {
740 *gd->gd_GDMAP1 = frame | PG_RW | PG_V;
741 pmap->pm_cached |= gd->mi.gd_cpumask;
743 } else if ((pmap->pm_cached & gd->mi.gd_cpumask) == 0) {
744 pmap->pm_cached |= gd->mi.gd_cpumask;
746 } else if (dreadful_invltlb) {
749 return ((unsigned *)gd->gd_GDADDR1);
755 * Extract the physical page address associated with the map/VA pair.
757 * The caller may hold vm_token if it desires non-blocking operation.
760 pmap_extract(pmap_t pmap, vm_offset_t va)
763 vm_offset_t pdirindex;
765 lwkt_gettoken(&vm_token);
766 pdirindex = va >> PDRSHIFT;
767 if (pmap && (rtval = (unsigned) pmap->pm_pdir[pdirindex])) {
769 if ((rtval & PG_PS) != 0) {
770 rtval &= ~(NBPDR - 1);
771 rtval |= va & (NBPDR - 1);
773 pte = get_ptbase(pmap) + i386_btop(va);
774 rtval = ((*pte & PG_FRAME) | (va & PAGE_MASK));
779 lwkt_reltoken(&vm_token);
783 /***************************************************
784 * Low level mapping routines.....
785 ***************************************************/
788 * Map a wired VM page to a KVA, fully SMP synchronized.
790 * No requirements, non blocking.
793 pmap_kenter(vm_offset_t va, vm_paddr_t pa)
797 pmap_inval_info info;
799 pmap_inval_init(&info);
800 npte = pa | PG_RW | PG_V | pgeflag;
801 pte = (unsigned *)vtopte(va);
802 pmap_inval_interlock(&info, &kernel_pmap, va);
804 pmap_inval_deinterlock(&info, &kernel_pmap);
805 pmap_inval_done(&info);
809 * Map a wired VM page to a KVA, synchronized on current cpu only.
811 * No requirements, non blocking.
814 pmap_kenter_quick(vm_offset_t va, vm_paddr_t pa)
819 npte = pa | PG_RW | PG_V | pgeflag;
820 pte = (unsigned *)vtopte(va);
822 cpu_invlpg((void *)va);
826 * Synchronize a previously entered VA on all cpus.
828 * No requirements, non blocking.
831 pmap_kenter_sync(vm_offset_t va)
833 pmap_inval_info info;
835 pmap_inval_init(&info);
836 pmap_inval_interlock(&info, &kernel_pmap, va);
837 pmap_inval_deinterlock(&info, &kernel_pmap);
838 pmap_inval_done(&info);
842 * Synchronize a previously entered VA on the current cpu only.
844 * No requirements, non blocking.
847 pmap_kenter_sync_quick(vm_offset_t va)
849 cpu_invlpg((void *)va);
853 * Remove a page from the kernel pagetables, fully SMP synchronized.
855 * No requirements, non blocking.
858 pmap_kremove(vm_offset_t va)
861 pmap_inval_info info;
863 pmap_inval_init(&info);
864 pte = (unsigned *)vtopte(va);
865 pmap_inval_interlock(&info, &kernel_pmap, va);
867 pmap_inval_deinterlock(&info, &kernel_pmap);
868 pmap_inval_done(&info);
872 * Remove a page from the kernel pagetables, synchronized on current cpu only.
874 * No requirements, non blocking.
877 pmap_kremove_quick(vm_offset_t va)
880 pte = (unsigned *)vtopte(va);
882 cpu_invlpg((void *)va);
886 * Adjust the permissions of a page in the kernel page table,
887 * synchronized on the current cpu only.
889 * No requirements, non blocking.
892 pmap_kmodify_rw(vm_offset_t va)
894 atomic_set_int(vtopte(va), PG_RW);
895 cpu_invlpg((void *)va);
899 * Adjust the permissions of a page in the kernel page table,
900 * synchronized on the current cpu only.
902 * No requirements, non blocking.
905 pmap_kmodify_nc(vm_offset_t va)
907 atomic_set_int(vtopte(va), PG_N);
908 cpu_invlpg((void *)va);
912 * Map a range of physical addresses into kernel virtual address space.
914 * No requirements, non blocking.
917 pmap_map(vm_offset_t *virtp, vm_paddr_t start, vm_paddr_t end, int prot)
919 vm_offset_t sva, virt;
922 while (start < end) {
923 pmap_kenter(virt, start);
932 * Add a list of wired pages to the kva, fully SMP synchronized.
934 * No requirements, non blocking.
937 pmap_qenter(vm_offset_t va, vm_page_t *m, int count)
941 end_va = va + count * PAGE_SIZE;
943 while (va < end_va) {
946 pte = (unsigned *)vtopte(va);
947 *pte = VM_PAGE_TO_PHYS(*m) | PG_RW | PG_V | pgeflag;
948 cpu_invlpg((void *)va);
953 smp_invltlb(); /* XXX */
958 * Remove pages from KVA, fully SMP synchronized.
960 * No requirements, non blocking.
963 pmap_qremove(vm_offset_t va, int count)
967 end_va = va + count*PAGE_SIZE;
969 while (va < end_va) {
972 pte = (unsigned *)vtopte(va);
974 cpu_invlpg((void *)va);
983 * This routine works like vm_page_lookup() but also blocks as long as the
984 * page is busy. This routine does not busy the page it returns.
986 * The caller must hold the object.
989 pmap_page_lookup(vm_object_t object, vm_pindex_t pindex)
993 ASSERT_LWKT_TOKEN_HELD(vm_object_token(object));
994 m = vm_page_lookup_busy_wait(object, pindex, FALSE, "pplookp");
1000 * Create a new thread and optionally associate it with a (new) process.
1001 * NOTE! the new thread's cpu may not equal the current cpu.
1004 pmap_init_thread(thread_t td)
1006 /* enforce pcb placement */
1007 td->td_pcb = (struct pcb *)(td->td_kstack + td->td_kstack_size) - 1;
1008 td->td_savefpu = &td->td_pcb->pcb_save;
1009 td->td_sp = (char *)td->td_pcb - 16;
1013 * This routine directly affects the fork perf for a process.
1016 pmap_init_proc(struct proc *p)
1020 /***************************************************
1021 * Page table page management routines.....
1022 ***************************************************/
1025 * This routine unwires page table pages, removing and freeing the page
1026 * tale page when the wire count drops to 0.
1028 * The caller must hold vm_token.
1029 * This function can block.
1032 _pmap_unwire_pte(pmap_t pmap, vm_page_t m, pmap_inval_info_t info)
1035 * Wait until we can busy the page ourselves. We cannot have
1036 * any active flushes if we block.
1038 vm_page_busy_wait(m, FALSE, "pmuwpt");
1039 KASSERT(m->queue == PQ_NONE,
1040 ("_pmap_unwire_pte: %p->queue != PQ_NONE", m));
1042 if (m->wire_count == 1) {
1044 * Unmap the page table page.
1046 * NOTE: We must clear pm_cached for all cpus, including
1047 * the current one, when clearing a page directory
1050 pmap_inval_interlock(info, pmap, -1);
1051 KKASSERT(pmap->pm_pdir[m->pindex]);
1052 pmap->pm_pdir[m->pindex] = 0;
1053 pmap->pm_cached = 0;
1054 pmap_inval_deinterlock(info, pmap);
1056 KKASSERT(pmap->pm_stats.resident_count > 0);
1057 --pmap->pm_stats.resident_count;
1059 if (pmap->pm_ptphint == m)
1060 pmap->pm_ptphint = NULL;
1063 * This was our last hold, the page had better be unwired
1064 * after we decrement wire_count.
1066 * FUTURE NOTE: shared page directory page could result in
1067 * multiple wire counts.
1069 vm_page_unwire(m, 0);
1070 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
1072 vm_page_free_zero(m);
1075 KKASSERT(m->wire_count > 1);
1076 if (vm_page_unwire_quick(m))
1077 panic("pmap_unwire_pte: Insufficient wire_count");
1084 * The caller must hold vm_token.
1086 * This function can block.
1088 * This function can race the wire_count 2->1 case because the page
1089 * is not busied during the unwire_quick operation. An eventual
1090 * pmap_release() will catch the case.
1092 static PMAP_INLINE int
1093 pmap_unwire_pte(pmap_t pmap, vm_page_t m, pmap_inval_info_t info)
1095 KKASSERT(m->wire_count > 0);
1096 if (m->wire_count > 1) {
1097 if (vm_page_unwire_quick(m))
1098 panic("pmap_unwire_pte: Insufficient wire_count");
1101 return _pmap_unwire_pte(pmap, m, info);
1106 * After removing a (user) page table entry, this routine is used to
1107 * conditionally free the page, and manage the hold/wire counts.
1109 * The caller must hold vm_token.
1110 * This function can block regardless.
1113 pmap_unuse_pt(pmap_t pmap, vm_offset_t va, vm_page_t mpte,
1114 pmap_inval_info_t info)
1118 ASSERT_LWKT_TOKEN_HELD(vm_object_token(pmap->pm_pteobj));
1120 if (va >= UPT_MIN_ADDRESS)
1124 ptepindex = (va >> PDRSHIFT);
1125 if ((mpte = pmap->pm_ptphint) != NULL &&
1126 mpte->pindex == ptepindex &&
1127 (mpte->flags & PG_BUSY) == 0) {
1130 mpte = pmap_page_lookup(pmap->pm_pteobj, ptepindex);
1131 pmap->pm_ptphint = mpte;
1132 vm_page_wakeup(mpte);
1135 pmap_unwire_pte(pmap, mpte, info);
1139 * Initialize pmap0/vmspace0. This pmap is not added to pmap_list because
1140 * it, and IdlePTD, represents the template used to update all other pmaps.
1142 * On architectures where the kernel pmap is not integrated into the user
1143 * process pmap, this pmap represents the process pmap, not the kernel pmap.
1144 * kernel_pmap should be used to directly access the kernel_pmap.
1149 pmap_pinit0(struct pmap *pmap)
1152 (pd_entry_t *)kmem_alloc_pageable(&kernel_map, PAGE_SIZE);
1153 pmap_kenter((vm_offset_t)pmap->pm_pdir, (vm_offset_t) IdlePTD);
1155 pmap->pm_active = 0;
1156 pmap->pm_cached = 0;
1157 pmap->pm_ptphint = NULL;
1158 TAILQ_INIT(&pmap->pm_pvlist);
1159 TAILQ_INIT(&pmap->pm_pvlist_free);
1160 spin_init(&pmap->pm_spin);
1161 lwkt_token_init(&pmap->pm_token, "pmap_tok");
1162 bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1166 * Initialize a preallocated and zeroed pmap structure,
1167 * such as one in a vmspace structure.
1172 pmap_pinit(struct pmap *pmap)
1177 * No need to allocate page table space yet but we do need a valid
1178 * page directory table.
1180 if (pmap->pm_pdir == NULL) {
1182 (pd_entry_t *)kmem_alloc_pageable(&kernel_map, PAGE_SIZE);
1186 * Allocate an object for the ptes
1188 if (pmap->pm_pteobj == NULL)
1189 pmap->pm_pteobj = vm_object_allocate(OBJT_DEFAULT, PTDPTDI + 1);
1192 * Allocate the page directory page, unless we already have
1193 * one cached. If we used the cached page the wire_count will
1194 * already be set appropriately.
1196 if ((ptdpg = pmap->pm_pdirm) == NULL) {
1197 ptdpg = vm_page_grab(pmap->pm_pteobj, PTDPTDI,
1198 VM_ALLOC_NORMAL | VM_ALLOC_RETRY |
1200 pmap->pm_pdirm = ptdpg;
1201 vm_page_flag_clear(ptdpg, PG_MAPPED);
1202 vm_page_wire(ptdpg);
1203 KKASSERT(ptdpg->valid == VM_PAGE_BITS_ALL);
1204 pmap_kenter((vm_offset_t)pmap->pm_pdir, VM_PAGE_TO_PHYS(ptdpg));
1205 vm_page_wakeup(ptdpg);
1207 pmap->pm_pdir[MPPTDI] = PTD[MPPTDI];
1209 /* install self-referential address mapping entry */
1210 *(unsigned *) (pmap->pm_pdir + PTDPTDI) =
1211 VM_PAGE_TO_PHYS(ptdpg) | PG_V | PG_RW | PG_A | PG_M;
1214 pmap->pm_active = 0;
1215 pmap->pm_cached = 0;
1216 pmap->pm_ptphint = NULL;
1217 TAILQ_INIT(&pmap->pm_pvlist);
1218 TAILQ_INIT(&pmap->pm_pvlist_free);
1219 spin_init(&pmap->pm_spin);
1220 lwkt_token_init(&pmap->pm_token, "pmap_tok");
1221 bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1222 pmap->pm_stats.resident_count = 1;
1226 * Clean up a pmap structure so it can be physically freed. This routine
1227 * is called by the vmspace dtor function. A great deal of pmap data is
1228 * left passively mapped to improve vmspace management so we have a bit
1229 * of cleanup work to do here.
1234 pmap_puninit(pmap_t pmap)
1238 pmap_wait(pmap, -1);
1239 KKASSERT(pmap->pm_active == 0);
1240 if ((p = pmap->pm_pdirm) != NULL) {
1241 KKASSERT(pmap->pm_pdir != NULL);
1242 pmap_kremove((vm_offset_t)pmap->pm_pdir);
1243 vm_page_busy_wait(p, FALSE, "pgpun");
1244 vm_page_unwire(p, 0);
1245 vm_page_free_zero(p);
1246 pmap->pm_pdirm = NULL;
1248 if (pmap->pm_pdir) {
1249 kmem_free(&kernel_map, (vm_offset_t)pmap->pm_pdir, PAGE_SIZE);
1250 pmap->pm_pdir = NULL;
1252 if (pmap->pm_pteobj) {
1253 vm_object_deallocate(pmap->pm_pteobj);
1254 pmap->pm_pteobj = NULL;
1259 * Wire in kernel global address entries. To avoid a race condition
1260 * between pmap initialization and pmap_growkernel, this procedure
1261 * adds the pmap to the master list (which growkernel scans to update),
1262 * then copies the template.
1267 pmap_pinit2(struct pmap *pmap)
1270 * XXX copies current process, does not fill in MPPTDI
1272 spin_lock(&pmap_spin);
1273 TAILQ_INSERT_TAIL(&pmap_list, pmap, pm_pmnode);
1274 bcopy(PTD + KPTDI, pmap->pm_pdir + KPTDI, nkpt * PTESIZE);
1275 spin_unlock(&pmap_spin);
1279 * Attempt to release and free a vm_page in a pmap. Returns 1 on success,
1280 * 0 on failure (if the procedure had to sleep).
1282 * When asked to remove the page directory page itself, we actually just
1283 * leave it cached so we do not have to incur the SMP inval overhead of
1284 * removing the kernel mapping. pmap_puninit() will take care of it.
1286 * The caller must hold vm_token.
1287 * This function can block regardless.
1290 pmap_release_free_page(struct pmap *pmap, vm_page_t p)
1292 unsigned *pde = (unsigned *) pmap->pm_pdir;
1295 * This code optimizes the case of freeing non-busy
1296 * page-table pages. Those pages are zero now, and
1297 * might as well be placed directly into the zero queue.
1299 if (vm_page_busy_try(p, FALSE)) {
1300 vm_page_sleep_busy(p, FALSE, "pmaprl");
1304 KKASSERT(pmap->pm_stats.resident_count > 0);
1305 KKASSERT(pde[p->pindex]);
1308 * page table page's wire_count must be 1. Caller is the pmap
1309 * termination code which holds the pm_pteobj, there is a race
1310 * if someone else is trying to hold the VM object in order to
1311 * clean up a wire_count.
1313 if (p->wire_count != 1) {
1314 if (pmap->pm_pteobj->hold_count <= 1)
1315 panic("pmap_release: freeing wired page table page");
1316 kprintf("pmap_release_free_page: unwire race detected\n");
1318 tsleep(p, 0, "pmapx", 1);
1323 * Remove the page table page from the processes address space.
1325 pmap->pm_cached = 0;
1327 --pmap->pm_stats.resident_count;
1328 if (pmap->pm_ptphint && (pmap->pm_ptphint->pindex == p->pindex))
1329 pmap->pm_ptphint = NULL;
1332 * We leave the page directory page cached, wired, and mapped in
1333 * the pmap until the dtor function (pmap_puninit()) gets called.
1334 * However, still clean it up so we can set PG_ZERO.
1336 * The pmap has already been removed from the pmap_list in the
1339 if (p->pindex == PTDPTDI) {
1340 bzero(pde + KPTDI, nkpt * PTESIZE);
1341 bzero(pde + MPPTDI, (NPDEPG - MPPTDI) * PTESIZE);
1342 vm_page_flag_set(p, PG_ZERO);
1346 * This case can occur if a pmap_unwire_pte() loses a race
1347 * while the page is unbusied.
1349 /*panic("pmap_release: page should already be gone %p", p);*/
1350 vm_page_flag_clear(p, PG_MAPPED);
1351 vm_page_unwire(p, 0);
1352 vm_page_free_zero(p);
1358 * This routine is called if the page table page is not mapped correctly.
1360 * The caller must hold vm_token.
1363 _pmap_allocpte(pmap_t pmap, unsigned ptepindex)
1369 * Find or fabricate a new pagetable page. Setting VM_ALLOC_ZERO
1370 * will zero any new page and mark it valid.
1372 m = vm_page_grab(pmap->pm_pteobj, ptepindex,
1373 VM_ALLOC_NORMAL | VM_ALLOC_ZERO | VM_ALLOC_RETRY);
1375 KASSERT(m->queue == PQ_NONE,
1376 ("_pmap_allocpte: %p->queue != PQ_NONE", m));
1379 * Increment the wire count for the page we will be returning to
1385 * It is possible that someone else got in and mapped by the page
1386 * directory page while we were blocked, if so just unbusy and
1387 * return the wired page.
1389 if ((ptepa = pmap->pm_pdir[ptepindex]) != 0) {
1390 KKASSERT((ptepa & PG_FRAME) == VM_PAGE_TO_PHYS(m));
1396 * Map the pagetable page into the process address space, if
1397 * it isn't already there.
1399 * NOTE: For safety clear pm_cached for all cpus including the
1400 * current one when adding a PDE to the map.
1402 ++pmap->pm_stats.resident_count;
1404 ptepa = VM_PAGE_TO_PHYS(m);
1405 pmap->pm_pdir[ptepindex] =
1406 (pd_entry_t) (ptepa | PG_U | PG_RW | PG_V | PG_A | PG_M);
1407 pmap->pm_cached = 0;
1410 * Set the page table hint
1412 pmap->pm_ptphint = m;
1413 vm_page_flag_set(m, PG_MAPPED);
1420 * Allocate a page table entry for a va.
1422 * The caller must hold vm_token.
1425 pmap_allocpte(pmap_t pmap, vm_offset_t va)
1431 ASSERT_LWKT_TOKEN_HELD(vm_object_token(pmap->pm_pteobj));
1434 * Calculate pagetable page index
1436 ptepindex = va >> PDRSHIFT;
1439 * Get the page directory entry
1441 ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
1444 * This supports switching from a 4MB page to a
1447 if (ptepa & PG_PS) {
1448 pmap->pm_pdir[ptepindex] = 0;
1455 * If the page table page is mapped, we just increment the
1456 * wire count, and activate it.
1460 * In order to get the page table page, try the
1463 if ((mpte = pmap->pm_ptphint) != NULL &&
1464 (mpte->pindex == ptepindex) &&
1465 (mpte->flags & PG_BUSY) == 0) {
1466 vm_page_wire_quick(mpte);
1468 mpte = pmap_page_lookup(pmap->pm_pteobj, ptepindex);
1469 pmap->pm_ptphint = mpte;
1470 vm_page_wire_quick(mpte);
1471 vm_page_wakeup(mpte);
1476 * Here if the pte page isn't mapped, or if it has been deallocated.
1478 return _pmap_allocpte(pmap, ptepindex);
1482 /***************************************************
1483 * Pmap allocation/deallocation routines.
1484 ***************************************************/
1487 * Release any resources held by the given physical map.
1488 * Called when a pmap initialized by pmap_pinit is being released.
1489 * Should only be called if the map contains no valid mappings.
1491 * Caller must hold pmap->pm_token
1493 static int pmap_release_callback(struct vm_page *p, void *data);
1496 pmap_release(struct pmap *pmap)
1498 vm_object_t object = pmap->pm_pteobj;
1499 struct rb_vm_page_scan_info info;
1501 KASSERT(pmap->pm_active == 0,
1502 ("pmap still active! %08x", pmap->pm_active));
1503 #if defined(DIAGNOSTIC)
1504 if (object->ref_count != 1)
1505 panic("pmap_release: pteobj reference count != 1");
1509 info.object = object;
1511 spin_lock(&pmap_spin);
1512 TAILQ_REMOVE(&pmap_list, pmap, pm_pmnode);
1513 spin_unlock(&pmap_spin);
1515 vm_object_hold(object);
1519 info.limit = object->generation;
1521 vm_page_rb_tree_RB_SCAN(&object->rb_memq, NULL,
1522 pmap_release_callback, &info);
1523 if (info.error == 0 && info.mpte) {
1524 if (!pmap_release_free_page(pmap, info.mpte))
1527 } while (info.error);
1528 vm_object_drop(object);
1530 pmap->pm_cached = 0;
1534 * The caller must hold vm_token.
1537 pmap_release_callback(struct vm_page *p, void *data)
1539 struct rb_vm_page_scan_info *info = data;
1541 if (p->pindex == PTDPTDI) {
1545 if (!pmap_release_free_page(info->pmap, p)) {
1549 if (info->object->generation != info->limit) {
1557 * Grow the number of kernel page table entries, if needed.
1562 pmap_growkernel(vm_offset_t kstart, vm_offset_t kend)
1564 vm_offset_t addr = kend;
1566 vm_offset_t ptppaddr;
1570 vm_object_hold(kptobj);
1571 if (kernel_vm_end == 0) {
1572 kernel_vm_end = KERNBASE;
1574 while (pdir_pde(PTD, kernel_vm_end)) {
1575 kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
1576 ~(PAGE_SIZE * NPTEPG - 1);
1580 addr = (addr + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1);
1581 while (kernel_vm_end < addr) {
1582 if (pdir_pde(PTD, kernel_vm_end)) {
1583 kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
1584 ~(PAGE_SIZE * NPTEPG - 1);
1589 * This index is bogus, but out of the way
1591 nkpg = vm_page_alloc(kptobj, nkpt, VM_ALLOC_NORMAL |
1593 VM_ALLOC_INTERRUPT);
1595 panic("pmap_growkernel: no memory to grow kernel");
1598 ptppaddr = VM_PAGE_TO_PHYS(nkpg);
1599 pmap_zero_page(ptppaddr);
1600 newpdir = (pd_entry_t) (ptppaddr | PG_V | PG_RW | PG_A | PG_M);
1601 pdir_pde(PTD, kernel_vm_end) = newpdir;
1602 *pmap_pde(&kernel_pmap, kernel_vm_end) = newpdir;
1606 * This update must be interlocked with pmap_pinit2.
1608 spin_lock(&pmap_spin);
1609 TAILQ_FOREACH(pmap, &pmap_list, pm_pmnode) {
1610 *pmap_pde(pmap, kernel_vm_end) = newpdir;
1612 spin_unlock(&pmap_spin);
1613 kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
1614 ~(PAGE_SIZE * NPTEPG - 1);
1616 vm_object_drop(kptobj);
1620 * Add a reference to the specified pmap.
1625 pmap_reference(pmap_t pmap)
1628 lwkt_gettoken(&vm_token);
1630 lwkt_reltoken(&vm_token);
1635 * vm_token must be held
1639 pmap_hold(pmap_t pmap)
1645 * vm_token must be held
1649 pmap_drop(pmap_t pmap)
1652 if (pmap->pm_count == (int)0x80000000)
1658 pmap_wait(pmap_t pmap, int count)
1660 lwkt_gettoken(&vm_token);
1661 pmap->pm_count += count;
1662 if (pmap->pm_count & 0x7FFFFFFF) {
1663 while (pmap->pm_count & 0x7FFFFFFF) {
1664 pmap->pm_count |= 0x80000000;
1665 tsleep(pmap, 0, "pmapd", 0);
1666 pmap->pm_count &= ~0x80000000;
1667 kprintf("pmap_wait: race averted\n");
1670 lwkt_reltoken(&vm_token);
1673 /***************************************************
1674 * page management routines.
1675 ***************************************************/
1678 * free the pv_entry back to the free list. This function may be
1679 * called from an interrupt.
1681 * The caller must hold vm_token.
1683 static PMAP_INLINE void
1684 free_pv_entry(pv_entry_t pv)
1686 struct mdglobaldata *gd;
1689 KKASSERT(pv->pv_m != NULL);
1694 if (gd->gd_freepv == NULL)
1701 * get a new pv_entry, allocating a block from the system
1702 * when needed. This function may be called from an interrupt thread.
1704 * THIS FUNCTION CAN BLOCK ON THE ZALLOC TOKEN, serialization of other
1705 * tokens (aka vm_token) to be temporarily lost.
1707 * The caller must hold vm_token.
1712 struct mdglobaldata *gd;
1716 if (pv_entry_high_water &&
1717 (pv_entry_count > pv_entry_high_water) &&
1718 (pmap_pagedaemon_waken == 0)) {
1719 pmap_pagedaemon_waken = 1;
1720 wakeup (&vm_pages_needed);
1723 if ((pv = gd->gd_freepv) != NULL)
1724 gd->gd_freepv = NULL;
1726 pv = zalloc(pvzone);
1731 * This routine is very drastic, but can save the system
1741 static int warningdone=0;
1743 if (pmap_pagedaemon_waken == 0)
1745 lwkt_gettoken(&vm_token);
1746 pmap_pagedaemon_waken = 0;
1748 if (warningdone < 5) {
1749 kprintf("pmap_collect: collecting pv entries -- "
1750 "suggest increasing PMAP_SHPGPERPROC\n");
1754 for (i = 0; i < vm_page_array_size; i++) {
1755 m = &vm_page_array[i];
1756 if (m->wire_count || m->hold_count)
1758 if (vm_page_busy_try(m, TRUE) == 0) {
1759 if (m->wire_count == 0 && m->hold_count == 0) {
1765 lwkt_reltoken(&vm_token);
1770 * Remove the pv entry and unwire the page table page related to the
1771 * pte the caller has cleared from the page table.
1773 * The caller must hold vm_token.
1776 pmap_remove_entry(struct pmap *pmap, vm_page_t m,
1777 vm_offset_t va, pmap_inval_info_t info)
1784 ASSERT_LWKT_TOKEN_HELD(&vm_token);
1785 if (m->md.pv_list_count < pmap->pm_stats.resident_count) {
1786 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
1787 if (pmap == pv->pv_pmap && va == pv->pv_va)
1791 TAILQ_FOREACH(pv, &pmap->pm_pvlist, pv_plist) {
1793 KKASSERT(pv->pv_pmap == pmap);
1795 if (va == pv->pv_va)
1804 test_m_maps_pv(m, pv);
1805 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
1806 m->md.pv_list_count--;
1808 atomic_add_int(&m->object->agg_pv_list_count, -1);
1809 if (TAILQ_EMPTY(&m->md.pv_list))
1810 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
1811 TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist);
1812 ++pmap->pm_generation;
1817 vm_object_hold(pmap->pm_pteobj);
1818 pmap_unuse_pt(pmap, va, pv->pv_ptem, info);
1819 vm_object_drop(pmap->pm_pteobj);
1824 * Create a pv entry for page at pa for (pmap, va).
1826 * The caller must hold vm_token.
1829 pmap_insert_entry(pmap_t pmap, pv_entry_t pv, vm_offset_t va,
1830 vm_page_t mpte, vm_page_t m)
1833 KKASSERT(pv->pv_m == NULL);
1840 TAILQ_INSERT_TAIL(&pmap->pm_pvlist, pv, pv_plist);
1841 TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list);
1842 ++pmap->pm_generation;
1843 m->md.pv_list_count++;
1845 atomic_add_int(&m->object->agg_pv_list_count, 1);
1849 * pmap_remove_pte: do the things to unmap a page in a process.
1851 * The caller must hold vm_token.
1853 * WARNING! As with most other pmap functions this one can block, so
1854 * callers using temporary page table mappings must reload
1858 pmap_remove_pte(struct pmap *pmap, unsigned *ptq, vm_offset_t va,
1859 pmap_inval_info_t info)
1864 ptbase_assert(pmap);
1865 pmap_inval_interlock(info, pmap, va);
1866 ptbase_assert(pmap);
1867 oldpte = loadandclear(ptq);
1869 pmap->pm_stats.wired_count -= 1;
1870 pmap_inval_deinterlock(info, pmap);
1871 KKASSERT(oldpte & PG_V);
1873 * Machines that don't support invlpg, also don't support
1874 * PG_G. XXX PG_G is disabled for SMP so don't worry about
1878 cpu_invlpg((void *)va);
1879 KKASSERT(pmap->pm_stats.resident_count > 0);
1880 --pmap->pm_stats.resident_count;
1881 if (oldpte & PG_MANAGED) {
1882 m = PHYS_TO_VM_PAGE(oldpte);
1883 if (oldpte & PG_M) {
1884 #if defined(PMAP_DIAGNOSTIC)
1885 if (pmap_nw_modified((pt_entry_t) oldpte)) {
1886 kprintf("pmap_remove: modified page not "
1887 "writable: va: %p, pte: 0x%lx\n",
1888 (void *)va, (long)oldpte);
1891 if (pmap_track_modified(va))
1895 vm_page_flag_set(m, PG_REFERENCED);
1896 pmap_remove_entry(pmap, m, va, info);
1898 pmap_unuse_pt(pmap, va, NULL, info);
1903 * Remove a single page from a process address space.
1905 * The caller must hold vm_token.
1908 pmap_remove_page(struct pmap *pmap, vm_offset_t va, pmap_inval_info_t info)
1913 * If there is no pte for this address, just skip it!!! Otherwise
1914 * get a local va for mappings for this pmap and remove the entry.
1916 if (*pmap_pde(pmap, va) != 0) {
1917 ptq = get_ptbase(pmap) + i386_btop(va);
1919 pmap_remove_pte(pmap, ptq, va, info);
1926 * Remove the given range of addresses from the specified map.
1928 * It is assumed that the start and end are properly rounded to the page
1934 pmap_remove(struct pmap *pmap, vm_offset_t sva, vm_offset_t eva)
1938 vm_offset_t ptpaddr;
1939 vm_offset_t sindex, eindex;
1940 struct pmap_inval_info info;
1945 vm_object_hold(pmap->pm_pteobj);
1946 lwkt_gettoken(&vm_token);
1947 if (pmap->pm_stats.resident_count == 0) {
1948 lwkt_reltoken(&vm_token);
1949 vm_object_drop(pmap->pm_pteobj);
1953 pmap_inval_init(&info);
1956 * special handling of removing one page. a very
1957 * common operation and easy to short circuit some
1960 if (((sva + PAGE_SIZE) == eva) &&
1961 (((unsigned) pmap->pm_pdir[(sva >> PDRSHIFT)] & PG_PS) == 0)) {
1962 pmap_remove_page(pmap, sva, &info);
1963 pmap_inval_done(&info);
1964 lwkt_reltoken(&vm_token);
1965 vm_object_drop(pmap->pm_pteobj);
1970 * Get a local virtual address for the mappings that are being
1973 sindex = i386_btop(sva);
1974 eindex = i386_btop(eva);
1976 while (sindex < eindex) {
1980 * Stop scanning if no pages are left
1982 if (pmap->pm_stats.resident_count == 0)
1986 * Calculate index for next page table, limited by eindex.
1988 pdnxt = ((sindex + NPTEPG) & ~(NPTEPG - 1));
1992 pdirindex = sindex / NPDEPG;
1993 ptpaddr = (unsigned)pmap->pm_pdir[pdirindex];
1994 if (ptpaddr & PG_PS) {
1995 pmap_inval_interlock(&info, pmap, -1);
1996 pmap->pm_pdir[pdirindex] = 0;
1997 pmap->pm_stats.resident_count -= NBPDR / PAGE_SIZE;
1998 pmap->pm_cached = 0;
1999 pmap_inval_deinterlock(&info, pmap);
2005 * Weed out invalid mappings. Note: we assume that the page
2006 * directory table is always allocated, and in kernel virtual.
2014 * Sub-scan the page table page. pmap_remove_pte() can
2015 * block on us, invalidating ptbase, so we must reload
2016 * ptbase and we must also check whether the page directory
2017 * page is still present.
2019 while (sindex < pdnxt) {
2022 ptbase = get_ptbase(pmap);
2023 if (ptbase[sindex]) {
2024 va = i386_ptob(sindex);
2025 pmap_remove_pte(pmap, ptbase + sindex,
2028 if (pmap->pm_pdir[pdirindex] == 0 ||
2029 (pmap->pm_pdir[pdirindex] & PG_PS)) {
2035 pmap_inval_done(&info);
2036 lwkt_reltoken(&vm_token);
2037 vm_object_drop(pmap->pm_pteobj);
2041 * Removes this physical page from all physical maps in which it resides.
2042 * Reflects back modify bits to the pager.
2044 * vm_token must be held by caller.
2047 pmap_remove_all(vm_page_t m)
2049 struct pmap_inval_info info;
2050 unsigned *pte, tpte;
2054 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2056 if (TAILQ_EMPTY(&m->md.pv_list))
2059 lwkt_getoken(&vm_token);
2060 pmap_inval_init(&info);
2061 while ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
2063 KKASSERT(pmap->pm_stats.resident_count > 0);
2064 --pmap->pm_stats.resident_count;
2067 pte = pmap_pte_quick(pmap, pv->pv_va);
2068 pmap_inval_interlock(&info, pmap, pv->pv_va);
2069 tpte = loadandclear(pte);
2071 pmap->pm_stats.wired_count--;
2072 pmap_inval_deinterlock(&info, pmap);
2074 vm_page_flag_set(m, PG_REFERENCED);
2075 KKASSERT(PHYS_TO_VM_PAGE(tpte) == m);
2078 * Update the vm_page_t clean and reference bits.
2081 #if defined(PMAP_DIAGNOSTIC)
2082 if (pmap_nw_modified((pt_entry_t) tpte)) {
2083 kprintf("pmap_remove_all: modified page "
2084 "not writable: va: %p, pte: 0x%lx\n",
2085 (void *)pv->pv_va, (long)tpte);
2088 if (pmap_track_modified(pv->pv_va))
2092 KKASSERT(pv->pv_m == m);
2094 KKASSERT(pv == TAILQ_FIRST(&m->md.pv_list));
2095 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
2096 TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist);
2097 ++pmap->pm_generation;
2098 m->md.pv_list_count--;
2100 atomic_add_int(&m->object->agg_pv_list_count, -1);
2101 if (TAILQ_EMPTY(&m->md.pv_list))
2102 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
2103 vm_object_hold(pmap->pm_pteobj);
2104 pmap_unuse_pt(pmap, pv->pv_va, pv->pv_ptem, &info);
2105 vm_object_drop(pmap->pm_pteobj);
2109 KKASSERT((m->flags & (PG_MAPPED|PG_WRITEABLE)) == 0);
2110 pmap_inval_done(&info);
2111 lwkt_reloken(&vm_token);
2115 * Set the physical protection on the specified range of this map
2121 pmap_protect(pmap_t pmap, vm_offset_t sva, vm_offset_t eva, vm_prot_t prot)
2124 vm_offset_t pdnxt, ptpaddr;
2125 vm_pindex_t sindex, eindex;
2126 pmap_inval_info info;
2131 if ((prot & VM_PROT_READ) == VM_PROT_NONE) {
2132 pmap_remove(pmap, sva, eva);
2136 if (prot & VM_PROT_WRITE)
2139 lwkt_gettoken(&vm_token);
2140 pmap_inval_init(&info);
2142 ptbase = get_ptbase(pmap);
2144 sindex = i386_btop(sva);
2145 eindex = i386_btop(eva);
2147 for (; sindex < eindex; sindex = pdnxt) {
2150 pdnxt = ((sindex + NPTEPG) & ~(NPTEPG - 1));
2152 pdirindex = sindex / NPDEPG;
2153 if (((ptpaddr = (unsigned) pmap->pm_pdir[pdirindex]) & PG_PS) != 0) {
2154 pmap_inval_interlock(&info, pmap, -1);
2155 pmap->pm_pdir[pdirindex] &= ~(PG_M|PG_RW);
2156 pmap->pm_stats.resident_count -= NBPDR / PAGE_SIZE;
2157 pmap_inval_deinterlock(&info, pmap);
2162 * Weed out invalid mappings. Note: we assume that the page
2163 * directory table is always allocated, and in kernel virtual.
2168 if (pdnxt > eindex) {
2172 for (; sindex != pdnxt; sindex++) {
2180 pmap_inval_interlock(&info, pmap, i386_ptob(sindex));
2182 pbits = ptbase[sindex];
2185 if (pbits & PG_MANAGED) {
2188 m = PHYS_TO_VM_PAGE(pbits);
2189 vm_page_flag_set(m, PG_REFERENCED);
2193 if (pmap_track_modified(i386_ptob(sindex))) {
2195 m = PHYS_TO_VM_PAGE(pbits);
2202 if (pbits != cbits &&
2203 !atomic_cmpset_int(ptbase + sindex, pbits, cbits)) {
2206 pmap_inval_deinterlock(&info, pmap);
2209 pmap_inval_done(&info);
2210 lwkt_reltoken(&vm_token);
2214 * Insert the given physical page (p) at the specified virtual address (v)
2215 * in the target physical map with the protection requested.
2217 * If specified, the page will be wired down, meaning that the related pte
2218 * cannot be reclaimed.
2223 pmap_enter(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot,
2224 boolean_t wired, vm_map_entry_t entry __unused)
2229 vm_offset_t origpte, newpte;
2231 pmap_inval_info info;
2238 #ifdef PMAP_DIAGNOSTIC
2240 panic("pmap_enter: toobig");
2241 if ((va >= UPT_MIN_ADDRESS) && (va < UPT_MAX_ADDRESS)) {
2242 panic("pmap_enter: invalid to pmap_enter page "
2243 "table pages (va: %p)", (void *)va);
2246 if (va < UPT_MAX_ADDRESS && pmap == &kernel_pmap) {
2247 kprintf("Warning: pmap_enter called on UVA with kernel_pmap\n");
2248 print_backtrace(-1);
2250 if (va >= UPT_MAX_ADDRESS && pmap != &kernel_pmap) {
2251 kprintf("Warning: pmap_enter called on KVA without kernel_pmap\n");
2252 print_backtrace(-1);
2255 vm_object_hold(pmap->pm_pteobj);
2256 lwkt_gettoken(&vm_token);
2259 * This can block, get it before we do anything important.
2261 if (pmap_initialized &&
2262 (m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2263 pv = get_pv_entry();
2269 * In the case that a page table page is not
2270 * resident, we are creating it here.
2272 if (va < UPT_MIN_ADDRESS)
2273 mpte = pmap_allocpte(pmap, va);
2277 if ((prot & VM_PROT_NOSYNC) == 0)
2278 pmap_inval_init(&info);
2279 pte = pmap_pte(pmap, va);
2282 * Page Directory table entry not valid, we need a new PT page
2285 panic("pmap_enter: invalid page directory pdir=0x%lx, va=%p",
2286 (long)pmap->pm_pdir[PTDPTDI], (void *)va);
2289 pa = VM_PAGE_TO_PHYS(m) & PG_FRAME;
2290 origpte = *(vm_offset_t *)pte;
2291 opa = origpte & PG_FRAME;
2293 if (origpte & PG_PS)
2294 panic("pmap_enter: attempted pmap_enter on 4MB page");
2297 * Mapping has not changed, must be protection or wiring change.
2299 if (origpte && (opa == pa)) {
2301 * Wiring change, just update stats. We don't worry about
2302 * wiring PT pages as they remain resident as long as there
2303 * are valid mappings in them. Hence, if a user page is wired,
2304 * the PT page will be also.
2306 if (wired && ((origpte & PG_W) == 0))
2307 pmap->pm_stats.wired_count++;
2308 else if (!wired && (origpte & PG_W))
2309 pmap->pm_stats.wired_count--;
2311 #if defined(PMAP_DIAGNOSTIC)
2312 if (pmap_nw_modified((pt_entry_t) origpte)) {
2313 kprintf("pmap_enter: modified page not "
2314 "writable: va: %p, pte: 0x%lx\n",
2315 (void *)va, (long )origpte);
2320 * We might be turning off write access to the page,
2321 * so we go ahead and sense modify status.
2323 if (origpte & PG_MANAGED) {
2324 if ((origpte & PG_M) && pmap_track_modified(va)) {
2326 om = PHYS_TO_VM_PAGE(opa);
2330 KKASSERT(m->flags & PG_MAPPED);
2335 * Mapping has changed, invalidate old range and fall through to
2336 * handle validating new mapping.
2338 * Since we have a ref on the page directory page pmap_pte()
2339 * will always return non-NULL.
2341 * NOTE: pmap_remove_pte() can block and cause the temporary ptbase
2342 * to get wiped. reload the ptbase. I'm not sure if it is
2343 * also possible to race another pmap_enter() but check for
2347 KKASSERT((origpte & PG_FRAME) ==
2348 (*(vm_offset_t *)pte & PG_FRAME));
2349 pmap_remove_pte(pmap, pte, va, &info);
2350 pte = pmap_pte(pmap, va);
2351 origpte = *(vm_offset_t *)pte;
2352 opa = origpte & PG_FRAME;
2354 kprintf("pmap_enter: Warning, raced pmap %p va %p\n",
2360 * Enter on the PV list if part of our managed memory. Note that we
2361 * raise IPL while manipulating pv_table since pmap_enter can be
2362 * called at interrupt time.
2364 if (pmap_initialized &&
2365 (m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2366 pmap_insert_entry(pmap, pv, va, mpte, m);
2368 ptbase_assert(pmap);
2370 vm_page_flag_set(m, PG_MAPPED);
2374 * Increment counters
2376 ++pmap->pm_stats.resident_count;
2378 pmap->pm_stats.wired_count++;
2379 KKASSERT(*pte == 0);
2383 * Now validate mapping with desired protection/wiring.
2385 ptbase_assert(pmap);
2386 newpte = (vm_offset_t) (pa | pte_prot(pmap, prot) | PG_V);
2390 if (va < UPT_MIN_ADDRESS)
2392 if (pmap == &kernel_pmap)
2396 * If the mapping or permission bits are different, we need
2397 * to update the pte. If the pte is already present we have
2398 * to get rid of the extra wire-count on mpte we had obtained
2401 * mpte has a new wire_count, which also serves to prevent the
2402 * page table page from getting ripped out while we work. If we
2403 * are modifying an existing pte instead of installing a new one
2404 * we have to drop it.
2406 if ((origpte & ~(PG_M|PG_A)) != newpte) {
2407 if (prot & VM_PROT_NOSYNC)
2408 cpu_invlpg((void *)va);
2410 pmap_inval_interlock(&info, pmap, va);
2411 ptbase_assert(pmap);
2414 KKASSERT((*pte & PG_FRAME) == (newpte & PG_FRAME));
2415 if (vm_page_unwire_quick(mpte))
2416 panic("pmap_enter: Insufficient wire_count");
2419 *pte = newpte | PG_A;
2420 if ((prot & VM_PROT_NOSYNC) == 0)
2421 pmap_inval_deinterlock(&info, pmap);
2423 vm_page_flag_set(m, PG_WRITEABLE);
2426 KKASSERT((*pte & PG_FRAME) == (newpte & PG_FRAME));
2427 if (vm_page_unwire_quick(mpte))
2428 panic("pmap_enter: Insufficient wire_count");
2433 * NOTE: mpte invalid after this point if we block.
2435 KKASSERT((newpte & PG_MANAGED) == 0 || (m->flags & PG_MAPPED));
2436 if ((prot & VM_PROT_NOSYNC) == 0)
2437 pmap_inval_done(&info);
2440 lwkt_reltoken(&vm_token);
2441 vm_object_drop(pmap->pm_pteobj);
2445 * This code works like pmap_enter() but assumes VM_PROT_READ and not-wired.
2446 * This code also assumes that the pmap has no pre-existing entry for this
2449 * This code currently may only be used on user pmaps, not kernel_pmap.
2454 pmap_enter_quick(pmap_t pmap, vm_offset_t va, vm_page_t m)
2461 pmap_inval_info info;
2464 vm_object_hold(pmap->pm_pteobj);
2465 lwkt_gettoken(&vm_token);
2468 * This can block, get it before we do anything important.
2470 if (pmap_initialized &&
2471 (m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2472 pv = get_pv_entry();
2477 pmap_inval_init(&info);
2479 if (va < UPT_MAX_ADDRESS && pmap == &kernel_pmap) {
2480 kprintf("Warning: pmap_enter_quick called on UVA with kernel_pmap\n");
2481 print_backtrace(-1);
2483 if (va >= UPT_MAX_ADDRESS && pmap != &kernel_pmap) {
2484 kprintf("Warning: pmap_enter_quick called on KVA without kernel_pmap\n");
2485 print_backtrace(-1);
2488 KKASSERT(va < UPT_MIN_ADDRESS); /* assert used on user pmaps only */
2491 * Calculate the page table page (mpte), allocating it if necessary.
2493 * A held page table page (mpte), or NULL, is passed onto the
2494 * section following.
2496 if (va < UPT_MIN_ADDRESS) {
2498 * Calculate pagetable page index
2500 ptepindex = va >> PDRSHIFT;
2504 * Get the page directory entry
2506 ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
2509 * If the page table page is mapped, we just increment
2510 * the wire count, and activate it.
2514 panic("pmap_enter_quick: unexpected mapping into 4MB page");
2515 if ((mpte = pmap->pm_ptphint) != NULL &&
2516 (mpte->pindex == ptepindex) &&
2517 (mpte->flags & PG_BUSY) == 0) {
2518 vm_page_wire_quick(mpte);
2520 mpte = pmap_page_lookup(pmap->pm_pteobj,
2522 pmap->pm_ptphint = mpte;
2523 vm_page_wire_quick(mpte);
2524 vm_page_wakeup(mpte);
2527 mpte = _pmap_allocpte(pmap, ptepindex);
2529 } while (mpte == NULL);
2532 /* this code path is not yet used */
2536 * With a valid (and held) page directory page, we can just use
2537 * vtopte() to get to the pte. If the pte is already present
2538 * we do not disturb it.
2540 pte = (unsigned *)vtopte(va);
2542 KKASSERT(*pte & PG_V);
2543 pa = VM_PAGE_TO_PHYS(m);
2544 KKASSERT(((*pte ^ pa) & PG_FRAME) == 0);
2545 pmap_inval_done(&info);
2547 pmap_unwire_pte(pmap, mpte, &info);
2552 lwkt_reltoken(&vm_token);
2553 vm_object_drop(pmap->pm_pteobj);
2558 * Enter on the PV list if part of our managed memory
2560 if (pmap_initialized &&
2561 (m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2562 pmap_insert_entry(pmap, pv, va, mpte, m);
2564 vm_page_flag_set(m, PG_MAPPED);
2568 * Increment counters
2570 ++pmap->pm_stats.resident_count;
2572 pa = VM_PAGE_TO_PHYS(m);
2575 * Now validate mapping with RO protection
2577 if (m->flags & (PG_FICTITIOUS|PG_UNMANAGED))
2578 *pte = pa | PG_V | PG_U;
2580 *pte = pa | PG_V | PG_U | PG_MANAGED;
2581 /* pmap_inval_add(&info, pmap, va); shouldn't be needed inval->valid */
2582 pmap_inval_done(&info);
2587 lwkt_reltoken(&vm_token);
2588 vm_object_drop(pmap->pm_pteobj);
2592 * Make a temporary mapping for a physical address. This is only intended
2593 * to be used for panic dumps.
2595 * The caller is responsible for calling smp_invltlb().
2600 pmap_kenter_temporary(vm_paddr_t pa, long i)
2602 pmap_kenter_quick((vm_offset_t)crashdumpmap + (i * PAGE_SIZE), pa);
2603 return ((void *)crashdumpmap);
2606 #define MAX_INIT_PT (96)
2609 * This routine preloads the ptes for a given object into the specified pmap.
2610 * This eliminates the blast of soft faults on process startup and
2611 * immediately after an mmap.
2615 static int pmap_object_init_pt_callback(vm_page_t p, void *data);
2618 pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, vm_prot_t prot,
2619 vm_object_t object, vm_pindex_t pindex,
2620 vm_size_t size, int limit)
2622 struct rb_vm_page_scan_info info;
2627 * We can't preinit if read access isn't set or there is no pmap
2630 if ((prot & VM_PROT_READ) == 0 || pmap == NULL || object == NULL)
2634 * We can't preinit if the pmap is not the current pmap
2636 lp = curthread->td_lwp;
2637 if (lp == NULL || pmap != vmspace_pmap(lp->lwp_vmspace))
2640 psize = i386_btop(size);
2642 if ((object->type != OBJT_VNODE) ||
2643 ((limit & MAP_PREFAULT_PARTIAL) && (psize > MAX_INIT_PT) &&
2644 (object->resident_page_count > MAX_INIT_PT))) {
2648 if (psize + pindex > object->size) {
2649 if (object->size < pindex)
2651 psize = object->size - pindex;
2658 * Use a red-black scan to traverse the requested range and load
2659 * any valid pages found into the pmap.
2661 * We cannot safely scan the object's memq unless we are in a
2662 * critical section since interrupts can remove pages from objects.
2664 info.start_pindex = pindex;
2665 info.end_pindex = pindex + psize - 1;
2671 vm_object_hold(object);
2672 vm_page_rb_tree_RB_SCAN(&object->rb_memq, rb_vm_page_scancmp,
2673 pmap_object_init_pt_callback, &info);
2674 vm_object_drop(object);
2678 * The caller must hold vm_token.
2682 pmap_object_init_pt_callback(vm_page_t p, void *data)
2684 struct rb_vm_page_scan_info *info = data;
2685 vm_pindex_t rel_index;
2687 * don't allow an madvise to blow away our really
2688 * free pages allocating pv entries.
2690 if ((info->limit & MAP_PREFAULT_MADVISE) &&
2691 vmstats.v_free_count < vmstats.v_free_reserved) {
2696 * Ignore list markers and ignore pages we cannot instantly
2697 * busy (while holding the object token).
2699 if (p->flags & PG_MARKER)
2701 if (vm_page_busy_try(p, TRUE))
2703 if (((p->valid & VM_PAGE_BITS_ALL) == VM_PAGE_BITS_ALL) &&
2704 (p->flags & PG_FICTITIOUS) == 0) {
2705 if ((p->queue - p->pc) == PQ_CACHE)
2706 vm_page_deactivate(p);
2707 rel_index = p->pindex - info->start_pindex;
2708 pmap_enter_quick(info->pmap,
2709 info->addr + i386_ptob(rel_index), p);
2716 * Return TRUE if the pmap is in shape to trivially
2717 * pre-fault the specified address.
2719 * Returns FALSE if it would be non-trivial or if a
2720 * pte is already loaded into the slot.
2725 pmap_prefault_ok(pmap_t pmap, vm_offset_t addr)
2730 lwkt_gettoken(&vm_token);
2731 if ((*pmap_pde(pmap, addr)) == 0) {
2734 pte = (unsigned *) vtopte(addr);
2735 ret = (*pte) ? 0 : 1;
2737 lwkt_reltoken(&vm_token);
2742 * Change the wiring attribute for a map/virtual-adderss pair. The mapping
2743 * must already exist.
2748 pmap_change_wiring(pmap_t pmap, vm_offset_t va, boolean_t wired,
2749 vm_map_entry_t entry __unused)
2756 lwkt_gettoken(&vm_token);
2757 pte = pmap_pte(pmap, va);
2759 if (wired && !pmap_pte_w(pte))
2760 pmap->pm_stats.wired_count++;
2761 else if (!wired && pmap_pte_w(pte))
2762 pmap->pm_stats.wired_count--;
2765 * Wiring is not a hardware characteristic so there is no need to
2766 * invalidate TLB. However, in an SMP environment we must use
2767 * a locked bus cycle to update the pte (if we are not using
2768 * the pmap_inval_*() API that is)... it's ok to do this for simple
2773 atomic_set_int(pte, PG_W);
2775 atomic_clear_int(pte, PG_W);
2778 atomic_set_int_nonlocked(pte, PG_W);
2780 atomic_clear_int_nonlocked(pte, PG_W);
2782 lwkt_reltoken(&vm_token);
2786 * Copy the range specified by src_addr/len from the source map to the
2787 * range dst_addr/len in the destination map.
2789 * This routine is only advisory and need not do anything.
2794 pmap_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr,
2795 vm_size_t len, vm_offset_t src_addr)
2801 * Zero the specified PA by mapping the page into KVM and clearing its
2807 pmap_zero_page(vm_paddr_t phys)
2809 struct mdglobaldata *gd = mdcpu;
2812 if (*(int *)gd->gd_CMAP3)
2813 panic("pmap_zero_page: CMAP3 busy");
2814 *(int *)gd->gd_CMAP3 =
2815 PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2816 cpu_invlpg(gd->gd_CADDR3);
2817 bzero(gd->gd_CADDR3, PAGE_SIZE);
2818 *(int *) gd->gd_CMAP3 = 0;
2823 * Assert that a page is empty, panic if it isn't.
2828 pmap_page_assertzero(vm_paddr_t phys)
2830 struct mdglobaldata *gd = mdcpu;
2834 if (*(int *)gd->gd_CMAP3)
2835 panic("pmap_zero_page: CMAP3 busy");
2836 *(int *)gd->gd_CMAP3 =
2837 PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2838 cpu_invlpg(gd->gd_CADDR3);
2839 for (i = 0; i < PAGE_SIZE; i += 4) {
2840 if (*(int *)((char *)gd->gd_CADDR3 + i) != 0) {
2841 panic("pmap_page_assertzero() @ %p not zero!",
2842 (void *)gd->gd_CADDR3);
2845 *(int *) gd->gd_CMAP3 = 0;
2850 * Zero part of a physical page by mapping it into memory and clearing
2851 * its contents with bzero.
2853 * off and size may not cover an area beyond a single hardware page.
2858 pmap_zero_page_area(vm_paddr_t phys, int off, int size)
2860 struct mdglobaldata *gd = mdcpu;
2863 if (*(int *) gd->gd_CMAP3)
2864 panic("pmap_zero_page: CMAP3 busy");
2865 *(int *) gd->gd_CMAP3 = PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2866 cpu_invlpg(gd->gd_CADDR3);
2867 bzero((char *)gd->gd_CADDR3 + off, size);
2868 *(int *) gd->gd_CMAP3 = 0;
2873 * Copy the physical page from the source PA to the target PA.
2874 * This function may be called from an interrupt. No locking
2880 pmap_copy_page(vm_paddr_t src, vm_paddr_t dst)
2882 struct mdglobaldata *gd = mdcpu;
2885 if (*(int *) gd->gd_CMAP1)
2886 panic("pmap_copy_page: CMAP1 busy");
2887 if (*(int *) gd->gd_CMAP2)
2888 panic("pmap_copy_page: CMAP2 busy");
2890 *(int *) gd->gd_CMAP1 = PG_V | (src & PG_FRAME) | PG_A;
2891 *(int *) gd->gd_CMAP2 = PG_V | PG_RW | (dst & PG_FRAME) | PG_A | PG_M;
2893 cpu_invlpg(gd->gd_CADDR1);
2894 cpu_invlpg(gd->gd_CADDR2);
2896 bcopy(gd->gd_CADDR1, gd->gd_CADDR2, PAGE_SIZE);
2898 *(int *) gd->gd_CMAP1 = 0;
2899 *(int *) gd->gd_CMAP2 = 0;
2904 * Copy the physical page from the source PA to the target PA.
2905 * This function may be called from an interrupt. No locking
2911 pmap_copy_page_frag(vm_paddr_t src, vm_paddr_t dst, size_t bytes)
2913 struct mdglobaldata *gd = mdcpu;
2916 if (*(int *) gd->gd_CMAP1)
2917 panic("pmap_copy_page: CMAP1 busy");
2918 if (*(int *) gd->gd_CMAP2)
2919 panic("pmap_copy_page: CMAP2 busy");
2921 *(int *) gd->gd_CMAP1 = PG_V | (src & PG_FRAME) | PG_A;
2922 *(int *) gd->gd_CMAP2 = PG_V | PG_RW | (dst & PG_FRAME) | PG_A | PG_M;
2924 cpu_invlpg(gd->gd_CADDR1);
2925 cpu_invlpg(gd->gd_CADDR2);
2927 bcopy((char *)gd->gd_CADDR1 + (src & PAGE_MASK),
2928 (char *)gd->gd_CADDR2 + (dst & PAGE_MASK),
2931 *(int *) gd->gd_CMAP1 = 0;
2932 *(int *) gd->gd_CMAP2 = 0;
2937 * Returns true if the pmap's pv is one of the first
2938 * 16 pvs linked to from this page. This count may
2939 * be changed upwards or downwards in the future; it
2940 * is only necessary that true be returned for a small
2941 * subset of pmaps for proper page aging.
2946 pmap_page_exists_quick(pmap_t pmap, vm_page_t m)
2951 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2954 lwkt_gettoken(&vm_token);
2955 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
2956 if (pv->pv_pmap == pmap) {
2957 lwkt_reltoken(&vm_token);
2964 lwkt_reltoken(&vm_token);
2969 * Remove all pages from specified address space
2970 * this aids process exit speeds. Also, this code
2971 * is special cased for current process only, but
2972 * can have the more generic (and slightly slower)
2973 * mode enabled. This is much faster than pmap_remove
2974 * in the case of running down an entire address space.
2979 pmap_remove_pages(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
2982 unsigned *pte, tpte;
2985 pmap_inval_info info;
2987 int32_t save_generation;
2989 lp = curthread->td_lwp;
2990 if (lp && pmap == vmspace_pmap(lp->lwp_vmspace))
2995 if (pmap->pm_pteobj)
2996 vm_object_hold(pmap->pm_pteobj);
2997 lwkt_gettoken(&vm_token);
2998 pmap_inval_init(&info);
3000 for (pv = TAILQ_FIRST(&pmap->pm_pvlist); pv; pv = npv) {
3001 if (pv->pv_va >= eva || pv->pv_va < sva) {
3002 npv = TAILQ_NEXT(pv, pv_plist);
3006 KKASSERT(pmap == pv->pv_pmap);
3009 pte = (unsigned *)vtopte(pv->pv_va);
3011 pte = pmap_pte_quick(pmap, pv->pv_va);
3013 pmap_inval_interlock(&info, pmap, pv->pv_va);
3016 * We cannot remove wired pages from a process' mapping
3020 pmap_inval_deinterlock(&info, pmap);
3021 npv = TAILQ_NEXT(pv, pv_plist);
3025 tpte = loadandclear(pte);
3026 pmap_inval_deinterlock(&info, pmap);
3028 m = PHYS_TO_VM_PAGE(tpte);
3029 test_m_maps_pv(m, pv);
3031 KASSERT(m < &vm_page_array[vm_page_array_size],
3032 ("pmap_remove_pages: bad tpte %x", tpte));
3034 KKASSERT(pmap->pm_stats.resident_count > 0);
3035 --pmap->pm_stats.resident_count;
3038 * Update the vm_page_t clean and reference bits.
3044 npv = TAILQ_NEXT(pv, pv_plist);
3046 KKASSERT(pv->pv_m == m);
3047 KKASSERT(pv->pv_pmap == pmap);
3049 TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist);
3050 save_generation = ++pmap->pm_generation;
3052 m->md.pv_list_count--;
3054 atomic_add_int(&m->object->agg_pv_list_count, -1);
3055 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
3056 if (TAILQ_EMPTY(&m->md.pv_list))
3057 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
3059 pmap_unuse_pt(pmap, pv->pv_va, pv->pv_ptem, &info);
3063 * Restart the scan if we blocked during the unuse or free
3064 * calls and other removals were made.
3066 if (save_generation != pmap->pm_generation) {
3067 kprintf("Warning: pmap_remove_pages race-A avoided\n");
3068 npv = TAILQ_FIRST(&pmap->pm_pvlist);
3071 pmap_inval_done(&info);
3072 lwkt_reltoken(&vm_token);
3073 if (pmap->pm_pteobj)
3074 vm_object_drop(pmap->pm_pteobj);
3078 * pmap_testbit tests bits in pte's
3079 * note that the testbit/clearbit routines are inline,
3080 * and a lot of things compile-time evaluate.
3082 * The caller must hold vm_token.
3085 pmap_testbit(vm_page_t m, int bit)
3090 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
3093 if (TAILQ_FIRST(&m->md.pv_list) == NULL)
3096 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
3098 * if the bit being tested is the modified bit, then
3099 * mark clean_map and ptes as never
3102 if (bit & (PG_A|PG_M)) {
3103 if (!pmap_track_modified(pv->pv_va))
3107 #if defined(PMAP_DIAGNOSTIC)
3109 kprintf("Null pmap (tb) at va: %p\n",
3114 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
3123 * This routine is used to modify bits in ptes
3125 * The caller must hold vm_token.
3127 static __inline void
3128 pmap_clearbit(vm_page_t m, int bit)
3130 struct pmap_inval_info info;
3135 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
3138 pmap_inval_init(&info);
3141 * Loop over all current mappings setting/clearing as appropos If
3142 * setting RO do we need to clear the VAC?
3144 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
3146 * don't write protect pager mappings
3149 if (!pmap_track_modified(pv->pv_va))
3153 #if defined(PMAP_DIAGNOSTIC)
3155 kprintf("Null pmap (cb) at va: %p\n",
3162 * Careful here. We can use a locked bus instruction to
3163 * clear PG_A or PG_M safely but we need to synchronize
3164 * with the target cpus when we mess with PG_RW.
3166 * We do not have to force synchronization when clearing
3167 * PG_M even for PTEs generated via virtual memory maps,
3168 * because the virtual kernel will invalidate the pmap
3169 * entry when/if it needs to resynchronize the Modify bit.
3172 pmap_inval_interlock(&info, pv->pv_pmap, pv->pv_va);
3173 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
3180 atomic_clear_int(pte, PG_M|PG_RW);
3183 * The cpu may be trying to set PG_M
3184 * simultaniously with our clearing
3187 if (!atomic_cmpset_int(pte, pbits,
3191 } else if (bit == PG_M) {
3193 * We could also clear PG_RW here to force
3194 * a fault on write to redetect PG_M for
3195 * virtual kernels, but it isn't necessary
3196 * since virtual kernels invalidate the pte
3197 * when they clear the VPTE_M bit in their
3198 * virtual page tables.
3200 atomic_clear_int(pte, PG_M);
3202 atomic_clear_int(pte, bit);
3206 pmap_inval_deinterlock(&info, pv->pv_pmap);
3208 pmap_inval_done(&info);
3212 * Lower the permission for all mappings to a given page.
3217 pmap_page_protect(vm_page_t m, vm_prot_t prot)
3219 if ((prot & VM_PROT_WRITE) == 0) {
3220 lwkt_gettoken(&vm_token);
3221 if (prot & (VM_PROT_READ | VM_PROT_EXECUTE)) {
3222 pmap_clearbit(m, PG_RW);
3223 vm_page_flag_clear(m, PG_WRITEABLE);
3227 lwkt_reltoken(&vm_token);
3232 * Return the physical address given a physical page index.
3237 pmap_phys_address(vm_pindex_t ppn)
3239 return (i386_ptob(ppn));
3243 * Return a count of reference bits for a page, clearing those bits.
3244 * It is not necessary for every reference bit to be cleared, but it
3245 * is necessary that 0 only be returned when there are truly no
3246 * reference bits set.
3251 pmap_ts_referenced(vm_page_t m)
3253 pv_entry_t pv, pvf, pvn;
3257 if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
3260 lwkt_gettoken(&vm_token);
3262 if ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
3267 pvn = TAILQ_NEXT(pv, pv_list);
3269 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
3270 TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list);
3272 if (!pmap_track_modified(pv->pv_va))
3275 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
3277 if (pte && (*pte & PG_A)) {
3279 atomic_clear_int(pte, PG_A);
3281 atomic_clear_int_nonlocked(pte, PG_A);
3288 } while ((pv = pvn) != NULL && pv != pvf);
3291 lwkt_reltoken(&vm_token);
3297 * Return whether or not the specified physical page was modified
3298 * in any physical maps.
3303 pmap_is_modified(vm_page_t m)
3307 lwkt_gettoken(&vm_token);
3308 res = pmap_testbit(m, PG_M);
3309 lwkt_reltoken(&vm_token);
3314 * Clear the modify bits on the specified physical page.
3319 pmap_clear_modify(vm_page_t m)
3321 lwkt_gettoken(&vm_token);
3322 pmap_clearbit(m, PG_M);
3323 lwkt_reltoken(&vm_token);
3327 * Clear the reference bit on the specified physical page.
3332 pmap_clear_reference(vm_page_t m)
3334 lwkt_gettoken(&vm_token);
3335 pmap_clearbit(m, PG_A);
3336 lwkt_reltoken(&vm_token);
3340 * Miscellaneous support routines follow
3342 * Called from the low level boot code only.
3345 i386_protection_init(void)
3349 kp = protection_codes;
3350 for (prot = 0; prot < 8; prot++) {
3352 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_NONE:
3354 * Read access is also 0. There isn't any execute bit,
3355 * so just make it readable.
3357 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_NONE:
3358 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_EXECUTE:
3359 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_EXECUTE:
3362 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_NONE:
3363 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_EXECUTE:
3364 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_NONE:
3365 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE:
3373 * Map a set of physical memory pages into the kernel virtual
3374 * address space. Return a pointer to where it is mapped. This
3375 * routine is intended to be used for mapping device memory,
3378 * NOTE: we can't use pgeflag unless we invalidate the pages one at
3384 pmap_mapdev(vm_paddr_t pa, vm_size_t size)
3386 vm_offset_t va, tmpva, offset;
3389 offset = pa & PAGE_MASK;
3390 size = roundup(offset + size, PAGE_SIZE);
3392 va = kmem_alloc_nofault(&kernel_map, size, PAGE_SIZE);
3394 panic("pmap_mapdev: Couldn't alloc kernel virtual memory");
3397 for (tmpva = va; size > 0;) {
3398 pte = (unsigned *)vtopte(tmpva);
3399 *pte = pa | PG_RW | PG_V; /* | pgeflag; */
3407 return ((void *)(va + offset));
3411 pmap_mapdev_uncacheable(vm_paddr_t pa, vm_size_t size)
3413 vm_offset_t va, tmpva, offset;
3416 offset = pa & PAGE_MASK;
3417 size = roundup(offset + size, PAGE_SIZE);
3419 va = kmem_alloc_nofault(&kernel_map, size, PAGE_SIZE);
3421 panic("pmap_mapdev_uncacheable: "
3422 "Couldn't alloc kernel virtual memory");
3426 for (tmpva = va; size > 0;) {
3427 pte = (unsigned *)vtopte(tmpva);
3428 *pte = pa | PG_RW | PG_V | PG_N; /* | pgeflag; */
3436 return ((void *)(va + offset));
3443 pmap_unmapdev(vm_offset_t va, vm_size_t size)
3445 vm_offset_t base, offset;
3447 base = va & PG_FRAME;
3448 offset = va & PAGE_MASK;
3449 size = roundup(offset + size, PAGE_SIZE);
3450 pmap_qremove(va, size >> PAGE_SHIFT);
3451 kmem_free(&kernel_map, base, size);
3455 * Perform the pmap work for mincore
3457 * The caller must hold vm_token if the caller wishes a stable result,
3458 * and even in that case some bits can change due to third party accesses
3464 pmap_mincore(pmap_t pmap, vm_offset_t addr)
3466 unsigned *ptep, pte;
3470 lwkt_gettoken(&vm_token);
3471 ptep = pmap_pte(pmap, addr);
3473 if (ptep && (pte = *ptep) != 0) {
3476 val = MINCORE_INCORE;
3477 if ((pte & PG_MANAGED) == 0)
3480 pa = pte & PG_FRAME;
3482 m = PHYS_TO_VM_PAGE(pa);
3488 val |= MINCORE_MODIFIED|MINCORE_MODIFIED_OTHER;
3489 } else if (m->dirty || pmap_is_modified(m)) {
3491 * Modified by someone else
3493 val |= MINCORE_MODIFIED_OTHER;
3500 val |= MINCORE_REFERENCED|MINCORE_REFERENCED_OTHER;
3501 } else if ((m->flags & PG_REFERENCED) ||
3502 pmap_ts_referenced(m)) {
3504 * Referenced by someone else
3506 val |= MINCORE_REFERENCED_OTHER;
3507 vm_page_flag_set(m, PG_REFERENCED);
3511 lwkt_reltoken(&vm_token);
3516 * Replace p->p_vmspace with a new one. If adjrefs is non-zero the new
3517 * vmspace will be ref'd and the old one will be deref'd.
3519 * cr3 will be reloaded if any lwp is the current lwp.
3521 * Only called with new VM spaces.
3522 * The process must have only a single thread.
3523 * The process must hold the vmspace->vm_map.token for oldvm and newvm
3524 * No other requirements.
3527 pmap_replacevm(struct proc *p, struct vmspace *newvm, int adjrefs)
3529 struct vmspace *oldvm;
3532 oldvm = p->p_vmspace;
3533 if (oldvm != newvm) {
3535 sysref_get(&newvm->vm_sysref);
3536 p->p_vmspace = newvm;
3537 KKASSERT(p->p_nthreads == 1);
3538 lp = RB_ROOT(&p->p_lwp_tree);
3539 pmap_setlwpvm(lp, newvm);
3541 sysref_put(&oldvm->vm_sysref);
3546 * Set the vmspace for a LWP. The vmspace is almost universally set the
3547 * same as the process vmspace, but virtual kernels need to swap out contexts
3548 * on a per-lwp basis.
3550 * Always called with a lp under the caller's direct control, either
3551 * unscheduled or the current lwp.
3556 pmap_setlwpvm(struct lwp *lp, struct vmspace *newvm)
3558 struct vmspace *oldvm;
3561 oldvm = lp->lwp_vmspace;
3563 if (oldvm != newvm) {
3564 lp->lwp_vmspace = newvm;
3565 if (curthread->td_lwp == lp) {
3566 pmap = vmspace_pmap(newvm);
3568 atomic_set_cpumask(&pmap->pm_active, mycpu->gd_cpumask);
3569 if (pmap->pm_active & CPUMASK_LOCK)
3570 pmap_interlock_wait(newvm);
3572 pmap->pm_active |= 1;
3574 #if defined(SWTCH_OPTIM_STATS)
3577 curthread->td_pcb->pcb_cr3 = vtophys(pmap->pm_pdir);
3578 load_cr3(curthread->td_pcb->pcb_cr3);
3579 pmap = vmspace_pmap(oldvm);
3581 atomic_clear_cpumask(&pmap->pm_active,
3584 pmap->pm_active &= ~(cpumask_t)1;
3592 * Called when switching to a locked pmap, used to interlock against pmaps
3593 * undergoing modifications to prevent us from activating the MMU for the
3594 * target pmap until all such modifications have completed. We have to do
3595 * this because the thread making the modifications has already set up its
3596 * SMP synchronization mask.
3601 pmap_interlock_wait(struct vmspace *vm)
3603 struct pmap *pmap = &vm->vm_pmap;
3605 if (pmap->pm_active & CPUMASK_LOCK) {
3607 DEBUG_PUSH_INFO("pmap_interlock_wait");
3608 while (pmap->pm_active & CPUMASK_LOCK) {
3610 lwkt_process_ipiq();
3620 * Return a page-directory alignment hint for device mappings which will
3621 * allow the use of super-pages for the mapping.
3626 pmap_addr_hint(vm_object_t obj, vm_offset_t addr, vm_size_t size)
3629 if ((obj == NULL) || (size < NBPDR) || (obj->type != OBJT_DEVICE)) {
3633 addr = (addr + (NBPDR - 1)) & ~(NBPDR - 1);
3638 * Return whether the PGE flag is supported globally.
3643 pmap_get_pgeflag(void)
3649 * Used by kmalloc/kfree, page already exists at va
3652 pmap_kvtom(vm_offset_t va)
3654 return(PHYS_TO_VM_PAGE(*vtopte(va) & PG_FRAME));
3658 pmap_object_init(vm_object_t object)
3664 pmap_object_free(vm_object_t object)