]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/amd64/amd64/pmap.c
Restore an optimization that was temporary disabled by r324665.
[FreeBSD/FreeBSD.git] / sys / amd64 / amd64 / 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  * Copyright (c) 2003 Peter Wemm
9  * All rights reserved.
10  * Copyright (c) 2005-2010 Alan L. Cox <alc@cs.rice.edu>
11  * All rights reserved.
12  *
13  * This code is derived from software contributed to Berkeley by
14  * the Systems Programming Group of the University of Utah Computer
15  * Science Department and William Jolitz of UUNET Technologies Inc.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions
19  * are met:
20  * 1. Redistributions of source code must retain the above copyright
21  *    notice, this list of conditions and the following disclaimer.
22  * 2. Redistributions in binary form must reproduce the above copyright
23  *    notice, this list of conditions and the following disclaimer in the
24  *    documentation and/or other materials provided with the distribution.
25  * 3. All advertising materials mentioning features or use of this software
26  *    must display the following acknowledgement:
27  *      This product includes software developed by the University of
28  *      California, Berkeley and its contributors.
29  * 4. Neither the name of the University nor the names of its contributors
30  *    may be used to endorse or promote products derived from this software
31  *    without specific prior written permission.
32  *
33  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
34  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
35  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
36  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
37  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
38  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
39  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
40  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
41  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
42  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43  * SUCH DAMAGE.
44  *
45  *      from:   @(#)pmap.c      7.7 (Berkeley)  5/12/91
46  */
47 /*-
48  * Copyright (c) 2003 Networks Associates Technology, Inc.
49  * All rights reserved.
50  *
51  * This software was developed for the FreeBSD Project by Jake Burkholder,
52  * Safeport Network Services, and Network Associates Laboratories, the
53  * Security Research Division of Network Associates, Inc. under
54  * DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA
55  * CHATS research program.
56  *
57  * Redistribution and use in source and binary forms, with or without
58  * modification, are permitted provided that the following conditions
59  * are met:
60  * 1. Redistributions of source code must retain the above copyright
61  *    notice, this list of conditions and the following disclaimer.
62  * 2. Redistributions in binary form must reproduce the above copyright
63  *    notice, this list of conditions and the following disclaimer in the
64  *    documentation and/or other materials provided with the distribution.
65  *
66  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
67  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
68  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
69  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
70  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
71  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
72  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
73  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
74  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
75  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
76  * SUCH DAMAGE.
77  */
78
79 #define AMD64_NPT_AWARE
80
81 #include <sys/cdefs.h>
82 __FBSDID("$FreeBSD$");
83
84 /*
85  *      Manages physical address maps.
86  *
87  *      Since the information managed by this module is
88  *      also stored by the logical address mapping module,
89  *      this module may throw away valid virtual-to-physical
90  *      mappings at almost any time.  However, invalidations
91  *      of virtual-to-physical mappings must be done as
92  *      requested.
93  *
94  *      In order to cope with hardware architectures which
95  *      make virtual-to-physical map invalidates expensive,
96  *      this module may delay invalidate or reduced protection
97  *      operations until such time as they are actually
98  *      necessary.  This module is given full information as
99  *      to which processors are currently using which maps,
100  *      and to when physical maps must be made correct.
101  */
102
103 #include "opt_pmap.h"
104 #include "opt_vm.h"
105
106 #include <sys/param.h>
107 #include <sys/bitstring.h>
108 #include <sys/bus.h>
109 #include <sys/systm.h>
110 #include <sys/kernel.h>
111 #include <sys/ktr.h>
112 #include <sys/lock.h>
113 #include <sys/malloc.h>
114 #include <sys/mman.h>
115 #include <sys/mutex.h>
116 #include <sys/proc.h>
117 #include <sys/rwlock.h>
118 #include <sys/sx.h>
119 #include <sys/turnstile.h>
120 #include <sys/vmem.h>
121 #include <sys/vmmeter.h>
122 #include <sys/sched.h>
123 #include <sys/sysctl.h>
124 #include <sys/smp.h>
125
126 #include <vm/vm.h>
127 #include <vm/vm_param.h>
128 #include <vm/vm_kern.h>
129 #include <vm/vm_page.h>
130 #include <vm/vm_map.h>
131 #include <vm/vm_object.h>
132 #include <vm/vm_extern.h>
133 #include <vm/vm_pageout.h>
134 #include <vm/vm_pager.h>
135 #include <vm/vm_phys.h>
136 #include <vm/vm_radix.h>
137 #include <vm/vm_reserv.h>
138 #include <vm/uma.h>
139
140 #include <machine/intr_machdep.h>
141 #include <x86/apicvar.h>
142 #include <machine/cpu.h>
143 #include <machine/cputypes.h>
144 #include <machine/md_var.h>
145 #include <machine/pcb.h>
146 #include <machine/specialreg.h>
147 #ifdef SMP
148 #include <machine/smp.h>
149 #endif
150
151 static __inline boolean_t
152 pmap_type_guest(pmap_t pmap)
153 {
154
155         return ((pmap->pm_type == PT_EPT) || (pmap->pm_type == PT_RVI));
156 }
157
158 static __inline boolean_t
159 pmap_emulate_ad_bits(pmap_t pmap)
160 {
161
162         return ((pmap->pm_flags & PMAP_EMULATE_AD_BITS) != 0);
163 }
164
165 static __inline pt_entry_t
166 pmap_valid_bit(pmap_t pmap)
167 {
168         pt_entry_t mask;
169
170         switch (pmap->pm_type) {
171         case PT_X86:
172         case PT_RVI:
173                 mask = X86_PG_V;
174                 break;
175         case PT_EPT:
176                 if (pmap_emulate_ad_bits(pmap))
177                         mask = EPT_PG_EMUL_V;
178                 else
179                         mask = EPT_PG_READ;
180                 break;
181         default:
182                 panic("pmap_valid_bit: invalid pm_type %d", pmap->pm_type);
183         }
184
185         return (mask);
186 }
187
188 static __inline pt_entry_t
189 pmap_rw_bit(pmap_t pmap)
190 {
191         pt_entry_t mask;
192
193         switch (pmap->pm_type) {
194         case PT_X86:
195         case PT_RVI:
196                 mask = X86_PG_RW;
197                 break;
198         case PT_EPT:
199                 if (pmap_emulate_ad_bits(pmap))
200                         mask = EPT_PG_EMUL_RW;
201                 else
202                         mask = EPT_PG_WRITE;
203                 break;
204         default:
205                 panic("pmap_rw_bit: invalid pm_type %d", pmap->pm_type);
206         }
207
208         return (mask);
209 }
210
211 static __inline pt_entry_t
212 pmap_global_bit(pmap_t pmap)
213 {
214         pt_entry_t mask;
215
216         switch (pmap->pm_type) {
217         case PT_X86:
218                 mask = X86_PG_G;
219                 break;
220         case PT_RVI:
221         case PT_EPT:
222                 mask = 0;
223                 break;
224         default:
225                 panic("pmap_global_bit: invalid pm_type %d", pmap->pm_type);
226         }
227
228         return (mask);
229 }
230
231 static __inline pt_entry_t
232 pmap_accessed_bit(pmap_t pmap)
233 {
234         pt_entry_t mask;
235
236         switch (pmap->pm_type) {
237         case PT_X86:
238         case PT_RVI:
239                 mask = X86_PG_A;
240                 break;
241         case PT_EPT:
242                 if (pmap_emulate_ad_bits(pmap))
243                         mask = EPT_PG_READ;
244                 else
245                         mask = EPT_PG_A;
246                 break;
247         default:
248                 panic("pmap_accessed_bit: invalid pm_type %d", pmap->pm_type);
249         }
250
251         return (mask);
252 }
253
254 static __inline pt_entry_t
255 pmap_modified_bit(pmap_t pmap)
256 {
257         pt_entry_t mask;
258
259         switch (pmap->pm_type) {
260         case PT_X86:
261         case PT_RVI:
262                 mask = X86_PG_M;
263                 break;
264         case PT_EPT:
265                 if (pmap_emulate_ad_bits(pmap))
266                         mask = EPT_PG_WRITE;
267                 else
268                         mask = EPT_PG_M;
269                 break;
270         default:
271                 panic("pmap_modified_bit: invalid pm_type %d", pmap->pm_type);
272         }
273
274         return (mask);
275 }
276
277 #if !defined(DIAGNOSTIC)
278 #ifdef __GNUC_GNU_INLINE__
279 #define PMAP_INLINE     __attribute__((__gnu_inline__)) inline
280 #else
281 #define PMAP_INLINE     extern inline
282 #endif
283 #else
284 #define PMAP_INLINE
285 #endif
286
287 #ifdef PV_STATS
288 #define PV_STAT(x)      do { x ; } while (0)
289 #else
290 #define PV_STAT(x)      do { } while (0)
291 #endif
292
293 #define pa_index(pa)    ((pa) >> PDRSHIFT)
294 #define pa_to_pvh(pa)   (&pv_table[pa_index(pa)])
295
296 #define NPV_LIST_LOCKS  MAXCPU
297
298 #define PHYS_TO_PV_LIST_LOCK(pa)        \
299                         (&pv_list_locks[pa_index(pa) % NPV_LIST_LOCKS])
300
301 #define CHANGE_PV_LIST_LOCK_TO_PHYS(lockp, pa)  do {    \
302         struct rwlock **_lockp = (lockp);               \
303         struct rwlock *_new_lock;                       \
304                                                         \
305         _new_lock = PHYS_TO_PV_LIST_LOCK(pa);           \
306         if (_new_lock != *_lockp) {                     \
307                 if (*_lockp != NULL)                    \
308                         rw_wunlock(*_lockp);            \
309                 *_lockp = _new_lock;                    \
310                 rw_wlock(*_lockp);                      \
311         }                                               \
312 } while (0)
313
314 #define CHANGE_PV_LIST_LOCK_TO_VM_PAGE(lockp, m)        \
315                         CHANGE_PV_LIST_LOCK_TO_PHYS(lockp, VM_PAGE_TO_PHYS(m))
316
317 #define RELEASE_PV_LIST_LOCK(lockp)             do {    \
318         struct rwlock **_lockp = (lockp);               \
319                                                         \
320         if (*_lockp != NULL) {                          \
321                 rw_wunlock(*_lockp);                    \
322                 *_lockp = NULL;                         \
323         }                                               \
324 } while (0)
325
326 #define VM_PAGE_TO_PV_LIST_LOCK(m)      \
327                         PHYS_TO_PV_LIST_LOCK(VM_PAGE_TO_PHYS(m))
328
329 struct pmap kernel_pmap_store;
330
331 vm_offset_t virtual_avail;      /* VA of first avail page (after kernel bss) */
332 vm_offset_t virtual_end;        /* VA of last avail page (end of kernel AS) */
333
334 int nkpt;
335 SYSCTL_INT(_machdep, OID_AUTO, nkpt, CTLFLAG_RD, &nkpt, 0,
336     "Number of kernel page table pages allocated on bootup");
337
338 static int ndmpdp;
339 vm_paddr_t dmaplimit;
340 vm_offset_t kernel_vm_end = VM_MIN_KERNEL_ADDRESS;
341 pt_entry_t pg_nx;
342
343 static SYSCTL_NODE(_vm, OID_AUTO, pmap, CTLFLAG_RD, 0, "VM/pmap parameters");
344
345 static int pat_works = 1;
346 SYSCTL_INT(_vm_pmap, OID_AUTO, pat_works, CTLFLAG_RD, &pat_works, 1,
347     "Is page attribute table fully functional?");
348
349 static int pg_ps_enabled = 1;
350 SYSCTL_INT(_vm_pmap, OID_AUTO, pg_ps_enabled, CTLFLAG_RDTUN | CTLFLAG_NOFETCH,
351     &pg_ps_enabled, 0, "Are large page mappings enabled?");
352
353 #define PAT_INDEX_SIZE  8
354 static int pat_index[PAT_INDEX_SIZE];   /* cache mode to PAT index conversion */
355
356 static u_int64_t        KPTphys;        /* phys addr of kernel level 1 */
357 static u_int64_t        KPDphys;        /* phys addr of kernel level 2 */
358 u_int64_t               KPDPphys;       /* phys addr of kernel level 3 */
359 u_int64_t               KPML4phys;      /* phys addr of kernel level 4 */
360
361 static u_int64_t        DMPDphys;       /* phys addr of direct mapped level 2 */
362 static u_int64_t        DMPDPphys;      /* phys addr of direct mapped level 3 */
363 static int              ndmpdpphys;     /* number of DMPDPphys pages */
364
365 /*
366  * pmap_mapdev support pre initialization (i.e. console)
367  */
368 #define PMAP_PREINIT_MAPPING_COUNT      8
369 static struct pmap_preinit_mapping {
370         vm_paddr_t      pa;
371         vm_offset_t     va;
372         vm_size_t       sz;
373         int             mode;
374 } pmap_preinit_mapping[PMAP_PREINIT_MAPPING_COUNT];
375 static int pmap_initialized;
376
377 /*
378  * Data for the pv entry allocation mechanism.
379  * Updates to pv_invl_gen are protected by the pv_list_locks[]
380  * elements, but reads are not.
381  */
382 static TAILQ_HEAD(pch, pv_chunk) pv_chunks = TAILQ_HEAD_INITIALIZER(pv_chunks);
383 static struct mtx __exclusive_cache_line pv_chunks_mutex;
384 static struct rwlock __exclusive_cache_line pv_list_locks[NPV_LIST_LOCKS];
385 static u_long pv_invl_gen[NPV_LIST_LOCKS];
386 static struct md_page *pv_table;
387 static struct md_page pv_dummy;
388
389 /*
390  * All those kernel PT submaps that BSD is so fond of
391  */
392 pt_entry_t *CMAP1 = NULL;
393 caddr_t CADDR1 = 0;
394 static vm_offset_t qframe = 0;
395 static struct mtx qframe_mtx;
396
397 static int pmap_flags = PMAP_PDE_SUPERPAGE;     /* flags for x86 pmaps */
398
399 int pmap_pcid_enabled = 1;
400 SYSCTL_INT(_vm_pmap, OID_AUTO, pcid_enabled, CTLFLAG_RDTUN | CTLFLAG_NOFETCH,
401     &pmap_pcid_enabled, 0, "Is TLB Context ID enabled ?");
402 int invpcid_works = 0;
403 SYSCTL_INT(_vm_pmap, OID_AUTO, invpcid_works, CTLFLAG_RD, &invpcid_works, 0,
404     "Is the invpcid instruction available ?");
405
406 static int
407 pmap_pcid_save_cnt_proc(SYSCTL_HANDLER_ARGS)
408 {
409         int i;
410         uint64_t res;
411
412         res = 0;
413         CPU_FOREACH(i) {
414                 res += cpuid_to_pcpu[i]->pc_pm_save_cnt;
415         }
416         return (sysctl_handle_64(oidp, &res, 0, req));
417 }
418 SYSCTL_PROC(_vm_pmap, OID_AUTO, pcid_save_cnt, CTLTYPE_U64 | CTLFLAG_RW |
419     CTLFLAG_MPSAFE, NULL, 0, pmap_pcid_save_cnt_proc, "QU",
420     "Count of saved TLB context on switch");
421
422 static LIST_HEAD(, pmap_invl_gen) pmap_invl_gen_tracker =
423     LIST_HEAD_INITIALIZER(&pmap_invl_gen_tracker);
424 static struct mtx invl_gen_mtx;
425 static u_long pmap_invl_gen = 0;
426 /* Fake lock object to satisfy turnstiles interface. */
427 static struct lock_object invl_gen_ts = {
428         .lo_name = "invlts",
429 };
430
431 static bool
432 pmap_not_in_di(void)
433 {
434
435         return (curthread->td_md.md_invl_gen.gen == 0);
436 }
437
438 #define PMAP_ASSERT_NOT_IN_DI() \
439     KASSERT(pmap_not_in_di(), ("DI already started"))
440
441 /*
442  * Start a new Delayed Invalidation (DI) block of code, executed by
443  * the current thread.  Within a DI block, the current thread may
444  * destroy both the page table and PV list entries for a mapping and
445  * then release the corresponding PV list lock before ensuring that
446  * the mapping is flushed from the TLBs of any processors with the
447  * pmap active.
448  */
449 static void
450 pmap_delayed_invl_started(void)
451 {
452         struct pmap_invl_gen *invl_gen;
453         u_long currgen;
454
455         invl_gen = &curthread->td_md.md_invl_gen;
456         PMAP_ASSERT_NOT_IN_DI();
457         mtx_lock(&invl_gen_mtx);
458         if (LIST_EMPTY(&pmap_invl_gen_tracker))
459                 currgen = pmap_invl_gen;
460         else
461                 currgen = LIST_FIRST(&pmap_invl_gen_tracker)->gen;
462         invl_gen->gen = currgen + 1;
463         LIST_INSERT_HEAD(&pmap_invl_gen_tracker, invl_gen, link);
464         mtx_unlock(&invl_gen_mtx);
465 }
466
467 /*
468  * Finish the DI block, previously started by the current thread.  All
469  * required TLB flushes for the pages marked by
470  * pmap_delayed_invl_page() must be finished before this function is
471  * called.
472  *
473  * This function works by bumping the global DI generation number to
474  * the generation number of the current thread's DI, unless there is a
475  * pending DI that started earlier.  In the latter case, bumping the
476  * global DI generation number would incorrectly signal that the
477  * earlier DI had finished.  Instead, this function bumps the earlier
478  * DI's generation number to match the generation number of the
479  * current thread's DI.
480  */
481 static void
482 pmap_delayed_invl_finished(void)
483 {
484         struct pmap_invl_gen *invl_gen, *next;
485         struct turnstile *ts;
486
487         invl_gen = &curthread->td_md.md_invl_gen;
488         KASSERT(invl_gen->gen != 0, ("missed invl_started"));
489         mtx_lock(&invl_gen_mtx);
490         next = LIST_NEXT(invl_gen, link);
491         if (next == NULL) {
492                 turnstile_chain_lock(&invl_gen_ts);
493                 ts = turnstile_lookup(&invl_gen_ts);
494                 pmap_invl_gen = invl_gen->gen;
495                 if (ts != NULL) {
496                         turnstile_broadcast(ts, TS_SHARED_QUEUE);
497                         turnstile_unpend(ts, TS_SHARED_LOCK);
498                 }
499                 turnstile_chain_unlock(&invl_gen_ts);
500         } else {
501                 next->gen = invl_gen->gen;
502         }
503         LIST_REMOVE(invl_gen, link);
504         mtx_unlock(&invl_gen_mtx);
505         invl_gen->gen = 0;
506 }
507
508 #ifdef PV_STATS
509 static long invl_wait;
510 SYSCTL_LONG(_vm_pmap, OID_AUTO, invl_wait, CTLFLAG_RD, &invl_wait, 0,
511     "Number of times DI invalidation blocked pmap_remove_all/write");
512 #endif
513
514 static u_long *
515 pmap_delayed_invl_genp(vm_page_t m)
516 {
517
518         return (&pv_invl_gen[pa_index(VM_PAGE_TO_PHYS(m)) % NPV_LIST_LOCKS]);
519 }
520
521 /*
522  * Ensure that all currently executing DI blocks, that need to flush
523  * TLB for the given page m, actually flushed the TLB at the time the
524  * function returned.  If the page m has an empty PV list and we call
525  * pmap_delayed_invl_wait(), upon its return we know that no CPU has a
526  * valid mapping for the page m in either its page table or TLB.
527  *
528  * This function works by blocking until the global DI generation
529  * number catches up with the generation number associated with the
530  * given page m and its PV list.  Since this function's callers
531  * typically own an object lock and sometimes own a page lock, it
532  * cannot sleep.  Instead, it blocks on a turnstile to relinquish the
533  * processor.
534  */
535 static void
536 pmap_delayed_invl_wait(vm_page_t m)
537 {
538         struct turnstile *ts;
539         u_long *m_gen;
540 #ifdef PV_STATS
541         bool accounted = false;
542 #endif
543
544         m_gen = pmap_delayed_invl_genp(m);
545         while (*m_gen > pmap_invl_gen) {
546 #ifdef PV_STATS
547                 if (!accounted) {
548                         atomic_add_long(&invl_wait, 1);
549                         accounted = true;
550                 }
551 #endif
552                 ts = turnstile_trywait(&invl_gen_ts);
553                 if (*m_gen > pmap_invl_gen)
554                         turnstile_wait(ts, NULL, TS_SHARED_QUEUE);
555                 else
556                         turnstile_cancel(ts);
557         }
558 }
559
560 /*
561  * Mark the page m's PV list as participating in the current thread's
562  * DI block.  Any threads concurrently using m's PV list to remove or
563  * restrict all mappings to m will wait for the current thread's DI
564  * block to complete before proceeding.
565  *
566  * The function works by setting the DI generation number for m's PV
567  * list to at least the DI generation number of the current thread.
568  * This forces a caller of pmap_delayed_invl_wait() to block until
569  * current thread calls pmap_delayed_invl_finished().
570  */
571 static void
572 pmap_delayed_invl_page(vm_page_t m)
573 {
574         u_long gen, *m_gen;
575
576         rw_assert(VM_PAGE_TO_PV_LIST_LOCK(m), RA_WLOCKED);
577         gen = curthread->td_md.md_invl_gen.gen;
578         if (gen == 0)
579                 return;
580         m_gen = pmap_delayed_invl_genp(m);
581         if (*m_gen < gen)
582                 *m_gen = gen;
583 }
584
585 /*
586  * Crashdump maps.
587  */
588 static caddr_t crashdumpmap;
589
590 /*
591  * Internal flags for pmap_enter()'s helper functions.
592  */
593 #define PMAP_ENTER_NORECLAIM    0x1000000       /* Don't reclaim PV entries. */
594 #define PMAP_ENTER_NOREPLACE    0x2000000       /* Don't replace mappings. */
595
596 static void     free_pv_chunk(struct pv_chunk *pc);
597 static void     free_pv_entry(pmap_t pmap, pv_entry_t pv);
598 static pv_entry_t get_pv_entry(pmap_t pmap, struct rwlock **lockp);
599 static int      popcnt_pc_map_pq(uint64_t *map);
600 static vm_page_t reclaim_pv_chunk(pmap_t locked_pmap, struct rwlock **lockp);
601 static void     reserve_pv_entries(pmap_t pmap, int needed,
602                     struct rwlock **lockp);
603 static void     pmap_pv_demote_pde(pmap_t pmap, vm_offset_t va, vm_paddr_t pa,
604                     struct rwlock **lockp);
605 static bool     pmap_pv_insert_pde(pmap_t pmap, vm_offset_t va, pd_entry_t pde,
606                     u_int flags, struct rwlock **lockp);
607 #if VM_NRESERVLEVEL > 0
608 static void     pmap_pv_promote_pde(pmap_t pmap, vm_offset_t va, vm_paddr_t pa,
609                     struct rwlock **lockp);
610 #endif
611 static void     pmap_pvh_free(struct md_page *pvh, pmap_t pmap, vm_offset_t va);
612 static pv_entry_t pmap_pvh_remove(struct md_page *pvh, pmap_t pmap,
613                     vm_offset_t va);
614
615 static int pmap_change_attr_locked(vm_offset_t va, vm_size_t size, int mode);
616 static boolean_t pmap_demote_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t va);
617 static boolean_t pmap_demote_pde_locked(pmap_t pmap, pd_entry_t *pde,
618     vm_offset_t va, struct rwlock **lockp);
619 static boolean_t pmap_demote_pdpe(pmap_t pmap, pdp_entry_t *pdpe,
620     vm_offset_t va);
621 static bool     pmap_enter_2mpage(pmap_t pmap, vm_offset_t va, vm_page_t m,
622                     vm_prot_t prot, struct rwlock **lockp);
623 static int      pmap_enter_pde(pmap_t pmap, vm_offset_t va, pd_entry_t newpde,
624                     u_int flags, vm_page_t m, struct rwlock **lockp);
625 static vm_page_t pmap_enter_quick_locked(pmap_t pmap, vm_offset_t va,
626     vm_page_t m, vm_prot_t prot, vm_page_t mpte, struct rwlock **lockp);
627 static void pmap_fill_ptp(pt_entry_t *firstpte, pt_entry_t newpte);
628 static int pmap_insert_pt_page(pmap_t pmap, vm_page_t mpte);
629 static void pmap_invalidate_pde_page(pmap_t pmap, vm_offset_t va,
630                     pd_entry_t pde);
631 static void pmap_kenter_attr(vm_offset_t va, vm_paddr_t pa, int mode);
632 static void pmap_pde_attr(pd_entry_t *pde, int cache_bits, int mask);
633 #if VM_NRESERVLEVEL > 0
634 static void pmap_promote_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t va,
635     struct rwlock **lockp);
636 #endif
637 static boolean_t pmap_protect_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t sva,
638     vm_prot_t prot);
639 static void pmap_pte_attr(pt_entry_t *pte, int cache_bits, int mask);
640 static int pmap_remove_pde(pmap_t pmap, pd_entry_t *pdq, vm_offset_t sva,
641     struct spglist *free, struct rwlock **lockp);
642 static int pmap_remove_pte(pmap_t pmap, pt_entry_t *ptq, vm_offset_t sva,
643     pd_entry_t ptepde, struct spglist *free, struct rwlock **lockp);
644 static vm_page_t pmap_remove_pt_page(pmap_t pmap, vm_offset_t va);
645 static void pmap_remove_page(pmap_t pmap, vm_offset_t va, pd_entry_t *pde,
646     struct spglist *free);
647 static bool     pmap_remove_ptes(pmap_t pmap, vm_offset_t sva, vm_offset_t eva,
648                     pd_entry_t *pde, struct spglist *free,
649                     struct rwlock **lockp);
650 static boolean_t pmap_try_insert_pv_entry(pmap_t pmap, vm_offset_t va,
651     vm_page_t m, struct rwlock **lockp);
652 static void pmap_update_pde(pmap_t pmap, vm_offset_t va, pd_entry_t *pde,
653     pd_entry_t newpde);
654 static void pmap_update_pde_invalidate(pmap_t, vm_offset_t va, pd_entry_t pde);
655
656 static vm_page_t _pmap_allocpte(pmap_t pmap, vm_pindex_t ptepindex,
657                 struct rwlock **lockp);
658 static vm_page_t pmap_allocpde(pmap_t pmap, vm_offset_t va,
659                 struct rwlock **lockp);
660 static vm_page_t pmap_allocpte(pmap_t pmap, vm_offset_t va,
661                 struct rwlock **lockp);
662
663 static void _pmap_unwire_ptp(pmap_t pmap, vm_offset_t va, vm_page_t m,
664     struct spglist *free);
665 static int pmap_unuse_pt(pmap_t, vm_offset_t, pd_entry_t, struct spglist *);
666 static vm_offset_t pmap_kmem_choose(vm_offset_t addr);
667
668 /*
669  * Move the kernel virtual free pointer to the next
670  * 2MB.  This is used to help improve performance
671  * by using a large (2MB) page for much of the kernel
672  * (.text, .data, .bss)
673  */
674 static vm_offset_t
675 pmap_kmem_choose(vm_offset_t addr)
676 {
677         vm_offset_t newaddr = addr;
678
679         newaddr = roundup2(addr, NBPDR);
680         return (newaddr);
681 }
682
683 /********************/
684 /* Inline functions */
685 /********************/
686
687 /* Return a non-clipped PD index for a given VA */
688 static __inline vm_pindex_t
689 pmap_pde_pindex(vm_offset_t va)
690 {
691         return (va >> PDRSHIFT);
692 }
693
694
695 /* Return a pointer to the PML4 slot that corresponds to a VA */
696 static __inline pml4_entry_t *
697 pmap_pml4e(pmap_t pmap, vm_offset_t va)
698 {
699
700         return (&pmap->pm_pml4[pmap_pml4e_index(va)]);
701 }
702
703 /* Return a pointer to the PDP slot that corresponds to a VA */
704 static __inline pdp_entry_t *
705 pmap_pml4e_to_pdpe(pml4_entry_t *pml4e, vm_offset_t va)
706 {
707         pdp_entry_t *pdpe;
708
709         pdpe = (pdp_entry_t *)PHYS_TO_DMAP(*pml4e & PG_FRAME);
710         return (&pdpe[pmap_pdpe_index(va)]);
711 }
712
713 /* Return a pointer to the PDP slot that corresponds to a VA */
714 static __inline pdp_entry_t *
715 pmap_pdpe(pmap_t pmap, vm_offset_t va)
716 {
717         pml4_entry_t *pml4e;
718         pt_entry_t PG_V;
719
720         PG_V = pmap_valid_bit(pmap);
721         pml4e = pmap_pml4e(pmap, va);
722         if ((*pml4e & PG_V) == 0)
723                 return (NULL);
724         return (pmap_pml4e_to_pdpe(pml4e, va));
725 }
726
727 /* Return a pointer to the PD slot that corresponds to a VA */
728 static __inline pd_entry_t *
729 pmap_pdpe_to_pde(pdp_entry_t *pdpe, vm_offset_t va)
730 {
731         pd_entry_t *pde;
732
733         pde = (pd_entry_t *)PHYS_TO_DMAP(*pdpe & PG_FRAME);
734         return (&pde[pmap_pde_index(va)]);
735 }
736
737 /* Return a pointer to the PD slot that corresponds to a VA */
738 static __inline pd_entry_t *
739 pmap_pde(pmap_t pmap, vm_offset_t va)
740 {
741         pdp_entry_t *pdpe;
742         pt_entry_t PG_V;
743
744         PG_V = pmap_valid_bit(pmap);
745         pdpe = pmap_pdpe(pmap, va);
746         if (pdpe == NULL || (*pdpe & PG_V) == 0)
747                 return (NULL);
748         return (pmap_pdpe_to_pde(pdpe, va));
749 }
750
751 /* Return a pointer to the PT slot that corresponds to a VA */
752 static __inline pt_entry_t *
753 pmap_pde_to_pte(pd_entry_t *pde, vm_offset_t va)
754 {
755         pt_entry_t *pte;
756
757         pte = (pt_entry_t *)PHYS_TO_DMAP(*pde & PG_FRAME);
758         return (&pte[pmap_pte_index(va)]);
759 }
760
761 /* Return a pointer to the PT slot that corresponds to a VA */
762 static __inline pt_entry_t *
763 pmap_pte(pmap_t pmap, vm_offset_t va)
764 {
765         pd_entry_t *pde;
766         pt_entry_t PG_V;
767
768         PG_V = pmap_valid_bit(pmap);
769         pde = pmap_pde(pmap, va);
770         if (pde == NULL || (*pde & PG_V) == 0)
771                 return (NULL);
772         if ((*pde & PG_PS) != 0)        /* compat with i386 pmap_pte() */
773                 return ((pt_entry_t *)pde);
774         return (pmap_pde_to_pte(pde, va));
775 }
776
777 static __inline void
778 pmap_resident_count_inc(pmap_t pmap, int count)
779 {
780
781         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
782         pmap->pm_stats.resident_count += count;
783 }
784
785 static __inline void
786 pmap_resident_count_dec(pmap_t pmap, int count)
787 {
788
789         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
790         KASSERT(pmap->pm_stats.resident_count >= count,
791             ("pmap %p resident count underflow %ld %d", pmap,
792             pmap->pm_stats.resident_count, count));
793         pmap->pm_stats.resident_count -= count;
794 }
795
796 PMAP_INLINE pt_entry_t *
797 vtopte(vm_offset_t va)
798 {
799         u_int64_t mask = ((1ul << (NPTEPGSHIFT + NPDEPGSHIFT + NPDPEPGSHIFT + NPML4EPGSHIFT)) - 1);
800
801         KASSERT(va >= VM_MAXUSER_ADDRESS, ("vtopte on a uva/gpa 0x%0lx", va));
802
803         return (PTmap + ((va >> PAGE_SHIFT) & mask));
804 }
805
806 static __inline pd_entry_t *
807 vtopde(vm_offset_t va)
808 {
809         u_int64_t mask = ((1ul << (NPDEPGSHIFT + NPDPEPGSHIFT + NPML4EPGSHIFT)) - 1);
810
811         KASSERT(va >= VM_MAXUSER_ADDRESS, ("vtopde on a uva/gpa 0x%0lx", va));
812
813         return (PDmap + ((va >> PDRSHIFT) & mask));
814 }
815
816 static u_int64_t
817 allocpages(vm_paddr_t *firstaddr, int n)
818 {
819         u_int64_t ret;
820
821         ret = *firstaddr;
822         bzero((void *)ret, n * PAGE_SIZE);
823         *firstaddr += n * PAGE_SIZE;
824         return (ret);
825 }
826
827 CTASSERT(powerof2(NDMPML4E));
828
829 /* number of kernel PDP slots */
830 #define NKPDPE(ptpgs)           howmany(ptpgs, NPDEPG)
831
832 static void
833 nkpt_init(vm_paddr_t addr)
834 {
835         int pt_pages;
836         
837 #ifdef NKPT
838         pt_pages = NKPT;
839 #else
840         pt_pages = howmany(addr, 1 << PDRSHIFT);
841         pt_pages += NKPDPE(pt_pages);
842
843         /*
844          * Add some slop beyond the bare minimum required for bootstrapping
845          * the kernel.
846          *
847          * This is quite important when allocating KVA for kernel modules.
848          * The modules are required to be linked in the negative 2GB of
849          * the address space.  If we run out of KVA in this region then
850          * pmap_growkernel() will need to allocate page table pages to map
851          * the entire 512GB of KVA space which is an unnecessary tax on
852          * physical memory.
853          *
854          * Secondly, device memory mapped as part of setting up the low-
855          * level console(s) is taken from KVA, starting at virtual_avail.
856          * This is because cninit() is called after pmap_bootstrap() but
857          * before vm_init() and pmap_init(). 20MB for a frame buffer is
858          * not uncommon.
859          */
860         pt_pages += 32;         /* 64MB additional slop. */
861 #endif
862         nkpt = pt_pages;
863 }
864
865 static void
866 create_pagetables(vm_paddr_t *firstaddr)
867 {
868         int i, j, ndm1g, nkpdpe;
869         pt_entry_t *pt_p;
870         pd_entry_t *pd_p;
871         pdp_entry_t *pdp_p;
872         pml4_entry_t *p4_p;
873
874         /* Allocate page table pages for the direct map */
875         ndmpdp = howmany(ptoa(Maxmem), NBPDP);
876         if (ndmpdp < 4)         /* Minimum 4GB of dirmap */
877                 ndmpdp = 4;
878         ndmpdpphys = howmany(ndmpdp, NPDPEPG);
879         if (ndmpdpphys > NDMPML4E) {
880                 /*
881                  * Each NDMPML4E allows 512 GB, so limit to that,
882                  * and then readjust ndmpdp and ndmpdpphys.
883                  */
884                 printf("NDMPML4E limits system to %d GB\n", NDMPML4E * 512);
885                 Maxmem = atop(NDMPML4E * NBPML4);
886                 ndmpdpphys = NDMPML4E;
887                 ndmpdp = NDMPML4E * NPDEPG;
888         }
889         DMPDPphys = allocpages(firstaddr, ndmpdpphys);
890         ndm1g = 0;
891         if ((amd_feature & AMDID_PAGE1GB) != 0)
892                 ndm1g = ptoa(Maxmem) >> PDPSHIFT;
893         if (ndm1g < ndmpdp)
894                 DMPDphys = allocpages(firstaddr, ndmpdp - ndm1g);
895         dmaplimit = (vm_paddr_t)ndmpdp << PDPSHIFT;
896
897         /* Allocate pages */
898         KPML4phys = allocpages(firstaddr, 1);
899         KPDPphys = allocpages(firstaddr, NKPML4E);
900
901         /*
902          * Allocate the initial number of kernel page table pages required to
903          * bootstrap.  We defer this until after all memory-size dependent
904          * allocations are done (e.g. direct map), so that we don't have to
905          * build in too much slop in our estimate.
906          *
907          * Note that when NKPML4E > 1, we have an empty page underneath
908          * all but the KPML4I'th one, so we need NKPML4E-1 extra (zeroed)
909          * pages.  (pmap_enter requires a PD page to exist for each KPML4E.)
910          */
911         nkpt_init(*firstaddr);
912         nkpdpe = NKPDPE(nkpt);
913
914         KPTphys = allocpages(firstaddr, nkpt);
915         KPDphys = allocpages(firstaddr, nkpdpe);
916
917         /* Fill in the underlying page table pages */
918         /* Nominally read-only (but really R/W) from zero to physfree */
919         /* XXX not fully used, underneath 2M pages */
920         pt_p = (pt_entry_t *)KPTphys;
921         for (i = 0; ptoa(i) < *firstaddr; i++)
922                 pt_p[i] = ptoa(i) | X86_PG_RW | X86_PG_V | X86_PG_G;
923
924         /* Now map the page tables at their location within PTmap */
925         pd_p = (pd_entry_t *)KPDphys;
926         for (i = 0; i < nkpt; i++)
927                 pd_p[i] = (KPTphys + ptoa(i)) | X86_PG_RW | X86_PG_V;
928
929         /* Map from zero to end of allocations under 2M pages */
930         /* This replaces some of the KPTphys entries above */
931         for (i = 0; (i << PDRSHIFT) < *firstaddr; i++)
932                 pd_p[i] = (i << PDRSHIFT) | X86_PG_RW | X86_PG_V | PG_PS |
933                     X86_PG_G;
934
935         /* And connect up the PD to the PDP (leaving room for L4 pages) */
936         pdp_p = (pdp_entry_t *)(KPDPphys + ptoa(KPML4I - KPML4BASE));
937         for (i = 0; i < nkpdpe; i++)
938                 pdp_p[i + KPDPI] = (KPDphys + ptoa(i)) | X86_PG_RW | X86_PG_V |
939                     PG_U;
940
941         /*
942          * Now, set up the direct map region using 2MB and/or 1GB pages.  If
943          * the end of physical memory is not aligned to a 1GB page boundary,
944          * then the residual physical memory is mapped with 2MB pages.  Later,
945          * if pmap_mapdev{_attr}() uses the direct map for non-write-back
946          * memory, pmap_change_attr() will demote any 2MB or 1GB page mappings
947          * that are partially used. 
948          */
949         pd_p = (pd_entry_t *)DMPDphys;
950         for (i = NPDEPG * ndm1g, j = 0; i < NPDEPG * ndmpdp; i++, j++) {
951                 pd_p[j] = (vm_paddr_t)i << PDRSHIFT;
952                 /* Preset PG_M and PG_A because demotion expects it. */
953                 pd_p[j] |= X86_PG_RW | X86_PG_V | PG_PS | X86_PG_G |
954                     X86_PG_M | X86_PG_A | pg_nx;
955         }
956         pdp_p = (pdp_entry_t *)DMPDPphys;
957         for (i = 0; i < ndm1g; i++) {
958                 pdp_p[i] = (vm_paddr_t)i << PDPSHIFT;
959                 /* Preset PG_M and PG_A because demotion expects it. */
960                 pdp_p[i] |= X86_PG_RW | X86_PG_V | PG_PS | X86_PG_G |
961                     X86_PG_M | X86_PG_A | pg_nx;
962         }
963         for (j = 0; i < ndmpdp; i++, j++) {
964                 pdp_p[i] = DMPDphys + ptoa(j);
965                 pdp_p[i] |= X86_PG_RW | X86_PG_V | PG_U;
966         }
967
968         /* And recursively map PML4 to itself in order to get PTmap */
969         p4_p = (pml4_entry_t *)KPML4phys;
970         p4_p[PML4PML4I] = KPML4phys;
971         p4_p[PML4PML4I] |= X86_PG_RW | X86_PG_V | PG_U;
972
973         /* Connect the Direct Map slot(s) up to the PML4. */
974         for (i = 0; i < ndmpdpphys; i++) {
975                 p4_p[DMPML4I + i] = DMPDPphys + ptoa(i);
976                 p4_p[DMPML4I + i] |= X86_PG_RW | X86_PG_V | PG_U;
977         }
978
979         /* Connect the KVA slots up to the PML4 */
980         for (i = 0; i < NKPML4E; i++) {
981                 p4_p[KPML4BASE + i] = KPDPphys + ptoa(i);
982                 p4_p[KPML4BASE + i] |= X86_PG_RW | X86_PG_V | PG_U;
983         }
984 }
985
986 /*
987  *      Bootstrap the system enough to run with virtual memory.
988  *
989  *      On amd64 this is called after mapping has already been enabled
990  *      and just syncs the pmap module with what has already been done.
991  *      [We can't call it easily with mapping off since the kernel is not
992  *      mapped with PA == VA, hence we would have to relocate every address
993  *      from the linked base (virtual) address "KERNBASE" to the actual
994  *      (physical) address starting relative to 0]
995  */
996 void
997 pmap_bootstrap(vm_paddr_t *firstaddr)
998 {
999         vm_offset_t va;
1000         pt_entry_t *pte;
1001         int i;
1002
1003         /*
1004          * Create an initial set of page tables to run the kernel in.
1005          */
1006         create_pagetables(firstaddr);
1007
1008         /*
1009          * Add a physical memory segment (vm_phys_seg) corresponding to the
1010          * preallocated kernel page table pages so that vm_page structures
1011          * representing these pages will be created.  The vm_page structures
1012          * are required for promotion of the corresponding kernel virtual
1013          * addresses to superpage mappings.
1014          */
1015         vm_phys_add_seg(KPTphys, KPTphys + ptoa(nkpt));
1016
1017         virtual_avail = (vm_offset_t) KERNBASE + *firstaddr;
1018         virtual_avail = pmap_kmem_choose(virtual_avail);
1019
1020         virtual_end = VM_MAX_KERNEL_ADDRESS;
1021
1022
1023         /* XXX do %cr0 as well */
1024         load_cr4(rcr4() | CR4_PGE);
1025         load_cr3(KPML4phys);
1026         if (cpu_stdext_feature & CPUID_STDEXT_SMEP)
1027                 load_cr4(rcr4() | CR4_SMEP);
1028
1029         /*
1030          * Initialize the kernel pmap (which is statically allocated).
1031          */
1032         PMAP_LOCK_INIT(kernel_pmap);
1033         kernel_pmap->pm_pml4 = (pdp_entry_t *)PHYS_TO_DMAP(KPML4phys);
1034         kernel_pmap->pm_cr3 = KPML4phys;
1035         CPU_FILL(&kernel_pmap->pm_active);      /* don't allow deactivation */
1036         TAILQ_INIT(&kernel_pmap->pm_pvchunk);
1037         kernel_pmap->pm_flags = pmap_flags;
1038
1039         /*
1040          * Initialize the TLB invalidations generation number lock.
1041          */
1042         mtx_init(&invl_gen_mtx, "invlgn", NULL, MTX_DEF);
1043
1044         /*
1045          * Reserve some special page table entries/VA space for temporary
1046          * mapping of pages.
1047          */
1048 #define SYSMAP(c, p, v, n)      \
1049         v = (c)va; va += ((n)*PAGE_SIZE); p = pte; pte += (n);
1050
1051         va = virtual_avail;
1052         pte = vtopte(va);
1053
1054         /*
1055          * Crashdump maps.  The first page is reused as CMAP1 for the
1056          * memory test.
1057          */
1058         SYSMAP(caddr_t, CMAP1, crashdumpmap, MAXDUMPPGS)
1059         CADDR1 = crashdumpmap;
1060
1061         virtual_avail = va;
1062
1063         /*
1064          * Initialize the PAT MSR.
1065          * pmap_init_pat() clears and sets CR4_PGE, which, as a
1066          * side-effect, invalidates stale PG_G TLB entries that might
1067          * have been created in our pre-boot environment.
1068          */
1069         pmap_init_pat();
1070
1071         /* Initialize TLB Context Id. */
1072         TUNABLE_INT_FETCH("vm.pmap.pcid_enabled", &pmap_pcid_enabled);
1073         if ((cpu_feature2 & CPUID2_PCID) != 0 && pmap_pcid_enabled) {
1074                 /* Check for INVPCID support */
1075                 invpcid_works = (cpu_stdext_feature & CPUID_STDEXT_INVPCID)
1076                     != 0;
1077                 for (i = 0; i < MAXCPU; i++) {
1078                         kernel_pmap->pm_pcids[i].pm_pcid = PMAP_PCID_KERN;
1079                         kernel_pmap->pm_pcids[i].pm_gen = 1;
1080                 }
1081                 PCPU_SET(pcid_next, PMAP_PCID_KERN + 1);
1082                 PCPU_SET(pcid_gen, 1);
1083                 /*
1084                  * pcpu area for APs is zeroed during AP startup.
1085                  * pc_pcid_next and pc_pcid_gen are initialized by AP
1086                  * during pcpu setup.
1087                  */
1088                 load_cr4(rcr4() | CR4_PCIDE);
1089         } else {
1090                 pmap_pcid_enabled = 0;
1091         }
1092 }
1093
1094 /*
1095  * Setup the PAT MSR.
1096  */
1097 void
1098 pmap_init_pat(void)
1099 {
1100         int pat_table[PAT_INDEX_SIZE];
1101         uint64_t pat_msr;
1102         u_long cr0, cr4;
1103         int i;
1104
1105         /* Bail if this CPU doesn't implement PAT. */
1106         if ((cpu_feature & CPUID_PAT) == 0)
1107                 panic("no PAT??");
1108
1109         /* Set default PAT index table. */
1110         for (i = 0; i < PAT_INDEX_SIZE; i++)
1111                 pat_table[i] = -1;
1112         pat_table[PAT_WRITE_BACK] = 0;
1113         pat_table[PAT_WRITE_THROUGH] = 1;
1114         pat_table[PAT_UNCACHEABLE] = 3;
1115         pat_table[PAT_WRITE_COMBINING] = 3;
1116         pat_table[PAT_WRITE_PROTECTED] = 3;
1117         pat_table[PAT_UNCACHED] = 3;
1118
1119         /* Initialize default PAT entries. */
1120         pat_msr = PAT_VALUE(0, PAT_WRITE_BACK) |
1121             PAT_VALUE(1, PAT_WRITE_THROUGH) |
1122             PAT_VALUE(2, PAT_UNCACHED) |
1123             PAT_VALUE(3, PAT_UNCACHEABLE) |
1124             PAT_VALUE(4, PAT_WRITE_BACK) |
1125             PAT_VALUE(5, PAT_WRITE_THROUGH) |
1126             PAT_VALUE(6, PAT_UNCACHED) |
1127             PAT_VALUE(7, PAT_UNCACHEABLE);
1128
1129         if (pat_works) {
1130                 /*
1131                  * Leave the indices 0-3 at the default of WB, WT, UC-, and UC.
1132                  * Program 5 and 6 as WP and WC.
1133                  * Leave 4 and 7 as WB and UC.
1134                  */
1135                 pat_msr &= ~(PAT_MASK(5) | PAT_MASK(6));
1136                 pat_msr |= PAT_VALUE(5, PAT_WRITE_PROTECTED) |
1137                     PAT_VALUE(6, PAT_WRITE_COMBINING);
1138                 pat_table[PAT_UNCACHED] = 2;
1139                 pat_table[PAT_WRITE_PROTECTED] = 5;
1140                 pat_table[PAT_WRITE_COMBINING] = 6;
1141         } else {
1142                 /*
1143                  * Just replace PAT Index 2 with WC instead of UC-.
1144                  */
1145                 pat_msr &= ~PAT_MASK(2);
1146                 pat_msr |= PAT_VALUE(2, PAT_WRITE_COMBINING);
1147                 pat_table[PAT_WRITE_COMBINING] = 2;
1148         }
1149
1150         /* Disable PGE. */
1151         cr4 = rcr4();
1152         load_cr4(cr4 & ~CR4_PGE);
1153
1154         /* Disable caches (CD = 1, NW = 0). */
1155         cr0 = rcr0();
1156         load_cr0((cr0 & ~CR0_NW) | CR0_CD);
1157
1158         /* Flushes caches and TLBs. */
1159         wbinvd();
1160         invltlb();
1161
1162         /* Update PAT and index table. */
1163         wrmsr(MSR_PAT, pat_msr);
1164         for (i = 0; i < PAT_INDEX_SIZE; i++)
1165                 pat_index[i] = pat_table[i];
1166
1167         /* Flush caches and TLBs again. */
1168         wbinvd();
1169         invltlb();
1170
1171         /* Restore caches and PGE. */
1172         load_cr0(cr0);
1173         load_cr4(cr4);
1174 }
1175
1176 /*
1177  *      Initialize a vm_page's machine-dependent fields.
1178  */
1179 void
1180 pmap_page_init(vm_page_t m)
1181 {
1182
1183         TAILQ_INIT(&m->md.pv_list);
1184         m->md.pat_mode = PAT_WRITE_BACK;
1185 }
1186
1187 /*
1188  *      Initialize the pmap module.
1189  *      Called by vm_init, to initialize any structures that the pmap
1190  *      system needs to map virtual memory.
1191  */
1192 void
1193 pmap_init(void)
1194 {
1195         struct pmap_preinit_mapping *ppim;
1196         vm_page_t mpte;
1197         vm_size_t s;
1198         int error, i, pv_npg;
1199
1200         /*
1201          * Initialize the vm page array entries for the kernel pmap's
1202          * page table pages.
1203          */ 
1204         for (i = 0; i < nkpt; i++) {
1205                 mpte = PHYS_TO_VM_PAGE(KPTphys + (i << PAGE_SHIFT));
1206                 KASSERT(mpte >= vm_page_array &&
1207                     mpte < &vm_page_array[vm_page_array_size],
1208                     ("pmap_init: page table page is out of range"));
1209                 mpte->pindex = pmap_pde_pindex(KERNBASE) + i;
1210                 mpte->phys_addr = KPTphys + (i << PAGE_SHIFT);
1211         }
1212
1213         /*
1214          * If the kernel is running on a virtual machine, then it must assume
1215          * that MCA is enabled by the hypervisor.  Moreover, the kernel must
1216          * be prepared for the hypervisor changing the vendor and family that
1217          * are reported by CPUID.  Consequently, the workaround for AMD Family
1218          * 10h Erratum 383 is enabled if the processor's feature set does not
1219          * include at least one feature that is only supported by older Intel
1220          * or newer AMD processors.
1221          */
1222         if (vm_guest != VM_GUEST_NO && (cpu_feature & CPUID_SS) == 0 &&
1223             (cpu_feature2 & (CPUID2_SSSE3 | CPUID2_SSE41 | CPUID2_AESNI |
1224             CPUID2_AVX | CPUID2_XSAVE)) == 0 && (amd_feature2 & (AMDID2_XOP |
1225             AMDID2_FMA4)) == 0)
1226                 workaround_erratum383 = 1;
1227
1228         /*
1229          * Are large page mappings enabled?
1230          */
1231         TUNABLE_INT_FETCH("vm.pmap.pg_ps_enabled", &pg_ps_enabled);
1232         if (pg_ps_enabled) {
1233                 KASSERT(MAXPAGESIZES > 1 && pagesizes[1] == 0,
1234                     ("pmap_init: can't assign to pagesizes[1]"));
1235                 pagesizes[1] = NBPDR;
1236         }
1237
1238         /*
1239          * Initialize the pv chunk list mutex.
1240          */
1241         mtx_init(&pv_chunks_mutex, "pmap pv chunk list", NULL, MTX_DEF);
1242
1243         /*
1244          * Initialize the pool of pv list locks.
1245          */
1246         for (i = 0; i < NPV_LIST_LOCKS; i++)
1247                 rw_init(&pv_list_locks[i], "pmap pv list");
1248
1249         /*
1250          * Calculate the size of the pv head table for superpages.
1251          */
1252         pv_npg = howmany(vm_phys_segs[vm_phys_nsegs - 1].end, NBPDR);
1253
1254         /*
1255          * Allocate memory for the pv head table for superpages.
1256          */
1257         s = (vm_size_t)(pv_npg * sizeof(struct md_page));
1258         s = round_page(s);
1259         pv_table = (struct md_page *)kmem_malloc(kernel_arena, s,
1260             M_WAITOK | M_ZERO);
1261         for (i = 0; i < pv_npg; i++)
1262                 TAILQ_INIT(&pv_table[i].pv_list);
1263         TAILQ_INIT(&pv_dummy.pv_list);
1264
1265         pmap_initialized = 1;
1266         for (i = 0; i < PMAP_PREINIT_MAPPING_COUNT; i++) {
1267                 ppim = pmap_preinit_mapping + i;
1268                 if (ppim->va == 0)
1269                         continue;
1270                 /* Make the direct map consistent */
1271                 if (ppim->pa < dmaplimit && ppim->pa + ppim->sz < dmaplimit) {
1272                         (void)pmap_change_attr(PHYS_TO_DMAP(ppim->pa),
1273                             ppim->sz, ppim->mode);
1274                 }
1275                 if (!bootverbose)
1276                         continue;
1277                 printf("PPIM %u: PA=%#lx, VA=%#lx, size=%#lx, mode=%#x\n", i,
1278                     ppim->pa, ppim->va, ppim->sz, ppim->mode);
1279         }
1280
1281         mtx_init(&qframe_mtx, "qfrmlk", NULL, MTX_SPIN);
1282         error = vmem_alloc(kernel_arena, PAGE_SIZE, M_BESTFIT | M_WAITOK,
1283             (vmem_addr_t *)&qframe);
1284         if (error != 0)
1285                 panic("qframe allocation failed");
1286 }
1287
1288 static SYSCTL_NODE(_vm_pmap, OID_AUTO, pde, CTLFLAG_RD, 0,
1289     "2MB page mapping counters");
1290
1291 static u_long pmap_pde_demotions;
1292 SYSCTL_ULONG(_vm_pmap_pde, OID_AUTO, demotions, CTLFLAG_RD,
1293     &pmap_pde_demotions, 0, "2MB page demotions");
1294
1295 static u_long pmap_pde_mappings;
1296 SYSCTL_ULONG(_vm_pmap_pde, OID_AUTO, mappings, CTLFLAG_RD,
1297     &pmap_pde_mappings, 0, "2MB page mappings");
1298
1299 static u_long pmap_pde_p_failures;
1300 SYSCTL_ULONG(_vm_pmap_pde, OID_AUTO, p_failures, CTLFLAG_RD,
1301     &pmap_pde_p_failures, 0, "2MB page promotion failures");
1302
1303 static u_long pmap_pde_promotions;
1304 SYSCTL_ULONG(_vm_pmap_pde, OID_AUTO, promotions, CTLFLAG_RD,
1305     &pmap_pde_promotions, 0, "2MB page promotions");
1306
1307 static SYSCTL_NODE(_vm_pmap, OID_AUTO, pdpe, CTLFLAG_RD, 0,
1308     "1GB page mapping counters");
1309
1310 static u_long pmap_pdpe_demotions;
1311 SYSCTL_ULONG(_vm_pmap_pdpe, OID_AUTO, demotions, CTLFLAG_RD,
1312     &pmap_pdpe_demotions, 0, "1GB page demotions");
1313
1314 /***************************************************
1315  * Low level helper routines.....
1316  ***************************************************/
1317
1318 static pt_entry_t
1319 pmap_swap_pat(pmap_t pmap, pt_entry_t entry)
1320 {
1321         int x86_pat_bits = X86_PG_PTE_PAT | X86_PG_PDE_PAT;
1322
1323         switch (pmap->pm_type) {
1324         case PT_X86:
1325         case PT_RVI:
1326                 /* Verify that both PAT bits are not set at the same time */
1327                 KASSERT((entry & x86_pat_bits) != x86_pat_bits,
1328                     ("Invalid PAT bits in entry %#lx", entry));
1329
1330                 /* Swap the PAT bits if one of them is set */
1331                 if ((entry & x86_pat_bits) != 0)
1332                         entry ^= x86_pat_bits;
1333                 break;
1334         case PT_EPT:
1335                 /*
1336                  * Nothing to do - the memory attributes are represented
1337                  * the same way for regular pages and superpages.
1338                  */
1339                 break;
1340         default:
1341                 panic("pmap_switch_pat_bits: bad pm_type %d", pmap->pm_type);
1342         }
1343
1344         return (entry);
1345 }
1346
1347 /*
1348  * Determine the appropriate bits to set in a PTE or PDE for a specified
1349  * caching mode.
1350  */
1351 int
1352 pmap_cache_bits(pmap_t pmap, int mode, boolean_t is_pde)
1353 {
1354         int cache_bits, pat_flag, pat_idx;
1355
1356         if (mode < 0 || mode >= PAT_INDEX_SIZE || pat_index[mode] < 0)
1357                 panic("Unknown caching mode %d\n", mode);
1358
1359         switch (pmap->pm_type) {
1360         case PT_X86:
1361         case PT_RVI:
1362                 /* The PAT bit is different for PTE's and PDE's. */
1363                 pat_flag = is_pde ? X86_PG_PDE_PAT : X86_PG_PTE_PAT;
1364
1365                 /* Map the caching mode to a PAT index. */
1366                 pat_idx = pat_index[mode];
1367
1368                 /* Map the 3-bit index value into the PAT, PCD, and PWT bits. */
1369                 cache_bits = 0;
1370                 if (pat_idx & 0x4)
1371                         cache_bits |= pat_flag;
1372                 if (pat_idx & 0x2)
1373                         cache_bits |= PG_NC_PCD;
1374                 if (pat_idx & 0x1)
1375                         cache_bits |= PG_NC_PWT;
1376                 break;
1377
1378         case PT_EPT:
1379                 cache_bits = EPT_PG_IGNORE_PAT | EPT_PG_MEMORY_TYPE(mode);
1380                 break;
1381
1382         default:
1383                 panic("unsupported pmap type %d", pmap->pm_type);
1384         }
1385
1386         return (cache_bits);
1387 }
1388
1389 static int
1390 pmap_cache_mask(pmap_t pmap, boolean_t is_pde)
1391 {
1392         int mask;
1393
1394         switch (pmap->pm_type) {
1395         case PT_X86:
1396         case PT_RVI:
1397                 mask = is_pde ? X86_PG_PDE_CACHE : X86_PG_PTE_CACHE;
1398                 break;
1399         case PT_EPT:
1400                 mask = EPT_PG_IGNORE_PAT | EPT_PG_MEMORY_TYPE(0x7);
1401                 break;
1402         default:
1403                 panic("pmap_cache_mask: invalid pm_type %d", pmap->pm_type);
1404         }
1405
1406         return (mask);
1407 }
1408
1409 bool
1410 pmap_ps_enabled(pmap_t pmap)
1411 {
1412
1413         return (pg_ps_enabled && (pmap->pm_flags & PMAP_PDE_SUPERPAGE) != 0);
1414 }
1415
1416 static void
1417 pmap_update_pde_store(pmap_t pmap, pd_entry_t *pde, pd_entry_t newpde)
1418 {
1419
1420         switch (pmap->pm_type) {
1421         case PT_X86:
1422                 break;
1423         case PT_RVI:
1424         case PT_EPT:
1425                 /*
1426                  * XXX
1427                  * This is a little bogus since the generation number is
1428                  * supposed to be bumped up when a region of the address
1429                  * space is invalidated in the page tables.
1430                  *
1431                  * In this case the old PDE entry is valid but yet we want
1432                  * to make sure that any mappings using the old entry are
1433                  * invalidated in the TLB.
1434                  *
1435                  * The reason this works as expected is because we rendezvous
1436                  * "all" host cpus and force any vcpu context to exit as a
1437                  * side-effect.
1438                  */
1439                 atomic_add_acq_long(&pmap->pm_eptgen, 1);
1440                 break;
1441         default:
1442                 panic("pmap_update_pde_store: bad pm_type %d", pmap->pm_type);
1443         }
1444         pde_store(pde, newpde);
1445 }
1446
1447 /*
1448  * After changing the page size for the specified virtual address in the page
1449  * table, flush the corresponding entries from the processor's TLB.  Only the
1450  * calling processor's TLB is affected.
1451  *
1452  * The calling thread must be pinned to a processor.
1453  */
1454 static void
1455 pmap_update_pde_invalidate(pmap_t pmap, vm_offset_t va, pd_entry_t newpde)
1456 {
1457         pt_entry_t PG_G;
1458
1459         if (pmap_type_guest(pmap))
1460                 return;
1461
1462         KASSERT(pmap->pm_type == PT_X86,
1463             ("pmap_update_pde_invalidate: invalid type %d", pmap->pm_type));
1464
1465         PG_G = pmap_global_bit(pmap);
1466
1467         if ((newpde & PG_PS) == 0)
1468                 /* Demotion: flush a specific 2MB page mapping. */
1469                 invlpg(va);
1470         else if ((newpde & PG_G) == 0)
1471                 /*
1472                  * Promotion: flush every 4KB page mapping from the TLB
1473                  * because there are too many to flush individually.
1474                  */
1475                 invltlb();
1476         else {
1477                 /*
1478                  * Promotion: flush every 4KB page mapping from the TLB,
1479                  * including any global (PG_G) mappings.
1480                  */
1481                 invltlb_glob();
1482         }
1483 }
1484 #ifdef SMP
1485
1486 /*
1487  * For SMP, these functions have to use the IPI mechanism for coherence.
1488  *
1489  * N.B.: Before calling any of the following TLB invalidation functions,
1490  * the calling processor must ensure that all stores updating a non-
1491  * kernel page table are globally performed.  Otherwise, another
1492  * processor could cache an old, pre-update entry without being
1493  * invalidated.  This can happen one of two ways: (1) The pmap becomes
1494  * active on another processor after its pm_active field is checked by
1495  * one of the following functions but before a store updating the page
1496  * table is globally performed. (2) The pmap becomes active on another
1497  * processor before its pm_active field is checked but due to
1498  * speculative loads one of the following functions stills reads the
1499  * pmap as inactive on the other processor.
1500  * 
1501  * The kernel page table is exempt because its pm_active field is
1502  * immutable.  The kernel page table is always active on every
1503  * processor.
1504  */
1505
1506 /*
1507  * Interrupt the cpus that are executing in the guest context.
1508  * This will force the vcpu to exit and the cached EPT mappings
1509  * will be invalidated by the host before the next vmresume.
1510  */
1511 static __inline void
1512 pmap_invalidate_ept(pmap_t pmap)
1513 {
1514         int ipinum;
1515
1516         sched_pin();
1517         KASSERT(!CPU_ISSET(curcpu, &pmap->pm_active),
1518             ("pmap_invalidate_ept: absurd pm_active"));
1519
1520         /*
1521          * The TLB mappings associated with a vcpu context are not
1522          * flushed each time a different vcpu is chosen to execute.
1523          *
1524          * This is in contrast with a process's vtop mappings that
1525          * are flushed from the TLB on each context switch.
1526          *
1527          * Therefore we need to do more than just a TLB shootdown on
1528          * the active cpus in 'pmap->pm_active'. To do this we keep
1529          * track of the number of invalidations performed on this pmap.
1530          *
1531          * Each vcpu keeps a cache of this counter and compares it
1532          * just before a vmresume. If the counter is out-of-date an
1533          * invept will be done to flush stale mappings from the TLB.
1534          */
1535         atomic_add_acq_long(&pmap->pm_eptgen, 1);
1536
1537         /*
1538          * Force the vcpu to exit and trap back into the hypervisor.
1539          */
1540         ipinum = pmap->pm_flags & PMAP_NESTED_IPIMASK;
1541         ipi_selected(pmap->pm_active, ipinum);
1542         sched_unpin();
1543 }
1544
1545 void
1546 pmap_invalidate_page(pmap_t pmap, vm_offset_t va)
1547 {
1548         cpuset_t *mask;
1549         u_int cpuid, i;
1550
1551         if (pmap_type_guest(pmap)) {
1552                 pmap_invalidate_ept(pmap);
1553                 return;
1554         }
1555
1556         KASSERT(pmap->pm_type == PT_X86,
1557             ("pmap_invalidate_page: invalid type %d", pmap->pm_type));
1558
1559         sched_pin();
1560         if (pmap == kernel_pmap) {
1561                 invlpg(va);
1562                 mask = &all_cpus;
1563         } else {
1564                 cpuid = PCPU_GET(cpuid);
1565                 if (pmap == PCPU_GET(curpmap))
1566                         invlpg(va);
1567                 else if (pmap_pcid_enabled)
1568                         pmap->pm_pcids[cpuid].pm_gen = 0;
1569                 if (pmap_pcid_enabled) {
1570                         CPU_FOREACH(i) {
1571                                 if (cpuid != i)
1572                                         pmap->pm_pcids[i].pm_gen = 0;
1573                         }
1574                 }
1575                 mask = &pmap->pm_active;
1576         }
1577         smp_masked_invlpg(*mask, va);
1578         sched_unpin();
1579 }
1580
1581 /* 4k PTEs -- Chosen to exceed the total size of Broadwell L2 TLB */
1582 #define PMAP_INVLPG_THRESHOLD   (4 * 1024 * PAGE_SIZE)
1583
1584 void
1585 pmap_invalidate_range(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
1586 {
1587         cpuset_t *mask;
1588         vm_offset_t addr;
1589         u_int cpuid, i;
1590
1591         if (eva - sva >= PMAP_INVLPG_THRESHOLD) {
1592                 pmap_invalidate_all(pmap);
1593                 return;
1594         }
1595
1596         if (pmap_type_guest(pmap)) {
1597                 pmap_invalidate_ept(pmap);
1598                 return;
1599         }
1600
1601         KASSERT(pmap->pm_type == PT_X86,
1602             ("pmap_invalidate_range: invalid type %d", pmap->pm_type));
1603
1604         sched_pin();
1605         cpuid = PCPU_GET(cpuid);
1606         if (pmap == kernel_pmap) {
1607                 for (addr = sva; addr < eva; addr += PAGE_SIZE)
1608                         invlpg(addr);
1609                 mask = &all_cpus;
1610         } else {
1611                 if (pmap == PCPU_GET(curpmap)) {
1612                         for (addr = sva; addr < eva; addr += PAGE_SIZE)
1613                                 invlpg(addr);
1614                 } else if (pmap_pcid_enabled) {
1615                         pmap->pm_pcids[cpuid].pm_gen = 0;
1616                 }
1617                 if (pmap_pcid_enabled) {
1618                         CPU_FOREACH(i) {
1619                                 if (cpuid != i)
1620                                         pmap->pm_pcids[i].pm_gen = 0;
1621                         }
1622                 }
1623                 mask = &pmap->pm_active;
1624         }
1625         smp_masked_invlpg_range(*mask, sva, eva);
1626         sched_unpin();
1627 }
1628
1629 void
1630 pmap_invalidate_all(pmap_t pmap)
1631 {
1632         cpuset_t *mask;
1633         struct invpcid_descr d;
1634         u_int cpuid, i;
1635
1636         if (pmap_type_guest(pmap)) {
1637                 pmap_invalidate_ept(pmap);
1638                 return;
1639         }
1640
1641         KASSERT(pmap->pm_type == PT_X86,
1642             ("pmap_invalidate_all: invalid type %d", pmap->pm_type));
1643
1644         sched_pin();
1645         if (pmap == kernel_pmap) {
1646                 if (pmap_pcid_enabled && invpcid_works) {
1647                         bzero(&d, sizeof(d));
1648                         invpcid(&d, INVPCID_CTXGLOB);
1649                 } else {
1650                         invltlb_glob();
1651                 }
1652                 mask = &all_cpus;
1653         } else {
1654                 cpuid = PCPU_GET(cpuid);
1655                 if (pmap == PCPU_GET(curpmap)) {
1656                         if (pmap_pcid_enabled) {
1657                                 if (invpcid_works) {
1658                                         d.pcid = pmap->pm_pcids[cpuid].pm_pcid;
1659                                         d.pad = 0;
1660                                         d.addr = 0;
1661                                         invpcid(&d, INVPCID_CTX);
1662                                 } else {
1663                                         load_cr3(pmap->pm_cr3 | pmap->pm_pcids
1664                                             [PCPU_GET(cpuid)].pm_pcid);
1665                                 }
1666                         } else {
1667                                 invltlb();
1668                         }
1669                 } else if (pmap_pcid_enabled) {
1670                         pmap->pm_pcids[cpuid].pm_gen = 0;
1671                 }
1672                 if (pmap_pcid_enabled) {
1673                         CPU_FOREACH(i) {
1674                                 if (cpuid != i)
1675                                         pmap->pm_pcids[i].pm_gen = 0;
1676                         }
1677                 }
1678                 mask = &pmap->pm_active;
1679         }
1680         smp_masked_invltlb(*mask, pmap);
1681         sched_unpin();
1682 }
1683
1684 void
1685 pmap_invalidate_cache(void)
1686 {
1687
1688         sched_pin();
1689         wbinvd();
1690         smp_cache_flush();
1691         sched_unpin();
1692 }
1693
1694 struct pde_action {
1695         cpuset_t invalidate;    /* processors that invalidate their TLB */
1696         pmap_t pmap;
1697         vm_offset_t va;
1698         pd_entry_t *pde;
1699         pd_entry_t newpde;
1700         u_int store;            /* processor that updates the PDE */
1701 };
1702
1703 static void
1704 pmap_update_pde_action(void *arg)
1705 {
1706         struct pde_action *act = arg;
1707
1708         if (act->store == PCPU_GET(cpuid))
1709                 pmap_update_pde_store(act->pmap, act->pde, act->newpde);
1710 }
1711
1712 static void
1713 pmap_update_pde_teardown(void *arg)
1714 {
1715         struct pde_action *act = arg;
1716
1717         if (CPU_ISSET(PCPU_GET(cpuid), &act->invalidate))
1718                 pmap_update_pde_invalidate(act->pmap, act->va, act->newpde);
1719 }
1720
1721 /*
1722  * Change the page size for the specified virtual address in a way that
1723  * prevents any possibility of the TLB ever having two entries that map the
1724  * same virtual address using different page sizes.  This is the recommended
1725  * workaround for Erratum 383 on AMD Family 10h processors.  It prevents a
1726  * machine check exception for a TLB state that is improperly diagnosed as a
1727  * hardware error.
1728  */
1729 static void
1730 pmap_update_pde(pmap_t pmap, vm_offset_t va, pd_entry_t *pde, pd_entry_t newpde)
1731 {
1732         struct pde_action act;
1733         cpuset_t active, other_cpus;
1734         u_int cpuid;
1735
1736         sched_pin();
1737         cpuid = PCPU_GET(cpuid);
1738         other_cpus = all_cpus;
1739         CPU_CLR(cpuid, &other_cpus);
1740         if (pmap == kernel_pmap || pmap_type_guest(pmap)) 
1741                 active = all_cpus;
1742         else {
1743                 active = pmap->pm_active;
1744         }
1745         if (CPU_OVERLAP(&active, &other_cpus)) { 
1746                 act.store = cpuid;
1747                 act.invalidate = active;
1748                 act.va = va;
1749                 act.pmap = pmap;
1750                 act.pde = pde;
1751                 act.newpde = newpde;
1752                 CPU_SET(cpuid, &active);
1753                 smp_rendezvous_cpus(active,
1754                     smp_no_rendezvous_barrier, pmap_update_pde_action,
1755                     pmap_update_pde_teardown, &act);
1756         } else {
1757                 pmap_update_pde_store(pmap, pde, newpde);
1758                 if (CPU_ISSET(cpuid, &active))
1759                         pmap_update_pde_invalidate(pmap, va, newpde);
1760         }
1761         sched_unpin();
1762 }
1763 #else /* !SMP */
1764 /*
1765  * Normal, non-SMP, invalidation functions.
1766  */
1767 void
1768 pmap_invalidate_page(pmap_t pmap, vm_offset_t va)
1769 {
1770
1771         if (pmap->pm_type == PT_RVI || pmap->pm_type == PT_EPT) {
1772                 pmap->pm_eptgen++;
1773                 return;
1774         }
1775         KASSERT(pmap->pm_type == PT_X86,
1776             ("pmap_invalidate_range: unknown type %d", pmap->pm_type));
1777
1778         if (pmap == kernel_pmap || pmap == PCPU_GET(curpmap))
1779                 invlpg(va);
1780         else if (pmap_pcid_enabled)
1781                 pmap->pm_pcids[0].pm_gen = 0;
1782 }
1783
1784 void
1785 pmap_invalidate_range(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
1786 {
1787         vm_offset_t addr;
1788
1789         if (pmap->pm_type == PT_RVI || pmap->pm_type == PT_EPT) {
1790                 pmap->pm_eptgen++;
1791                 return;
1792         }
1793         KASSERT(pmap->pm_type == PT_X86,
1794             ("pmap_invalidate_range: unknown type %d", pmap->pm_type));
1795
1796         if (pmap == kernel_pmap || pmap == PCPU_GET(curpmap)) {
1797                 for (addr = sva; addr < eva; addr += PAGE_SIZE)
1798                         invlpg(addr);
1799         } else if (pmap_pcid_enabled) {
1800                 pmap->pm_pcids[0].pm_gen = 0;
1801         }
1802 }
1803
1804 void
1805 pmap_invalidate_all(pmap_t pmap)
1806 {
1807         struct invpcid_descr d;
1808
1809         if (pmap->pm_type == PT_RVI || pmap->pm_type == PT_EPT) {
1810                 pmap->pm_eptgen++;
1811                 return;
1812         }
1813         KASSERT(pmap->pm_type == PT_X86,
1814             ("pmap_invalidate_all: unknown type %d", pmap->pm_type));
1815
1816         if (pmap == kernel_pmap) {
1817                 if (pmap_pcid_enabled && invpcid_works) {
1818                         bzero(&d, sizeof(d));
1819                         invpcid(&d, INVPCID_CTXGLOB);
1820                 } else {
1821                         invltlb_glob();
1822                 }
1823         } else if (pmap == PCPU_GET(curpmap)) {
1824                 if (pmap_pcid_enabled) {
1825                         if (invpcid_works) {
1826                                 d.pcid = pmap->pm_pcids[0].pm_pcid;
1827                                 d.pad = 0;
1828                                 d.addr = 0;
1829                                 invpcid(&d, INVPCID_CTX);
1830                         } else {
1831                                 load_cr3(pmap->pm_cr3 | pmap->pm_pcids[0].
1832                                     pm_pcid);
1833                         }
1834                 } else {
1835                         invltlb();
1836                 }
1837         } else if (pmap_pcid_enabled) {
1838                 pmap->pm_pcids[0].pm_gen = 0;
1839         }
1840 }
1841
1842 PMAP_INLINE void
1843 pmap_invalidate_cache(void)
1844 {
1845
1846         wbinvd();
1847 }
1848
1849 static void
1850 pmap_update_pde(pmap_t pmap, vm_offset_t va, pd_entry_t *pde, pd_entry_t newpde)
1851 {
1852
1853         pmap_update_pde_store(pmap, pde, newpde);
1854         if (pmap == kernel_pmap || pmap == PCPU_GET(curpmap))
1855                 pmap_update_pde_invalidate(pmap, va, newpde);
1856         else
1857                 pmap->pm_pcids[0].pm_gen = 0;
1858 }
1859 #endif /* !SMP */
1860
1861 static void
1862 pmap_invalidate_pde_page(pmap_t pmap, vm_offset_t va, pd_entry_t pde)
1863 {
1864
1865         /*
1866          * When the PDE has PG_PROMOTED set, the 2MB page mapping was created
1867          * by a promotion that did not invalidate the 512 4KB page mappings
1868          * that might exist in the TLB.  Consequently, at this point, the TLB
1869          * may hold both 4KB and 2MB page mappings for the address range [va,
1870          * va + NBPDR).  Therefore, the entire range must be invalidated here.
1871          * In contrast, when PG_PROMOTED is clear, the TLB will not hold any
1872          * 4KB page mappings for the address range [va, va + NBPDR), and so a
1873          * single INVLPG suffices to invalidate the 2MB page mapping from the
1874          * TLB.
1875          */
1876         if ((pde & PG_PROMOTED) != 0)
1877                 pmap_invalidate_range(pmap, va, va + NBPDR - 1);
1878         else
1879                 pmap_invalidate_page(pmap, va);
1880 }
1881
1882 #define PMAP_CLFLUSH_THRESHOLD   (2 * 1024 * 1024)
1883
1884 void
1885 pmap_invalidate_cache_range(vm_offset_t sva, vm_offset_t eva, boolean_t force)
1886 {
1887
1888         if (force) {
1889                 sva &= ~(vm_offset_t)(cpu_clflush_line_size - 1);
1890         } else {
1891                 KASSERT((sva & PAGE_MASK) == 0,
1892                     ("pmap_invalidate_cache_range: sva not page-aligned"));
1893                 KASSERT((eva & PAGE_MASK) == 0,
1894                     ("pmap_invalidate_cache_range: eva not page-aligned"));
1895         }
1896
1897         if ((cpu_feature & CPUID_SS) != 0 && !force)
1898                 ; /* If "Self Snoop" is supported and allowed, do nothing. */
1899         else if ((cpu_stdext_feature & CPUID_STDEXT_CLFLUSHOPT) != 0 &&
1900             eva - sva < PMAP_CLFLUSH_THRESHOLD) {
1901                 /*
1902                  * XXX: Some CPUs fault, hang, or trash the local APIC
1903                  * registers if we use CLFLUSH on the local APIC
1904                  * range.  The local APIC is always uncached, so we
1905                  * don't need to flush for that range anyway.
1906                  */
1907                 if (pmap_kextract(sva) == lapic_paddr)
1908                         return;
1909
1910                 /*
1911                  * Otherwise, do per-cache line flush.  Use the sfence
1912                  * instruction to insure that previous stores are
1913                  * included in the write-back.  The processor
1914                  * propagates flush to other processors in the cache
1915                  * coherence domain.
1916                  */
1917                 sfence();
1918                 for (; sva < eva; sva += cpu_clflush_line_size)
1919                         clflushopt(sva);
1920                 sfence();
1921         } else if ((cpu_feature & CPUID_CLFSH) != 0 &&
1922             eva - sva < PMAP_CLFLUSH_THRESHOLD) {
1923                 if (pmap_kextract(sva) == lapic_paddr)
1924                         return;
1925                 /*
1926                  * Writes are ordered by CLFLUSH on Intel CPUs.
1927                  */
1928                 if (cpu_vendor_id != CPU_VENDOR_INTEL)
1929                         mfence();
1930                 for (; sva < eva; sva += cpu_clflush_line_size)
1931                         clflush(sva);
1932                 if (cpu_vendor_id != CPU_VENDOR_INTEL)
1933                         mfence();
1934         } else {
1935
1936                 /*
1937                  * No targeted cache flush methods are supported by CPU,
1938                  * or the supplied range is bigger than 2MB.
1939                  * Globally invalidate cache.
1940                  */
1941                 pmap_invalidate_cache();
1942         }
1943 }
1944
1945 /*
1946  * Remove the specified set of pages from the data and instruction caches.
1947  *
1948  * In contrast to pmap_invalidate_cache_range(), this function does not
1949  * rely on the CPU's self-snoop feature, because it is intended for use
1950  * when moving pages into a different cache domain.
1951  */
1952 void
1953 pmap_invalidate_cache_pages(vm_page_t *pages, int count)
1954 {
1955         vm_offset_t daddr, eva;
1956         int i;
1957         bool useclflushopt;
1958
1959         useclflushopt = (cpu_stdext_feature & CPUID_STDEXT_CLFLUSHOPT) != 0;
1960         if (count >= PMAP_CLFLUSH_THRESHOLD / PAGE_SIZE ||
1961             ((cpu_feature & CPUID_CLFSH) == 0 && !useclflushopt))
1962                 pmap_invalidate_cache();
1963         else {
1964                 if (useclflushopt)
1965                         sfence();
1966                 else if (cpu_vendor_id != CPU_VENDOR_INTEL)
1967                         mfence();
1968                 for (i = 0; i < count; i++) {
1969                         daddr = PHYS_TO_DMAP(VM_PAGE_TO_PHYS(pages[i]));
1970                         eva = daddr + PAGE_SIZE;
1971                         for (; daddr < eva; daddr += cpu_clflush_line_size) {
1972                                 if (useclflushopt)
1973                                         clflushopt(daddr);
1974                                 else
1975                                         clflush(daddr);
1976                         }
1977                 }
1978                 if (useclflushopt)
1979                         sfence();
1980                 else if (cpu_vendor_id != CPU_VENDOR_INTEL)
1981                         mfence();
1982         }
1983 }
1984
1985 /*
1986  *      Routine:        pmap_extract
1987  *      Function:
1988  *              Extract the physical page address associated
1989  *              with the given map/virtual_address pair.
1990  */
1991 vm_paddr_t 
1992 pmap_extract(pmap_t pmap, vm_offset_t va)
1993 {
1994         pdp_entry_t *pdpe;
1995         pd_entry_t *pde;
1996         pt_entry_t *pte, PG_V;
1997         vm_paddr_t pa;
1998
1999         pa = 0;
2000         PG_V = pmap_valid_bit(pmap);
2001         PMAP_LOCK(pmap);
2002         pdpe = pmap_pdpe(pmap, va);
2003         if (pdpe != NULL && (*pdpe & PG_V) != 0) {
2004                 if ((*pdpe & PG_PS) != 0)
2005                         pa = (*pdpe & PG_PS_FRAME) | (va & PDPMASK);
2006                 else {
2007                         pde = pmap_pdpe_to_pde(pdpe, va);
2008                         if ((*pde & PG_V) != 0) {
2009                                 if ((*pde & PG_PS) != 0) {
2010                                         pa = (*pde & PG_PS_FRAME) |
2011                                             (va & PDRMASK);
2012                                 } else {
2013                                         pte = pmap_pde_to_pte(pde, va);
2014                                         pa = (*pte & PG_FRAME) |
2015                                             (va & PAGE_MASK);
2016                                 }
2017                         }
2018                 }
2019         }
2020         PMAP_UNLOCK(pmap);
2021         return (pa);
2022 }
2023
2024 /*
2025  *      Routine:        pmap_extract_and_hold
2026  *      Function:
2027  *              Atomically extract and hold the physical page
2028  *              with the given pmap and virtual address pair
2029  *              if that mapping permits the given protection.
2030  */
2031 vm_page_t
2032 pmap_extract_and_hold(pmap_t pmap, vm_offset_t va, vm_prot_t prot)
2033 {
2034         pd_entry_t pde, *pdep;
2035         pt_entry_t pte, PG_RW, PG_V;
2036         vm_paddr_t pa;
2037         vm_page_t m;
2038
2039         pa = 0;
2040         m = NULL;
2041         PG_RW = pmap_rw_bit(pmap);
2042         PG_V = pmap_valid_bit(pmap);
2043         PMAP_LOCK(pmap);
2044 retry:
2045         pdep = pmap_pde(pmap, va);
2046         if (pdep != NULL && (pde = *pdep)) {
2047                 if (pde & PG_PS) {
2048                         if ((pde & PG_RW) || (prot & VM_PROT_WRITE) == 0) {
2049                                 if (vm_page_pa_tryrelock(pmap, (pde &
2050                                     PG_PS_FRAME) | (va & PDRMASK), &pa))
2051                                         goto retry;
2052                                 m = PHYS_TO_VM_PAGE((pde & PG_PS_FRAME) |
2053                                     (va & PDRMASK));
2054                                 vm_page_hold(m);
2055                         }
2056                 } else {
2057                         pte = *pmap_pde_to_pte(pdep, va);
2058                         if ((pte & PG_V) &&
2059                             ((pte & PG_RW) || (prot & VM_PROT_WRITE) == 0)) {
2060                                 if (vm_page_pa_tryrelock(pmap, pte & PG_FRAME,
2061                                     &pa))
2062                                         goto retry;
2063                                 m = PHYS_TO_VM_PAGE(pte & PG_FRAME);
2064                                 vm_page_hold(m);
2065                         }
2066                 }
2067         }
2068         PA_UNLOCK_COND(pa);
2069         PMAP_UNLOCK(pmap);
2070         return (m);
2071 }
2072
2073 vm_paddr_t
2074 pmap_kextract(vm_offset_t va)
2075 {
2076         pd_entry_t pde;
2077         vm_paddr_t pa;
2078
2079         if (va >= DMAP_MIN_ADDRESS && va < DMAP_MAX_ADDRESS) {
2080                 pa = DMAP_TO_PHYS(va);
2081         } else {
2082                 pde = *vtopde(va);
2083                 if (pde & PG_PS) {
2084                         pa = (pde & PG_PS_FRAME) | (va & PDRMASK);
2085                 } else {
2086                         /*
2087                          * Beware of a concurrent promotion that changes the
2088                          * PDE at this point!  For example, vtopte() must not
2089                          * be used to access the PTE because it would use the
2090                          * new PDE.  It is, however, safe to use the old PDE
2091                          * because the page table page is preserved by the
2092                          * promotion.
2093                          */
2094                         pa = *pmap_pde_to_pte(&pde, va);
2095                         pa = (pa & PG_FRAME) | (va & PAGE_MASK);
2096                 }
2097         }
2098         return (pa);
2099 }
2100
2101 /***************************************************
2102  * Low level mapping routines.....
2103  ***************************************************/
2104
2105 /*
2106  * Add a wired page to the kva.
2107  * Note: not SMP coherent.
2108  */
2109 PMAP_INLINE void 
2110 pmap_kenter(vm_offset_t va, vm_paddr_t pa)
2111 {
2112         pt_entry_t *pte;
2113
2114         pte = vtopte(va);
2115         pte_store(pte, pa | X86_PG_RW | X86_PG_V | X86_PG_G);
2116 }
2117
2118 static __inline void
2119 pmap_kenter_attr(vm_offset_t va, vm_paddr_t pa, int mode)
2120 {
2121         pt_entry_t *pte;
2122         int cache_bits;
2123
2124         pte = vtopte(va);
2125         cache_bits = pmap_cache_bits(kernel_pmap, mode, 0);
2126         pte_store(pte, pa | X86_PG_RW | X86_PG_V | X86_PG_G | cache_bits);
2127 }
2128
2129 /*
2130  * Remove a page from the kernel pagetables.
2131  * Note: not SMP coherent.
2132  */
2133 PMAP_INLINE void
2134 pmap_kremove(vm_offset_t va)
2135 {
2136         pt_entry_t *pte;
2137
2138         pte = vtopte(va);
2139         pte_clear(pte);
2140 }
2141
2142 /*
2143  *      Used to map a range of physical addresses into kernel
2144  *      virtual address space.
2145  *
2146  *      The value passed in '*virt' is a suggested virtual address for
2147  *      the mapping. Architectures which can support a direct-mapped
2148  *      physical to virtual region can return the appropriate address
2149  *      within that region, leaving '*virt' unchanged. Other
2150  *      architectures should map the pages starting at '*virt' and
2151  *      update '*virt' with the first usable address after the mapped
2152  *      region.
2153  */
2154 vm_offset_t
2155 pmap_map(vm_offset_t *virt, vm_paddr_t start, vm_paddr_t end, int prot)
2156 {
2157         return PHYS_TO_DMAP(start);
2158 }
2159
2160
2161 /*
2162  * Add a list of wired pages to the kva
2163  * this routine is only used for temporary
2164  * kernel mappings that do not need to have
2165  * page modification or references recorded.
2166  * Note that old mappings are simply written
2167  * over.  The page *must* be wired.
2168  * Note: SMP coherent.  Uses a ranged shootdown IPI.
2169  */
2170 void
2171 pmap_qenter(vm_offset_t sva, vm_page_t *ma, int count)
2172 {
2173         pt_entry_t *endpte, oldpte, pa, *pte;
2174         vm_page_t m;
2175         int cache_bits;
2176
2177         oldpte = 0;
2178         pte = vtopte(sva);
2179         endpte = pte + count;
2180         while (pte < endpte) {
2181                 m = *ma++;
2182                 cache_bits = pmap_cache_bits(kernel_pmap, m->md.pat_mode, 0);
2183                 pa = VM_PAGE_TO_PHYS(m) | cache_bits;
2184                 if ((*pte & (PG_FRAME | X86_PG_PTE_CACHE)) != pa) {
2185                         oldpte |= *pte;
2186                         pte_store(pte, pa | X86_PG_G | X86_PG_RW | X86_PG_V);
2187                 }
2188                 pte++;
2189         }
2190         if (__predict_false((oldpte & X86_PG_V) != 0))
2191                 pmap_invalidate_range(kernel_pmap, sva, sva + count *
2192                     PAGE_SIZE);
2193 }
2194
2195 /*
2196  * This routine tears out page mappings from the
2197  * kernel -- it is meant only for temporary mappings.
2198  * Note: SMP coherent.  Uses a ranged shootdown IPI.
2199  */
2200 void
2201 pmap_qremove(vm_offset_t sva, int count)
2202 {
2203         vm_offset_t va;
2204
2205         va = sva;
2206         while (count-- > 0) {
2207                 KASSERT(va >= VM_MIN_KERNEL_ADDRESS, ("usermode va %lx", va));
2208                 pmap_kremove(va);
2209                 va += PAGE_SIZE;
2210         }
2211         pmap_invalidate_range(kernel_pmap, sva, va);
2212 }
2213
2214 /***************************************************
2215  * Page table page management routines.....
2216  ***************************************************/
2217 static __inline void
2218 pmap_free_zero_pages(struct spglist *free)
2219 {
2220         vm_page_t m;
2221         int count;
2222
2223         for (count = 0; (m = SLIST_FIRST(free)) != NULL; count++) {
2224                 SLIST_REMOVE_HEAD(free, plinks.s.ss);
2225                 /* Preserve the page's PG_ZERO setting. */
2226                 vm_page_free_toq(m);
2227         }
2228         atomic_subtract_int(&vm_cnt.v_wire_count, count);
2229 }
2230
2231 /*
2232  * Schedule the specified unused page table page to be freed.  Specifically,
2233  * add the page to the specified list of pages that will be released to the
2234  * physical memory manager after the TLB has been updated.
2235  */
2236 static __inline void
2237 pmap_add_delayed_free_list(vm_page_t m, struct spglist *free,
2238     boolean_t set_PG_ZERO)
2239 {
2240
2241         if (set_PG_ZERO)
2242                 m->flags |= PG_ZERO;
2243         else
2244                 m->flags &= ~PG_ZERO;
2245         SLIST_INSERT_HEAD(free, m, plinks.s.ss);
2246 }
2247         
2248 /*
2249  * Inserts the specified page table page into the specified pmap's collection
2250  * of idle page table pages.  Each of a pmap's page table pages is responsible
2251  * for mapping a distinct range of virtual addresses.  The pmap's collection is
2252  * ordered by this virtual address range.
2253  */
2254 static __inline int
2255 pmap_insert_pt_page(pmap_t pmap, vm_page_t mpte)
2256 {
2257
2258         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
2259         return (vm_radix_insert(&pmap->pm_root, mpte));
2260 }
2261
2262 /*
2263  * Removes the page table page mapping the specified virtual address from the
2264  * specified pmap's collection of idle page table pages, and returns it.
2265  * Otherwise, returns NULL if there is no page table page corresponding to the
2266  * specified virtual address.
2267  */
2268 static __inline vm_page_t
2269 pmap_remove_pt_page(pmap_t pmap, vm_offset_t va)
2270 {
2271
2272         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
2273         return (vm_radix_remove(&pmap->pm_root, pmap_pde_pindex(va)));
2274 }
2275
2276 /*
2277  * Decrements a page table page's wire count, which is used to record the
2278  * number of valid page table entries within the page.  If the wire count
2279  * drops to zero, then the page table page is unmapped.  Returns TRUE if the
2280  * page table page was unmapped and FALSE otherwise.
2281  */
2282 static inline boolean_t
2283 pmap_unwire_ptp(pmap_t pmap, vm_offset_t va, vm_page_t m, struct spglist *free)
2284 {
2285
2286         --m->wire_count;
2287         if (m->wire_count == 0) {
2288                 _pmap_unwire_ptp(pmap, va, m, free);
2289                 return (TRUE);
2290         } else
2291                 return (FALSE);
2292 }
2293
2294 static void
2295 _pmap_unwire_ptp(pmap_t pmap, vm_offset_t va, vm_page_t m, struct spglist *free)
2296 {
2297
2298         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
2299         /*
2300          * unmap the page table page
2301          */
2302         if (m->pindex >= (NUPDE + NUPDPE)) {
2303                 /* PDP page */
2304                 pml4_entry_t *pml4;
2305                 pml4 = pmap_pml4e(pmap, va);
2306                 *pml4 = 0;
2307         } else if (m->pindex >= NUPDE) {
2308                 /* PD page */
2309                 pdp_entry_t *pdp;
2310                 pdp = pmap_pdpe(pmap, va);
2311                 *pdp = 0;
2312         } else {
2313                 /* PTE page */
2314                 pd_entry_t *pd;
2315                 pd = pmap_pde(pmap, va);
2316                 *pd = 0;
2317         }
2318         pmap_resident_count_dec(pmap, 1);
2319         if (m->pindex < NUPDE) {
2320                 /* We just released a PT, unhold the matching PD */
2321                 vm_page_t pdpg;
2322
2323                 pdpg = PHYS_TO_VM_PAGE(*pmap_pdpe(pmap, va) & PG_FRAME);
2324                 pmap_unwire_ptp(pmap, va, pdpg, free);
2325         }
2326         if (m->pindex >= NUPDE && m->pindex < (NUPDE + NUPDPE)) {
2327                 /* We just released a PD, unhold the matching PDP */
2328                 vm_page_t pdppg;
2329
2330                 pdppg = PHYS_TO_VM_PAGE(*pmap_pml4e(pmap, va) & PG_FRAME);
2331                 pmap_unwire_ptp(pmap, va, pdppg, free);
2332         }
2333
2334         /* 
2335          * Put page on a list so that it is released after
2336          * *ALL* TLB shootdown is done
2337          */
2338         pmap_add_delayed_free_list(m, free, TRUE);
2339 }
2340
2341 /*
2342  * After removing a page table entry, this routine is used to
2343  * conditionally free the page, and manage the hold/wire counts.
2344  */
2345 static int
2346 pmap_unuse_pt(pmap_t pmap, vm_offset_t va, pd_entry_t ptepde,
2347     struct spglist *free)
2348 {
2349         vm_page_t mpte;
2350
2351         if (va >= VM_MAXUSER_ADDRESS)
2352                 return (0);
2353         KASSERT(ptepde != 0, ("pmap_unuse_pt: ptepde != 0"));
2354         mpte = PHYS_TO_VM_PAGE(ptepde & PG_FRAME);
2355         return (pmap_unwire_ptp(pmap, va, mpte, free));
2356 }
2357
2358 void
2359 pmap_pinit0(pmap_t pmap)
2360 {
2361         int i;
2362
2363         PMAP_LOCK_INIT(pmap);
2364         pmap->pm_pml4 = (pml4_entry_t *)PHYS_TO_DMAP(KPML4phys);
2365         pmap->pm_cr3 = KPML4phys;
2366         pmap->pm_root.rt_root = 0;
2367         CPU_ZERO(&pmap->pm_active);
2368         TAILQ_INIT(&pmap->pm_pvchunk);
2369         bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
2370         pmap->pm_flags = pmap_flags;
2371         CPU_FOREACH(i) {
2372                 pmap->pm_pcids[i].pm_pcid = PMAP_PCID_NONE;
2373                 pmap->pm_pcids[i].pm_gen = 0;
2374         }
2375         PCPU_SET(curpmap, kernel_pmap);
2376         pmap_activate(curthread);
2377         CPU_FILL(&kernel_pmap->pm_active);
2378 }
2379
2380 void
2381 pmap_pinit_pml4(vm_page_t pml4pg)
2382 {
2383         pml4_entry_t *pm_pml4;
2384         int i;
2385
2386         pm_pml4 = (pml4_entry_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(pml4pg));
2387
2388         /* Wire in kernel global address entries. */
2389         for (i = 0; i < NKPML4E; i++) {
2390                 pm_pml4[KPML4BASE + i] = (KPDPphys + ptoa(i)) | X86_PG_RW |
2391                     X86_PG_V | PG_U;
2392         }
2393         for (i = 0; i < ndmpdpphys; i++) {
2394                 pm_pml4[DMPML4I + i] = (DMPDPphys + ptoa(i)) | X86_PG_RW |
2395                     X86_PG_V | PG_U;
2396         }
2397
2398         /* install self-referential address mapping entry(s) */
2399         pm_pml4[PML4PML4I] = VM_PAGE_TO_PHYS(pml4pg) | X86_PG_V | X86_PG_RW |
2400             X86_PG_A | X86_PG_M;
2401 }
2402
2403 /*
2404  * Initialize a preallocated and zeroed pmap structure,
2405  * such as one in a vmspace structure.
2406  */
2407 int
2408 pmap_pinit_type(pmap_t pmap, enum pmap_type pm_type, int flags)
2409 {
2410         vm_page_t pml4pg;
2411         vm_paddr_t pml4phys;
2412         int i;
2413
2414         /*
2415          * allocate the page directory page
2416          */
2417         while ((pml4pg = vm_page_alloc(NULL, 0, VM_ALLOC_NORMAL |
2418             VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO)) == NULL)
2419                 VM_WAIT;
2420
2421         pml4phys = VM_PAGE_TO_PHYS(pml4pg);
2422         pmap->pm_pml4 = (pml4_entry_t *)PHYS_TO_DMAP(pml4phys);
2423         CPU_FOREACH(i) {
2424                 pmap->pm_pcids[i].pm_pcid = PMAP_PCID_NONE;
2425                 pmap->pm_pcids[i].pm_gen = 0;
2426         }
2427         pmap->pm_cr3 = ~0;      /* initialize to an invalid value */
2428
2429         if ((pml4pg->flags & PG_ZERO) == 0)
2430                 pagezero(pmap->pm_pml4);
2431
2432         /*
2433          * Do not install the host kernel mappings in the nested page
2434          * tables. These mappings are meaningless in the guest physical
2435          * address space.
2436          */
2437         if ((pmap->pm_type = pm_type) == PT_X86) {
2438                 pmap->pm_cr3 = pml4phys;
2439                 pmap_pinit_pml4(pml4pg);
2440         }
2441
2442         pmap->pm_root.rt_root = 0;
2443         CPU_ZERO(&pmap->pm_active);
2444         TAILQ_INIT(&pmap->pm_pvchunk);
2445         bzero(&pmap->pm_stats, sizeof pmap->pm_stats);
2446         pmap->pm_flags = flags;
2447         pmap->pm_eptgen = 0;
2448
2449         return (1);
2450 }
2451
2452 int
2453 pmap_pinit(pmap_t pmap)
2454 {
2455
2456         return (pmap_pinit_type(pmap, PT_X86, pmap_flags));
2457 }
2458
2459 /*
2460  * This routine is called if the desired page table page does not exist.
2461  *
2462  * If page table page allocation fails, this routine may sleep before
2463  * returning NULL.  It sleeps only if a lock pointer was given.
2464  *
2465  * Note: If a page allocation fails at page table level two or three,
2466  * one or two pages may be held during the wait, only to be released
2467  * afterwards.  This conservative approach is easily argued to avoid
2468  * race conditions.
2469  */
2470 static vm_page_t
2471 _pmap_allocpte(pmap_t pmap, vm_pindex_t ptepindex, struct rwlock **lockp)
2472 {
2473         vm_page_t m, pdppg, pdpg;
2474         pt_entry_t PG_A, PG_M, PG_RW, PG_V;
2475
2476         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
2477
2478         PG_A = pmap_accessed_bit(pmap);
2479         PG_M = pmap_modified_bit(pmap);
2480         PG_V = pmap_valid_bit(pmap);
2481         PG_RW = pmap_rw_bit(pmap);
2482
2483         /*
2484          * Allocate a page table page.
2485          */
2486         if ((m = vm_page_alloc(NULL, ptepindex, VM_ALLOC_NOOBJ |
2487             VM_ALLOC_WIRED | VM_ALLOC_ZERO)) == NULL) {
2488                 if (lockp != NULL) {
2489                         RELEASE_PV_LIST_LOCK(lockp);
2490                         PMAP_UNLOCK(pmap);
2491                         PMAP_ASSERT_NOT_IN_DI();
2492                         VM_WAIT;
2493                         PMAP_LOCK(pmap);
2494                 }
2495
2496                 /*
2497                  * Indicate the need to retry.  While waiting, the page table
2498                  * page may have been allocated.
2499                  */
2500                 return (NULL);
2501         }
2502         if ((m->flags & PG_ZERO) == 0)
2503                 pmap_zero_page(m);
2504
2505         /*
2506          * Map the pagetable page into the process address space, if
2507          * it isn't already there.
2508          */
2509
2510         if (ptepindex >= (NUPDE + NUPDPE)) {
2511                 pml4_entry_t *pml4;
2512                 vm_pindex_t pml4index;
2513
2514                 /* Wire up a new PDPE page */
2515                 pml4index = ptepindex - (NUPDE + NUPDPE);
2516                 pml4 = &pmap->pm_pml4[pml4index];
2517                 *pml4 = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | PG_A | PG_M;
2518
2519         } else if (ptepindex >= NUPDE) {
2520                 vm_pindex_t pml4index;
2521                 vm_pindex_t pdpindex;
2522                 pml4_entry_t *pml4;
2523                 pdp_entry_t *pdp;
2524
2525                 /* Wire up a new PDE page */
2526                 pdpindex = ptepindex - NUPDE;
2527                 pml4index = pdpindex >> NPML4EPGSHIFT;
2528
2529                 pml4 = &pmap->pm_pml4[pml4index];
2530                 if ((*pml4 & PG_V) == 0) {
2531                         /* Have to allocate a new pdp, recurse */
2532                         if (_pmap_allocpte(pmap, NUPDE + NUPDPE + pml4index,
2533                             lockp) == NULL) {
2534                                 --m->wire_count;
2535                                 atomic_subtract_int(&vm_cnt.v_wire_count, 1);
2536                                 vm_page_free_zero(m);
2537                                 return (NULL);
2538                         }
2539                 } else {
2540                         /* Add reference to pdp page */
2541                         pdppg = PHYS_TO_VM_PAGE(*pml4 & PG_FRAME);
2542                         pdppg->wire_count++;
2543                 }
2544                 pdp = (pdp_entry_t *)PHYS_TO_DMAP(*pml4 & PG_FRAME);
2545
2546                 /* Now find the pdp page */
2547                 pdp = &pdp[pdpindex & ((1ul << NPDPEPGSHIFT) - 1)];
2548                 *pdp = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | PG_A | PG_M;
2549
2550         } else {
2551                 vm_pindex_t pml4index;
2552                 vm_pindex_t pdpindex;
2553                 pml4_entry_t *pml4;
2554                 pdp_entry_t *pdp;
2555                 pd_entry_t *pd;
2556
2557                 /* Wire up a new PTE page */
2558                 pdpindex = ptepindex >> NPDPEPGSHIFT;
2559                 pml4index = pdpindex >> NPML4EPGSHIFT;
2560
2561                 /* First, find the pdp and check that its valid. */
2562                 pml4 = &pmap->pm_pml4[pml4index];
2563                 if ((*pml4 & PG_V) == 0) {
2564                         /* Have to allocate a new pd, recurse */
2565                         if (_pmap_allocpte(pmap, NUPDE + pdpindex,
2566                             lockp) == NULL) {
2567                                 --m->wire_count;
2568                                 atomic_subtract_int(&vm_cnt.v_wire_count, 1);
2569                                 vm_page_free_zero(m);
2570                                 return (NULL);
2571                         }
2572                         pdp = (pdp_entry_t *)PHYS_TO_DMAP(*pml4 & PG_FRAME);
2573                         pdp = &pdp[pdpindex & ((1ul << NPDPEPGSHIFT) - 1)];
2574                 } else {
2575                         pdp = (pdp_entry_t *)PHYS_TO_DMAP(*pml4 & PG_FRAME);
2576                         pdp = &pdp[pdpindex & ((1ul << NPDPEPGSHIFT) - 1)];
2577                         if ((*pdp & PG_V) == 0) {
2578                                 /* Have to allocate a new pd, recurse */
2579                                 if (_pmap_allocpte(pmap, NUPDE + pdpindex,
2580                                     lockp) == NULL) {
2581                                         --m->wire_count;
2582                                         atomic_subtract_int(&vm_cnt.v_wire_count,
2583                                             1);
2584                                         vm_page_free_zero(m);
2585                                         return (NULL);
2586                                 }
2587                         } else {
2588                                 /* Add reference to the pd page */
2589                                 pdpg = PHYS_TO_VM_PAGE(*pdp & PG_FRAME);
2590                                 pdpg->wire_count++;
2591                         }
2592                 }
2593                 pd = (pd_entry_t *)PHYS_TO_DMAP(*pdp & PG_FRAME);
2594
2595                 /* Now we know where the page directory page is */
2596                 pd = &pd[ptepindex & ((1ul << NPDEPGSHIFT) - 1)];
2597                 *pd = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | PG_A | PG_M;
2598         }
2599
2600         pmap_resident_count_inc(pmap, 1);
2601
2602         return (m);
2603 }
2604
2605 static vm_page_t
2606 pmap_allocpde(pmap_t pmap, vm_offset_t va, struct rwlock **lockp)
2607 {
2608         vm_pindex_t pdpindex, ptepindex;
2609         pdp_entry_t *pdpe, PG_V;
2610         vm_page_t pdpg;
2611
2612         PG_V = pmap_valid_bit(pmap);
2613
2614 retry:
2615         pdpe = pmap_pdpe(pmap, va);
2616         if (pdpe != NULL && (*pdpe & PG_V) != 0) {
2617                 /* Add a reference to the pd page. */
2618                 pdpg = PHYS_TO_VM_PAGE(*pdpe & PG_FRAME);
2619                 pdpg->wire_count++;
2620         } else {
2621                 /* Allocate a pd page. */
2622                 ptepindex = pmap_pde_pindex(va);
2623                 pdpindex = ptepindex >> NPDPEPGSHIFT;
2624                 pdpg = _pmap_allocpte(pmap, NUPDE + pdpindex, lockp);
2625                 if (pdpg == NULL && lockp != NULL)
2626                         goto retry;
2627         }
2628         return (pdpg);
2629 }
2630
2631 static vm_page_t
2632 pmap_allocpte(pmap_t pmap, vm_offset_t va, struct rwlock **lockp)
2633 {
2634         vm_pindex_t ptepindex;
2635         pd_entry_t *pd, PG_V;
2636         vm_page_t m;
2637
2638         PG_V = pmap_valid_bit(pmap);
2639
2640         /*
2641          * Calculate pagetable page index
2642          */
2643         ptepindex = pmap_pde_pindex(va);
2644 retry:
2645         /*
2646          * Get the page directory entry
2647          */
2648         pd = pmap_pde(pmap, va);
2649
2650         /*
2651          * This supports switching from a 2MB page to a
2652          * normal 4K page.
2653          */
2654         if (pd != NULL && (*pd & (PG_PS | PG_V)) == (PG_PS | PG_V)) {
2655                 if (!pmap_demote_pde_locked(pmap, pd, va, lockp)) {
2656                         /*
2657                          * Invalidation of the 2MB page mapping may have caused
2658                          * the deallocation of the underlying PD page.
2659                          */
2660                         pd = NULL;
2661                 }
2662         }
2663
2664         /*
2665          * If the page table page is mapped, we just increment the
2666          * hold count, and activate it.
2667          */
2668         if (pd != NULL && (*pd & PG_V) != 0) {
2669                 m = PHYS_TO_VM_PAGE(*pd & PG_FRAME);
2670                 m->wire_count++;
2671         } else {
2672                 /*
2673                  * Here if the pte page isn't mapped, or if it has been
2674                  * deallocated.
2675                  */
2676                 m = _pmap_allocpte(pmap, ptepindex, lockp);
2677                 if (m == NULL && lockp != NULL)
2678                         goto retry;
2679         }
2680         return (m);
2681 }
2682
2683
2684 /***************************************************
2685  * Pmap allocation/deallocation routines.
2686  ***************************************************/
2687
2688 /*
2689  * Release any resources held by the given physical map.
2690  * Called when a pmap initialized by pmap_pinit is being released.
2691  * Should only be called if the map contains no valid mappings.
2692  */
2693 void
2694 pmap_release(pmap_t pmap)
2695 {
2696         vm_page_t m;
2697         int i;
2698
2699         KASSERT(pmap->pm_stats.resident_count == 0,
2700             ("pmap_release: pmap resident count %ld != 0",
2701             pmap->pm_stats.resident_count));
2702         KASSERT(vm_radix_is_empty(&pmap->pm_root),
2703             ("pmap_release: pmap has reserved page table page(s)"));
2704         KASSERT(CPU_EMPTY(&pmap->pm_active),
2705             ("releasing active pmap %p", pmap));
2706
2707         m = PHYS_TO_VM_PAGE(DMAP_TO_PHYS((vm_offset_t)pmap->pm_pml4));
2708
2709         for (i = 0; i < NKPML4E; i++)   /* KVA */
2710                 pmap->pm_pml4[KPML4BASE + i] = 0;
2711         for (i = 0; i < ndmpdpphys; i++)/* Direct Map */
2712                 pmap->pm_pml4[DMPML4I + i] = 0;
2713         pmap->pm_pml4[PML4PML4I] = 0;   /* Recursive Mapping */
2714
2715         m->wire_count--;
2716         atomic_subtract_int(&vm_cnt.v_wire_count, 1);
2717         vm_page_free_zero(m);
2718 }
2719 \f
2720 static int
2721 kvm_size(SYSCTL_HANDLER_ARGS)
2722 {
2723         unsigned long ksize = VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS;
2724
2725         return sysctl_handle_long(oidp, &ksize, 0, req);
2726 }
2727 SYSCTL_PROC(_vm, OID_AUTO, kvm_size, CTLTYPE_LONG|CTLFLAG_RD, 
2728     0, 0, kvm_size, "LU", "Size of KVM");
2729
2730 static int
2731 kvm_free(SYSCTL_HANDLER_ARGS)
2732 {
2733         unsigned long kfree = VM_MAX_KERNEL_ADDRESS - kernel_vm_end;
2734
2735         return sysctl_handle_long(oidp, &kfree, 0, req);
2736 }
2737 SYSCTL_PROC(_vm, OID_AUTO, kvm_free, CTLTYPE_LONG|CTLFLAG_RD, 
2738     0, 0, kvm_free, "LU", "Amount of KVM free");
2739
2740 /*
2741  * grow the number of kernel page table entries, if needed
2742  */
2743 void
2744 pmap_growkernel(vm_offset_t addr)
2745 {
2746         vm_paddr_t paddr;
2747         vm_page_t nkpg;
2748         pd_entry_t *pde, newpdir;
2749         pdp_entry_t *pdpe;
2750
2751         mtx_assert(&kernel_map->system_mtx, MA_OWNED);
2752
2753         /*
2754          * Return if "addr" is within the range of kernel page table pages
2755          * that were preallocated during pmap bootstrap.  Moreover, leave
2756          * "kernel_vm_end" and the kernel page table as they were.
2757          *
2758          * The correctness of this action is based on the following
2759          * argument: vm_map_insert() allocates contiguous ranges of the
2760          * kernel virtual address space.  It calls this function if a range
2761          * ends after "kernel_vm_end".  If the kernel is mapped between
2762          * "kernel_vm_end" and "addr", then the range cannot begin at
2763          * "kernel_vm_end".  In fact, its beginning address cannot be less
2764          * than the kernel.  Thus, there is no immediate need to allocate
2765          * any new kernel page table pages between "kernel_vm_end" and
2766          * "KERNBASE".
2767          */
2768         if (KERNBASE < addr && addr <= KERNBASE + nkpt * NBPDR)
2769                 return;
2770
2771         addr = roundup2(addr, NBPDR);
2772         if (addr - 1 >= kernel_map->max_offset)
2773                 addr = kernel_map->max_offset;
2774         while (kernel_vm_end < addr) {
2775                 pdpe = pmap_pdpe(kernel_pmap, kernel_vm_end);
2776                 if ((*pdpe & X86_PG_V) == 0) {
2777                         /* We need a new PDP entry */
2778                         nkpg = vm_page_alloc(NULL, kernel_vm_end >> PDPSHIFT,
2779                             VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ |
2780                             VM_ALLOC_WIRED | VM_ALLOC_ZERO);
2781                         if (nkpg == NULL)
2782                                 panic("pmap_growkernel: no memory to grow kernel");
2783                         if ((nkpg->flags & PG_ZERO) == 0)
2784                                 pmap_zero_page(nkpg);
2785                         paddr = VM_PAGE_TO_PHYS(nkpg);
2786                         *pdpe = (pdp_entry_t)(paddr | X86_PG_V | X86_PG_RW |
2787                             X86_PG_A | X86_PG_M);
2788                         continue; /* try again */
2789                 }
2790                 pde = pmap_pdpe_to_pde(pdpe, kernel_vm_end);
2791                 if ((*pde & X86_PG_V) != 0) {
2792                         kernel_vm_end = (kernel_vm_end + NBPDR) & ~PDRMASK;
2793                         if (kernel_vm_end - 1 >= kernel_map->max_offset) {
2794                                 kernel_vm_end = kernel_map->max_offset;
2795                                 break;                       
2796                         }
2797                         continue;
2798                 }
2799
2800                 nkpg = vm_page_alloc(NULL, pmap_pde_pindex(kernel_vm_end),
2801                     VM_ALLOC_INTERRUPT | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED |
2802                     VM_ALLOC_ZERO);
2803                 if (nkpg == NULL)
2804                         panic("pmap_growkernel: no memory to grow kernel");
2805                 if ((nkpg->flags & PG_ZERO) == 0)
2806                         pmap_zero_page(nkpg);
2807                 paddr = VM_PAGE_TO_PHYS(nkpg);
2808                 newpdir = paddr | X86_PG_V | X86_PG_RW | X86_PG_A | X86_PG_M;
2809                 pde_store(pde, newpdir);
2810
2811                 kernel_vm_end = (kernel_vm_end + NBPDR) & ~PDRMASK;
2812                 if (kernel_vm_end - 1 >= kernel_map->max_offset) {
2813                         kernel_vm_end = kernel_map->max_offset;
2814                         break;                       
2815                 }
2816         }
2817 }
2818
2819
2820 /***************************************************
2821  * page management routines.
2822  ***************************************************/
2823
2824 CTASSERT(sizeof(struct pv_chunk) == PAGE_SIZE);
2825 CTASSERT(_NPCM == 3);
2826 CTASSERT(_NPCPV == 168);
2827
2828 static __inline struct pv_chunk *
2829 pv_to_chunk(pv_entry_t pv)
2830 {
2831
2832         return ((struct pv_chunk *)((uintptr_t)pv & ~(uintptr_t)PAGE_MASK));
2833 }
2834
2835 #define PV_PMAP(pv) (pv_to_chunk(pv)->pc_pmap)
2836
2837 #define PC_FREE0        0xfffffffffffffffful
2838 #define PC_FREE1        0xfffffffffffffffful
2839 #define PC_FREE2        0x000000fffffffffful
2840
2841 static const uint64_t pc_freemask[_NPCM] = { PC_FREE0, PC_FREE1, PC_FREE2 };
2842
2843 #ifdef PV_STATS
2844 static int pc_chunk_count, pc_chunk_allocs, pc_chunk_frees, pc_chunk_tryfail;
2845
2846 SYSCTL_INT(_vm_pmap, OID_AUTO, pc_chunk_count, CTLFLAG_RD, &pc_chunk_count, 0,
2847         "Current number of pv entry chunks");
2848 SYSCTL_INT(_vm_pmap, OID_AUTO, pc_chunk_allocs, CTLFLAG_RD, &pc_chunk_allocs, 0,
2849         "Current number of pv entry chunks allocated");
2850 SYSCTL_INT(_vm_pmap, OID_AUTO, pc_chunk_frees, CTLFLAG_RD, &pc_chunk_frees, 0,
2851         "Current number of pv entry chunks frees");
2852 SYSCTL_INT(_vm_pmap, OID_AUTO, pc_chunk_tryfail, CTLFLAG_RD, &pc_chunk_tryfail, 0,
2853         "Number of times tried to get a chunk page but failed.");
2854
2855 static long pv_entry_frees, pv_entry_allocs, pv_entry_count;
2856 static int pv_entry_spare;
2857
2858 SYSCTL_LONG(_vm_pmap, OID_AUTO, pv_entry_frees, CTLFLAG_RD, &pv_entry_frees, 0,
2859         "Current number of pv entry frees");
2860 SYSCTL_LONG(_vm_pmap, OID_AUTO, pv_entry_allocs, CTLFLAG_RD, &pv_entry_allocs, 0,
2861         "Current number of pv entry allocs");
2862 SYSCTL_LONG(_vm_pmap, OID_AUTO, pv_entry_count, CTLFLAG_RD, &pv_entry_count, 0,
2863         "Current number of pv entries");
2864 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_spare, CTLFLAG_RD, &pv_entry_spare, 0,
2865         "Current number of spare pv entries");
2866 #endif
2867
2868 static void
2869 reclaim_pv_chunk_leave_pmap(pmap_t pmap, pmap_t locked_pmap, bool start_di)
2870 {
2871
2872         if (pmap == NULL)
2873                 return;
2874         pmap_invalidate_all(pmap);
2875         if (pmap != locked_pmap)
2876                 PMAP_UNLOCK(pmap);
2877         if (start_di)
2878                 pmap_delayed_invl_finished();
2879 }
2880
2881 /*
2882  * We are in a serious low memory condition.  Resort to
2883  * drastic measures to free some pages so we can allocate
2884  * another pv entry chunk.
2885  *
2886  * Returns NULL if PV entries were reclaimed from the specified pmap.
2887  *
2888  * We do not, however, unmap 2mpages because subsequent accesses will
2889  * allocate per-page pv entries until repromotion occurs, thereby
2890  * exacerbating the shortage of free pv entries.
2891  */
2892 static vm_page_t
2893 reclaim_pv_chunk(pmap_t locked_pmap, struct rwlock **lockp)
2894 {
2895         struct pv_chunk *pc, *pc_marker, *pc_marker_end;
2896         struct pv_chunk_header pc_marker_b, pc_marker_end_b;
2897         struct md_page *pvh;
2898         pd_entry_t *pde;
2899         pmap_t next_pmap, pmap;
2900         pt_entry_t *pte, tpte;
2901         pt_entry_t PG_G, PG_A, PG_M, PG_RW;
2902         pv_entry_t pv;
2903         vm_offset_t va;
2904         vm_page_t m, m_pc;
2905         struct spglist free;
2906         uint64_t inuse;
2907         int bit, field, freed;
2908         bool start_di;
2909         static int active_reclaims = 0;
2910
2911         PMAP_LOCK_ASSERT(locked_pmap, MA_OWNED);
2912         KASSERT(lockp != NULL, ("reclaim_pv_chunk: lockp is NULL"));
2913         pmap = NULL;
2914         m_pc = NULL;
2915         PG_G = PG_A = PG_M = PG_RW = 0;
2916         SLIST_INIT(&free);
2917         bzero(&pc_marker_b, sizeof(pc_marker_b));
2918         bzero(&pc_marker_end, sizeof(pc_marker_end));
2919         pc_marker = (struct pv_chunk *)&pc_marker_b;
2920         pc_marker_end = (struct pv_chunk *)&pc_marker_end_b;
2921
2922         /*
2923          * A delayed invalidation block should already be active if
2924          * pmap_advise() or pmap_remove() called this function by way
2925          * of pmap_demote_pde_locked().
2926          */
2927         start_di = pmap_not_in_di();
2928
2929         mtx_lock(&pv_chunks_mutex);
2930         active_reclaims++;
2931         TAILQ_INSERT_HEAD(&pv_chunks, pc_marker, pc_lru);
2932         TAILQ_INSERT_TAIL(&pv_chunks, pc_marker_end, pc_lru);
2933         while ((pc = TAILQ_NEXT(pc_marker, pc_lru)) != pc_marker_end &&
2934             SLIST_EMPTY(&free)) {
2935                 next_pmap = pc->pc_pmap;
2936                 if (next_pmap == NULL) {
2937                         /*
2938                          * The next chunk is a marker.  However, it is
2939                          * not our marker, so active_reclaims must be
2940                          * > 1.  Consequently, the next_chunk code
2941                          * will not rotate the pv_chunks list.
2942                          */
2943                         goto next_chunk;
2944                 }
2945                 mtx_unlock(&pv_chunks_mutex);
2946
2947                 /*
2948                  * A pv_chunk can only be removed from the pc_lru list
2949                  * when both pc_chunks_mutex is owned and the
2950                  * corresponding pmap is locked.
2951                  */
2952                 if (pmap != next_pmap) {
2953                         reclaim_pv_chunk_leave_pmap(pmap, locked_pmap,
2954                             start_di);
2955                         pmap = next_pmap;
2956                         /* Avoid deadlock and lock recursion. */
2957                         if (pmap > locked_pmap) {
2958                                 RELEASE_PV_LIST_LOCK(lockp);
2959                                 PMAP_LOCK(pmap);
2960                                 if (start_di)
2961                                         pmap_delayed_invl_started();
2962                                 mtx_lock(&pv_chunks_mutex);
2963                                 continue;
2964                         } else if (pmap != locked_pmap) {
2965                                 if (PMAP_TRYLOCK(pmap)) {
2966                                         if (start_di)
2967                                                 pmap_delayed_invl_started();
2968                                         mtx_lock(&pv_chunks_mutex);
2969                                         continue;
2970                                 } else {
2971                                         pmap = NULL; /* pmap is not locked */
2972                                         mtx_lock(&pv_chunks_mutex);
2973                                         pc = TAILQ_NEXT(pc_marker, pc_lru);
2974                                         if (pc == NULL ||
2975                                             pc->pc_pmap != next_pmap)
2976                                                 continue;
2977                                         goto next_chunk;
2978                                 }
2979                         } else if (start_di)
2980                                 pmap_delayed_invl_started();
2981                         PG_G = pmap_global_bit(pmap);
2982                         PG_A = pmap_accessed_bit(pmap);
2983                         PG_M = pmap_modified_bit(pmap);
2984                         PG_RW = pmap_rw_bit(pmap);
2985                 }
2986
2987                 /*
2988                  * Destroy every non-wired, 4 KB page mapping in the chunk.
2989                  */
2990                 freed = 0;
2991                 for (field = 0; field < _NPCM; field++) {
2992                         for (inuse = ~pc->pc_map[field] & pc_freemask[field];
2993                             inuse != 0; inuse &= ~(1UL << bit)) {
2994                                 bit = bsfq(inuse);
2995                                 pv = &pc->pc_pventry[field * 64 + bit];
2996                                 va = pv->pv_va;
2997                                 pde = pmap_pde(pmap, va);
2998                                 if ((*pde & PG_PS) != 0)
2999                                         continue;
3000                                 pte = pmap_pde_to_pte(pde, va);
3001                                 if ((*pte & PG_W) != 0)
3002                                         continue;
3003                                 tpte = pte_load_clear(pte);
3004                                 if ((tpte & PG_G) != 0)
3005                                         pmap_invalidate_page(pmap, va);
3006                                 m = PHYS_TO_VM_PAGE(tpte & PG_FRAME);
3007                                 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW))
3008                                         vm_page_dirty(m);
3009                                 if ((tpte & PG_A) != 0)
3010                                         vm_page_aflag_set(m, PGA_REFERENCED);
3011                                 CHANGE_PV_LIST_LOCK_TO_VM_PAGE(lockp, m);
3012                                 TAILQ_REMOVE(&m->md.pv_list, pv, pv_next);
3013                                 m->md.pv_gen++;
3014                                 if (TAILQ_EMPTY(&m->md.pv_list) &&
3015                                     (m->flags & PG_FICTITIOUS) == 0) {
3016                                         pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m));
3017                                         if (TAILQ_EMPTY(&pvh->pv_list)) {
3018                                                 vm_page_aflag_clear(m,
3019                                                     PGA_WRITEABLE);
3020                                         }
3021                                 }
3022                                 pmap_delayed_invl_page(m);
3023                                 pc->pc_map[field] |= 1UL << bit;
3024                                 pmap_unuse_pt(pmap, va, *pde, &free);
3025                                 freed++;
3026                         }
3027                 }
3028                 if (freed == 0) {
3029                         mtx_lock(&pv_chunks_mutex);
3030                         goto next_chunk;
3031                 }
3032                 /* Every freed mapping is for a 4 KB page. */
3033                 pmap_resident_count_dec(pmap, freed);
3034                 PV_STAT(atomic_add_long(&pv_entry_frees, freed));
3035                 PV_STAT(atomic_add_int(&pv_entry_spare, freed));
3036                 PV_STAT(atomic_subtract_long(&pv_entry_count, freed));
3037                 TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list);
3038                 if (pc->pc_map[0] == PC_FREE0 && pc->pc_map[1] == PC_FREE1 &&
3039                     pc->pc_map[2] == PC_FREE2) {
3040                         PV_STAT(atomic_subtract_int(&pv_entry_spare, _NPCPV));
3041                         PV_STAT(atomic_subtract_int(&pc_chunk_count, 1));
3042                         PV_STAT(atomic_add_int(&pc_chunk_frees, 1));
3043                         /* Entire chunk is free; return it. */
3044                         m_pc = PHYS_TO_VM_PAGE(DMAP_TO_PHYS((vm_offset_t)pc));
3045                         dump_drop_page(m_pc->phys_addr);
3046                         mtx_lock(&pv_chunks_mutex);
3047                         TAILQ_REMOVE(&pv_chunks, pc, pc_lru);
3048                         break;
3049                 }
3050                 TAILQ_INSERT_HEAD(&pmap->pm_pvchunk, pc, pc_list);
3051                 mtx_lock(&pv_chunks_mutex);
3052                 /* One freed pv entry in locked_pmap is sufficient. */
3053                 if (pmap == locked_pmap)
3054                         break;
3055 next_chunk:
3056                 TAILQ_REMOVE(&pv_chunks, pc_marker, pc_lru);
3057                 TAILQ_INSERT_AFTER(&pv_chunks, pc, pc_marker, pc_lru);
3058                 if (active_reclaims == 1 && pmap != NULL) {
3059                         /*
3060                          * Rotate the pv chunks list so that we do not
3061                          * scan the same pv chunks that could not be
3062                          * freed (because they contained a wired
3063                          * and/or superpage mapping) on every
3064                          * invocation of reclaim_pv_chunk().
3065                          */
3066                         while ((pc = TAILQ_FIRST(&pv_chunks)) != pc_marker) {
3067                                 MPASS(pc->pc_pmap != NULL);
3068                                 TAILQ_REMOVE(&pv_chunks, pc, pc_lru);
3069                                 TAILQ_INSERT_TAIL(&pv_chunks, pc, pc_lru);
3070                         }
3071                 }
3072         }
3073         TAILQ_REMOVE(&pv_chunks, pc_marker, pc_lru);
3074         TAILQ_REMOVE(&pv_chunks, pc_marker_end, pc_lru);
3075         active_reclaims--;
3076         mtx_unlock(&pv_chunks_mutex);
3077         reclaim_pv_chunk_leave_pmap(pmap, locked_pmap, start_di);
3078         if (m_pc == NULL && !SLIST_EMPTY(&free)) {
3079                 m_pc = SLIST_FIRST(&free);
3080                 SLIST_REMOVE_HEAD(&free, plinks.s.ss);
3081                 /* Recycle a freed page table page. */
3082                 m_pc->wire_count = 1;
3083         }
3084         pmap_free_zero_pages(&free);
3085         return (m_pc);
3086 }
3087
3088 /*
3089  * free the pv_entry back to the free list
3090  */
3091 static void
3092 free_pv_entry(pmap_t pmap, pv_entry_t pv)
3093 {
3094         struct pv_chunk *pc;
3095         int idx, field, bit;
3096
3097         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3098         PV_STAT(atomic_add_long(&pv_entry_frees, 1));
3099         PV_STAT(atomic_add_int(&pv_entry_spare, 1));
3100         PV_STAT(atomic_subtract_long(&pv_entry_count, 1));
3101         pc = pv_to_chunk(pv);
3102         idx = pv - &pc->pc_pventry[0];
3103         field = idx / 64;
3104         bit = idx % 64;
3105         pc->pc_map[field] |= 1ul << bit;
3106         if (pc->pc_map[0] != PC_FREE0 || pc->pc_map[1] != PC_FREE1 ||
3107             pc->pc_map[2] != PC_FREE2) {
3108                 /* 98% of the time, pc is already at the head of the list. */
3109                 if (__predict_false(pc != TAILQ_FIRST(&pmap->pm_pvchunk))) {
3110                         TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list);
3111                         TAILQ_INSERT_HEAD(&pmap->pm_pvchunk, pc, pc_list);
3112                 }
3113                 return;
3114         }
3115         TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list);
3116         free_pv_chunk(pc);
3117 }
3118
3119 static void
3120 free_pv_chunk(struct pv_chunk *pc)
3121 {
3122         vm_page_t m;
3123
3124         mtx_lock(&pv_chunks_mutex);
3125         TAILQ_REMOVE(&pv_chunks, pc, pc_lru);
3126         mtx_unlock(&pv_chunks_mutex);
3127         PV_STAT(atomic_subtract_int(&pv_entry_spare, _NPCPV));
3128         PV_STAT(atomic_subtract_int(&pc_chunk_count, 1));
3129         PV_STAT(atomic_add_int(&pc_chunk_frees, 1));
3130         /* entire chunk is free, return it */
3131         m = PHYS_TO_VM_PAGE(DMAP_TO_PHYS((vm_offset_t)pc));
3132         dump_drop_page(m->phys_addr);
3133         vm_page_unwire(m, PQ_NONE);
3134         vm_page_free(m);
3135 }
3136
3137 /*
3138  * Returns a new PV entry, allocating a new PV chunk from the system when
3139  * needed.  If this PV chunk allocation fails and a PV list lock pointer was
3140  * given, a PV chunk is reclaimed from an arbitrary pmap.  Otherwise, NULL is
3141  * returned.
3142  *
3143  * The given PV list lock may be released.
3144  */
3145 static pv_entry_t
3146 get_pv_entry(pmap_t pmap, struct rwlock **lockp)
3147 {
3148         int bit, field;
3149         pv_entry_t pv;
3150         struct pv_chunk *pc;
3151         vm_page_t m;
3152
3153         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3154         PV_STAT(atomic_add_long(&pv_entry_allocs, 1));
3155 retry:
3156         pc = TAILQ_FIRST(&pmap->pm_pvchunk);
3157         if (pc != NULL) {
3158                 for (field = 0; field < _NPCM; field++) {
3159                         if (pc->pc_map[field]) {
3160                                 bit = bsfq(pc->pc_map[field]);
3161                                 break;
3162                         }
3163                 }
3164                 if (field < _NPCM) {
3165                         pv = &pc->pc_pventry[field * 64 + bit];
3166                         pc->pc_map[field] &= ~(1ul << bit);
3167                         /* If this was the last item, move it to tail */
3168                         if (pc->pc_map[0] == 0 && pc->pc_map[1] == 0 &&
3169                             pc->pc_map[2] == 0) {
3170                                 TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list);
3171                                 TAILQ_INSERT_TAIL(&pmap->pm_pvchunk, pc,
3172                                     pc_list);
3173                         }
3174                         PV_STAT(atomic_add_long(&pv_entry_count, 1));
3175                         PV_STAT(atomic_subtract_int(&pv_entry_spare, 1));
3176                         return (pv);
3177                 }
3178         }
3179         /* No free items, allocate another chunk */
3180         m = vm_page_alloc(NULL, 0, VM_ALLOC_NORMAL | VM_ALLOC_NOOBJ |
3181             VM_ALLOC_WIRED);
3182         if (m == NULL) {
3183                 if (lockp == NULL) {
3184                         PV_STAT(pc_chunk_tryfail++);
3185                         return (NULL);
3186                 }
3187                 m = reclaim_pv_chunk(pmap, lockp);
3188                 if (m == NULL)
3189                         goto retry;
3190         }
3191         PV_STAT(atomic_add_int(&pc_chunk_count, 1));
3192         PV_STAT(atomic_add_int(&pc_chunk_allocs, 1));
3193         dump_add_page(m->phys_addr);
3194         pc = (void *)PHYS_TO_DMAP(m->phys_addr);
3195         pc->pc_pmap = pmap;
3196         pc->pc_map[0] = PC_FREE0 & ~1ul;        /* preallocated bit 0 */
3197         pc->pc_map[1] = PC_FREE1;
3198         pc->pc_map[2] = PC_FREE2;
3199         mtx_lock(&pv_chunks_mutex);
3200         TAILQ_INSERT_TAIL(&pv_chunks, pc, pc_lru);
3201         mtx_unlock(&pv_chunks_mutex);
3202         pv = &pc->pc_pventry[0];
3203         TAILQ_INSERT_HEAD(&pmap->pm_pvchunk, pc, pc_list);
3204         PV_STAT(atomic_add_long(&pv_entry_count, 1));
3205         PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV - 1));
3206         return (pv);
3207 }
3208
3209 /*
3210  * Returns the number of one bits within the given PV chunk map.
3211  *
3212  * The erratas for Intel processors state that "POPCNT Instruction May
3213  * Take Longer to Execute Than Expected".  It is believed that the
3214  * issue is the spurious dependency on the destination register.
3215  * Provide a hint to the register rename logic that the destination
3216  * value is overwritten, by clearing it, as suggested in the
3217  * optimization manual.  It should be cheap for unaffected processors
3218  * as well.
3219  *
3220  * Reference numbers for erratas are
3221  * 4th Gen Core: HSD146
3222  * 5th Gen Core: BDM85
3223  * 6th Gen Core: SKL029
3224  */
3225 static int
3226 popcnt_pc_map_pq(uint64_t *map)
3227 {
3228         u_long result, tmp;
3229
3230         __asm __volatile("xorl %k0,%k0;popcntq %2,%0;"
3231             "xorl %k1,%k1;popcntq %3,%1;addl %k1,%k0;"
3232             "xorl %k1,%k1;popcntq %4,%1;addl %k1,%k0"
3233             : "=&r" (result), "=&r" (tmp)
3234             : "m" (map[0]), "m" (map[1]), "m" (map[2]));
3235         return (result);
3236 }
3237
3238 /*
3239  * Ensure that the number of spare PV entries in the specified pmap meets or
3240  * exceeds the given count, "needed".
3241  *
3242  * The given PV list lock may be released.
3243  */
3244 static void
3245 reserve_pv_entries(pmap_t pmap, int needed, struct rwlock **lockp)
3246 {
3247         struct pch new_tail;
3248         struct pv_chunk *pc;
3249         int avail, free;
3250         vm_page_t m;
3251
3252         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3253         KASSERT(lockp != NULL, ("reserve_pv_entries: lockp is NULL"));
3254
3255         /*
3256          * Newly allocated PV chunks must be stored in a private list until
3257          * the required number of PV chunks have been allocated.  Otherwise,
3258          * reclaim_pv_chunk() could recycle one of these chunks.  In
3259          * contrast, these chunks must be added to the pmap upon allocation.
3260          */
3261         TAILQ_INIT(&new_tail);
3262 retry:
3263         avail = 0;
3264         TAILQ_FOREACH(pc, &pmap->pm_pvchunk, pc_list) {
3265 #ifndef __POPCNT__
3266                 if ((cpu_feature2 & CPUID2_POPCNT) == 0)
3267                         bit_count((bitstr_t *)pc->pc_map, 0,
3268                             sizeof(pc->pc_map) * NBBY, &free);
3269                 else
3270 #endif
3271                 free = popcnt_pc_map_pq(pc->pc_map);
3272                 if (free == 0)
3273                         break;
3274                 avail += free;
3275                 if (avail >= needed)
3276                         break;
3277         }
3278         for (; avail < needed; avail += _NPCPV) {
3279                 m = vm_page_alloc(NULL, 0, VM_ALLOC_NORMAL | VM_ALLOC_NOOBJ |
3280                     VM_ALLOC_WIRED);
3281                 if (m == NULL) {
3282                         m = reclaim_pv_chunk(pmap, lockp);
3283                         if (m == NULL)
3284                                 goto retry;
3285                 }
3286                 PV_STAT(atomic_add_int(&pc_chunk_count, 1));
3287                 PV_STAT(atomic_add_int(&pc_chunk_allocs, 1));
3288                 dump_add_page(m->phys_addr);
3289                 pc = (void *)PHYS_TO_DMAP(m->phys_addr);
3290                 pc->pc_pmap = pmap;
3291                 pc->pc_map[0] = PC_FREE0;
3292                 pc->pc_map[1] = PC_FREE1;
3293                 pc->pc_map[2] = PC_FREE2;
3294                 TAILQ_INSERT_HEAD(&pmap->pm_pvchunk, pc, pc_list);
3295                 TAILQ_INSERT_TAIL(&new_tail, pc, pc_lru);
3296                 PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV));
3297         }
3298         if (!TAILQ_EMPTY(&new_tail)) {
3299                 mtx_lock(&pv_chunks_mutex);
3300                 TAILQ_CONCAT(&pv_chunks, &new_tail, pc_lru);
3301                 mtx_unlock(&pv_chunks_mutex);
3302         }
3303 }
3304
3305 /*
3306  * First find and then remove the pv entry for the specified pmap and virtual
3307  * address from the specified pv list.  Returns the pv entry if found and NULL
3308  * otherwise.  This operation can be performed on pv lists for either 4KB or
3309  * 2MB page mappings.
3310  */
3311 static __inline pv_entry_t
3312 pmap_pvh_remove(struct md_page *pvh, pmap_t pmap, vm_offset_t va)
3313 {
3314         pv_entry_t pv;
3315
3316         TAILQ_FOREACH(pv, &pvh->pv_list, pv_next) {
3317                 if (pmap == PV_PMAP(pv) && va == pv->pv_va) {
3318                         TAILQ_REMOVE(&pvh->pv_list, pv, pv_next);
3319                         pvh->pv_gen++;
3320                         break;
3321                 }
3322         }
3323         return (pv);
3324 }
3325
3326 /*
3327  * After demotion from a 2MB page mapping to 512 4KB page mappings,
3328  * destroy the pv entry for the 2MB page mapping and reinstantiate the pv
3329  * entries for each of the 4KB page mappings.
3330  */
3331 static void
3332 pmap_pv_demote_pde(pmap_t pmap, vm_offset_t va, vm_paddr_t pa,
3333     struct rwlock **lockp)
3334 {
3335         struct md_page *pvh;
3336         struct pv_chunk *pc;
3337         pv_entry_t pv;
3338         vm_offset_t va_last;
3339         vm_page_t m;
3340         int bit, field;
3341
3342         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3343         KASSERT((pa & PDRMASK) == 0,
3344             ("pmap_pv_demote_pde: pa is not 2mpage aligned"));
3345         CHANGE_PV_LIST_LOCK_TO_PHYS(lockp, pa);
3346
3347         /*
3348          * Transfer the 2mpage's pv entry for this mapping to the first
3349          * page's pv list.  Once this transfer begins, the pv list lock
3350          * must not be released until the last pv entry is reinstantiated.
3351          */
3352         pvh = pa_to_pvh(pa);
3353         va = trunc_2mpage(va);
3354         pv = pmap_pvh_remove(pvh, pmap, va);
3355         KASSERT(pv != NULL, ("pmap_pv_demote_pde: pv not found"));
3356         m = PHYS_TO_VM_PAGE(pa);
3357         TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_next);
3358         m->md.pv_gen++;
3359         /* Instantiate the remaining NPTEPG - 1 pv entries. */
3360         PV_STAT(atomic_add_long(&pv_entry_allocs, NPTEPG - 1));
3361         va_last = va + NBPDR - PAGE_SIZE;
3362         for (;;) {
3363                 pc = TAILQ_FIRST(&pmap->pm_pvchunk);
3364                 KASSERT(pc->pc_map[0] != 0 || pc->pc_map[1] != 0 ||
3365                     pc->pc_map[2] != 0, ("pmap_pv_demote_pde: missing spare"));
3366                 for (field = 0; field < _NPCM; field++) {
3367                         while (pc->pc_map[field]) {
3368                                 bit = bsfq(pc->pc_map[field]);
3369                                 pc->pc_map[field] &= ~(1ul << bit);
3370                                 pv = &pc->pc_pventry[field * 64 + bit];
3371                                 va += PAGE_SIZE;
3372                                 pv->pv_va = va;
3373                                 m++;
3374                                 KASSERT((m->oflags & VPO_UNMANAGED) == 0,
3375                             ("pmap_pv_demote_pde: page %p is not managed", m));
3376                                 TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_next);
3377                                 m->md.pv_gen++;
3378                                 if (va == va_last)
3379                                         goto out;
3380                         }
3381                 }
3382                 TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list);
3383                 TAILQ_INSERT_TAIL(&pmap->pm_pvchunk, pc, pc_list);
3384         }
3385 out:
3386         if (pc->pc_map[0] == 0 && pc->pc_map[1] == 0 && pc->pc_map[2] == 0) {
3387                 TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list);
3388                 TAILQ_INSERT_TAIL(&pmap->pm_pvchunk, pc, pc_list);
3389         }
3390         PV_STAT(atomic_add_long(&pv_entry_count, NPTEPG - 1));
3391         PV_STAT(atomic_subtract_int(&pv_entry_spare, NPTEPG - 1));
3392 }
3393
3394 #if VM_NRESERVLEVEL > 0
3395 /*
3396  * After promotion from 512 4KB page mappings to a single 2MB page mapping,
3397  * replace the many pv entries for the 4KB page mappings by a single pv entry
3398  * for the 2MB page mapping.
3399  */
3400 static void
3401 pmap_pv_promote_pde(pmap_t pmap, vm_offset_t va, vm_paddr_t pa,
3402     struct rwlock **lockp)
3403 {
3404         struct md_page *pvh;
3405         pv_entry_t pv;
3406         vm_offset_t va_last;
3407         vm_page_t m;
3408
3409         KASSERT((pa & PDRMASK) == 0,
3410             ("pmap_pv_promote_pde: pa is not 2mpage aligned"));
3411         CHANGE_PV_LIST_LOCK_TO_PHYS(lockp, pa);
3412
3413         /*
3414          * Transfer the first page's pv entry for this mapping to the 2mpage's
3415          * pv list.  Aside from avoiding the cost of a call to get_pv_entry(),
3416          * a transfer avoids the possibility that get_pv_entry() calls
3417          * reclaim_pv_chunk() and that reclaim_pv_chunk() removes one of the
3418          * mappings that is being promoted.
3419          */
3420         m = PHYS_TO_VM_PAGE(pa);
3421         va = trunc_2mpage(va);
3422         pv = pmap_pvh_remove(&m->md, pmap, va);
3423         KASSERT(pv != NULL, ("pmap_pv_promote_pde: pv not found"));
3424         pvh = pa_to_pvh(pa);
3425         TAILQ_INSERT_TAIL(&pvh->pv_list, pv, pv_next);
3426         pvh->pv_gen++;
3427         /* Free the remaining NPTEPG - 1 pv entries. */
3428         va_last = va + NBPDR - PAGE_SIZE;
3429         do {
3430                 m++;
3431                 va += PAGE_SIZE;
3432                 pmap_pvh_free(&m->md, pmap, va);
3433         } while (va < va_last);
3434 }
3435 #endif /* VM_NRESERVLEVEL > 0 */
3436
3437 /*
3438  * First find and then destroy the pv entry for the specified pmap and virtual
3439  * address.  This operation can be performed on pv lists for either 4KB or 2MB
3440  * page mappings.
3441  */
3442 static void
3443 pmap_pvh_free(struct md_page *pvh, pmap_t pmap, vm_offset_t va)
3444 {
3445         pv_entry_t pv;
3446
3447         pv = pmap_pvh_remove(pvh, pmap, va);
3448         KASSERT(pv != NULL, ("pmap_pvh_free: pv not found"));
3449         free_pv_entry(pmap, pv);
3450 }
3451
3452 /*
3453  * Conditionally create the PV entry for a 4KB page mapping if the required
3454  * memory can be allocated without resorting to reclamation.
3455  */
3456 static boolean_t
3457 pmap_try_insert_pv_entry(pmap_t pmap, vm_offset_t va, vm_page_t m,
3458     struct rwlock **lockp)
3459 {
3460         pv_entry_t pv;
3461
3462         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3463         /* Pass NULL instead of the lock pointer to disable reclamation. */
3464         if ((pv = get_pv_entry(pmap, NULL)) != NULL) {
3465                 pv->pv_va = va;
3466                 CHANGE_PV_LIST_LOCK_TO_VM_PAGE(lockp, m);
3467                 TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_next);
3468                 m->md.pv_gen++;
3469                 return (TRUE);
3470         } else
3471                 return (FALSE);
3472 }
3473
3474 /*
3475  * Create the PV entry for a 2MB page mapping.  Always returns true unless the
3476  * flag PMAP_ENTER_NORECLAIM is specified.  If that flag is specified, returns
3477  * false if the PV entry cannot be allocated without resorting to reclamation.
3478  */
3479 static bool
3480 pmap_pv_insert_pde(pmap_t pmap, vm_offset_t va, pd_entry_t pde, u_int flags,
3481     struct rwlock **lockp)
3482 {
3483         struct md_page *pvh;
3484         pv_entry_t pv;
3485         vm_paddr_t pa;
3486
3487         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3488         /* Pass NULL instead of the lock pointer to disable reclamation. */
3489         if ((pv = get_pv_entry(pmap, (flags & PMAP_ENTER_NORECLAIM) != 0 ?
3490             NULL : lockp)) == NULL)
3491                 return (false);
3492         pv->pv_va = va;
3493         pa = pde & PG_PS_FRAME;
3494         CHANGE_PV_LIST_LOCK_TO_PHYS(lockp, pa);
3495         pvh = pa_to_pvh(pa);
3496         TAILQ_INSERT_TAIL(&pvh->pv_list, pv, pv_next);
3497         pvh->pv_gen++;
3498         return (true);
3499 }
3500
3501 /*
3502  * Fills a page table page with mappings to consecutive physical pages.
3503  */
3504 static void
3505 pmap_fill_ptp(pt_entry_t *firstpte, pt_entry_t newpte)
3506 {
3507         pt_entry_t *pte;
3508
3509         for (pte = firstpte; pte < firstpte + NPTEPG; pte++) {
3510                 *pte = newpte;
3511                 newpte += PAGE_SIZE;
3512         }
3513 }
3514
3515 /*
3516  * Tries to demote a 2MB page mapping.  If demotion fails, the 2MB page
3517  * mapping is invalidated.
3518  */
3519 static boolean_t
3520 pmap_demote_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t va)
3521 {
3522         struct rwlock *lock;
3523         boolean_t rv;
3524
3525         lock = NULL;
3526         rv = pmap_demote_pde_locked(pmap, pde, va, &lock);
3527         if (lock != NULL)
3528                 rw_wunlock(lock);
3529         return (rv);
3530 }
3531
3532 static boolean_t
3533 pmap_demote_pde_locked(pmap_t pmap, pd_entry_t *pde, vm_offset_t va,
3534     struct rwlock **lockp)
3535 {
3536         pd_entry_t newpde, oldpde;
3537         pt_entry_t *firstpte, newpte;
3538         pt_entry_t PG_A, PG_G, PG_M, PG_RW, PG_V;
3539         vm_paddr_t mptepa;
3540         vm_page_t mpte;
3541         struct spglist free;
3542         vm_offset_t sva;
3543         int PG_PTE_CACHE;
3544
3545         PG_G = pmap_global_bit(pmap);
3546         PG_A = pmap_accessed_bit(pmap);
3547         PG_M = pmap_modified_bit(pmap);
3548         PG_RW = pmap_rw_bit(pmap);
3549         PG_V = pmap_valid_bit(pmap);
3550         PG_PTE_CACHE = pmap_cache_mask(pmap, 0);
3551
3552         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3553         oldpde = *pde;
3554         KASSERT((oldpde & (PG_PS | PG_V)) == (PG_PS | PG_V),
3555             ("pmap_demote_pde: oldpde is missing PG_PS and/or PG_V"));
3556         if ((oldpde & PG_A) == 0 || (mpte = pmap_remove_pt_page(pmap, va)) ==
3557             NULL) {
3558                 KASSERT((oldpde & PG_W) == 0,
3559                     ("pmap_demote_pde: page table page for a wired mapping"
3560                     " is missing"));
3561
3562                 /*
3563                  * Invalidate the 2MB page mapping and return "failure" if the
3564                  * mapping was never accessed or the allocation of the new
3565                  * page table page fails.  If the 2MB page mapping belongs to
3566                  * the direct map region of the kernel's address space, then
3567                  * the page allocation request specifies the highest possible
3568                  * priority (VM_ALLOC_INTERRUPT).  Otherwise, the priority is
3569                  * normal.  Page table pages are preallocated for every other
3570                  * part of the kernel address space, so the direct map region
3571                  * is the only part of the kernel address space that must be
3572                  * handled here.
3573                  */
3574                 if ((oldpde & PG_A) == 0 || (mpte = vm_page_alloc(NULL,
3575                     pmap_pde_pindex(va), (va >= DMAP_MIN_ADDRESS && va <
3576                     DMAP_MAX_ADDRESS ? VM_ALLOC_INTERRUPT : VM_ALLOC_NORMAL) |
3577                     VM_ALLOC_NOOBJ | VM_ALLOC_WIRED)) == NULL) {
3578                         SLIST_INIT(&free);
3579                         sva = trunc_2mpage(va);
3580                         pmap_remove_pde(pmap, pde, sva, &free, lockp);
3581                         if ((oldpde & PG_G) == 0)
3582                                 pmap_invalidate_pde_page(pmap, sva, oldpde);
3583                         pmap_free_zero_pages(&free);
3584                         CTR2(KTR_PMAP, "pmap_demote_pde: failure for va %#lx"
3585                             " in pmap %p", va, pmap);
3586                         return (FALSE);
3587                 }
3588                 if (va < VM_MAXUSER_ADDRESS)
3589                         pmap_resident_count_inc(pmap, 1);
3590         }
3591         mptepa = VM_PAGE_TO_PHYS(mpte);
3592         firstpte = (pt_entry_t *)PHYS_TO_DMAP(mptepa);
3593         newpde = mptepa | PG_M | PG_A | (oldpde & PG_U) | PG_RW | PG_V;
3594         KASSERT((oldpde & PG_A) != 0,
3595             ("pmap_demote_pde: oldpde is missing PG_A"));
3596         KASSERT((oldpde & (PG_M | PG_RW)) != PG_RW,
3597             ("pmap_demote_pde: oldpde is missing PG_M"));
3598         newpte = oldpde & ~PG_PS;
3599         newpte = pmap_swap_pat(pmap, newpte);
3600
3601         /*
3602          * If the page table page is new, initialize it.
3603          */
3604         if (mpte->wire_count == 1) {
3605                 mpte->wire_count = NPTEPG;
3606                 pmap_fill_ptp(firstpte, newpte);
3607         }
3608         KASSERT((*firstpte & PG_FRAME) == (newpte & PG_FRAME),
3609             ("pmap_demote_pde: firstpte and newpte map different physical"
3610             " addresses"));
3611
3612         /*
3613          * If the mapping has changed attributes, update the page table
3614          * entries.
3615          */
3616         if ((*firstpte & PG_PTE_PROMOTE) != (newpte & PG_PTE_PROMOTE))
3617                 pmap_fill_ptp(firstpte, newpte);
3618
3619         /*
3620          * The spare PV entries must be reserved prior to demoting the
3621          * mapping, that is, prior to changing the PDE.  Otherwise, the state
3622          * of the PDE and the PV lists will be inconsistent, which can result
3623          * in reclaim_pv_chunk() attempting to remove a PV entry from the
3624          * wrong PV list and pmap_pv_demote_pde() failing to find the expected
3625          * PV entry for the 2MB page mapping that is being demoted.
3626          */
3627         if ((oldpde & PG_MANAGED) != 0)
3628                 reserve_pv_entries(pmap, NPTEPG - 1, lockp);
3629
3630         /*
3631          * Demote the mapping.  This pmap is locked.  The old PDE has
3632          * PG_A set.  If the old PDE has PG_RW set, it also has PG_M
3633          * set.  Thus, there is no danger of a race with another
3634          * processor changing the setting of PG_A and/or PG_M between
3635          * the read above and the store below. 
3636          */
3637         if (workaround_erratum383)
3638                 pmap_update_pde(pmap, va, pde, newpde);
3639         else
3640                 pde_store(pde, newpde);
3641
3642         /*
3643          * Invalidate a stale recursive mapping of the page table page.
3644          */
3645         if (va >= VM_MAXUSER_ADDRESS)
3646                 pmap_invalidate_page(pmap, (vm_offset_t)vtopte(va));
3647
3648         /*
3649          * Demote the PV entry.
3650          */
3651         if ((oldpde & PG_MANAGED) != 0)
3652                 pmap_pv_demote_pde(pmap, va, oldpde & PG_PS_FRAME, lockp);
3653
3654         atomic_add_long(&pmap_pde_demotions, 1);
3655         CTR2(KTR_PMAP, "pmap_demote_pde: success for va %#lx"
3656             " in pmap %p", va, pmap);
3657         return (TRUE);
3658 }
3659
3660 /*
3661  * pmap_remove_kernel_pde: Remove a kernel superpage mapping.
3662  */
3663 static void
3664 pmap_remove_kernel_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t va)
3665 {
3666         pd_entry_t newpde;
3667         vm_paddr_t mptepa;
3668         vm_page_t mpte;
3669
3670         KASSERT(pmap == kernel_pmap, ("pmap %p is not kernel_pmap", pmap));
3671         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3672         mpte = pmap_remove_pt_page(pmap, va);
3673         if (mpte == NULL)
3674                 panic("pmap_remove_kernel_pde: Missing pt page.");
3675
3676         mptepa = VM_PAGE_TO_PHYS(mpte);
3677         newpde = mptepa | X86_PG_M | X86_PG_A | X86_PG_RW | X86_PG_V;
3678
3679         /*
3680          * Initialize the page table page.
3681          */
3682         pagezero((void *)PHYS_TO_DMAP(mptepa));
3683
3684         /*
3685          * Demote the mapping.
3686          */
3687         if (workaround_erratum383)
3688                 pmap_update_pde(pmap, va, pde, newpde);
3689         else
3690                 pde_store(pde, newpde);
3691
3692         /*
3693          * Invalidate a stale recursive mapping of the page table page.
3694          */
3695         pmap_invalidate_page(pmap, (vm_offset_t)vtopte(va));
3696 }
3697
3698 /*
3699  * pmap_remove_pde: do the things to unmap a superpage in a process
3700  */
3701 static int
3702 pmap_remove_pde(pmap_t pmap, pd_entry_t *pdq, vm_offset_t sva,
3703     struct spglist *free, struct rwlock **lockp)
3704 {
3705         struct md_page *pvh;
3706         pd_entry_t oldpde;
3707         vm_offset_t eva, va;
3708         vm_page_t m, mpte;
3709         pt_entry_t PG_G, PG_A, PG_M, PG_RW;
3710
3711         PG_G = pmap_global_bit(pmap);
3712         PG_A = pmap_accessed_bit(pmap);
3713         PG_M = pmap_modified_bit(pmap);
3714         PG_RW = pmap_rw_bit(pmap);
3715
3716         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3717         KASSERT((sva & PDRMASK) == 0,
3718             ("pmap_remove_pde: sva is not 2mpage aligned"));
3719         oldpde = pte_load_clear(pdq);
3720         if (oldpde & PG_W)
3721                 pmap->pm_stats.wired_count -= NBPDR / PAGE_SIZE;
3722         if ((oldpde & PG_G) != 0)
3723                 pmap_invalidate_pde_page(kernel_pmap, sva, oldpde);
3724         pmap_resident_count_dec(pmap, NBPDR / PAGE_SIZE);
3725         if (oldpde & PG_MANAGED) {
3726                 CHANGE_PV_LIST_LOCK_TO_PHYS(lockp, oldpde & PG_PS_FRAME);
3727                 pvh = pa_to_pvh(oldpde & PG_PS_FRAME);
3728                 pmap_pvh_free(pvh, pmap, sva);
3729                 eva = sva + NBPDR;
3730                 for (va = sva, m = PHYS_TO_VM_PAGE(oldpde & PG_PS_FRAME);
3731                     va < eva; va += PAGE_SIZE, m++) {
3732                         if ((oldpde & (PG_M | PG_RW)) == (PG_M | PG_RW))
3733                                 vm_page_dirty(m);
3734                         if (oldpde & PG_A)
3735                                 vm_page_aflag_set(m, PGA_REFERENCED);
3736                         if (TAILQ_EMPTY(&m->md.pv_list) &&
3737                             TAILQ_EMPTY(&pvh->pv_list))
3738                                 vm_page_aflag_clear(m, PGA_WRITEABLE);
3739                         pmap_delayed_invl_page(m);
3740                 }
3741         }
3742         if (pmap == kernel_pmap) {
3743                 pmap_remove_kernel_pde(pmap, pdq, sva);
3744         } else {
3745                 mpte = pmap_remove_pt_page(pmap, sva);
3746                 if (mpte != NULL) {
3747                         pmap_resident_count_dec(pmap, 1);
3748                         KASSERT(mpte->wire_count == NPTEPG,
3749                             ("pmap_remove_pde: pte page wire count error"));
3750                         mpte->wire_count = 0;
3751                         pmap_add_delayed_free_list(mpte, free, FALSE);
3752                 }
3753         }
3754         return (pmap_unuse_pt(pmap, sva, *pmap_pdpe(pmap, sva), free));
3755 }
3756
3757 /*
3758  * pmap_remove_pte: do the things to unmap a page in a process
3759  */
3760 static int
3761 pmap_remove_pte(pmap_t pmap, pt_entry_t *ptq, vm_offset_t va, 
3762     pd_entry_t ptepde, struct spglist *free, struct rwlock **lockp)
3763 {
3764         struct md_page *pvh;
3765         pt_entry_t oldpte, PG_A, PG_M, PG_RW;
3766         vm_page_t m;
3767
3768         PG_A = pmap_accessed_bit(pmap);
3769         PG_M = pmap_modified_bit(pmap);
3770         PG_RW = pmap_rw_bit(pmap);
3771
3772         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3773         oldpte = pte_load_clear(ptq);
3774         if (oldpte & PG_W)
3775                 pmap->pm_stats.wired_count -= 1;
3776         pmap_resident_count_dec(pmap, 1);
3777         if (oldpte & PG_MANAGED) {
3778                 m = PHYS_TO_VM_PAGE(oldpte & PG_FRAME);
3779                 if ((oldpte & (PG_M | PG_RW)) == (PG_M | PG_RW))
3780                         vm_page_dirty(m);
3781                 if (oldpte & PG_A)
3782                         vm_page_aflag_set(m, PGA_REFERENCED);
3783                 CHANGE_PV_LIST_LOCK_TO_VM_PAGE(lockp, m);
3784                 pmap_pvh_free(&m->md, pmap, va);
3785                 if (TAILQ_EMPTY(&m->md.pv_list) &&
3786                     (m->flags & PG_FICTITIOUS) == 0) {
3787                         pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m));
3788                         if (TAILQ_EMPTY(&pvh->pv_list))
3789                                 vm_page_aflag_clear(m, PGA_WRITEABLE);
3790                 }
3791                 pmap_delayed_invl_page(m);
3792         }
3793         return (pmap_unuse_pt(pmap, va, ptepde, free));
3794 }
3795
3796 /*
3797  * Remove a single page from a process address space
3798  */
3799 static void
3800 pmap_remove_page(pmap_t pmap, vm_offset_t va, pd_entry_t *pde,
3801     struct spglist *free)
3802 {
3803         struct rwlock *lock;
3804         pt_entry_t *pte, PG_V;
3805
3806         PG_V = pmap_valid_bit(pmap);
3807         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3808         if ((*pde & PG_V) == 0)
3809                 return;
3810         pte = pmap_pde_to_pte(pde, va);
3811         if ((*pte & PG_V) == 0)
3812                 return;
3813         lock = NULL;
3814         pmap_remove_pte(pmap, pte, va, *pde, free, &lock);
3815         if (lock != NULL)
3816                 rw_wunlock(lock);
3817         pmap_invalidate_page(pmap, va);
3818 }
3819
3820 /*
3821  * Removes the specified range of addresses from the page table page.
3822  */
3823 static bool
3824 pmap_remove_ptes(pmap_t pmap, vm_offset_t sva, vm_offset_t eva,
3825     pd_entry_t *pde, struct spglist *free, struct rwlock **lockp)
3826 {
3827         pt_entry_t PG_G, *pte;
3828         vm_offset_t va;
3829         bool anyvalid;
3830
3831         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
3832         PG_G = pmap_global_bit(pmap);
3833         anyvalid = false;
3834         va = eva;
3835         for (pte = pmap_pde_to_pte(pde, sva); sva != eva; pte++,
3836             sva += PAGE_SIZE) {
3837                 if (*pte == 0) {
3838                         if (va != eva) {
3839                                 pmap_invalidate_range(pmap, va, sva);
3840                                 va = eva;
3841                         }
3842                         continue;
3843                 }
3844                 if ((*pte & PG_G) == 0)
3845                         anyvalid = true;
3846                 else if (va == eva)
3847                         va = sva;
3848                 if (pmap_remove_pte(pmap, pte, sva, *pde, free, lockp)) {
3849                         sva += PAGE_SIZE;
3850                         break;
3851                 }
3852         }
3853         if (va != eva)
3854                 pmap_invalidate_range(pmap, va, sva);
3855         return (anyvalid);
3856 }
3857
3858 /*
3859  *      Remove the given range of addresses from the specified map.
3860  *
3861  *      It is assumed that the start and end are properly
3862  *      rounded to the page size.
3863  */
3864 void
3865 pmap_remove(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
3866 {
3867         struct rwlock *lock;
3868         vm_offset_t va_next;
3869         pml4_entry_t *pml4e;
3870         pdp_entry_t *pdpe;
3871         pd_entry_t ptpaddr, *pde;
3872         pt_entry_t PG_G, PG_V;
3873         struct spglist free;
3874         int anyvalid;
3875
3876         PG_G = pmap_global_bit(pmap);
3877         PG_V = pmap_valid_bit(pmap);
3878
3879         /*
3880          * Perform an unsynchronized read.  This is, however, safe.
3881          */
3882         if (pmap->pm_stats.resident_count == 0)
3883                 return;
3884
3885         anyvalid = 0;
3886         SLIST_INIT(&free);
3887
3888         pmap_delayed_invl_started();
3889         PMAP_LOCK(pmap);
3890
3891         /*
3892          * special handling of removing one page.  a very
3893          * common operation and easy to short circuit some
3894          * code.
3895          */
3896         if (sva + PAGE_SIZE == eva) {
3897                 pde = pmap_pde(pmap, sva);
3898                 if (pde && (*pde & PG_PS) == 0) {
3899                         pmap_remove_page(pmap, sva, pde, &free);
3900                         goto out;
3901                 }
3902         }
3903
3904         lock = NULL;
3905         for (; sva < eva; sva = va_next) {
3906
3907                 if (pmap->pm_stats.resident_count == 0)
3908                         break;
3909
3910                 pml4e = pmap_pml4e(pmap, sva);
3911                 if ((*pml4e & PG_V) == 0) {
3912                         va_next = (sva + NBPML4) & ~PML4MASK;
3913                         if (va_next < sva)
3914                                 va_next = eva;
3915                         continue;
3916                 }
3917
3918                 pdpe = pmap_pml4e_to_pdpe(pml4e, sva);
3919                 if ((*pdpe & PG_V) == 0) {
3920                         va_next = (sva + NBPDP) & ~PDPMASK;
3921                         if (va_next < sva)
3922                                 va_next = eva;
3923                         continue;
3924                 }
3925
3926                 /*
3927                  * Calculate index for next page table.
3928                  */
3929                 va_next = (sva + NBPDR) & ~PDRMASK;
3930                 if (va_next < sva)
3931                         va_next = eva;
3932
3933                 pde = pmap_pdpe_to_pde(pdpe, sva);
3934                 ptpaddr = *pde;
3935
3936                 /*
3937                  * Weed out invalid mappings.
3938                  */
3939                 if (ptpaddr == 0)
3940                         continue;
3941
3942                 /*
3943                  * Check for large page.
3944                  */
3945                 if ((ptpaddr & PG_PS) != 0) {
3946                         /*
3947                          * Are we removing the entire large page?  If not,
3948                          * demote the mapping and fall through.
3949                          */
3950                         if (sva + NBPDR == va_next && eva >= va_next) {
3951                                 /*
3952                                  * The TLB entry for a PG_G mapping is
3953                                  * invalidated by pmap_remove_pde().
3954                                  */
3955                                 if ((ptpaddr & PG_G) == 0)
3956                                         anyvalid = 1;
3957                                 pmap_remove_pde(pmap, pde, sva, &free, &lock);
3958                                 continue;
3959                         } else if (!pmap_demote_pde_locked(pmap, pde, sva,
3960                             &lock)) {
3961                                 /* The large page mapping was destroyed. */
3962                                 continue;
3963                         } else
3964                                 ptpaddr = *pde;
3965                 }
3966
3967                 /*
3968                  * Limit our scan to either the end of the va represented
3969                  * by the current page table page, or to the end of the
3970                  * range being removed.
3971                  */
3972                 if (va_next > eva)
3973                         va_next = eva;
3974
3975                 if (pmap_remove_ptes(pmap, sva, va_next, pde, &free, &lock))
3976                         anyvalid = 1;
3977         }
3978         if (lock != NULL)
3979                 rw_wunlock(lock);
3980 out:
3981         if (anyvalid)
3982                 pmap_invalidate_all(pmap);
3983         PMAP_UNLOCK(pmap);
3984         pmap_delayed_invl_finished();
3985         pmap_free_zero_pages(&free);
3986 }
3987
3988 /*
3989  *      Routine:        pmap_remove_all
3990  *      Function:
3991  *              Removes this physical page from
3992  *              all physical maps in which it resides.
3993  *              Reflects back modify bits to the pager.
3994  *
3995  *      Notes:
3996  *              Original versions of this routine were very
3997  *              inefficient because they iteratively called
3998  *              pmap_remove (slow...)
3999  */
4000
4001 void
4002 pmap_remove_all(vm_page_t m)
4003 {
4004         struct md_page *pvh;
4005         pv_entry_t pv;
4006         pmap_t pmap;
4007         struct rwlock *lock;
4008         pt_entry_t *pte, tpte, PG_A, PG_M, PG_RW;
4009         pd_entry_t *pde;
4010         vm_offset_t va;
4011         struct spglist free;
4012         int pvh_gen, md_gen;
4013
4014         KASSERT((m->oflags & VPO_UNMANAGED) == 0,
4015             ("pmap_remove_all: page %p is not managed", m));
4016         SLIST_INIT(&free);
4017         lock = VM_PAGE_TO_PV_LIST_LOCK(m);
4018         pvh = (m->flags & PG_FICTITIOUS) != 0 ? &pv_dummy :
4019             pa_to_pvh(VM_PAGE_TO_PHYS(m));
4020 retry:
4021         rw_wlock(lock);
4022         while ((pv = TAILQ_FIRST(&pvh->pv_list)) != NULL) {
4023                 pmap = PV_PMAP(pv);
4024                 if (!PMAP_TRYLOCK(pmap)) {
4025                         pvh_gen = pvh->pv_gen;
4026                         rw_wunlock(lock);
4027                         PMAP_LOCK(pmap);
4028                         rw_wlock(lock);
4029                         if (pvh_gen != pvh->pv_gen) {
4030                                 rw_wunlock(lock);
4031                                 PMAP_UNLOCK(pmap);
4032                                 goto retry;
4033                         }
4034                 }
4035                 va = pv->pv_va;
4036                 pde = pmap_pde(pmap, va);
4037                 (void)pmap_demote_pde_locked(pmap, pde, va, &lock);
4038                 PMAP_UNLOCK(pmap);
4039         }
4040         while ((pv = TAILQ_FIRST(&m->md.pv_list)) != NULL) {
4041                 pmap = PV_PMAP(pv);
4042                 if (!PMAP_TRYLOCK(pmap)) {
4043                         pvh_gen = pvh->pv_gen;
4044                         md_gen = m->md.pv_gen;
4045                         rw_wunlock(lock);
4046                         PMAP_LOCK(pmap);
4047                         rw_wlock(lock);
4048                         if (pvh_gen != pvh->pv_gen || md_gen != m->md.pv_gen) {
4049                                 rw_wunlock(lock);
4050                                 PMAP_UNLOCK(pmap);
4051                                 goto retry;
4052                         }
4053                 }
4054                 PG_A = pmap_accessed_bit(pmap);
4055                 PG_M = pmap_modified_bit(pmap);
4056                 PG_RW = pmap_rw_bit(pmap);
4057                 pmap_resident_count_dec(pmap, 1);
4058                 pde = pmap_pde(pmap, pv->pv_va);
4059                 KASSERT((*pde & PG_PS) == 0, ("pmap_remove_all: found"
4060                     " a 2mpage in page %p's pv list", m));
4061                 pte = pmap_pde_to_pte(pde, pv->pv_va);
4062                 tpte = pte_load_clear(pte);
4063                 if (tpte & PG_W)
4064                         pmap->pm_stats.wired_count--;
4065                 if (tpte & PG_A)
4066                         vm_page_aflag_set(m, PGA_REFERENCED);
4067
4068                 /*
4069                  * Update the vm_page_t clean and reference bits.
4070                  */
4071                 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW))
4072                         vm_page_dirty(m);
4073                 pmap_unuse_pt(pmap, pv->pv_va, *pde, &free);
4074                 pmap_invalidate_page(pmap, pv->pv_va);
4075                 TAILQ_REMOVE(&m->md.pv_list, pv, pv_next);
4076                 m->md.pv_gen++;
4077                 free_pv_entry(pmap, pv);
4078                 PMAP_UNLOCK(pmap);
4079         }
4080         vm_page_aflag_clear(m, PGA_WRITEABLE);
4081         rw_wunlock(lock);
4082         pmap_delayed_invl_wait(m);
4083         pmap_free_zero_pages(&free);
4084 }
4085
4086 /*
4087  * pmap_protect_pde: do the things to protect a 2mpage in a process
4088  */
4089 static boolean_t
4090 pmap_protect_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t sva, vm_prot_t prot)
4091 {
4092         pd_entry_t newpde, oldpde;
4093         vm_offset_t eva, va;
4094         vm_page_t m;
4095         boolean_t anychanged;
4096         pt_entry_t PG_G, PG_M, PG_RW;
4097
4098         PG_G = pmap_global_bit(pmap);
4099         PG_M = pmap_modified_bit(pmap);
4100         PG_RW = pmap_rw_bit(pmap);
4101
4102         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
4103         KASSERT((sva & PDRMASK) == 0,
4104             ("pmap_protect_pde: sva is not 2mpage aligned"));
4105         anychanged = FALSE;
4106 retry:
4107         oldpde = newpde = *pde;
4108         if ((oldpde & (PG_MANAGED | PG_M | PG_RW)) ==
4109             (PG_MANAGED | PG_M | PG_RW)) {
4110                 eva = sva + NBPDR;
4111                 for (va = sva, m = PHYS_TO_VM_PAGE(oldpde & PG_PS_FRAME);
4112                     va < eva; va += PAGE_SIZE, m++)
4113                         vm_page_dirty(m);
4114         }
4115         if ((prot & VM_PROT_WRITE) == 0)
4116                 newpde &= ~(PG_RW | PG_M);
4117         if ((prot & VM_PROT_EXECUTE) == 0)
4118                 newpde |= pg_nx;
4119         if (newpde != oldpde) {
4120                 /*
4121                  * As an optimization to future operations on this PDE, clear
4122                  * PG_PROMOTED.  The impending invalidation will remove any
4123                  * lingering 4KB page mappings from the TLB.
4124                  */
4125                 if (!atomic_cmpset_long(pde, oldpde, newpde & ~PG_PROMOTED))
4126                         goto retry;
4127                 if ((oldpde & PG_G) != 0)
4128                         pmap_invalidate_pde_page(kernel_pmap, sva, oldpde);
4129                 else
4130                         anychanged = TRUE;
4131         }
4132         return (anychanged);
4133 }
4134
4135 /*
4136  *      Set the physical protection on the
4137  *      specified range of this map as requested.
4138  */
4139 void
4140 pmap_protect(pmap_t pmap, vm_offset_t sva, vm_offset_t eva, vm_prot_t prot)
4141 {
4142         vm_offset_t va_next;
4143         pml4_entry_t *pml4e;
4144         pdp_entry_t *pdpe;
4145         pd_entry_t ptpaddr, *pde;
4146         pt_entry_t *pte, PG_G, PG_M, PG_RW, PG_V;
4147         boolean_t anychanged;
4148
4149         KASSERT((prot & ~VM_PROT_ALL) == 0, ("invalid prot %x", prot));
4150         if (prot == VM_PROT_NONE) {
4151                 pmap_remove(pmap, sva, eva);
4152                 return;
4153         }
4154
4155         if ((prot & (VM_PROT_WRITE|VM_PROT_EXECUTE)) ==
4156             (VM_PROT_WRITE|VM_PROT_EXECUTE))
4157                 return;
4158
4159         PG_G = pmap_global_bit(pmap);
4160         PG_M = pmap_modified_bit(pmap);
4161         PG_V = pmap_valid_bit(pmap);
4162         PG_RW = pmap_rw_bit(pmap);
4163         anychanged = FALSE;
4164
4165         /*
4166          * Although this function delays and batches the invalidation
4167          * of stale TLB entries, it does not need to call
4168          * pmap_delayed_invl_started() and
4169          * pmap_delayed_invl_finished(), because it does not
4170          * ordinarily destroy mappings.  Stale TLB entries from
4171          * protection-only changes need only be invalidated before the
4172          * pmap lock is released, because protection-only changes do
4173          * not destroy PV entries.  Even operations that iterate over
4174          * a physical page's PV list of mappings, like
4175          * pmap_remove_write(), acquire the pmap lock for each
4176          * mapping.  Consequently, for protection-only changes, the
4177          * pmap lock suffices to synchronize both page table and TLB
4178          * updates.
4179          *
4180          * This function only destroys a mapping if pmap_demote_pde()
4181          * fails.  In that case, stale TLB entries are immediately
4182          * invalidated.
4183          */
4184         
4185         PMAP_LOCK(pmap);
4186         for (; sva < eva; sva = va_next) {
4187
4188                 pml4e = pmap_pml4e(pmap, sva);
4189                 if ((*pml4e & PG_V) == 0) {
4190                         va_next = (sva + NBPML4) & ~PML4MASK;
4191                         if (va_next < sva)
4192                                 va_next = eva;
4193                         continue;
4194                 }
4195
4196                 pdpe = pmap_pml4e_to_pdpe(pml4e, sva);
4197                 if ((*pdpe & PG_V) == 0) {
4198                         va_next = (sva + NBPDP) & ~PDPMASK;
4199                         if (va_next < sva)
4200                                 va_next = eva;
4201                         continue;
4202                 }
4203
4204                 va_next = (sva + NBPDR) & ~PDRMASK;
4205                 if (va_next < sva)
4206                         va_next = eva;
4207
4208                 pde = pmap_pdpe_to_pde(pdpe, sva);
4209                 ptpaddr = *pde;
4210
4211                 /*
4212                  * Weed out invalid mappings.
4213                  */
4214                 if (ptpaddr == 0)
4215                         continue;
4216
4217                 /*
4218                  * Check for large page.
4219                  */
4220                 if ((ptpaddr & PG_PS) != 0) {
4221                         /*
4222                          * Are we protecting the entire large page?  If not,
4223                          * demote the mapping and fall through.
4224                          */
4225                         if (sva + NBPDR == va_next && eva >= va_next) {
4226                                 /*
4227                                  * The TLB entry for a PG_G mapping is
4228                                  * invalidated by pmap_protect_pde().
4229                                  */
4230                                 if (pmap_protect_pde(pmap, pde, sva, prot))
4231                                         anychanged = TRUE;
4232                                 continue;
4233                         } else if (!pmap_demote_pde(pmap, pde, sva)) {
4234                                 /*
4235                                  * The large page mapping was destroyed.
4236                                  */
4237                                 continue;
4238                         }
4239                 }
4240
4241                 if (va_next > eva)
4242                         va_next = eva;
4243
4244                 for (pte = pmap_pde_to_pte(pde, sva); sva != va_next; pte++,
4245                     sva += PAGE_SIZE) {
4246                         pt_entry_t obits, pbits;
4247                         vm_page_t m;
4248
4249 retry:
4250                         obits = pbits = *pte;
4251                         if ((pbits & PG_V) == 0)
4252                                 continue;
4253
4254                         if ((prot & VM_PROT_WRITE) == 0) {
4255                                 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) ==
4256                                     (PG_MANAGED | PG_M | PG_RW)) {
4257                                         m = PHYS_TO_VM_PAGE(pbits & PG_FRAME);
4258                                         vm_page_dirty(m);
4259                                 }
4260                                 pbits &= ~(PG_RW | PG_M);
4261                         }
4262                         if ((prot & VM_PROT_EXECUTE) == 0)
4263                                 pbits |= pg_nx;
4264
4265                         if (pbits != obits) {
4266                                 if (!atomic_cmpset_long(pte, obits, pbits))
4267                                         goto retry;
4268                                 if (obits & PG_G)
4269                                         pmap_invalidate_page(pmap, sva);
4270                                 else
4271                                         anychanged = TRUE;
4272                         }
4273                 }
4274         }
4275         if (anychanged)
4276                 pmap_invalidate_all(pmap);
4277         PMAP_UNLOCK(pmap);
4278 }
4279
4280 #if VM_NRESERVLEVEL > 0
4281 /*
4282  * Tries to promote the 512, contiguous 4KB page mappings that are within a
4283  * single page table page (PTP) to a single 2MB page mapping.  For promotion
4284  * to occur, two conditions must be met: (1) the 4KB page mappings must map
4285  * aligned, contiguous physical memory and (2) the 4KB page mappings must have
4286  * identical characteristics. 
4287  */
4288 static void
4289 pmap_promote_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t va,
4290     struct rwlock **lockp)
4291 {
4292         pd_entry_t newpde;
4293         pt_entry_t *firstpte, oldpte, pa, *pte;
4294         pt_entry_t PG_G, PG_A, PG_M, PG_RW, PG_V;
4295         vm_page_t mpte;
4296         int PG_PTE_CACHE;
4297
4298         PG_A = pmap_accessed_bit(pmap);
4299         PG_G = pmap_global_bit(pmap);
4300         PG_M = pmap_modified_bit(pmap);
4301         PG_V = pmap_valid_bit(pmap);
4302         PG_RW = pmap_rw_bit(pmap);
4303         PG_PTE_CACHE = pmap_cache_mask(pmap, 0);
4304
4305         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
4306
4307         /*
4308          * Examine the first PTE in the specified PTP.  Abort if this PTE is
4309          * either invalid, unused, or does not map the first 4KB physical page
4310          * within a 2MB page. 
4311          */
4312         firstpte = (pt_entry_t *)PHYS_TO_DMAP(*pde & PG_FRAME);
4313 setpde:
4314         newpde = *firstpte;
4315         if ((newpde & ((PG_FRAME & PDRMASK) | PG_A | PG_V)) != (PG_A | PG_V)) {
4316                 atomic_add_long(&pmap_pde_p_failures, 1);
4317                 CTR2(KTR_PMAP, "pmap_promote_pde: failure for va %#lx"
4318                     " in pmap %p", va, pmap);
4319                 return;
4320         }
4321         if ((newpde & (PG_M | PG_RW)) == PG_RW) {
4322                 /*
4323                  * When PG_M is already clear, PG_RW can be cleared without
4324                  * a TLB invalidation.
4325                  */
4326                 if (!atomic_cmpset_long(firstpte, newpde, newpde & ~PG_RW))
4327                         goto setpde;
4328                 newpde &= ~PG_RW;
4329         }
4330
4331         /*
4332          * Examine each of the other PTEs in the specified PTP.  Abort if this
4333          * PTE maps an unexpected 4KB physical page or does not have identical
4334          * characteristics to the first PTE.
4335          */
4336         pa = (newpde & (PG_PS_FRAME | PG_A | PG_V)) + NBPDR - PAGE_SIZE;
4337         for (pte = firstpte + NPTEPG - 1; pte > firstpte; pte--) {
4338 setpte:
4339                 oldpte = *pte;
4340                 if ((oldpte & (PG_FRAME | PG_A | PG_V)) != pa) {
4341                         atomic_add_long(&pmap_pde_p_failures, 1);
4342                         CTR2(KTR_PMAP, "pmap_promote_pde: failure for va %#lx"
4343                             " in pmap %p", va, pmap);
4344                         return;
4345                 }
4346                 if ((oldpte & (PG_M | PG_RW)) == PG_RW) {
4347                         /*
4348                          * When PG_M is already clear, PG_RW can be cleared
4349                          * without a TLB invalidation.
4350                          */
4351                         if (!atomic_cmpset_long(pte, oldpte, oldpte & ~PG_RW))
4352                                 goto setpte;
4353                         oldpte &= ~PG_RW;
4354                         CTR2(KTR_PMAP, "pmap_promote_pde: protect for va %#lx"
4355                             " in pmap %p", (oldpte & PG_FRAME & PDRMASK) |
4356                             (va & ~PDRMASK), pmap);
4357                 }
4358                 if ((oldpte & PG_PTE_PROMOTE) != (newpde & PG_PTE_PROMOTE)) {
4359                         atomic_add_long(&pmap_pde_p_failures, 1);
4360                         CTR2(KTR_PMAP, "pmap_promote_pde: failure for va %#lx"
4361                             " in pmap %p", va, pmap);
4362                         return;
4363                 }
4364                 pa -= PAGE_SIZE;
4365         }
4366
4367         /*
4368          * Save the page table page in its current state until the PDE
4369          * mapping the superpage is demoted by pmap_demote_pde() or
4370          * destroyed by pmap_remove_pde(). 
4371          */
4372         mpte = PHYS_TO_VM_PAGE(*pde & PG_FRAME);
4373         KASSERT(mpte >= vm_page_array &&
4374             mpte < &vm_page_array[vm_page_array_size],
4375             ("pmap_promote_pde: page table page is out of range"));
4376         KASSERT(mpte->pindex == pmap_pde_pindex(va),
4377             ("pmap_promote_pde: page table page's pindex is wrong"));
4378         if (pmap_insert_pt_page(pmap, mpte)) {
4379                 atomic_add_long(&pmap_pde_p_failures, 1);
4380                 CTR2(KTR_PMAP,
4381                     "pmap_promote_pde: failure for va %#lx in pmap %p", va,
4382                     pmap);
4383                 return;
4384         }
4385
4386         /*
4387          * Promote the pv entries.
4388          */
4389         if ((newpde & PG_MANAGED) != 0)
4390                 pmap_pv_promote_pde(pmap, va, newpde & PG_PS_FRAME, lockp);
4391
4392         /*
4393          * Propagate the PAT index to its proper position.
4394          */
4395         newpde = pmap_swap_pat(pmap, newpde);
4396
4397         /*
4398          * Map the superpage.
4399          */
4400         if (workaround_erratum383)
4401                 pmap_update_pde(pmap, va, pde, PG_PS | newpde);
4402         else
4403                 pde_store(pde, PG_PROMOTED | PG_PS | newpde);
4404
4405         atomic_add_long(&pmap_pde_promotions, 1);
4406         CTR2(KTR_PMAP, "pmap_promote_pde: success for va %#lx"
4407             " in pmap %p", va, pmap);
4408 }
4409 #endif /* VM_NRESERVLEVEL > 0 */
4410
4411 /*
4412  *      Insert the given physical page (p) at
4413  *      the specified virtual address (v) in the
4414  *      target physical map with the protection requested.
4415  *
4416  *      If specified, the page will be wired down, meaning
4417  *      that the related pte can not be reclaimed.
4418  *
4419  *      NB:  This is the only routine which MAY NOT lazy-evaluate
4420  *      or lose information.  That is, this routine must actually
4421  *      insert this page into the given map NOW.
4422  *
4423  *      When destroying both a page table and PV entry, this function
4424  *      performs the TLB invalidation before releasing the PV list
4425  *      lock, so we do not need pmap_delayed_invl_page() calls here.
4426  */
4427 int
4428 pmap_enter(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot,
4429     u_int flags, int8_t psind)
4430 {
4431         struct rwlock *lock;
4432         pd_entry_t *pde;
4433         pt_entry_t *pte, PG_G, PG_A, PG_M, PG_RW, PG_V;
4434         pt_entry_t newpte, origpte;
4435         pv_entry_t pv;
4436         vm_paddr_t opa, pa;
4437         vm_page_t mpte, om;
4438         int rv;
4439         boolean_t nosleep;
4440
4441         PG_A = pmap_accessed_bit(pmap);
4442         PG_G = pmap_global_bit(pmap);
4443         PG_M = pmap_modified_bit(pmap);
4444         PG_V = pmap_valid_bit(pmap);
4445         PG_RW = pmap_rw_bit(pmap);
4446
4447         va = trunc_page(va);
4448         KASSERT(va <= VM_MAX_KERNEL_ADDRESS, ("pmap_enter: toobig"));
4449         KASSERT(va < UPT_MIN_ADDRESS || va >= UPT_MAX_ADDRESS,
4450             ("pmap_enter: invalid to pmap_enter page table pages (va: 0x%lx)",
4451             va));
4452         KASSERT((m->oflags & VPO_UNMANAGED) != 0 || va < kmi.clean_sva ||
4453             va >= kmi.clean_eva,
4454             ("pmap_enter: managed mapping within the clean submap"));
4455         if ((m->oflags & VPO_UNMANAGED) == 0 && !vm_page_xbusied(m))
4456                 VM_OBJECT_ASSERT_LOCKED(m->object);
4457         KASSERT((flags & PMAP_ENTER_RESERVED) == 0,
4458             ("pmap_enter: flags %u has reserved bits set", flags));
4459         pa = VM_PAGE_TO_PHYS(m);
4460         newpte = (pt_entry_t)(pa | PG_A | PG_V);
4461         if ((flags & VM_PROT_WRITE) != 0)
4462                 newpte |= PG_M;
4463         if ((prot & VM_PROT_WRITE) != 0)
4464                 newpte |= PG_RW;
4465         KASSERT((newpte & (PG_M | PG_RW)) != PG_M,
4466             ("pmap_enter: flags includes VM_PROT_WRITE but prot doesn't"));
4467         if ((prot & VM_PROT_EXECUTE) == 0)
4468                 newpte |= pg_nx;
4469         if ((flags & PMAP_ENTER_WIRED) != 0)
4470                 newpte |= PG_W;
4471         if (va < VM_MAXUSER_ADDRESS)
4472                 newpte |= PG_U;
4473         if (pmap == kernel_pmap)
4474                 newpte |= PG_G;
4475         newpte |= pmap_cache_bits(pmap, m->md.pat_mode, psind > 0);
4476
4477         /*
4478          * Set modified bit gratuitously for writeable mappings if
4479          * the page is unmanaged. We do not want to take a fault
4480          * to do the dirty bit accounting for these mappings.
4481          */
4482         if ((m->oflags & VPO_UNMANAGED) != 0) {
4483                 if ((newpte & PG_RW) != 0)
4484                         newpte |= PG_M;
4485         } else
4486                 newpte |= PG_MANAGED;
4487
4488         lock = NULL;
4489         PMAP_LOCK(pmap);
4490         if (psind == 1) {
4491                 /* Assert the required virtual and physical alignment. */ 
4492                 KASSERT((va & PDRMASK) == 0, ("pmap_enter: va unaligned"));
4493                 KASSERT(m->psind > 0, ("pmap_enter: m->psind < psind"));
4494                 rv = pmap_enter_pde(pmap, va, newpte | PG_PS, flags, m, &lock);
4495                 goto out;
4496         }
4497         mpte = NULL;
4498
4499         /*
4500          * In the case that a page table page is not
4501          * resident, we are creating it here.
4502          */
4503 retry:
4504         pde = pmap_pde(pmap, va);
4505         if (pde != NULL && (*pde & PG_V) != 0 && ((*pde & PG_PS) == 0 ||
4506             pmap_demote_pde_locked(pmap, pde, va, &lock))) {
4507                 pte = pmap_pde_to_pte(pde, va);
4508                 if (va < VM_MAXUSER_ADDRESS && mpte == NULL) {
4509                         mpte = PHYS_TO_VM_PAGE(*pde & PG_FRAME);
4510                         mpte->wire_count++;
4511                 }
4512         } else if (va < VM_MAXUSER_ADDRESS) {
4513                 /*
4514                  * Here if the pte page isn't mapped, or if it has been
4515                  * deallocated.
4516                  */
4517                 nosleep = (flags & PMAP_ENTER_NOSLEEP) != 0;
4518                 mpte = _pmap_allocpte(pmap, pmap_pde_pindex(va),
4519                     nosleep ? NULL : &lock);
4520                 if (mpte == NULL && nosleep) {
4521                         rv = KERN_RESOURCE_SHORTAGE;
4522                         goto out;
4523                 }
4524                 goto retry;
4525         } else
4526                 panic("pmap_enter: invalid page directory va=%#lx", va);
4527
4528         origpte = *pte;
4529
4530         /*
4531          * Is the specified virtual address already mapped?
4532          */
4533         if ((origpte & PG_V) != 0) {
4534                 /*
4535                  * Wiring change, just update stats. We don't worry about
4536                  * wiring PT pages as they remain resident as long as there
4537                  * are valid mappings in them. Hence, if a user page is wired,
4538                  * the PT page will be also.
4539                  */
4540                 if ((newpte & PG_W) != 0 && (origpte & PG_W) == 0)
4541                         pmap->pm_stats.wired_count++;
4542                 else if ((newpte & PG_W) == 0 && (origpte & PG_W) != 0)
4543                         pmap->pm_stats.wired_count--;
4544
4545                 /*
4546                  * Remove the extra PT page reference.
4547                  */
4548                 if (mpte != NULL) {
4549                         mpte->wire_count--;
4550                         KASSERT(mpte->wire_count > 0,
4551                             ("pmap_enter: missing reference to page table page,"
4552                              " va: 0x%lx", va));
4553                 }
4554
4555                 /*
4556                  * Has the physical page changed?
4557                  */
4558                 opa = origpte & PG_FRAME;
4559                 if (opa == pa) {
4560                         /*
4561                          * No, might be a protection or wiring change.
4562                          */
4563                         if ((origpte & PG_MANAGED) != 0 &&
4564                             (newpte & PG_RW) != 0)
4565                                 vm_page_aflag_set(m, PGA_WRITEABLE);
4566                         if (((origpte ^ newpte) & ~(PG_M | PG_A)) == 0)
4567                                 goto unchanged;
4568                         goto validate;
4569                 }
4570         } else {
4571                 /*
4572                  * Increment the counters.
4573                  */
4574                 if ((newpte & PG_W) != 0)
4575                         pmap->pm_stats.wired_count++;
4576                 pmap_resident_count_inc(pmap, 1);
4577         }
4578
4579         /*
4580          * Enter on the PV list if part of our managed memory.
4581          */
4582         if ((newpte & PG_MANAGED) != 0) {
4583                 pv = get_pv_entry(pmap, &lock);
4584                 pv->pv_va = va;
4585                 CHANGE_PV_LIST_LOCK_TO_PHYS(&lock, pa);
4586                 TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_next);
4587                 m->md.pv_gen++;
4588                 if ((newpte & PG_RW) != 0)
4589                         vm_page_aflag_set(m, PGA_WRITEABLE);
4590         }
4591
4592         /*
4593          * Update the PTE.
4594          */
4595         if ((origpte & PG_V) != 0) {
4596 validate:
4597                 origpte = pte_load_store(pte, newpte);
4598                 opa = origpte & PG_FRAME;
4599                 if (opa != pa) {
4600                         if ((origpte & PG_MANAGED) != 0) {
4601                                 om = PHYS_TO_VM_PAGE(opa);
4602                                 if ((origpte & (PG_M | PG_RW)) == (PG_M |
4603                                     PG_RW))
4604                                         vm_page_dirty(om);
4605                                 if ((origpte & PG_A) != 0)
4606                                         vm_page_aflag_set(om, PGA_REFERENCED);
4607                                 CHANGE_PV_LIST_LOCK_TO_PHYS(&lock, opa);
4608                                 pmap_pvh_free(&om->md, pmap, va);
4609                                 if ((om->aflags & PGA_WRITEABLE) != 0 &&
4610                                     TAILQ_EMPTY(&om->md.pv_list) &&
4611                                     ((om->flags & PG_FICTITIOUS) != 0 ||
4612                                     TAILQ_EMPTY(&pa_to_pvh(opa)->pv_list)))
4613                                         vm_page_aflag_clear(om, PGA_WRITEABLE);
4614                         }
4615                 } else if ((newpte & PG_M) == 0 && (origpte & (PG_M |
4616                     PG_RW)) == (PG_M | PG_RW)) {
4617                         if ((origpte & PG_MANAGED) != 0)
4618                                 vm_page_dirty(m);
4619
4620                         /*
4621                          * Although the PTE may still have PG_RW set, TLB
4622                          * invalidation may nonetheless be required because
4623                          * the PTE no longer has PG_M set.
4624                          */
4625                 } else if ((origpte & PG_NX) != 0 || (newpte & PG_NX) == 0) {
4626                         /*
4627                          * This PTE change does not require TLB invalidation.
4628                          */
4629                         goto unchanged;
4630                 }
4631                 if ((origpte & PG_A) != 0)
4632                         pmap_invalidate_page(pmap, va);
4633         } else
4634                 pte_store(pte, newpte);
4635
4636 unchanged:
4637
4638 #if VM_NRESERVLEVEL > 0
4639         /*
4640          * If both the page table page and the reservation are fully
4641          * populated, then attempt promotion.
4642          */
4643         if ((mpte == NULL || mpte->wire_count == NPTEPG) &&
4644             pmap_ps_enabled(pmap) &&
4645             (m->flags & PG_FICTITIOUS) == 0 &&
4646             vm_reserv_level_iffullpop(m) == 0)
4647                 pmap_promote_pde(pmap, pde, va, &lock);
4648 #endif
4649
4650         rv = KERN_SUCCESS;
4651 out:
4652         if (lock != NULL)
4653                 rw_wunlock(lock);
4654         PMAP_UNLOCK(pmap);
4655         return (rv);
4656 }
4657
4658 /*
4659  * Tries to create a read- and/or execute-only 2MB page mapping.  Returns true
4660  * if successful.  Returns false if (1) a page table page cannot be allocated
4661  * without sleeping, (2) a mapping already exists at the specified virtual
4662  * address, or (3) a PV entry cannot be allocated without reclaiming another
4663  * PV entry.
4664  */
4665 static bool
4666 pmap_enter_2mpage(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot,
4667     struct rwlock **lockp)
4668 {
4669         pd_entry_t newpde;
4670         pt_entry_t PG_V;
4671
4672         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
4673         PG_V = pmap_valid_bit(pmap);
4674         newpde = VM_PAGE_TO_PHYS(m) | pmap_cache_bits(pmap, m->md.pat_mode, 1) |
4675             PG_PS | PG_V;
4676         if ((m->oflags & VPO_UNMANAGED) == 0)
4677                 newpde |= PG_MANAGED;
4678         if ((prot & VM_PROT_EXECUTE) == 0)
4679                 newpde |= pg_nx;
4680         if (va < VM_MAXUSER_ADDRESS)
4681                 newpde |= PG_U;
4682         return (pmap_enter_pde(pmap, va, newpde, PMAP_ENTER_NOSLEEP |
4683             PMAP_ENTER_NOREPLACE | PMAP_ENTER_NORECLAIM, NULL, lockp) ==
4684             KERN_SUCCESS);
4685 }
4686
4687 /*
4688  * Tries to create the specified 2MB page mapping.  Returns KERN_SUCCESS if
4689  * the mapping was created, and either KERN_FAILURE or KERN_RESOURCE_SHORTAGE
4690  * otherwise.  Returns KERN_FAILURE if PMAP_ENTER_NOREPLACE was specified and
4691  * a mapping already exists at the specified virtual address.  Returns
4692  * KERN_RESOURCE_SHORTAGE if PMAP_ENTER_NOSLEEP was specified and a page table
4693  * page allocation failed.  Returns KERN_RESOURCE_SHORTAGE if
4694  * PMAP_ENTER_NORECLAIM was specified and a PV entry allocation failed.
4695  *
4696  * The parameter "m" is only used when creating a managed, writeable mapping.
4697  */
4698 static int
4699 pmap_enter_pde(pmap_t pmap, vm_offset_t va, pd_entry_t newpde, u_int flags,
4700     vm_page_t m, struct rwlock **lockp)
4701 {
4702         struct spglist free;
4703         pd_entry_t oldpde, *pde;
4704         pt_entry_t PG_G, PG_RW, PG_V;
4705         vm_page_t mt, pdpg;
4706
4707         PG_G = pmap_global_bit(pmap);
4708         PG_RW = pmap_rw_bit(pmap);
4709         KASSERT((newpde & (pmap_modified_bit(pmap) | PG_RW)) != PG_RW,
4710             ("pmap_enter_pde: newpde is missing PG_M"));
4711         PG_V = pmap_valid_bit(pmap);
4712         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
4713
4714         if ((pdpg = pmap_allocpde(pmap, va, (flags & PMAP_ENTER_NOSLEEP) != 0 ?
4715             NULL : lockp)) == NULL) {
4716                 CTR2(KTR_PMAP, "pmap_enter_pde: failure for va %#lx"
4717                     " in pmap %p", va, pmap);
4718                 return (KERN_RESOURCE_SHORTAGE);
4719         }
4720         pde = (pd_entry_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(pdpg));
4721         pde = &pde[pmap_pde_index(va)];
4722         oldpde = *pde;
4723         if ((oldpde & PG_V) != 0) {
4724                 KASSERT(pdpg->wire_count > 1,
4725                     ("pmap_enter_pde: pdpg's wire count is too low"));
4726                 if ((flags & PMAP_ENTER_NOREPLACE) != 0) {
4727                         pdpg->wire_count--;
4728                         CTR2(KTR_PMAP, "pmap_enter_pde: failure for va %#lx"
4729                             " in pmap %p", va, pmap);
4730                         return (KERN_FAILURE);
4731                 }
4732                 /* Break the existing mapping(s). */
4733                 SLIST_INIT(&free);
4734                 if ((oldpde & PG_PS) != 0) {
4735                         /*
4736                          * The reference to the PD page that was acquired by
4737                          * pmap_allocpde() ensures that it won't be freed.
4738                          * However, if the PDE resulted from a promotion, then
4739                          * a reserved PT page could be freed.
4740                          */
4741                         (void)pmap_remove_pde(pmap, pde, va, &free, lockp);
4742                         if ((oldpde & PG_G) == 0)
4743                                 pmap_invalidate_pde_page(pmap, va, oldpde);
4744                 } else {
4745                         pmap_delayed_invl_started();
4746                         if (pmap_remove_ptes(pmap, va, va + NBPDR, pde, &free,
4747                             lockp))
4748                                pmap_invalidate_all(pmap);
4749                         pmap_delayed_invl_finished();
4750                 }
4751                 pmap_free_zero_pages(&free);
4752                 if (va >= VM_MAXUSER_ADDRESS) {
4753                         mt = PHYS_TO_VM_PAGE(*pde & PG_FRAME);
4754                         if (pmap_insert_pt_page(pmap, mt)) {
4755                                 /*
4756                                  * XXX Currently, this can't happen because
4757                                  * we do not perform pmap_enter(psind == 1)
4758                                  * on the kernel pmap.
4759                                  */
4760                                 panic("pmap_enter_pde: trie insert failed");
4761                         }
4762                 } else
4763                         KASSERT(*pde == 0, ("pmap_enter_pde: non-zero pde %p",
4764                             pde));
4765         }
4766         if ((newpde & PG_MANAGED) != 0) {
4767                 /*
4768                  * Abort this mapping if its PV entry could not be created.
4769                  */
4770                 if (!pmap_pv_insert_pde(pmap, va, newpde, flags, lockp)) {
4771                         SLIST_INIT(&free);
4772                         if (pmap_unwire_ptp(pmap, va, pdpg, &free)) {
4773                                 /*
4774                                  * Although "va" is not mapped, paging-
4775                                  * structure caches could nonetheless have
4776                                  * entries that refer to the freed page table
4777                                  * pages.  Invalidate those entries.
4778                                  */
4779                                 pmap_invalidate_page(pmap, va);
4780                                 pmap_free_zero_pages(&free);
4781                         }
4782                         CTR2(KTR_PMAP, "pmap_enter_pde: failure for va %#lx"
4783                             " in pmap %p", va, pmap);
4784                         return (KERN_RESOURCE_SHORTAGE);
4785                 }
4786                 if ((newpde & PG_RW) != 0) {
4787                         for (mt = m; mt < &m[NBPDR / PAGE_SIZE]; mt++)
4788                                 vm_page_aflag_set(mt, PGA_WRITEABLE);
4789                 }
4790         }
4791
4792         /*
4793          * Increment counters.
4794          */
4795         if ((newpde & PG_W) != 0)
4796                 pmap->pm_stats.wired_count += NBPDR / PAGE_SIZE;
4797         pmap_resident_count_inc(pmap, NBPDR / PAGE_SIZE);
4798
4799         /*
4800          * Map the superpage.  (This is not a promoted mapping; there will not
4801          * be any lingering 4KB page mappings in the TLB.)
4802          */
4803         pde_store(pde, newpde);
4804
4805         atomic_add_long(&pmap_pde_mappings, 1);
4806         CTR2(KTR_PMAP, "pmap_enter_pde: success for va %#lx"
4807             " in pmap %p", va, pmap);
4808         return (KERN_SUCCESS);
4809 }
4810
4811 /*
4812  * Maps a sequence of resident pages belonging to the same object.
4813  * The sequence begins with the given page m_start.  This page is
4814  * mapped at the given virtual address start.  Each subsequent page is
4815  * mapped at a virtual address that is offset from start by the same
4816  * amount as the page is offset from m_start within the object.  The
4817  * last page in the sequence is the page with the largest offset from
4818  * m_start that can be mapped at a virtual address less than the given
4819  * virtual address end.  Not every virtual page between start and end
4820  * is mapped; only those for which a resident page exists with the
4821  * corresponding offset from m_start are mapped.
4822  */
4823 void
4824 pmap_enter_object(pmap_t pmap, vm_offset_t start, vm_offset_t end,
4825     vm_page_t m_start, vm_prot_t prot)
4826 {
4827         struct rwlock *lock;
4828         vm_offset_t va;
4829         vm_page_t m, mpte;
4830         vm_pindex_t diff, psize;
4831
4832         VM_OBJECT_ASSERT_LOCKED(m_start->object);
4833
4834         psize = atop(end - start);
4835         mpte = NULL;
4836         m = m_start;
4837         lock = NULL;
4838         PMAP_LOCK(pmap);
4839         while (m != NULL && (diff = m->pindex - m_start->pindex) < psize) {
4840                 va = start + ptoa(diff);
4841                 if ((va & PDRMASK) == 0 && va + NBPDR <= end &&
4842                     m->psind == 1 && pmap_ps_enabled(pmap) &&
4843                     pmap_enter_2mpage(pmap, va, m, prot, &lock))
4844                         m = &m[NBPDR / PAGE_SIZE - 1];
4845                 else
4846                         mpte = pmap_enter_quick_locked(pmap, va, m, prot,
4847                             mpte, &lock);
4848                 m = TAILQ_NEXT(m, listq);
4849         }
4850         if (lock != NULL)
4851                 rw_wunlock(lock);
4852         PMAP_UNLOCK(pmap);
4853 }
4854
4855 /*
4856  * this code makes some *MAJOR* assumptions:
4857  * 1. Current pmap & pmap exists.
4858  * 2. Not wired.
4859  * 3. Read access.
4860  * 4. No page table pages.
4861  * but is *MUCH* faster than pmap_enter...
4862  */
4863
4864 void
4865 pmap_enter_quick(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot)
4866 {
4867         struct rwlock *lock;
4868
4869         lock = NULL;
4870         PMAP_LOCK(pmap);
4871         (void)pmap_enter_quick_locked(pmap, va, m, prot, NULL, &lock);
4872         if (lock != NULL)
4873                 rw_wunlock(lock);
4874         PMAP_UNLOCK(pmap);
4875 }
4876
4877 static vm_page_t
4878 pmap_enter_quick_locked(pmap_t pmap, vm_offset_t va, vm_page_t m,
4879     vm_prot_t prot, vm_page_t mpte, struct rwlock **lockp)
4880 {
4881         struct spglist free;
4882         pt_entry_t *pte, PG_V;
4883         vm_paddr_t pa;
4884
4885         KASSERT(va < kmi.clean_sva || va >= kmi.clean_eva ||
4886             (m->oflags & VPO_UNMANAGED) != 0,
4887             ("pmap_enter_quick_locked: managed mapping within the clean submap"));
4888         PG_V = pmap_valid_bit(pmap);
4889         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
4890
4891         /*
4892          * In the case that a page table page is not
4893          * resident, we are creating it here.
4894          */
4895         if (va < VM_MAXUSER_ADDRESS) {
4896                 vm_pindex_t ptepindex;
4897                 pd_entry_t *ptepa;
4898
4899                 /*
4900                  * Calculate pagetable page index
4901                  */
4902                 ptepindex = pmap_pde_pindex(va);
4903                 if (mpte && (mpte->pindex == ptepindex)) {
4904                         mpte->wire_count++;
4905                 } else {
4906                         /*
4907                          * Get the page directory entry
4908                          */
4909                         ptepa = pmap_pde(pmap, va);
4910
4911                         /*
4912                          * If the page table page is mapped, we just increment
4913                          * the hold count, and activate it.  Otherwise, we
4914                          * attempt to allocate a page table page.  If this
4915                          * attempt fails, we don't retry.  Instead, we give up.
4916                          */
4917                         if (ptepa && (*ptepa & PG_V) != 0) {
4918                                 if (*ptepa & PG_PS)
4919                                         return (NULL);
4920                                 mpte = PHYS_TO_VM_PAGE(*ptepa & PG_FRAME);
4921                                 mpte->wire_count++;
4922                         } else {
4923                                 /*
4924                                  * Pass NULL instead of the PV list lock
4925                                  * pointer, because we don't intend to sleep.
4926                                  */
4927                                 mpte = _pmap_allocpte(pmap, ptepindex, NULL);
4928                                 if (mpte == NULL)
4929                                         return (mpte);
4930                         }
4931                 }
4932                 pte = (pt_entry_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(mpte));
4933                 pte = &pte[pmap_pte_index(va)];
4934         } else {
4935                 mpte = NULL;
4936                 pte = vtopte(va);
4937         }
4938         if (*pte) {
4939                 if (mpte != NULL) {
4940                         mpte->wire_count--;
4941                         mpte = NULL;
4942                 }
4943                 return (mpte);
4944         }
4945
4946         /*
4947          * Enter on the PV list if part of our managed memory.
4948          */
4949         if ((m->oflags & VPO_UNMANAGED) == 0 &&
4950             !pmap_try_insert_pv_entry(pmap, va, m, lockp)) {
4951                 if (mpte != NULL) {
4952                         SLIST_INIT(&free);
4953                         if (pmap_unwire_ptp(pmap, va, mpte, &free)) {
4954                                 /*
4955                                  * Although "va" is not mapped, paging-
4956                                  * structure caches could nonetheless have
4957                                  * entries that refer to the freed page table
4958                                  * pages.  Invalidate those entries.
4959                                  */
4960                                 pmap_invalidate_page(pmap, va);
4961                                 pmap_free_zero_pages(&free);
4962                         }
4963                         mpte = NULL;
4964                 }
4965                 return (mpte);
4966         }
4967
4968         /*
4969          * Increment counters
4970          */
4971         pmap_resident_count_inc(pmap, 1);
4972
4973         pa = VM_PAGE_TO_PHYS(m) | pmap_cache_bits(pmap, m->md.pat_mode, 0);
4974         if ((prot & VM_PROT_EXECUTE) == 0)
4975                 pa |= pg_nx;
4976
4977         /*
4978          * Now validate mapping with RO protection
4979          */
4980         if ((m->oflags & VPO_UNMANAGED) != 0)
4981                 pte_store(pte, pa | PG_V | PG_U);
4982         else
4983                 pte_store(pte, pa | PG_V | PG_U | PG_MANAGED);
4984         return (mpte);
4985 }
4986
4987 /*
4988  * Make a temporary mapping for a physical address.  This is only intended
4989  * to be used for panic dumps.
4990  */
4991 void *
4992 pmap_kenter_temporary(vm_paddr_t pa, int i)
4993 {
4994         vm_offset_t va;
4995
4996         va = (vm_offset_t)crashdumpmap + (i * PAGE_SIZE);
4997         pmap_kenter(va, pa);
4998         invlpg(va);
4999         return ((void *)crashdumpmap);
5000 }
5001
5002 /*
5003  * This code maps large physical mmap regions into the
5004  * processor address space.  Note that some shortcuts
5005  * are taken, but the code works.
5006  */
5007 void
5008 pmap_object_init_pt(pmap_t pmap, vm_offset_t addr, vm_object_t object,
5009     vm_pindex_t pindex, vm_size_t size)
5010 {
5011         pd_entry_t *pde;
5012         pt_entry_t PG_A, PG_M, PG_RW, PG_V;
5013         vm_paddr_t pa, ptepa;
5014         vm_page_t p, pdpg;
5015         int pat_mode;
5016
5017         PG_A = pmap_accessed_bit(pmap);
5018         PG_M = pmap_modified_bit(pmap);
5019         PG_V = pmap_valid_bit(pmap);
5020         PG_RW = pmap_rw_bit(pmap);
5021
5022         VM_OBJECT_ASSERT_WLOCKED(object);
5023         KASSERT(object->type == OBJT_DEVICE || object->type == OBJT_SG,
5024             ("pmap_object_init_pt: non-device object"));
5025         if ((addr & (NBPDR - 1)) == 0 && (size & (NBPDR - 1)) == 0) {
5026                 if (!pmap_ps_enabled(pmap))
5027                         return;
5028                 if (!vm_object_populate(object, pindex, pindex + atop(size)))
5029                         return;
5030                 p = vm_page_lookup(object, pindex);
5031                 KASSERT(p->valid == VM_PAGE_BITS_ALL,
5032                     ("pmap_object_init_pt: invalid page %p", p));
5033                 pat_mode = p->md.pat_mode;
5034
5035                 /*
5036                  * Abort the mapping if the first page is not physically
5037                  * aligned to a 2MB page boundary.
5038                  */
5039                 ptepa = VM_PAGE_TO_PHYS(p);
5040                 if (ptepa & (NBPDR - 1))
5041                         return;
5042
5043                 /*
5044                  * Skip the first page.  Abort the mapping if the rest of
5045                  * the pages are not physically contiguous or have differing
5046                  * memory attributes.
5047                  */
5048                 p = TAILQ_NEXT(p, listq);
5049                 for (pa = ptepa + PAGE_SIZE; pa < ptepa + size;
5050                     pa += PAGE_SIZE) {
5051                         KASSERT(p->valid == VM_PAGE_BITS_ALL,
5052                             ("pmap_object_init_pt: invalid page %p", p));
5053                         if (pa != VM_PAGE_TO_PHYS(p) ||
5054                             pat_mode != p->md.pat_mode)
5055                                 return;
5056                         p = TAILQ_NEXT(p, listq);
5057                 }
5058
5059                 /*
5060                  * Map using 2MB pages.  Since "ptepa" is 2M aligned and
5061                  * "size" is a multiple of 2M, adding the PAT setting to "pa"
5062                  * will not affect the termination of this loop.
5063                  */ 
5064                 PMAP_LOCK(pmap);
5065                 for (pa = ptepa | pmap_cache_bits(pmap, pat_mode, 1);
5066                     pa < ptepa + size; pa += NBPDR) {
5067                         pdpg = pmap_allocpde(pmap, addr, NULL);
5068                         if (pdpg == NULL) {
5069                                 /*
5070                                  * The creation of mappings below is only an
5071                                  * optimization.  If a page directory page
5072                                  * cannot be allocated without blocking,
5073                                  * continue on to the next mapping rather than
5074                                  * blocking.
5075                                  */
5076                                 addr += NBPDR;
5077                                 continue;
5078                         }
5079                         pde = (pd_entry_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(pdpg));
5080                         pde = &pde[pmap_pde_index(addr)];
5081                         if ((*pde & PG_V) == 0) {
5082                                 pde_store(pde, pa | PG_PS | PG_M | PG_A |
5083                                     PG_U | PG_RW | PG_V);
5084                                 pmap_resident_count_inc(pmap, NBPDR / PAGE_SIZE);
5085                                 atomic_add_long(&pmap_pde_mappings, 1);
5086                         } else {
5087                                 /* Continue on if the PDE is already valid. */
5088                                 pdpg->wire_count--;
5089                                 KASSERT(pdpg->wire_count > 0,
5090                                     ("pmap_object_init_pt: missing reference "
5091                                     "to page directory page, va: 0x%lx", addr));
5092                         }
5093                         addr += NBPDR;
5094                 }
5095                 PMAP_UNLOCK(pmap);
5096         }
5097 }
5098
5099 /*
5100  *      Clear the wired attribute from the mappings for the specified range of
5101  *      addresses in the given pmap.  Every valid mapping within that range
5102  *      must have the wired attribute set.  In contrast, invalid mappings
5103  *      cannot have the wired attribute set, so they are ignored.
5104  *
5105  *      The wired attribute of the page table entry is not a hardware
5106  *      feature, so there is no need to invalidate any TLB entries.
5107  *      Since pmap_demote_pde() for the wired entry must never fail,
5108  *      pmap_delayed_invl_started()/finished() calls around the
5109  *      function are not needed.
5110  */
5111 void
5112 pmap_unwire(pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
5113 {
5114         vm_offset_t va_next;
5115         pml4_entry_t *pml4e;
5116         pdp_entry_t *pdpe;
5117         pd_entry_t *pde;
5118         pt_entry_t *pte, PG_V;
5119
5120         PG_V = pmap_valid_bit(pmap);
5121         PMAP_LOCK(pmap);
5122         for (; sva < eva; sva = va_next) {
5123                 pml4e = pmap_pml4e(pmap, sva);
5124                 if ((*pml4e & PG_V) == 0) {
5125                         va_next = (sva + NBPML4) & ~PML4MASK;
5126                         if (va_next < sva)
5127                                 va_next = eva;
5128                         continue;
5129                 }
5130                 pdpe = pmap_pml4e_to_pdpe(pml4e, sva);
5131                 if ((*pdpe & PG_V) == 0) {
5132                         va_next = (sva + NBPDP) & ~PDPMASK;
5133                         if (va_next < sva)
5134                                 va_next = eva;
5135                         continue;
5136                 }
5137                 va_next = (sva + NBPDR) & ~PDRMASK;
5138                 if (va_next < sva)
5139                         va_next = eva;
5140                 pde = pmap_pdpe_to_pde(pdpe, sva);
5141                 if ((*pde & PG_V) == 0)
5142                         continue;
5143                 if ((*pde & PG_PS) != 0) {
5144                         if ((*pde & PG_W) == 0)
5145                                 panic("pmap_unwire: pde %#jx is missing PG_W",
5146                                     (uintmax_t)*pde);
5147
5148                         /*
5149                          * Are we unwiring the entire large page?  If not,
5150                          * demote the mapping and fall through.
5151                          */
5152                         if (sva + NBPDR == va_next && eva >= va_next) {
5153                                 atomic_clear_long(pde, PG_W);
5154                                 pmap->pm_stats.wired_count -= NBPDR /
5155                                     PAGE_SIZE;
5156                                 continue;
5157                         } else if (!pmap_demote_pde(pmap, pde, sva))
5158                                 panic("pmap_unwire: demotion failed");
5159                 }
5160                 if (va_next > eva)
5161                         va_next = eva;
5162                 for (pte = pmap_pde_to_pte(pde, sva); sva != va_next; pte++,
5163                     sva += PAGE_SIZE) {
5164                         if ((*pte & PG_V) == 0)
5165                                 continue;
5166                         if ((*pte & PG_W) == 0)
5167                                 panic("pmap_unwire: pte %#jx is missing PG_W",
5168                                     (uintmax_t)*pte);
5169
5170                         /*
5171                          * PG_W must be cleared atomically.  Although the pmap
5172                          * lock synchronizes access to PG_W, another processor
5173                          * could be setting PG_M and/or PG_A concurrently.
5174                          */
5175                         atomic_clear_long(pte, PG_W);
5176                         pmap->pm_stats.wired_count--;
5177                 }
5178         }
5179         PMAP_UNLOCK(pmap);
5180 }
5181
5182 /*
5183  *      Copy the range specified by src_addr/len
5184  *      from the source map to the range dst_addr/len
5185  *      in the destination map.
5186  *
5187  *      This routine is only advisory and need not do anything.
5188  */
5189
5190 void
5191 pmap_copy(pmap_t dst_pmap, pmap_t src_pmap, vm_offset_t dst_addr, vm_size_t len,
5192     vm_offset_t src_addr)
5193 {
5194         struct rwlock *lock;
5195         struct spglist free;
5196         vm_offset_t addr;
5197         vm_offset_t end_addr = src_addr + len;
5198         vm_offset_t va_next;
5199         vm_page_t dst_pdpg, dstmpte, srcmpte;
5200         pt_entry_t PG_A, PG_M, PG_V;
5201
5202         if (dst_addr != src_addr)
5203                 return;
5204
5205         if (dst_pmap->pm_type != src_pmap->pm_type)
5206                 return;
5207
5208         /*
5209          * EPT page table entries that require emulation of A/D bits are
5210          * sensitive to clearing the PG_A bit (aka EPT_PG_READ). Although
5211          * we clear PG_M (aka EPT_PG_WRITE) concomitantly, the PG_U bit
5212          * (aka EPT_PG_EXECUTE) could still be set. Since some EPT
5213          * implementations flag an EPT misconfiguration for exec-only
5214          * mappings we skip this function entirely for emulated pmaps.
5215          */
5216         if (pmap_emulate_ad_bits(dst_pmap))
5217                 return;
5218
5219         lock = NULL;
5220         if (dst_pmap < src_pmap) {
5221                 PMAP_LOCK(dst_pmap);
5222                 PMAP_LOCK(src_pmap);
5223         } else {
5224                 PMAP_LOCK(src_pmap);
5225                 PMAP_LOCK(dst_pmap);
5226         }
5227
5228         PG_A = pmap_accessed_bit(dst_pmap);
5229         PG_M = pmap_modified_bit(dst_pmap);
5230         PG_V = pmap_valid_bit(dst_pmap);
5231
5232         for (addr = src_addr; addr < end_addr; addr = va_next) {
5233                 pt_entry_t *src_pte, *dst_pte;
5234                 pml4_entry_t *pml4e;
5235                 pdp_entry_t *pdpe;
5236                 pd_entry_t srcptepaddr, *pde;
5237
5238                 KASSERT(addr < UPT_MIN_ADDRESS,
5239                     ("pmap_copy: invalid to pmap_copy page tables"));
5240
5241                 pml4e = pmap_pml4e(src_pmap, addr);
5242                 if ((*pml4e & PG_V) == 0) {
5243                         va_next = (addr + NBPML4) & ~PML4MASK;
5244                         if (va_next < addr)
5245                                 va_next = end_addr;
5246                         continue;
5247                 }
5248
5249                 pdpe = pmap_pml4e_to_pdpe(pml4e, addr);
5250                 if ((*pdpe & PG_V) == 0) {
5251                         va_next = (addr + NBPDP) & ~PDPMASK;
5252                         if (va_next < addr)
5253                                 va_next = end_addr;
5254                         continue;
5255                 }
5256
5257                 va_next = (addr + NBPDR) & ~PDRMASK;
5258                 if (va_next < addr)
5259                         va_next = end_addr;
5260
5261                 pde = pmap_pdpe_to_pde(pdpe, addr);
5262                 srcptepaddr = *pde;
5263                 if (srcptepaddr == 0)
5264                         continue;
5265                         
5266                 if (srcptepaddr & PG_PS) {
5267                         if ((addr & PDRMASK) != 0 || addr + NBPDR > end_addr)
5268                                 continue;
5269                         dst_pdpg = pmap_allocpde(dst_pmap, addr, NULL);
5270                         if (dst_pdpg == NULL)
5271                                 break;
5272                         pde = (pd_entry_t *)
5273                             PHYS_TO_DMAP(VM_PAGE_TO_PHYS(dst_pdpg));
5274                         pde = &pde[pmap_pde_index(addr)];
5275                         if (*pde == 0 && ((srcptepaddr & PG_MANAGED) == 0 ||
5276                             pmap_pv_insert_pde(dst_pmap, addr, srcptepaddr,
5277                             PMAP_ENTER_NORECLAIM, &lock))) {
5278                                 *pde = srcptepaddr & ~PG_W;
5279                                 pmap_resident_count_inc(dst_pmap, NBPDR / PAGE_SIZE);
5280                                 atomic_add_long(&pmap_pde_mappings, 1);
5281                         } else
5282                                 dst_pdpg->wire_count--;
5283                         continue;
5284                 }
5285
5286                 srcptepaddr &= PG_FRAME;
5287                 srcmpte = PHYS_TO_VM_PAGE(srcptepaddr);
5288                 KASSERT(srcmpte->wire_count > 0,
5289                     ("pmap_copy: source page table page is unused"));
5290
5291                 if (va_next > end_addr)
5292                         va_next = end_addr;
5293
5294                 src_pte = (pt_entry_t *)PHYS_TO_DMAP(srcptepaddr);
5295                 src_pte = &src_pte[pmap_pte_index(addr)];
5296                 dstmpte = NULL;
5297                 while (addr < va_next) {
5298                         pt_entry_t ptetemp;
5299                         ptetemp = *src_pte;
5300                         /*
5301                          * we only virtual copy managed pages
5302                          */
5303                         if ((ptetemp & PG_MANAGED) != 0) {
5304                                 if (dstmpte != NULL &&
5305                                     dstmpte->pindex == pmap_pde_pindex(addr))
5306                                         dstmpte->wire_count++;
5307                                 else if ((dstmpte = pmap_allocpte(dst_pmap,
5308                                     addr, NULL)) == NULL)
5309                                         goto out;
5310                                 dst_pte = (pt_entry_t *)
5311                                     PHYS_TO_DMAP(VM_PAGE_TO_PHYS(dstmpte));
5312                                 dst_pte = &dst_pte[pmap_pte_index(addr)];
5313                                 if (*dst_pte == 0 &&
5314                                     pmap_try_insert_pv_entry(dst_pmap, addr,
5315                                     PHYS_TO_VM_PAGE(ptetemp & PG_FRAME),
5316                                     &lock)) {
5317                                         /*
5318                                          * Clear the wired, modified, and
5319                                          * accessed (referenced) bits
5320                                          * during the copy.
5321                                          */
5322                                         *dst_pte = ptetemp & ~(PG_W | PG_M |
5323                                             PG_A);
5324                                         pmap_resident_count_inc(dst_pmap, 1);
5325                                 } else {
5326                                         SLIST_INIT(&free);
5327                                         if (pmap_unwire_ptp(dst_pmap, addr,
5328                                             dstmpte, &free)) {
5329                                                 /*
5330                                                  * Although "addr" is not
5331                                                  * mapped, paging-structure
5332                                                  * caches could nonetheless
5333                                                  * have entries that refer to
5334                                                  * the freed page table pages.
5335                                                  * Invalidate those entries.
5336                                                  */
5337                                                 pmap_invalidate_page(dst_pmap,
5338                                                     addr);
5339                                                 pmap_free_zero_pages(&free);
5340                                         }
5341                                         goto out;
5342                                 }
5343                                 if (dstmpte->wire_count >= srcmpte->wire_count)
5344                                         break;
5345                         }
5346                         addr += PAGE_SIZE;
5347                         src_pte++;
5348                 }
5349         }
5350 out:
5351         if (lock != NULL)
5352                 rw_wunlock(lock);
5353         PMAP_UNLOCK(src_pmap);
5354         PMAP_UNLOCK(dst_pmap);
5355 }
5356
5357 /*
5358  * Zero the specified hardware page.
5359  */
5360 void
5361 pmap_zero_page(vm_page_t m)
5362 {
5363         vm_offset_t va = PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m));
5364
5365         pagezero((void *)va);
5366 }
5367
5368 /*
5369  * Zero an an area within a single hardware page.  off and size must not
5370  * cover an area beyond a single hardware page.
5371  */
5372 void
5373 pmap_zero_page_area(vm_page_t m, int off, int size)
5374 {
5375         vm_offset_t va = PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m));
5376
5377         if (off == 0 && size == PAGE_SIZE)
5378                 pagezero((void *)va);
5379         else
5380                 bzero((char *)va + off, size);
5381 }
5382
5383 /*
5384  * Copy 1 specified hardware page to another.
5385  */
5386 void
5387 pmap_copy_page(vm_page_t msrc, vm_page_t mdst)
5388 {
5389         vm_offset_t src = PHYS_TO_DMAP(VM_PAGE_TO_PHYS(msrc));
5390         vm_offset_t dst = PHYS_TO_DMAP(VM_PAGE_TO_PHYS(mdst));
5391
5392         pagecopy((void *)src, (void *)dst);
5393 }
5394
5395 int unmapped_buf_allowed = 1;
5396
5397 void
5398 pmap_copy_pages(vm_page_t ma[], vm_offset_t a_offset, vm_page_t mb[],
5399     vm_offset_t b_offset, int xfersize)
5400 {
5401         void *a_cp, *b_cp;
5402         vm_page_t pages[2];
5403         vm_offset_t vaddr[2], a_pg_offset, b_pg_offset;
5404         int cnt;
5405         boolean_t mapped;
5406
5407         while (xfersize > 0) {
5408                 a_pg_offset = a_offset & PAGE_MASK;
5409                 pages[0] = ma[a_offset >> PAGE_SHIFT];
5410                 b_pg_offset = b_offset & PAGE_MASK;
5411                 pages[1] = mb[b_offset >> PAGE_SHIFT];
5412                 cnt = min(xfersize, PAGE_SIZE - a_pg_offset);
5413                 cnt = min(cnt, PAGE_SIZE - b_pg_offset);
5414                 mapped = pmap_map_io_transient(pages, vaddr, 2, FALSE);
5415                 a_cp = (char *)vaddr[0] + a_pg_offset;
5416                 b_cp = (char *)vaddr[1] + b_pg_offset;
5417                 bcopy(a_cp, b_cp, cnt);
5418                 if (__predict_false(mapped))
5419                         pmap_unmap_io_transient(pages, vaddr, 2, FALSE);
5420                 a_offset += cnt;
5421                 b_offset += cnt;
5422                 xfersize -= cnt;
5423         }
5424 }
5425
5426 /*
5427  * Returns true if the pmap's pv is one of the first
5428  * 16 pvs linked to from this page.  This count may
5429  * be changed upwards or downwards in the future; it
5430  * is only necessary that true be returned for a small
5431  * subset of pmaps for proper page aging.
5432  */
5433 boolean_t
5434 pmap_page_exists_quick(pmap_t pmap, vm_page_t m)
5435 {
5436         struct md_page *pvh;
5437         struct rwlock *lock;
5438         pv_entry_t pv;
5439         int loops = 0;
5440         boolean_t rv;
5441
5442         KASSERT((m->oflags & VPO_UNMANAGED) == 0,
5443             ("pmap_page_exists_quick: page %p is not managed", m));
5444         rv = FALSE;
5445         lock = VM_PAGE_TO_PV_LIST_LOCK(m);
5446         rw_rlock(lock);
5447         TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) {
5448                 if (PV_PMAP(pv) == pmap) {
5449                         rv = TRUE;
5450                         break;
5451                 }
5452                 loops++;
5453                 if (loops >= 16)
5454                         break;
5455         }
5456         if (!rv && loops < 16 && (m->flags & PG_FICTITIOUS) == 0) {
5457                 pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m));
5458                 TAILQ_FOREACH(pv, &pvh->pv_list, pv_next) {
5459                         if (PV_PMAP(pv) == pmap) {
5460                                 rv = TRUE;
5461                                 break;
5462                         }
5463                         loops++;
5464                         if (loops >= 16)
5465                                 break;
5466                 }
5467         }
5468         rw_runlock(lock);
5469         return (rv);
5470 }
5471
5472 /*
5473  *      pmap_page_wired_mappings:
5474  *
5475  *      Return the number of managed mappings to the given physical page
5476  *      that are wired.
5477  */
5478 int
5479 pmap_page_wired_mappings(vm_page_t m)
5480 {
5481         struct rwlock *lock;
5482         struct md_page *pvh;
5483         pmap_t pmap;
5484         pt_entry_t *pte;
5485         pv_entry_t pv;
5486         int count, md_gen, pvh_gen;
5487
5488         if ((m->oflags & VPO_UNMANAGED) != 0)
5489                 return (0);
5490         lock = VM_PAGE_TO_PV_LIST_LOCK(m);
5491         rw_rlock(lock);
5492 restart:
5493         count = 0;
5494         TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) {
5495                 pmap = PV_PMAP(pv);
5496                 if (!PMAP_TRYLOCK(pmap)) {
5497                         md_gen = m->md.pv_gen;
5498                         rw_runlock(lock);
5499                         PMAP_LOCK(pmap);
5500                         rw_rlock(lock);
5501                         if (md_gen != m->md.pv_gen) {
5502                                 PMAP_UNLOCK(pmap);
5503                                 goto restart;
5504                         }
5505                 }
5506                 pte = pmap_pte(pmap, pv->pv_va);
5507                 if ((*pte & PG_W) != 0)
5508                         count++;
5509                 PMAP_UNLOCK(pmap);
5510         }
5511         if ((m->flags & PG_FICTITIOUS) == 0) {
5512                 pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m));
5513                 TAILQ_FOREACH(pv, &pvh->pv_list, pv_next) {
5514                         pmap = PV_PMAP(pv);
5515                         if (!PMAP_TRYLOCK(pmap)) {
5516                                 md_gen = m->md.pv_gen;
5517                                 pvh_gen = pvh->pv_gen;
5518                                 rw_runlock(lock);
5519                                 PMAP_LOCK(pmap);
5520                                 rw_rlock(lock);
5521                                 if (md_gen != m->md.pv_gen ||
5522                                     pvh_gen != pvh->pv_gen) {
5523                                         PMAP_UNLOCK(pmap);
5524                                         goto restart;
5525                                 }
5526                         }
5527                         pte = pmap_pde(pmap, pv->pv_va);
5528                         if ((*pte & PG_W) != 0)
5529                                 count++;
5530                         PMAP_UNLOCK(pmap);
5531                 }
5532         }
5533         rw_runlock(lock);
5534         return (count);
5535 }
5536
5537 /*
5538  * Returns TRUE if the given page is mapped individually or as part of
5539  * a 2mpage.  Otherwise, returns FALSE.
5540  */
5541 boolean_t
5542 pmap_page_is_mapped(vm_page_t m)
5543 {
5544         struct rwlock *lock;
5545         boolean_t rv;
5546
5547         if ((m->oflags & VPO_UNMANAGED) != 0)
5548                 return (FALSE);
5549         lock = VM_PAGE_TO_PV_LIST_LOCK(m);
5550         rw_rlock(lock);
5551         rv = !TAILQ_EMPTY(&m->md.pv_list) ||
5552             ((m->flags & PG_FICTITIOUS) == 0 &&
5553             !TAILQ_EMPTY(&pa_to_pvh(VM_PAGE_TO_PHYS(m))->pv_list));
5554         rw_runlock(lock);
5555         return (rv);
5556 }
5557
5558 /*
5559  * Destroy all managed, non-wired mappings in the given user-space
5560  * pmap.  This pmap cannot be active on any processor besides the
5561  * caller.
5562  *
5563  * This function cannot be applied to the kernel pmap.  Moreover, it
5564  * is not intended for general use.  It is only to be used during
5565  * process termination.  Consequently, it can be implemented in ways
5566  * that make it faster than pmap_remove().  First, it can more quickly
5567  * destroy mappings by iterating over the pmap's collection of PV
5568  * entries, rather than searching the page table.  Second, it doesn't
5569  * have to test and clear the page table entries atomically, because
5570  * no processor is currently accessing the user address space.  In
5571  * particular, a page table entry's dirty bit won't change state once
5572  * this function starts.
5573  *
5574  * Although this function destroys all of the pmap's managed,
5575  * non-wired mappings, it can delay and batch the invalidation of TLB
5576  * entries without calling pmap_delayed_invl_started() and
5577  * pmap_delayed_invl_finished().  Because the pmap is not active on
5578  * any other processor, none of these TLB entries will ever be used
5579  * before their eventual invalidation.  Consequently, there is no need
5580  * for either pmap_remove_all() or pmap_remove_write() to wait for
5581  * that eventual TLB invalidation.
5582  */
5583 void
5584 pmap_remove_pages(pmap_t pmap)
5585 {
5586         pd_entry_t ptepde;
5587         pt_entry_t *pte, tpte;
5588         pt_entry_t PG_M, PG_RW, PG_V;
5589         struct spglist free;
5590         vm_page_t m, mpte, mt;
5591         pv_entry_t pv;
5592         struct md_page *pvh;
5593         struct pv_chunk *pc, *npc;
5594         struct rwlock *lock;
5595         int64_t bit;
5596         uint64_t inuse, bitmask;
5597         int allfree, field, freed, idx;
5598         boolean_t superpage;
5599         vm_paddr_t pa;
5600
5601         /*
5602          * Assert that the given pmap is only active on the current
5603          * CPU.  Unfortunately, we cannot block another CPU from
5604          * activating the pmap while this function is executing.
5605          */
5606         KASSERT(pmap == PCPU_GET(curpmap), ("non-current pmap %p", pmap));
5607 #ifdef INVARIANTS
5608         {
5609                 cpuset_t other_cpus;
5610
5611                 other_cpus = all_cpus;
5612                 critical_enter();
5613                 CPU_CLR(PCPU_GET(cpuid), &other_cpus);
5614                 CPU_AND(&other_cpus, &pmap->pm_active);
5615                 critical_exit();
5616                 KASSERT(CPU_EMPTY(&other_cpus), ("pmap active %p", pmap));
5617         }
5618 #endif
5619
5620         lock = NULL;
5621         PG_M = pmap_modified_bit(pmap);
5622         PG_V = pmap_valid_bit(pmap);
5623         PG_RW = pmap_rw_bit(pmap);
5624
5625         SLIST_INIT(&free);
5626         PMAP_LOCK(pmap);
5627         TAILQ_FOREACH_SAFE(pc, &pmap->pm_pvchunk, pc_list, npc) {
5628                 allfree = 1;
5629                 freed = 0;
5630                 for (field = 0; field < _NPCM; field++) {
5631                         inuse = ~pc->pc_map[field] & pc_freemask[field];
5632                         while (inuse != 0) {
5633                                 bit = bsfq(inuse);
5634                                 bitmask = 1UL << bit;
5635                                 idx = field * 64 + bit;
5636                                 pv = &pc->pc_pventry[idx];
5637                                 inuse &= ~bitmask;
5638
5639                                 pte = pmap_pdpe(pmap, pv->pv_va);
5640                                 ptepde = *pte;
5641                                 pte = pmap_pdpe_to_pde(pte, pv->pv_va);
5642                                 tpte = *pte;
5643                                 if ((tpte & (PG_PS | PG_V)) == PG_V) {
5644                                         superpage = FALSE;
5645                                         ptepde = tpte;
5646                                         pte = (pt_entry_t *)PHYS_TO_DMAP(tpte &
5647                                             PG_FRAME);
5648                                         pte = &pte[pmap_pte_index(pv->pv_va)];
5649                                         tpte = *pte;
5650                                 } else {
5651                                         /*
5652                                          * Keep track whether 'tpte' is a
5653                                          * superpage explicitly instead of
5654                                          * relying on PG_PS being set.
5655                                          *
5656                                          * This is because PG_PS is numerically
5657                                          * identical to PG_PTE_PAT and thus a
5658                                          * regular page could be mistaken for
5659                                          * a superpage.
5660                                          */
5661                                         superpage = TRUE;
5662                                 }
5663
5664                                 if ((tpte & PG_V) == 0) {
5665                                         panic("bad pte va %lx pte %lx",
5666                                             pv->pv_va, tpte);
5667                                 }
5668
5669 /*
5670  * We cannot remove wired pages from a process' mapping at this time
5671  */
5672                                 if (tpte & PG_W) {
5673                                         allfree = 0;
5674                                         continue;
5675                                 }
5676
5677                                 if (superpage)
5678                                         pa = tpte & PG_PS_FRAME;
5679                                 else
5680                                         pa = tpte & PG_FRAME;
5681
5682                                 m = PHYS_TO_VM_PAGE(pa);
5683                                 KASSERT(m->phys_addr == pa,
5684                                     ("vm_page_t %p phys_addr mismatch %016jx %016jx",
5685                                     m, (uintmax_t)m->phys_addr,
5686                                     (uintmax_t)tpte));
5687
5688                                 KASSERT((m->flags & PG_FICTITIOUS) != 0 ||
5689                                     m < &vm_page_array[vm_page_array_size],
5690                                     ("pmap_remove_pages: bad tpte %#jx",
5691                                     (uintmax_t)tpte));
5692
5693                                 pte_clear(pte);
5694
5695                                 /*
5696                                  * Update the vm_page_t clean/reference bits.
5697                                  */
5698                                 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) {
5699                                         if (superpage) {
5700                                                 for (mt = m; mt < &m[NBPDR / PAGE_SIZE]; mt++)
5701                                                         vm_page_dirty(mt);
5702                                         } else
5703                                                 vm_page_dirty(m);
5704                                 }
5705
5706                                 CHANGE_PV_LIST_LOCK_TO_VM_PAGE(&lock, m);
5707
5708                                 /* Mark free */
5709                                 pc->pc_map[field] |= bitmask;
5710                                 if (superpage) {
5711                                         pmap_resident_count_dec(pmap, NBPDR / PAGE_SIZE);
5712                                         pvh = pa_to_pvh(tpte & PG_PS_FRAME);
5713                                         TAILQ_REMOVE(&pvh->pv_list, pv, pv_next);
5714                                         pvh->pv_gen++;
5715                                         if (TAILQ_EMPTY(&pvh->pv_list)) {
5716                                                 for (mt = m; mt < &m[NBPDR / PAGE_SIZE]; mt++)
5717                                                         if ((mt->aflags & PGA_WRITEABLE) != 0 &&
5718                                                             TAILQ_EMPTY(&mt->md.pv_list))
5719                                                                 vm_page_aflag_clear(mt, PGA_WRITEABLE);
5720                                         }
5721                                         mpte = pmap_remove_pt_page(pmap, pv->pv_va);
5722                                         if (mpte != NULL) {
5723                                                 pmap_resident_count_dec(pmap, 1);
5724                                                 KASSERT(mpte->wire_count == NPTEPG,
5725                                                     ("pmap_remove_pages: pte page wire count error"));
5726                                                 mpte->wire_count = 0;
5727                                                 pmap_add_delayed_free_list(mpte, &free, FALSE);
5728                                         }
5729                                 } else {
5730                                         pmap_resident_count_dec(pmap, 1);
5731                                         TAILQ_REMOVE(&m->md.pv_list, pv, pv_next);
5732                                         m->md.pv_gen++;
5733                                         if ((m->aflags & PGA_WRITEABLE) != 0 &&
5734                                             TAILQ_EMPTY(&m->md.pv_list) &&
5735                                             (m->flags & PG_FICTITIOUS) == 0) {
5736                                                 pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m));
5737                                                 if (TAILQ_EMPTY(&pvh->pv_list))
5738                                                         vm_page_aflag_clear(m, PGA_WRITEABLE);
5739                                         }
5740                                 }
5741                                 pmap_unuse_pt(pmap, pv->pv_va, ptepde, &free);
5742                                 freed++;
5743                         }
5744                 }
5745                 PV_STAT(atomic_add_long(&pv_entry_frees, freed));
5746                 PV_STAT(atomic_add_int(&pv_entry_spare, freed));
5747                 PV_STAT(atomic_subtract_long(&pv_entry_count, freed));
5748                 if (allfree) {
5749                         TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list);
5750                         free_pv_chunk(pc);
5751                 }
5752         }
5753         if (lock != NULL)
5754                 rw_wunlock(lock);
5755         pmap_invalidate_all(pmap);
5756         PMAP_UNLOCK(pmap);
5757         pmap_free_zero_pages(&free);
5758 }
5759
5760 static boolean_t
5761 pmap_page_test_mappings(vm_page_t m, boolean_t accessed, boolean_t modified)
5762 {
5763         struct rwlock *lock;
5764         pv_entry_t pv;
5765         struct md_page *pvh;
5766         pt_entry_t *pte, mask;
5767         pt_entry_t PG_A, PG_M, PG_RW, PG_V;
5768         pmap_t pmap;
5769         int md_gen, pvh_gen;
5770         boolean_t rv;
5771
5772         rv = FALSE;
5773         lock = VM_PAGE_TO_PV_LIST_LOCK(m);
5774         rw_rlock(lock);
5775 restart:
5776         TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) {
5777                 pmap = PV_PMAP(pv);
5778                 if (!PMAP_TRYLOCK(pmap)) {
5779                         md_gen = m->md.pv_gen;
5780                         rw_runlock(lock);
5781                         PMAP_LOCK(pmap);
5782                         rw_rlock(lock);
5783                         if (md_gen != m->md.pv_gen) {
5784                                 PMAP_UNLOCK(pmap);
5785                                 goto restart;
5786                         }
5787                 }
5788                 pte = pmap_pte(pmap, pv->pv_va);
5789                 mask = 0;
5790                 if (modified) {
5791                         PG_M = pmap_modified_bit(pmap);
5792                         PG_RW = pmap_rw_bit(pmap);
5793                         mask |= PG_RW | PG_M;
5794                 }
5795                 if (accessed) {
5796                         PG_A = pmap_accessed_bit(pmap);
5797                         PG_V = pmap_valid_bit(pmap);
5798                         mask |= PG_V | PG_A;
5799                 }
5800                 rv = (*pte & mask) == mask;
5801                 PMAP_UNLOCK(pmap);
5802                 if (rv)
5803                         goto out;
5804         }
5805         if ((m->flags & PG_FICTITIOUS) == 0) {
5806                 pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m));
5807                 TAILQ_FOREACH(pv, &pvh->pv_list, pv_next) {
5808                         pmap = PV_PMAP(pv);
5809                         if (!PMAP_TRYLOCK(pmap)) {
5810                                 md_gen = m->md.pv_gen;
5811                                 pvh_gen = pvh->pv_gen;
5812                                 rw_runlock(lock);
5813                                 PMAP_LOCK(pmap);
5814                                 rw_rlock(lock);
5815                                 if (md_gen != m->md.pv_gen ||
5816                                     pvh_gen != pvh->pv_gen) {
5817                                         PMAP_UNLOCK(pmap);
5818                                         goto restart;
5819                                 }
5820                         }
5821                         pte = pmap_pde(pmap, pv->pv_va);
5822                         mask = 0;
5823                         if (modified) {
5824                                 PG_M = pmap_modified_bit(pmap);
5825                                 PG_RW = pmap_rw_bit(pmap);
5826                                 mask |= PG_RW | PG_M;
5827                         }
5828                         if (accessed) {
5829                                 PG_A = pmap_accessed_bit(pmap);
5830                                 PG_V = pmap_valid_bit(pmap);
5831                                 mask |= PG_V | PG_A;
5832                         }
5833                         rv = (*pte & mask) == mask;
5834                         PMAP_UNLOCK(pmap);
5835                         if (rv)
5836                                 goto out;
5837                 }
5838         }
5839 out:
5840         rw_runlock(lock);
5841         return (rv);
5842 }
5843
5844 /*
5845  *      pmap_is_modified:
5846  *
5847  *      Return whether or not the specified physical page was modified
5848  *      in any physical maps.
5849  */
5850 boolean_t
5851 pmap_is_modified(vm_page_t m)
5852 {
5853
5854         KASSERT((m->oflags & VPO_UNMANAGED) == 0,
5855             ("pmap_is_modified: page %p is not managed", m));
5856
5857         /*
5858          * If the page is not exclusive busied, then PGA_WRITEABLE cannot be
5859          * concurrently set while the object is locked.  Thus, if PGA_WRITEABLE
5860          * is clear, no PTEs can have PG_M set.
5861          */
5862         VM_OBJECT_ASSERT_WLOCKED(m->object);
5863         if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
5864                 return (FALSE);
5865         return (pmap_page_test_mappings(m, FALSE, TRUE));
5866 }
5867
5868 /*
5869  *      pmap_is_prefaultable:
5870  *
5871  *      Return whether or not the specified virtual address is eligible
5872  *      for prefault.
5873  */
5874 boolean_t
5875 pmap_is_prefaultable(pmap_t pmap, vm_offset_t addr)
5876 {
5877         pd_entry_t *pde;
5878         pt_entry_t *pte, PG_V;
5879         boolean_t rv;
5880
5881         PG_V = pmap_valid_bit(pmap);
5882         rv = FALSE;
5883         PMAP_LOCK(pmap);
5884         pde = pmap_pde(pmap, addr);
5885         if (pde != NULL && (*pde & (PG_PS | PG_V)) == PG_V) {
5886                 pte = pmap_pde_to_pte(pde, addr);
5887                 rv = (*pte & PG_V) == 0;
5888         }
5889         PMAP_UNLOCK(pmap);
5890         return (rv);
5891 }
5892
5893 /*
5894  *      pmap_is_referenced:
5895  *
5896  *      Return whether or not the specified physical page was referenced
5897  *      in any physical maps.
5898  */
5899 boolean_t
5900 pmap_is_referenced(vm_page_t m)
5901 {
5902
5903         KASSERT((m->oflags & VPO_UNMANAGED) == 0,
5904             ("pmap_is_referenced: page %p is not managed", m));
5905         return (pmap_page_test_mappings(m, TRUE, FALSE));
5906 }
5907
5908 /*
5909  * Clear the write and modified bits in each of the given page's mappings.
5910  */
5911 void
5912 pmap_remove_write(vm_page_t m)
5913 {
5914         struct md_page *pvh;
5915         pmap_t pmap;
5916         struct rwlock *lock;
5917         pv_entry_t next_pv, pv;
5918         pd_entry_t *pde;
5919         pt_entry_t oldpte, *pte, PG_M, PG_RW;
5920         vm_offset_t va;
5921         int pvh_gen, md_gen;
5922
5923         KASSERT((m->oflags & VPO_UNMANAGED) == 0,
5924             ("pmap_remove_write: page %p is not managed", m));
5925
5926         /*
5927          * If the page is not exclusive busied, then PGA_WRITEABLE cannot be
5928          * set by another thread while the object is locked.  Thus,
5929          * if PGA_WRITEABLE is clear, no page table entries need updating.
5930          */
5931         VM_OBJECT_ASSERT_WLOCKED(m->object);
5932         if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
5933                 return;
5934         lock = VM_PAGE_TO_PV_LIST_LOCK(m);
5935         pvh = (m->flags & PG_FICTITIOUS) != 0 ? &pv_dummy :
5936             pa_to_pvh(VM_PAGE_TO_PHYS(m));
5937 retry_pv_loop:
5938         rw_wlock(lock);
5939         TAILQ_FOREACH_SAFE(pv, &pvh->pv_list, pv_next, next_pv) {
5940                 pmap = PV_PMAP(pv);
5941                 if (!PMAP_TRYLOCK(pmap)) {
5942                         pvh_gen = pvh->pv_gen;
5943                         rw_wunlock(lock);
5944                         PMAP_LOCK(pmap);
5945                         rw_wlock(lock);
5946                         if (pvh_gen != pvh->pv_gen) {
5947                                 PMAP_UNLOCK(pmap);
5948                                 rw_wunlock(lock);
5949                                 goto retry_pv_loop;
5950                         }
5951                 }
5952                 PG_RW = pmap_rw_bit(pmap);
5953                 va = pv->pv_va;
5954                 pde = pmap_pde(pmap, va);
5955                 if ((*pde & PG_RW) != 0)
5956                         (void)pmap_demote_pde_locked(pmap, pde, va, &lock);
5957                 KASSERT(lock == VM_PAGE_TO_PV_LIST_LOCK(m),
5958                     ("inconsistent pv lock %p %p for page %p",
5959                     lock, VM_PAGE_TO_PV_LIST_LOCK(m), m));
5960                 PMAP_UNLOCK(pmap);
5961         }
5962         TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) {
5963                 pmap = PV_PMAP(pv);
5964                 if (!PMAP_TRYLOCK(pmap)) {
5965                         pvh_gen = pvh->pv_gen;
5966                         md_gen = m->md.pv_gen;
5967                         rw_wunlock(lock);
5968                         PMAP_LOCK(pmap);
5969                         rw_wlock(lock);
5970                         if (pvh_gen != pvh->pv_gen ||
5971                             md_gen != m->md.pv_gen) {
5972                                 PMAP_UNLOCK(pmap);
5973                                 rw_wunlock(lock);
5974                                 goto retry_pv_loop;
5975                         }
5976                 }
5977                 PG_M = pmap_modified_bit(pmap);
5978                 PG_RW = pmap_rw_bit(pmap);
5979                 pde = pmap_pde(pmap, pv->pv_va);
5980                 KASSERT((*pde & PG_PS) == 0,
5981                     ("pmap_remove_write: found a 2mpage in page %p's pv list",
5982                     m));
5983                 pte = pmap_pde_to_pte(pde, pv->pv_va);
5984 retry:
5985                 oldpte = *pte;
5986                 if (oldpte & PG_RW) {
5987                         if (!atomic_cmpset_long(pte, oldpte, oldpte &
5988                             ~(PG_RW | PG_M)))
5989                                 goto retry;
5990                         if ((oldpte & PG_M) != 0)
5991                                 vm_page_dirty(m);
5992                         pmap_invalidate_page(pmap, pv->pv_va);
5993                 }
5994                 PMAP_UNLOCK(pmap);
5995         }
5996         rw_wunlock(lock);
5997         vm_page_aflag_clear(m, PGA_WRITEABLE);
5998         pmap_delayed_invl_wait(m);
5999 }
6000
6001 static __inline boolean_t
6002 safe_to_clear_referenced(pmap_t pmap, pt_entry_t pte)
6003 {
6004
6005         if (!pmap_emulate_ad_bits(pmap))
6006                 return (TRUE);
6007
6008         KASSERT(pmap->pm_type == PT_EPT, ("invalid pm_type %d", pmap->pm_type));
6009
6010         /*
6011          * XWR = 010 or 110 will cause an unconditional EPT misconfiguration
6012          * so we don't let the referenced (aka EPT_PG_READ) bit to be cleared
6013          * if the EPT_PG_WRITE bit is set.
6014          */
6015         if ((pte & EPT_PG_WRITE) != 0)
6016                 return (FALSE);
6017
6018         /*
6019          * XWR = 100 is allowed only if the PMAP_SUPPORTS_EXEC_ONLY is set.
6020          */
6021         if ((pte & EPT_PG_EXECUTE) == 0 ||
6022             ((pmap->pm_flags & PMAP_SUPPORTS_EXEC_ONLY) != 0))
6023                 return (TRUE);
6024         else
6025                 return (FALSE);
6026 }
6027
6028 /*
6029  *      pmap_ts_referenced:
6030  *
6031  *      Return a count of reference bits for a page, clearing those bits.
6032  *      It is not necessary for every reference bit to be cleared, but it
6033  *      is necessary that 0 only be returned when there are truly no
6034  *      reference bits set.
6035  *
6036  *      As an optimization, update the page's dirty field if a modified bit is
6037  *      found while counting reference bits.  This opportunistic update can be
6038  *      performed at low cost and can eliminate the need for some future calls
6039  *      to pmap_is_modified().  However, since this function stops after
6040  *      finding PMAP_TS_REFERENCED_MAX reference bits, it may not detect some
6041  *      dirty pages.  Those dirty pages will only be detected by a future call
6042  *      to pmap_is_modified().
6043  *
6044  *      A DI block is not needed within this function, because
6045  *      invalidations are performed before the PV list lock is
6046  *      released.
6047  */
6048 int
6049 pmap_ts_referenced(vm_page_t m)
6050 {
6051         struct md_page *pvh;
6052         pv_entry_t pv, pvf;
6053         pmap_t pmap;
6054         struct rwlock *lock;
6055         pd_entry_t oldpde, *pde;
6056         pt_entry_t *pte, PG_A, PG_M, PG_RW;
6057         vm_offset_t va;
6058         vm_paddr_t pa;
6059         int cleared, md_gen, not_cleared, pvh_gen;
6060         struct spglist free;
6061         boolean_t demoted;
6062
6063         KASSERT((m->oflags & VPO_UNMANAGED) == 0,
6064             ("pmap_ts_referenced: page %p is not managed", m));
6065         SLIST_INIT(&free);
6066         cleared = 0;
6067         pa = VM_PAGE_TO_PHYS(m);
6068         lock = PHYS_TO_PV_LIST_LOCK(pa);
6069         pvh = (m->flags & PG_FICTITIOUS) != 0 ? &pv_dummy : pa_to_pvh(pa);
6070         rw_wlock(lock);
6071 retry:
6072         not_cleared = 0;
6073         if ((pvf = TAILQ_FIRST(&pvh->pv_list)) == NULL)
6074                 goto small_mappings;
6075         pv = pvf;
6076         do {
6077                 if (pvf == NULL)
6078                         pvf = pv;
6079                 pmap = PV_PMAP(pv);
6080                 if (!PMAP_TRYLOCK(pmap)) {
6081                         pvh_gen = pvh->pv_gen;
6082                         rw_wunlock(lock);
6083                         PMAP_LOCK(pmap);
6084                         rw_wlock(lock);
6085                         if (pvh_gen != pvh->pv_gen) {
6086                                 PMAP_UNLOCK(pmap);
6087                                 goto retry;
6088                         }
6089                 }
6090                 PG_A = pmap_accessed_bit(pmap);
6091                 PG_M = pmap_modified_bit(pmap);
6092                 PG_RW = pmap_rw_bit(pmap);
6093                 va = pv->pv_va;
6094                 pde = pmap_pde(pmap, pv->pv_va);
6095                 oldpde = *pde;
6096                 if ((oldpde & (PG_M | PG_RW)) == (PG_M | PG_RW)) {
6097                         /*
6098                          * Although "oldpde" is mapping a 2MB page, because
6099                          * this function is called at a 4KB page granularity,
6100                          * we only update the 4KB page under test.
6101                          */
6102                         vm_page_dirty(m);
6103                 }
6104                 if ((oldpde & PG_A) != 0) {
6105                         /*
6106                          * Since this reference bit is shared by 512 4KB
6107                          * pages, it should not be cleared every time it is
6108                          * tested.  Apply a simple "hash" function on the
6109                          * physical page number, the virtual superpage number,
6110                          * and the pmap address to select one 4KB page out of
6111                          * the 512 on which testing the reference bit will
6112                          * result in clearing that reference bit.  This
6113                          * function is designed to avoid the selection of the
6114                          * same 4KB page for every 2MB page mapping.
6115                          *
6116                          * On demotion, a mapping that hasn't been referenced
6117                          * is simply destroyed.  To avoid the possibility of a
6118                          * subsequent page fault on a demoted wired mapping,
6119                          * always leave its reference bit set.  Moreover,
6120                          * since the superpage is wired, the current state of
6121                          * its reference bit won't affect page replacement.
6122                          */
6123                         if ((((pa >> PAGE_SHIFT) ^ (pv->pv_va >> PDRSHIFT) ^
6124                             (uintptr_t)pmap) & (NPTEPG - 1)) == 0 &&
6125                             (oldpde & PG_W) == 0) {
6126                                 if (safe_to_clear_referenced(pmap, oldpde)) {
6127                                         atomic_clear_long(pde, PG_A);
6128                                         pmap_invalidate_page(pmap, pv->pv_va);
6129                                         demoted = FALSE;
6130                                 } else if (pmap_demote_pde_locked(pmap, pde,
6131                                     pv->pv_va, &lock)) {
6132                                         /*
6133                                          * Remove the mapping to a single page
6134                                          * so that a subsequent access may
6135                                          * repromote.  Since the underlying
6136                                          * page table page is fully populated,
6137                                          * this removal never frees a page
6138                                          * table page.
6139                                          */
6140                                         demoted = TRUE;
6141                                         va += VM_PAGE_TO_PHYS(m) - (oldpde &
6142                                             PG_PS_FRAME);
6143                                         pte = pmap_pde_to_pte(pde, va);
6144                                         pmap_remove_pte(pmap, pte, va, *pde,
6145                                             NULL, &lock);
6146                                         pmap_invalidate_page(pmap, va);
6147                                 } else
6148                                         demoted = TRUE;
6149
6150                                 if (demoted) {
6151                                         /*
6152                                          * The superpage mapping was removed
6153                                          * entirely and therefore 'pv' is no
6154                                          * longer valid.
6155                                          */
6156                                         if (pvf == pv)
6157                                                 pvf = NULL;
6158                                         pv = NULL;
6159                                 }
6160                                 cleared++;
6161                                 KASSERT(lock == VM_PAGE_TO_PV_LIST_LOCK(m),
6162                                     ("inconsistent pv lock %p %p for page %p",
6163                                     lock, VM_PAGE_TO_PV_LIST_LOCK(m), m));
6164                         } else
6165                                 not_cleared++;
6166                 }
6167                 PMAP_UNLOCK(pmap);
6168                 /* Rotate the PV list if it has more than one entry. */
6169                 if (pv != NULL && TAILQ_NEXT(pv, pv_next) != NULL) {
6170                         TAILQ_REMOVE(&pvh->pv_list, pv, pv_next);
6171                         TAILQ_INSERT_TAIL(&pvh->pv_list, pv, pv_next);
6172                         pvh->pv_gen++;
6173                 }
6174                 if (cleared + not_cleared >= PMAP_TS_REFERENCED_MAX)
6175                         goto out;
6176         } while ((pv = TAILQ_FIRST(&pvh->pv_list)) != pvf);
6177 small_mappings:
6178         if ((pvf = TAILQ_FIRST(&m->md.pv_list)) == NULL)
6179                 goto out;
6180         pv = pvf;
6181         do {
6182                 if (pvf == NULL)
6183                         pvf = pv;
6184                 pmap = PV_PMAP(pv);
6185                 if (!PMAP_TRYLOCK(pmap)) {
6186                         pvh_gen = pvh->pv_gen;
6187                         md_gen = m->md.pv_gen;
6188                         rw_wunlock(lock);
6189                         PMAP_LOCK(pmap);
6190                         rw_wlock(lock);
6191                         if (pvh_gen != pvh->pv_gen || md_gen != m->md.pv_gen) {
6192                                 PMAP_UNLOCK(pmap);
6193                                 goto retry;
6194                         }
6195                 }
6196                 PG_A = pmap_accessed_bit(pmap);
6197                 PG_M = pmap_modified_bit(pmap);
6198                 PG_RW = pmap_rw_bit(pmap);
6199                 pde = pmap_pde(pmap, pv->pv_va);
6200                 KASSERT((*pde & PG_PS) == 0,
6201                     ("pmap_ts_referenced: found a 2mpage in page %p's pv list",
6202                     m));
6203                 pte = pmap_pde_to_pte(pde, pv->pv_va);
6204                 if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW))
6205                         vm_page_dirty(m);
6206                 if ((*pte & PG_A) != 0) {
6207                         if (safe_to_clear_referenced(pmap, *pte)) {
6208                                 atomic_clear_long(pte, PG_A);
6209                                 pmap_invalidate_page(pmap, pv->pv_va);
6210                                 cleared++;
6211                         } else if ((*pte & PG_W) == 0) {
6212                                 /*
6213                                  * Wired pages cannot be paged out so
6214                                  * doing accessed bit emulation for
6215                                  * them is wasted effort. We do the
6216                                  * hard work for unwired pages only.
6217                                  */
6218                                 pmap_remove_pte(pmap, pte, pv->pv_va,
6219                                     *pde, &free, &lock);
6220                                 pmap_invalidate_page(pmap, pv->pv_va);
6221                                 cleared++;
6222                                 if (pvf == pv)
6223                                         pvf = NULL;
6224                                 pv = NULL;
6225                                 KASSERT(lock == VM_PAGE_TO_PV_LIST_LOCK(m),
6226                                     ("inconsistent pv lock %p %p for page %p",
6227                                     lock, VM_PAGE_TO_PV_LIST_LOCK(m), m));
6228                         } else
6229                                 not_cleared++;
6230                 }
6231                 PMAP_UNLOCK(pmap);
6232                 /* Rotate the PV list if it has more than one entry. */
6233                 if (pv != NULL && TAILQ_NEXT(pv, pv_next) != NULL) {
6234                         TAILQ_REMOVE(&m->md.pv_list, pv, pv_next);
6235                         TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_next);
6236                         m->md.pv_gen++;
6237                 }
6238         } while ((pv = TAILQ_FIRST(&m->md.pv_list)) != pvf && cleared +
6239             not_cleared < PMAP_TS_REFERENCED_MAX);
6240 out:
6241         rw_wunlock(lock);
6242         pmap_free_zero_pages(&free);
6243         return (cleared + not_cleared);
6244 }
6245
6246 /*
6247  *      Apply the given advice to the specified range of addresses within the
6248  *      given pmap.  Depending on the advice, clear the referenced and/or
6249  *      modified flags in each mapping and set the mapped page's dirty field.
6250  */
6251 void
6252 pmap_advise(pmap_t pmap, vm_offset_t sva, vm_offset_t eva, int advice)
6253 {
6254         struct rwlock *lock;
6255         pml4_entry_t *pml4e;
6256         pdp_entry_t *pdpe;
6257         pd_entry_t oldpde, *pde;
6258         pt_entry_t *pte, PG_A, PG_G, PG_M, PG_RW, PG_V;
6259         vm_offset_t va, va_next;
6260         vm_page_t m;
6261         boolean_t anychanged;
6262
6263         if (advice != MADV_DONTNEED && advice != MADV_FREE)
6264                 return;
6265
6266         /*
6267          * A/D bit emulation requires an alternate code path when clearing
6268          * the modified and accessed bits below. Since this function is
6269          * advisory in nature we skip it entirely for pmaps that require
6270          * A/D bit emulation.
6271          */
6272         if (pmap_emulate_ad_bits(pmap))
6273                 return;
6274
6275         PG_A = pmap_accessed_bit(pmap);
6276         PG_G = pmap_global_bit(pmap);
6277         PG_M = pmap_modified_bit(pmap);
6278         PG_V = pmap_valid_bit(pmap);
6279         PG_RW = pmap_rw_bit(pmap);
6280         anychanged = FALSE;
6281         pmap_delayed_invl_started();
6282         PMAP_LOCK(pmap);
6283         for (; sva < eva; sva = va_next) {
6284                 pml4e = pmap_pml4e(pmap, sva);
6285                 if ((*pml4e & PG_V) == 0) {
6286                         va_next = (sva + NBPML4) & ~PML4MASK;
6287                         if (va_next < sva)
6288                                 va_next = eva;
6289                         continue;
6290                 }
6291                 pdpe = pmap_pml4e_to_pdpe(pml4e, sva);
6292                 if ((*pdpe & PG_V) == 0) {
6293                         va_next = (sva + NBPDP) & ~PDPMASK;
6294                         if (va_next < sva)
6295                                 va_next = eva;
6296                         continue;
6297                 }
6298                 va_next = (sva + NBPDR) & ~PDRMASK;
6299                 if (va_next < sva)
6300                         va_next = eva;
6301                 pde = pmap_pdpe_to_pde(pdpe, sva);
6302                 oldpde = *pde;
6303                 if ((oldpde & PG_V) == 0)
6304                         continue;
6305                 else if ((oldpde & PG_PS) != 0) {
6306                         if ((oldpde & PG_MANAGED) == 0)
6307                                 continue;
6308                         lock = NULL;
6309                         if (!pmap_demote_pde_locked(pmap, pde, sva, &lock)) {
6310                                 if (lock != NULL)
6311                                         rw_wunlock(lock);
6312
6313                                 /*
6314                                  * The large page mapping was destroyed.
6315                                  */
6316                                 continue;
6317                         }
6318
6319                         /*
6320                          * Unless the page mappings are wired, remove the
6321                          * mapping to a single page so that a subsequent
6322                          * access may repromote.  Since the underlying page
6323                          * table page is fully populated, this removal never
6324                          * frees a page table page.
6325                          */
6326                         if ((oldpde & PG_W) == 0) {
6327                                 pte = pmap_pde_to_pte(pde, sva);
6328                                 KASSERT((*pte & PG_V) != 0,
6329                                     ("pmap_advise: invalid PTE"));
6330                                 pmap_remove_pte(pmap, pte, sva, *pde, NULL,
6331                                     &lock);
6332                                 anychanged = TRUE;
6333                         }
6334                         if (lock != NULL)
6335                                 rw_wunlock(lock);
6336                 }
6337                 if (va_next > eva)
6338                         va_next = eva;
6339                 va = va_next;
6340                 for (pte = pmap_pde_to_pte(pde, sva); sva != va_next; pte++,
6341                     sva += PAGE_SIZE) {
6342                         if ((*pte & (PG_MANAGED | PG_V)) != (PG_MANAGED | PG_V))
6343                                 goto maybe_invlrng;
6344                         else if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) {
6345                                 if (advice == MADV_DONTNEED) {
6346                                         /*
6347                                          * Future calls to pmap_is_modified()
6348                                          * can be avoided by making the page
6349                                          * dirty now.
6350                                          */
6351                                         m = PHYS_TO_VM_PAGE(*pte & PG_FRAME);
6352                                         vm_page_dirty(m);
6353                                 }
6354                                 atomic_clear_long(pte, PG_M | PG_A);
6355                         } else if ((*pte & PG_A) != 0)
6356                                 atomic_clear_long(pte, PG_A);
6357                         else
6358                                 goto maybe_invlrng;
6359
6360                         if ((*pte & PG_G) != 0) {
6361                                 if (va == va_next)
6362                                         va = sva;
6363                         } else
6364                                 anychanged = TRUE;
6365                         continue;
6366 maybe_invlrng:
6367                         if (va != va_next) {
6368                                 pmap_invalidate_range(pmap, va, sva);
6369                                 va = va_next;
6370                         }
6371                 }
6372                 if (va != va_next)
6373                         pmap_invalidate_range(pmap, va, sva);
6374         }
6375         if (anychanged)
6376                 pmap_invalidate_all(pmap);
6377         PMAP_UNLOCK(pmap);
6378         pmap_delayed_invl_finished();
6379 }
6380
6381 /*
6382  *      Clear the modify bits on the specified physical page.
6383  */
6384 void
6385 pmap_clear_modify(vm_page_t m)
6386 {
6387         struct md_page *pvh;
6388         pmap_t pmap;
6389         pv_entry_t next_pv, pv;
6390         pd_entry_t oldpde, *pde;
6391         pt_entry_t oldpte, *pte, PG_M, PG_RW, PG_V;
6392         struct rwlock *lock;
6393         vm_offset_t va;
6394         int md_gen, pvh_gen;
6395
6396         KASSERT((m->oflags & VPO_UNMANAGED) == 0,
6397             ("pmap_clear_modify: page %p is not managed", m));
6398         VM_OBJECT_ASSERT_WLOCKED(m->object);
6399         KASSERT(!vm_page_xbusied(m),
6400             ("pmap_clear_modify: page %p is exclusive busied", m));
6401
6402         /*
6403          * If the page is not PGA_WRITEABLE, then no PTEs can have PG_M set.
6404          * If the object containing the page is locked and the page is not
6405          * exclusive busied, then PGA_WRITEABLE cannot be concurrently set.
6406          */
6407         if ((m->aflags & PGA_WRITEABLE) == 0)
6408                 return;
6409         pvh = (m->flags & PG_FICTITIOUS) != 0 ? &pv_dummy :
6410             pa_to_pvh(VM_PAGE_TO_PHYS(m));
6411         lock = VM_PAGE_TO_PV_LIST_LOCK(m);
6412         rw_wlock(lock);
6413 restart:
6414         TAILQ_FOREACH_SAFE(pv, &pvh->pv_list, pv_next, next_pv) {
6415                 pmap = PV_PMAP(pv);
6416                 if (!PMAP_TRYLOCK(pmap)) {
6417                         pvh_gen = pvh->pv_gen;
6418                         rw_wunlock(lock);
6419                         PMAP_LOCK(pmap);
6420                         rw_wlock(lock);
6421                         if (pvh_gen != pvh->pv_gen) {
6422                                 PMAP_UNLOCK(pmap);
6423                                 goto restart;
6424                         }
6425                 }
6426                 PG_M = pmap_modified_bit(pmap);
6427                 PG_V = pmap_valid_bit(pmap);
6428                 PG_RW = pmap_rw_bit(pmap);
6429                 va = pv->pv_va;
6430                 pde = pmap_pde(pmap, va);
6431                 oldpde = *pde;
6432                 if ((oldpde & PG_RW) != 0) {
6433                         if (pmap_demote_pde_locked(pmap, pde, va, &lock)) {
6434                                 if ((oldpde & PG_W) == 0) {
6435                                         /*
6436                                          * Write protect the mapping to a
6437                                          * single page so that a subsequent
6438                                          * write access may repromote.
6439                                          */
6440                                         va += VM_PAGE_TO_PHYS(m) - (oldpde &
6441                                             PG_PS_FRAME);
6442                                         pte = pmap_pde_to_pte(pde, va);
6443                                         oldpte = *pte;
6444                                         if ((oldpte & PG_V) != 0) {
6445                                                 while (!atomic_cmpset_long(pte,
6446                                                     oldpte,
6447                                                     oldpte & ~(PG_M | PG_RW)))
6448                                                         oldpte = *pte;
6449                                                 vm_page_dirty(m);
6450                                                 pmap_invalidate_page(pmap, va);
6451                                         }
6452                                 }
6453                         }
6454                 }
6455                 PMAP_UNLOCK(pmap);
6456         }
6457         TAILQ_FOREACH(pv, &m->md.pv_list, pv_next) {
6458                 pmap = PV_PMAP(pv);
6459                 if (!PMAP_TRYLOCK(pmap)) {
6460                         md_gen = m->md.pv_gen;
6461                         pvh_gen = pvh->pv_gen;
6462                         rw_wunlock(lock);
6463                         PMAP_LOCK(pmap);
6464                         rw_wlock(lock);
6465                         if (pvh_gen != pvh->pv_gen || md_gen != m->md.pv_gen) {
6466                                 PMAP_UNLOCK(pmap);
6467                                 goto restart;
6468                         }
6469                 }
6470                 PG_M = pmap_modified_bit(pmap);
6471                 PG_RW = pmap_rw_bit(pmap);
6472                 pde = pmap_pde(pmap, pv->pv_va);
6473                 KASSERT((*pde & PG_PS) == 0, ("pmap_clear_modify: found"
6474                     " a 2mpage in page %p's pv list", m));
6475                 pte = pmap_pde_to_pte(pde, pv->pv_va);
6476                 if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) {
6477                         atomic_clear_long(pte, PG_M);
6478                         pmap_invalidate_page(pmap, pv->pv_va);
6479                 }
6480                 PMAP_UNLOCK(pmap);
6481         }
6482         rw_wunlock(lock);
6483 }
6484
6485 /*
6486  * Miscellaneous support routines follow
6487  */
6488
6489 /* Adjust the cache mode for a 4KB page mapped via a PTE. */
6490 static __inline void
6491 pmap_pte_attr(pt_entry_t *pte, int cache_bits, int mask)
6492 {
6493         u_int opte, npte;
6494
6495         /*
6496          * The cache mode bits are all in the low 32-bits of the
6497          * PTE, so we can just spin on updating the low 32-bits.
6498          */
6499         do {
6500                 opte = *(u_int *)pte;
6501                 npte = opte & ~mask;
6502                 npte |= cache_bits;
6503         } while (npte != opte && !atomic_cmpset_int((u_int *)pte, opte, npte));
6504 }
6505
6506 /* Adjust the cache mode for a 2MB page mapped via a PDE. */
6507 static __inline void
6508 pmap_pde_attr(pd_entry_t *pde, int cache_bits, int mask)
6509 {
6510         u_int opde, npde;
6511
6512         /*
6513          * The cache mode bits are all in the low 32-bits of the
6514          * PDE, so we can just spin on updating the low 32-bits.
6515          */
6516         do {
6517                 opde = *(u_int *)pde;
6518                 npde = opde & ~mask;
6519                 npde |= cache_bits;
6520         } while (npde != opde && !atomic_cmpset_int((u_int *)pde, opde, npde));
6521 }
6522
6523 /*
6524  * Map a set of physical memory pages into the kernel virtual
6525  * address space. Return a pointer to where it is mapped. This
6526  * routine is intended to be used for mapping device memory,
6527  * NOT real memory.
6528  */
6529 void *
6530 pmap_mapdev_attr(vm_paddr_t pa, vm_size_t size, int mode)
6531 {
6532         struct pmap_preinit_mapping *ppim;
6533         vm_offset_t va, offset;
6534         vm_size_t tmpsize;
6535         int i;
6536
6537         offset = pa & PAGE_MASK;
6538         size = round_page(offset + size);
6539         pa = trunc_page(pa);
6540
6541         if (!pmap_initialized) {
6542                 va = 0;
6543                 for (i = 0; i < PMAP_PREINIT_MAPPING_COUNT; i++) {
6544                         ppim = pmap_preinit_mapping + i;
6545                         if (ppim->va == 0) {
6546                                 ppim->pa = pa;
6547                                 ppim->sz = size;
6548                                 ppim->mode = mode;
6549                                 ppim->va = virtual_avail;
6550                                 virtual_avail += size;
6551                                 va = ppim->va;
6552                                 break;
6553                         }
6554                 }
6555                 if (va == 0)
6556                         panic("%s: too many preinit mappings", __func__);
6557         } else {
6558                 /*
6559                  * If we have a preinit mapping, re-use it.
6560                  */
6561                 for (i = 0; i < PMAP_PREINIT_MAPPING_COUNT; i++) {
6562                         ppim = pmap_preinit_mapping + i;
6563                         if (ppim->pa == pa && ppim->sz == size &&
6564                             ppim->mode == mode)
6565                                 return ((void *)(ppim->va + offset));
6566                 }
6567                 /*
6568                  * If the specified range of physical addresses fits within
6569                  * the direct map window, use the direct map.
6570                  */
6571                 if (pa < dmaplimit && pa + size < dmaplimit) {
6572                         va = PHYS_TO_DMAP(pa);
6573                         if (!pmap_change_attr(va, size, mode))
6574                                 return ((void *)(va + offset));
6575                 }
6576                 va = kva_alloc(size);
6577                 if (va == 0)
6578                         panic("%s: Couldn't allocate KVA", __func__);
6579         }
6580         for (tmpsize = 0; tmpsize < size; tmpsize += PAGE_SIZE)
6581                 pmap_kenter_attr(va + tmpsize, pa + tmpsize, mode);
6582         pmap_invalidate_range(kernel_pmap, va, va + tmpsize);
6583         pmap_invalidate_cache_range(va, va + tmpsize, FALSE);
6584         return ((void *)(va + offset));
6585 }
6586
6587 void *
6588 pmap_mapdev(vm_paddr_t pa, vm_size_t size)
6589 {
6590
6591         return (pmap_mapdev_attr(pa, size, PAT_UNCACHEABLE));
6592 }
6593
6594 void *
6595 pmap_mapbios(vm_paddr_t pa, vm_size_t size)
6596 {
6597
6598         return (pmap_mapdev_attr(pa, size, PAT_WRITE_BACK));
6599 }
6600
6601 void
6602 pmap_unmapdev(vm_offset_t va, vm_size_t size)
6603 {
6604         struct pmap_preinit_mapping *ppim;
6605         vm_offset_t offset;
6606         int i;
6607
6608         /* If we gave a direct map region in pmap_mapdev, do nothing */
6609         if (va >= DMAP_MIN_ADDRESS && va < DMAP_MAX_ADDRESS)
6610                 return;
6611         offset = va & PAGE_MASK;
6612         size = round_page(offset + size);
6613         va = trunc_page(va);
6614         for (i = 0; i < PMAP_PREINIT_MAPPING_COUNT; i++) {
6615                 ppim = pmap_preinit_mapping + i;
6616                 if (ppim->va == va && ppim->sz == size) {
6617                         if (pmap_initialized)
6618                                 return;
6619                         ppim->pa = 0;
6620                         ppim->va = 0;
6621                         ppim->sz = 0;
6622                         ppim->mode = 0;
6623                         if (va + size == virtual_avail)
6624                                 virtual_avail = va;
6625                         return;
6626                 }
6627         }
6628         if (pmap_initialized)
6629                 kva_free(va, size);
6630 }
6631
6632 /*
6633  * Tries to demote a 1GB page mapping.
6634  */
6635 static boolean_t
6636 pmap_demote_pdpe(pmap_t pmap, pdp_entry_t *pdpe, vm_offset_t va)
6637 {
6638         pdp_entry_t newpdpe, oldpdpe;
6639         pd_entry_t *firstpde, newpde, *pde;
6640         pt_entry_t PG_A, PG_M, PG_RW, PG_V;
6641         vm_paddr_t pdpgpa;
6642         vm_page_t pdpg;
6643
6644         PG_A = pmap_accessed_bit(pmap);
6645         PG_M = pmap_modified_bit(pmap);
6646         PG_V = pmap_valid_bit(pmap);
6647         PG_RW = pmap_rw_bit(pmap);
6648
6649         PMAP_LOCK_ASSERT(pmap, MA_OWNED);
6650         oldpdpe = *pdpe;
6651         KASSERT((oldpdpe & (PG_PS | PG_V)) == (PG_PS | PG_V),
6652             ("pmap_demote_pdpe: oldpdpe is missing PG_PS and/or PG_V"));
6653         if ((pdpg = vm_page_alloc(NULL, va >> PDPSHIFT, VM_ALLOC_INTERRUPT |
6654             VM_ALLOC_NOOBJ | VM_ALLOC_WIRED)) == NULL) {
6655                 CTR2(KTR_PMAP, "pmap_demote_pdpe: failure for va %#lx"
6656                     " in pmap %p", va, pmap);
6657                 return (FALSE);
6658         }
6659         pdpgpa = VM_PAGE_TO_PHYS(pdpg);
6660         firstpde = (pd_entry_t *)PHYS_TO_DMAP(pdpgpa);
6661         newpdpe = pdpgpa | PG_M | PG_A | (oldpdpe & PG_U) | PG_RW | PG_V;
6662         KASSERT((oldpdpe & PG_A) != 0,
6663             ("pmap_demote_pdpe: oldpdpe is missing PG_A"));
6664         KASSERT((oldpdpe & (PG_M | PG_RW)) != PG_RW,
6665             ("pmap_demote_pdpe: oldpdpe is missing PG_M"));
6666         newpde = oldpdpe;
6667
6668         /*
6669          * Initialize the page directory page.
6670          */
6671         for (pde = firstpde; pde < firstpde + NPDEPG; pde++) {
6672                 *pde = newpde;
6673                 newpde += NBPDR;
6674         }
6675
6676         /*
6677          * Demote the mapping.
6678          */
6679         *pdpe = newpdpe;
6680
6681         /*
6682          * Invalidate a stale recursive mapping of the page directory page.
6683          */
6684         pmap_invalidate_page(pmap, (vm_offset_t)vtopde(va));
6685
6686         pmap_pdpe_demotions++;
6687         CTR2(KTR_PMAP, "pmap_demote_pdpe: success for va %#lx"
6688             " in pmap %p", va, pmap);
6689         return (TRUE);
6690 }
6691
6692 /*
6693  * Sets the memory attribute for the specified page.
6694  */
6695 void
6696 pmap_page_set_memattr(vm_page_t m, vm_memattr_t ma)
6697 {
6698
6699         m->md.pat_mode = ma;
6700
6701         /*
6702          * If "m" is a normal page, update its direct mapping.  This update
6703          * can be relied upon to perform any cache operations that are
6704          * required for data coherence.
6705          */
6706         if ((m->flags & PG_FICTITIOUS) == 0 &&
6707             pmap_change_attr(PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m)), PAGE_SIZE,
6708             m->md.pat_mode))
6709                 panic("memory attribute change on the direct map failed");
6710 }
6711
6712 /*
6713  * Changes the specified virtual address range's memory type to that given by
6714  * the parameter "mode".  The specified virtual address range must be
6715  * completely contained within either the direct map or the kernel map.  If
6716  * the virtual address range is contained within the kernel map, then the
6717  * memory type for each of the corresponding ranges of the direct map is also
6718  * changed.  (The corresponding ranges of the direct map are those ranges that
6719  * map the same physical pages as the specified virtual address range.)  These
6720  * changes to the direct map are necessary because Intel describes the
6721  * behavior of their processors as "undefined" if two or more mappings to the
6722  * same physical page have different memory types.
6723  *
6724  * Returns zero if the change completed successfully, and either EINVAL or
6725  * ENOMEM if the change failed.  Specifically, EINVAL is returned if some part
6726  * of the virtual address range was not mapped, and ENOMEM is returned if
6727  * there was insufficient memory available to complete the change.  In the
6728  * latter case, the memory type may have been changed on some part of the
6729  * virtual address range or the direct map.
6730  */
6731 int
6732 pmap_change_attr(vm_offset_t va, vm_size_t size, int mode)
6733 {
6734         int error;
6735
6736         PMAP_LOCK(kernel_pmap);
6737         error = pmap_change_attr_locked(va, size, mode);
6738         PMAP_UNLOCK(kernel_pmap);
6739         return (error);
6740 }
6741
6742 static int
6743 pmap_change_attr_locked(vm_offset_t va, vm_size_t size, int mode)
6744 {
6745         vm_offset_t base, offset, tmpva;
6746         vm_paddr_t pa_start, pa_end, pa_end1;
6747         pdp_entry_t *pdpe;
6748         pd_entry_t *pde;
6749         pt_entry_t *pte;
6750         int cache_bits_pte, cache_bits_pde, error;
6751         boolean_t changed;
6752
6753         PMAP_LOCK_ASSERT(kernel_pmap, MA_OWNED);
6754         base = trunc_page(va);
6755         offset = va & PAGE_MASK;
6756         size = round_page(offset + size);
6757
6758         /*
6759          * Only supported on kernel virtual addresses, including the direct
6760          * map but excluding the recursive map.
6761          */
6762         if (base < DMAP_MIN_ADDRESS)
6763                 return (EINVAL);
6764
6765         cache_bits_pde = pmap_cache_bits(kernel_pmap, mode, 1);
6766         cache_bits_pte = pmap_cache_bits(kernel_pmap, mode, 0);
6767         changed = FALSE;
6768
6769         /*
6770          * Pages that aren't mapped aren't supported.  Also break down 2MB pages
6771          * into 4KB pages if required.
6772          */
6773         for (tmpva = base; tmpva < base + size; ) {
6774                 pdpe = pmap_pdpe(kernel_pmap, tmpva);
6775                 if (pdpe == NULL || *pdpe == 0)
6776                         return (EINVAL);
6777                 if (*pdpe & PG_PS) {
6778                         /*
6779                          * If the current 1GB page already has the required
6780                          * memory type, then we need not demote this page. Just
6781                          * increment tmpva to the next 1GB page frame.
6782                          */
6783                         if ((*pdpe & X86_PG_PDE_CACHE) == cache_bits_pde) {
6784                                 tmpva = trunc_1gpage(tmpva) + NBPDP;
6785                                 continue;
6786                         }
6787
6788                         /*
6789                          * If the current offset aligns with a 1GB page frame
6790                          * and there is at least 1GB left within the range, then
6791                          * we need not break down this page into 2MB pages.
6792                          */
6793                         if ((tmpva & PDPMASK) == 0 &&
6794                             tmpva + PDPMASK < base + size) {
6795                                 tmpva += NBPDP;
6796                                 continue;
6797                         }
6798                         if (!pmap_demote_pdpe(kernel_pmap, pdpe, tmpva))
6799                                 return (ENOMEM);
6800                 }
6801                 pde = pmap_pdpe_to_pde(pdpe, tmpva);
6802                 if (*pde == 0)
6803                         return (EINVAL);
6804                 if (*pde & PG_PS) {
6805                         /*
6806                          * If the current 2MB page already has the required
6807                          * memory type, then we need not demote this page. Just
6808                          * increment tmpva to the next 2MB page frame.
6809                          */
6810                         if ((*pde & X86_PG_PDE_CACHE) == cache_bits_pde) {
6811                                 tmpva = trunc_2mpage(tmpva) + NBPDR;
6812                                 continue;
6813                         }
6814
6815                         /*
6816                          * If the current offset aligns with a 2MB page frame
6817                          * and there is at least 2MB left within the range, then
6818                          * we need not break down this page into 4KB pages.
6819                          */
6820                         if ((tmpva & PDRMASK) == 0 &&
6821                             tmpva + PDRMASK < base + size) {
6822                                 tmpva += NBPDR;
6823                                 continue;
6824                         }
6825                         if (!pmap_demote_pde(kernel_pmap, pde, tmpva))
6826                                 return (ENOMEM);
6827                 }
6828                 pte = pmap_pde_to_pte(pde, tmpva);
6829                 if (*pte == 0)
6830                         return (EINVAL);
6831                 tmpva += PAGE_SIZE;
6832         }
6833         error = 0;
6834
6835         /*
6836          * Ok, all the pages exist, so run through them updating their
6837          * cache mode if required.
6838          */
6839         pa_start = pa_end = 0;
6840         for (tmpva = base; tmpva < base + size; ) {
6841                 pdpe = pmap_pdpe(kernel_pmap, tmpva);
6842                 if (*pdpe & PG_PS) {
6843                         if ((*pdpe & X86_PG_PDE_CACHE) != cache_bits_pde) {
6844                                 pmap_pde_attr(pdpe, cache_bits_pde,
6845                                     X86_PG_PDE_CACHE);
6846                                 changed = TRUE;
6847                         }
6848                         if (tmpva >= VM_MIN_KERNEL_ADDRESS &&
6849                             (*pdpe & PG_PS_FRAME) < dmaplimit) {
6850                                 if (pa_start == pa_end) {
6851                                         /* Start physical address run. */
6852                                         pa_start = *pdpe & PG_PS_FRAME;
6853                                         pa_end = pa_start + NBPDP;
6854                                 } else if (pa_end == (*pdpe & PG_PS_FRAME))
6855                                         pa_end += NBPDP;
6856                                 else {
6857                                         /* Run ended, update direct map. */
6858                                         error = pmap_change_attr_locked(
6859                                             PHYS_TO_DMAP(pa_start),
6860                                             pa_end - pa_start, mode);
6861                                         if (error != 0)
6862                                                 break;
6863                                         /* Start physical address run. */
6864                                         pa_start = *pdpe & PG_PS_FRAME;
6865                                         pa_end = pa_start + NBPDP;
6866                                 }
6867                         }
6868                         tmpva = trunc_1gpage(tmpva) + NBPDP;
6869                         continue;
6870                 }
6871                 pde = pmap_pdpe_to_pde(pdpe, tmpva);
6872                 if (*pde & PG_PS) {
6873                         if ((*pde & X86_PG_PDE_CACHE) != cache_bits_pde) {
6874                                 pmap_pde_attr(pde, cache_bits_pde,
6875                                     X86_PG_PDE_CACHE);
6876                                 changed = TRUE;
6877                         }
6878                         if (tmpva >= VM_MIN_KERNEL_ADDRESS &&
6879                             (*pde & PG_PS_FRAME) < dmaplimit) {
6880                                 if (pa_start == pa_end) {
6881                                         /* Start physical address run. */
6882                                         pa_start = *pde & PG_PS_FRAME;
6883                                         pa_end = pa_start + NBPDR;
6884                                 } else if (pa_end == (*pde & PG_PS_FRAME))
6885                                         pa_end += NBPDR;
6886                                 else {
6887                                         /* Run ended, update direct map. */
6888                                         error = pmap_change_attr_locked(
6889                                             PHYS_TO_DMAP(pa_start),
6890                                             pa_end - pa_start, mode);
6891                                         if (error != 0)
6892                                                 break;
6893                                         /* Start physical address run. */
6894                                         pa_start = *pde & PG_PS_FRAME;
6895                                         pa_end = pa_start + NBPDR;
6896                                 }
6897                         }
6898                         tmpva = trunc_2mpage(tmpva) + NBPDR;
6899                 } else {
6900                         pte = pmap_pde_to_pte(pde, tmpva);
6901                         if ((*pte & X86_PG_PTE_CACHE) != cache_bits_pte) {
6902                                 pmap_pte_attr(pte, cache_bits_pte,
6903                                     X86_PG_PTE_CACHE);
6904                                 changed = TRUE;
6905                         }
6906                         if (tmpva >= VM_MIN_KERNEL_ADDRESS &&
6907                             (*pte & PG_FRAME) < dmaplimit) {
6908                                 if (pa_start == pa_end) {
6909                                         /* Start physical address run. */
6910                                         pa_start = *pte & PG_FRAME;
6911                                         pa_end = pa_start + PAGE_SIZE;
6912                                 } else if (pa_end == (*pte & PG_FRAME))
6913                                         pa_end += PAGE_SIZE;
6914                                 else {
6915                                         /* Run ended, update direct map. */
6916                                         error = pmap_change_attr_locked(
6917                                             PHYS_TO_DMAP(pa_start),
6918                                             pa_end - pa_start, mode);
6919                                         if (error != 0)
6920                                                 break;
6921                                         /* Start physical address run. */
6922                                         pa_start = *pte & PG_FRAME;
6923                                         pa_end = pa_start + PAGE_SIZE;
6924                                 }
6925                         }
6926                         tmpva += PAGE_SIZE;
6927                 }
6928         }
6929         if (error == 0 && pa_start != pa_end && pa_start < dmaplimit) {
6930                 pa_end1 = MIN(pa_end, dmaplimit);
6931                 if (pa_start != pa_end1)
6932                         error = pmap_change_attr_locked(PHYS_TO_DMAP(pa_start),
6933                             pa_end1 - pa_start, mode);
6934         }
6935
6936         /*
6937          * Flush CPU caches if required to make sure any data isn't cached that
6938          * shouldn't be, etc.
6939          */
6940         if (changed) {
6941                 pmap_invalidate_range(kernel_pmap, base, tmpva);
6942                 pmap_invalidate_cache_range(base, tmpva, FALSE);
6943         }
6944         return (error);
6945 }
6946
6947 /*
6948  * Demotes any mapping within the direct map region that covers more than the
6949  * specified range of physical addresses.  This range's size must be a power
6950  * of two and its starting address must be a multiple of its size.  Since the
6951  * demotion does not change any attributes of the mapping, a TLB invalidation
6952  * is not mandatory.  The caller may, however, request a TLB invalidation.
6953  */
6954 void
6955 pmap_demote_DMAP(vm_paddr_t base, vm_size_t len, boolean_t invalidate)
6956 {
6957         pdp_entry_t *pdpe;
6958         pd_entry_t *pde;
6959         vm_offset_t va;
6960         boolean_t changed;
6961
6962         if (len == 0)
6963                 return;
6964         KASSERT(powerof2(len), ("pmap_demote_DMAP: len is not a power of 2"));
6965         KASSERT((base & (len - 1)) == 0,
6966             ("pmap_demote_DMAP: base is not a multiple of len"));
6967         if (len < NBPDP && base < dmaplimit) {
6968                 va = PHYS_TO_DMAP(base);
6969                 changed = FALSE;
6970                 PMAP_LOCK(kernel_pmap);
6971                 pdpe = pmap_pdpe(kernel_pmap, va);
6972                 if ((*pdpe & X86_PG_V) == 0)
6973                         panic("pmap_demote_DMAP: invalid PDPE");
6974                 if ((*pdpe & PG_PS) != 0) {
6975                         if (!pmap_demote_pdpe(kernel_pmap, pdpe, va))
6976                                 panic("pmap_demote_DMAP: PDPE failed");
6977                         changed = TRUE;
6978                 }
6979                 if (len < NBPDR) {
6980                         pde = pmap_pdpe_to_pde(pdpe, va);
6981                         if ((*pde & X86_PG_V) == 0)
6982                                 panic("pmap_demote_DMAP: invalid PDE");
6983                         if ((*pde & PG_PS) != 0) {
6984                                 if (!pmap_demote_pde(kernel_pmap, pde, va))
6985                                         panic("pmap_demote_DMAP: PDE failed");
6986                                 changed = TRUE;
6987                         }
6988                 }
6989                 if (changed && invalidate)
6990                         pmap_invalidate_page(kernel_pmap, va);
6991                 PMAP_UNLOCK(kernel_pmap);
6992         }
6993 }
6994
6995 /*
6996  * perform the pmap work for mincore
6997  */
6998 int
6999 pmap_mincore(pmap_t pmap, vm_offset_t addr, vm_paddr_t *locked_pa)
7000 {
7001         pd_entry_t *pdep;
7002         pt_entry_t pte, PG_A, PG_M, PG_RW, PG_V;
7003         vm_paddr_t pa;
7004         int val;
7005
7006         PG_A = pmap_accessed_bit(pmap);
7007         PG_M = pmap_modified_bit(pmap);
7008         PG_V = pmap_valid_bit(pmap);
7009         PG_RW = pmap_rw_bit(pmap);
7010
7011         PMAP_LOCK(pmap);
7012 retry:
7013         pdep = pmap_pde(pmap, addr);
7014         if (pdep != NULL && (*pdep & PG_V)) {
7015                 if (*pdep & PG_PS) {
7016                         pte = *pdep;
7017                         /* Compute the physical address of the 4KB page. */
7018                         pa = ((*pdep & PG_PS_FRAME) | (addr & PDRMASK)) &
7019                             PG_FRAME;
7020                         val = MINCORE_SUPER;
7021                 } else {
7022                         pte = *pmap_pde_to_pte(pdep, addr);
7023                         pa = pte & PG_FRAME;
7024                         val = 0;
7025                 }
7026         } else {
7027                 pte = 0;
7028                 pa = 0;
7029                 val = 0;
7030         }
7031         if ((pte & PG_V) != 0) {
7032                 val |= MINCORE_INCORE;
7033                 if ((pte & (PG_M | PG_RW)) == (PG_M | PG_RW))
7034                         val |= MINCORE_MODIFIED | MINCORE_MODIFIED_OTHER;
7035                 if ((pte & PG_A) != 0)
7036                         val |= MINCORE_REFERENCED | MINCORE_REFERENCED_OTHER;
7037         }
7038         if ((val & (MINCORE_MODIFIED_OTHER | MINCORE_REFERENCED_OTHER)) !=
7039             (MINCORE_MODIFIED_OTHER | MINCORE_REFERENCED_OTHER) &&
7040             (pte & (PG_MANAGED | PG_V)) == (PG_MANAGED | PG_V)) {
7041                 /* Ensure that "PHYS_TO_VM_PAGE(pa)->object" doesn't change. */
7042                 if (vm_page_pa_tryrelock(pmap, pa, locked_pa))
7043                         goto retry;
7044         } else
7045                 PA_UNLOCK_COND(*locked_pa);
7046         PMAP_UNLOCK(pmap);
7047         return (val);
7048 }
7049
7050 static uint64_t
7051 pmap_pcid_alloc(pmap_t pmap, u_int cpuid)
7052 {
7053         uint32_t gen, new_gen, pcid_next;
7054
7055         CRITICAL_ASSERT(curthread);
7056         gen = PCPU_GET(pcid_gen);
7057         if (pmap->pm_pcids[cpuid].pm_pcid == PMAP_PCID_KERN ||
7058             pmap->pm_pcids[cpuid].pm_gen == gen)
7059                 return (CR3_PCID_SAVE);
7060         pcid_next = PCPU_GET(pcid_next);
7061         KASSERT(pcid_next <= PMAP_PCID_OVERMAX, ("cpu %d pcid_next %#x",
7062             cpuid, pcid_next));
7063         if (pcid_next == PMAP_PCID_OVERMAX) {
7064                 new_gen = gen + 1;
7065                 if (new_gen == 0)
7066                         new_gen = 1;
7067                 PCPU_SET(pcid_gen, new_gen);
7068                 pcid_next = PMAP_PCID_KERN + 1;
7069         } else {
7070                 new_gen = gen;
7071         }
7072         pmap->pm_pcids[cpuid].pm_pcid = pcid_next;
7073         pmap->pm_pcids[cpuid].pm_gen = new_gen;
7074         PCPU_SET(pcid_next, pcid_next + 1);
7075         return (0);
7076 }
7077
7078 void
7079 pmap_activate_sw(struct thread *td)
7080 {
7081         pmap_t oldpmap, pmap;
7082         uint64_t cached, cr3;
7083         register_t rflags;
7084         u_int cpuid;
7085
7086         oldpmap = PCPU_GET(curpmap);
7087         pmap = vmspace_pmap(td->td_proc->p_vmspace);
7088         if (oldpmap == pmap)
7089                 return;
7090         cpuid = PCPU_GET(cpuid);
7091 #ifdef SMP
7092         CPU_SET_ATOMIC(cpuid, &pmap->pm_active);
7093 #else
7094         CPU_SET(cpuid, &pmap->pm_active);
7095 #endif
7096         cr3 = rcr3();
7097         if (pmap_pcid_enabled) {
7098                 cached = pmap_pcid_alloc(pmap, cpuid);
7099                 KASSERT(pmap->pm_pcids[cpuid].pm_pcid >= 0 &&
7100                     pmap->pm_pcids[cpuid].pm_pcid < PMAP_PCID_OVERMAX,
7101                     ("pmap %p cpu %d pcid %#x", pmap, cpuid,
7102                     pmap->pm_pcids[cpuid].pm_pcid));
7103                 KASSERT(pmap->pm_pcids[cpuid].pm_pcid != PMAP_PCID_KERN ||
7104                     pmap == kernel_pmap,
7105                     ("non-kernel pmap thread %p pmap %p cpu %d pcid %#x",
7106                     td, pmap, cpuid, pmap->pm_pcids[cpuid].pm_pcid));
7107
7108                 /*
7109                  * If the INVPCID instruction is not available,
7110                  * invltlb_pcid_handler() is used for handle
7111                  * invalidate_all IPI, which checks for curpmap ==
7112                  * smp_tlb_pmap.  Below operations sequence has a
7113                  * window where %CR3 is loaded with the new pmap's
7114                  * PML4 address, but curpmap value is not yet updated.
7115                  * This causes invltlb IPI handler, called between the
7116                  * updates, to execute as NOP, which leaves stale TLB
7117                  * entries.
7118                  *
7119                  * Note that the most typical use of
7120                  * pmap_activate_sw(), from the context switch, is
7121                  * immune to this race, because interrupts are
7122                  * disabled (while the thread lock is owned), and IPI
7123                  * happends after curpmap is updated.  Protect other
7124                  * callers in a similar way, by disabling interrupts
7125                  * around the %cr3 register reload and curpmap
7126                  * assignment.
7127                  */
7128                 if (!invpcid_works)
7129                         rflags = intr_disable();
7130
7131                 if (!cached || (cr3 & ~CR3_PCID_MASK) != pmap->pm_cr3) {
7132                         load_cr3(pmap->pm_cr3 | pmap->pm_pcids[cpuid].pm_pcid |
7133                             cached);
7134                         if (cached)
7135                                 PCPU_INC(pm_save_cnt);
7136                 }
7137                 PCPU_SET(curpmap, pmap);
7138                 if (!invpcid_works)
7139                         intr_restore(rflags);
7140         } else if (cr3 != pmap->pm_cr3) {
7141                 load_cr3(pmap->pm_cr3);
7142                 PCPU_SET(curpmap, pmap);
7143         }
7144 #ifdef SMP
7145         CPU_CLR_ATOMIC(cpuid, &oldpmap->pm_active);
7146 #else
7147         CPU_CLR(cpuid, &oldpmap->pm_active);
7148 #endif
7149 }
7150
7151 void
7152 pmap_activate(struct thread *td)
7153 {
7154
7155         critical_enter();
7156         pmap_activate_sw(td);
7157         critical_exit();
7158 }
7159
7160 void
7161 pmap_sync_icache(pmap_t pm, vm_offset_t va, vm_size_t sz)
7162 {
7163 }
7164
7165 /*
7166  *      Increase the starting virtual address of the given mapping if a
7167  *      different alignment might result in more superpage mappings.
7168  */
7169 void
7170 pmap_align_superpage(vm_object_t object, vm_ooffset_t offset,
7171     vm_offset_t *addr, vm_size_t size)
7172 {
7173         vm_offset_t superpage_offset;
7174
7175         if (size < NBPDR)
7176                 return;
7177         if (object != NULL && (object->flags & OBJ_COLORED) != 0)
7178                 offset += ptoa(object->pg_color);
7179         superpage_offset = offset & PDRMASK;
7180         if (size - ((NBPDR - superpage_offset) & PDRMASK) < NBPDR ||
7181             (*addr & PDRMASK) == superpage_offset)
7182                 return;
7183         if ((*addr & PDRMASK) < superpage_offset)
7184                 *addr = (*addr & ~PDRMASK) + superpage_offset;
7185         else
7186                 *addr = ((*addr + PDRMASK) & ~PDRMASK) + superpage_offset;
7187 }
7188
7189 #ifdef INVARIANTS
7190 static unsigned long num_dirty_emulations;
7191 SYSCTL_ULONG(_vm_pmap, OID_AUTO, num_dirty_emulations, CTLFLAG_RW,
7192              &num_dirty_emulations, 0, NULL);
7193
7194 static unsigned long num_accessed_emulations;
7195 SYSCTL_ULONG(_vm_pmap, OID_AUTO, num_accessed_emulations, CTLFLAG_RW,
7196              &num_accessed_emulations, 0, NULL);
7197
7198 static unsigned long num_superpage_accessed_emulations;
7199 SYSCTL_ULONG(_vm_pmap, OID_AUTO, num_superpage_accessed_emulations, CTLFLAG_RW,
7200              &num_superpage_accessed_emulations, 0, NULL);
7201
7202 static unsigned long ad_emulation_superpage_promotions;
7203 SYSCTL_ULONG(_vm_pmap, OID_AUTO, ad_emulation_superpage_promotions, CTLFLAG_RW,
7204              &ad_emulation_superpage_promotions, 0, NULL);
7205 #endif  /* INVARIANTS */
7206
7207 int
7208 pmap_emulate_accessed_dirty(pmap_t pmap, vm_offset_t va, int ftype)
7209 {
7210         int rv;
7211         struct rwlock *lock;
7212 #if VM_NRESERVLEVEL > 0
7213         vm_page_t m, mpte;
7214 #endif
7215         pd_entry_t *pde;
7216         pt_entry_t *pte, PG_A, PG_M, PG_RW, PG_V;
7217
7218         KASSERT(ftype == VM_PROT_READ || ftype == VM_PROT_WRITE,
7219             ("pmap_emulate_accessed_dirty: invalid fault type %d", ftype));
7220
7221         if (!pmap_emulate_ad_bits(pmap))
7222                 return (-1);
7223
7224         PG_A = pmap_accessed_bit(pmap);
7225         PG_M = pmap_modified_bit(pmap);
7226         PG_V = pmap_valid_bit(pmap);
7227         PG_RW = pmap_rw_bit(pmap);
7228
7229         rv = -1;
7230         lock = NULL;
7231         PMAP_LOCK(pmap);
7232
7233         pde = pmap_pde(pmap, va);
7234         if (pde == NULL || (*pde & PG_V) == 0)
7235                 goto done;
7236
7237         if ((*pde & PG_PS) != 0) {
7238                 if (ftype == VM_PROT_READ) {
7239 #ifdef INVARIANTS
7240                         atomic_add_long(&num_superpage_accessed_emulations, 1);
7241 #endif
7242                         *pde |= PG_A;
7243                         rv = 0;
7244                 }
7245                 goto done;
7246         }
7247
7248         pte = pmap_pde_to_pte(pde, va);
7249         if ((*pte & PG_V) == 0)
7250                 goto done;
7251
7252         if (ftype == VM_PROT_WRITE) {
7253                 if ((*pte & PG_RW) == 0)
7254                         goto done;
7255                 /*
7256                  * Set the modified and accessed bits simultaneously.
7257                  *
7258                  * Intel EPT PTEs that do software emulation of A/D bits map
7259                  * PG_A and PG_M to EPT_PG_READ and EPT_PG_WRITE respectively.
7260                  * An EPT misconfiguration is triggered if the PTE is writable
7261                  * but not readable (WR=10). This is avoided by setting PG_A
7262                  * and PG_M simultaneously.
7263                  */
7264                 *pte |= PG_M | PG_A;
7265         } else {
7266                 *pte |= PG_A;
7267         }
7268
7269 #if VM_NRESERVLEVEL > 0
7270         /* try to promote the mapping */
7271         if (va < VM_MAXUSER_ADDRESS)
7272                 mpte = PHYS_TO_VM_PAGE(*pde & PG_FRAME);
7273         else
7274                 mpte = NULL;
7275
7276         m = PHYS_TO_VM_PAGE(*pte & PG_FRAME);
7277
7278         if ((mpte == NULL || mpte->wire_count == NPTEPG) &&
7279             pmap_ps_enabled(pmap) &&
7280             (m->flags & PG_FICTITIOUS) == 0 &&
7281             vm_reserv_level_iffullpop(m) == 0) {
7282                 pmap_promote_pde(pmap, pde, va, &lock);
7283 #ifdef INVARIANTS
7284                 atomic_add_long(&ad_emulation_superpage_promotions, 1);
7285 #endif
7286         }
7287 #endif
7288
7289 #ifdef INVARIANTS
7290         if (ftype == VM_PROT_WRITE)
7291                 atomic_add_long(&num_dirty_emulations, 1);
7292         else
7293                 atomic_add_long(&num_accessed_emulations, 1);
7294 #endif
7295         rv = 0;         /* success */
7296 done:
7297         if (lock != NULL)
7298                 rw_wunlock(lock);
7299         PMAP_UNLOCK(pmap);
7300         return (rv);
7301 }
7302
7303 void
7304 pmap_get_mapping(pmap_t pmap, vm_offset_t va, uint64_t *ptr, int *num)
7305 {
7306         pml4_entry_t *pml4;
7307         pdp_entry_t *pdp;
7308         pd_entry_t *pde;
7309         pt_entry_t *pte, PG_V;
7310         int idx;
7311
7312         idx = 0;
7313         PG_V = pmap_valid_bit(pmap);
7314         PMAP_LOCK(pmap);
7315
7316         pml4 = pmap_pml4e(pmap, va);
7317         ptr[idx++] = *pml4;
7318         if ((*pml4 & PG_V) == 0)
7319                 goto done;
7320
7321         pdp = pmap_pml4e_to_pdpe(pml4, va);
7322         ptr[idx++] = *pdp;
7323         if ((*pdp & PG_V) == 0 || (*pdp & PG_PS) != 0)
7324                 goto done;
7325
7326         pde = pmap_pdpe_to_pde(pdp, va);
7327         ptr[idx++] = *pde;
7328         if ((*pde & PG_V) == 0 || (*pde & PG_PS) != 0)
7329                 goto done;
7330
7331         pte = pmap_pde_to_pte(pde, va);
7332         ptr[idx++] = *pte;
7333
7334 done:
7335         PMAP_UNLOCK(pmap);
7336         *num = idx;
7337 }
7338
7339 /**
7340  * Get the kernel virtual address of a set of physical pages. If there are
7341  * physical addresses not covered by the DMAP perform a transient mapping
7342  * that will be removed when calling pmap_unmap_io_transient.
7343  *
7344  * \param page        The pages the caller wishes to obtain the virtual
7345  *                    address on the kernel memory map.
7346  * \param vaddr       On return contains the kernel virtual memory address
7347  *                    of the pages passed in the page parameter.
7348  * \param count       Number of pages passed in.
7349  * \param can_fault   TRUE if the thread using the mapped pages can take
7350  *                    page faults, FALSE otherwise.
7351  *
7352  * \returns TRUE if the caller must call pmap_unmap_io_transient when
7353  *          finished or FALSE otherwise.
7354  *
7355  */
7356 boolean_t
7357 pmap_map_io_transient(vm_page_t page[], vm_offset_t vaddr[], int count,
7358     boolean_t can_fault)
7359 {
7360         vm_paddr_t paddr;
7361         boolean_t needs_mapping;
7362         pt_entry_t *pte;
7363         int cache_bits, error, i;
7364
7365         /*
7366          * Allocate any KVA space that we need, this is done in a separate
7367          * loop to prevent calling vmem_alloc while pinned.
7368          */
7369         needs_mapping = FALSE;
7370         for (i = 0; i < count; i++) {
7371                 paddr = VM_PAGE_TO_PHYS(page[i]);
7372                 if (__predict_false(paddr >= dmaplimit)) {
7373                         error = vmem_alloc(kernel_arena, PAGE_SIZE,
7374                             M_BESTFIT | M_WAITOK, &vaddr[i]);
7375                         KASSERT(error == 0, ("vmem_alloc failed: %d", error));
7376                         needs_mapping = TRUE;
7377                 } else {
7378                         vaddr[i] = PHYS_TO_DMAP(paddr);
7379                 }
7380         }
7381
7382         /* Exit early if everything is covered by the DMAP */
7383         if (!needs_mapping)
7384                 return (FALSE);
7385
7386         /*
7387          * NB:  The sequence of updating a page table followed by accesses
7388          * to the corresponding pages used in the !DMAP case is subject to
7389          * the situation described in the "AMD64 Architecture Programmer's
7390          * Manual Volume 2: System Programming" rev. 3.23, "7.3.1 Special
7391          * Coherency Considerations".  Therefore, issuing the INVLPG right
7392          * after modifying the PTE bits is crucial.
7393          */
7394         if (!can_fault)
7395                 sched_pin();
7396         for (i = 0; i < count; i++) {
7397                 paddr = VM_PAGE_TO_PHYS(page[i]);
7398                 if (paddr >= dmaplimit) {
7399                         if (can_fault) {
7400                                 /*
7401                                  * Slow path, since we can get page faults
7402                                  * while mappings are active don't pin the
7403                                  * thread to the CPU and instead add a global
7404                                  * mapping visible to all CPUs.
7405                                  */
7406                                 pmap_qenter(vaddr[i], &page[i], 1);
7407                         } else {
7408                                 pte = vtopte(vaddr[i]);
7409                                 cache_bits = pmap_cache_bits(kernel_pmap,
7410                                     page[i]->md.pat_mode, 0);
7411                                 pte_store(pte, paddr | X86_PG_RW | X86_PG_V |
7412                                     cache_bits);
7413                                 invlpg(vaddr[i]);
7414                         }
7415                 }
7416         }
7417
7418         return (needs_mapping);
7419 }
7420
7421 void
7422 pmap_unmap_io_transient(vm_page_t page[], vm_offset_t vaddr[], int count,
7423     boolean_t can_fault)
7424 {
7425         vm_paddr_t paddr;
7426         int i;
7427
7428         if (!can_fault)
7429                 sched_unpin();
7430         for (i = 0; i < count; i++) {
7431                 paddr = VM_PAGE_TO_PHYS(page[i]);
7432                 if (paddr >= dmaplimit) {
7433                         if (can_fault)
7434                                 pmap_qremove(vaddr[i], 1);
7435                         vmem_free(kernel_arena, vaddr[i], PAGE_SIZE);
7436                 }
7437         }
7438 }
7439
7440 vm_offset_t
7441 pmap_quick_enter_page(vm_page_t m)
7442 {
7443         vm_paddr_t paddr;
7444
7445         paddr = VM_PAGE_TO_PHYS(m);
7446         if (paddr < dmaplimit)
7447                 return (PHYS_TO_DMAP(paddr));
7448         mtx_lock_spin(&qframe_mtx);
7449         KASSERT(*vtopte(qframe) == 0, ("qframe busy"));
7450         pte_store(vtopte(qframe), paddr | X86_PG_RW | X86_PG_V | X86_PG_A |
7451             X86_PG_M | pmap_cache_bits(kernel_pmap, m->md.pat_mode, 0));
7452         return (qframe);
7453 }
7454
7455 void
7456 pmap_quick_remove_page(vm_offset_t addr)
7457 {
7458
7459         if (addr != qframe)
7460                 return;
7461         pte_store(vtopte(qframe), 0);
7462         invlpg(qframe);
7463         mtx_unlock_spin(&qframe_mtx);
7464 }
7465
7466 #include "opt_ddb.h"
7467 #ifdef DDB
7468 #include <sys/kdb.h>
7469 #include <ddb/ddb.h>
7470
7471 DB_SHOW_COMMAND(pte, pmap_print_pte)
7472 {
7473         pmap_t pmap;
7474         pml4_entry_t *pml4;
7475         pdp_entry_t *pdp;
7476         pd_entry_t *pde;
7477         pt_entry_t *pte, PG_V;
7478         vm_offset_t va;
7479
7480         if (!have_addr) {
7481                 db_printf("show pte addr\n");
7482                 return;
7483         }
7484         va = (vm_offset_t)addr;
7485
7486         if (kdb_thread != NULL)
7487                 pmap = vmspace_pmap(kdb_thread->td_proc->p_vmspace);
7488         else
7489                 pmap = PCPU_GET(curpmap);
7490
7491         PG_V = pmap_valid_bit(pmap);
7492         pml4 = pmap_pml4e(pmap, va);
7493         db_printf("VA %#016lx pml4e %#016lx", va, *pml4);
7494         if ((*pml4 & PG_V) == 0) {
7495                 db_printf("\n");
7496                 return;
7497         }
7498         pdp = pmap_pml4e_to_pdpe(pml4, va);
7499         db_printf(" pdpe %#016lx", *pdp);
7500         if ((*pdp & PG_V) == 0 || (*pdp & PG_PS) != 0) {
7501                 db_printf("\n");
7502                 return;
7503         }
7504         pde = pmap_pdpe_to_pde(pdp, va);
7505         db_printf(" pde %#016lx", *pde);
7506         if ((*pde & PG_V) == 0 || (*pde & PG_PS) != 0) {
7507                 db_printf("\n");
7508                 return;
7509         }
7510         pte = pmap_pde_to_pte(pde, va);
7511         db_printf(" pte %#016lx\n", *pte);
7512 }
7513
7514 DB_SHOW_COMMAND(phys2dmap, pmap_phys2dmap)
7515 {
7516         vm_paddr_t a;
7517
7518         if (have_addr) {
7519                 a = (vm_paddr_t)addr;
7520                 db_printf("0x%jx\n", (uintmax_t)PHYS_TO_DMAP(a));
7521         } else {
7522                 db_printf("show phys2dmap addr\n");
7523         }
7524 }
7525 #endif