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