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