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