Merge branch 'vendor/CVS'
[dragonfly.git] / sys / platform / pc32 / i386 / pmap.c
1 /*
2  * (MPSAFE)
3  *
4  * Copyright (c) 1991 Regents of the University of California.
5  * All rights reserved.
6  * Copyright (c) 1994 John S. Dyson
7  * All rights reserved.
8  * Copyright (c) 1994 David Greenman
9  * All rights reserved.
10  *
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.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions
17  * are met:
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.
30  *
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
41  * SUCH DAMAGE.
42  *
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 $
45  * $DragonFly: src/sys/platform/pc32/i386/pmap.c,v 1.87 2008/08/25 17:01:38 dillon Exp $
46  */
47
48 /*
49  * Manages physical address maps.
50  *
51  * In most cases the vm_token must be held when manipulating a user pmap
52  * or elements within a vm_page, and the kvm_token must be held when
53  * manipulating the kernel pmap.  Operations on user pmaps may require
54  * additional synchronization.
55  *
56  * In some cases the caller may hold the required tokens to prevent pmap
57  * functions from blocking on those same tokens.  This typically only works
58  * for lookup-style operations.
59  */
60 /*
61  * PMAP_DEBUG - see platform/pc32/include/pmap.h
62  */
63
64 #include "opt_disable_pse.h"
65 #include "opt_pmap.h"
66 #include "opt_msgbuf.h"
67
68 #include <sys/param.h>
69 #include <sys/systm.h>
70 #include <sys/kernel.h>
71 #include <sys/proc.h>
72 #include <sys/msgbuf.h>
73 #include <sys/vmmeter.h>
74 #include <sys/mman.h>
75
76 #include <vm/vm.h>
77 #include <vm/vm_param.h>
78 #include <sys/sysctl.h>
79 #include <sys/lock.h>
80 #include <vm/vm_kern.h>
81 #include <vm/vm_page.h>
82 #include <vm/vm_map.h>
83 #include <vm/vm_object.h>
84 #include <vm/vm_extern.h>
85 #include <vm/vm_pageout.h>
86 #include <vm/vm_pager.h>
87 #include <vm/vm_zone.h>
88
89 #include <sys/user.h>
90 #include <sys/thread2.h>
91 #include <sys/sysref2.h>
92
93 #include <machine/cputypes.h>
94 #include <machine/md_var.h>
95 #include <machine/specialreg.h>
96 #include <machine/smp.h>
97 #include <machine_base/apic/apicreg.h>
98 #include <machine/globaldata.h>
99 #include <machine/pmap.h>
100 #include <machine/pmap_inval.h>
101
102 #define PMAP_KEEP_PDIRS
103 #ifndef PMAP_SHPGPERPROC
104 #define PMAP_SHPGPERPROC 200
105 #define PMAP_PVLIMIT     1400000        /* i386 kvm problems */
106 #endif
107
108 #if defined(DIAGNOSTIC)
109 #define PMAP_DIAGNOSTIC
110 #endif
111
112 #define MINPV 2048
113
114 #if !defined(PMAP_DIAGNOSTIC)
115 #define PMAP_INLINE __inline
116 #else
117 #define PMAP_INLINE
118 #endif
119
120 /*
121  * Get PDEs and PTEs for user/kernel address space
122  */
123 #define pmap_pde(m, v)  (&((m)->pm_pdir[(vm_offset_t)(v) >> PDRSHIFT]))
124 #define pdir_pde(m, v) (m[(vm_offset_t)(v) >> PDRSHIFT])
125
126 #define pmap_pde_v(pte)         ((*(int *)pte & PG_V) != 0)
127 #define pmap_pte_w(pte)         ((*(int *)pte & PG_W) != 0)
128 #define pmap_pte_m(pte)         ((*(int *)pte & PG_M) != 0)
129 #define pmap_pte_u(pte)         ((*(int *)pte & PG_A) != 0)
130 #define pmap_pte_v(pte)         ((*(int *)pte & PG_V) != 0)
131
132 /*
133  * Given a map and a machine independent protection code,
134  * convert to a vax protection code.
135  */
136 #define pte_prot(m, p)          \
137         (protection_codes[p & (VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE)])
138 static int protection_codes[8];
139
140 struct pmap kernel_pmap;
141 static TAILQ_HEAD(,pmap)        pmap_list = TAILQ_HEAD_INITIALIZER(pmap_list);
142
143 vm_paddr_t avail_start;         /* PA of first available physical page */
144 vm_paddr_t avail_end;           /* PA of last available physical page */
145 vm_offset_t virtual_start;      /* VA of first avail page (after kernel bss) */
146 vm_offset_t virtual_end;        /* VA of last avail page (end of kernel AS) */
147 vm_offset_t virtual2_start;
148 vm_offset_t virtual2_end;
149 vm_offset_t KvaStart;           /* VA start of KVA space */
150 vm_offset_t KvaEnd;             /* VA end of KVA space (non-inclusive) */
151 vm_offset_t KvaSize;            /* max size of kernel virtual address space */
152 static boolean_t pmap_initialized = FALSE;      /* Has pmap_init completed? */
153 static int pgeflag;             /* PG_G or-in */
154 static int pseflag;             /* PG_PS or-in */
155
156 static vm_object_t kptobj;
157
158 static int nkpt;
159 vm_offset_t kernel_vm_end;
160
161 /*
162  * Data for the pv entry allocation mechanism
163  */
164 static vm_zone_t pvzone;
165 static struct vm_zone pvzone_store;
166 static struct vm_object pvzone_obj;
167 static int pv_entry_count=0, pv_entry_max=0, pv_entry_high_water=0;
168 static int pmap_pagedaemon_waken = 0;
169 static struct pv_entry *pvinit;
170
171 /*
172  * Considering all the issues I'm having with pmap caching, if breakage
173  * continues to occur, and for debugging, I've added a sysctl that will
174  * just do an unconditional invltlb.
175  */
176 static int dreadful_invltlb;
177
178 SYSCTL_INT(_vm, OID_AUTO, dreadful_invltlb,
179            CTLFLAG_RW, &dreadful_invltlb, 0, "Debugging sysctl to force invltlb on pmap operations");
180
181 /*
182  * All those kernel PT submaps that BSD is so fond of
183  */
184 pt_entry_t *CMAP1 = 0, *ptmmap;
185 caddr_t CADDR1 = 0, ptvmmap = 0;
186 static pt_entry_t *msgbufmap;
187 struct msgbuf *msgbufp=0;
188
189 /*
190  * Crashdump maps.
191  */
192 static pt_entry_t *pt_crashdumpmap;
193 static caddr_t crashdumpmap;
194
195 extern pt_entry_t *SMPpt;
196
197 static PMAP_INLINE void free_pv_entry (pv_entry_t pv);
198 static unsigned * get_ptbase (pmap_t pmap);
199 static pv_entry_t get_pv_entry (void);
200 static void     i386_protection_init (void);
201 static __inline void    pmap_clearbit (vm_page_t m, int bit);
202
203 static void     pmap_remove_all (vm_page_t m);
204 static int pmap_remove_pte (struct pmap *pmap, unsigned *ptq, 
205                                 vm_offset_t sva, pmap_inval_info_t info);
206 static void pmap_remove_page (struct pmap *pmap, 
207                                 vm_offset_t va, pmap_inval_info_t info);
208 static int pmap_remove_entry (struct pmap *pmap, vm_page_t m,
209                                 vm_offset_t va, pmap_inval_info_t info);
210 static boolean_t pmap_testbit (vm_page_t m, int bit);
211 static void pmap_insert_entry (pmap_t pmap, vm_offset_t va,
212                 vm_page_t mpte, vm_page_t m);
213
214 static vm_page_t pmap_allocpte (pmap_t pmap, vm_offset_t va);
215
216 static int pmap_release_free_page (pmap_t pmap, vm_page_t p);
217 static vm_page_t _pmap_allocpte (pmap_t pmap, unsigned ptepindex);
218 static unsigned * pmap_pte_quick (pmap_t pmap, vm_offset_t va);
219 static vm_page_t pmap_page_lookup (vm_object_t object, vm_pindex_t pindex);
220 static int pmap_unuse_pt (pmap_t, vm_offset_t, vm_page_t, pmap_inval_info_t);
221 static vm_offset_t pmap_kmem_choose(vm_offset_t addr);
222
223 static unsigned pdir4mb;
224
225 /*
226  * Move the kernel virtual free pointer to the next
227  * 4MB.  This is used to help improve performance
228  * by using a large (4MB) page for much of the kernel
229  * (.text, .data, .bss)
230  */
231 static
232 vm_offset_t
233 pmap_kmem_choose(vm_offset_t addr)
234 {
235         vm_offset_t newaddr = addr;
236 #ifndef DISABLE_PSE
237         if (cpu_feature & CPUID_PSE) {
238                 newaddr = (addr + (NBPDR - 1)) & ~(NBPDR - 1);
239         }
240 #endif
241         return newaddr;
242 }
243
244 /*
245  * This function returns a pointer to the pte entry in the pmap and has
246  * the side effect of potentially retaining a cached mapping of the pmap.
247  *
248  * The caller must hold vm_token and the returned value is only valid
249  * until the caller blocks or releases the token.
250  */
251 static
252 unsigned *
253 pmap_pte(pmap_t pmap, vm_offset_t va)
254 {
255         unsigned *pdeaddr;
256
257         ASSERT_LWKT_TOKEN_HELD(&vm_token);
258         if (pmap) {
259                 pdeaddr = (unsigned *) pmap_pde(pmap, va);
260                 if (*pdeaddr & PG_PS)
261                         return pdeaddr;
262                 if (*pdeaddr)
263                         return get_ptbase(pmap) + i386_btop(va);
264         }
265         return (0);
266 }
267
268 /*
269  * pmap_pte using the kernel_pmap
270  *
271  * Used for debugging, no requirements.
272  */
273 unsigned *
274 pmap_kernel_pte(vm_offset_t va)
275 {
276         unsigned *pdeaddr;
277
278         pdeaddr = (unsigned *) pmap_pde(&kernel_pmap, va);
279         if (*pdeaddr & PG_PS)
280                 return pdeaddr;
281         if (*pdeaddr)
282                 return (unsigned *)vtopte(va);
283         return(0);
284 }
285
286 /*
287  * pmap_pte_quick:
288  *
289  * Super fast pmap_pte routine best used when scanning the pv lists.
290  * This eliminates many course-grained invltlb calls.  Note that many of
291  * the pv list scans are across different pmaps and it is very wasteful
292  * to do an entire invltlb when checking a single mapping.
293  *
294  * Should only be called while in a critical section.
295  *
296  * The caller must hold vm_token and the returned value is only valid
297  * until the caller blocks or releases the token.
298  */
299 static
300 unsigned *
301 pmap_pte_quick(pmap_t pmap, vm_offset_t va)
302 {
303         struct mdglobaldata *gd = mdcpu;
304         unsigned pde, newpf;
305
306         ASSERT_LWKT_TOKEN_HELD(&vm_token);
307         if ((pde = (unsigned) pmap->pm_pdir[va >> PDRSHIFT]) != 0) {
308                 unsigned frame = (unsigned) pmap->pm_pdir[PTDPTDI] & PG_FRAME;
309                 unsigned index = i386_btop(va);
310                 /* are we current address space or kernel? */
311                 if ((pmap == &kernel_pmap) ||
312                         (frame == (((unsigned) PTDpde) & PG_FRAME))) {
313                         return (unsigned *) PTmap + index;
314                 }
315                 newpf = pde & PG_FRAME;
316                 if (((*(unsigned *)gd->gd_PMAP1) & PG_FRAME) != newpf) {
317                         *(unsigned *)gd->gd_PMAP1 = newpf | PG_RW | PG_V;
318                         cpu_invlpg(gd->gd_PADDR1);
319                 }
320                 return gd->gd_PADDR1 + ((unsigned) index & (NPTEPG - 1));
321         }
322         return (0);
323 }
324
325
326 /*
327  * Bootstrap the system enough to run with virtual memory.
328  *
329  * On the i386 this is called after mapping has already been enabled
330  * and just syncs the pmap module with what has already been done.
331  * [We can't call it easily with mapping off since the kernel is not
332  * mapped with PA == VA, hence we would have to relocate every address
333  * from the linked base (virtual) address "KERNBASE" to the actual
334  * (physical) address starting relative to 0]
335  */
336 void
337 pmap_bootstrap(vm_paddr_t firstaddr, vm_paddr_t loadaddr)
338 {
339         vm_offset_t va;
340         pt_entry_t *pte;
341         struct mdglobaldata *gd;
342         int i;
343         int pg;
344
345         KvaStart = (vm_offset_t)VADDR(PTDPTDI, 0);
346         KvaSize = (vm_offset_t)VADDR(APTDPTDI, 0) - KvaStart;
347         KvaEnd  = KvaStart + KvaSize;
348
349         avail_start = firstaddr;
350
351         /*
352          * XXX The calculation of virtual_start is wrong. It's NKPT*PAGE_SIZE
353          * too large. It should instead be correctly calculated in locore.s and
354          * not based on 'first' (which is a physical address, not a virtual
355          * address, for the start of unused physical memory). The kernel
356          * page tables are NOT double mapped and thus should not be included
357          * in this calculation.
358          */
359         virtual_start = (vm_offset_t) KERNBASE + firstaddr;
360         virtual_start = pmap_kmem_choose(virtual_start);
361         virtual_end = VADDR(KPTDI+NKPDE-1, NPTEPG-1);
362
363         /*
364          * Initialize protection array.
365          */
366         i386_protection_init();
367
368         /*
369          * The kernel's pmap is statically allocated so we don't have to use
370          * pmap_create, which is unlikely to work correctly at this part of
371          * the boot sequence (XXX and which no longer exists).
372          */
373         kernel_pmap.pm_pdir = (pd_entry_t *)(KERNBASE + (u_int)IdlePTD);
374         kernel_pmap.pm_count = 1;
375         kernel_pmap.pm_active = (cpumask_t)-1 & ~CPUMASK_LOCK;
376         TAILQ_INIT(&kernel_pmap.pm_pvlist);
377         nkpt = NKPT;
378
379         /*
380          * Reserve some special page table entries/VA space for temporary
381          * mapping of pages.
382          */
383 #define SYSMAP(c, p, v, n)      \
384         v = (c)va; va += ((n)*PAGE_SIZE); p = pte; pte += (n);
385
386         va = virtual_start;
387         pte = (pt_entry_t *) pmap_kernel_pte(va);
388
389         /*
390          * CMAP1/CMAP2 are used for zeroing and copying pages.
391          */
392         SYSMAP(caddr_t, CMAP1, CADDR1, 1)
393
394         /*
395          * Crashdump maps.
396          */
397         SYSMAP(caddr_t, pt_crashdumpmap, crashdumpmap, MAXDUMPPGS);
398
399         /*
400          * ptvmmap is used for reading arbitrary physical pages via
401          * /dev/mem.
402          */
403         SYSMAP(caddr_t, ptmmap, ptvmmap, 1)
404
405         /*
406          * msgbufp is used to map the system message buffer.
407          * XXX msgbufmap is not used.
408          */
409         SYSMAP(struct msgbuf *, msgbufmap, msgbufp,
410                atop(round_page(MSGBUF_SIZE)))
411
412         virtual_start = va;
413
414         *(int *) CMAP1 = 0;
415         for (i = 0; i < NKPT; i++)
416                 PTD[i] = 0;
417
418         /*
419          * PG_G is terribly broken on SMP because we IPI invltlb's in some
420          * cases rather then invl1pg.  Actually, I don't even know why it
421          * works under UP because self-referential page table mappings
422          */
423 #ifdef SMP
424         pgeflag = 0;
425 #else
426         if (cpu_feature & CPUID_PGE)
427                 pgeflag = PG_G;
428 #endif
429         
430 /*
431  * Initialize the 4MB page size flag
432  */
433         pseflag = 0;
434 /*
435  * The 4MB page version of the initial
436  * kernel page mapping.
437  */
438         pdir4mb = 0;
439
440 #if !defined(DISABLE_PSE)
441         if (cpu_feature & CPUID_PSE) {
442                 unsigned ptditmp;
443                 /*
444                  * Note that we have enabled PSE mode
445                  */
446                 pseflag = PG_PS;
447                 ptditmp = *((unsigned *)PTmap + i386_btop(KERNBASE));
448                 ptditmp &= ~(NBPDR - 1);
449                 ptditmp |= PG_V | PG_RW | PG_PS | PG_U | pgeflag;
450                 pdir4mb = ptditmp;
451
452 #ifndef SMP
453                 /*
454                  * Enable the PSE mode.  If we are SMP we can't do this
455                  * now because the APs will not be able to use it when
456                  * they boot up.
457                  */
458                 load_cr4(rcr4() | CR4_PSE);
459
460                 /*
461                  * We can do the mapping here for the single processor
462                  * case.  We simply ignore the old page table page from
463                  * now on.
464                  */
465                 /*
466                  * For SMP, we still need 4K pages to bootstrap APs,
467                  * PSE will be enabled as soon as all APs are up.
468                  */
469                 PTD[KPTDI] = (pd_entry_t)ptditmp;
470                 kernel_pmap.pm_pdir[KPTDI] = (pd_entry_t)ptditmp;
471                 cpu_invltlb();
472 #endif
473         }
474 #endif
475
476         /*
477          * We need to finish setting up the globaldata page for the BSP.
478          * locore has already populated the page table for the mdglobaldata
479          * portion.
480          */
481         pg = MDGLOBALDATA_BASEALLOC_PAGES;
482         gd = &CPU_prvspace[0].mdglobaldata;
483         gd->gd_CMAP1 = &SMPpt[pg + 0];
484         gd->gd_CMAP2 = &SMPpt[pg + 1];
485         gd->gd_CMAP3 = &SMPpt[pg + 2];
486         gd->gd_PMAP1 = &SMPpt[pg + 3];
487         gd->gd_GDMAP1 = &PTD[APTDPTDI];
488         gd->gd_CADDR1 = CPU_prvspace[0].CPAGE1;
489         gd->gd_CADDR2 = CPU_prvspace[0].CPAGE2;
490         gd->gd_CADDR3 = CPU_prvspace[0].CPAGE3;
491         gd->gd_PADDR1 = (unsigned *)CPU_prvspace[0].PPAGE1;
492         gd->gd_GDADDR1= (unsigned *)VADDR(APTDPTDI, 0);
493
494         cpu_invltlb();
495 }
496
497 #ifdef SMP
498 /*
499  * Set 4mb pdir for mp startup
500  */
501 void
502 pmap_set_opt(void)
503 {
504         if (pseflag && (cpu_feature & CPUID_PSE)) {
505                 load_cr4(rcr4() | CR4_PSE);
506                 if (pdir4mb && mycpu->gd_cpuid == 0) {  /* only on BSP */
507                         kernel_pmap.pm_pdir[KPTDI] =
508                             PTD[KPTDI] = (pd_entry_t)pdir4mb;
509                         cpu_invltlb();
510                 }
511         }
512 }
513 #endif
514
515 /*
516  * Initialize the pmap module, called by vm_init()
517  *
518  * Called from the low level boot code only.
519  */
520 void
521 pmap_init(void)
522 {
523         int i;
524         int initial_pvs;
525
526         /*
527          * object for kernel page table pages
528          */
529         kptobj = vm_object_allocate(OBJT_DEFAULT, NKPDE);
530
531         /*
532          * Allocate memory for random pmap data structures.  Includes the
533          * pv_head_table.
534          */
535
536         for(i = 0; i < vm_page_array_size; i++) {
537                 vm_page_t m;
538
539                 m = &vm_page_array[i];
540                 TAILQ_INIT(&m->md.pv_list);
541                 m->md.pv_list_count = 0;
542         }
543
544         /*
545          * init the pv free list
546          */
547         initial_pvs = vm_page_array_size;
548         if (initial_pvs < MINPV)
549                 initial_pvs = MINPV;
550         pvzone = &pvzone_store;
551         pvinit = (void *)kmem_alloc(&kernel_map,
552                                     initial_pvs * sizeof (struct pv_entry));
553         zbootinit(pvzone, "PV ENTRY", sizeof (struct pv_entry),
554                   pvinit, initial_pvs);
555
556         /*
557          * Now it is safe to enable pv_table recording.
558          */
559         pmap_initialized = TRUE;
560 }
561
562 /*
563  * Initialize the address space (zone) for the pv_entries.  Set a
564  * high water mark so that the system can recover from excessive
565  * numbers of pv entries.
566  *
567  * Called from the low level boot code only.
568  */
569 void
570 pmap_init2(void)
571 {
572         int shpgperproc = PMAP_SHPGPERPROC;
573         int entry_max;
574
575         TUNABLE_INT_FETCH("vm.pmap.shpgperproc", &shpgperproc);
576         pv_entry_max = shpgperproc * maxproc + vm_page_array_size;
577
578 #ifdef PMAP_PVLIMIT
579         /*
580          * Horrible hack for systems with a lot of memory running i386.
581          * the calculated pv_entry_max can wind up eating a ton of KVM
582          * so put a cap on the number of entries if the user did not
583          * change any of the values.   This saves about 44MB of KVM on
584          * boxes with 3+GB of ram.
585          *
586          * On the flip side, this makes it more likely that some setups
587          * will run out of pv entries.  Those sysads will have to bump
588          * the limit up with vm.pamp.pv_entries or vm.pmap.shpgperproc.
589          */
590         if (shpgperproc == PMAP_SHPGPERPROC) {
591                 if (pv_entry_max > PMAP_PVLIMIT)
592                         pv_entry_max = PMAP_PVLIMIT;
593         }
594 #endif
595         TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max);
596         pv_entry_high_water = 9 * (pv_entry_max / 10);
597
598         /*
599          * Subtract out pages already installed in the zone (hack)
600          */
601         entry_max = pv_entry_max - vm_page_array_size;
602         if (entry_max <= 0)
603                 entry_max = 1;
604
605         zinitna(pvzone, &pvzone_obj, NULL, 0, entry_max, ZONE_INTERRUPT, 1);
606 }
607
608
609 /***************************************************
610  * Low level helper routines.....
611  ***************************************************/
612
613 #ifdef PMAP_DEBUG
614
615 static void
616 test_m_maps_pv(vm_page_t m, pv_entry_t pv)
617 {
618         pv_entry_t spv;
619
620         crit_enter();
621 #ifdef PMAP_DEBUG
622         KKASSERT(pv->pv_m == m);
623 #endif
624         TAILQ_FOREACH(spv, &m->md.pv_list, pv_list) {
625                 if (pv == spv) {
626                         crit_exit();
627                         return;
628                 }
629         }
630         crit_exit();
631         panic("test_m_maps_pv: failed m %p pv %p\n", m, pv);
632 }
633
634 static void
635 ptbase_assert(struct pmap *pmap)
636 {
637         unsigned frame = (unsigned) pmap->pm_pdir[PTDPTDI] & PG_FRAME;
638
639         /* are we current address space or kernel? */
640         if (pmap == &kernel_pmap || frame == (((unsigned)PTDpde) & PG_FRAME))
641                 return;
642         KKASSERT(frame == (*mdcpu->gd_GDMAP1 & PG_FRAME));
643 }
644
645 #else
646
647 #define test_m_maps_pv(m, pv)
648 #define ptbase_assert(pmap)
649
650 #endif
651
652 #if defined(PMAP_DIAGNOSTIC)
653
654 /*
655  * This code checks for non-writeable/modified pages.
656  * This should be an invalid condition.
657  */
658 static int
659 pmap_nw_modified(pt_entry_t ptea)
660 {
661         int pte;
662
663         pte = (int) ptea;
664
665         if ((pte & (PG_M|PG_RW)) == PG_M)
666                 return 1;
667         else
668                 return 0;
669 }
670 #endif
671
672
673 /*
674  * This routine defines the region(s) of memory that should not be tested
675  * for the modified bit.
676  *
677  * No requirements.
678  */
679 static PMAP_INLINE int
680 pmap_track_modified(vm_offset_t va)
681 {
682         if ((va < clean_sva) || (va >= clean_eva)) 
683                 return 1;
684         else
685                 return 0;
686 }
687
688 /*
689  * Retrieve the mapped page table base for a particular pmap.  Use our self
690  * mapping for the kernel_pmap or our current pmap.
691  *
692  * For foreign pmaps we use the per-cpu page table map.  Since this involves
693  * installing a ptd it's actually (per-process x per-cpu).  However, we
694  * still cannot depend on our mapping to survive thread switches because
695  * the process might be threaded and switching to another thread for the
696  * same process on the same cpu will allow that other thread to make its
697  * own mapping.
698  *
699  * This could be a bit confusing but the jist is for something like the
700  * vkernel which uses foreign pmaps all the time this represents a pretty
701  * good cache that avoids unnecessary invltlb()s.
702  *
703  * The caller must hold vm_token and the returned value is only valid
704  * until the caller blocks or releases the token.
705  */
706 static unsigned *
707 get_ptbase(pmap_t pmap)
708 {
709         unsigned frame = (unsigned) pmap->pm_pdir[PTDPTDI] & PG_FRAME;
710         struct mdglobaldata *gd = mdcpu;
711
712         ASSERT_LWKT_TOKEN_HELD(&vm_token);
713
714         /*
715          * We can use PTmap if the pmap is our current address space or
716          * the kernel address space.
717          */
718         if (pmap == &kernel_pmap || frame == (((unsigned) PTDpde) & PG_FRAME)) {
719                 return (unsigned *) PTmap;
720         }
721
722         /*
723          * Otherwise we use the per-cpu alternative page table map.  Each
724          * cpu gets its own map.  Because of this we cannot use this map
725          * from interrupts or threads which can preempt.
726          *
727          * Even if we already have the map cached we may still have to
728          * invalidate the TLB if another cpu modified a PDE in the map.
729          */
730         KKASSERT(gd->mi.gd_intr_nesting_level == 0 &&
731                  (gd->mi.gd_curthread->td_flags & TDF_INTTHREAD) == 0);
732
733         if ((*gd->gd_GDMAP1 & PG_FRAME) != frame) {
734                 *gd->gd_GDMAP1 = frame | PG_RW | PG_V;
735                 pmap->pm_cached |= gd->mi.gd_cpumask;
736                 cpu_invltlb();
737         } else if ((pmap->pm_cached & gd->mi.gd_cpumask) == 0) {
738                 pmap->pm_cached |= gd->mi.gd_cpumask;
739                 cpu_invltlb();
740         } else if (dreadful_invltlb) {
741                 cpu_invltlb();
742         }
743         return ((unsigned *)gd->gd_GDADDR1);
744 }
745
746 /*
747  * pmap_extract:
748  *
749  * Extract the physical page address associated with the map/VA pair.
750  *
751  * The caller may hold vm_token if it desires non-blocking operation.
752  */
753 vm_paddr_t 
754 pmap_extract(pmap_t pmap, vm_offset_t va)
755 {
756         vm_offset_t rtval;
757         vm_offset_t pdirindex;
758
759         lwkt_gettoken(&vm_token);
760         pdirindex = va >> PDRSHIFT;
761         if (pmap && (rtval = (unsigned) pmap->pm_pdir[pdirindex])) {
762                 unsigned *pte;
763                 if ((rtval & PG_PS) != 0) {
764                         rtval &= ~(NBPDR - 1);
765                         rtval |= va & (NBPDR - 1);
766                 } else {
767                         pte = get_ptbase(pmap) + i386_btop(va);
768                         rtval = ((*pte & PG_FRAME) | (va & PAGE_MASK));
769                 }
770         } else {
771                 rtval = 0;
772         }
773         lwkt_reltoken(&vm_token);
774         return rtval;
775 }
776
777 /***************************************************
778  * Low level mapping routines.....
779  ***************************************************/
780
781 /*
782  * Map a wired VM page to a KVA, fully SMP synchronized.
783  *
784  * No requirements, non blocking.
785  */
786 void 
787 pmap_kenter(vm_offset_t va, vm_paddr_t pa)
788 {
789         unsigned *pte;
790         unsigned npte;
791         pmap_inval_info info;
792
793         pmap_inval_init(&info);
794         npte = pa | PG_RW | PG_V | pgeflag;
795         pte = (unsigned *)vtopte(va);
796         pmap_inval_interlock(&info, &kernel_pmap, va);
797         *pte = npte;
798         pmap_inval_deinterlock(&info, &kernel_pmap);
799         pmap_inval_done(&info);
800 }
801
802 /*
803  * Map a wired VM page to a KVA, synchronized on current cpu only.
804  *
805  * No requirements, non blocking.
806  */
807 void
808 pmap_kenter_quick(vm_offset_t va, vm_paddr_t pa)
809 {
810         unsigned *pte;
811         unsigned npte;
812
813         npte = pa | PG_RW | PG_V | pgeflag;
814         pte = (unsigned *)vtopte(va);
815         *pte = npte;
816         cpu_invlpg((void *)va);
817 }
818
819 /*
820  * Synchronize a previously entered VA on all cpus.
821  *
822  * No requirements, non blocking.
823  */
824 void
825 pmap_kenter_sync(vm_offset_t va)
826 {
827         pmap_inval_info info;
828
829         pmap_inval_init(&info);
830         pmap_inval_interlock(&info, &kernel_pmap, va);
831         pmap_inval_deinterlock(&info, &kernel_pmap);
832         pmap_inval_done(&info);
833 }
834
835 /*
836  * Synchronize a previously entered VA on the current cpu only.
837  *
838  * No requirements, non blocking.
839  */
840 void
841 pmap_kenter_sync_quick(vm_offset_t va)
842 {
843         cpu_invlpg((void *)va);
844 }
845
846 /*
847  * Remove a page from the kernel pagetables, fully SMP synchronized.
848  *
849  * No requirements, non blocking.
850  */
851 void
852 pmap_kremove(vm_offset_t va)
853 {
854         unsigned *pte;
855         pmap_inval_info info;
856
857         pmap_inval_init(&info);
858         pte = (unsigned *)vtopte(va);
859         pmap_inval_interlock(&info, &kernel_pmap, va);
860         *pte = 0;
861         pmap_inval_deinterlock(&info, &kernel_pmap);
862         pmap_inval_done(&info);
863 }
864
865 /*
866  * Remove a page from the kernel pagetables, synchronized on current cpu only.
867  *
868  * No requirements, non blocking.
869  */
870 void
871 pmap_kremove_quick(vm_offset_t va)
872 {
873         unsigned *pte;
874         pte = (unsigned *)vtopte(va);
875         *pte = 0;
876         cpu_invlpg((void *)va);
877 }
878
879 /*
880  * Adjust the permissions of a page in the kernel page table,
881  * synchronized on the current cpu only.
882  *
883  * No requirements, non blocking.
884  */
885 void
886 pmap_kmodify_rw(vm_offset_t va)
887 {
888         atomic_set_int(vtopte(va), PG_RW);
889         cpu_invlpg((void *)va);
890 }
891
892 /*
893  * Adjust the permissions of a page in the kernel page table,
894  * synchronized on the current cpu only.
895  *
896  * No requirements, non blocking.
897  */
898 void
899 pmap_kmodify_nc(vm_offset_t va)
900 {
901         atomic_set_int(vtopte(va), PG_N);
902         cpu_invlpg((void *)va);
903 }
904
905 /*
906  * Map a range of physical addresses into kernel virtual address space.
907  *
908  * No requirements, non blocking.
909  */
910 vm_offset_t
911 pmap_map(vm_offset_t *virtp, vm_paddr_t start, vm_paddr_t end, int prot)
912 {
913         vm_offset_t     sva, virt;
914
915         sva = virt = *virtp;
916         while (start < end) {
917                 pmap_kenter(virt, start);
918                 virt += PAGE_SIZE;
919                 start += PAGE_SIZE;
920         }
921         *virtp = virt;
922         return (sva);
923 }
924
925 /*
926  * Add a list of wired pages to the kva, fully SMP synchronized.
927  *
928  * No requirements, non blocking.
929  */
930 void
931 pmap_qenter(vm_offset_t va, vm_page_t *m, int count)
932 {
933         vm_offset_t end_va;
934
935         end_va = va + count * PAGE_SIZE;
936                 
937         while (va < end_va) {
938                 unsigned *pte;
939
940                 pte = (unsigned *)vtopte(va);
941                 *pte = VM_PAGE_TO_PHYS(*m) | PG_RW | PG_V | pgeflag;
942                 cpu_invlpg((void *)va);
943                 va += PAGE_SIZE;
944                 m++;
945         }
946 #ifdef SMP
947         smp_invltlb();  /* XXX */
948 #endif
949 }
950
951 /*
952  * Remove pages from KVA, fully SMP synchronized.
953  *
954  * No requirements, non blocking.
955  */
956 void
957 pmap_qremove(vm_offset_t va, int count)
958 {
959         vm_offset_t end_va;
960
961         end_va = va + count*PAGE_SIZE;
962
963         while (va < end_va) {
964                 unsigned *pte;
965
966                 pte = (unsigned *)vtopte(va);
967                 *pte = 0;
968                 cpu_invlpg((void *)va);
969                 va += PAGE_SIZE;
970         }
971 #ifdef SMP
972         smp_invltlb();
973 #endif
974 }
975
976 /*
977  * This routine works like vm_page_lookup() but also blocks as long as the
978  * page is busy.  This routine does not busy the page it returns.
979  *
980  * The caller must hold vm_token.
981  */
982 static vm_page_t
983 pmap_page_lookup(vm_object_t object, vm_pindex_t pindex)
984 {
985         vm_page_t m;
986
987         ASSERT_LWKT_TOKEN_HELD(&vm_token);
988         do {
989                 m = vm_page_lookup(object, pindex);
990         } while (m && vm_page_sleep_busy(m, FALSE, "pplookp"));
991
992         return(m);
993 }
994
995 /*
996  * Create a new thread and optionally associate it with a (new) process.
997  * NOTE! the new thread's cpu may not equal the current cpu.
998  */
999 void
1000 pmap_init_thread(thread_t td)
1001 {
1002         /* enforce pcb placement */
1003         td->td_pcb = (struct pcb *)(td->td_kstack + td->td_kstack_size) - 1;
1004         td->td_savefpu = &td->td_pcb->pcb_save;
1005         td->td_sp = (char *)td->td_pcb - 16;
1006 }
1007
1008 /*
1009  * This routine directly affects the fork perf for a process.
1010  */
1011 void
1012 pmap_init_proc(struct proc *p)
1013 {
1014 }
1015
1016 /*
1017  * Dispose the UPAGES for a process that has exited.
1018  * This routine directly impacts the exit perf of a process.
1019  */
1020 void
1021 pmap_dispose_proc(struct proc *p)
1022 {
1023         KASSERT(p->p_lock == 0, ("attempt to dispose referenced proc! %p", p));
1024 }
1025
1026 /***************************************************
1027  * Page table page management routines.....
1028  ***************************************************/
1029
1030 /*
1031  * This routine unholds page table pages, and if the hold count
1032  * drops to zero, then it decrements the wire count.
1033  *
1034  * The caller must hold vm_token.
1035  * This function can block.
1036  */
1037 static int 
1038 _pmap_unwire_pte_hold(pmap_t pmap, vm_page_t m, pmap_inval_info_t info) 
1039 {
1040         /* 
1041          * Wait until we can busy the page ourselves.  We cannot have
1042          * any active flushes if we block.
1043          */
1044         if (m->flags & PG_BUSY) {
1045                 while (vm_page_sleep_busy(m, FALSE, "pmuwpt"))
1046                         ;
1047         }
1048         KASSERT(m->queue == PQ_NONE,
1049                 ("_pmap_unwire_pte_hold: %p->queue != PQ_NONE", m));
1050
1051         if (m->hold_count == 1) {
1052                 /*
1053                  * Unmap the page table page.
1054                  *
1055                  * NOTE: We must clear pm_cached for all cpus, including
1056                  *       the current one, when clearing a page directory
1057                  *       entry.
1058                  */
1059                 vm_page_busy(m);
1060                 pmap_inval_interlock(info, pmap, -1);
1061                 KKASSERT(pmap->pm_pdir[m->pindex]);
1062                 pmap->pm_pdir[m->pindex] = 0;
1063                 pmap->pm_cached = 0;
1064                 pmap_inval_deinterlock(info, pmap);
1065
1066                 KKASSERT(pmap->pm_stats.resident_count > 0);
1067                 --pmap->pm_stats.resident_count;
1068
1069                 if (pmap->pm_ptphint == m)
1070                         pmap->pm_ptphint = NULL;
1071
1072                 /*
1073                  * This was our last hold, the page had better be unwired
1074                  * after we decrement wire_count.
1075                  * 
1076                  * FUTURE NOTE: shared page directory page could result in
1077                  * multiple wire counts.
1078                  */
1079                 vm_page_unhold(m);
1080                 --m->wire_count;
1081                 KKASSERT(m->wire_count == 0);
1082                 --vmstats.v_wire_count;
1083                 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
1084                 vm_page_flash(m);
1085                 vm_page_free_zero(m);
1086                 return 1;
1087         } else {
1088                 KKASSERT(m->hold_count > 1);
1089                 vm_page_unhold(m);
1090                 return 0;
1091         }
1092 }
1093
1094 /*
1095  * The caller must hold vm_token.
1096  * This function can block.
1097  */
1098 static PMAP_INLINE int
1099 pmap_unwire_pte_hold(pmap_t pmap, vm_page_t m, pmap_inval_info_t info)
1100 {
1101         KKASSERT(m->hold_count > 0);
1102         if (m->hold_count > 1) {
1103                 vm_page_unhold(m);
1104                 return 0;
1105         } else {
1106                 return _pmap_unwire_pte_hold(pmap, m, info);
1107         }
1108 }
1109
1110 /*
1111  * After removing a (user) page table entry, this routine is used to
1112  * conditionally free the page, and manage the hold/wire counts.
1113  *
1114  * The caller must hold vm_token.
1115  * This function can block regardless.
1116  */
1117 static int
1118 pmap_unuse_pt(pmap_t pmap, vm_offset_t va, vm_page_t mpte,
1119               pmap_inval_info_t info)
1120 {
1121         unsigned ptepindex;
1122
1123         if (va >= UPT_MIN_ADDRESS)
1124                 return 0;
1125
1126         if (mpte == NULL) {
1127                 ptepindex = (va >> PDRSHIFT);
1128                 if (pmap->pm_ptphint &&
1129                         (pmap->pm_ptphint->pindex == ptepindex)) {
1130                         mpte = pmap->pm_ptphint;
1131                 } else {
1132                         mpte = pmap_page_lookup( pmap->pm_pteobj, ptepindex);
1133                         pmap->pm_ptphint = mpte;
1134                 }
1135         }
1136
1137         return pmap_unwire_pte_hold(pmap, mpte, info);
1138 }
1139
1140 /*
1141  * Initialize pmap0/vmspace0.  This pmap is not added to pmap_list because
1142  * it, and IdlePTD, represents the template used to update all other pmaps.
1143  *
1144  * On architectures where the kernel pmap is not integrated into the user
1145  * process pmap, this pmap represents the process pmap, not the kernel pmap.
1146  * kernel_pmap should be used to directly access the kernel_pmap.
1147  *
1148  * No requirements.
1149  */
1150 void
1151 pmap_pinit0(struct pmap *pmap)
1152 {
1153         pmap->pm_pdir =
1154                 (pd_entry_t *)kmem_alloc_pageable(&kernel_map, PAGE_SIZE);
1155         pmap_kenter((vm_offset_t)pmap->pm_pdir, (vm_offset_t) IdlePTD);
1156         pmap->pm_count = 1;
1157         pmap->pm_active = 0;
1158         pmap->pm_cached = 0;
1159         pmap->pm_ptphint = NULL;
1160         TAILQ_INIT(&pmap->pm_pvlist);
1161         bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1162 }
1163
1164 /*
1165  * Initialize a preallocated and zeroed pmap structure,
1166  * such as one in a vmspace structure.
1167  *
1168  * No requirements.
1169  */
1170 void
1171 pmap_pinit(struct pmap *pmap)
1172 {
1173         vm_page_t ptdpg;
1174
1175         /*
1176          * No need to allocate page table space yet but we do need a valid
1177          * page directory table.
1178          */
1179         if (pmap->pm_pdir == NULL) {
1180                 pmap->pm_pdir =
1181                     (pd_entry_t *)kmem_alloc_pageable(&kernel_map, PAGE_SIZE);
1182         }
1183
1184         /*
1185          * Allocate an object for the ptes
1186          */
1187         if (pmap->pm_pteobj == NULL)
1188                 pmap->pm_pteobj = vm_object_allocate(OBJT_DEFAULT, PTDPTDI + 1);
1189
1190         /*
1191          * Allocate the page directory page, unless we already have
1192          * one cached.  If we used the cached page the wire_count will
1193          * already be set appropriately.
1194          */
1195         if ((ptdpg = pmap->pm_pdirm) == NULL) {
1196                 ptdpg = vm_page_grab(pmap->pm_pteobj, PTDPTDI,
1197                                      VM_ALLOC_NORMAL | VM_ALLOC_RETRY);
1198                 pmap->pm_pdirm = ptdpg;
1199                 vm_page_flag_clear(ptdpg, PG_MAPPED | PG_BUSY);
1200                 ptdpg->valid = VM_PAGE_BITS_ALL;
1201                 ptdpg->wire_count = 1;
1202                 ++vmstats.v_wire_count;
1203                 pmap_kenter((vm_offset_t)pmap->pm_pdir, VM_PAGE_TO_PHYS(ptdpg));
1204         }
1205         if ((ptdpg->flags & PG_ZERO) == 0)
1206                 bzero(pmap->pm_pdir, PAGE_SIZE);
1207 #ifdef PMAP_DEBUG
1208         else
1209                 pmap_page_assertzero(VM_PAGE_TO_PHYS(ptdpg));
1210 #endif
1211
1212         pmap->pm_pdir[MPPTDI] = PTD[MPPTDI];
1213
1214         /* install self-referential address mapping entry */
1215         *(unsigned *) (pmap->pm_pdir + PTDPTDI) =
1216                 VM_PAGE_TO_PHYS(ptdpg) | PG_V | PG_RW | PG_A | PG_M;
1217
1218         pmap->pm_count = 1;
1219         pmap->pm_active = 0;
1220         pmap->pm_cached = 0;
1221         pmap->pm_ptphint = NULL;
1222         TAILQ_INIT(&pmap->pm_pvlist);
1223         bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1224         pmap->pm_stats.resident_count = 1;
1225 }
1226
1227 /*
1228  * Clean up a pmap structure so it can be physically freed.  This routine
1229  * is called by the vmspace dtor function.  A great deal of pmap data is
1230  * left passively mapped to improve vmspace management so we have a bit
1231  * of cleanup work to do here.
1232  *
1233  * No requirements.
1234  */
1235 void
1236 pmap_puninit(pmap_t pmap)
1237 {
1238         vm_page_t p;
1239
1240         KKASSERT(pmap->pm_active == 0);
1241         lwkt_gettoken(&vm_token);
1242         if ((p = pmap->pm_pdirm) != NULL) {
1243                 KKASSERT(pmap->pm_pdir != NULL);
1244                 pmap_kremove((vm_offset_t)pmap->pm_pdir);
1245                 p->wire_count--;
1246                 vmstats.v_wire_count--;
1247                 KKASSERT((p->flags & PG_BUSY) == 0);
1248                 vm_page_busy(p);
1249                 vm_page_free_zero(p);
1250                 pmap->pm_pdirm = NULL;
1251         }
1252         lwkt_reltoken(&vm_token);
1253         if (pmap->pm_pdir) {
1254                 kmem_free(&kernel_map, (vm_offset_t)pmap->pm_pdir, PAGE_SIZE);
1255                 pmap->pm_pdir = NULL;
1256         }
1257         if (pmap->pm_pteobj) {
1258                 vm_object_deallocate(pmap->pm_pteobj);
1259                 pmap->pm_pteobj = NULL;
1260         }
1261 }
1262
1263 /*
1264  * Wire in kernel global address entries.  To avoid a race condition
1265  * between pmap initialization and pmap_growkernel, this procedure
1266  * adds the pmap to the master list (which growkernel scans to update),
1267  * then copies the template.
1268  *
1269  * No requirements.
1270  */
1271 void
1272 pmap_pinit2(struct pmap *pmap)
1273 {
1274         crit_enter();
1275         lwkt_gettoken(&vm_token);
1276         TAILQ_INSERT_TAIL(&pmap_list, pmap, pm_pmnode);
1277         /* XXX copies current process, does not fill in MPPTDI */
1278         bcopy(PTD + KPTDI, pmap->pm_pdir + KPTDI, nkpt * PTESIZE);
1279         lwkt_reltoken(&vm_token);
1280         crit_exit();
1281 }
1282
1283 /*
1284  * Attempt to release and free a vm_page in a pmap.  Returns 1 on success,
1285  * 0 on failure (if the procedure had to sleep).
1286  *
1287  * When asked to remove the page directory page itself, we actually just
1288  * leave it cached so we do not have to incur the SMP inval overhead of
1289  * removing the kernel mapping.  pmap_puninit() will take care of it.
1290  *
1291  * The caller must hold vm_token.
1292  * This function can block regardless.
1293  */
1294 static int
1295 pmap_release_free_page(struct pmap *pmap, vm_page_t p)
1296 {
1297         unsigned *pde = (unsigned *) pmap->pm_pdir;
1298
1299         /*
1300          * This code optimizes the case of freeing non-busy
1301          * page-table pages.  Those pages are zero now, and
1302          * might as well be placed directly into the zero queue.
1303          */
1304         if (vm_page_sleep_busy(p, FALSE, "pmaprl"))
1305                 return 0;
1306
1307         vm_page_busy(p);
1308
1309         /*
1310          * Remove the page table page from the processes address space.
1311          */
1312         KKASSERT(pmap->pm_stats.resident_count > 0);
1313         KKASSERT(pde[p->pindex]);
1314         pde[p->pindex] = 0;
1315         --pmap->pm_stats.resident_count;
1316         pmap->pm_cached = 0;
1317
1318         if (p->hold_count)  {
1319                 panic("pmap_release: freeing held page table page");
1320         }
1321         if (pmap->pm_ptphint && (pmap->pm_ptphint->pindex == p->pindex))
1322                 pmap->pm_ptphint = NULL;
1323
1324         /*
1325          * We leave the page directory page cached, wired, and mapped in
1326          * the pmap until the dtor function (pmap_puninit()) gets called.
1327          * However, still clean it up so we can set PG_ZERO.
1328          *
1329          * The pmap has already been removed from the pmap_list in the
1330          * PTDPTDI case.
1331          */
1332         if (p->pindex == PTDPTDI) {
1333                 bzero(pde + KPTDI, nkpt * PTESIZE);
1334                 bzero(pde + MPPTDI, (NPDEPG - MPPTDI) * PTESIZE);
1335                 vm_page_flag_set(p, PG_ZERO);
1336                 vm_page_wakeup(p);
1337         } else {
1338                 p->wire_count--;
1339                 vmstats.v_wire_count--;
1340                 vm_page_free_zero(p);
1341         }
1342         return 1;
1343 }
1344
1345 /*
1346  * This routine is called if the page table page is not mapped correctly.
1347  *
1348  * The caller must hold vm_token.
1349  */
1350 static vm_page_t
1351 _pmap_allocpte(pmap_t pmap, unsigned ptepindex)
1352 {
1353         vm_offset_t pteva, ptepa;
1354         vm_page_t m;
1355
1356         /*
1357          * Find or fabricate a new pagetable page
1358          */
1359         m = vm_page_grab(pmap->pm_pteobj, ptepindex,
1360                         VM_ALLOC_NORMAL | VM_ALLOC_ZERO | VM_ALLOC_RETRY);
1361
1362         KASSERT(m->queue == PQ_NONE,
1363                 ("_pmap_allocpte: %p->queue != PQ_NONE", m));
1364
1365         /*
1366          * Increment the hold count for the page we will be returning to
1367          * the caller.
1368          */
1369         m->hold_count++;
1370
1371         /*
1372          * It is possible that someone else got in and mapped by the page
1373          * directory page while we were blocked, if so just unbusy and
1374          * return the held page.
1375          */
1376         if ((ptepa = pmap->pm_pdir[ptepindex]) != 0) {
1377                 KKASSERT((ptepa & PG_FRAME) == VM_PAGE_TO_PHYS(m));
1378                 vm_page_wakeup(m);
1379                 return(m);
1380         }
1381
1382         if (m->wire_count == 0)
1383                 vmstats.v_wire_count++;
1384         m->wire_count++;
1385
1386
1387         /*
1388          * Map the pagetable page into the process address space, if
1389          * it isn't already there.
1390          *
1391          * NOTE: For safety clear pm_cached for all cpus including the
1392          *       current one when adding a PDE to the map.
1393          */
1394         ++pmap->pm_stats.resident_count;
1395
1396         ptepa = VM_PAGE_TO_PHYS(m);
1397         pmap->pm_pdir[ptepindex] =
1398                 (pd_entry_t) (ptepa | PG_U | PG_RW | PG_V | PG_A | PG_M);
1399         pmap->pm_cached = 0;
1400
1401         /*
1402          * Set the page table hint
1403          */
1404         pmap->pm_ptphint = m;
1405
1406         /*
1407          * Try to use the new mapping, but if we cannot, then
1408          * do it with the routine that maps the page explicitly.
1409          */
1410         if ((m->flags & PG_ZERO) == 0) {
1411                 if ((((unsigned)pmap->pm_pdir[PTDPTDI]) & PG_FRAME) ==
1412                         (((unsigned) PTDpde) & PG_FRAME)) {
1413                         pteva = UPT_MIN_ADDRESS + i386_ptob(ptepindex);
1414                         bzero((caddr_t) pteva, PAGE_SIZE);
1415                 } else {
1416                         pmap_zero_page(ptepa);
1417                 }
1418         }
1419 #ifdef PMAP_DEBUG
1420         else {
1421                 pmap_page_assertzero(VM_PAGE_TO_PHYS(m));
1422         }
1423 #endif
1424
1425         m->valid = VM_PAGE_BITS_ALL;
1426         vm_page_flag_clear(m, PG_ZERO);
1427         vm_page_flag_set(m, PG_MAPPED);
1428         vm_page_wakeup(m);
1429
1430         return m;
1431 }
1432
1433 /*
1434  * Allocate a page table entry for a va.
1435  *
1436  * The caller must hold vm_token.
1437  */
1438 static vm_page_t
1439 pmap_allocpte(pmap_t pmap, vm_offset_t va)
1440 {
1441         unsigned ptepindex;
1442         vm_offset_t ptepa;
1443         vm_page_t m;
1444
1445         /*
1446          * Calculate pagetable page index
1447          */
1448         ptepindex = va >> PDRSHIFT;
1449
1450         /*
1451          * Get the page directory entry
1452          */
1453         ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
1454
1455         /*
1456          * This supports switching from a 4MB page to a
1457          * normal 4K page.
1458          */
1459         if (ptepa & PG_PS) {
1460                 pmap->pm_pdir[ptepindex] = 0;
1461                 ptepa = 0;
1462                 cpu_invltlb();
1463                 smp_invltlb();
1464         }
1465
1466         /*
1467          * If the page table page is mapped, we just increment the
1468          * hold count, and activate it.
1469          */
1470         if (ptepa) {
1471                 /*
1472                  * In order to get the page table page, try the
1473                  * hint first.
1474                  */
1475                 if (pmap->pm_ptphint &&
1476                         (pmap->pm_ptphint->pindex == ptepindex)) {
1477                         m = pmap->pm_ptphint;
1478                 } else {
1479                         m = pmap_page_lookup( pmap->pm_pteobj, ptepindex);
1480                         pmap->pm_ptphint = m;
1481                 }
1482                 m->hold_count++;
1483                 return m;
1484         }
1485         /*
1486          * Here if the pte page isn't mapped, or if it has been deallocated.
1487          */
1488         return _pmap_allocpte(pmap, ptepindex);
1489 }
1490
1491
1492 /***************************************************
1493  * Pmap allocation/deallocation routines.
1494  ***************************************************/
1495
1496 /*
1497  * Release any resources held by the given physical map.
1498  * Called when a pmap initialized by pmap_pinit is being released.
1499  * Should only be called if the map contains no valid mappings.
1500  *
1501  * No requirements.
1502  */
1503 static int pmap_release_callback(struct vm_page *p, void *data);
1504
1505 void
1506 pmap_release(struct pmap *pmap)
1507 {
1508         vm_object_t object = pmap->pm_pteobj;
1509         struct rb_vm_page_scan_info info;
1510
1511         KASSERT(pmap->pm_active == 0,
1512                 ("pmap still active! %08x", pmap->pm_active));
1513 #if defined(DIAGNOSTIC)
1514         if (object->ref_count != 1)
1515                 panic("pmap_release: pteobj reference count != 1");
1516 #endif
1517         
1518         info.pmap = pmap;
1519         info.object = object;
1520         crit_enter();
1521         lwkt_gettoken(&vm_token);
1522         TAILQ_REMOVE(&pmap_list, pmap, pm_pmnode);
1523         crit_exit();
1524
1525         do {
1526                 crit_enter();
1527                 info.error = 0;
1528                 info.mpte = NULL;
1529                 info.limit = object->generation;
1530
1531                 vm_page_rb_tree_RB_SCAN(&object->rb_memq, NULL, 
1532                                         pmap_release_callback, &info);
1533                 if (info.error == 0 && info.mpte) {
1534                         if (!pmap_release_free_page(pmap, info.mpte))
1535                                 info.error = 1;
1536                 }
1537                 crit_exit();
1538         } while (info.error);
1539         pmap->pm_cached = 0;
1540         lwkt_reltoken(&vm_token);
1541 }
1542
1543 /*
1544  * The caller must hold vm_token.
1545  */
1546 static int
1547 pmap_release_callback(struct vm_page *p, void *data)
1548 {
1549         struct rb_vm_page_scan_info *info = data;
1550
1551         if (p->pindex == PTDPTDI) {
1552                 info->mpte = p;
1553                 return(0);
1554         }
1555         if (!pmap_release_free_page(info->pmap, p)) {
1556                 info->error = 1;
1557                 return(-1);
1558         }
1559         if (info->object->generation != info->limit) {
1560                 info->error = 1;
1561                 return(-1);
1562         }
1563         return(0);
1564 }
1565
1566 /*
1567  * Grow the number of kernel page table entries, if needed.
1568  *
1569  * No requirements.
1570  */
1571 void
1572 pmap_growkernel(vm_offset_t kstart, vm_offset_t kend)
1573 {
1574         vm_offset_t addr = kend;
1575         struct pmap *pmap;
1576         vm_offset_t ptppaddr;
1577         vm_page_t nkpg;
1578         pd_entry_t newpdir;
1579
1580         crit_enter();
1581         lwkt_gettoken(&vm_token);
1582         if (kernel_vm_end == 0) {
1583                 kernel_vm_end = KERNBASE;
1584                 nkpt = 0;
1585                 while (pdir_pde(PTD, kernel_vm_end)) {
1586                         kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
1587                                         ~(PAGE_SIZE * NPTEPG - 1);
1588                         nkpt++;
1589                 }
1590         }
1591         addr = (addr + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1);
1592         while (kernel_vm_end < addr) {
1593                 if (pdir_pde(PTD, kernel_vm_end)) {
1594                         kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
1595                                         ~(PAGE_SIZE * NPTEPG - 1);
1596                         continue;
1597                 }
1598
1599                 /*
1600                  * This index is bogus, but out of the way
1601                  */
1602                 nkpg = vm_page_alloc(kptobj, nkpt, VM_ALLOC_NORMAL |
1603                                                    VM_ALLOC_SYSTEM |
1604                                                    VM_ALLOC_INTERRUPT);
1605                 if (nkpg == NULL)
1606                         panic("pmap_growkernel: no memory to grow kernel");
1607
1608                 vm_page_wire(nkpg);
1609                 ptppaddr = VM_PAGE_TO_PHYS(nkpg);
1610                 pmap_zero_page(ptppaddr);
1611                 newpdir = (pd_entry_t) (ptppaddr | PG_V | PG_RW | PG_A | PG_M);
1612                 pdir_pde(PTD, kernel_vm_end) = newpdir;
1613                 *pmap_pde(&kernel_pmap, kernel_vm_end) = newpdir;
1614                 nkpt++;
1615
1616                 /*
1617                  * This update must be interlocked with pmap_pinit2.
1618                  */
1619                 TAILQ_FOREACH(pmap, &pmap_list, pm_pmnode) {
1620                         *pmap_pde(pmap, kernel_vm_end) = newpdir;
1621                 }
1622                 kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
1623                                 ~(PAGE_SIZE * NPTEPG - 1);
1624         }
1625         lwkt_reltoken(&vm_token);
1626         crit_exit();
1627 }
1628
1629 /*
1630  * Retire the given physical map from service.
1631  *
1632  * Should only be called if the map contains no valid mappings.
1633  *
1634  * No requirements.
1635  */
1636 void
1637 pmap_destroy(pmap_t pmap)
1638 {
1639         if (pmap == NULL)
1640                 return;
1641
1642         lwkt_gettoken(&vm_token);
1643         if (--pmap->pm_count == 0) {
1644                 pmap_release(pmap);
1645                 panic("destroying a pmap is not yet implemented");
1646         }
1647         lwkt_reltoken(&vm_token);
1648 }
1649
1650 /*
1651  * Add a reference to the specified pmap.
1652  *
1653  * No requirements.
1654  */
1655 void
1656 pmap_reference(pmap_t pmap)
1657 {
1658         if (pmap) {
1659                 lwkt_gettoken(&vm_token);
1660                 ++pmap->pm_count;
1661                 lwkt_reltoken(&vm_token);
1662         }
1663 }
1664
1665 /***************************************************
1666  * page management routines.
1667  ***************************************************/
1668
1669 /*
1670  * free the pv_entry back to the free list.  This function may be
1671  * called from an interrupt.
1672  *
1673  * The caller must hold vm_token.
1674  */
1675 static PMAP_INLINE void
1676 free_pv_entry(pv_entry_t pv)
1677 {
1678 #ifdef PMAP_DEBUG
1679         KKASSERT(pv->pv_m != NULL);
1680         pv->pv_m = NULL;
1681 #endif
1682         pv_entry_count--;
1683         zfree(pvzone, pv);
1684 }
1685
1686 /*
1687  * get a new pv_entry, allocating a block from the system
1688  * when needed.  This function may be called from an interrupt.
1689  *
1690  * The caller must hold vm_token.
1691  */
1692 static pv_entry_t
1693 get_pv_entry(void)
1694 {
1695         pv_entry_count++;
1696         if (pv_entry_high_water &&
1697             (pv_entry_count > pv_entry_high_water) &&
1698             (pmap_pagedaemon_waken == 0)) {
1699                 pmap_pagedaemon_waken = 1;
1700                 wakeup (&vm_pages_needed);
1701         }
1702         return zalloc(pvzone);
1703 }
1704
1705 /*
1706  * This routine is very drastic, but can save the system
1707  * in a pinch.
1708  *
1709  * No requirements.
1710  */
1711 void
1712 pmap_collect(void)
1713 {
1714         int i;
1715         vm_page_t m;
1716         static int warningdone=0;
1717
1718         if (pmap_pagedaemon_waken == 0)
1719                 return;
1720         lwkt_gettoken(&vm_token);
1721         pmap_pagedaemon_waken = 0;
1722
1723         if (warningdone < 5) {
1724                 kprintf("pmap_collect: collecting pv entries -- "
1725                         "suggest increasing PMAP_SHPGPERPROC\n");
1726                 warningdone++;
1727         }
1728
1729         for(i = 0; i < vm_page_array_size; i++) {
1730                 m = &vm_page_array[i];
1731                 if (m->wire_count || m->hold_count || m->busy ||
1732                     (m->flags & PG_BUSY)) {
1733                         continue;
1734                 }
1735                 pmap_remove_all(m);
1736         }
1737         lwkt_reltoken(&vm_token);
1738 }
1739         
1740
1741 /*
1742  * If it is the first entry on the list, it is actually
1743  * in the header and we must copy the following entry up
1744  * to the header.  Otherwise we must search the list for
1745  * the entry.  In either case we free the now unused entry.
1746  *
1747  * The caller must hold vm_token.
1748  */
1749 static int
1750 pmap_remove_entry(struct pmap *pmap, vm_page_t m, 
1751                   vm_offset_t va, pmap_inval_info_t info)
1752 {
1753         pv_entry_t pv;
1754         int rtval;
1755
1756         crit_enter();
1757         ASSERT_LWKT_TOKEN_HELD(&vm_token);
1758         if (m->md.pv_list_count < pmap->pm_stats.resident_count) {
1759                 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
1760                         if (pmap == pv->pv_pmap && va == pv->pv_va) 
1761                                 break;
1762                 }
1763         } else {
1764                 TAILQ_FOREACH(pv, &pmap->pm_pvlist, pv_plist) {
1765 #ifdef PMAP_DEBUG
1766                         KKASSERT(pv->pv_pmap == pmap);
1767 #endif
1768                         if (va == pv->pv_va)
1769                                 break;
1770                 }
1771         }
1772         KKASSERT(pv);
1773
1774         rtval = 0;
1775         test_m_maps_pv(m, pv);
1776         TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
1777         m->md.pv_list_count--;
1778         m->object->agg_pv_list_count--;
1779         if (TAILQ_EMPTY(&m->md.pv_list))
1780                 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
1781         TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist);
1782         ++pmap->pm_generation;
1783         rtval = pmap_unuse_pt(pmap, va, pv->pv_ptem, info);
1784         free_pv_entry(pv);
1785         crit_exit();
1786         return rtval;
1787 }
1788
1789 /*
1790  * Create a pv entry for page at pa for (pmap, va).
1791  *
1792  * The caller must hold vm_token.
1793  */
1794 static void
1795 pmap_insert_entry(pmap_t pmap, vm_offset_t va, vm_page_t mpte, vm_page_t m)
1796 {
1797         pv_entry_t pv;
1798
1799         crit_enter();
1800         pv = get_pv_entry();
1801 #ifdef PMAP_DEBUG
1802         KKASSERT(pv->pv_m == NULL);
1803         pv->pv_m = m;
1804 #endif
1805         pv->pv_va = va;
1806         pv->pv_pmap = pmap;
1807         pv->pv_ptem = mpte;
1808
1809         TAILQ_INSERT_TAIL(&pmap->pm_pvlist, pv, pv_plist);
1810         TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list);
1811         ++pmap->pm_generation;
1812         m->md.pv_list_count++;
1813         m->object->agg_pv_list_count++;
1814
1815         crit_exit();
1816 }
1817
1818 /*
1819  * pmap_remove_pte: do the things to unmap a page in a process.
1820  *
1821  * The caller must hold vm_token.
1822  *
1823  * WARNING! As with most other pmap functions this one can block, so
1824  *          callers using temporary page table mappings must reload
1825  *          them.
1826  */
1827 static int
1828 pmap_remove_pte(struct pmap *pmap, unsigned *ptq, vm_offset_t va,
1829                 pmap_inval_info_t info)
1830 {
1831         unsigned oldpte;
1832         vm_page_t m;
1833
1834         ptbase_assert(pmap);
1835         pmap_inval_interlock(info, pmap, va);
1836         ptbase_assert(pmap);
1837         oldpte = loadandclear(ptq);
1838         if (oldpte & PG_W)
1839                 pmap->pm_stats.wired_count -= 1;
1840         pmap_inval_deinterlock(info, pmap);
1841         KKASSERT(oldpte);
1842         /*
1843          * Machines that don't support invlpg, also don't support
1844          * PG_G.  XXX PG_G is disabled for SMP so don't worry about
1845          * the SMP case.
1846          */
1847         if (oldpte & PG_G)
1848                 cpu_invlpg((void *)va);
1849         KKASSERT(pmap->pm_stats.resident_count > 0);
1850         --pmap->pm_stats.resident_count;
1851         if (oldpte & PG_MANAGED) {
1852                 m = PHYS_TO_VM_PAGE(oldpte);
1853                 if (oldpte & PG_M) {
1854 #if defined(PMAP_DIAGNOSTIC)
1855                         if (pmap_nw_modified((pt_entry_t) oldpte)) {
1856                                 kprintf("pmap_remove: modified page not "
1857                                         "writable: va: %p, pte: 0x%lx\n",
1858                                         (void *)va, (long)oldpte);
1859                         }
1860 #endif
1861                         if (pmap_track_modified(va))
1862                                 vm_page_dirty(m);
1863                 }
1864                 if (oldpte & PG_A)
1865                         vm_page_flag_set(m, PG_REFERENCED);
1866                 return pmap_remove_entry(pmap, m, va, info);
1867         } else {
1868                 return pmap_unuse_pt(pmap, va, NULL, info);
1869         }
1870
1871         return 0;
1872 }
1873
1874 /*
1875  * Remove a single page from a process address space.
1876  *
1877  * The caller must hold vm_token.
1878  */
1879 static void
1880 pmap_remove_page(struct pmap *pmap, vm_offset_t va, pmap_inval_info_t info)
1881 {
1882         unsigned *ptq;
1883
1884         /*
1885          * if there is no pte for this address, just skip it!!!  Otherwise
1886          * get a local va for mappings for this pmap and remove the entry.
1887          */
1888         if (*pmap_pde(pmap, va) != 0) {
1889                 ptq = get_ptbase(pmap) + i386_btop(va);
1890                 if (*ptq) {
1891                         pmap_remove_pte(pmap, ptq, va, info);
1892                         /* ptq invalid */
1893                 }
1894         }
1895 }
1896
1897 /*
1898  * Remove the given range of addresses from the specified map.
1899  *
1900  * It is assumed that the start and end are properly rounded to the page
1901  * size.
1902  *
1903  * No requirements.
1904  */
1905 void
1906 pmap_remove(struct pmap *pmap, vm_offset_t sva, vm_offset_t eva)
1907 {
1908         unsigned *ptbase;
1909         vm_offset_t pdnxt;
1910         vm_offset_t ptpaddr;
1911         vm_offset_t sindex, eindex;
1912         struct pmap_inval_info info;
1913
1914         if (pmap == NULL)
1915                 return;
1916
1917         lwkt_gettoken(&vm_token);
1918         if (pmap->pm_stats.resident_count == 0) {
1919                 lwkt_reltoken(&vm_token);
1920                 return;
1921         }
1922
1923         pmap_inval_init(&info);
1924
1925         /*
1926          * special handling of removing one page.  a very
1927          * common operation and easy to short circuit some
1928          * code.
1929          */
1930         if (((sva + PAGE_SIZE) == eva) && 
1931                 (((unsigned) pmap->pm_pdir[(sva >> PDRSHIFT)] & PG_PS) == 0)) {
1932                 pmap_remove_page(pmap, sva, &info);
1933                 pmap_inval_done(&info);
1934                 lwkt_reltoken(&vm_token);
1935                 return;
1936         }
1937
1938         /*
1939          * Get a local virtual address for the mappings that are being
1940          * worked with.
1941          */
1942         sindex = i386_btop(sva);
1943         eindex = i386_btop(eva);
1944
1945         for (; sindex < eindex; sindex = pdnxt) {
1946                 unsigned pdirindex;
1947
1948                 /*
1949                  * Calculate index for next page table.
1950                  */
1951                 pdnxt = ((sindex + NPTEPG) & ~(NPTEPG - 1));
1952                 if (pmap->pm_stats.resident_count == 0)
1953                         break;
1954
1955                 pdirindex = sindex / NPDEPG;
1956                 if (((ptpaddr = (unsigned) pmap->pm_pdir[pdirindex]) & PG_PS) != 0) {
1957                         pmap_inval_interlock(&info, pmap, -1);
1958                         pmap->pm_pdir[pdirindex] = 0;
1959                         pmap->pm_stats.resident_count -= NBPDR / PAGE_SIZE;
1960                         pmap->pm_cached = 0;
1961                         pmap_inval_deinterlock(&info, pmap);
1962                         continue;
1963                 }
1964
1965                 /*
1966                  * Weed out invalid mappings. Note: we assume that the page
1967                  * directory table is always allocated, and in kernel virtual.
1968                  */
1969                 if (ptpaddr == 0)
1970                         continue;
1971
1972                 /*
1973                  * Limit our scan to either the end of the va represented
1974                  * by the current page table page, or to the end of the
1975                  * range being removed.
1976                  */
1977                 if (pdnxt > eindex) {
1978                         pdnxt = eindex;
1979                 }
1980
1981                 /*
1982                  * NOTE: pmap_remove_pte() can block and wipe the temporary
1983                  *       ptbase.
1984                  */
1985                 for (; sindex != pdnxt; sindex++) {
1986                         vm_offset_t va;
1987
1988                         ptbase = get_ptbase(pmap);
1989                         if (ptbase[sindex] == 0)
1990                                 continue;
1991                         va = i386_ptob(sindex);
1992                         if (pmap_remove_pte(pmap, ptbase + sindex, va, &info))
1993                                 break;
1994                 }
1995         }
1996         pmap_inval_done(&info);
1997         lwkt_reltoken(&vm_token);
1998 }
1999
2000 /*
2001  * Removes this physical page from all physical maps in which it resides.
2002  * Reflects back modify bits to the pager.
2003  *
2004  * No requirements.
2005  */
2006 static void
2007 pmap_remove_all(vm_page_t m)
2008 {
2009         struct pmap_inval_info info;
2010         unsigned *pte, tpte;
2011         pv_entry_t pv;
2012
2013         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2014                 return;
2015
2016         lwkt_gettoken(&vm_token);
2017         pmap_inval_init(&info);
2018         while ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
2019                 KKASSERT(pv->pv_pmap->pm_stats.resident_count > 0);
2020                 --pv->pv_pmap->pm_stats.resident_count;
2021
2022                 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
2023                 pmap_inval_interlock(&info, pv->pv_pmap, pv->pv_va);
2024                 tpte = loadandclear(pte);
2025                 if (tpte & PG_W)
2026                         pv->pv_pmap->pm_stats.wired_count--;
2027                 pmap_inval_deinterlock(&info, pv->pv_pmap);
2028                 if (tpte & PG_A)
2029                         vm_page_flag_set(m, PG_REFERENCED);
2030 #ifdef PMAP_DEBUG
2031                 KKASSERT(PHYS_TO_VM_PAGE(tpte) == m);
2032 #endif
2033
2034                 /*
2035                  * Update the vm_page_t clean and reference bits.
2036                  */
2037                 if (tpte & PG_M) {
2038 #if defined(PMAP_DIAGNOSTIC)
2039                         if (pmap_nw_modified((pt_entry_t) tpte)) {
2040                                 kprintf("pmap_remove_all: modified page "
2041                                         "not writable: va: %p, pte: 0x%lx\n",
2042                                         (void *)pv->pv_va, (long)tpte);
2043                         }
2044 #endif
2045                         if (pmap_track_modified(pv->pv_va))
2046                                 vm_page_dirty(m);
2047                 }
2048 #ifdef PMAP_DEBUG
2049                 KKASSERT(pv->pv_m == m);
2050 #endif
2051                 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
2052                 TAILQ_REMOVE(&pv->pv_pmap->pm_pvlist, pv, pv_plist);
2053                 ++pv->pv_pmap->pm_generation;
2054                 m->md.pv_list_count--;
2055                 m->object->agg_pv_list_count--;
2056                 if (TAILQ_EMPTY(&m->md.pv_list))
2057                         vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
2058                 pmap_unuse_pt(pv->pv_pmap, pv->pv_va, pv->pv_ptem, &info);
2059                 free_pv_entry(pv);
2060         }
2061         KKASSERT((m->flags & (PG_MAPPED|PG_WRITEABLE)) == 0);
2062         pmap_inval_done(&info);
2063         lwkt_reltoken(&vm_token);
2064 }
2065
2066 /*
2067  * Set the physical protection on the specified range of this map
2068  * as requested.
2069  *
2070  * No requirements.
2071  */
2072 void
2073 pmap_protect(pmap_t pmap, vm_offset_t sva, vm_offset_t eva, vm_prot_t prot)
2074 {
2075         unsigned *ptbase;
2076         vm_offset_t pdnxt, ptpaddr;
2077         vm_pindex_t sindex, eindex;
2078         pmap_inval_info info;
2079
2080         if (pmap == NULL)
2081                 return;
2082
2083         if ((prot & VM_PROT_READ) == VM_PROT_NONE) {
2084                 pmap_remove(pmap, sva, eva);
2085                 return;
2086         }
2087
2088         if (prot & VM_PROT_WRITE)
2089                 return;
2090
2091         lwkt_gettoken(&vm_token);
2092         pmap_inval_init(&info);
2093
2094         ptbase = get_ptbase(pmap);
2095
2096         sindex = i386_btop(sva);
2097         eindex = i386_btop(eva);
2098
2099         for (; sindex < eindex; sindex = pdnxt) {
2100                 unsigned pdirindex;
2101
2102                 pdnxt = ((sindex + NPTEPG) & ~(NPTEPG - 1));
2103
2104                 pdirindex = sindex / NPDEPG;
2105                 if (((ptpaddr = (unsigned) pmap->pm_pdir[pdirindex]) & PG_PS) != 0) {
2106                         pmap_inval_interlock(&info, pmap, -1);
2107                         pmap->pm_pdir[pdirindex] &= ~(PG_M|PG_RW);
2108                         pmap->pm_stats.resident_count -= NBPDR / PAGE_SIZE;
2109                         pmap_inval_deinterlock(&info, pmap);
2110                         continue;
2111                 }
2112
2113                 /*
2114                  * Weed out invalid mappings. Note: we assume that the page
2115                  * directory table is always allocated, and in kernel virtual.
2116                  */
2117                 if (ptpaddr == 0)
2118                         continue;
2119
2120                 if (pdnxt > eindex) {
2121                         pdnxt = eindex;
2122                 }
2123
2124                 for (; sindex != pdnxt; sindex++) {
2125                         unsigned pbits;
2126                         unsigned cbits;
2127                         vm_page_t m;
2128
2129                         /*
2130                          * XXX non-optimal.
2131                          */
2132                         pmap_inval_interlock(&info, pmap, i386_ptob(sindex));
2133 again:
2134                         pbits = ptbase[sindex];
2135                         cbits = pbits;
2136
2137                         if (pbits & PG_MANAGED) {
2138                                 m = NULL;
2139                                 if (pbits & PG_A) {
2140                                         m = PHYS_TO_VM_PAGE(pbits);
2141                                         vm_page_flag_set(m, PG_REFERENCED);
2142                                         cbits &= ~PG_A;
2143                                 }
2144                                 if (pbits & PG_M) {
2145                                         if (pmap_track_modified(i386_ptob(sindex))) {
2146                                                 if (m == NULL)
2147                                                         m = PHYS_TO_VM_PAGE(pbits);
2148                                                 vm_page_dirty(m);
2149                                                 cbits &= ~PG_M;
2150                                         }
2151                                 }
2152                         }
2153                         cbits &= ~PG_RW;
2154                         if (pbits != cbits &&
2155                             !atomic_cmpset_int(ptbase + sindex, pbits, cbits)) {
2156                                 goto again;
2157                         }
2158                         pmap_inval_deinterlock(&info, pmap);
2159                 }
2160         }
2161         pmap_inval_done(&info);
2162         lwkt_reltoken(&vm_token);
2163 }
2164
2165 /*
2166  * Insert the given physical page (p) at the specified virtual address (v)
2167  * in the target physical map with the protection requested.
2168  *
2169  * If specified, the page will be wired down, meaning that the related pte
2170  * cannot be reclaimed.
2171  *
2172  * No requirements.
2173  */
2174 void
2175 pmap_enter(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot,
2176            boolean_t wired)
2177 {
2178         vm_paddr_t pa;
2179         unsigned *pte;
2180         vm_paddr_t opa;
2181         vm_offset_t origpte, newpte;
2182         vm_page_t mpte;
2183         pmap_inval_info info;
2184
2185         if (pmap == NULL)
2186                 return;
2187
2188         va &= PG_FRAME;
2189 #ifdef PMAP_DIAGNOSTIC
2190         if (va >= KvaEnd)
2191                 panic("pmap_enter: toobig");
2192         if ((va >= UPT_MIN_ADDRESS) && (va < UPT_MAX_ADDRESS)) {
2193                 panic("pmap_enter: invalid to pmap_enter page "
2194                       "table pages (va: %p)", (void *)va);
2195         }
2196 #endif
2197         if (va < UPT_MAX_ADDRESS && pmap == &kernel_pmap) {
2198                 kprintf("Warning: pmap_enter called on UVA with kernel_pmap\n");
2199                 print_backtrace(-1);
2200         }
2201         if (va >= UPT_MAX_ADDRESS && pmap != &kernel_pmap) {
2202                 kprintf("Warning: pmap_enter called on KVA without kernel_pmap\n");
2203                 print_backtrace(-1);
2204         }
2205
2206         lwkt_gettoken(&vm_token);
2207
2208         /*
2209          * In the case that a page table page is not
2210          * resident, we are creating it here.
2211          */
2212         if (va < UPT_MIN_ADDRESS)
2213                 mpte = pmap_allocpte(pmap, va);
2214         else
2215                 mpte = NULL;
2216
2217         pmap_inval_init(&info);
2218         pte = pmap_pte(pmap, va);
2219
2220         /*
2221          * Page Directory table entry not valid, we need a new PT page
2222          */
2223         if (pte == NULL) {
2224                 panic("pmap_enter: invalid page directory pdir=0x%lx, va=%p\n",
2225                      (long)pmap->pm_pdir[PTDPTDI], (void *)va);
2226         }
2227
2228         pa = VM_PAGE_TO_PHYS(m) & PG_FRAME;
2229         origpte = *(vm_offset_t *)pte;
2230         opa = origpte & PG_FRAME;
2231
2232         if (origpte & PG_PS)
2233                 panic("pmap_enter: attempted pmap_enter on 4MB page");
2234
2235         /*
2236          * Mapping has not changed, must be protection or wiring change.
2237          */
2238         if (origpte && (opa == pa)) {
2239                 /*
2240                  * Wiring change, just update stats. We don't worry about
2241                  * wiring PT pages as they remain resident as long as there
2242                  * are valid mappings in them. Hence, if a user page is wired,
2243                  * the PT page will be also.
2244                  */
2245                 if (wired && ((origpte & PG_W) == 0))
2246                         pmap->pm_stats.wired_count++;
2247                 else if (!wired && (origpte & PG_W))
2248                         pmap->pm_stats.wired_count--;
2249
2250 #if defined(PMAP_DIAGNOSTIC)
2251                 if (pmap_nw_modified((pt_entry_t) origpte)) {
2252                         kprintf("pmap_enter: modified page not "
2253                                 "writable: va: %p, pte: 0x%lx\n",
2254                                 (void *)va, (long )origpte);
2255                 }
2256 #endif
2257
2258                 /*
2259                  * Remove the extra pte reference.  Note that we cannot
2260                  * optimize the RO->RW case because we have adjusted the
2261                  * wiring count above and may need to adjust the wiring
2262                  * bits below.
2263                  */
2264                 if (mpte)
2265                         mpte->hold_count--;
2266
2267                 /*
2268                  * We might be turning off write access to the page,
2269                  * so we go ahead and sense modify status.
2270                  */
2271                 if (origpte & PG_MANAGED) {
2272                         if ((origpte & PG_M) && pmap_track_modified(va)) {
2273                                 vm_page_t om;
2274                                 om = PHYS_TO_VM_PAGE(opa);
2275                                 vm_page_dirty(om);
2276                         }
2277                         pa |= PG_MANAGED;
2278                         KKASSERT(m->flags & PG_MAPPED);
2279                 }
2280                 goto validate;
2281         } 
2282         /*
2283          * Mapping has changed, invalidate old range and fall through to
2284          * handle validating new mapping.
2285          *
2286          * Since we have a ref on the page directory page pmap_pte()
2287          * will always return non-NULL.
2288          *
2289          * NOTE: pmap_remove_pte() can block and cause the temporary ptbase
2290          *       to get wiped.  reload the ptbase.  I'm not sure if it is
2291          *       also possible to race another pmap_enter() but check for
2292          *       that case too.
2293          */
2294         while (opa) {
2295                 int err;
2296
2297                 KKASSERT((origpte & PG_FRAME) ==
2298                          (*(vm_offset_t *)pte & PG_FRAME));
2299                 err = pmap_remove_pte(pmap, pte, va, &info);
2300                 if (err)
2301                         panic("pmap_enter: pte vanished, va: %p", (void *)va);
2302                 pte = pmap_pte(pmap, va);
2303                 origpte = *(vm_offset_t *)pte;
2304                 opa = origpte & PG_FRAME;
2305                 if (opa) {
2306                         kprintf("pmap_enter: Warning, raced pmap %p va %p\n",
2307                                 pmap, (void *)va);
2308                 }
2309         }
2310
2311         /*
2312          * Enter on the PV list if part of our managed memory. Note that we
2313          * raise IPL while manipulating pv_table since pmap_enter can be
2314          * called at interrupt time.
2315          */
2316         if (pmap_initialized && 
2317             (m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2318                 pmap_insert_entry(pmap, va, mpte, m);
2319                 ptbase_assert(pmap);
2320                 pa |= PG_MANAGED;
2321                 vm_page_flag_set(m, PG_MAPPED);
2322         }
2323
2324         /*
2325          * Increment counters
2326          */
2327         ++pmap->pm_stats.resident_count;
2328         if (wired)
2329                 pmap->pm_stats.wired_count++;
2330         KKASSERT(*pte == 0);
2331
2332 validate:
2333         /*
2334          * Now validate mapping with desired protection/wiring.
2335          */
2336         ptbase_assert(pmap);
2337         newpte = (vm_offset_t) (pa | pte_prot(pmap, prot) | PG_V);
2338
2339         if (wired)
2340                 newpte |= PG_W;
2341         if (va < UPT_MIN_ADDRESS)
2342                 newpte |= PG_U;
2343         if (pmap == &kernel_pmap)
2344                 newpte |= pgeflag;
2345
2346         /*
2347          * if the mapping or permission bits are different, we need
2348          * to update the pte.
2349          */
2350         if ((origpte & ~(PG_M|PG_A)) != newpte) {
2351                 pmap_inval_interlock(&info, pmap, va);
2352                 ptbase_assert(pmap);
2353                 KKASSERT(*pte == 0 ||
2354                          (*pte & PG_FRAME) == (newpte & PG_FRAME));
2355                 *pte = newpte | PG_A;
2356                 pmap_inval_deinterlock(&info, pmap);
2357                 if (newpte & PG_RW)
2358                         vm_page_flag_set(m, PG_WRITEABLE);
2359         }
2360         KKASSERT((newpte & PG_MANAGED) == 0 || (m->flags & PG_MAPPED));
2361         pmap_inval_done(&info);
2362         lwkt_reltoken(&vm_token);
2363 }
2364
2365 /*
2366  * This code works like pmap_enter() but assumes VM_PROT_READ and not-wired.
2367  * This code also assumes that the pmap has no pre-existing entry for this
2368  * VA.
2369  *
2370  * This code currently may only be used on user pmaps, not kernel_pmap.
2371  *
2372  * No requirements.
2373  */
2374 void
2375 pmap_enter_quick(pmap_t pmap, vm_offset_t va, vm_page_t m)
2376 {
2377         unsigned *pte;
2378         vm_paddr_t pa;
2379         vm_page_t mpte;
2380         unsigned ptepindex;
2381         vm_offset_t ptepa;
2382         pmap_inval_info info;
2383
2384         lwkt_gettoken(&vm_token);
2385         pmap_inval_init(&info);
2386
2387         if (va < UPT_MAX_ADDRESS && pmap == &kernel_pmap) {
2388                 kprintf("Warning: pmap_enter_quick called on UVA with kernel_pmap\n");
2389                 print_backtrace(-1);
2390         }
2391         if (va >= UPT_MAX_ADDRESS && pmap != &kernel_pmap) {
2392                 kprintf("Warning: pmap_enter_quick called on KVA without kernel_pmap\n");
2393                 print_backtrace(-1);
2394         }
2395
2396         KKASSERT(va < UPT_MIN_ADDRESS); /* assert used on user pmaps only */
2397
2398         /*
2399          * Calculate the page table page (mpte), allocating it if necessary.
2400          *
2401          * A held page table page (mpte), or NULL, is passed onto the
2402          * section following.
2403          */
2404         if (va < UPT_MIN_ADDRESS) {
2405                 /*
2406                  * Calculate pagetable page index
2407                  */
2408                 ptepindex = va >> PDRSHIFT;
2409
2410                 do {
2411                         /*
2412                          * Get the page directory entry
2413                          */
2414                         ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
2415
2416                         /*
2417                          * If the page table page is mapped, we just increment
2418                          * the hold count, and activate it.
2419                          */
2420                         if (ptepa) {
2421                                 if (ptepa & PG_PS)
2422                                         panic("pmap_enter_quick: unexpected mapping into 4MB page");
2423                                 if (pmap->pm_ptphint &&
2424                                     (pmap->pm_ptphint->pindex == ptepindex)) {
2425                                         mpte = pmap->pm_ptphint;
2426                                 } else {
2427                                         mpte = pmap_page_lookup( pmap->pm_pteobj, ptepindex);
2428                                         pmap->pm_ptphint = mpte;
2429                                 }
2430                                 if (mpte)
2431                                         mpte->hold_count++;
2432                         } else {
2433                                 mpte = _pmap_allocpte(pmap, ptepindex);
2434                         }
2435                 } while (mpte == NULL);
2436         } else {
2437                 mpte = NULL;
2438                 /* this code path is not yet used */
2439         }
2440
2441         /*
2442          * With a valid (and held) page directory page, we can just use
2443          * vtopte() to get to the pte.  If the pte is already present
2444          * we do not disturb it.
2445          */
2446         pte = (unsigned *)vtopte(va);
2447         if (*pte & PG_V) {
2448                 if (mpte)
2449                         pmap_unwire_pte_hold(pmap, mpte, &info);
2450                 pa = VM_PAGE_TO_PHYS(m);
2451                 KKASSERT(((*pte ^ pa) & PG_FRAME) == 0);
2452                 pmap_inval_done(&info);
2453                 lwkt_reltoken(&vm_token);
2454                 return;
2455         }
2456
2457         /*
2458          * Enter on the PV list if part of our managed memory
2459          */
2460         if ((m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2461                 pmap_insert_entry(pmap, va, mpte, m);
2462                 vm_page_flag_set(m, PG_MAPPED);
2463         }
2464
2465         /*
2466          * Increment counters
2467          */
2468         ++pmap->pm_stats.resident_count;
2469
2470         pa = VM_PAGE_TO_PHYS(m);
2471
2472         /*
2473          * Now validate mapping with RO protection
2474          */
2475         if (m->flags & (PG_FICTITIOUS|PG_UNMANAGED))
2476                 *pte = pa | PG_V | PG_U;
2477         else
2478                 *pte = pa | PG_V | PG_U | PG_MANAGED;
2479 /*      pmap_inval_add(&info, pmap, va); shouldn't be needed inval->valid */
2480         pmap_inval_done(&info);
2481         lwkt_reltoken(&vm_token);
2482 }
2483
2484 /*
2485  * Make a temporary mapping for a physical address.  This is only intended
2486  * to be used for panic dumps.
2487  *
2488  * The caller is responsible for calling smp_invltlb().
2489  *
2490  * No requirements.
2491  */
2492 void *
2493 pmap_kenter_temporary(vm_paddr_t pa, long i)
2494 {
2495         pmap_kenter_quick((vm_offset_t)crashdumpmap + (i * PAGE_SIZE), pa);
2496         return ((void *)crashdumpmap);
2497 }
2498
2499 #define MAX_INIT_PT (96)
2500
2501 /*
2502  * This routine preloads the ptes for a given object into the specified pmap.
2503  * This eliminates the blast of soft faults on process startup and
2504  * immediately after an mmap.
2505  *
2506  * No requirements.
2507  */
2508 static int pmap_object_init_pt_callback(vm_page_t p, void *data);
2509
2510 void
2511 pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, vm_prot_t prot,
2512                     vm_object_t object, vm_pindex_t pindex, 
2513                     vm_size_t size, int limit)
2514 {
2515         struct rb_vm_page_scan_info info;
2516         struct lwp *lp;
2517         int psize;
2518
2519         /*
2520          * We can't preinit if read access isn't set or there is no pmap
2521          * or object.
2522          */
2523         if ((prot & VM_PROT_READ) == 0 || pmap == NULL || object == NULL)
2524                 return;
2525
2526         /*
2527          * We can't preinit if the pmap is not the current pmap
2528          */
2529         lp = curthread->td_lwp;
2530         if (lp == NULL || pmap != vmspace_pmap(lp->lwp_vmspace))
2531                 return;
2532
2533         psize = i386_btop(size);
2534
2535         if ((object->type != OBJT_VNODE) ||
2536                 ((limit & MAP_PREFAULT_PARTIAL) && (psize > MAX_INIT_PT) &&
2537                         (object->resident_page_count > MAX_INIT_PT))) {
2538                 return;
2539         }
2540
2541         if (psize + pindex > object->size) {
2542                 if (object->size < pindex)
2543                         return;           
2544                 psize = object->size - pindex;
2545         }
2546
2547         if (psize == 0)
2548                 return;
2549
2550         /*
2551          * Use a red-black scan to traverse the requested range and load
2552          * any valid pages found into the pmap.
2553          *
2554          * We cannot safely scan the object's memq unless we are in a
2555          * critical section since interrupts can remove pages from objects.
2556          */
2557         info.start_pindex = pindex;
2558         info.end_pindex = pindex + psize - 1;
2559         info.limit = limit;
2560         info.mpte = NULL;
2561         info.addr = addr;
2562         info.pmap = pmap;
2563
2564         crit_enter();
2565         lwkt_gettoken(&vm_token);
2566         vm_page_rb_tree_RB_SCAN(&object->rb_memq, rb_vm_page_scancmp,
2567                                 pmap_object_init_pt_callback, &info);
2568         lwkt_reltoken(&vm_token);
2569         crit_exit();
2570 }
2571
2572 /*
2573  * The caller must hold vm_token.
2574  */
2575 static
2576 int
2577 pmap_object_init_pt_callback(vm_page_t p, void *data)
2578 {
2579         struct rb_vm_page_scan_info *info = data;
2580         vm_pindex_t rel_index;
2581         /*
2582          * don't allow an madvise to blow away our really
2583          * free pages allocating pv entries.
2584          */
2585         if ((info->limit & MAP_PREFAULT_MADVISE) &&
2586                 vmstats.v_free_count < vmstats.v_free_reserved) {
2587                     return(-1);
2588         }
2589         if (((p->valid & VM_PAGE_BITS_ALL) == VM_PAGE_BITS_ALL) &&
2590             (p->busy == 0) && (p->flags & (PG_BUSY | PG_FICTITIOUS)) == 0) {
2591                 vm_page_busy(p);
2592                 if ((p->queue - p->pc) == PQ_CACHE)
2593                         vm_page_deactivate(p);
2594                 rel_index = p->pindex - info->start_pindex;
2595                 pmap_enter_quick(info->pmap,
2596                                  info->addr + i386_ptob(rel_index), p);
2597                 vm_page_wakeup(p);
2598         }
2599         return(0);
2600 }
2601
2602 /*
2603  * Return TRUE if the pmap is in shape to trivially
2604  * pre-fault the specified address.
2605  *
2606  * Returns FALSE if it would be non-trivial or if a
2607  * pte is already loaded into the slot.
2608  *
2609  * No requirements.
2610  */
2611 int
2612 pmap_prefault_ok(pmap_t pmap, vm_offset_t addr)
2613 {
2614         unsigned *pte;
2615         int ret;
2616
2617         lwkt_gettoken(&vm_token);
2618         if ((*pmap_pde(pmap, addr)) == 0) {
2619                 ret = 0;
2620         } else {
2621                 pte = (unsigned *) vtopte(addr);
2622                 ret = (*pte) ? 0 : 1;
2623         }
2624         lwkt_reltoken(&vm_token);
2625         return(ret);
2626 }
2627
2628 /*
2629  * Change the wiring attribute for a map/virtual-adderss pair.  The mapping
2630  * must already exist.
2631  *
2632  * No requirements.
2633  */
2634 void
2635 pmap_change_wiring(pmap_t pmap, vm_offset_t va, boolean_t wired)
2636 {
2637         unsigned *pte;
2638
2639         if (pmap == NULL)
2640                 return;
2641
2642         lwkt_gettoken(&vm_token);
2643         pte = pmap_pte(pmap, va);
2644
2645         if (wired && !pmap_pte_w(pte))
2646                 pmap->pm_stats.wired_count++;
2647         else if (!wired && pmap_pte_w(pte))
2648                 pmap->pm_stats.wired_count--;
2649
2650         /*
2651          * Wiring is not a hardware characteristic so there is no need to
2652          * invalidate TLB.  However, in an SMP environment we must use
2653          * a locked bus cycle to update the pte (if we are not using 
2654          * the pmap_inval_*() API that is)... it's ok to do this for simple
2655          * wiring changes.
2656          */
2657 #ifdef SMP
2658         if (wired)
2659                 atomic_set_int(pte, PG_W);
2660         else
2661                 atomic_clear_int(pte, PG_W);
2662 #else
2663         if (wired)
2664                 atomic_set_int_nonlocked(pte, PG_W);
2665         else
2666                 atomic_clear_int_nonlocked(pte, PG_W);
2667 #endif
2668         lwkt_reltoken(&vm_token);
2669 }
2670
2671 /*
2672  * Copy the range specified by src_addr/len from the source map to the
2673  * range dst_addr/len in the destination map.
2674  *
2675  * This routine is only advisory and need not do anything.
2676  *
2677  * No requirements.
2678  */
2679 void
2680 pmap_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr, 
2681           vm_size_t len, vm_offset_t src_addr)
2682 {
2683         /* does nothing */
2684 }       
2685
2686 /*
2687  * Zero the specified PA by mapping the page into KVM and clearing its
2688  * contents.
2689  *
2690  * No requirements.
2691  */
2692 void
2693 pmap_zero_page(vm_paddr_t phys)
2694 {
2695         struct mdglobaldata *gd = mdcpu;
2696
2697         crit_enter();
2698         if (*(int *)gd->gd_CMAP3)
2699                 panic("pmap_zero_page: CMAP3 busy");
2700         *(int *)gd->gd_CMAP3 =
2701                     PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2702         cpu_invlpg(gd->gd_CADDR3);
2703
2704 #if defined(I686_CPU)
2705         if (cpu_class == CPUCLASS_686)
2706                 i686_pagezero(gd->gd_CADDR3);
2707         else
2708 #endif
2709                 bzero(gd->gd_CADDR3, PAGE_SIZE);
2710         *(int *) gd->gd_CMAP3 = 0;
2711         crit_exit();
2712 }
2713
2714 /*
2715  * Assert that a page is empty, panic if it isn't.
2716  *
2717  * No requirements.
2718  */
2719 void
2720 pmap_page_assertzero(vm_paddr_t phys)
2721 {
2722         struct mdglobaldata *gd = mdcpu;
2723         int i;
2724
2725         crit_enter();
2726         if (*(int *)gd->gd_CMAP3)
2727                 panic("pmap_zero_page: CMAP3 busy");
2728         *(int *)gd->gd_CMAP3 =
2729                     PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2730         cpu_invlpg(gd->gd_CADDR3);
2731         for (i = 0; i < PAGE_SIZE; i += 4) {
2732             if (*(int *)((char *)gd->gd_CADDR3 + i) != 0) {
2733                 panic("pmap_page_assertzero() @ %p not zero!\n",
2734                     (void *)gd->gd_CADDR3);
2735             }
2736         }
2737         *(int *) gd->gd_CMAP3 = 0;
2738         crit_exit();
2739 }
2740
2741 /*
2742  * Zero part of a physical page by mapping it into memory and clearing
2743  * its contents with bzero.
2744  *
2745  * off and size may not cover an area beyond a single hardware page.
2746  *
2747  * No requirements.
2748  */
2749 void
2750 pmap_zero_page_area(vm_paddr_t phys, int off, int size)
2751 {
2752         struct mdglobaldata *gd = mdcpu;
2753
2754         crit_enter();
2755         if (*(int *) gd->gd_CMAP3)
2756                 panic("pmap_zero_page: CMAP3 busy");
2757         *(int *) gd->gd_CMAP3 = PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2758         cpu_invlpg(gd->gd_CADDR3);
2759
2760 #if defined(I686_CPU)
2761         if (cpu_class == CPUCLASS_686 && off == 0 && size == PAGE_SIZE)
2762                 i686_pagezero(gd->gd_CADDR3);
2763         else
2764 #endif
2765                 bzero((char *)gd->gd_CADDR3 + off, size);
2766         *(int *) gd->gd_CMAP3 = 0;
2767         crit_exit();
2768 }
2769
2770 /*
2771  * Copy the physical page from the source PA to the target PA.
2772  * This function may be called from an interrupt.  No locking
2773  * is required.
2774  *
2775  * No requirements.
2776  */
2777 void
2778 pmap_copy_page(vm_paddr_t src, vm_paddr_t dst)
2779 {
2780         struct mdglobaldata *gd = mdcpu;
2781
2782         crit_enter();
2783         if (*(int *) gd->gd_CMAP1)
2784                 panic("pmap_copy_page: CMAP1 busy");
2785         if (*(int *) gd->gd_CMAP2)
2786                 panic("pmap_copy_page: CMAP2 busy");
2787
2788         *(int *) gd->gd_CMAP1 = PG_V | (src & PG_FRAME) | PG_A;
2789         *(int *) gd->gd_CMAP2 = PG_V | PG_RW | (dst & PG_FRAME) | PG_A | PG_M;
2790
2791         cpu_invlpg(gd->gd_CADDR1);
2792         cpu_invlpg(gd->gd_CADDR2);
2793
2794         bcopy(gd->gd_CADDR1, gd->gd_CADDR2, PAGE_SIZE);
2795
2796         *(int *) gd->gd_CMAP1 = 0;
2797         *(int *) gd->gd_CMAP2 = 0;
2798         crit_exit();
2799 }
2800
2801 /*
2802  * Copy the physical page from the source PA to the target PA.
2803  * This function may be called from an interrupt.  No locking
2804  * is required.
2805  *
2806  * No requirements.
2807  */
2808 void
2809 pmap_copy_page_frag(vm_paddr_t src, vm_paddr_t dst, size_t bytes)
2810 {
2811         struct mdglobaldata *gd = mdcpu;
2812
2813         crit_enter();
2814         if (*(int *) gd->gd_CMAP1)
2815                 panic("pmap_copy_page: CMAP1 busy");
2816         if (*(int *) gd->gd_CMAP2)
2817                 panic("pmap_copy_page: CMAP2 busy");
2818
2819         *(int *) gd->gd_CMAP1 = PG_V | (src & PG_FRAME) | PG_A;
2820         *(int *) gd->gd_CMAP2 = PG_V | PG_RW | (dst & PG_FRAME) | PG_A | PG_M;
2821
2822         cpu_invlpg(gd->gd_CADDR1);
2823         cpu_invlpg(gd->gd_CADDR2);
2824
2825         bcopy((char *)gd->gd_CADDR1 + (src & PAGE_MASK),
2826               (char *)gd->gd_CADDR2 + (dst & PAGE_MASK),
2827               bytes);
2828
2829         *(int *) gd->gd_CMAP1 = 0;
2830         *(int *) gd->gd_CMAP2 = 0;
2831         crit_exit();
2832 }
2833
2834 /*
2835  * Returns true if the pmap's pv is one of the first
2836  * 16 pvs linked to from this page.  This count may
2837  * be changed upwards or downwards in the future; it
2838  * is only necessary that true be returned for a small
2839  * subset of pmaps for proper page aging.
2840  *
2841  * No requirements.
2842  */
2843 boolean_t
2844 pmap_page_exists_quick(pmap_t pmap, vm_page_t m)
2845 {
2846         pv_entry_t pv;
2847         int loops = 0;
2848
2849         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2850                 return FALSE;
2851
2852         crit_enter();
2853         lwkt_gettoken(&vm_token);
2854         TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
2855                 if (pv->pv_pmap == pmap) {
2856                         lwkt_reltoken(&vm_token);
2857                         crit_exit();
2858                         return TRUE;
2859                 }
2860                 loops++;
2861                 if (loops >= 16)
2862                         break;
2863         }
2864         lwkt_reltoken(&vm_token);
2865         crit_exit();
2866         return (FALSE);
2867 }
2868
2869 /*
2870  * Remove all pages from specified address space
2871  * this aids process exit speeds.  Also, this code
2872  * is special cased for current process only, but
2873  * can have the more generic (and slightly slower)
2874  * mode enabled.  This is much faster than pmap_remove
2875  * in the case of running down an entire address space.
2876  *
2877  * No requirements.
2878  */
2879 void
2880 pmap_remove_pages(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
2881 {
2882         struct lwp *lp;
2883         unsigned *pte, tpte;
2884         pv_entry_t pv, npv;
2885         vm_page_t m;
2886         pmap_inval_info info;
2887         int iscurrentpmap;
2888         int32_t save_generation;
2889
2890         lp = curthread->td_lwp;
2891         if (lp && pmap == vmspace_pmap(lp->lwp_vmspace))
2892                 iscurrentpmap = 1;
2893         else
2894                 iscurrentpmap = 0;
2895
2896         lwkt_gettoken(&vm_token);
2897         pmap_inval_init(&info);
2898         for (pv = TAILQ_FIRST(&pmap->pm_pvlist); pv; pv = npv) {
2899                 if (pv->pv_va >= eva || pv->pv_va < sva) {
2900                         npv = TAILQ_NEXT(pv, pv_plist);
2901                         continue;
2902                 }
2903
2904                 KKASSERT(pmap == pv->pv_pmap);
2905
2906                 if (iscurrentpmap)
2907                         pte = (unsigned *)vtopte(pv->pv_va);
2908                 else
2909                         pte = pmap_pte_quick(pmap, pv->pv_va);
2910                 KKASSERT(*pte);
2911                 pmap_inval_interlock(&info, pmap, pv->pv_va);
2912
2913                 /*
2914                  * We cannot remove wired pages from a process' mapping
2915                  * at this time
2916                  */
2917                 if (*pte & PG_W) {
2918                         pmap_inval_deinterlock(&info, pmap);
2919                         npv = TAILQ_NEXT(pv, pv_plist);
2920                         continue;
2921                 }
2922                 KKASSERT(*pte);
2923                 tpte = loadandclear(pte);
2924                 pmap_inval_deinterlock(&info, pmap);
2925
2926                 m = PHYS_TO_VM_PAGE(tpte);
2927                 test_m_maps_pv(m, pv);
2928
2929                 KASSERT(m < &vm_page_array[vm_page_array_size],
2930                         ("pmap_remove_pages: bad tpte %x", tpte));
2931
2932                 KKASSERT(pmap->pm_stats.resident_count > 0);
2933                 --pmap->pm_stats.resident_count;
2934
2935                 /*
2936                  * Update the vm_page_t clean and reference bits.
2937                  */
2938                 if (tpte & PG_M) {
2939                         vm_page_dirty(m);
2940                 }
2941
2942                 npv = TAILQ_NEXT(pv, pv_plist);
2943 #ifdef PMAP_DEBUG
2944                 KKASSERT(pv->pv_m == m);
2945                 KKASSERT(pv->pv_pmap == pmap);
2946 #endif
2947                 TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist);
2948                 save_generation = ++pmap->pm_generation;
2949
2950                 m->md.pv_list_count--;
2951                 m->object->agg_pv_list_count--;
2952                 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
2953                 if (TAILQ_EMPTY(&m->md.pv_list))
2954                         vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
2955
2956                 pmap_unuse_pt(pmap, pv->pv_va, pv->pv_ptem, &info);
2957                 free_pv_entry(pv);
2958
2959                 /*
2960                  * Restart the scan if we blocked during the unuse or free
2961                  * calls and other removals were made.
2962                  */
2963                 if (save_generation != pmap->pm_generation) {
2964                         kprintf("Warning: pmap_remove_pages race-A avoided\n");
2965                         npv = TAILQ_FIRST(&pmap->pm_pvlist);
2966                 }
2967         }
2968         pmap_inval_done(&info);
2969         lwkt_reltoken(&vm_token);
2970 }
2971
2972 /*
2973  * pmap_testbit tests bits in pte's
2974  * note that the testbit/clearbit routines are inline,
2975  * and a lot of things compile-time evaluate.
2976  *
2977  * The caller must hold vm_token.
2978  */
2979 static boolean_t
2980 pmap_testbit(vm_page_t m, int bit)
2981 {
2982         pv_entry_t pv;
2983         unsigned *pte;
2984
2985         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2986                 return FALSE;
2987
2988         if (TAILQ_FIRST(&m->md.pv_list) == NULL)
2989                 return FALSE;
2990
2991         crit_enter();
2992         TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
2993                 /*
2994                  * if the bit being tested is the modified bit, then
2995                  * mark clean_map and ptes as never
2996                  * modified.
2997                  */
2998                 if (bit & (PG_A|PG_M)) {
2999                         if (!pmap_track_modified(pv->pv_va))
3000                                 continue;
3001                 }
3002
3003 #if defined(PMAP_DIAGNOSTIC)
3004                 if (!pv->pv_pmap) {
3005                         kprintf("Null pmap (tb) at va: %p\n",
3006                                 (void *)pv->pv_va);
3007                         continue;
3008                 }
3009 #endif
3010                 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
3011                 if (*pte & bit) {
3012                         crit_exit();
3013                         return TRUE;
3014                 }
3015         }
3016         crit_exit();
3017         return (FALSE);
3018 }
3019
3020 /*
3021  * This routine is used to modify bits in ptes
3022  *
3023  * The caller must hold vm_token.
3024  */
3025 static __inline void
3026 pmap_clearbit(vm_page_t m, int bit)
3027 {
3028         struct pmap_inval_info info;
3029         pv_entry_t pv;
3030         unsigned *pte;
3031         unsigned pbits;
3032
3033         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
3034                 return;
3035
3036         pmap_inval_init(&info);
3037
3038         /*
3039          * Loop over all current mappings setting/clearing as appropos If
3040          * setting RO do we need to clear the VAC?
3041          */
3042         TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
3043                 /*
3044                  * don't write protect pager mappings
3045                  */
3046                 if (bit == PG_RW) {
3047                         if (!pmap_track_modified(pv->pv_va))
3048                                 continue;
3049                 }
3050
3051 #if defined(PMAP_DIAGNOSTIC)
3052                 if (!pv->pv_pmap) {
3053                         kprintf("Null pmap (cb) at va: %p\n",
3054                                 (void *)pv->pv_va);
3055                         continue;
3056                 }
3057 #endif
3058
3059                 /*
3060                  * Careful here.  We can use a locked bus instruction to
3061                  * clear PG_A or PG_M safely but we need to synchronize
3062                  * with the target cpus when we mess with PG_RW.
3063                  *
3064                  * We do not have to force synchronization when clearing
3065                  * PG_M even for PTEs generated via virtual memory maps,
3066                  * because the virtual kernel will invalidate the pmap
3067                  * entry when/if it needs to resynchronize the Modify bit.
3068                  */
3069                 if (bit & PG_RW)
3070                         pmap_inval_interlock(&info, pv->pv_pmap, pv->pv_va);
3071                 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
3072 again:
3073                 pbits = *pte;
3074                 if (pbits & bit) {
3075                         if (bit == PG_RW) {
3076                                 if (pbits & PG_M) {
3077                                         vm_page_dirty(m);
3078                                         atomic_clear_int(pte, PG_M|PG_RW);
3079                                 } else {
3080                                         /*
3081                                          * The cpu may be trying to set PG_M
3082                                          * simultaniously with our clearing
3083                                          * of PG_RW.
3084                                          */
3085                                         if (!atomic_cmpset_int(pte, pbits,
3086                                                                pbits & ~PG_RW))
3087                                                 goto again;
3088                                 }
3089                         } else if (bit == PG_M) {
3090                                 /*
3091                                  * We could also clear PG_RW here to force
3092                                  * a fault on write to redetect PG_M for
3093                                  * virtual kernels, but it isn't necessary
3094                                  * since virtual kernels invalidate the pte 
3095                                  * when they clear the VPTE_M bit in their
3096                                  * virtual page tables.
3097                                  */
3098                                 atomic_clear_int(pte, PG_M);
3099                         } else {
3100                                 atomic_clear_int(pte, bit);
3101                         }
3102                 }
3103                 if (bit & PG_RW)
3104                         pmap_inval_deinterlock(&info, pv->pv_pmap);
3105         }
3106         pmap_inval_done(&info);
3107 }
3108
3109 /*
3110  * Lower the permission for all mappings to a given page.
3111  *
3112  * No requirements.
3113  */
3114 void
3115 pmap_page_protect(vm_page_t m, vm_prot_t prot)
3116 {
3117         if ((prot & VM_PROT_WRITE) == 0) {
3118                 lwkt_gettoken(&vm_token);
3119                 if (prot & (VM_PROT_READ | VM_PROT_EXECUTE)) {
3120                         pmap_clearbit(m, PG_RW);
3121                         vm_page_flag_clear(m, PG_WRITEABLE);
3122                 } else {
3123                         pmap_remove_all(m);
3124                 }
3125                 lwkt_reltoken(&vm_token);
3126         }
3127 }
3128
3129 /*
3130  * Return the physical address given a physical page index.
3131  *
3132  * No requirements.
3133  */
3134 vm_paddr_t
3135 pmap_phys_address(vm_pindex_t ppn)
3136 {
3137         return (i386_ptob(ppn));
3138 }
3139
3140 /*
3141  * Return a count of reference bits for a page, clearing those bits.
3142  * It is not necessary for every reference bit to be cleared, but it
3143  * is necessary that 0 only be returned when there are truly no
3144  * reference bits set.
3145  *
3146  * XXX: The exact number of bits to check and clear is a matter that
3147  * should be tested and standardized at some point in the future for
3148  * optimal aging of shared pages.
3149  *
3150  * No requirements.
3151  */
3152 int
3153 pmap_ts_referenced(vm_page_t m)
3154 {
3155         pv_entry_t pv, pvf, pvn;
3156         unsigned *pte;
3157         int rtval = 0;
3158
3159         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
3160                 return (rtval);
3161
3162         crit_enter();
3163         lwkt_gettoken(&vm_token);
3164
3165         if ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
3166
3167                 pvf = pv;
3168
3169                 do {
3170                         pvn = TAILQ_NEXT(pv, pv_list);
3171
3172                         crit_enter();
3173                         TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
3174                         TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list);
3175                         crit_exit();
3176
3177                         if (!pmap_track_modified(pv->pv_va))
3178                                 continue;
3179
3180                         pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
3181
3182                         if (pte && (*pte & PG_A)) {
3183 #ifdef SMP
3184                                 atomic_clear_int(pte, PG_A);
3185 #else
3186                                 atomic_clear_int_nonlocked(pte, PG_A);
3187 #endif
3188                                 rtval++;
3189                                 if (rtval > 4) {
3190                                         break;
3191                                 }
3192                         }
3193                 } while ((pv = pvn) != NULL && pv != pvf);
3194         }
3195
3196         lwkt_reltoken(&vm_token);
3197         crit_exit();
3198
3199         return (rtval);
3200 }
3201
3202 /*
3203  * Return whether or not the specified physical page was modified
3204  * in any physical maps.
3205  *
3206  * No requirements.
3207  */
3208 boolean_t
3209 pmap_is_modified(vm_page_t m)
3210 {
3211         boolean_t res;
3212
3213         lwkt_gettoken(&vm_token);
3214         res = pmap_testbit(m, PG_M);
3215         lwkt_reltoken(&vm_token);
3216         return (res);
3217 }
3218
3219 /*
3220  * Clear the modify bits on the specified physical page.
3221  *
3222  * No requirements.
3223  */
3224 void
3225 pmap_clear_modify(vm_page_t m)
3226 {
3227         lwkt_gettoken(&vm_token);
3228         pmap_clearbit(m, PG_M);
3229         lwkt_reltoken(&vm_token);
3230 }
3231
3232 /*
3233  * Clear the reference bit on the specified physical page.
3234  *
3235  * No requirements.
3236  */
3237 void
3238 pmap_clear_reference(vm_page_t m)
3239 {
3240         lwkt_gettoken(&vm_token);
3241         pmap_clearbit(m, PG_A);
3242         lwkt_reltoken(&vm_token);
3243 }
3244
3245 /*
3246  * Miscellaneous support routines follow
3247  *
3248  * Called from the low level boot code only.
3249  */
3250 static void
3251 i386_protection_init(void)
3252 {
3253         int *kp, prot;
3254
3255         kp = protection_codes;
3256         for (prot = 0; prot < 8; prot++) {
3257                 switch (prot) {
3258                 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_NONE:
3259                         /*
3260                          * Read access is also 0. There isn't any execute bit,
3261                          * so just make it readable.
3262                          */
3263                 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_NONE:
3264                 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_EXECUTE:
3265                 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_EXECUTE:
3266                         *kp++ = 0;
3267                         break;
3268                 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_NONE:
3269                 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_EXECUTE:
3270                 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_NONE:
3271                 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE:
3272                         *kp++ = PG_RW;
3273                         break;
3274                 }
3275         }
3276 }
3277
3278 /*
3279  * Map a set of physical memory pages into the kernel virtual
3280  * address space. Return a pointer to where it is mapped. This
3281  * routine is intended to be used for mapping device memory,
3282  * NOT real memory.
3283  *
3284  * NOTE: we can't use pgeflag unless we invalidate the pages one at
3285  * a time.
3286  *
3287  * No requirements.
3288  */
3289 void *
3290 pmap_mapdev(vm_paddr_t pa, vm_size_t size)
3291 {
3292         vm_offset_t va, tmpva, offset;
3293         unsigned *pte;
3294
3295         offset = pa & PAGE_MASK;
3296         size = roundup(offset + size, PAGE_SIZE);
3297
3298         va = kmem_alloc_nofault(&kernel_map, size, PAGE_SIZE);
3299         if (!va)
3300                 panic("pmap_mapdev: Couldn't alloc kernel virtual memory");
3301
3302         pa = pa & PG_FRAME;
3303         for (tmpva = va; size > 0;) {
3304                 pte = (unsigned *)vtopte(tmpva);
3305                 *pte = pa | PG_RW | PG_V; /* | pgeflag; */
3306                 size -= PAGE_SIZE;
3307                 tmpva += PAGE_SIZE;
3308                 pa += PAGE_SIZE;
3309         }
3310         cpu_invltlb();
3311         smp_invltlb();
3312
3313         return ((void *)(va + offset));
3314 }
3315
3316 void *
3317 pmap_mapdev_uncacheable(vm_paddr_t pa, vm_size_t size)
3318 {
3319         vm_offset_t va, tmpva, offset;
3320         unsigned *pte;
3321
3322         offset = pa & PAGE_MASK;
3323         size = roundup(offset + size, PAGE_SIZE);
3324
3325         va = kmem_alloc_nofault(&kernel_map, size, PAGE_SIZE);
3326         if (va == 0) {
3327                 panic("pmap_mapdev_uncacheable: "
3328                     "Couldn't alloc kernel virtual memory");
3329         }
3330
3331         pa = pa & PG_FRAME;
3332         for (tmpva = va; size > 0;) {
3333                 pte = (unsigned *)vtopte(tmpva);
3334                 *pte = pa | PG_RW | PG_V | PG_N; /* | pgeflag; */
3335                 size -= PAGE_SIZE;
3336                 tmpva += PAGE_SIZE;
3337                 pa += PAGE_SIZE;
3338         }
3339         cpu_invltlb();
3340         smp_invltlb();
3341
3342         return ((void *)(va + offset));
3343 }
3344
3345 /*
3346  * No requirements.
3347  */
3348 void
3349 pmap_unmapdev(vm_offset_t va, vm_size_t size)
3350 {
3351         vm_offset_t base, offset;
3352
3353         base = va & PG_FRAME;
3354         offset = va & PAGE_MASK;
3355         size = roundup(offset + size, PAGE_SIZE);
3356         pmap_qremove(va, size >> PAGE_SHIFT);
3357         kmem_free(&kernel_map, base, size);
3358 }
3359
3360 /*
3361  * Perform the pmap work for mincore
3362  *
3363  * The caller must hold vm_token if the caller wishes a stable result,
3364  * and even in that case some bits can change due to third party accesses
3365  * to the pmap.
3366  *
3367  * No requirements.
3368  */
3369 int
3370 pmap_mincore(pmap_t pmap, vm_offset_t addr)
3371 {
3372         unsigned *ptep, pte;
3373         vm_page_t m;
3374         int val = 0;
3375
3376         lwkt_gettoken(&vm_token);
3377         ptep = pmap_pte(pmap, addr);
3378
3379         if (ptep && (pte = *ptep) != 0) {
3380                 vm_offset_t pa;
3381
3382                 val = MINCORE_INCORE;
3383                 if ((pte & PG_MANAGED) == 0)
3384                         goto done;
3385
3386                 pa = pte & PG_FRAME;
3387
3388                 m = PHYS_TO_VM_PAGE(pa);
3389
3390                 if (pte & PG_M) {
3391                         /*
3392                          * Modified by us
3393                          */
3394                         val |= MINCORE_MODIFIED|MINCORE_MODIFIED_OTHER;
3395                 } else if (m->dirty || pmap_is_modified(m)) {
3396                         /*
3397                          * Modified by someone else
3398                          */
3399                         val |= MINCORE_MODIFIED_OTHER;
3400                 }
3401
3402                 if (pte & PG_A) {
3403                         /*
3404                          * Referenced by us
3405                          */
3406                         val |= MINCORE_REFERENCED|MINCORE_REFERENCED_OTHER;
3407                 } else if ((m->flags & PG_REFERENCED) ||
3408                            pmap_ts_referenced(m)) {
3409                         /*
3410                          * Referenced by someone else
3411                          */
3412                         val |= MINCORE_REFERENCED_OTHER;
3413                         vm_page_flag_set(m, PG_REFERENCED);
3414                 }
3415         } 
3416 done:
3417         lwkt_reltoken(&vm_token);
3418         return val;
3419 }
3420
3421 /*
3422  * Replace p->p_vmspace with a new one.  If adjrefs is non-zero the new
3423  * vmspace will be ref'd and the old one will be deref'd.
3424  *
3425  * cr3 will be reloaded if any lwp is the current lwp.
3426  *
3427  * Only called with new VM spaces.
3428  * The process must have only a single thread.
3429  * No other requirements.
3430  */
3431 void
3432 pmap_replacevm(struct proc *p, struct vmspace *newvm, int adjrefs)
3433 {
3434         struct vmspace *oldvm;
3435         struct lwp *lp;
3436
3437         crit_enter();
3438         oldvm = p->p_vmspace;
3439         if (oldvm != newvm) {
3440                 p->p_vmspace = newvm;
3441                 KKASSERT(p->p_nthreads == 1);
3442                 lp = RB_ROOT(&p->p_lwp_tree);
3443                 pmap_setlwpvm(lp, newvm);
3444                 if (adjrefs) {
3445                         sysref_get(&newvm->vm_sysref);
3446                         sysref_put(&oldvm->vm_sysref);
3447                 }
3448         }
3449         crit_exit();
3450 }
3451
3452 /*
3453  * Set the vmspace for a LWP.  The vmspace is almost universally set the
3454  * same as the process vmspace, but virtual kernels need to swap out contexts
3455  * on a per-lwp basis.
3456  *
3457  * Always called with a lp under the caller's direct control, either
3458  * unscheduled or the current lwp.
3459  *
3460  * No requirements.
3461  */
3462 void
3463 pmap_setlwpvm(struct lwp *lp, struct vmspace *newvm)
3464 {
3465         struct vmspace *oldvm;
3466         struct pmap *pmap;
3467
3468         crit_enter();
3469         oldvm = lp->lwp_vmspace;
3470
3471         if (oldvm != newvm) {
3472                 lp->lwp_vmspace = newvm;
3473                 if (curthread->td_lwp == lp) {
3474                         pmap = vmspace_pmap(newvm);
3475 #if defined(SMP)
3476                         atomic_set_cpumask(&pmap->pm_active, mycpu->gd_cpumask);
3477                         if (pmap->pm_active & CPUMASK_LOCK)
3478                                 pmap_interlock_wait(newvm);
3479 #else
3480                         pmap->pm_active |= 1;
3481 #endif
3482 #if defined(SWTCH_OPTIM_STATS)
3483                         tlb_flush_count++;
3484 #endif
3485                         curthread->td_pcb->pcb_cr3 = vtophys(pmap->pm_pdir);
3486                         load_cr3(curthread->td_pcb->pcb_cr3);
3487                         pmap = vmspace_pmap(oldvm);
3488 #if defined(SMP)
3489                         atomic_clear_cpumask(&pmap->pm_active,
3490                                              mycpu->gd_cpumask);
3491 #else
3492                         pmap->pm_active &= ~(cpumask_t)1;
3493 #endif
3494                 }
3495         }
3496         crit_exit();
3497 }
3498
3499 #ifdef SMP
3500 /*
3501  * Called when switching to a locked pmap, used to interlock against pmaps
3502  * undergoing modifications to prevent us from activating the MMU for the
3503  * target pmap until all such modifications have completed.  We have to do
3504  * this because the thread making the modifications has already set up its
3505  * SMP synchronization mask.
3506  *
3507  * No requirements.
3508  */
3509 void
3510 pmap_interlock_wait(struct vmspace *vm)
3511 {
3512         struct pmap *pmap = &vm->vm_pmap;
3513
3514         if (pmap->pm_active & CPUMASK_LOCK) {
3515                 DEBUG_PUSH_INFO("pmap_interlock_wait");
3516                 while (pmap->pm_active & CPUMASK_LOCK) {
3517                         cpu_pause();
3518                         cpu_ccfence();
3519                         lwkt_process_ipiq();
3520                 }
3521                 DEBUG_POP_INFO();
3522         }
3523 }
3524
3525 #endif
3526
3527 /*
3528  * Return a page-directory alignment hint for device mappings which will
3529  * allow the use of super-pages for the mapping.
3530  *
3531  * No requirements.
3532  */
3533 vm_offset_t
3534 pmap_addr_hint(vm_object_t obj, vm_offset_t addr, vm_size_t size)
3535 {
3536
3537         if ((obj == NULL) || (size < NBPDR) || (obj->type != OBJT_DEVICE)) {
3538                 return addr;
3539         }
3540
3541         addr = (addr + (NBPDR - 1)) & ~(NBPDR - 1);
3542         return addr;
3543 }
3544
3545 /*
3546  * Return whether the PGE flag is supported globally.
3547  *
3548  * No requirements.
3549  */
3550 int
3551 pmap_get_pgeflag(void)
3552 {
3553         return pgeflag;
3554 }
3555
3556 /*
3557  * Used by kmalloc/kfree, page already exists at va
3558  */
3559 vm_page_t
3560 pmap_kvtom(vm_offset_t va)
3561 {
3562         return(PHYS_TO_VM_PAGE(*vtopte(va) & PG_FRAME));
3563 }