Fix numerous compiler warnings and format conversion specifiers.
[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  * MPSAFE, INTERRUPT SAFE (cluster callback)
832  */
833 void
834 pmap_qremove(vm_offset_t va, int count)
835 {
836         vm_offset_t end_va;
837
838         end_va = va + count*PAGE_SIZE;
839
840         while (va < end_va) {
841                 unsigned *pte;
842
843                 pte = (unsigned *)vtopte(va);
844                 *pte = 0;
845                 cpu_invlpg((void *)va);
846                 va += PAGE_SIZE;
847         }
848 #ifdef SMP
849         smp_invltlb();
850 #endif
851 }
852
853 /*
854  * This routine works like vm_page_lookup() but also blocks as long as the
855  * page is busy.  This routine does not busy the page it returns.
856  *
857  * Unless the caller is managing objects whos pages are in a known state,
858  * the call should be made with a critical section held so the page's object
859  * association remains valid on return.
860  */
861 static vm_page_t
862 pmap_page_lookup(vm_object_t object, vm_pindex_t pindex)
863 {
864         vm_page_t m;
865
866         do {
867                 m = vm_page_lookup(object, pindex);
868         } while (m && vm_page_sleep_busy(m, FALSE, "pplookp"));
869
870         return(m);
871 }
872
873 /*
874  * Create a new thread and optionally associate it with a (new) process.
875  * NOTE! the new thread's cpu may not equal the current cpu.
876  */
877 void
878 pmap_init_thread(thread_t td)
879 {
880         /* enforce pcb placement */
881         td->td_pcb = (struct pcb *)(td->td_kstack + td->td_kstack_size) - 1;
882         td->td_savefpu = &td->td_pcb->pcb_save;
883         td->td_sp = (char *)td->td_pcb - 16;
884 }
885
886 /*
887  * This routine directly affects the fork perf for a process.
888  */
889 void
890 pmap_init_proc(struct proc *p)
891 {
892 }
893
894 /*
895  * Dispose the UPAGES for a process that has exited.
896  * This routine directly impacts the exit perf of a process.
897  */
898 void
899 pmap_dispose_proc(struct proc *p)
900 {
901         KASSERT(p->p_lock == 0, ("attempt to dispose referenced proc! %p", p));
902 }
903
904 /***************************************************
905  * Page table page management routines.....
906  ***************************************************/
907
908 /*
909  * This routine unholds page table pages, and if the hold count
910  * drops to zero, then it decrements the wire count.
911  */
912 static int 
913 _pmap_unwire_pte_hold(pmap_t pmap, vm_page_t m, pmap_inval_info_t info) 
914 {
915         /* 
916          * Wait until we can busy the page ourselves.  We cannot have
917          * any active flushes if we block.
918          */
919         if (m->flags & PG_BUSY) {
920                 pmap_inval_flush(info);
921                 while (vm_page_sleep_busy(m, FALSE, "pmuwpt"))
922                         ;
923         }
924         KASSERT(m->queue == PQ_NONE,
925                 ("_pmap_unwire_pte_hold: %p->queue != PQ_NONE", m));
926
927         if (m->hold_count == 1) {
928                 /*
929                  * Unmap the page table page
930                  */
931                 vm_page_busy(m);
932                 pmap_inval_add(info, pmap, -1);
933                 pmap->pm_pdir[m->pindex] = 0;
934
935                 KKASSERT(pmap->pm_stats.resident_count > 0);
936                 --pmap->pm_stats.resident_count;
937
938                 if (pmap->pm_ptphint == m)
939                         pmap->pm_ptphint = NULL;
940
941                 /*
942                  * This was our last hold, the page had better be unwired
943                  * after we decrement wire_count.
944                  * 
945                  * FUTURE NOTE: shared page directory page could result in
946                  * multiple wire counts.
947                  */
948                 vm_page_unhold(m);
949                 --m->wire_count;
950                 KKASSERT(m->wire_count == 0);
951                 --vmstats.v_wire_count;
952                 vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
953                 vm_page_flash(m);
954                 vm_page_free_zero(m);
955                 return 1;
956         } else {
957                 KKASSERT(m->hold_count > 1);
958                 vm_page_unhold(m);
959                 return 0;
960         }
961 }
962
963 static PMAP_INLINE int
964 pmap_unwire_pte_hold(pmap_t pmap, vm_page_t m, pmap_inval_info_t info)
965 {
966         KKASSERT(m->hold_count > 0);
967         if (m->hold_count > 1) {
968                 vm_page_unhold(m);
969                 return 0;
970         } else {
971                 return _pmap_unwire_pte_hold(pmap, m, info);
972         }
973 }
974
975 /*
976  * After removing a page table entry, this routine is used to
977  * conditionally free the page, and manage the hold/wire counts.
978  */
979 static int
980 pmap_unuse_pt(pmap_t pmap, vm_offset_t va, vm_page_t mpte,
981                 pmap_inval_info_t info)
982 {
983         unsigned ptepindex;
984         if (va >= UPT_MIN_ADDRESS)
985                 return 0;
986
987         if (mpte == NULL) {
988                 ptepindex = (va >> PDRSHIFT);
989                 if (pmap->pm_ptphint &&
990                         (pmap->pm_ptphint->pindex == ptepindex)) {
991                         mpte = pmap->pm_ptphint;
992                 } else {
993                         pmap_inval_flush(info);
994                         mpte = pmap_page_lookup( pmap->pm_pteobj, ptepindex);
995                         pmap->pm_ptphint = mpte;
996                 }
997         }
998
999         return pmap_unwire_pte_hold(pmap, mpte, info);
1000 }
1001
1002 /*
1003  * Initialize pmap0/vmspace0.  This pmap is not added to pmap_list because
1004  * it, and IdlePTD, represents the template used to update all other pmaps.
1005  *
1006  * On architectures where the kernel pmap is not integrated into the user
1007  * process pmap, this pmap represents the process pmap, not the kernel pmap.
1008  * kernel_pmap should be used to directly access the kernel_pmap.
1009  */
1010 void
1011 pmap_pinit0(struct pmap *pmap)
1012 {
1013         pmap->pm_pdir =
1014                 (pd_entry_t *)kmem_alloc_pageable(&kernel_map, PAGE_SIZE);
1015         pmap_kenter((vm_offset_t)pmap->pm_pdir, (vm_offset_t) IdlePTD);
1016         pmap->pm_count = 1;
1017         pmap->pm_active = 0;
1018         pmap->pm_ptphint = NULL;
1019         TAILQ_INIT(&pmap->pm_pvlist);
1020         bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1021 }
1022
1023 /*
1024  * Initialize a preallocated and zeroed pmap structure,
1025  * such as one in a vmspace structure.
1026  */
1027 void
1028 pmap_pinit(struct pmap *pmap)
1029 {
1030         vm_page_t ptdpg;
1031
1032         /*
1033          * No need to allocate page table space yet but we do need a valid
1034          * page directory table.
1035          */
1036         if (pmap->pm_pdir == NULL) {
1037                 pmap->pm_pdir =
1038                     (pd_entry_t *)kmem_alloc_pageable(&kernel_map, PAGE_SIZE);
1039         }
1040
1041         /*
1042          * Allocate an object for the ptes
1043          */
1044         if (pmap->pm_pteobj == NULL)
1045                 pmap->pm_pteobj = vm_object_allocate(OBJT_DEFAULT, PTDPTDI + 1);
1046
1047         /*
1048          * Allocate the page directory page, unless we already have
1049          * one cached.  If we used the cached page the wire_count will
1050          * already be set appropriately.
1051          */
1052         if ((ptdpg = pmap->pm_pdirm) == NULL) {
1053                 ptdpg = vm_page_grab(pmap->pm_pteobj, PTDPTDI,
1054                                      VM_ALLOC_NORMAL | VM_ALLOC_RETRY);
1055                 pmap->pm_pdirm = ptdpg;
1056                 vm_page_flag_clear(ptdpg, PG_MAPPED | PG_BUSY);
1057                 ptdpg->valid = VM_PAGE_BITS_ALL;
1058                 ptdpg->wire_count = 1;
1059                 ++vmstats.v_wire_count;
1060                 pmap_kenter((vm_offset_t)pmap->pm_pdir, VM_PAGE_TO_PHYS(ptdpg));
1061         }
1062         if ((ptdpg->flags & PG_ZERO) == 0)
1063                 bzero(pmap->pm_pdir, PAGE_SIZE);
1064
1065         pmap->pm_pdir[MPPTDI] = PTD[MPPTDI];
1066
1067         /* install self-referential address mapping entry */
1068         *(unsigned *) (pmap->pm_pdir + PTDPTDI) =
1069                 VM_PAGE_TO_PHYS(ptdpg) | PG_V | PG_RW | PG_A | PG_M;
1070
1071         pmap->pm_count = 1;
1072         pmap->pm_active = 0;
1073         pmap->pm_ptphint = NULL;
1074         TAILQ_INIT(&pmap->pm_pvlist);
1075         bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
1076         pmap->pm_stats.resident_count = 1;
1077 }
1078
1079 /*
1080  * Clean up a pmap structure so it can be physically freed.  This routine
1081  * is called by the vmspace dtor function.  A great deal of pmap data is
1082  * left passively mapped to improve vmspace management so we have a bit
1083  * of cleanup work to do here.
1084  */
1085 void
1086 pmap_puninit(pmap_t pmap)
1087 {
1088         vm_page_t p;
1089
1090         KKASSERT(pmap->pm_active == 0);
1091         if ((p = pmap->pm_pdirm) != NULL) {
1092                 KKASSERT(pmap->pm_pdir != NULL);
1093                 pmap_kremove((vm_offset_t)pmap->pm_pdir);
1094                 p->wire_count--;
1095                 vmstats.v_wire_count--;
1096                 KKASSERT((p->flags & PG_BUSY) == 0);
1097                 vm_page_busy(p);
1098                 vm_page_free_zero(p);
1099                 pmap->pm_pdirm = NULL;
1100         }
1101         if (pmap->pm_pdir) {
1102                 kmem_free(&kernel_map, (vm_offset_t)pmap->pm_pdir, PAGE_SIZE);
1103                 pmap->pm_pdir = NULL;
1104         }
1105         if (pmap->pm_pteobj) {
1106                 vm_object_deallocate(pmap->pm_pteobj);
1107                 pmap->pm_pteobj = NULL;
1108         }
1109 }
1110
1111 /*
1112  * Wire in kernel global address entries.  To avoid a race condition
1113  * between pmap initialization and pmap_growkernel, this procedure
1114  * adds the pmap to the master list (which growkernel scans to update),
1115  * then copies the template.
1116  */
1117 void
1118 pmap_pinit2(struct pmap *pmap)
1119 {
1120         crit_enter();
1121         TAILQ_INSERT_TAIL(&pmap_list, pmap, pm_pmnode);
1122         /* XXX copies current process, does not fill in MPPTDI */
1123         bcopy(PTD + KPTDI, pmap->pm_pdir + KPTDI, nkpt * PTESIZE);
1124         crit_exit();
1125 }
1126
1127 /*
1128  * Attempt to release and free a vm_page in a pmap.  Returns 1 on success,
1129  * 0 on failure (if the procedure had to sleep).
1130  *
1131  * When asked to remove the page directory page itself, we actually just
1132  * leave it cached so we do not have to incur the SMP inval overhead of
1133  * removing the kernel mapping.  pmap_puninit() will take care of it.
1134  */
1135 static int
1136 pmap_release_free_page(struct pmap *pmap, vm_page_t p)
1137 {
1138         unsigned *pde = (unsigned *) pmap->pm_pdir;
1139         /*
1140          * This code optimizes the case of freeing non-busy
1141          * page-table pages.  Those pages are zero now, and
1142          * might as well be placed directly into the zero queue.
1143          */
1144         if (vm_page_sleep_busy(p, FALSE, "pmaprl"))
1145                 return 0;
1146
1147         vm_page_busy(p);
1148
1149         /*
1150          * Remove the page table page from the processes address space.
1151          */
1152         pde[p->pindex] = 0;
1153         KKASSERT(pmap->pm_stats.resident_count > 0);
1154         --pmap->pm_stats.resident_count;
1155
1156         if (p->hold_count)  {
1157                 panic("pmap_release: freeing held page table page");
1158         }
1159         if (pmap->pm_ptphint && (pmap->pm_ptphint->pindex == p->pindex))
1160                 pmap->pm_ptphint = NULL;
1161
1162         /*
1163          * We leave the page directory page cached, wired, and mapped in
1164          * the pmap until the dtor function (pmap_puninit()) gets called.
1165          * However, still clean it up so we can set PG_ZERO.
1166          */
1167         if (p->pindex == PTDPTDI) {
1168                 bzero(pde + KPTDI, nkpt * PTESIZE);
1169                 pde[MPPTDI] = 0;
1170                 pde[APTDPTDI] = 0;
1171                 vm_page_flag_set(p, PG_ZERO);
1172                 vm_page_wakeup(p);
1173         } else {
1174                 p->wire_count--;
1175                 vmstats.v_wire_count--;
1176                 vm_page_free_zero(p);
1177         }
1178         return 1;
1179 }
1180
1181 /*
1182  * this routine is called if the page table page is not
1183  * mapped correctly.
1184  */
1185 static vm_page_t
1186 _pmap_allocpte(pmap_t pmap, unsigned ptepindex)
1187 {
1188         vm_offset_t pteva, ptepa;
1189         vm_page_t m;
1190
1191         /*
1192          * Find or fabricate a new pagetable page
1193          */
1194         m = vm_page_grab(pmap->pm_pteobj, ptepindex,
1195                         VM_ALLOC_NORMAL | VM_ALLOC_ZERO | VM_ALLOC_RETRY);
1196
1197         KASSERT(m->queue == PQ_NONE,
1198                 ("_pmap_allocpte: %p->queue != PQ_NONE", m));
1199
1200         /*
1201          * Increment the hold count for the page we will be returning to
1202          * the caller.
1203          */
1204         m->hold_count++;
1205
1206         /*
1207          * It is possible that someone else got in and mapped by the page
1208          * directory page while we were blocked, if so just unbusy and
1209          * return the held page.
1210          */
1211         if ((ptepa = pmap->pm_pdir[ptepindex]) != 0) {
1212                 KKASSERT((ptepa & PG_FRAME) == VM_PAGE_TO_PHYS(m));
1213                 vm_page_wakeup(m);
1214                 return(m);
1215         }
1216
1217         if (m->wire_count == 0)
1218                 vmstats.v_wire_count++;
1219         m->wire_count++;
1220
1221
1222         /*
1223          * Map the pagetable page into the process address space, if
1224          * it isn't already there.
1225          */
1226
1227         ++pmap->pm_stats.resident_count;
1228
1229         ptepa = VM_PAGE_TO_PHYS(m);
1230         pmap->pm_pdir[ptepindex] =
1231                 (pd_entry_t) (ptepa | PG_U | PG_RW | PG_V | PG_A | PG_M);
1232
1233         /*
1234          * Set the page table hint
1235          */
1236         pmap->pm_ptphint = m;
1237
1238         /*
1239          * Try to use the new mapping, but if we cannot, then
1240          * do it with the routine that maps the page explicitly.
1241          */
1242         if ((m->flags & PG_ZERO) == 0) {
1243                 if ((((unsigned)pmap->pm_pdir[PTDPTDI]) & PG_FRAME) ==
1244                         (((unsigned) PTDpde) & PG_FRAME)) {
1245                         pteva = UPT_MIN_ADDRESS + i386_ptob(ptepindex);
1246                         bzero((caddr_t) pteva, PAGE_SIZE);
1247                 } else {
1248                         pmap_zero_page(ptepa);
1249                 }
1250         }
1251
1252         m->valid = VM_PAGE_BITS_ALL;
1253         vm_page_flag_clear(m, PG_ZERO);
1254         vm_page_flag_set(m, PG_MAPPED);
1255         vm_page_wakeup(m);
1256
1257         return m;
1258 }
1259
1260 static vm_page_t
1261 pmap_allocpte(pmap_t pmap, vm_offset_t va)
1262 {
1263         unsigned ptepindex;
1264         vm_offset_t ptepa;
1265         vm_page_t m;
1266
1267         /*
1268          * Calculate pagetable page index
1269          */
1270         ptepindex = va >> PDRSHIFT;
1271
1272         /*
1273          * Get the page directory entry
1274          */
1275         ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
1276
1277         /*
1278          * This supports switching from a 4MB page to a
1279          * normal 4K page.
1280          */
1281         if (ptepa & PG_PS) {
1282                 pmap->pm_pdir[ptepindex] = 0;
1283                 ptepa = 0;
1284                 cpu_invltlb();
1285                 smp_invltlb();
1286         }
1287
1288         /*
1289          * If the page table page is mapped, we just increment the
1290          * hold count, and activate it.
1291          */
1292         if (ptepa) {
1293                 /*
1294                  * In order to get the page table page, try the
1295                  * hint first.
1296                  */
1297                 if (pmap->pm_ptphint &&
1298                         (pmap->pm_ptphint->pindex == ptepindex)) {
1299                         m = pmap->pm_ptphint;
1300                 } else {
1301                         m = pmap_page_lookup( pmap->pm_pteobj, ptepindex);
1302                         pmap->pm_ptphint = m;
1303                 }
1304                 m->hold_count++;
1305                 return m;
1306         }
1307         /*
1308          * Here if the pte page isn't mapped, or if it has been deallocated.
1309          */
1310         return _pmap_allocpte(pmap, ptepindex);
1311 }
1312
1313
1314 /***************************************************
1315  * Pmap allocation/deallocation routines.
1316  ***************************************************/
1317
1318 /*
1319  * Release any resources held by the given physical map.
1320  * Called when a pmap initialized by pmap_pinit is being released.
1321  * Should only be called if the map contains no valid mappings.
1322  */
1323 static int pmap_release_callback(struct vm_page *p, void *data);
1324
1325 void
1326 pmap_release(struct pmap *pmap)
1327 {
1328         vm_object_t object = pmap->pm_pteobj;
1329         struct rb_vm_page_scan_info info;
1330
1331         KASSERT(pmap->pm_active == 0, ("pmap still active! %08x", pmap->pm_active));
1332 #if defined(DIAGNOSTIC)
1333         if (object->ref_count != 1)
1334                 panic("pmap_release: pteobj reference count != 1");
1335 #endif
1336         
1337         info.pmap = pmap;
1338         info.object = object;
1339         crit_enter();
1340         TAILQ_REMOVE(&pmap_list, pmap, pm_pmnode);
1341         crit_exit();
1342
1343         do {
1344                 crit_enter();
1345                 info.error = 0;
1346                 info.mpte = NULL;
1347                 info.limit = object->generation;
1348
1349                 vm_page_rb_tree_RB_SCAN(&object->rb_memq, NULL, 
1350                                         pmap_release_callback, &info);
1351                 if (info.error == 0 && info.mpte) {
1352                         if (!pmap_release_free_page(pmap, info.mpte))
1353                                 info.error = 1;
1354                 }
1355                 crit_exit();
1356         } while (info.error);
1357 }
1358
1359 static int
1360 pmap_release_callback(struct vm_page *p, void *data)
1361 {
1362         struct rb_vm_page_scan_info *info = data;
1363
1364         if (p->pindex == PTDPTDI) {
1365                 info->mpte = p;
1366                 return(0);
1367         }
1368         if (!pmap_release_free_page(info->pmap, p)) {
1369                 info->error = 1;
1370                 return(-1);
1371         }
1372         if (info->object->generation != info->limit) {
1373                 info->error = 1;
1374                 return(-1);
1375         }
1376         return(0);
1377 }
1378
1379 /*
1380  * Grow the number of kernel page table entries, if needed.
1381  */
1382
1383 void
1384 pmap_growkernel(vm_offset_t addr)
1385 {
1386         struct pmap *pmap;
1387         vm_offset_t ptppaddr;
1388         vm_page_t nkpg;
1389         pd_entry_t newpdir;
1390
1391         crit_enter();
1392         if (kernel_vm_end == 0) {
1393                 kernel_vm_end = KERNBASE;
1394                 nkpt = 0;
1395                 while (pdir_pde(PTD, kernel_vm_end)) {
1396                         kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1);
1397                         nkpt++;
1398                 }
1399         }
1400         addr = (addr + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1);
1401         while (kernel_vm_end < addr) {
1402                 if (pdir_pde(PTD, kernel_vm_end)) {
1403                         kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) & ~(PAGE_SIZE * NPTEPG - 1);
1404                         continue;
1405                 }
1406
1407                 /*
1408                  * This index is bogus, but out of the way
1409                  */
1410                 nkpg = vm_page_alloc(kptobj, nkpt, 
1411                         VM_ALLOC_NORMAL | VM_ALLOC_SYSTEM | VM_ALLOC_INTERRUPT);
1412                 if (nkpg == NULL)
1413                         panic("pmap_growkernel: no memory to grow kernel");
1414
1415                 vm_page_wire(nkpg);
1416                 ptppaddr = VM_PAGE_TO_PHYS(nkpg);
1417                 pmap_zero_page(ptppaddr);
1418                 newpdir = (pd_entry_t) (ptppaddr | PG_V | PG_RW | PG_A | PG_M);
1419                 pdir_pde(PTD, kernel_vm_end) = newpdir;
1420                 *pmap_pde(&kernel_pmap, kernel_vm_end) = newpdir;
1421                 nkpt++;
1422
1423                 /*
1424                  * This update must be interlocked with pmap_pinit2.
1425                  */
1426                 TAILQ_FOREACH(pmap, &pmap_list, pm_pmnode) {
1427                         *pmap_pde(pmap, kernel_vm_end) = newpdir;
1428                 }
1429                 kernel_vm_end = (kernel_vm_end + PAGE_SIZE * NPTEPG) &
1430                                 ~(PAGE_SIZE * NPTEPG - 1);
1431         }
1432         crit_exit();
1433 }
1434
1435 /*
1436  *      Retire the given physical map from service.
1437  *      Should only be called if the map contains
1438  *      no valid mappings.
1439  */
1440 void
1441 pmap_destroy(pmap_t pmap)
1442 {
1443         int count;
1444
1445         if (pmap == NULL)
1446                 return;
1447
1448         count = --pmap->pm_count;
1449         if (count == 0) {
1450                 pmap_release(pmap);
1451                 panic("destroying a pmap is not yet implemented");
1452         }
1453 }
1454
1455 /*
1456  *      Add a reference to the specified pmap.
1457  */
1458 void
1459 pmap_reference(pmap_t pmap)
1460 {
1461         if (pmap != NULL) {
1462                 pmap->pm_count++;
1463         }
1464 }
1465
1466 /***************************************************
1467 * page management routines.
1468  ***************************************************/
1469
1470 /*
1471  * free the pv_entry back to the free list.  This function may be
1472  * called from an interrupt.
1473  */
1474 static PMAP_INLINE void
1475 free_pv_entry(pv_entry_t pv)
1476 {
1477         pv_entry_count--;
1478         zfree(pvzone, pv);
1479 }
1480
1481 /*
1482  * get a new pv_entry, allocating a block from the system
1483  * when needed.  This function may be called from an interrupt.
1484  */
1485 static pv_entry_t
1486 get_pv_entry(void)
1487 {
1488         pv_entry_count++;
1489         if (pv_entry_high_water &&
1490             (pv_entry_count > pv_entry_high_water) &&
1491             (pmap_pagedaemon_waken == 0)) {
1492                 pmap_pagedaemon_waken = 1;
1493                 wakeup (&vm_pages_needed);
1494         }
1495         return zalloc(pvzone);
1496 }
1497
1498 /*
1499  * This routine is very drastic, but can save the system
1500  * in a pinch.
1501  */
1502 void
1503 pmap_collect(void)
1504 {
1505         int i;
1506         vm_page_t m;
1507         static int warningdone=0;
1508
1509         if (pmap_pagedaemon_waken == 0)
1510                 return;
1511         pmap_pagedaemon_waken = 0;
1512
1513         if (warningdone < 5) {
1514                 kprintf("pmap_collect: collecting pv entries -- suggest increasing PMAP_SHPGPERPROC\n");
1515                 warningdone++;
1516         }
1517
1518         for(i = 0; i < vm_page_array_size; i++) {
1519                 m = &vm_page_array[i];
1520                 if (m->wire_count || m->hold_count || m->busy ||
1521                     (m->flags & PG_BUSY))
1522                         continue;
1523                 pmap_remove_all(m);
1524         }
1525 }
1526         
1527
1528 /*
1529  * If it is the first entry on the list, it is actually
1530  * in the header and we must copy the following entry up
1531  * to the header.  Otherwise we must search the list for
1532  * the entry.  In either case we free the now unused entry.
1533  */
1534 static int
1535 pmap_remove_entry(struct pmap *pmap, vm_page_t m, 
1536                         vm_offset_t va, pmap_inval_info_t info)
1537 {
1538         pv_entry_t pv;
1539         int rtval;
1540
1541         crit_enter();
1542         if (m->md.pv_list_count < pmap->pm_stats.resident_count) {
1543                 TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
1544                         if (pmap == pv->pv_pmap && va == pv->pv_va) 
1545                                 break;
1546                 }
1547         } else {
1548                 TAILQ_FOREACH(pv, &pmap->pm_pvlist, pv_plist) {
1549                         if (va == pv->pv_va) 
1550                                 break;
1551                 }
1552         }
1553
1554         rtval = 0;
1555         if (pv) {
1556                 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
1557                 m->md.pv_list_count--;
1558                 if (TAILQ_EMPTY(&m->md.pv_list))
1559                         vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
1560                 TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist);
1561                 ++pmap->pm_generation;
1562                 rtval = pmap_unuse_pt(pmap, va, pv->pv_ptem, info);
1563                 free_pv_entry(pv);
1564         }
1565         crit_exit();
1566         return rtval;
1567 }
1568
1569 /*
1570  * Create a pv entry for page at pa for
1571  * (pmap, va).
1572  */
1573 static void
1574 pmap_insert_entry(pmap_t pmap, vm_offset_t va, vm_page_t mpte, vm_page_t m)
1575 {
1576         pv_entry_t pv;
1577
1578         crit_enter();
1579         pv = get_pv_entry();
1580         pv->pv_va = va;
1581         pv->pv_pmap = pmap;
1582         pv->pv_ptem = mpte;
1583
1584         TAILQ_INSERT_TAIL(&pmap->pm_pvlist, pv, pv_plist);
1585         TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list);
1586         m->md.pv_list_count++;
1587
1588         crit_exit();
1589 }
1590
1591 /*
1592  * pmap_remove_pte: do the things to unmap a page in a process
1593  */
1594 static int
1595 pmap_remove_pte(struct pmap *pmap, unsigned *ptq, vm_offset_t va,
1596         pmap_inval_info_t info)
1597 {
1598         unsigned oldpte;
1599         vm_page_t m;
1600
1601         pmap_inval_add(info, pmap, va);
1602         oldpte = loadandclear(ptq);
1603         if (oldpte & PG_W)
1604                 pmap->pm_stats.wired_count -= 1;
1605         /*
1606          * Machines that don't support invlpg, also don't support
1607          * PG_G.  XXX PG_G is disabled for SMP so don't worry about
1608          * the SMP case.
1609          */
1610         if (oldpte & PG_G)
1611                 cpu_invlpg((void *)va);
1612         KKASSERT(pmap->pm_stats.resident_count > 0);
1613         --pmap->pm_stats.resident_count;
1614         if (oldpte & PG_MANAGED) {
1615                 m = PHYS_TO_VM_PAGE(oldpte);
1616                 if (oldpte & PG_M) {
1617 #if defined(PMAP_DIAGNOSTIC)
1618                         if (pmap_nw_modified((pt_entry_t) oldpte)) {
1619                                 kprintf("pmap_remove: modified page not "
1620                                         "writable: va: %p, pte: 0x%lx\n",
1621                                         (void *)va, (long)oldpte);
1622                         }
1623 #endif
1624                         if (pmap_track_modified(va))
1625                                 vm_page_dirty(m);
1626                 }
1627                 if (oldpte & PG_A)
1628                         vm_page_flag_set(m, PG_REFERENCED);
1629                 return pmap_remove_entry(pmap, m, va, info);
1630         } else {
1631                 return pmap_unuse_pt(pmap, va, NULL, info);
1632         }
1633
1634         return 0;
1635 }
1636
1637 /*
1638  * pmap_remove_page:
1639  *
1640  *      Remove a single page from a process address space.
1641  *
1642  *      This function may not be called from an interrupt if the pmap is
1643  *      not kernel_pmap.
1644  */
1645 static void
1646 pmap_remove_page(struct pmap *pmap, vm_offset_t va, pmap_inval_info_t info)
1647 {
1648         unsigned *ptq;
1649
1650         /*
1651          * if there is no pte for this address, just skip it!!!  Otherwise
1652          * get a local va for mappings for this pmap and remove the entry.
1653          */
1654         if (*pmap_pde(pmap, va) != 0) {
1655                 ptq = get_ptbase(pmap) + i386_btop(va);
1656                 if (*ptq) {
1657                         pmap_remove_pte(pmap, ptq, va, info);
1658                 }
1659         }
1660 }
1661
1662 /*
1663  * pmap_remove:
1664  *
1665  *      Remove the given range of addresses from the specified map.
1666  *
1667  *      It is assumed that the start and end are properly
1668  *      rounded to the page size.
1669  *
1670  *      This function may not be called from an interrupt if the pmap is
1671  *      not kernel_pmap.
1672  */
1673 void
1674 pmap_remove(struct pmap *pmap, vm_offset_t sva, vm_offset_t eva)
1675 {
1676         unsigned *ptbase;
1677         vm_offset_t pdnxt;
1678         vm_offset_t ptpaddr;
1679         vm_offset_t sindex, eindex;
1680         struct pmap_inval_info info;
1681
1682         if (pmap == NULL)
1683                 return;
1684
1685         if (pmap->pm_stats.resident_count == 0)
1686                 return;
1687
1688         pmap_inval_init(&info);
1689
1690         /*
1691          * special handling of removing one page.  a very
1692          * common operation and easy to short circuit some
1693          * code.
1694          */
1695         if (((sva + PAGE_SIZE) == eva) && 
1696                 (((unsigned) pmap->pm_pdir[(sva >> PDRSHIFT)] & PG_PS) == 0)) {
1697                 pmap_remove_page(pmap, sva, &info);
1698                 pmap_inval_flush(&info);
1699                 return;
1700         }
1701
1702         /*
1703          * Get a local virtual address for the mappings that are being
1704          * worked with.
1705          */
1706         sindex = i386_btop(sva);
1707         eindex = i386_btop(eva);
1708
1709         for (; sindex < eindex; sindex = pdnxt) {
1710                 unsigned pdirindex;
1711
1712                 /*
1713                  * Calculate index for next page table.
1714                  */
1715                 pdnxt = ((sindex + NPTEPG) & ~(NPTEPG - 1));
1716                 if (pmap->pm_stats.resident_count == 0)
1717                         break;
1718
1719                 pdirindex = sindex / NPDEPG;
1720                 if (((ptpaddr = (unsigned) pmap->pm_pdir[pdirindex]) & PG_PS) != 0) {
1721                         pmap_inval_add(&info, pmap, -1);
1722                         pmap->pm_pdir[pdirindex] = 0;
1723                         pmap->pm_stats.resident_count -= NBPDR / PAGE_SIZE;
1724                         continue;
1725                 }
1726
1727                 /*
1728                  * Weed out invalid mappings. Note: we assume that the page
1729                  * directory table is always allocated, and in kernel virtual.
1730                  */
1731                 if (ptpaddr == 0)
1732                         continue;
1733
1734                 /*
1735                  * Limit our scan to either the end of the va represented
1736                  * by the current page table page, or to the end of the
1737                  * range being removed.
1738                  */
1739                 if (pdnxt > eindex) {
1740                         pdnxt = eindex;
1741                 }
1742
1743                 /*
1744                  * NOTE: pmap_remove_pte() can block.
1745                  */
1746                 for (; sindex != pdnxt; sindex++) {
1747                         vm_offset_t va;
1748
1749                         ptbase = get_ptbase(pmap);
1750                         if (ptbase[sindex] == 0)
1751                                 continue;
1752                         va = i386_ptob(sindex);
1753                         if (pmap_remove_pte(pmap, ptbase + sindex, va, &info))
1754                                 break;
1755                 }
1756         }
1757         pmap_inval_flush(&info);
1758 }
1759
1760 /*
1761  * pmap_remove_all:
1762  *
1763  *      Removes this physical page from all physical maps in which it resides.
1764  *      Reflects back modify bits to the pager.
1765  *
1766  *      This routine may not be called from an interrupt.
1767  */
1768
1769 static void
1770 pmap_remove_all(vm_page_t m)
1771 {
1772         struct pmap_inval_info info;
1773         unsigned *pte, tpte;
1774         pv_entry_t pv;
1775
1776         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
1777                 return;
1778
1779         pmap_inval_init(&info);
1780         crit_enter();
1781         while ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
1782                 KKASSERT(pv->pv_pmap->pm_stats.resident_count > 0);
1783                 --pv->pv_pmap->pm_stats.resident_count;
1784
1785                 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
1786                 pmap_inval_add(&info, pv->pv_pmap, pv->pv_va);
1787                 tpte = loadandclear(pte);
1788
1789                 if (tpte & PG_W)
1790                         pv->pv_pmap->pm_stats.wired_count--;
1791
1792                 if (tpte & PG_A)
1793                         vm_page_flag_set(m, PG_REFERENCED);
1794
1795                 /*
1796                  * Update the vm_page_t clean and reference bits.
1797                  */
1798                 if (tpte & PG_M) {
1799 #if defined(PMAP_DIAGNOSTIC)
1800                         if (pmap_nw_modified((pt_entry_t) tpte)) {
1801                                 kprintf("pmap_remove_all: modified page "
1802                                         "not writable: va: %p, pte: 0x%lx\n",
1803                                         (void *)pv->pv_va, (long)tpte);
1804                         }
1805 #endif
1806                         if (pmap_track_modified(pv->pv_va))
1807                                 vm_page_dirty(m);
1808                 }
1809                 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
1810                 TAILQ_REMOVE(&pv->pv_pmap->pm_pvlist, pv, pv_plist);
1811                 ++pv->pv_pmap->pm_generation;
1812                 m->md.pv_list_count--;
1813                 if (TAILQ_EMPTY(&m->md.pv_list))
1814                         vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
1815                 pmap_unuse_pt(pv->pv_pmap, pv->pv_va, pv->pv_ptem, &info);
1816                 free_pv_entry(pv);
1817         }
1818         crit_exit();
1819         KKASSERT((m->flags & (PG_MAPPED|PG_WRITEABLE)) == 0);
1820         pmap_inval_flush(&info);
1821 }
1822
1823 /*
1824  * pmap_protect:
1825  *
1826  *      Set the physical protection on the specified range of this map
1827  *      as requested.
1828  *
1829  *      This function may not be called from an interrupt if the map is
1830  *      not the kernel_pmap.
1831  */
1832 void
1833 pmap_protect(pmap_t pmap, vm_offset_t sva, vm_offset_t eva, vm_prot_t prot)
1834 {
1835         unsigned *ptbase;
1836         vm_offset_t pdnxt, ptpaddr;
1837         vm_pindex_t sindex, eindex;
1838         pmap_inval_info info;
1839
1840         if (pmap == NULL)
1841                 return;
1842
1843         if ((prot & VM_PROT_READ) == VM_PROT_NONE) {
1844                 pmap_remove(pmap, sva, eva);
1845                 return;
1846         }
1847
1848         if (prot & VM_PROT_WRITE)
1849                 return;
1850
1851         pmap_inval_init(&info);
1852
1853         ptbase = get_ptbase(pmap);
1854
1855         sindex = i386_btop(sva);
1856         eindex = i386_btop(eva);
1857
1858         for (; sindex < eindex; sindex = pdnxt) {
1859
1860                 unsigned pdirindex;
1861
1862                 pdnxt = ((sindex + NPTEPG) & ~(NPTEPG - 1));
1863
1864                 pdirindex = sindex / NPDEPG;
1865                 if (((ptpaddr = (unsigned) pmap->pm_pdir[pdirindex]) & PG_PS) != 0) {
1866                         pmap_inval_add(&info, pmap, -1);
1867                         pmap->pm_pdir[pdirindex] &= ~(PG_M|PG_RW);
1868                         pmap->pm_stats.resident_count -= NBPDR / PAGE_SIZE;
1869                         continue;
1870                 }
1871
1872                 /*
1873                  * Weed out invalid mappings. Note: we assume that the page
1874                  * directory table is always allocated, and in kernel virtual.
1875                  */
1876                 if (ptpaddr == 0)
1877                         continue;
1878
1879                 if (pdnxt > eindex) {
1880                         pdnxt = eindex;
1881                 }
1882
1883                 for (; sindex != pdnxt; sindex++) {
1884
1885                         unsigned pbits;
1886                         vm_page_t m;
1887
1888                         /*
1889                          * XXX non-optimal.  Note also that there can be
1890                          * no pmap_inval_flush() calls until after we modify
1891                          * ptbase[sindex] (or otherwise we have to do another
1892                          * pmap_inval_add() call).
1893                          */
1894                         pmap_inval_add(&info, pmap, i386_ptob(sindex));
1895                         pbits = ptbase[sindex];
1896
1897                         if (pbits & PG_MANAGED) {
1898                                 m = NULL;
1899                                 if (pbits & PG_A) {
1900                                         m = PHYS_TO_VM_PAGE(pbits);
1901                                         vm_page_flag_set(m, PG_REFERENCED);
1902                                         pbits &= ~PG_A;
1903                                 }
1904                                 if (pbits & PG_M) {
1905                                         if (pmap_track_modified(i386_ptob(sindex))) {
1906                                                 if (m == NULL)
1907                                                         m = PHYS_TO_VM_PAGE(pbits);
1908                                                 vm_page_dirty(m);
1909                                                 pbits &= ~PG_M;
1910                                         }
1911                                 }
1912                         }
1913
1914                         pbits &= ~PG_RW;
1915
1916                         if (pbits != ptbase[sindex]) {
1917                                 ptbase[sindex] = pbits;
1918                         }
1919                 }
1920         }
1921         pmap_inval_flush(&info);
1922 }
1923
1924 /*
1925  *      Insert the given physical page (p) at
1926  *      the specified virtual address (v) in the
1927  *      target physical map with the protection requested.
1928  *
1929  *      If specified, the page will be wired down, meaning
1930  *      that the related pte can not be reclaimed.
1931  *
1932  *      NB:  This is the only routine which MAY NOT lazy-evaluate
1933  *      or lose information.  That is, this routine must actually
1934  *      insert this page into the given map NOW.
1935  */
1936 void
1937 pmap_enter(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot,
1938            boolean_t wired)
1939 {
1940         vm_paddr_t pa;
1941         unsigned *pte;
1942         vm_paddr_t opa;
1943         vm_offset_t origpte, newpte;
1944         vm_page_t mpte;
1945         pmap_inval_info info;
1946
1947         if (pmap == NULL)
1948                 return;
1949
1950         va &= PG_FRAME;
1951 #ifdef PMAP_DIAGNOSTIC
1952         if (va >= KvaEnd)
1953                 panic("pmap_enter: toobig");
1954         if ((va >= UPT_MIN_ADDRESS) && (va < UPT_MAX_ADDRESS)) {
1955                 panic("pmap_enter: invalid to pmap_enter page "
1956                       "table pages (va: %p)", (void *)va);
1957         }
1958 #endif
1959         if (va < UPT_MAX_ADDRESS && pmap == &kernel_pmap) {
1960                 kprintf("Warning: pmap_enter called on UVA with kernel_pmap\n");
1961                 print_backtrace();
1962         }
1963         if (va >= UPT_MAX_ADDRESS && pmap != &kernel_pmap) {
1964                 kprintf("Warning: pmap_enter called on KVA without kernel_pmap\n");
1965                 print_backtrace();
1966         }
1967
1968         /*
1969          * In the case that a page table page is not
1970          * resident, we are creating it here.
1971          */
1972         if (va < UPT_MIN_ADDRESS)
1973                 mpte = pmap_allocpte(pmap, va);
1974         else
1975                 mpte = NULL;
1976
1977         pmap_inval_init(&info);
1978         pte = pmap_pte(pmap, va);
1979
1980         /*
1981          * Page Directory table entry not valid, we need a new PT page
1982          */
1983         if (pte == NULL) {
1984                 panic("pmap_enter: invalid page directory pdir=0x%lx, va=%p\n",
1985                      (long)pmap->pm_pdir[PTDPTDI], (void *)va);
1986         }
1987
1988         pa = VM_PAGE_TO_PHYS(m) & PG_FRAME;
1989         origpte = *(vm_offset_t *)pte;
1990         opa = origpte & PG_FRAME;
1991
1992         if (origpte & PG_PS)
1993                 panic("pmap_enter: attempted pmap_enter on 4MB page");
1994
1995         /*
1996          * Mapping has not changed, must be protection or wiring change.
1997          */
1998         if (origpte && (opa == pa)) {
1999                 /*
2000                  * Wiring change, just update stats. We don't worry about
2001                  * wiring PT pages as they remain resident as long as there
2002                  * are valid mappings in them. Hence, if a user page is wired,
2003                  * the PT page will be also.
2004                  */
2005                 if (wired && ((origpte & PG_W) == 0))
2006                         pmap->pm_stats.wired_count++;
2007                 else if (!wired && (origpte & PG_W))
2008                         pmap->pm_stats.wired_count--;
2009
2010 #if defined(PMAP_DIAGNOSTIC)
2011                 if (pmap_nw_modified((pt_entry_t) origpte)) {
2012                         kprintf("pmap_enter: modified page not "
2013                                 "writable: va: %p, pte: 0x%lx\n",
2014                                 (void *)va, (long )origpte);
2015                 }
2016 #endif
2017
2018                 /*
2019                  * Remove the extra pte reference.  Note that we cannot
2020                  * optimize the RO->RW case because we have adjusted the
2021                  * wiring count above and may need to adjust the wiring
2022                  * bits below.
2023                  */
2024                 if (mpte)
2025                         mpte->hold_count--;
2026
2027                 /*
2028                  * We might be turning off write access to the page,
2029                  * so we go ahead and sense modify status.
2030                  */
2031                 if (origpte & PG_MANAGED) {
2032                         if ((origpte & PG_M) && pmap_track_modified(va)) {
2033                                 vm_page_t om;
2034                                 om = PHYS_TO_VM_PAGE(opa);
2035                                 vm_page_dirty(om);
2036                         }
2037                         pa |= PG_MANAGED;
2038                         KKASSERT(m->flags & PG_MAPPED);
2039                 }
2040                 goto validate;
2041         } 
2042         /*
2043          * Mapping has changed, invalidate old range and fall through to
2044          * handle validating new mapping.
2045          */
2046         if (opa) {
2047                 int err;
2048                 err = pmap_remove_pte(pmap, pte, va, &info);
2049                 if (err)
2050                         panic("pmap_enter: pte vanished, va: %p", (void *)va);
2051         }
2052
2053         /*
2054          * Enter on the PV list if part of our managed memory. Note that we
2055          * raise IPL while manipulating pv_table since pmap_enter can be
2056          * called at interrupt time.
2057          */
2058         if (pmap_initialized && 
2059             (m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2060                 pmap_insert_entry(pmap, va, mpte, m);
2061                 pa |= PG_MANAGED;
2062                 vm_page_flag_set(m, PG_MAPPED);
2063         }
2064
2065         /*
2066          * Increment counters
2067          */
2068         ++pmap->pm_stats.resident_count;
2069         if (wired)
2070                 pmap->pm_stats.wired_count++;
2071
2072 validate:
2073         /*
2074          * Now validate mapping with desired protection/wiring.
2075          */
2076         newpte = (vm_offset_t) (pa | pte_prot(pmap, prot) | PG_V);
2077
2078         if (wired)
2079                 newpte |= PG_W;
2080         if (va < UPT_MIN_ADDRESS)
2081                 newpte |= PG_U;
2082         if (pmap == &kernel_pmap)
2083                 newpte |= pgeflag;
2084
2085         /*
2086          * if the mapping or permission bits are different, we need
2087          * to update the pte.
2088          */
2089         if ((origpte & ~(PG_M|PG_A)) != newpte) {
2090                 pmap_inval_add(&info, pmap, va);
2091                 *pte = newpte | PG_A;
2092                 if (newpte & PG_RW)
2093                         vm_page_flag_set(m, PG_WRITEABLE);
2094         }
2095         KKASSERT((newpte & PG_MANAGED) == 0 || (m->flags & PG_MAPPED));
2096         pmap_inval_flush(&info);
2097 }
2098
2099 /*
2100  * This code works like pmap_enter() but assumes VM_PROT_READ and not-wired.
2101  * This code also assumes that the pmap has no pre-existing entry for this
2102  * VA.
2103  *
2104  * This code currently may only be used on user pmaps, not kernel_pmap.
2105  */
2106 static void
2107 pmap_enter_quick(pmap_t pmap, vm_offset_t va, vm_page_t m)
2108 {
2109         unsigned *pte;
2110         vm_paddr_t pa;
2111         vm_page_t mpte;
2112         unsigned ptepindex;
2113         vm_offset_t ptepa;
2114         pmap_inval_info info;
2115
2116         pmap_inval_init(&info);
2117
2118         if (va < UPT_MAX_ADDRESS && pmap == &kernel_pmap) {
2119                 kprintf("Warning: pmap_enter_quick called on UVA with kernel_pmap\n");
2120                 print_backtrace();
2121         }
2122         if (va >= UPT_MAX_ADDRESS && pmap != &kernel_pmap) {
2123                 kprintf("Warning: pmap_enter_quick called on KVA without kernel_pmap\n");
2124                 print_backtrace();
2125         }
2126
2127         KKASSERT(va < UPT_MIN_ADDRESS); /* assert used on user pmaps only */
2128
2129         /*
2130          * Calculate the page table page (mpte), allocating it if necessary.
2131          *
2132          * A held page table page (mpte), or NULL, is passed onto the
2133          * section following.
2134          */
2135         if (va < UPT_MIN_ADDRESS) {
2136                 /*
2137                  * Calculate pagetable page index
2138                  */
2139                 ptepindex = va >> PDRSHIFT;
2140
2141                 do {
2142                         /*
2143                          * Get the page directory entry
2144                          */
2145                         ptepa = (vm_offset_t) pmap->pm_pdir[ptepindex];
2146
2147                         /*
2148                          * If the page table page is mapped, we just increment
2149                          * the hold count, and activate it.
2150                          */
2151                         if (ptepa) {
2152                                 if (ptepa & PG_PS)
2153                                         panic("pmap_enter_quick: unexpected mapping into 4MB page");
2154                                 if (pmap->pm_ptphint &&
2155                                     (pmap->pm_ptphint->pindex == ptepindex)) {
2156                                         mpte = pmap->pm_ptphint;
2157                                 } else {
2158                                         mpte = pmap_page_lookup( pmap->pm_pteobj, ptepindex);
2159                                         pmap->pm_ptphint = mpte;
2160                                 }
2161                                 if (mpte)
2162                                         mpte->hold_count++;
2163                         } else {
2164                                 mpte = _pmap_allocpte(pmap, ptepindex);
2165                         }
2166                 } while (mpte == NULL);
2167         } else {
2168                 mpte = NULL;
2169                 /* this code path is not yet used */
2170         }
2171
2172         /*
2173          * With a valid (and held) page directory page, we can just use
2174          * vtopte() to get to the pte.  If the pte is already present
2175          * we do not disturb it.
2176          */
2177         pte = (unsigned *)vtopte(va);
2178         if (*pte & PG_V) {
2179                 if (mpte)
2180                         pmap_unwire_pte_hold(pmap, mpte, &info);
2181                 pa = VM_PAGE_TO_PHYS(m);
2182                 KKASSERT(((*pte ^ pa) & PG_FRAME) == 0);
2183                 return;
2184         }
2185
2186         /*
2187          * Enter on the PV list if part of our managed memory
2188          */
2189         if ((m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) {
2190                 pmap_insert_entry(pmap, va, mpte, m);
2191                 vm_page_flag_set(m, PG_MAPPED);
2192         }
2193
2194         /*
2195          * Increment counters
2196          */
2197         ++pmap->pm_stats.resident_count;
2198
2199         pa = VM_PAGE_TO_PHYS(m);
2200
2201         /*
2202          * Now validate mapping with RO protection
2203          */
2204         if (m->flags & (PG_FICTITIOUS|PG_UNMANAGED))
2205                 *pte = pa | PG_V | PG_U;
2206         else
2207                 *pte = pa | PG_V | PG_U | PG_MANAGED;
2208 /*      pmap_inval_add(&info, pmap, va); shouldn't be needed inval->valid */
2209         pmap_inval_flush(&info);
2210 }
2211
2212 /*
2213  * Make a temporary mapping for a physical address.  This is only intended
2214  * to be used for panic dumps.
2215  */
2216 void *
2217 pmap_kenter_temporary(vm_paddr_t pa, int i)
2218 {
2219         pmap_kenter((vm_offset_t)crashdumpmap + (i * PAGE_SIZE), pa);
2220         return ((void *)crashdumpmap);
2221 }
2222
2223 #define MAX_INIT_PT (96)
2224
2225 /*
2226  * This routine preloads the ptes for a given object into the specified pmap.
2227  * This eliminates the blast of soft faults on process startup and
2228  * immediately after an mmap.
2229  */
2230 static int pmap_object_init_pt_callback(vm_page_t p, void *data);
2231
2232 void
2233 pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, vm_prot_t prot,
2234                     vm_object_t object, vm_pindex_t pindex, 
2235                     vm_size_t size, int limit)
2236 {
2237         struct rb_vm_page_scan_info info;
2238         struct lwp *lp;
2239         int psize;
2240
2241         /*
2242          * We can't preinit if read access isn't set or there is no pmap
2243          * or object.
2244          */
2245         if ((prot & VM_PROT_READ) == 0 || pmap == NULL || object == NULL)
2246                 return;
2247
2248         /*
2249          * We can't preinit if the pmap is not the current pmap
2250          */
2251         lp = curthread->td_lwp;
2252         if (lp == NULL || pmap != vmspace_pmap(lp->lwp_vmspace))
2253                 return;
2254
2255         psize = i386_btop(size);
2256
2257         if ((object->type != OBJT_VNODE) ||
2258                 ((limit & MAP_PREFAULT_PARTIAL) && (psize > MAX_INIT_PT) &&
2259                         (object->resident_page_count > MAX_INIT_PT))) {
2260                 return;
2261         }
2262
2263         if (psize + pindex > object->size) {
2264                 if (object->size < pindex)
2265                         return;           
2266                 psize = object->size - pindex;
2267         }
2268
2269         if (psize == 0)
2270                 return;
2271
2272         /*
2273          * Use a red-black scan to traverse the requested range and load
2274          * any valid pages found into the pmap.
2275          *
2276          * We cannot safely scan the object's memq unless we are in a
2277          * critical section since interrupts can remove pages from objects.
2278          */
2279         info.start_pindex = pindex;
2280         info.end_pindex = pindex + psize - 1;
2281         info.limit = limit;
2282         info.mpte = NULL;
2283         info.addr = addr;
2284         info.pmap = pmap;
2285
2286         crit_enter();
2287         vm_page_rb_tree_RB_SCAN(&object->rb_memq, rb_vm_page_scancmp,
2288                                 pmap_object_init_pt_callback, &info);
2289         crit_exit();
2290 }
2291
2292 static
2293 int
2294 pmap_object_init_pt_callback(vm_page_t p, void *data)
2295 {
2296         struct rb_vm_page_scan_info *info = data;
2297         vm_pindex_t rel_index;
2298         /*
2299          * don't allow an madvise to blow away our really
2300          * free pages allocating pv entries.
2301          */
2302         if ((info->limit & MAP_PREFAULT_MADVISE) &&
2303                 vmstats.v_free_count < vmstats.v_free_reserved) {
2304                     return(-1);
2305         }
2306         if (((p->valid & VM_PAGE_BITS_ALL) == VM_PAGE_BITS_ALL) &&
2307             (p->busy == 0) && (p->flags & (PG_BUSY | PG_FICTITIOUS)) == 0) {
2308                 if ((p->queue - p->pc) == PQ_CACHE)
2309                         vm_page_deactivate(p);
2310                 vm_page_busy(p);
2311                 rel_index = p->pindex - info->start_pindex;
2312                 pmap_enter_quick(info->pmap,
2313                                  info->addr + i386_ptob(rel_index), p);
2314                 vm_page_wakeup(p);
2315         }
2316         return(0);
2317 }
2318
2319 /*
2320  * pmap_prefault provides a quick way of clustering pagefaults into a
2321  * processes address space.  It is a "cousin" of pmap_object_init_pt, 
2322  * except it runs at page fault time instead of mmap time.
2323  */
2324 #define PFBAK 4
2325 #define PFFOR 4
2326 #define PAGEORDER_SIZE (PFBAK+PFFOR)
2327
2328 static int pmap_prefault_pageorder[] = {
2329         -PAGE_SIZE, PAGE_SIZE,
2330         -2 * PAGE_SIZE, 2 * PAGE_SIZE,
2331         -3 * PAGE_SIZE, 3 * PAGE_SIZE,
2332         -4 * PAGE_SIZE, 4 * PAGE_SIZE
2333 };
2334
2335 void
2336 pmap_prefault(pmap_t pmap, vm_offset_t addra, vm_map_entry_t entry)
2337 {
2338         int i;
2339         vm_offset_t starta;
2340         vm_offset_t addr;
2341         vm_pindex_t pindex;
2342         vm_page_t m;
2343         vm_object_t object;
2344         struct lwp *lp;
2345
2346         /*
2347          * We do not currently prefault mappings that use virtual page
2348          * tables.  We do not prefault foreign pmaps.
2349          */
2350         if (entry->maptype == VM_MAPTYPE_VPAGETABLE)
2351                 return;
2352         lp = curthread->td_lwp;
2353         if (lp == NULL || (pmap != vmspace_pmap(lp->lwp_vmspace)))
2354                 return;
2355
2356         object = entry->object.vm_object;
2357
2358         starta = addra - PFBAK * PAGE_SIZE;
2359         if (starta < entry->start)
2360                 starta = entry->start;
2361         else if (starta > addra)
2362                 starta = 0;
2363
2364         /*
2365          * critical section protection is required to maintain the 
2366          * page/object association, interrupts can free pages and remove 
2367          * them from their objects.
2368          */
2369         crit_enter();
2370         for (i = 0; i < PAGEORDER_SIZE; i++) {
2371                 vm_object_t lobject;
2372                 unsigned *pte;
2373
2374                 addr = addra + pmap_prefault_pageorder[i];
2375                 if (addr > addra + (PFFOR * PAGE_SIZE))
2376                         addr = 0;
2377
2378                 if (addr < starta || addr >= entry->end)
2379                         continue;
2380
2381                 if ((*pmap_pde(pmap, addr)) == 0)
2382                         continue;
2383
2384                 pte = (unsigned *) vtopte(addr);
2385                 if (*pte)
2386                         continue;
2387
2388                 pindex = ((addr - entry->start) + entry->offset) >> PAGE_SHIFT;
2389                 lobject = object;
2390
2391                 for (m = vm_page_lookup(lobject, pindex);
2392                     (!m && (lobject->type == OBJT_DEFAULT) &&
2393                      (lobject->backing_object));
2394                     lobject = lobject->backing_object
2395                 ) {
2396                         if (lobject->backing_object_offset & PAGE_MASK)
2397                                 break;
2398                         pindex += (lobject->backing_object_offset >> PAGE_SHIFT);
2399                         m = vm_page_lookup(lobject->backing_object, pindex);
2400                 }
2401
2402                 /*
2403                  * give-up when a page is not in memory
2404                  */
2405                 if (m == NULL)
2406                         break;
2407
2408                 if (((m->valid & VM_PAGE_BITS_ALL) == VM_PAGE_BITS_ALL) &&
2409                         (m->busy == 0) &&
2410                     (m->flags & (PG_BUSY | PG_FICTITIOUS)) == 0) {
2411
2412                         if ((m->queue - m->pc) == PQ_CACHE) {
2413                                 vm_page_deactivate(m);
2414                         }
2415                         vm_page_busy(m);
2416                         pmap_enter_quick(pmap, addr, m);
2417                         vm_page_wakeup(m);
2418                 }
2419         }
2420         crit_exit();
2421 }
2422
2423 /*
2424  *      Routine:        pmap_change_wiring
2425  *      Function:       Change the wiring attribute for a map/virtual-address
2426  *                      pair.
2427  *      In/out conditions:
2428  *                      The mapping must already exist in the pmap.
2429  */
2430 void
2431 pmap_change_wiring(pmap_t pmap, vm_offset_t va, boolean_t wired)
2432 {
2433         unsigned *pte;
2434
2435         if (pmap == NULL)
2436                 return;
2437
2438         pte = pmap_pte(pmap, va);
2439
2440         if (wired && !pmap_pte_w(pte))
2441                 pmap->pm_stats.wired_count++;
2442         else if (!wired && pmap_pte_w(pte))
2443                 pmap->pm_stats.wired_count--;
2444
2445         /*
2446          * Wiring is not a hardware characteristic so there is no need to
2447          * invalidate TLB.  However, in an SMP environment we must use
2448          * a locked bus cycle to update the pte (if we are not using 
2449          * the pmap_inval_*() API that is)... it's ok to do this for simple
2450          * wiring changes.
2451          */
2452 #ifdef SMP
2453         if (wired)
2454                 atomic_set_int(pte, PG_W);
2455         else
2456                 atomic_clear_int(pte, PG_W);
2457 #else
2458         if (wired)
2459                 atomic_set_int_nonlocked(pte, PG_W);
2460         else
2461                 atomic_clear_int_nonlocked(pte, PG_W);
2462 #endif
2463 }
2464
2465
2466
2467 /*
2468  *      Copy the range specified by src_addr/len
2469  *      from the source map to the range dst_addr/len
2470  *      in the destination map.
2471  *
2472  *      This routine is only advisory and need not do anything.
2473  */
2474 void
2475 pmap_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr, 
2476         vm_size_t len, vm_offset_t src_addr)
2477 {
2478         pmap_inval_info info;
2479         vm_offset_t addr;
2480         vm_offset_t end_addr = src_addr + len;
2481         vm_offset_t pdnxt;
2482         unsigned src_frame, dst_frame;
2483         vm_page_t m;
2484
2485         if (dst_addr != src_addr)
2486                 return;
2487         /*
2488          * XXX BUGGY.  Amoung other things srcmpte is assumed to remain
2489          * valid through blocking calls, and that's just not going to
2490          * be the case.
2491          *
2492          * FIXME!
2493          */
2494         return;
2495
2496         src_frame = ((unsigned) src_pmap->pm_pdir[PTDPTDI]) & PG_FRAME;
2497         if (src_frame != (((unsigned) PTDpde) & PG_FRAME)) {
2498                 return;
2499         }
2500
2501         dst_frame = ((unsigned) dst_pmap->pm_pdir[PTDPTDI]) & PG_FRAME;
2502         if (dst_frame != (((unsigned) APTDpde) & PG_FRAME)) {
2503                 APTDpde = (pd_entry_t) (dst_frame | PG_RW | PG_V);
2504                 /* The page directory is not shared between CPUs */
2505                 cpu_invltlb();
2506         }
2507         pmap_inval_init(&info);
2508         pmap_inval_add(&info, dst_pmap, -1);
2509         pmap_inval_add(&info, src_pmap, -1);
2510
2511         /*
2512          * critical section protection is required to maintain the page/object
2513          * association, interrupts can free pages and remove them from 
2514          * their objects.
2515          */
2516         crit_enter();
2517         for (addr = src_addr; addr < end_addr; addr = pdnxt) {
2518                 unsigned *src_pte, *dst_pte;
2519                 vm_page_t dstmpte, srcmpte;
2520                 vm_offset_t srcptepaddr;
2521                 unsigned ptepindex;
2522
2523                 if (addr >= UPT_MIN_ADDRESS)
2524                         panic("pmap_copy: invalid to pmap_copy page tables\n");
2525
2526                 /*
2527                  * Don't let optional prefaulting of pages make us go
2528                  * way below the low water mark of free pages or way
2529                  * above high water mark of used pv entries.
2530                  */
2531                 if (vmstats.v_free_count < vmstats.v_free_reserved ||
2532                     pv_entry_count > pv_entry_high_water)
2533                         break;
2534                 
2535                 pdnxt = ((addr + PAGE_SIZE*NPTEPG) & ~(PAGE_SIZE*NPTEPG - 1));
2536                 ptepindex = addr >> PDRSHIFT;
2537
2538                 srcptepaddr = (vm_offset_t) src_pmap->pm_pdir[ptepindex];
2539                 if (srcptepaddr == 0)
2540                         continue;
2541                         
2542                 if (srcptepaddr & PG_PS) {
2543                         if (dst_pmap->pm_pdir[ptepindex] == 0) {
2544                                 dst_pmap->pm_pdir[ptepindex] = (pd_entry_t) srcptepaddr;
2545                                 dst_pmap->pm_stats.resident_count += NBPDR / PAGE_SIZE;
2546                         }
2547                         continue;
2548                 }
2549
2550                 srcmpte = vm_page_lookup(src_pmap->pm_pteobj, ptepindex);
2551                 if ((srcmpte == NULL) || (srcmpte->hold_count == 0) ||
2552                     (srcmpte->flags & PG_BUSY)) {
2553                         continue;
2554                 }
2555
2556                 if (pdnxt > end_addr)
2557                         pdnxt = end_addr;
2558
2559                 src_pte = (unsigned *) vtopte(addr);
2560                 dst_pte = (unsigned *) avtopte(addr);
2561                 while (addr < pdnxt) {
2562                         unsigned ptetemp;
2563
2564                         ptetemp = *src_pte;
2565                         /*
2566                          * we only virtual copy managed pages
2567                          */
2568                         if ((ptetemp & PG_MANAGED) != 0) {
2569                                 /*
2570                                  * We have to check after allocpte for the
2571                                  * pte still being around...  allocpte can
2572                                  * block.
2573                                  *
2574                                  * pmap_allocpte() can block.  If we lose
2575                                  * our page directory mappings we stop.
2576                                  */
2577                                 dstmpte = pmap_allocpte(dst_pmap, addr);
2578
2579                                 if (src_frame != (((unsigned) PTDpde) & PG_FRAME) ||
2580                                     dst_frame != (((unsigned) APTDpde) & PG_FRAME)
2581                                 ) {
2582                                         kprintf("WARNING: pmap_copy: detected and corrected race\n");
2583                                         pmap_unwire_pte_hold(dst_pmap, dstmpte, &info);
2584                                         goto failed;
2585                                 } else if ((*dst_pte == 0) &&
2586                                            (ptetemp = *src_pte) != 0 &&
2587                                            (ptetemp & PG_MANAGED)) {
2588                                         /*
2589                                          * Clear the modified and
2590                                          * accessed (referenced) bits
2591                                          * during the copy.
2592                                          */
2593                                         m = PHYS_TO_VM_PAGE(ptetemp);
2594                                         *dst_pte = ptetemp & ~(PG_M | PG_A);
2595                                         ++dst_pmap->pm_stats.resident_count;
2596                                         pmap_insert_entry(dst_pmap, addr,
2597                                                 dstmpte, m);
2598                                         KKASSERT(m->flags & PG_MAPPED);
2599                                 } else {
2600                                         kprintf("WARNING: pmap_copy: dst_pte race detected and corrected\n");
2601                                         pmap_unwire_pte_hold(dst_pmap, dstmpte, &info);
2602                                         goto failed;
2603                                 }
2604                                 if (dstmpte->hold_count >= srcmpte->hold_count)
2605                                         break;
2606                         }
2607                         addr += PAGE_SIZE;
2608                         src_pte++;
2609                         dst_pte++;
2610                 }
2611         }
2612 failed:
2613         crit_exit();
2614         pmap_inval_flush(&info);
2615 }       
2616
2617 /*
2618  * pmap_zero_page:
2619  *
2620  *      Zero the specified PA by mapping the page into KVM and clearing its
2621  *      contents.
2622  *
2623  *      This function may be called from an interrupt and no locking is
2624  *      required.
2625  */
2626 void
2627 pmap_zero_page(vm_paddr_t phys)
2628 {
2629         struct mdglobaldata *gd = mdcpu;
2630
2631         crit_enter();
2632         if (*(int *)gd->gd_CMAP3)
2633                 panic("pmap_zero_page: CMAP3 busy");
2634         *(int *)gd->gd_CMAP3 =
2635                     PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2636         cpu_invlpg(gd->gd_CADDR3);
2637
2638 #if defined(I686_CPU)
2639         if (cpu_class == CPUCLASS_686)
2640                 i686_pagezero(gd->gd_CADDR3);
2641         else
2642 #endif
2643                 bzero(gd->gd_CADDR3, PAGE_SIZE);
2644         *(int *) gd->gd_CMAP3 = 0;
2645         crit_exit();
2646 }
2647
2648 /*
2649  * pmap_page_assertzero:
2650  *
2651  *      Assert that a page is empty, panic if it isn't.
2652  */
2653 void
2654 pmap_page_assertzero(vm_paddr_t phys)
2655 {
2656         struct mdglobaldata *gd = mdcpu;
2657         int i;
2658
2659         crit_enter();
2660         if (*(int *)gd->gd_CMAP3)
2661                 panic("pmap_zero_page: CMAP3 busy");
2662         *(int *)gd->gd_CMAP3 =
2663                     PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2664         cpu_invlpg(gd->gd_CADDR3);
2665         for (i = 0; i < PAGE_SIZE; i += 4) {
2666             if (*(int *)((char *)gd->gd_CADDR3 + i) != 0) {
2667                 panic("pmap_page_assertzero() @ %p not zero!\n",
2668                     (void *)gd->gd_CADDR3);
2669             }
2670         }
2671         *(int *) gd->gd_CMAP3 = 0;
2672         crit_exit();
2673 }
2674
2675 /*
2676  * pmap_zero_page:
2677  *
2678  *      Zero part of a physical page by mapping it into memory and clearing
2679  *      its contents with bzero.
2680  *
2681  *      off and size may not cover an area beyond a single hardware page.
2682  */
2683 void
2684 pmap_zero_page_area(vm_paddr_t phys, int off, int size)
2685 {
2686         struct mdglobaldata *gd = mdcpu;
2687
2688         crit_enter();
2689         if (*(int *) gd->gd_CMAP3)
2690                 panic("pmap_zero_page: CMAP3 busy");
2691         *(int *) gd->gd_CMAP3 = PG_V | PG_RW | (phys & PG_FRAME) | PG_A | PG_M;
2692         cpu_invlpg(gd->gd_CADDR3);
2693
2694 #if defined(I686_CPU)
2695         if (cpu_class == CPUCLASS_686 && off == 0 && size == PAGE_SIZE)
2696                 i686_pagezero(gd->gd_CADDR3);
2697         else
2698 #endif
2699                 bzero((char *)gd->gd_CADDR3 + off, size);
2700         *(int *) gd->gd_CMAP3 = 0;
2701         crit_exit();
2702 }
2703
2704 /*
2705  * pmap_copy_page:
2706  *
2707  *      Copy the physical page from the source PA to the target PA.
2708  *      This function may be called from an interrupt.  No locking
2709  *      is required.
2710  */
2711 void
2712 pmap_copy_page(vm_paddr_t src, vm_paddr_t dst)
2713 {
2714         struct mdglobaldata *gd = mdcpu;
2715
2716         crit_enter();
2717         if (*(int *) gd->gd_CMAP1)
2718                 panic("pmap_copy_page: CMAP1 busy");
2719         if (*(int *) gd->gd_CMAP2)
2720                 panic("pmap_copy_page: CMAP2 busy");
2721
2722         *(int *) gd->gd_CMAP1 = PG_V | (src & PG_FRAME) | PG_A;
2723         *(int *) gd->gd_CMAP2 = PG_V | PG_RW | (dst & PG_FRAME) | PG_A | PG_M;
2724
2725         cpu_invlpg(gd->gd_CADDR1);
2726         cpu_invlpg(gd->gd_CADDR2);
2727
2728         bcopy(gd->gd_CADDR1, gd->gd_CADDR2, PAGE_SIZE);
2729
2730         *(int *) gd->gd_CMAP1 = 0;
2731         *(int *) gd->gd_CMAP2 = 0;
2732         crit_exit();
2733 }
2734
2735 /*
2736  * pmap_copy_page_frag:
2737  *
2738  *      Copy the physical page from the source PA to the target PA.
2739  *      This function may be called from an interrupt.  No locking
2740  *      is required.
2741  */
2742 void
2743 pmap_copy_page_frag(vm_paddr_t src, vm_paddr_t dst, size_t bytes)
2744 {
2745         struct mdglobaldata *gd = mdcpu;
2746
2747         crit_enter();
2748         if (*(int *) gd->gd_CMAP1)
2749                 panic("pmap_copy_page: CMAP1 busy");
2750         if (*(int *) gd->gd_CMAP2)
2751                 panic("pmap_copy_page: CMAP2 busy");
2752
2753         *(int *) gd->gd_CMAP1 = PG_V | (src & PG_FRAME) | PG_A;
2754         *(int *) gd->gd_CMAP2 = PG_V | PG_RW | (dst & PG_FRAME) | PG_A | PG_M;
2755
2756         cpu_invlpg(gd->gd_CADDR1);
2757         cpu_invlpg(gd->gd_CADDR2);
2758
2759         bcopy((char *)gd->gd_CADDR1 + (src & PAGE_MASK),
2760               (char *)gd->gd_CADDR2 + (dst & PAGE_MASK),
2761               bytes);
2762
2763         *(int *) gd->gd_CMAP1 = 0;
2764         *(int *) gd->gd_CMAP2 = 0;
2765         crit_exit();
2766 }
2767
2768 /*
2769  * Returns true if the pmap's pv is one of the first
2770  * 16 pvs linked to from this page.  This count may
2771  * be changed upwards or downwards in the future; it
2772  * is only necessary that true be returned for a small
2773  * subset of pmaps for proper page aging.
2774  */
2775 boolean_t
2776 pmap_page_exists_quick(pmap_t pmap, vm_page_t m)
2777 {
2778         pv_entry_t pv;
2779         int loops = 0;
2780
2781         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2782                 return FALSE;
2783
2784         crit_enter();
2785
2786         TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
2787                 if (pv->pv_pmap == pmap) {
2788                         crit_exit();
2789                         return TRUE;
2790                 }
2791                 loops++;
2792                 if (loops >= 16)
2793                         break;
2794         }
2795         crit_exit();
2796         return (FALSE);
2797 }
2798
2799 /*
2800  * Remove all pages from specified address space
2801  * this aids process exit speeds.  Also, this code
2802  * is special cased for current process only, but
2803  * can have the more generic (and slightly slower)
2804  * mode enabled.  This is much faster than pmap_remove
2805  * in the case of running down an entire address space.
2806  */
2807 void
2808 pmap_remove_pages(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
2809 {
2810         struct lwp *lp;
2811         unsigned *pte, tpte;
2812         pv_entry_t pv, npv;
2813         vm_page_t m;
2814         pmap_inval_info info;
2815         int iscurrentpmap;
2816         int32_t save_generation;
2817
2818         lp = curthread->td_lwp;
2819         if (lp && pmap == vmspace_pmap(lp->lwp_vmspace))
2820                 iscurrentpmap = 1;
2821         else
2822                 iscurrentpmap = 0;
2823
2824         pmap_inval_init(&info);
2825         crit_enter();
2826         for (pv = TAILQ_FIRST(&pmap->pm_pvlist); pv; pv = npv) {
2827                 if (pv->pv_va >= eva || pv->pv_va < sva) {
2828                         npv = TAILQ_NEXT(pv, pv_plist);
2829                         continue;
2830                 }
2831
2832                 KKASSERT(pmap == pv->pv_pmap);
2833
2834                 if (iscurrentpmap)
2835                         pte = (unsigned *)vtopte(pv->pv_va);
2836                 else
2837                         pte = pmap_pte_quick(pmap, pv->pv_va);
2838                 if (pmap->pm_active)
2839                         pmap_inval_add(&info, pmap, pv->pv_va);
2840
2841                 /*
2842                  * We cannot remove wired pages from a process' mapping
2843                  * at this time
2844                  */
2845                 if (*pte & PG_W) {
2846                         npv = TAILQ_NEXT(pv, pv_plist);
2847                         continue;
2848                 }
2849                 tpte = loadandclear(pte);
2850
2851                 m = PHYS_TO_VM_PAGE(tpte);
2852
2853                 KASSERT(m < &vm_page_array[vm_page_array_size],
2854                         ("pmap_remove_pages: bad tpte %x", tpte));
2855
2856                 KKASSERT(pmap->pm_stats.resident_count > 0);
2857                 --pmap->pm_stats.resident_count;
2858
2859                 /*
2860                  * Update the vm_page_t clean and reference bits.
2861                  */
2862                 if (tpte & PG_M) {
2863                         vm_page_dirty(m);
2864                 }
2865
2866                 npv = TAILQ_NEXT(pv, pv_plist);
2867                 TAILQ_REMOVE(&pmap->pm_pvlist, pv, pv_plist);
2868                 save_generation = ++pmap->pm_generation;
2869
2870                 m->md.pv_list_count--;
2871                 TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
2872                 if (TAILQ_EMPTY(&m->md.pv_list))
2873                         vm_page_flag_clear(m, PG_MAPPED | PG_WRITEABLE);
2874
2875                 pmap_unuse_pt(pmap, pv->pv_va, pv->pv_ptem, &info);
2876                 free_pv_entry(pv);
2877
2878                 /*
2879                  * Restart the scan if we blocked during the unuse or free
2880                  * calls and other removals were made.
2881                  */
2882                 if (save_generation != pmap->pm_generation) {
2883                         kprintf("Warning: pmap_remove_pages race-A avoided\n");
2884                         pv = TAILQ_FIRST(&pmap->pm_pvlist);
2885                 }
2886         }
2887         pmap_inval_flush(&info);
2888         crit_exit();
2889 }
2890
2891 /*
2892  * pmap_testbit tests bits in pte's
2893  * note that the testbit/clearbit routines are inline,
2894  * and a lot of things compile-time evaluate.
2895  */
2896 static boolean_t
2897 pmap_testbit(vm_page_t m, int bit)
2898 {
2899         pv_entry_t pv;
2900         unsigned *pte;
2901
2902         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2903                 return FALSE;
2904
2905         if (TAILQ_FIRST(&m->md.pv_list) == NULL)
2906                 return FALSE;
2907
2908         crit_enter();
2909
2910         TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
2911                 /*
2912                  * if the bit being tested is the modified bit, then
2913                  * mark clean_map and ptes as never
2914                  * modified.
2915                  */
2916                 if (bit & (PG_A|PG_M)) {
2917                         if (!pmap_track_modified(pv->pv_va))
2918                                 continue;
2919                 }
2920
2921 #if defined(PMAP_DIAGNOSTIC)
2922                 if (!pv->pv_pmap) {
2923                         kprintf("Null pmap (tb) at va: %p\n",
2924                                 (void *)pv->pv_va);
2925                         continue;
2926                 }
2927 #endif
2928                 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
2929                 if (*pte & bit) {
2930                         crit_exit();
2931                         return TRUE;
2932                 }
2933         }
2934         crit_exit();
2935         return (FALSE);
2936 }
2937
2938 /*
2939  * this routine is used to modify bits in ptes
2940  */
2941 static __inline void
2942 pmap_clearbit(vm_page_t m, int bit)
2943 {
2944         struct pmap_inval_info info;
2945         pv_entry_t pv;
2946         unsigned *pte;
2947         unsigned pbits;
2948
2949         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
2950                 return;
2951
2952         pmap_inval_init(&info);
2953         crit_enter();
2954
2955         /*
2956          * Loop over all current mappings setting/clearing as appropos If
2957          * setting RO do we need to clear the VAC?
2958          */
2959         TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
2960                 /*
2961                  * don't write protect pager mappings
2962                  */
2963                 if (bit == PG_RW) {
2964                         if (!pmap_track_modified(pv->pv_va))
2965                                 continue;
2966                 }
2967
2968 #if defined(PMAP_DIAGNOSTIC)
2969                 if (!pv->pv_pmap) {
2970                         kprintf("Null pmap (cb) at va: %p\n",
2971                                 (void *)pv->pv_va);
2972                         continue;
2973                 }
2974 #endif
2975
2976                 /*
2977                  * Careful here.  We can use a locked bus instruction to
2978                  * clear PG_A or PG_M safely but we need to synchronize
2979                  * with the target cpus when we mess with PG_RW.
2980                  *
2981                  * We do not have to force synchronization when clearing
2982                  * PG_M even for PTEs generated via virtual memory maps,
2983                  * because the virtual kernel will invalidate the pmap
2984                  * entry when/if it needs to resynchronize the Modify bit.
2985                  */
2986                 if (bit & PG_RW)
2987                         pmap_inval_add(&info, pv->pv_pmap, pv->pv_va);
2988                 pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
2989 again:
2990                 pbits = *pte;
2991                 if (pbits & bit) {
2992                         if (bit == PG_RW) {
2993                                 if (pbits & PG_M) {
2994                                         vm_page_dirty(m);
2995                                         atomic_clear_int(pte, PG_M|PG_RW);
2996                                 } else {
2997                                         /*
2998                                          * The cpu may be trying to set PG_M
2999                                          * simultaniously with our clearing
3000                                          * of PG_RW.
3001                                          */
3002                                         if (!atomic_cmpset_int(pte, pbits,
3003                                                                pbits & ~PG_RW))
3004                                                 goto again;
3005                                 }
3006                         } else if (bit == PG_M) {
3007                                 /*
3008                                  * We could also clear PG_RW here to force
3009                                  * a fault on write to redetect PG_M for
3010                                  * virtual kernels, but it isn't necessary
3011                                  * since virtual kernels invalidate the pte 
3012                                  * when they clear the VPTE_M bit in their
3013                                  * virtual page tables.
3014                                  */
3015                                 atomic_clear_int(pte, PG_M);
3016                         } else {
3017                                 atomic_clear_int(pte, bit);
3018                         }
3019                 }
3020         }
3021         pmap_inval_flush(&info);
3022         crit_exit();
3023 }
3024
3025 /*
3026  *      pmap_page_protect:
3027  *
3028  *      Lower the permission for all mappings to a given page.
3029  */
3030 void
3031 pmap_page_protect(vm_page_t m, vm_prot_t prot)
3032 {
3033         if ((prot & VM_PROT_WRITE) == 0) {
3034                 if (prot & (VM_PROT_READ | VM_PROT_EXECUTE)) {
3035                         pmap_clearbit(m, PG_RW);
3036                         vm_page_flag_clear(m, PG_WRITEABLE);
3037                 } else {
3038                         pmap_remove_all(m);
3039                 }
3040         }
3041 }
3042
3043 vm_paddr_t
3044 pmap_phys_address(vm_pindex_t ppn)
3045 {
3046         return (i386_ptob(ppn));
3047 }
3048
3049 /*
3050  *      pmap_ts_referenced:
3051  *
3052  *      Return a count of reference bits for a page, clearing those bits.
3053  *      It is not necessary for every reference bit to be cleared, but it
3054  *      is necessary that 0 only be returned when there are truly no
3055  *      reference bits set.
3056  *
3057  *      XXX: The exact number of bits to check and clear is a matter that
3058  *      should be tested and standardized at some point in the future for
3059  *      optimal aging of shared pages.
3060  */
3061 int
3062 pmap_ts_referenced(vm_page_t m)
3063 {
3064         pv_entry_t pv, pvf, pvn;
3065         unsigned *pte;
3066         int rtval = 0;
3067
3068         if (!pmap_initialized || (m->flags & PG_FICTITIOUS))
3069                 return (rtval);
3070
3071         crit_enter();
3072
3073         if ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
3074
3075                 pvf = pv;
3076
3077                 do {
3078                         pvn = TAILQ_NEXT(pv, pv_list);
3079
3080                         TAILQ_REMOVE(&m->md.pv_list, pv, pv_list);
3081
3082                         TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list);
3083
3084                         if (!pmap_track_modified(pv->pv_va))
3085                                 continue;
3086
3087                         pte = pmap_pte_quick(pv->pv_pmap, pv->pv_va);
3088
3089                         if (pte && (*pte & PG_A)) {
3090 #ifdef SMP
3091                                 atomic_clear_int(pte, PG_A);
3092 #else
3093                                 atomic_clear_int_nonlocked(pte, PG_A);
3094 #endif
3095                                 rtval++;
3096                                 if (rtval > 4) {
3097                                         break;
3098                                 }
3099                         }
3100                 } while ((pv = pvn) != NULL && pv != pvf);
3101         }
3102         crit_exit();
3103
3104         return (rtval);
3105 }
3106
3107 /*
3108  *      pmap_is_modified:
3109  *
3110  *      Return whether or not the specified physical page was modified
3111  *      in any physical maps.
3112  */
3113 boolean_t
3114 pmap_is_modified(vm_page_t m)
3115 {
3116         return pmap_testbit(m, PG_M);
3117 }
3118
3119 /*
3120  *      Clear the modify bits on the specified physical page.
3121  */
3122 void
3123 pmap_clear_modify(vm_page_t m)
3124 {
3125         pmap_clearbit(m, PG_M);
3126 }
3127
3128 /*
3129  *      pmap_clear_reference:
3130  *
3131  *      Clear the reference bit on the specified physical page.
3132  */
3133 void
3134 pmap_clear_reference(vm_page_t m)
3135 {
3136         pmap_clearbit(m, PG_A);
3137 }
3138
3139 /*
3140  * Miscellaneous support routines follow
3141  */
3142
3143 static void
3144 i386_protection_init(void)
3145 {
3146         int *kp, prot;
3147
3148         kp = protection_codes;
3149         for (prot = 0; prot < 8; prot++) {
3150                 switch (prot) {
3151                 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_NONE:
3152                         /*
3153                          * Read access is also 0. There isn't any execute bit,
3154                          * so just make it readable.
3155                          */
3156                 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_NONE:
3157                 case VM_PROT_READ | VM_PROT_NONE | VM_PROT_EXECUTE:
3158                 case VM_PROT_NONE | VM_PROT_NONE | VM_PROT_EXECUTE:
3159                         *kp++ = 0;
3160                         break;
3161                 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_NONE:
3162                 case VM_PROT_NONE | VM_PROT_WRITE | VM_PROT_EXECUTE:
3163                 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_NONE:
3164                 case VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE:
3165                         *kp++ = PG_RW;
3166                         break;
3167                 }
3168         }
3169 }
3170
3171 /*
3172  * Map a set of physical memory pages into the kernel virtual
3173  * address space. Return a pointer to where it is mapped. This
3174  * routine is intended to be used for mapping device memory,
3175  * NOT real memory.
3176  *
3177  * NOTE: we can't use pgeflag unless we invalidate the pages one at
3178  * a time.
3179  */
3180 void *
3181 pmap_mapdev(vm_paddr_t pa, vm_size_t size)
3182 {
3183         vm_offset_t va, tmpva, offset;
3184         unsigned *pte;
3185
3186         offset = pa & PAGE_MASK;
3187         size = roundup(offset + size, PAGE_SIZE);
3188
3189         va = kmem_alloc_nofault(&kernel_map, size);
3190         if (!va)
3191                 panic("pmap_mapdev: Couldn't alloc kernel virtual memory");
3192
3193         pa = pa & PG_FRAME;
3194         for (tmpva = va; size > 0;) {
3195                 pte = (unsigned *)vtopte(tmpva);
3196                 *pte = pa | PG_RW | PG_V; /* | pgeflag; */
3197                 size -= PAGE_SIZE;
3198                 tmpva += PAGE_SIZE;
3199                 pa += PAGE_SIZE;
3200         }
3201         cpu_invltlb();
3202         smp_invltlb();
3203
3204         return ((void *)(va + offset));
3205 }
3206
3207 void
3208 pmap_unmapdev(vm_offset_t va, vm_size_t size)
3209 {
3210         vm_offset_t base, offset;
3211
3212         base = va & PG_FRAME;
3213         offset = va & PAGE_MASK;
3214         size = roundup(offset + size, PAGE_SIZE);
3215         pmap_qremove(va, size >> PAGE_SHIFT);
3216         kmem_free(&kernel_map, base, size);
3217 }
3218
3219 /*
3220  * perform the pmap work for mincore
3221  */
3222 int
3223 pmap_mincore(pmap_t pmap, vm_offset_t addr)
3224 {
3225         unsigned *ptep, pte;
3226         vm_page_t m;
3227         int val = 0;
3228         
3229         ptep = pmap_pte(pmap, addr);
3230         if (ptep == 0) {
3231                 return 0;
3232         }
3233
3234         if ((pte = *ptep) != 0) {
3235                 vm_offset_t pa;
3236
3237                 val = MINCORE_INCORE;
3238                 if ((pte & PG_MANAGED) == 0)
3239                         return val;
3240
3241                 pa = pte & PG_FRAME;
3242
3243                 m = PHYS_TO_VM_PAGE(pa);
3244
3245                 /*
3246                  * Modified by us
3247                  */
3248                 if (pte & PG_M)
3249                         val |= MINCORE_MODIFIED|MINCORE_MODIFIED_OTHER;
3250                 /*
3251                  * Modified by someone
3252                  */
3253                 else if (m->dirty || pmap_is_modified(m))
3254                         val |= MINCORE_MODIFIED_OTHER;
3255                 /*
3256                  * Referenced by us
3257                  */
3258                 if (pte & PG_A)
3259                         val |= MINCORE_REFERENCED|MINCORE_REFERENCED_OTHER;
3260
3261                 /*
3262                  * Referenced by someone
3263                  */
3264                 else if ((m->flags & PG_REFERENCED) || pmap_ts_referenced(m)) {
3265                         val |= MINCORE_REFERENCED_OTHER;
3266                         vm_page_flag_set(m, PG_REFERENCED);
3267                 }
3268         } 
3269         return val;
3270 }
3271
3272 /*
3273  * Replace p->p_vmspace with a new one.  If adjrefs is non-zero the new
3274  * vmspace will be ref'd and the old one will be deref'd.
3275  *
3276  * The vmspace for all lwps associated with the process will be adjusted
3277  * and cr3 will be reloaded if any lwp is the current lwp.
3278  */
3279 void
3280 pmap_replacevm(struct proc *p, struct vmspace *newvm, int adjrefs)
3281 {
3282         struct vmspace *oldvm;
3283         struct lwp *lp;
3284
3285         crit_enter();
3286         oldvm = p->p_vmspace;
3287         if (oldvm != newvm) {
3288                 p->p_vmspace = newvm;
3289                 KKASSERT(p->p_nthreads == 1);
3290                 lp = RB_ROOT(&p->p_lwp_tree);
3291                 pmap_setlwpvm(lp, newvm);
3292                 if (adjrefs) {
3293                         sysref_get(&newvm->vm_sysref);
3294                         sysref_put(&oldvm->vm_sysref);
3295                 }
3296         }
3297         crit_exit();
3298 }
3299
3300 /*
3301  * Set the vmspace for a LWP.  The vmspace is almost universally set the
3302  * same as the process vmspace, but virtual kernels need to swap out contexts
3303  * on a per-lwp basis.
3304  */
3305 void
3306 pmap_setlwpvm(struct lwp *lp, struct vmspace *newvm)
3307 {
3308         struct vmspace *oldvm;
3309         struct pmap *pmap;
3310
3311         crit_enter();
3312         oldvm = lp->lwp_vmspace;
3313
3314         if (oldvm != newvm) {
3315                 lp->lwp_vmspace = newvm;
3316                 if (curthread->td_lwp == lp) {
3317                         pmap = vmspace_pmap(newvm);
3318 #if defined(SMP)
3319                         atomic_set_int(&pmap->pm_active, 1 << mycpu->gd_cpuid);
3320 #else
3321                         pmap->pm_active |= 1;
3322 #endif
3323 #if defined(SWTCH_OPTIM_STATS)
3324                         tlb_flush_count++;
3325 #endif
3326                         curthread->td_pcb->pcb_cr3 = vtophys(pmap->pm_pdir);
3327                         load_cr3(curthread->td_pcb->pcb_cr3);
3328                         pmap = vmspace_pmap(oldvm);
3329 #if defined(SMP)
3330                         atomic_clear_int(&pmap->pm_active,
3331                                           1 << mycpu->gd_cpuid);
3332 #else
3333                         pmap->pm_active &= ~1;
3334 #endif
3335                 }
3336         }
3337         crit_exit();
3338 }
3339
3340 vm_offset_t
3341 pmap_addr_hint(vm_object_t obj, vm_offset_t addr, vm_size_t size)
3342 {
3343
3344         if ((obj == NULL) || (size < NBPDR) || (obj->type != OBJT_DEVICE)) {
3345                 return addr;
3346         }
3347
3348         addr = (addr + (NBPDR - 1)) & ~(NBPDR - 1);
3349         return addr;
3350 }
3351
3352 int
3353 pmap_get_pgeflag(void)
3354 {
3355         return pgeflag;
3356 }
3357
3358 #if defined(DEBUG)
3359
3360 static void     pads (pmap_t pm);
3361 void            pmap_pvdump (vm_paddr_t pa);
3362
3363 /* print address space of pmap*/
3364 static void
3365 pads(pmap_t pm)
3366 {
3367         unsigned va, i, j;
3368         unsigned *ptep;
3369
3370         if (pm == &kernel_pmap)
3371                 return;
3372         crit_enter();
3373         for (i = 0; i < 1024; i++) {
3374                 if (pm->pm_pdir[i]) {
3375                         for (j = 0; j < 1024; j++) {
3376                                 va = (i << PDRSHIFT) + (j << PAGE_SHIFT);
3377                                 if (pm == &kernel_pmap && va < KERNBASE)
3378                                         continue;
3379                                 if (pm != &kernel_pmap && va > UPT_MAX_ADDRESS)
3380                                         continue;
3381                                 ptep = pmap_pte_quick(pm, va);
3382                                 if (pmap_pte_v(ptep))
3383                                         kprintf("%x:%x ", va, *(int *) ptep);
3384                         };
3385                 }
3386         }
3387         crit_exit();
3388
3389 }
3390
3391 void
3392 pmap_pvdump(vm_paddr_t pa)
3393 {
3394         pv_entry_t pv;
3395         vm_page_t m;
3396
3397         kprintf("pa %08llx", (long long)pa);
3398         m = PHYS_TO_VM_PAGE(pa);
3399         TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) {
3400 #ifdef used_to_be
3401                 kprintf(" -> pmap %p, va %p, flags %x",
3402                     (void *)pv->pv_pmap, (long)pv->pv_va, pv->pv_flags);
3403 #endif
3404                 kprintf(" -> pmap %p, va %p",
3405                         (void *)pv->pv_pmap, (void *)pv->pv_va);
3406                 pads(pv->pv_pmap);
3407         }
3408         kprintf(" ");
3409 }
3410 #endif