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