xref: /illumos-gate/usr/src/uts/i86pc/vm/htable.c (revision b4b4691168696cd48cd1092485b8fea022563da3)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
23*b4b46911Skchow  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #include <sys/types.h>
307c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
317c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
327c478bd9Sstevel@tonic-gate #include <sys/atomic.h>
337c478bd9Sstevel@tonic-gate #include <sys/bitmap.h>
347c478bd9Sstevel@tonic-gate #include <sys/machparam.h>
357c478bd9Sstevel@tonic-gate #include <sys/machsystm.h>
367c478bd9Sstevel@tonic-gate #include <sys/mman.h>
377c478bd9Sstevel@tonic-gate #include <sys/systm.h>
387c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
397c478bd9Sstevel@tonic-gate #include <sys/thread.h>
407c478bd9Sstevel@tonic-gate #include <sys/proc.h>
417c478bd9Sstevel@tonic-gate #include <sys/cpu.h>
427c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
437c478bd9Sstevel@tonic-gate #include <sys/disp.h>
447c478bd9Sstevel@tonic-gate #include <sys/vmem.h>
457c478bd9Sstevel@tonic-gate #include <sys/vmsystm.h>
467c478bd9Sstevel@tonic-gate #include <sys/promif.h>
477c478bd9Sstevel@tonic-gate #include <sys/var.h>
487c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h>
497c478bd9Sstevel@tonic-gate #include <sys/bootconf.h>
507c478bd9Sstevel@tonic-gate #include <sys/dumphdr.h>
517c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h>
527c478bd9Sstevel@tonic-gate #include <vm/seg_kpm.h>
537c478bd9Sstevel@tonic-gate #include <vm/hat.h>
547c478bd9Sstevel@tonic-gate #include <vm/hat_i86.h>
557c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate kmem_cache_t *htable_cache;
587c478bd9Sstevel@tonic-gate extern cpuset_t khat_cpuset;
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate /*
617c478bd9Sstevel@tonic-gate  * The variable htable_reserve_amount, rather than HTABLE_RESERVE_AMOUNT,
627c478bd9Sstevel@tonic-gate  * is used in order to facilitate testing of the htable_steal() code.
637c478bd9Sstevel@tonic-gate  * By resetting htable_reserve_amount to a lower value, we can force
647c478bd9Sstevel@tonic-gate  * stealing to occur.  The reserve amount is a guess to get us through boot.
657c478bd9Sstevel@tonic-gate  */
667c478bd9Sstevel@tonic-gate #define	HTABLE_RESERVE_AMOUNT	(200)
677c478bd9Sstevel@tonic-gate uint_t htable_reserve_amount = HTABLE_RESERVE_AMOUNT;
687c478bd9Sstevel@tonic-gate kmutex_t htable_reserve_mutex;
697c478bd9Sstevel@tonic-gate uint_t htable_reserve_cnt;
707c478bd9Sstevel@tonic-gate htable_t *htable_reserve_pool;
717c478bd9Sstevel@tonic-gate 
727c478bd9Sstevel@tonic-gate /*
737c478bd9Sstevel@tonic-gate  * This variable is so that we can tune this via /etc/system
747c478bd9Sstevel@tonic-gate  */
757c478bd9Sstevel@tonic-gate uint_t htable_steal_passes = 10;
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate /*
787c478bd9Sstevel@tonic-gate  * mutex stuff for access to htable hash
797c478bd9Sstevel@tonic-gate  */
807c478bd9Sstevel@tonic-gate #define	NUM_HTABLE_MUTEX 128
817c478bd9Sstevel@tonic-gate kmutex_t htable_mutex[NUM_HTABLE_MUTEX];
827c478bd9Sstevel@tonic-gate #define	HTABLE_MUTEX_HASH(h) ((h) & (NUM_HTABLE_MUTEX - 1))
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate #define	HTABLE_ENTER(h)	mutex_enter(&htable_mutex[HTABLE_MUTEX_HASH(h)]);
857c478bd9Sstevel@tonic-gate #define	HTABLE_EXIT(h)	mutex_exit(&htable_mutex[HTABLE_MUTEX_HASH(h)]);
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate /*
887c478bd9Sstevel@tonic-gate  * forward declarations
897c478bd9Sstevel@tonic-gate  */
907c478bd9Sstevel@tonic-gate static void link_ptp(htable_t *higher, htable_t *new, uintptr_t vaddr);
917c478bd9Sstevel@tonic-gate static void unlink_ptp(htable_t *higher, htable_t *old, uintptr_t vaddr);
927c478bd9Sstevel@tonic-gate static void htable_free(htable_t *ht);
937c478bd9Sstevel@tonic-gate static x86pte_t *x86pte_access_pagetable(htable_t *ht);
947c478bd9Sstevel@tonic-gate static void x86pte_release_pagetable(htable_t *ht);
957c478bd9Sstevel@tonic-gate static x86pte_t x86pte_cas(htable_t *ht, uint_t entry, x86pte_t old,
967c478bd9Sstevel@tonic-gate 	x86pte_t new);
977c478bd9Sstevel@tonic-gate 
987c478bd9Sstevel@tonic-gate /*
997c478bd9Sstevel@tonic-gate  * Address used for kernel page tables. See ptable_alloc() below.
1007c478bd9Sstevel@tonic-gate  */
1017c478bd9Sstevel@tonic-gate uintptr_t ptable_va = 0;
1027c478bd9Sstevel@tonic-gate size_t	ptable_sz = 2 * MMU_PAGESIZE;
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate /*
1057c478bd9Sstevel@tonic-gate  * A counter to track if we are stealing or reaping htables. When non-zero
1067c478bd9Sstevel@tonic-gate  * htable_free() will directly free htables (either to the reserve or kmem)
1077c478bd9Sstevel@tonic-gate  * instead of putting them in a hat's htable cache.
1087c478bd9Sstevel@tonic-gate  */
1097c478bd9Sstevel@tonic-gate uint32_t htable_dont_cache = 0;
1107c478bd9Sstevel@tonic-gate 
1117c478bd9Sstevel@tonic-gate /*
1127c478bd9Sstevel@tonic-gate  * Track the number of active pagetables, so we can know how many to reap
1137c478bd9Sstevel@tonic-gate  */
1147c478bd9Sstevel@tonic-gate static uint32_t active_ptables = 0;
1157c478bd9Sstevel@tonic-gate 
1167c478bd9Sstevel@tonic-gate /*
1177c478bd9Sstevel@tonic-gate  * Allocate a memory page for a hardware page table.
1187c478bd9Sstevel@tonic-gate  *
1197c478bd9Sstevel@tonic-gate  * The pages allocated for page tables are currently gotten in a hacked up
1207c478bd9Sstevel@tonic-gate  * way. It works for now, but really needs to be fixed up a bit.
1217c478bd9Sstevel@tonic-gate  *
1227c478bd9Sstevel@tonic-gate  * During boot: The boot loader controls physical memory allocation via
1237c478bd9Sstevel@tonic-gate  * boot_alloc(). To avoid conflict with vmem, we just do boot_alloc()s with
1247c478bd9Sstevel@tonic-gate  * addresses less than kernelbase. These addresses are ignored when we take
1257c478bd9Sstevel@tonic-gate  * over mappings from the boot loader.
1267c478bd9Sstevel@tonic-gate  *
1277c478bd9Sstevel@tonic-gate  * Post-boot: we currently use page_create_va() on the kvp with fake offsets,
1287c478bd9Sstevel@tonic-gate  * segments and virt address. This is pretty bogus, but was copied from the
1297c478bd9Sstevel@tonic-gate  * old hat_i86.c code. A better approach would be to have a custom
1307c478bd9Sstevel@tonic-gate  * page_get_physical() interface that can specify either mnode random or
1317c478bd9Sstevel@tonic-gate  * mnode local and takes a page from whatever color has the MOST available -
1327c478bd9Sstevel@tonic-gate  * this would have a minimal impact on page coloring.
1337c478bd9Sstevel@tonic-gate  *
1347c478bd9Sstevel@tonic-gate  * For now the htable pointer in ht is only used to compute a unique vnode
1357c478bd9Sstevel@tonic-gate  * offset for the page.
1367c478bd9Sstevel@tonic-gate  */
1377c478bd9Sstevel@tonic-gate static void
1387c478bd9Sstevel@tonic-gate ptable_alloc(htable_t *ht)
1397c478bd9Sstevel@tonic-gate {
1407c478bd9Sstevel@tonic-gate 	pfn_t pfn;
1417c478bd9Sstevel@tonic-gate 	page_t *pp;
1427c478bd9Sstevel@tonic-gate 	u_offset_t offset;
1437c478bd9Sstevel@tonic-gate 	static struct seg tmpseg;
1447c478bd9Sstevel@tonic-gate 	static int first_time = 1;
1457c478bd9Sstevel@tonic-gate 
1467c478bd9Sstevel@tonic-gate 	/*
1477c478bd9Sstevel@tonic-gate 	 * Allocating the associated hardware page table is very different
1487c478bd9Sstevel@tonic-gate 	 * before boot has finished.  We get a physical page to from boot
1497c478bd9Sstevel@tonic-gate 	 * w/o eating up any kernel address space.
1507c478bd9Sstevel@tonic-gate 	 */
1517c478bd9Sstevel@tonic-gate 	ht->ht_pfn = PFN_INVALID;
1527c478bd9Sstevel@tonic-gate 	HATSTAT_INC(hs_ptable_allocs);
1537c478bd9Sstevel@tonic-gate 	atomic_add_32(&active_ptables, 1);
1547c478bd9Sstevel@tonic-gate 
1557c478bd9Sstevel@tonic-gate 	if (use_boot_reserve) {
1567c478bd9Sstevel@tonic-gate 		ASSERT(ptable_va != 0);
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate 		/*
1597c478bd9Sstevel@tonic-gate 		 * Allocate, then demap the ptable_va, so that we're
1607c478bd9Sstevel@tonic-gate 		 * sure there exist page table entries for the addresses
1617c478bd9Sstevel@tonic-gate 		 */
1627c478bd9Sstevel@tonic-gate 		if (first_time) {
1637c478bd9Sstevel@tonic-gate 			first_time = 0;
1647c478bd9Sstevel@tonic-gate 			if ((uintptr_t)BOP_ALLOC(bootops, (caddr_t)ptable_va,
1657c478bd9Sstevel@tonic-gate 			    ptable_sz, BO_NO_ALIGN) != ptable_va)
1667c478bd9Sstevel@tonic-gate 				panic("BOP_ALLOC failed");
1677c478bd9Sstevel@tonic-gate 
1687c478bd9Sstevel@tonic-gate 			hat_boot_demap(ptable_va);
1697c478bd9Sstevel@tonic-gate 			hat_boot_demap(ptable_va + MMU_PAGESIZE);
1707c478bd9Sstevel@tonic-gate 		}
1717c478bd9Sstevel@tonic-gate 
1727c478bd9Sstevel@tonic-gate 		pfn = ((uintptr_t)BOP_EALLOC(bootops, 0, MMU_PAGESIZE,
1737c478bd9Sstevel@tonic-gate 		    BO_NO_ALIGN, BOPF_X86_ALLOC_PHYS)) >> MMU_PAGESHIFT;
1747c478bd9Sstevel@tonic-gate 		if (page_resv(1, KM_NOSLEEP) == 0)
1757c478bd9Sstevel@tonic-gate 			panic("page_resv() failed in ptable alloc");
1767c478bd9Sstevel@tonic-gate 
1777c478bd9Sstevel@tonic-gate 		pp = page_numtopp_nolock(pfn);
1787c478bd9Sstevel@tonic-gate 		ASSERT(pp != NULL);
1797c478bd9Sstevel@tonic-gate 		if (pp->p_szc != 0)
1807c478bd9Sstevel@tonic-gate 			page_boot_demote(pp);
1817c478bd9Sstevel@tonic-gate 		pp = page_numtopp(pfn, SE_EXCL);
1827c478bd9Sstevel@tonic-gate 		ASSERT(pp != NULL);
1837c478bd9Sstevel@tonic-gate 
1847c478bd9Sstevel@tonic-gate 	} else {
1857c478bd9Sstevel@tonic-gate 		/*
1867c478bd9Sstevel@tonic-gate 		 * Post boot get a page for the table.
1877c478bd9Sstevel@tonic-gate 		 *
1887c478bd9Sstevel@tonic-gate 		 * The first check is to see if there is memory in
1897c478bd9Sstevel@tonic-gate 		 * the system. If we drop to throttlefree, then fail
1907c478bd9Sstevel@tonic-gate 		 * the ptable_alloc() and let the stealing code kick in.
1917c478bd9Sstevel@tonic-gate 		 * Note that we have to do this test here, since the test in
1927c478bd9Sstevel@tonic-gate 		 * page_create_throttle() would let the NOSLEEP allocation
1937c478bd9Sstevel@tonic-gate 		 * go through and deplete the page reserves.
1947c478bd9Sstevel@tonic-gate 		 */
1957c478bd9Sstevel@tonic-gate 		if (freemem <= throttlefree + 1)
1967c478bd9Sstevel@tonic-gate 			return;
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate 		/*
1997c478bd9Sstevel@tonic-gate 		 * This code is temporary, so don't review too critically.
2007c478bd9Sstevel@tonic-gate 		 * I'm awaiting a new phys page allocator from Kit -- Joe
2017c478bd9Sstevel@tonic-gate 		 *
2027c478bd9Sstevel@tonic-gate 		 * We need assign an offset for the page to call
2037c478bd9Sstevel@tonic-gate 		 * page_create_va. To avoid conflicts with other pages,
2047c478bd9Sstevel@tonic-gate 		 * we get creative with the offset.
2057c478bd9Sstevel@tonic-gate 		 * for 32 bits, we pic an offset > 4Gig
2067c478bd9Sstevel@tonic-gate 		 * for 64 bits, pic an offset somewhere in the VA hole.
2077c478bd9Sstevel@tonic-gate 		 */
2087c478bd9Sstevel@tonic-gate 		offset = (uintptr_t)ht - kernelbase;
2097c478bd9Sstevel@tonic-gate 		offset <<= MMU_PAGESHIFT;
2107c478bd9Sstevel@tonic-gate #if defined(__amd64)
2117c478bd9Sstevel@tonic-gate 		offset += mmu.hole_start;	/* something in VA hole */
2127c478bd9Sstevel@tonic-gate #else
2137c478bd9Sstevel@tonic-gate 		offset += 1ULL << 40;		/* something > 4 Gig */
2147c478bd9Sstevel@tonic-gate #endif
2157c478bd9Sstevel@tonic-gate 
2167c478bd9Sstevel@tonic-gate 		if (page_resv(1, KM_NOSLEEP) == 0)
2177c478bd9Sstevel@tonic-gate 			return;
2187c478bd9Sstevel@tonic-gate 
2197c478bd9Sstevel@tonic-gate #ifdef DEBUG
2207c478bd9Sstevel@tonic-gate 		pp = page_exists(&kvp, offset);
2217c478bd9Sstevel@tonic-gate 		if (pp != NULL)
2227c478bd9Sstevel@tonic-gate 			panic("ptable already exists %p", pp);
2237c478bd9Sstevel@tonic-gate #endif
2247c478bd9Sstevel@tonic-gate 		pp = page_create_va(&kvp, offset, MMU_PAGESIZE,
2257c478bd9Sstevel@tonic-gate 		    PG_EXCL | PG_NORELOC, &tmpseg,
2267c478bd9Sstevel@tonic-gate 		    (void *)((uintptr_t)ht << MMU_PAGESHIFT));
2277c478bd9Sstevel@tonic-gate 		if (pp == NULL)
2287c478bd9Sstevel@tonic-gate 			return;
2297c478bd9Sstevel@tonic-gate 		page_io_unlock(pp);
2307c478bd9Sstevel@tonic-gate 		page_hashout(pp, NULL);
2317c478bd9Sstevel@tonic-gate 		pfn = pp->p_pagenum;
2327c478bd9Sstevel@tonic-gate 	}
2337c478bd9Sstevel@tonic-gate 	page_downgrade(pp);
2347c478bd9Sstevel@tonic-gate 	ASSERT(PAGE_SHARED(pp));
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate 	if (pfn == PFN_INVALID)
2377c478bd9Sstevel@tonic-gate 		panic("ptable_alloc(): Invalid PFN!!");
2387c478bd9Sstevel@tonic-gate 	ht->ht_pfn = pfn;
2397c478bd9Sstevel@tonic-gate }
2407c478bd9Sstevel@tonic-gate 
2417c478bd9Sstevel@tonic-gate /*
2427c478bd9Sstevel@tonic-gate  * Free an htable's associated page table page.  See the comments
2437c478bd9Sstevel@tonic-gate  * for ptable_alloc().
2447c478bd9Sstevel@tonic-gate  */
2457c478bd9Sstevel@tonic-gate static void
2467c478bd9Sstevel@tonic-gate ptable_free(htable_t *ht)
2477c478bd9Sstevel@tonic-gate {
2487c478bd9Sstevel@tonic-gate 	pfn_t pfn = ht->ht_pfn;
2497c478bd9Sstevel@tonic-gate 	page_t *pp;
2507c478bd9Sstevel@tonic-gate 
2517c478bd9Sstevel@tonic-gate 	/*
2527c478bd9Sstevel@tonic-gate 	 * need to destroy the page used for the pagetable
2537c478bd9Sstevel@tonic-gate 	 */
2547c478bd9Sstevel@tonic-gate 	ASSERT(pfn != PFN_INVALID);
2557c478bd9Sstevel@tonic-gate 	HATSTAT_INC(hs_ptable_frees);
2567c478bd9Sstevel@tonic-gate 	atomic_add_32(&active_ptables, -1);
2577c478bd9Sstevel@tonic-gate 	pp = page_numtopp_nolock(pfn);
2587c478bd9Sstevel@tonic-gate 	if (pp == NULL)
2597c478bd9Sstevel@tonic-gate 		panic("ptable_free(): no page for pfn!");
2607c478bd9Sstevel@tonic-gate 	ASSERT(PAGE_SHARED(pp));
2617c478bd9Sstevel@tonic-gate 	ASSERT(pfn == pp->p_pagenum);
2627c478bd9Sstevel@tonic-gate 
2637c478bd9Sstevel@tonic-gate 	/*
2647c478bd9Sstevel@tonic-gate 	 * Get an exclusive lock, might have to wait for a kmem reader.
2657c478bd9Sstevel@tonic-gate 	 */
2667c478bd9Sstevel@tonic-gate 	if (!page_tryupgrade(pp)) {
2677c478bd9Sstevel@tonic-gate 		page_unlock(pp);
2687c478bd9Sstevel@tonic-gate 		/*
2697c478bd9Sstevel@tonic-gate 		 * RFE: we could change this to not loop forever
2707c478bd9Sstevel@tonic-gate 		 * George Cameron had some idea on how to do that.
2717c478bd9Sstevel@tonic-gate 		 * For now looping works - it's just like sfmmu.
2727c478bd9Sstevel@tonic-gate 		 */
2737c478bd9Sstevel@tonic-gate 		while (!page_lock(pp, SE_EXCL, (kmutex_t *)NULL, P_RECLAIM))
2747c478bd9Sstevel@tonic-gate 			continue;
2757c478bd9Sstevel@tonic-gate 	}
2767c478bd9Sstevel@tonic-gate 	page_free(pp, 1);
2777c478bd9Sstevel@tonic-gate 	page_unresv(1);
2787c478bd9Sstevel@tonic-gate 	ht->ht_pfn = PFN_INVALID;
2797c478bd9Sstevel@tonic-gate }
2807c478bd9Sstevel@tonic-gate 
2817c478bd9Sstevel@tonic-gate /*
2827c478bd9Sstevel@tonic-gate  * Put one htable on the reserve list.
2837c478bd9Sstevel@tonic-gate  */
2847c478bd9Sstevel@tonic-gate static void
2857c478bd9Sstevel@tonic-gate htable_put_reserve(htable_t *ht)
2867c478bd9Sstevel@tonic-gate {
2877c478bd9Sstevel@tonic-gate 	ht->ht_hat = NULL;		/* no longer tied to a hat */
2887c478bd9Sstevel@tonic-gate 	ASSERT(ht->ht_pfn == PFN_INVALID);
2897c478bd9Sstevel@tonic-gate 	HATSTAT_INC(hs_htable_rputs);
2907c478bd9Sstevel@tonic-gate 	mutex_enter(&htable_reserve_mutex);
2917c478bd9Sstevel@tonic-gate 	ht->ht_next = htable_reserve_pool;
2927c478bd9Sstevel@tonic-gate 	htable_reserve_pool = ht;
2937c478bd9Sstevel@tonic-gate 	++htable_reserve_cnt;
2947c478bd9Sstevel@tonic-gate 	mutex_exit(&htable_reserve_mutex);
2957c478bd9Sstevel@tonic-gate }
2967c478bd9Sstevel@tonic-gate 
2977c478bd9Sstevel@tonic-gate /*
2987c478bd9Sstevel@tonic-gate  * Take one htable from the reserve.
2997c478bd9Sstevel@tonic-gate  */
3007c478bd9Sstevel@tonic-gate static htable_t *
3017c478bd9Sstevel@tonic-gate htable_get_reserve(void)
3027c478bd9Sstevel@tonic-gate {
3037c478bd9Sstevel@tonic-gate 	htable_t *ht = NULL;
3047c478bd9Sstevel@tonic-gate 
3057c478bd9Sstevel@tonic-gate 	mutex_enter(&htable_reserve_mutex);
3067c478bd9Sstevel@tonic-gate 	if (htable_reserve_cnt != 0) {
3077c478bd9Sstevel@tonic-gate 		ht = htable_reserve_pool;
3087c478bd9Sstevel@tonic-gate 		ASSERT(ht != NULL);
3097c478bd9Sstevel@tonic-gate 		ASSERT(ht->ht_pfn == PFN_INVALID);
3107c478bd9Sstevel@tonic-gate 		htable_reserve_pool = ht->ht_next;
3117c478bd9Sstevel@tonic-gate 		--htable_reserve_cnt;
3127c478bd9Sstevel@tonic-gate 		HATSTAT_INC(hs_htable_rgets);
3137c478bd9Sstevel@tonic-gate 	}
3147c478bd9Sstevel@tonic-gate 	mutex_exit(&htable_reserve_mutex);
3157c478bd9Sstevel@tonic-gate 	return (ht);
3167c478bd9Sstevel@tonic-gate }
3177c478bd9Sstevel@tonic-gate 
3187c478bd9Sstevel@tonic-gate /*
3197c478bd9Sstevel@tonic-gate  * Allocate initial htables with page tables and put them on the kernel hat's
3207c478bd9Sstevel@tonic-gate  * cache list.
3217c478bd9Sstevel@tonic-gate  */
3227c478bd9Sstevel@tonic-gate void
3237c478bd9Sstevel@tonic-gate htable_initial_reserve(uint_t count)
3247c478bd9Sstevel@tonic-gate {
3257c478bd9Sstevel@tonic-gate 	htable_t *ht;
3267c478bd9Sstevel@tonic-gate 	hat_t *hat = kas.a_hat;
3277c478bd9Sstevel@tonic-gate 
3287c478bd9Sstevel@tonic-gate 	count += HTABLE_RESERVE_AMOUNT;
3297c478bd9Sstevel@tonic-gate 	while (count > 0) {
3307c478bd9Sstevel@tonic-gate 		ht = kmem_cache_alloc(htable_cache, KM_NOSLEEP);
3317c478bd9Sstevel@tonic-gate 		ASSERT(ht != NULL);
3327c478bd9Sstevel@tonic-gate 
3337c478bd9Sstevel@tonic-gate 		ASSERT(use_boot_reserve);
3347c478bd9Sstevel@tonic-gate 		ht->ht_hat = kas.a_hat;	/* so htable_free() works */
3357c478bd9Sstevel@tonic-gate 		ht->ht_flags = 0;	/* so x86pte_zero works */
3367c478bd9Sstevel@tonic-gate 		ptable_alloc(ht);
3377c478bd9Sstevel@tonic-gate 		if (ht->ht_pfn == PFN_INVALID)
3387c478bd9Sstevel@tonic-gate 			panic("ptable_alloc() failed");
3397c478bd9Sstevel@tonic-gate 
3407c478bd9Sstevel@tonic-gate 		x86pte_zero(ht, 0, mmu.ptes_per_table);
3417c478bd9Sstevel@tonic-gate 
3427c478bd9Sstevel@tonic-gate 		ht->ht_next = hat->hat_ht_cached;
3437c478bd9Sstevel@tonic-gate 		hat->hat_ht_cached = ht;
3447c478bd9Sstevel@tonic-gate 		--count;
3457c478bd9Sstevel@tonic-gate 	}
3467c478bd9Sstevel@tonic-gate }
3477c478bd9Sstevel@tonic-gate 
3487c478bd9Sstevel@tonic-gate /*
3497c478bd9Sstevel@tonic-gate  * Readjust the reserves after a thread finishes using them.
3507c478bd9Sstevel@tonic-gate  *
3517c478bd9Sstevel@tonic-gate  * The first time this is called post boot, we'll also clear out the
3527c478bd9Sstevel@tonic-gate  * extra boot htables that were put in the kernel hat's cache list.
3537c478bd9Sstevel@tonic-gate  */
3547c478bd9Sstevel@tonic-gate void
3557c478bd9Sstevel@tonic-gate htable_adjust_reserve()
3567c478bd9Sstevel@tonic-gate {
3577c478bd9Sstevel@tonic-gate 	static int first_time = 1;
3587c478bd9Sstevel@tonic-gate 	htable_t *ht;
3597c478bd9Sstevel@tonic-gate 
3607c478bd9Sstevel@tonic-gate 	ASSERT(curthread != hat_reserves_thread);
3617c478bd9Sstevel@tonic-gate 
3627c478bd9Sstevel@tonic-gate 	/*
3637c478bd9Sstevel@tonic-gate 	 * The first time this is called after we can steal, we free up the
3647c478bd9Sstevel@tonic-gate 	 * the kernel's cache htable list. It has lots of extra htable/page
3657c478bd9Sstevel@tonic-gate 	 * tables that were allocated for boot up.
3667c478bd9Sstevel@tonic-gate 	 */
3677c478bd9Sstevel@tonic-gate 	if (first_time) {
3687c478bd9Sstevel@tonic-gate 		first_time = 0;
3697c478bd9Sstevel@tonic-gate 		while ((ht = kas.a_hat->hat_ht_cached) != NULL) {
3707c478bd9Sstevel@tonic-gate 			kas.a_hat->hat_ht_cached = ht->ht_next;
3717c478bd9Sstevel@tonic-gate 			ASSERT(ht->ht_hat == kas.a_hat);
3727c478bd9Sstevel@tonic-gate 			ptable_free(ht);
3737c478bd9Sstevel@tonic-gate 			htable_put_reserve(ht);
3747c478bd9Sstevel@tonic-gate 		}
3757c478bd9Sstevel@tonic-gate 		return;
3767c478bd9Sstevel@tonic-gate 	}
3777c478bd9Sstevel@tonic-gate 
3787c478bd9Sstevel@tonic-gate 	/*
3797c478bd9Sstevel@tonic-gate 	 * Free any excess htables in the reserve list
3807c478bd9Sstevel@tonic-gate 	 */
3817c478bd9Sstevel@tonic-gate 	while (htable_reserve_cnt > htable_reserve_amount) {
3827c478bd9Sstevel@tonic-gate 		ht = htable_get_reserve();
3837c478bd9Sstevel@tonic-gate 		if (ht == NULL)
3847c478bd9Sstevel@tonic-gate 			return;
3857c478bd9Sstevel@tonic-gate 		ASSERT(ht->ht_pfn == PFN_INVALID);
3867c478bd9Sstevel@tonic-gate 		kmem_cache_free(htable_cache, ht);
3877c478bd9Sstevel@tonic-gate 	}
3887c478bd9Sstevel@tonic-gate }
3897c478bd9Sstevel@tonic-gate 
3907c478bd9Sstevel@tonic-gate 
3917c478bd9Sstevel@tonic-gate /*
3927c478bd9Sstevel@tonic-gate  * This routine steals htables from user processes for htable_alloc() or
3937c478bd9Sstevel@tonic-gate  * for htable_reap().
3947c478bd9Sstevel@tonic-gate  */
3957c478bd9Sstevel@tonic-gate static htable_t *
3967c478bd9Sstevel@tonic-gate htable_steal(uint_t cnt)
3977c478bd9Sstevel@tonic-gate {
3987c478bd9Sstevel@tonic-gate 	hat_t		*hat = kas.a_hat;	/* list starts with khat */
3997c478bd9Sstevel@tonic-gate 	htable_t	*list = NULL;
4007c478bd9Sstevel@tonic-gate 	htable_t	*ht;
4017c478bd9Sstevel@tonic-gate 	htable_t	*higher;
4027c478bd9Sstevel@tonic-gate 	uint_t		h;
4037c478bd9Sstevel@tonic-gate 	uint_t		e;
4047c478bd9Sstevel@tonic-gate 	uintptr_t	va;
4057c478bd9Sstevel@tonic-gate 	x86pte_t	pte;
4067c478bd9Sstevel@tonic-gate 	uint_t		stolen = 0;
4077c478bd9Sstevel@tonic-gate 	uint_t		pass;
4087c478bd9Sstevel@tonic-gate 	uint_t		threshhold;
4097c478bd9Sstevel@tonic-gate 
4107c478bd9Sstevel@tonic-gate 	/*
4117c478bd9Sstevel@tonic-gate 	 * Limit htable_steal_passes to something reasonable
4127c478bd9Sstevel@tonic-gate 	 */
4137c478bd9Sstevel@tonic-gate 	if (htable_steal_passes == 0)
4147c478bd9Sstevel@tonic-gate 		htable_steal_passes = 1;
4157c478bd9Sstevel@tonic-gate 	if (htable_steal_passes > mmu.ptes_per_table)
4167c478bd9Sstevel@tonic-gate 		htable_steal_passes = mmu.ptes_per_table;
4177c478bd9Sstevel@tonic-gate 
4187c478bd9Sstevel@tonic-gate 	/*
4197c478bd9Sstevel@tonic-gate 	 * Loop through all hats. The 1st pass takes cached htables that
4207c478bd9Sstevel@tonic-gate 	 * aren't in use. The later passes steal by removing mappings, too.
4217c478bd9Sstevel@tonic-gate 	 */
4227c478bd9Sstevel@tonic-gate 	atomic_add_32(&htable_dont_cache, 1);
4237c478bd9Sstevel@tonic-gate 	for (pass = 1; pass <= htable_steal_passes && stolen < cnt; ++pass) {
4247c478bd9Sstevel@tonic-gate 		threshhold = pass / htable_steal_passes;
4257c478bd9Sstevel@tonic-gate 		hat = kas.a_hat->hat_next;
4267c478bd9Sstevel@tonic-gate 		for (;;) {
4277c478bd9Sstevel@tonic-gate 
4287c478bd9Sstevel@tonic-gate 			/*
4297c478bd9Sstevel@tonic-gate 			 * move to next hat
4307c478bd9Sstevel@tonic-gate 			 */
4317c478bd9Sstevel@tonic-gate 			mutex_enter(&hat_list_lock);
4327c478bd9Sstevel@tonic-gate 			hat->hat_flags &= ~HAT_VICTIM;
4337c478bd9Sstevel@tonic-gate 			cv_broadcast(&hat_list_cv);
4347c478bd9Sstevel@tonic-gate 			do {
4357c478bd9Sstevel@tonic-gate 				hat = hat->hat_prev;
4367c478bd9Sstevel@tonic-gate 			} while (hat->hat_flags & HAT_VICTIM);
4377c478bd9Sstevel@tonic-gate 			if (stolen == cnt || hat == kas.a_hat->hat_next) {
4387c478bd9Sstevel@tonic-gate 				mutex_exit(&hat_list_lock);
4397c478bd9Sstevel@tonic-gate 				break;
4407c478bd9Sstevel@tonic-gate 			}
4417c478bd9Sstevel@tonic-gate 			hat->hat_flags |= HAT_VICTIM;
4427c478bd9Sstevel@tonic-gate 			mutex_exit(&hat_list_lock);
4437c478bd9Sstevel@tonic-gate 
4447c478bd9Sstevel@tonic-gate 			/*
4457c478bd9Sstevel@tonic-gate 			 * Take any htables from the hat's cached "free" list.
4467c478bd9Sstevel@tonic-gate 			 */
4477c478bd9Sstevel@tonic-gate 			hat_enter(hat);
4487c478bd9Sstevel@tonic-gate 			while ((ht = hat->hat_ht_cached) != NULL &&
4497c478bd9Sstevel@tonic-gate 			    stolen < cnt) {
4507c478bd9Sstevel@tonic-gate 				hat->hat_ht_cached = ht->ht_next;
4517c478bd9Sstevel@tonic-gate 				ht->ht_next = list;
4527c478bd9Sstevel@tonic-gate 				list = ht;
4537c478bd9Sstevel@tonic-gate 				++stolen;
4547c478bd9Sstevel@tonic-gate 			}
4557c478bd9Sstevel@tonic-gate 			hat_exit(hat);
4567c478bd9Sstevel@tonic-gate 
4577c478bd9Sstevel@tonic-gate 			/*
4587c478bd9Sstevel@tonic-gate 			 * Don't steal on first pass.
4597c478bd9Sstevel@tonic-gate 			 */
4607c478bd9Sstevel@tonic-gate 			if (pass == 1 || stolen == cnt)
4617c478bd9Sstevel@tonic-gate 				continue;
4627c478bd9Sstevel@tonic-gate 
4637c478bd9Sstevel@tonic-gate 			/*
4647c478bd9Sstevel@tonic-gate 			 * search the active htables for one to steal
4657c478bd9Sstevel@tonic-gate 			 */
4667c478bd9Sstevel@tonic-gate 			for (h = 0; h < hat->hat_num_hash && stolen < cnt;
4677c478bd9Sstevel@tonic-gate 			    ++h) {
4687c478bd9Sstevel@tonic-gate 				higher = NULL;
4697c478bd9Sstevel@tonic-gate 				HTABLE_ENTER(h);
4707c478bd9Sstevel@tonic-gate 				for (ht = hat->hat_ht_hash[h]; ht;
4717c478bd9Sstevel@tonic-gate 				    ht = ht->ht_next) {
4727c478bd9Sstevel@tonic-gate 
4737c478bd9Sstevel@tonic-gate 					/*
4747c478bd9Sstevel@tonic-gate 					 * Can we rule out reaping?
4757c478bd9Sstevel@tonic-gate 					 */
4767c478bd9Sstevel@tonic-gate 					if (ht->ht_busy != 0 ||
4777c478bd9Sstevel@tonic-gate 					    (ht->ht_flags & HTABLE_SHARED_PFN)||
4787c478bd9Sstevel@tonic-gate 					    ht->ht_level == TOP_LEVEL(hat) ||
4797c478bd9Sstevel@tonic-gate 					    (ht->ht_level >=
4807c478bd9Sstevel@tonic-gate 					    mmu.max_page_level &&
4817c478bd9Sstevel@tonic-gate 					    ht->ht_valid_cnt > 0) ||
4827c478bd9Sstevel@tonic-gate 					    ht->ht_valid_cnt < threshhold ||
4837c478bd9Sstevel@tonic-gate 					    ht->ht_lock_cnt != 0)
4847c478bd9Sstevel@tonic-gate 						continue;
4857c478bd9Sstevel@tonic-gate 
4867c478bd9Sstevel@tonic-gate 					/*
4877c478bd9Sstevel@tonic-gate 					 * Increment busy so the htable can't
4887c478bd9Sstevel@tonic-gate 					 * disappear. We drop the htable mutex
4897c478bd9Sstevel@tonic-gate 					 * to avoid deadlocks with
4907c478bd9Sstevel@tonic-gate 					 * hat_pageunload() and the hment mutex
4917c478bd9Sstevel@tonic-gate 					 * while we call hat_pte_unmap()
4927c478bd9Sstevel@tonic-gate 					 */
4937c478bd9Sstevel@tonic-gate 					++ht->ht_busy;
4947c478bd9Sstevel@tonic-gate 					HTABLE_EXIT(h);
4957c478bd9Sstevel@tonic-gate 
4967c478bd9Sstevel@tonic-gate 					/*
4977c478bd9Sstevel@tonic-gate 					 * Try stealing.
4987c478bd9Sstevel@tonic-gate 					 * - unload and invalidate all PTEs
4997c478bd9Sstevel@tonic-gate 					 */
5007c478bd9Sstevel@tonic-gate 					for (e = 0, va = ht->ht_vaddr;
5017c478bd9Sstevel@tonic-gate 					    e < ht->ht_num_ptes &&
5027c478bd9Sstevel@tonic-gate 					    ht->ht_valid_cnt > 0 &&
5037c478bd9Sstevel@tonic-gate 					    ht->ht_busy == 1 &&
5047c478bd9Sstevel@tonic-gate 					    ht->ht_lock_cnt == 0;
5057c478bd9Sstevel@tonic-gate 					    ++e, va += MMU_PAGESIZE) {
5067c478bd9Sstevel@tonic-gate 						pte = x86pte_get(ht, e);
5077c478bd9Sstevel@tonic-gate 						if (!PTE_ISVALID(pte))
5087c478bd9Sstevel@tonic-gate 							continue;
5097c478bd9Sstevel@tonic-gate 						hat_pte_unmap(ht, e,
5107c478bd9Sstevel@tonic-gate 						    HAT_UNLOAD, pte, NULL);
5117c478bd9Sstevel@tonic-gate 					}
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 					/*
5147c478bd9Sstevel@tonic-gate 					 * Reacquire htable lock. If we didn't
5157c478bd9Sstevel@tonic-gate 					 * remove all mappings in the table,
5167c478bd9Sstevel@tonic-gate 					 * or another thread added a new mapping
5177c478bd9Sstevel@tonic-gate 					 * behind us, give up on this table.
5187c478bd9Sstevel@tonic-gate 					 */
5197c478bd9Sstevel@tonic-gate 					HTABLE_ENTER(h);
5207c478bd9Sstevel@tonic-gate 					if (ht->ht_busy != 1 ||
5217c478bd9Sstevel@tonic-gate 					    ht->ht_valid_cnt != 0 ||
5227c478bd9Sstevel@tonic-gate 					    ht->ht_lock_cnt != 0) {
5237c478bd9Sstevel@tonic-gate 						--ht->ht_busy;
5247c478bd9Sstevel@tonic-gate 						continue;
5257c478bd9Sstevel@tonic-gate 					}
5267c478bd9Sstevel@tonic-gate 
5277c478bd9Sstevel@tonic-gate 					/*
5287c478bd9Sstevel@tonic-gate 					 * Steal it and unlink the page table.
5297c478bd9Sstevel@tonic-gate 					 */
5307c478bd9Sstevel@tonic-gate 					higher = ht->ht_parent;
5317c478bd9Sstevel@tonic-gate 					unlink_ptp(higher, ht, ht->ht_vaddr);
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate 					/*
5347c478bd9Sstevel@tonic-gate 					 * remove from the hash list
5357c478bd9Sstevel@tonic-gate 					 */
5367c478bd9Sstevel@tonic-gate 					if (ht->ht_next)
5377c478bd9Sstevel@tonic-gate 						ht->ht_next->ht_prev =
5387c478bd9Sstevel@tonic-gate 						    ht->ht_prev;
5397c478bd9Sstevel@tonic-gate 
5407c478bd9Sstevel@tonic-gate 					if (ht->ht_prev) {
5417c478bd9Sstevel@tonic-gate 						ht->ht_prev->ht_next =
5427c478bd9Sstevel@tonic-gate 						    ht->ht_next;
5437c478bd9Sstevel@tonic-gate 					} else {
5447c478bd9Sstevel@tonic-gate 						ASSERT(hat->hat_ht_hash[h] ==
5457c478bd9Sstevel@tonic-gate 						    ht);
5467c478bd9Sstevel@tonic-gate 						hat->hat_ht_hash[h] =
5477c478bd9Sstevel@tonic-gate 						    ht->ht_next;
5487c478bd9Sstevel@tonic-gate 					}
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate 					/*
5517c478bd9Sstevel@tonic-gate 					 * Break to outer loop to release the
5527c478bd9Sstevel@tonic-gate 					 * higher (ht_parent) pagtable. This
5537c478bd9Sstevel@tonic-gate 					 * spreads out the pain caused by
5547c478bd9Sstevel@tonic-gate 					 * pagefaults.
5557c478bd9Sstevel@tonic-gate 					 */
5567c478bd9Sstevel@tonic-gate 					ht->ht_next = list;
5577c478bd9Sstevel@tonic-gate 					list = ht;
5587c478bd9Sstevel@tonic-gate 					++stolen;
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate 					/*
5617c478bd9Sstevel@tonic-gate 					 * If this is the last steal, then move
5627c478bd9Sstevel@tonic-gate 					 * the hat list head, so that we start
5637c478bd9Sstevel@tonic-gate 					 * here next time.
5647c478bd9Sstevel@tonic-gate 					 */
5657c478bd9Sstevel@tonic-gate 					if (stolen == cnt) {
5667c478bd9Sstevel@tonic-gate 						mutex_enter(&hat_list_lock);
5677c478bd9Sstevel@tonic-gate 						kas.a_hat->hat_next = hat;
5687c478bd9Sstevel@tonic-gate 						mutex_exit(&hat_list_lock);
5697c478bd9Sstevel@tonic-gate 					}
5707c478bd9Sstevel@tonic-gate 					break;
5717c478bd9Sstevel@tonic-gate 				}
5727c478bd9Sstevel@tonic-gate 				HTABLE_EXIT(h);
5737c478bd9Sstevel@tonic-gate 				if (higher != NULL)
5747c478bd9Sstevel@tonic-gate 					htable_release(higher);
5757c478bd9Sstevel@tonic-gate 			}
5767c478bd9Sstevel@tonic-gate 		}
5777c478bd9Sstevel@tonic-gate 	}
5787c478bd9Sstevel@tonic-gate 	atomic_add_32(&htable_dont_cache, -1);
5797c478bd9Sstevel@tonic-gate 	return (list);
5807c478bd9Sstevel@tonic-gate }
5817c478bd9Sstevel@tonic-gate 
5827c478bd9Sstevel@tonic-gate 
5837c478bd9Sstevel@tonic-gate /*
5847c478bd9Sstevel@tonic-gate  * This is invoked from kmem when the system is low on memory.  We try
5857c478bd9Sstevel@tonic-gate  * to free hments, htables, and ptables to improve the memory situation.
5867c478bd9Sstevel@tonic-gate  */
5877c478bd9Sstevel@tonic-gate /*ARGSUSED*/
5887c478bd9Sstevel@tonic-gate static void
5897c478bd9Sstevel@tonic-gate htable_reap(void *handle)
5907c478bd9Sstevel@tonic-gate {
5917c478bd9Sstevel@tonic-gate 	uint_t		reap_cnt;
5927c478bd9Sstevel@tonic-gate 	htable_t	*list;
5937c478bd9Sstevel@tonic-gate 	htable_t	*ht;
5947c478bd9Sstevel@tonic-gate 
5957c478bd9Sstevel@tonic-gate 	HATSTAT_INC(hs_reap_attempts);
5967c478bd9Sstevel@tonic-gate 	if (!can_steal_post_boot)
5977c478bd9Sstevel@tonic-gate 		return;
5987c478bd9Sstevel@tonic-gate 
5997c478bd9Sstevel@tonic-gate 	/*
6007c478bd9Sstevel@tonic-gate 	 * Try to reap 5% of the page tables bounded by a maximum of
6017c478bd9Sstevel@tonic-gate 	 * 5% of physmem and a minimum of 10.
6027c478bd9Sstevel@tonic-gate 	 */
6037c478bd9Sstevel@tonic-gate 	reap_cnt = MIN(MAX(physmem / 20, active_ptables / 20), 10);
6047c478bd9Sstevel@tonic-gate 
6057c478bd9Sstevel@tonic-gate 	/*
6067c478bd9Sstevel@tonic-gate 	 * Let htable_steal() do the work, we just call htable_free()
6077c478bd9Sstevel@tonic-gate 	 */
6087c478bd9Sstevel@tonic-gate 	list = htable_steal(reap_cnt);
6097c478bd9Sstevel@tonic-gate 	while ((ht = list) != NULL) {
6107c478bd9Sstevel@tonic-gate 		list = ht->ht_next;
6117c478bd9Sstevel@tonic-gate 		HATSTAT_INC(hs_reaped);
6127c478bd9Sstevel@tonic-gate 		htable_free(ht);
6137c478bd9Sstevel@tonic-gate 	}
6147c478bd9Sstevel@tonic-gate 
6157c478bd9Sstevel@tonic-gate 	/*
6167c478bd9Sstevel@tonic-gate 	 * Free up excess reserves
6177c478bd9Sstevel@tonic-gate 	 */
6187c478bd9Sstevel@tonic-gate 	htable_adjust_reserve();
6197c478bd9Sstevel@tonic-gate 	hment_adjust_reserve();
6207c478bd9Sstevel@tonic-gate }
6217c478bd9Sstevel@tonic-gate 
6227c478bd9Sstevel@tonic-gate /*
6237c478bd9Sstevel@tonic-gate  * allocate an htable, stealing one or using the reserve if necessary
6247c478bd9Sstevel@tonic-gate  */
6257c478bd9Sstevel@tonic-gate static htable_t *
6267c478bd9Sstevel@tonic-gate htable_alloc(
6277c478bd9Sstevel@tonic-gate 	hat_t		*hat,
6287c478bd9Sstevel@tonic-gate 	uintptr_t	vaddr,
6297c478bd9Sstevel@tonic-gate 	level_t		level,
6307c478bd9Sstevel@tonic-gate 	htable_t	*shared)
6317c478bd9Sstevel@tonic-gate {
6327c478bd9Sstevel@tonic-gate 	htable_t	*ht = NULL;
6337c478bd9Sstevel@tonic-gate 	uint_t		is_vlp;
6347c478bd9Sstevel@tonic-gate 	uint_t		is_bare = 0;
6357c478bd9Sstevel@tonic-gate 	uint_t		need_to_zero = 1;
6367c478bd9Sstevel@tonic-gate 	int		kmflags = (can_steal_post_boot ? KM_NOSLEEP : KM_SLEEP);
6377c478bd9Sstevel@tonic-gate 
6387c478bd9Sstevel@tonic-gate 	if (level < 0 || level > TOP_LEVEL(hat))
6397c478bd9Sstevel@tonic-gate 		panic("htable_alloc(): level %d out of range\n", level);
6407c478bd9Sstevel@tonic-gate 
6417c478bd9Sstevel@tonic-gate 	is_vlp = (hat->hat_flags & HAT_VLP) && level == VLP_LEVEL;
6427c478bd9Sstevel@tonic-gate 	if (is_vlp || shared != NULL)
6437c478bd9Sstevel@tonic-gate 		is_bare = 1;
6447c478bd9Sstevel@tonic-gate 
6457c478bd9Sstevel@tonic-gate 	/*
6467c478bd9Sstevel@tonic-gate 	 * First reuse a cached htable from the hat_ht_cached field, this
6477c478bd9Sstevel@tonic-gate 	 * avoids unnecessary trips through kmem/page allocators. This is also
6487c478bd9Sstevel@tonic-gate 	 * what happens during use_boot_reserve.
6497c478bd9Sstevel@tonic-gate 	 */
6507c478bd9Sstevel@tonic-gate 	if (hat->hat_ht_cached != NULL && !is_bare) {
6517c478bd9Sstevel@tonic-gate 		hat_enter(hat);
6527c478bd9Sstevel@tonic-gate 		ht = hat->hat_ht_cached;
6537c478bd9Sstevel@tonic-gate 		if (ht != NULL) {
6547c478bd9Sstevel@tonic-gate 			hat->hat_ht_cached = ht->ht_next;
6557c478bd9Sstevel@tonic-gate 			need_to_zero = 0;
6567c478bd9Sstevel@tonic-gate 			/* XX64 ASSERT() they're all zero somehow */
6577c478bd9Sstevel@tonic-gate 			ASSERT(ht->ht_pfn != PFN_INVALID);
6587c478bd9Sstevel@tonic-gate 		}
6597c478bd9Sstevel@tonic-gate 		hat_exit(hat);
6607c478bd9Sstevel@tonic-gate 	}
6617c478bd9Sstevel@tonic-gate 
6627c478bd9Sstevel@tonic-gate 	if (ht == NULL) {
6637c478bd9Sstevel@tonic-gate 		ASSERT(!use_boot_reserve);
6647c478bd9Sstevel@tonic-gate 		/*
6657c478bd9Sstevel@tonic-gate 		 * When allocating for hat_memload_arena, we use the reserve.
6667c478bd9Sstevel@tonic-gate 		 * Also use reserves if we are in a panic().
6677c478bd9Sstevel@tonic-gate 		 */
6687c478bd9Sstevel@tonic-gate 		if (curthread == hat_reserves_thread || panicstr != NULL) {
6697c478bd9Sstevel@tonic-gate 			ASSERT(panicstr != NULL || !is_bare);
6707c478bd9Sstevel@tonic-gate 			ASSERT(panicstr != NULL ||
6717c478bd9Sstevel@tonic-gate 			    curthread == hat_reserves_thread);
6727c478bd9Sstevel@tonic-gate 			ht = htable_get_reserve();
6737c478bd9Sstevel@tonic-gate 		} else {
6747c478bd9Sstevel@tonic-gate 			/*
6757c478bd9Sstevel@tonic-gate 			 * Donate successful htable allocations to the reserve.
6767c478bd9Sstevel@tonic-gate 			 */
6777c478bd9Sstevel@tonic-gate 			for (;;) {
6787c478bd9Sstevel@tonic-gate 				ASSERT(curthread != hat_reserves_thread);
6797c478bd9Sstevel@tonic-gate 				ht = kmem_cache_alloc(htable_cache, kmflags);
6807c478bd9Sstevel@tonic-gate 				if (ht == NULL)
6817c478bd9Sstevel@tonic-gate 					break;
6827c478bd9Sstevel@tonic-gate 				ht->ht_pfn = PFN_INVALID;
6837c478bd9Sstevel@tonic-gate 				if (curthread == hat_reserves_thread ||
6847c478bd9Sstevel@tonic-gate 				    panicstr != NULL ||
6857c478bd9Sstevel@tonic-gate 				    htable_reserve_cnt >= htable_reserve_amount)
6867c478bd9Sstevel@tonic-gate 					break;
6877c478bd9Sstevel@tonic-gate 				htable_put_reserve(ht);
6887c478bd9Sstevel@tonic-gate 			}
6897c478bd9Sstevel@tonic-gate 		}
6907c478bd9Sstevel@tonic-gate 
6917c478bd9Sstevel@tonic-gate 		/*
6927c478bd9Sstevel@tonic-gate 		 * allocate a page for the hardware page table if needed
6937c478bd9Sstevel@tonic-gate 		 */
6947c478bd9Sstevel@tonic-gate 		if (ht != NULL && !is_bare) {
6957c478bd9Sstevel@tonic-gate 			ptable_alloc(ht);
6967c478bd9Sstevel@tonic-gate 			if (ht->ht_pfn == PFN_INVALID) {
6977c478bd9Sstevel@tonic-gate 				kmem_cache_free(htable_cache, ht);
6987c478bd9Sstevel@tonic-gate 				ht = NULL;
6997c478bd9Sstevel@tonic-gate 			}
7007c478bd9Sstevel@tonic-gate 		}
7017c478bd9Sstevel@tonic-gate 	}
7027c478bd9Sstevel@tonic-gate 
7037c478bd9Sstevel@tonic-gate 	/*
7047c478bd9Sstevel@tonic-gate 	 * if allocations failed resort to stealing
7057c478bd9Sstevel@tonic-gate 	 */
7067c478bd9Sstevel@tonic-gate 	if (ht == NULL && can_steal_post_boot) {
7077c478bd9Sstevel@tonic-gate 		ht = htable_steal(1);
7087c478bd9Sstevel@tonic-gate 		HATSTAT_INC(hs_steals);
7097c478bd9Sstevel@tonic-gate 
7107c478bd9Sstevel@tonic-gate 		/*
7117c478bd9Sstevel@tonic-gate 		 * if we had to steal for a bare htable, release the
7127c478bd9Sstevel@tonic-gate 		 * page for the pagetable
7137c478bd9Sstevel@tonic-gate 		 */
7147c478bd9Sstevel@tonic-gate 		if (ht != NULL && is_bare)
7157c478bd9Sstevel@tonic-gate 			ptable_free(ht);
7167c478bd9Sstevel@tonic-gate 	}
7177c478bd9Sstevel@tonic-gate 
7187c478bd9Sstevel@tonic-gate 	/*
7197c478bd9Sstevel@tonic-gate 	 * All attempts to allocate or steal failed...
7207c478bd9Sstevel@tonic-gate 	 */
7217c478bd9Sstevel@tonic-gate 	if (ht == NULL)
7227c478bd9Sstevel@tonic-gate 		panic("htable_alloc(): couldn't steal\n");
7237c478bd9Sstevel@tonic-gate 
7247c478bd9Sstevel@tonic-gate 	/*
7257c478bd9Sstevel@tonic-gate 	 * Shared page tables have all entries locked and entries may not
7267c478bd9Sstevel@tonic-gate 	 * be added or deleted.
7277c478bd9Sstevel@tonic-gate 	 */
7287c478bd9Sstevel@tonic-gate 	ht->ht_flags = 0;
7297c478bd9Sstevel@tonic-gate 	if (shared != NULL) {
7307c478bd9Sstevel@tonic-gate 		ASSERT(level == 0);
7317c478bd9Sstevel@tonic-gate 		ASSERT(shared->ht_valid_cnt > 0);
7327c478bd9Sstevel@tonic-gate 		ht->ht_flags |= HTABLE_SHARED_PFN;
7337c478bd9Sstevel@tonic-gate 		ht->ht_pfn = shared->ht_pfn;
7347c478bd9Sstevel@tonic-gate 		ht->ht_lock_cnt = 0;
7357c478bd9Sstevel@tonic-gate 		ht->ht_valid_cnt = 0;		/* updated in hat_share() */
7367c478bd9Sstevel@tonic-gate 		ht->ht_shares = shared;
7377c478bd9Sstevel@tonic-gate 		need_to_zero = 0;
7387c478bd9Sstevel@tonic-gate 	} else {
7397c478bd9Sstevel@tonic-gate 		ht->ht_shares = NULL;
7407c478bd9Sstevel@tonic-gate 		ht->ht_lock_cnt = 0;
7417c478bd9Sstevel@tonic-gate 		ht->ht_valid_cnt = 0;
7427c478bd9Sstevel@tonic-gate 	}
7437c478bd9Sstevel@tonic-gate 
7447c478bd9Sstevel@tonic-gate 	/*
7457c478bd9Sstevel@tonic-gate 	 * setup flags, etc. for VLP htables
7467c478bd9Sstevel@tonic-gate 	 */
7477c478bd9Sstevel@tonic-gate 	if (is_vlp) {
7487c478bd9Sstevel@tonic-gate 		ht->ht_flags |= HTABLE_VLP;
7497c478bd9Sstevel@tonic-gate 		ht->ht_num_ptes = VLP_NUM_PTES;
7507c478bd9Sstevel@tonic-gate 		ASSERT(ht->ht_pfn == PFN_INVALID);
7517c478bd9Sstevel@tonic-gate 		need_to_zero = 0;
7527c478bd9Sstevel@tonic-gate 	} else if (level == mmu.max_level) {
7537c478bd9Sstevel@tonic-gate 		ht->ht_num_ptes = mmu.top_level_count;
7547c478bd9Sstevel@tonic-gate 	} else {
7557c478bd9Sstevel@tonic-gate 		ht->ht_num_ptes = mmu.ptes_per_table;
7567c478bd9Sstevel@tonic-gate 	}
7577c478bd9Sstevel@tonic-gate 
7587c478bd9Sstevel@tonic-gate 	/*
7597c478bd9Sstevel@tonic-gate 	 * fill in the htable
7607c478bd9Sstevel@tonic-gate 	 */
7617c478bd9Sstevel@tonic-gate 	ht->ht_hat = hat;
7627c478bd9Sstevel@tonic-gate 	ht->ht_parent = NULL;
7637c478bd9Sstevel@tonic-gate 	ht->ht_vaddr = vaddr;
7647c478bd9Sstevel@tonic-gate 	ht->ht_level = level;
7657c478bd9Sstevel@tonic-gate 	ht->ht_busy = 1;
7667c478bd9Sstevel@tonic-gate 	ht->ht_next = NULL;
7677c478bd9Sstevel@tonic-gate 	ht->ht_prev = NULL;
7687c478bd9Sstevel@tonic-gate 
7697c478bd9Sstevel@tonic-gate 	/*
7707c478bd9Sstevel@tonic-gate 	 * Zero out any freshly allocated page table
7717c478bd9Sstevel@tonic-gate 	 */
7727c478bd9Sstevel@tonic-gate 	if (need_to_zero)
7737c478bd9Sstevel@tonic-gate 		x86pte_zero(ht, 0, mmu.ptes_per_table);
7747c478bd9Sstevel@tonic-gate 	return (ht);
7757c478bd9Sstevel@tonic-gate }
7767c478bd9Sstevel@tonic-gate 
7777c478bd9Sstevel@tonic-gate /*
7787c478bd9Sstevel@tonic-gate  * Free up an htable, either to a hat's cached list, the reserves or
7797c478bd9Sstevel@tonic-gate  * back to kmem.
7807c478bd9Sstevel@tonic-gate  */
7817c478bd9Sstevel@tonic-gate static void
7827c478bd9Sstevel@tonic-gate htable_free(htable_t *ht)
7837c478bd9Sstevel@tonic-gate {
7847c478bd9Sstevel@tonic-gate 	hat_t *hat = ht->ht_hat;
7857c478bd9Sstevel@tonic-gate 
7867c478bd9Sstevel@tonic-gate 	/*
7877c478bd9Sstevel@tonic-gate 	 * If the process isn't exiting, cache the free htable in the hat
7887c478bd9Sstevel@tonic-gate 	 * structure. We always do this for the boot reserve. We don't
7897c478bd9Sstevel@tonic-gate 	 * do this if the hat is exiting or we are stealing/reaping htables.
7907c478bd9Sstevel@tonic-gate 	 */
7917c478bd9Sstevel@tonic-gate 	if (hat != NULL &&
7927c478bd9Sstevel@tonic-gate 	    !(ht->ht_flags & HTABLE_SHARED_PFN) &&
7937c478bd9Sstevel@tonic-gate 	    (use_boot_reserve ||
7947c478bd9Sstevel@tonic-gate 	    (!(hat->hat_flags & HAT_FREEING) && !htable_dont_cache))) {
7957c478bd9Sstevel@tonic-gate 		ASSERT((ht->ht_flags & HTABLE_VLP) == 0);
7967c478bd9Sstevel@tonic-gate 		ASSERT(ht->ht_pfn != PFN_INVALID);
7977c478bd9Sstevel@tonic-gate 		hat_enter(hat);
7987c478bd9Sstevel@tonic-gate 		ht->ht_next = hat->hat_ht_cached;
7997c478bd9Sstevel@tonic-gate 		hat->hat_ht_cached = ht;
8007c478bd9Sstevel@tonic-gate 		hat_exit(hat);
8017c478bd9Sstevel@tonic-gate 		return;
8027c478bd9Sstevel@tonic-gate 	}
8037c478bd9Sstevel@tonic-gate 
8047c478bd9Sstevel@tonic-gate 	/*
8057c478bd9Sstevel@tonic-gate 	 * If we have a hardware page table, free it.
8067c478bd9Sstevel@tonic-gate 	 * We don't free page tables that are accessed by sharing someone else.
8077c478bd9Sstevel@tonic-gate 	 */
8087c478bd9Sstevel@tonic-gate 	if (ht->ht_flags & HTABLE_SHARED_PFN) {
8097c478bd9Sstevel@tonic-gate 		ASSERT(ht->ht_pfn != PFN_INVALID);
8107c478bd9Sstevel@tonic-gate 		ht->ht_pfn = PFN_INVALID;
8117c478bd9Sstevel@tonic-gate 	} else if (!(ht->ht_flags & HTABLE_VLP)) {
8127c478bd9Sstevel@tonic-gate 		ptable_free(ht);
8137c478bd9Sstevel@tonic-gate 	}
8147c478bd9Sstevel@tonic-gate 
8157c478bd9Sstevel@tonic-gate 	/*
8167c478bd9Sstevel@tonic-gate 	 * If we are the thread using the reserves, put free htables
8177c478bd9Sstevel@tonic-gate 	 * into reserves.
8187c478bd9Sstevel@tonic-gate 	 */
8197c478bd9Sstevel@tonic-gate 	if (curthread == hat_reserves_thread ||
8207c478bd9Sstevel@tonic-gate 	    htable_reserve_cnt < htable_reserve_amount)
8217c478bd9Sstevel@tonic-gate 		htable_put_reserve(ht);
8227c478bd9Sstevel@tonic-gate 	else
8237c478bd9Sstevel@tonic-gate 		kmem_cache_free(htable_cache, ht);
8247c478bd9Sstevel@tonic-gate }
8257c478bd9Sstevel@tonic-gate 
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate /*
8287c478bd9Sstevel@tonic-gate  * This is called when a hat is being destroyed or swapped out. We reap all
8297c478bd9Sstevel@tonic-gate  * the remaining htables in the hat cache. If destroying all left over
8307c478bd9Sstevel@tonic-gate  * htables are also destroyed.
8317c478bd9Sstevel@tonic-gate  *
8327c478bd9Sstevel@tonic-gate  * We also don't need to invalidate any of the PTPs nor do any demapping.
8337c478bd9Sstevel@tonic-gate  */
8347c478bd9Sstevel@tonic-gate void
8357c478bd9Sstevel@tonic-gate htable_purge_hat(hat_t *hat)
8367c478bd9Sstevel@tonic-gate {
8377c478bd9Sstevel@tonic-gate 	htable_t *ht;
8387c478bd9Sstevel@tonic-gate 	int h;
8397c478bd9Sstevel@tonic-gate 
8407c478bd9Sstevel@tonic-gate 	/*
8417c478bd9Sstevel@tonic-gate 	 * Purge the htable cache if just reaping.
8427c478bd9Sstevel@tonic-gate 	 */
8437c478bd9Sstevel@tonic-gate 	if (!(hat->hat_flags & HAT_FREEING)) {
8447c478bd9Sstevel@tonic-gate 		atomic_add_32(&htable_dont_cache, 1);
8457c478bd9Sstevel@tonic-gate 		for (;;) {
8467c478bd9Sstevel@tonic-gate 			hat_enter(hat);
8477c478bd9Sstevel@tonic-gate 			ht = hat->hat_ht_cached;
8487c478bd9Sstevel@tonic-gate 			if (ht == NULL) {
8497c478bd9Sstevel@tonic-gate 				hat_exit(hat);
8507c478bd9Sstevel@tonic-gate 				break;
8517c478bd9Sstevel@tonic-gate 			}
8527c478bd9Sstevel@tonic-gate 			hat->hat_ht_cached = ht->ht_next;
8537c478bd9Sstevel@tonic-gate 			hat_exit(hat);
8547c478bd9Sstevel@tonic-gate 			htable_free(ht);
8557c478bd9Sstevel@tonic-gate 		}
8567c478bd9Sstevel@tonic-gate 		atomic_add_32(&htable_dont_cache, -1);
8577c478bd9Sstevel@tonic-gate 		return;
8587c478bd9Sstevel@tonic-gate 	}
8597c478bd9Sstevel@tonic-gate 
8607c478bd9Sstevel@tonic-gate 	/*
8617c478bd9Sstevel@tonic-gate 	 * if freeing, no locking is needed
8627c478bd9Sstevel@tonic-gate 	 */
8637c478bd9Sstevel@tonic-gate 	while ((ht = hat->hat_ht_cached) != NULL) {
8647c478bd9Sstevel@tonic-gate 		hat->hat_ht_cached = ht->ht_next;
8657c478bd9Sstevel@tonic-gate 		htable_free(ht);
8667c478bd9Sstevel@tonic-gate 	}
8677c478bd9Sstevel@tonic-gate 
8687c478bd9Sstevel@tonic-gate 	/*
8697c478bd9Sstevel@tonic-gate 	 * walk thru the htable hash table and free all the htables in it.
8707c478bd9Sstevel@tonic-gate 	 */
8717c478bd9Sstevel@tonic-gate 	for (h = 0; h < hat->hat_num_hash; ++h) {
8727c478bd9Sstevel@tonic-gate 		while ((ht = hat->hat_ht_hash[h]) != NULL) {
8737c478bd9Sstevel@tonic-gate 			if (ht->ht_next)
8747c478bd9Sstevel@tonic-gate 				ht->ht_next->ht_prev = ht->ht_prev;
8757c478bd9Sstevel@tonic-gate 
8767c478bd9Sstevel@tonic-gate 			if (ht->ht_prev) {
8777c478bd9Sstevel@tonic-gate 				ht->ht_prev->ht_next = ht->ht_next;
8787c478bd9Sstevel@tonic-gate 			} else {
8797c478bd9Sstevel@tonic-gate 				ASSERT(hat->hat_ht_hash[h] == ht);
8807c478bd9Sstevel@tonic-gate 				hat->hat_ht_hash[h] = ht->ht_next;
8817c478bd9Sstevel@tonic-gate 			}
8827c478bd9Sstevel@tonic-gate 			htable_free(ht);
8837c478bd9Sstevel@tonic-gate 		}
8847c478bd9Sstevel@tonic-gate 	}
8857c478bd9Sstevel@tonic-gate }
8867c478bd9Sstevel@tonic-gate 
8877c478bd9Sstevel@tonic-gate /*
8887c478bd9Sstevel@tonic-gate  * Unlink an entry for a table at vaddr and level out of the existing table
8897c478bd9Sstevel@tonic-gate  * one level higher. We are always holding the HASH_ENTER() when doing this.
8907c478bd9Sstevel@tonic-gate  */
8917c478bd9Sstevel@tonic-gate static void
8927c478bd9Sstevel@tonic-gate unlink_ptp(htable_t *higher, htable_t *old, uintptr_t vaddr)
8937c478bd9Sstevel@tonic-gate {
8947c478bd9Sstevel@tonic-gate 	uint_t		entry = htable_va2entry(vaddr, higher);
8957c478bd9Sstevel@tonic-gate 	x86pte_t	expect = MAKEPTP(old->ht_pfn, old->ht_level);
8967c478bd9Sstevel@tonic-gate 	x86pte_t	found;
8977c478bd9Sstevel@tonic-gate 
8987c478bd9Sstevel@tonic-gate 	ASSERT(higher->ht_busy > 0);
8997c478bd9Sstevel@tonic-gate 	ASSERT(higher->ht_valid_cnt > 0);
9007c478bd9Sstevel@tonic-gate 	ASSERT(old->ht_valid_cnt == 0);
9017c478bd9Sstevel@tonic-gate 	found = x86pte_cas(higher, entry, expect, 0);
9027c478bd9Sstevel@tonic-gate 	if (found != expect)
9037c478bd9Sstevel@tonic-gate 		panic("Bad PTP found=" FMT_PTE ", expected=" FMT_PTE,
9047c478bd9Sstevel@tonic-gate 		    found, expect);
9057c478bd9Sstevel@tonic-gate 	HTABLE_DEC(higher->ht_valid_cnt);
9067c478bd9Sstevel@tonic-gate }
9077c478bd9Sstevel@tonic-gate 
9087c478bd9Sstevel@tonic-gate /*
9097c478bd9Sstevel@tonic-gate  * Link an entry for a new table at vaddr and level into the existing table
9107c478bd9Sstevel@tonic-gate  * one level higher. We are always holding the HASH_ENTER() when doing this.
9117c478bd9Sstevel@tonic-gate  */
9127c478bd9Sstevel@tonic-gate static void
9137c478bd9Sstevel@tonic-gate link_ptp(htable_t *higher, htable_t *new, uintptr_t vaddr)
9147c478bd9Sstevel@tonic-gate {
9157c478bd9Sstevel@tonic-gate 	uint_t		entry = htable_va2entry(vaddr, higher);
9167c478bd9Sstevel@tonic-gate 	x86pte_t	newptp = MAKEPTP(new->ht_pfn, new->ht_level);
9177c478bd9Sstevel@tonic-gate 	x86pte_t	found;
9187c478bd9Sstevel@tonic-gate 
9197c478bd9Sstevel@tonic-gate 	ASSERT(higher->ht_busy > 0);
9207c478bd9Sstevel@tonic-gate 
9217c478bd9Sstevel@tonic-gate 	ASSERT(new->ht_level != mmu.max_level);
9227c478bd9Sstevel@tonic-gate 
9237c478bd9Sstevel@tonic-gate 	HTABLE_INC(higher->ht_valid_cnt);
9247c478bd9Sstevel@tonic-gate 
9257c478bd9Sstevel@tonic-gate 	found = x86pte_cas(higher, entry, 0, newptp);
926*b4b46911Skchow 	if ((found & ~PT_REF) != 0)
9277c478bd9Sstevel@tonic-gate 		panic("HAT: ptp not 0, found=" FMT_PTE, found);
9287c478bd9Sstevel@tonic-gate }
9297c478bd9Sstevel@tonic-gate 
9307c478bd9Sstevel@tonic-gate /*
9317c478bd9Sstevel@tonic-gate  * Release of an htable.
9327c478bd9Sstevel@tonic-gate  *
9337c478bd9Sstevel@tonic-gate  * During process exit, some empty page tables are not unlinked - hat_free_end()
9347c478bd9Sstevel@tonic-gate  * cleans them up. Upper level pagetable (mmu.max_page_level and higher) are
9357c478bd9Sstevel@tonic-gate  * only released during hat_free_end() or by htable_steal(). We always
9367c478bd9Sstevel@tonic-gate  * release SHARED page tables.
9377c478bd9Sstevel@tonic-gate  */
9387c478bd9Sstevel@tonic-gate void
9397c478bd9Sstevel@tonic-gate htable_release(htable_t *ht)
9407c478bd9Sstevel@tonic-gate {
9417c478bd9Sstevel@tonic-gate 	uint_t		hashval;
9427c478bd9Sstevel@tonic-gate 	htable_t	*shared;
9437c478bd9Sstevel@tonic-gate 	htable_t	*higher;
9447c478bd9Sstevel@tonic-gate 	hat_t		*hat;
9457c478bd9Sstevel@tonic-gate 	uintptr_t	va;
9467c478bd9Sstevel@tonic-gate 	level_t		level;
9477c478bd9Sstevel@tonic-gate 
9487c478bd9Sstevel@tonic-gate 	while (ht != NULL) {
9497c478bd9Sstevel@tonic-gate 		shared = NULL;
9507c478bd9Sstevel@tonic-gate 		for (;;) {
9517c478bd9Sstevel@tonic-gate 			hat = ht->ht_hat;
9527c478bd9Sstevel@tonic-gate 			va = ht->ht_vaddr;
9537c478bd9Sstevel@tonic-gate 			level = ht->ht_level;
9547c478bd9Sstevel@tonic-gate 			hashval = HTABLE_HASH(hat, va, level);
9557c478bd9Sstevel@tonic-gate 
9567c478bd9Sstevel@tonic-gate 			/*
9577c478bd9Sstevel@tonic-gate 			 * The common case is that this isn't the last use of
9587c478bd9Sstevel@tonic-gate 			 * an htable so we don't want to free the htable.
9597c478bd9Sstevel@tonic-gate 			 */
9607c478bd9Sstevel@tonic-gate 			HTABLE_ENTER(hashval);
9617c478bd9Sstevel@tonic-gate 			ASSERT(ht->ht_lock_cnt == 0 || ht->ht_valid_cnt > 0);
9627c478bd9Sstevel@tonic-gate 			ASSERT(ht->ht_valid_cnt >= 0);
9637c478bd9Sstevel@tonic-gate 			ASSERT(ht->ht_busy > 0);
9647c478bd9Sstevel@tonic-gate 			if (ht->ht_valid_cnt > 0)
9657c478bd9Sstevel@tonic-gate 				break;
9667c478bd9Sstevel@tonic-gate 			if (ht->ht_busy > 1)
9677c478bd9Sstevel@tonic-gate 				break;
9687c478bd9Sstevel@tonic-gate 
9697c478bd9Sstevel@tonic-gate 			/*
9707c478bd9Sstevel@tonic-gate 			 * we always release empty shared htables
9717c478bd9Sstevel@tonic-gate 			 */
9727c478bd9Sstevel@tonic-gate 			if (!(ht->ht_flags & HTABLE_SHARED_PFN)) {
9737c478bd9Sstevel@tonic-gate 
9747c478bd9Sstevel@tonic-gate 				/*
9757c478bd9Sstevel@tonic-gate 				 * don't release if in address space tear down
9767c478bd9Sstevel@tonic-gate 				 */
9777c478bd9Sstevel@tonic-gate 				if (hat->hat_flags & HAT_FREEING)
9787c478bd9Sstevel@tonic-gate 					break;
9797c478bd9Sstevel@tonic-gate 
9807c478bd9Sstevel@tonic-gate 				/*
9817c478bd9Sstevel@tonic-gate 				 * At and above max_page_level, free if it's for
9827c478bd9Sstevel@tonic-gate 				 * a boot-time kernel mapping below kernelbase.
9837c478bd9Sstevel@tonic-gate 				 */
9847c478bd9Sstevel@tonic-gate 				if (level >= mmu.max_page_level &&
9857c478bd9Sstevel@tonic-gate 				    (hat != kas.a_hat || va >= kernelbase))
9867c478bd9Sstevel@tonic-gate 					break;
9877c478bd9Sstevel@tonic-gate 			}
9887c478bd9Sstevel@tonic-gate 
9897c478bd9Sstevel@tonic-gate 			/*
9907c478bd9Sstevel@tonic-gate 			 * remember if we destroy an htable that shares its PFN
9917c478bd9Sstevel@tonic-gate 			 * from elsewhere
9927c478bd9Sstevel@tonic-gate 			 */
9937c478bd9Sstevel@tonic-gate 			if (ht->ht_flags & HTABLE_SHARED_PFN) {
9947c478bd9Sstevel@tonic-gate 				ASSERT(ht->ht_level == 0);
9957c478bd9Sstevel@tonic-gate 				ASSERT(shared == NULL);
9967c478bd9Sstevel@tonic-gate 				shared = ht->ht_shares;
9977c478bd9Sstevel@tonic-gate 				HATSTAT_INC(hs_htable_unshared);
9987c478bd9Sstevel@tonic-gate 			}
9997c478bd9Sstevel@tonic-gate 
10007c478bd9Sstevel@tonic-gate 			/*
10017c478bd9Sstevel@tonic-gate 			 * Handle release of a table and freeing the htable_t.
10027c478bd9Sstevel@tonic-gate 			 * Unlink it from the table higher (ie. ht_parent).
10037c478bd9Sstevel@tonic-gate 			 */
10047c478bd9Sstevel@tonic-gate 			ASSERT(ht->ht_lock_cnt == 0);
10057c478bd9Sstevel@tonic-gate 			higher = ht->ht_parent;
10067c478bd9Sstevel@tonic-gate 			ASSERT(higher != NULL);
10077c478bd9Sstevel@tonic-gate 
10087c478bd9Sstevel@tonic-gate 			/*
10097c478bd9Sstevel@tonic-gate 			 * Unlink the pagetable.
10107c478bd9Sstevel@tonic-gate 			 */
10117c478bd9Sstevel@tonic-gate 			unlink_ptp(higher, ht, va);
10127c478bd9Sstevel@tonic-gate 
10137c478bd9Sstevel@tonic-gate 			/*
10147c478bd9Sstevel@tonic-gate 			 * When any top level VLP page table entry changes, we
10157c478bd9Sstevel@tonic-gate 			 * must issue a reload of cr3 on all processors.
10167c478bd9Sstevel@tonic-gate 			 */
10177c478bd9Sstevel@tonic-gate 			if ((hat->hat_flags & HAT_VLP) &&
10187c478bd9Sstevel@tonic-gate 			    level == VLP_LEVEL - 1)
10197c478bd9Sstevel@tonic-gate 				hat_demap(hat, DEMAP_ALL_ADDR);
10207c478bd9Sstevel@tonic-gate 
10217c478bd9Sstevel@tonic-gate 			/*
10227c478bd9Sstevel@tonic-gate 			 * remove this htable from its hash list
10237c478bd9Sstevel@tonic-gate 			 */
10247c478bd9Sstevel@tonic-gate 			if (ht->ht_next)
10257c478bd9Sstevel@tonic-gate 				ht->ht_next->ht_prev = ht->ht_prev;
10267c478bd9Sstevel@tonic-gate 
10277c478bd9Sstevel@tonic-gate 			if (ht->ht_prev) {
10287c478bd9Sstevel@tonic-gate 				ht->ht_prev->ht_next = ht->ht_next;
10297c478bd9Sstevel@tonic-gate 			} else {
10307c478bd9Sstevel@tonic-gate 				ASSERT(hat->hat_ht_hash[hashval] == ht);
10317c478bd9Sstevel@tonic-gate 				hat->hat_ht_hash[hashval] = ht->ht_next;
10327c478bd9Sstevel@tonic-gate 			}
10337c478bd9Sstevel@tonic-gate 			HTABLE_EXIT(hashval);
10347c478bd9Sstevel@tonic-gate 			htable_free(ht);
10357c478bd9Sstevel@tonic-gate 			ht = higher;
10367c478bd9Sstevel@tonic-gate 		}
10377c478bd9Sstevel@tonic-gate 
10387c478bd9Sstevel@tonic-gate 		ASSERT(ht->ht_busy >= 1);
10397c478bd9Sstevel@tonic-gate 		--ht->ht_busy;
10407c478bd9Sstevel@tonic-gate 		HTABLE_EXIT(hashval);
10417c478bd9Sstevel@tonic-gate 
10427c478bd9Sstevel@tonic-gate 		/*
10437c478bd9Sstevel@tonic-gate 		 * If we released a shared htable, do a release on the htable
10447c478bd9Sstevel@tonic-gate 		 * from which it shared
10457c478bd9Sstevel@tonic-gate 		 */
10467c478bd9Sstevel@tonic-gate 		ht = shared;
10477c478bd9Sstevel@tonic-gate 	}
10487c478bd9Sstevel@tonic-gate }
10497c478bd9Sstevel@tonic-gate 
10507c478bd9Sstevel@tonic-gate /*
10517c478bd9Sstevel@tonic-gate  * Find the htable for the pagetable at the given level for the given address.
10527c478bd9Sstevel@tonic-gate  * If found acquires a hold that eventually needs to be htable_release()d
10537c478bd9Sstevel@tonic-gate  */
10547c478bd9Sstevel@tonic-gate htable_t *
10557c478bd9Sstevel@tonic-gate htable_lookup(hat_t *hat, uintptr_t vaddr, level_t level)
10567c478bd9Sstevel@tonic-gate {
10577c478bd9Sstevel@tonic-gate 	uintptr_t	base;
10587c478bd9Sstevel@tonic-gate 	uint_t		hashval;
10597c478bd9Sstevel@tonic-gate 	htable_t	*ht = NULL;
10607c478bd9Sstevel@tonic-gate 
10617c478bd9Sstevel@tonic-gate 	ASSERT(level >= 0);
10627c478bd9Sstevel@tonic-gate 	ASSERT(level <= TOP_LEVEL(hat));
10637c478bd9Sstevel@tonic-gate 
10647c478bd9Sstevel@tonic-gate 	if (level == TOP_LEVEL(hat))
10657c478bd9Sstevel@tonic-gate 		base = 0;
10667c478bd9Sstevel@tonic-gate 	else
10677c478bd9Sstevel@tonic-gate 		base = vaddr & LEVEL_MASK(level + 1);
10687c478bd9Sstevel@tonic-gate 
10697c478bd9Sstevel@tonic-gate 	hashval = HTABLE_HASH(hat, base, level);
10707c478bd9Sstevel@tonic-gate 	HTABLE_ENTER(hashval);
10717c478bd9Sstevel@tonic-gate 	for (ht = hat->hat_ht_hash[hashval]; ht; ht = ht->ht_next) {
10727c478bd9Sstevel@tonic-gate 		if (ht->ht_hat == hat &&
10737c478bd9Sstevel@tonic-gate 		    ht->ht_vaddr == base &&
10747c478bd9Sstevel@tonic-gate 		    ht->ht_level == level)
10757c478bd9Sstevel@tonic-gate 			break;
10767c478bd9Sstevel@tonic-gate 	}
10777c478bd9Sstevel@tonic-gate 	if (ht)
10787c478bd9Sstevel@tonic-gate 		++ht->ht_busy;
10797c478bd9Sstevel@tonic-gate 
10807c478bd9Sstevel@tonic-gate 	HTABLE_EXIT(hashval);
10817c478bd9Sstevel@tonic-gate 	return (ht);
10827c478bd9Sstevel@tonic-gate }
10837c478bd9Sstevel@tonic-gate 
10847c478bd9Sstevel@tonic-gate /*
10857c478bd9Sstevel@tonic-gate  * Acquires a hold on a known htable (from a locked hment entry).
10867c478bd9Sstevel@tonic-gate  */
10877c478bd9Sstevel@tonic-gate void
10887c478bd9Sstevel@tonic-gate htable_acquire(htable_t *ht)
10897c478bd9Sstevel@tonic-gate {
10907c478bd9Sstevel@tonic-gate 	hat_t		*hat = ht->ht_hat;
10917c478bd9Sstevel@tonic-gate 	level_t		level = ht->ht_level;
10927c478bd9Sstevel@tonic-gate 	uintptr_t	base = ht->ht_vaddr;
10937c478bd9Sstevel@tonic-gate 	uint_t		hashval = HTABLE_HASH(hat, base, level);
10947c478bd9Sstevel@tonic-gate 
10957c478bd9Sstevel@tonic-gate 	HTABLE_ENTER(hashval);
10967c478bd9Sstevel@tonic-gate #ifdef DEBUG
10977c478bd9Sstevel@tonic-gate 	/*
10987c478bd9Sstevel@tonic-gate 	 * make sure the htable is there
10997c478bd9Sstevel@tonic-gate 	 */
11007c478bd9Sstevel@tonic-gate 	{
11017c478bd9Sstevel@tonic-gate 		htable_t	*h;
11027c478bd9Sstevel@tonic-gate 
11037c478bd9Sstevel@tonic-gate 		for (h = hat->hat_ht_hash[hashval];
11047c478bd9Sstevel@tonic-gate 		    h && h != ht;
11057c478bd9Sstevel@tonic-gate 		    h = h->ht_next)
11067c478bd9Sstevel@tonic-gate 			;
11077c478bd9Sstevel@tonic-gate 		ASSERT(h == ht);
11087c478bd9Sstevel@tonic-gate 	}
11097c478bd9Sstevel@tonic-gate #endif /* DEBUG */
11107c478bd9Sstevel@tonic-gate 	++ht->ht_busy;
11117c478bd9Sstevel@tonic-gate 	HTABLE_EXIT(hashval);
11127c478bd9Sstevel@tonic-gate }
11137c478bd9Sstevel@tonic-gate 
11147c478bd9Sstevel@tonic-gate /*
11157c478bd9Sstevel@tonic-gate  * Find the htable for the pagetable at the given level for the given address.
11167c478bd9Sstevel@tonic-gate  * If found acquires a hold that eventually needs to be htable_release()d
11177c478bd9Sstevel@tonic-gate  * If not found the table is created.
11187c478bd9Sstevel@tonic-gate  *
11197c478bd9Sstevel@tonic-gate  * Since we can't hold a hash table mutex during allocation, we have to
11207c478bd9Sstevel@tonic-gate  * drop it and redo the search on a create. Then we may have to free the newly
11217c478bd9Sstevel@tonic-gate  * allocated htable if another thread raced in and created it ahead of us.
11227c478bd9Sstevel@tonic-gate  */
11237c478bd9Sstevel@tonic-gate htable_t *
11247c478bd9Sstevel@tonic-gate htable_create(
11257c478bd9Sstevel@tonic-gate 	hat_t		*hat,
11267c478bd9Sstevel@tonic-gate 	uintptr_t	vaddr,
11277c478bd9Sstevel@tonic-gate 	level_t		level,
11287c478bd9Sstevel@tonic-gate 	htable_t	*shared)
11297c478bd9Sstevel@tonic-gate {
11307c478bd9Sstevel@tonic-gate 	uint_t		h;
11317c478bd9Sstevel@tonic-gate 	level_t		l;
11327c478bd9Sstevel@tonic-gate 	uintptr_t	base;
11337c478bd9Sstevel@tonic-gate 	htable_t	*ht;
11347c478bd9Sstevel@tonic-gate 	htable_t	*higher = NULL;
11357c478bd9Sstevel@tonic-gate 	htable_t	*new = NULL;
11367c478bd9Sstevel@tonic-gate 
11377c478bd9Sstevel@tonic-gate 	if (level < 0 || level > TOP_LEVEL(hat))
11387c478bd9Sstevel@tonic-gate 		panic("htable_create(): level %d out of range\n", level);
11397c478bd9Sstevel@tonic-gate 
11407c478bd9Sstevel@tonic-gate 	/*
11417c478bd9Sstevel@tonic-gate 	 * Create the page tables in top down order.
11427c478bd9Sstevel@tonic-gate 	 */
11437c478bd9Sstevel@tonic-gate 	for (l = TOP_LEVEL(hat); l >= level; --l) {
11447c478bd9Sstevel@tonic-gate 		new = NULL;
11457c478bd9Sstevel@tonic-gate 		if (l == TOP_LEVEL(hat))
11467c478bd9Sstevel@tonic-gate 			base = 0;
11477c478bd9Sstevel@tonic-gate 		else
11487c478bd9Sstevel@tonic-gate 			base = vaddr & LEVEL_MASK(l + 1);
11497c478bd9Sstevel@tonic-gate 
11507c478bd9Sstevel@tonic-gate 		h = HTABLE_HASH(hat, base, l);
11517c478bd9Sstevel@tonic-gate try_again:
11527c478bd9Sstevel@tonic-gate 		/*
11537c478bd9Sstevel@tonic-gate 		 * look up the htable at this level
11547c478bd9Sstevel@tonic-gate 		 */
11557c478bd9Sstevel@tonic-gate 		HTABLE_ENTER(h);
11567c478bd9Sstevel@tonic-gate 		if (l == TOP_LEVEL(hat)) {
11577c478bd9Sstevel@tonic-gate 			ht = hat->hat_htable;
11587c478bd9Sstevel@tonic-gate 		} else {
11597c478bd9Sstevel@tonic-gate 			for (ht = hat->hat_ht_hash[h]; ht; ht = ht->ht_next) {
11607c478bd9Sstevel@tonic-gate 				ASSERT(ht->ht_hat == hat);
11617c478bd9Sstevel@tonic-gate 				if (ht->ht_vaddr == base &&
11627c478bd9Sstevel@tonic-gate 				    ht->ht_level == l)
11637c478bd9Sstevel@tonic-gate 					break;
11647c478bd9Sstevel@tonic-gate 			}
11657c478bd9Sstevel@tonic-gate 		}
11667c478bd9Sstevel@tonic-gate 
11677c478bd9Sstevel@tonic-gate 		/*
11687c478bd9Sstevel@tonic-gate 		 * if we found the htable, increment its busy cnt
11697c478bd9Sstevel@tonic-gate 		 * and if we had allocated a new htable, free it.
11707c478bd9Sstevel@tonic-gate 		 */
11717c478bd9Sstevel@tonic-gate 		if (ht != NULL) {
11727c478bd9Sstevel@tonic-gate 			/*
11737c478bd9Sstevel@tonic-gate 			 * If we find a pre-existing shared table, it must
11747c478bd9Sstevel@tonic-gate 			 * share from the same place.
11757c478bd9Sstevel@tonic-gate 			 */
11767c478bd9Sstevel@tonic-gate 			if (l == level && shared && ht->ht_shares &&
11777c478bd9Sstevel@tonic-gate 			    ht->ht_shares != shared) {
11787c478bd9Sstevel@tonic-gate 				panic("htable shared from wrong place "
11797c478bd9Sstevel@tonic-gate 				    "found htable=%p shared=%p", ht, shared);
11807c478bd9Sstevel@tonic-gate 			}
11817c478bd9Sstevel@tonic-gate 			++ht->ht_busy;
11827c478bd9Sstevel@tonic-gate 			HTABLE_EXIT(h);
11837c478bd9Sstevel@tonic-gate 			if (new)
11847c478bd9Sstevel@tonic-gate 				htable_free(new);
11857c478bd9Sstevel@tonic-gate 			if (higher != NULL)
11867c478bd9Sstevel@tonic-gate 				htable_release(higher);
11877c478bd9Sstevel@tonic-gate 			higher = ht;
11887c478bd9Sstevel@tonic-gate 
11897c478bd9Sstevel@tonic-gate 		/*
11907c478bd9Sstevel@tonic-gate 		 * if we didn't find it on the first search
11917c478bd9Sstevel@tonic-gate 		 * allocate a new one and search again
11927c478bd9Sstevel@tonic-gate 		 */
11937c478bd9Sstevel@tonic-gate 		} else if (new == NULL) {
11947c478bd9Sstevel@tonic-gate 			HTABLE_EXIT(h);
11957c478bd9Sstevel@tonic-gate 			new = htable_alloc(hat, base, l,
11967c478bd9Sstevel@tonic-gate 			    l == level ? shared : NULL);
11977c478bd9Sstevel@tonic-gate 			goto try_again;
11987c478bd9Sstevel@tonic-gate 
11997c478bd9Sstevel@tonic-gate 		/*
12007c478bd9Sstevel@tonic-gate 		 * 2nd search and still not there, use "new" table
12017c478bd9Sstevel@tonic-gate 		 * Link new table into higher, when not at top level.
12027c478bd9Sstevel@tonic-gate 		 */
12037c478bd9Sstevel@tonic-gate 		} else {
12047c478bd9Sstevel@tonic-gate 			ht = new;
12057c478bd9Sstevel@tonic-gate 			if (higher != NULL) {
12067c478bd9Sstevel@tonic-gate 				link_ptp(higher, ht, base);
12077c478bd9Sstevel@tonic-gate 				ht->ht_parent = higher;
12087c478bd9Sstevel@tonic-gate 
12097c478bd9Sstevel@tonic-gate 				/*
12107c478bd9Sstevel@tonic-gate 				 * When any top level VLP page table changes,
12117c478bd9Sstevel@tonic-gate 				 * we must reload cr3 on all processors.
12127c478bd9Sstevel@tonic-gate 				 */
12137c478bd9Sstevel@tonic-gate #ifdef __i386
12147c478bd9Sstevel@tonic-gate 				if (mmu.pae_hat &&
12157c478bd9Sstevel@tonic-gate #else /* !__i386 */
12167c478bd9Sstevel@tonic-gate 				if ((hat->hat_flags & HAT_VLP) &&
12177c478bd9Sstevel@tonic-gate #endif /* __i386 */
12187c478bd9Sstevel@tonic-gate 				    l == VLP_LEVEL - 1)
12197c478bd9Sstevel@tonic-gate 					hat_demap(hat, DEMAP_ALL_ADDR);
12207c478bd9Sstevel@tonic-gate 			}
12217c478bd9Sstevel@tonic-gate 			ht->ht_next = hat->hat_ht_hash[h];
12227c478bd9Sstevel@tonic-gate 			ASSERT(ht->ht_prev == NULL);
12237c478bd9Sstevel@tonic-gate 			if (hat->hat_ht_hash[h])
12247c478bd9Sstevel@tonic-gate 				hat->hat_ht_hash[h]->ht_prev = ht;
12257c478bd9Sstevel@tonic-gate 			hat->hat_ht_hash[h] = ht;
12267c478bd9Sstevel@tonic-gate 			HTABLE_EXIT(h);
12277c478bd9Sstevel@tonic-gate 
12287c478bd9Sstevel@tonic-gate 			/*
12297c478bd9Sstevel@tonic-gate 			 * Note we don't do htable_release(higher).
12307c478bd9Sstevel@tonic-gate 			 * That happens recursively when "new" is removed by
12317c478bd9Sstevel@tonic-gate 			 * htable_release() or htable_steal().
12327c478bd9Sstevel@tonic-gate 			 */
12337c478bd9Sstevel@tonic-gate 			higher = ht;
12347c478bd9Sstevel@tonic-gate 
12357c478bd9Sstevel@tonic-gate 			/*
12367c478bd9Sstevel@tonic-gate 			 * If we just created a new shared page table we
12377c478bd9Sstevel@tonic-gate 			 * increment the shared htable's busy count, so that
12387c478bd9Sstevel@tonic-gate 			 * it can't be the victim of a steal even if it's empty.
12397c478bd9Sstevel@tonic-gate 			 */
12407c478bd9Sstevel@tonic-gate 			if (l == level && shared) {
12417c478bd9Sstevel@tonic-gate 				(void) htable_lookup(shared->ht_hat,
12427c478bd9Sstevel@tonic-gate 				    shared->ht_vaddr, shared->ht_level);
12437c478bd9Sstevel@tonic-gate 				HATSTAT_INC(hs_htable_shared);
12447c478bd9Sstevel@tonic-gate 			}
12457c478bd9Sstevel@tonic-gate 		}
12467c478bd9Sstevel@tonic-gate 	}
12477c478bd9Sstevel@tonic-gate 
12487c478bd9Sstevel@tonic-gate 	return (ht);
12497c478bd9Sstevel@tonic-gate }
12507c478bd9Sstevel@tonic-gate 
12517c478bd9Sstevel@tonic-gate /*
12527c478bd9Sstevel@tonic-gate  * Walk through a given htable looking for the first valid entry.  This
12537c478bd9Sstevel@tonic-gate  * routine takes both a starting and ending address.  The starting address
12547c478bd9Sstevel@tonic-gate  * is required to be within the htable provided by the caller, but there is
12557c478bd9Sstevel@tonic-gate  * no such restriction on the ending address.
12567c478bd9Sstevel@tonic-gate  *
12577c478bd9Sstevel@tonic-gate  * If the routine finds a valid entry in the htable (at or beyond the
12587c478bd9Sstevel@tonic-gate  * starting address), the PTE (and its address) will be returned.
12597c478bd9Sstevel@tonic-gate  * This PTE may correspond to either a page or a pagetable - it is the
12607c478bd9Sstevel@tonic-gate  * caller's responsibility to determine which.  If no valid entry is
12617c478bd9Sstevel@tonic-gate  * found, 0 (and invalid PTE) and the next unexamined address will be
12627c478bd9Sstevel@tonic-gate  * returned.
12637c478bd9Sstevel@tonic-gate  *
12647c478bd9Sstevel@tonic-gate  * The loop has been carefully coded for optimization.
12657c478bd9Sstevel@tonic-gate  */
12667c478bd9Sstevel@tonic-gate static x86pte_t
12677c478bd9Sstevel@tonic-gate htable_scan(htable_t *ht, uintptr_t *vap, uintptr_t eaddr)
12687c478bd9Sstevel@tonic-gate {
12697c478bd9Sstevel@tonic-gate 	uint_t e;
12707c478bd9Sstevel@tonic-gate 	x86pte_t found_pte = (x86pte_t)0;
12717c478bd9Sstevel@tonic-gate 	char *pte_ptr;
12727c478bd9Sstevel@tonic-gate 	char *end_pte_ptr;
12737c478bd9Sstevel@tonic-gate 	int l = ht->ht_level;
12747c478bd9Sstevel@tonic-gate 	uintptr_t va = *vap & LEVEL_MASK(l);
12757c478bd9Sstevel@tonic-gate 	size_t pgsize = LEVEL_SIZE(l);
12767c478bd9Sstevel@tonic-gate 
12777c478bd9Sstevel@tonic-gate 	ASSERT(va >= ht->ht_vaddr);
12787c478bd9Sstevel@tonic-gate 	ASSERT(va <= HTABLE_LAST_PAGE(ht));
12797c478bd9Sstevel@tonic-gate 
12807c478bd9Sstevel@tonic-gate 	/*
12817c478bd9Sstevel@tonic-gate 	 * Compute the starting index and ending virtual address
12827c478bd9Sstevel@tonic-gate 	 */
12837c478bd9Sstevel@tonic-gate 	e = htable_va2entry(va, ht);
12847c478bd9Sstevel@tonic-gate 
12857c478bd9Sstevel@tonic-gate 	/*
12867c478bd9Sstevel@tonic-gate 	 * The following page table scan code knows that the valid
12877c478bd9Sstevel@tonic-gate 	 * bit of a PTE is in the lowest byte AND that x86 is little endian!!
12887c478bd9Sstevel@tonic-gate 	 */
12897c478bd9Sstevel@tonic-gate 	pte_ptr = (char *)x86pte_access_pagetable(ht);
12907c478bd9Sstevel@tonic-gate 	end_pte_ptr = pte_ptr + (ht->ht_num_ptes << mmu.pte_size_shift);
12917c478bd9Sstevel@tonic-gate 	pte_ptr += e << mmu.pte_size_shift;
12927c478bd9Sstevel@tonic-gate 	while (*pte_ptr == 0) {
12937c478bd9Sstevel@tonic-gate 		va += pgsize;
12947c478bd9Sstevel@tonic-gate 		if (va >= eaddr)
12957c478bd9Sstevel@tonic-gate 			break;
12967c478bd9Sstevel@tonic-gate 		pte_ptr += mmu.pte_size;
12977c478bd9Sstevel@tonic-gate 		ASSERT(pte_ptr <= end_pte_ptr);
12987c478bd9Sstevel@tonic-gate 		if (pte_ptr == end_pte_ptr)
12997c478bd9Sstevel@tonic-gate 			break;
13007c478bd9Sstevel@tonic-gate 	}
13017c478bd9Sstevel@tonic-gate 
13027c478bd9Sstevel@tonic-gate 	/*
13037c478bd9Sstevel@tonic-gate 	 * if we found a valid PTE, load the entire PTE
13047c478bd9Sstevel@tonic-gate 	 */
13057c478bd9Sstevel@tonic-gate 	if (va < eaddr && pte_ptr != end_pte_ptr) {
13067c478bd9Sstevel@tonic-gate 		if (mmu.pae_hat) {
1307aa2ed9e5Sjosephb 			ATOMIC_LOAD64((x86pte_t *)pte_ptr, found_pte);
13087c478bd9Sstevel@tonic-gate 		} else {
13097c478bd9Sstevel@tonic-gate 			found_pte = *(x86pte32_t *)pte_ptr;
13107c478bd9Sstevel@tonic-gate 		}
13117c478bd9Sstevel@tonic-gate 	}
13127c478bd9Sstevel@tonic-gate 	x86pte_release_pagetable(ht);
13137c478bd9Sstevel@tonic-gate 
13147c478bd9Sstevel@tonic-gate #if defined(__amd64)
13157c478bd9Sstevel@tonic-gate 	/*
13167c478bd9Sstevel@tonic-gate 	 * deal with VA hole on amd64
13177c478bd9Sstevel@tonic-gate 	 */
13187c478bd9Sstevel@tonic-gate 	if (l == mmu.max_level && va >= mmu.hole_start && va <= mmu.hole_end)
13197c478bd9Sstevel@tonic-gate 		va = mmu.hole_end + va - mmu.hole_start;
13207c478bd9Sstevel@tonic-gate #endif /* __amd64 */
13217c478bd9Sstevel@tonic-gate 
13227c478bd9Sstevel@tonic-gate 	*vap = va;
13237c478bd9Sstevel@tonic-gate 	return (found_pte);
13247c478bd9Sstevel@tonic-gate }
13257c478bd9Sstevel@tonic-gate 
13267c478bd9Sstevel@tonic-gate /*
13277c478bd9Sstevel@tonic-gate  * Find the address and htable for the first populated translation at or
13287c478bd9Sstevel@tonic-gate  * above the given virtual address.  The caller may also specify an upper
13297c478bd9Sstevel@tonic-gate  * limit to the address range to search.  Uses level information to quickly
13307c478bd9Sstevel@tonic-gate  * skip unpopulated sections of virtual address spaces.
13317c478bd9Sstevel@tonic-gate  *
13327c478bd9Sstevel@tonic-gate  * If not found returns NULL. When found, returns the htable and virt addr
13337c478bd9Sstevel@tonic-gate  * and has a hold on the htable.
13347c478bd9Sstevel@tonic-gate  */
13357c478bd9Sstevel@tonic-gate x86pte_t
13367c478bd9Sstevel@tonic-gate htable_walk(
13377c478bd9Sstevel@tonic-gate 	struct hat *hat,
13387c478bd9Sstevel@tonic-gate 	htable_t **htp,
13397c478bd9Sstevel@tonic-gate 	uintptr_t *vaddr,
13407c478bd9Sstevel@tonic-gate 	uintptr_t eaddr)
13417c478bd9Sstevel@tonic-gate {
13427c478bd9Sstevel@tonic-gate 	uintptr_t va = *vaddr;
13437c478bd9Sstevel@tonic-gate 	htable_t *ht;
13447c478bd9Sstevel@tonic-gate 	htable_t *prev = *htp;
13457c478bd9Sstevel@tonic-gate 	level_t l;
13467c478bd9Sstevel@tonic-gate 	level_t max_mapped_level;
13477c478bd9Sstevel@tonic-gate 	x86pte_t pte;
13487c478bd9Sstevel@tonic-gate 
13497c478bd9Sstevel@tonic-gate 	ASSERT(eaddr > va);
13507c478bd9Sstevel@tonic-gate 
13517c478bd9Sstevel@tonic-gate 	/*
13527c478bd9Sstevel@tonic-gate 	 * If this is a user address, then we know we need not look beyond
13537c478bd9Sstevel@tonic-gate 	 * kernelbase.
13547c478bd9Sstevel@tonic-gate 	 */
13557c478bd9Sstevel@tonic-gate 	ASSERT(hat == kas.a_hat || eaddr <= kernelbase ||
13567c478bd9Sstevel@tonic-gate 	    eaddr == HTABLE_WALK_TO_END);
13577c478bd9Sstevel@tonic-gate 	if (hat != kas.a_hat && eaddr == HTABLE_WALK_TO_END)
13587c478bd9Sstevel@tonic-gate 		eaddr = kernelbase;
13597c478bd9Sstevel@tonic-gate 
13607c478bd9Sstevel@tonic-gate 	/*
13617c478bd9Sstevel@tonic-gate 	 * If we're coming in with a previous page table, search it first
13627c478bd9Sstevel@tonic-gate 	 * without doing an htable_lookup(), this should be frequent.
13637c478bd9Sstevel@tonic-gate 	 */
13647c478bd9Sstevel@tonic-gate 	if (prev) {
13657c478bd9Sstevel@tonic-gate 		ASSERT(prev->ht_busy > 0);
13667c478bd9Sstevel@tonic-gate 		ASSERT(prev->ht_vaddr <= va);
13677c478bd9Sstevel@tonic-gate 		l = prev->ht_level;
13687c478bd9Sstevel@tonic-gate 		if (va <= HTABLE_LAST_PAGE(prev)) {
13697c478bd9Sstevel@tonic-gate 			pte = htable_scan(prev, &va, eaddr);
13707c478bd9Sstevel@tonic-gate 
13717c478bd9Sstevel@tonic-gate 			if (PTE_ISPAGE(pte, l)) {
13727c478bd9Sstevel@tonic-gate 				*vaddr = va;
13737c478bd9Sstevel@tonic-gate 				*htp = prev;
13747c478bd9Sstevel@tonic-gate 				return (pte);
13757c478bd9Sstevel@tonic-gate 			}
13767c478bd9Sstevel@tonic-gate 		}
13777c478bd9Sstevel@tonic-gate 
13787c478bd9Sstevel@tonic-gate 		/*
13797c478bd9Sstevel@tonic-gate 		 * We found nothing in the htable provided by the caller,
13807c478bd9Sstevel@tonic-gate 		 * so fall through and do the full search
13817c478bd9Sstevel@tonic-gate 		 */
13827c478bd9Sstevel@tonic-gate 		htable_release(prev);
13837c478bd9Sstevel@tonic-gate 	}
13847c478bd9Sstevel@tonic-gate 
13857c478bd9Sstevel@tonic-gate 	/*
13867c478bd9Sstevel@tonic-gate 	 * Find the level of the largest pagesize used by this HAT.
13877c478bd9Sstevel@tonic-gate 	 */
13887c478bd9Sstevel@tonic-gate 	max_mapped_level = 0;
13897c478bd9Sstevel@tonic-gate 	for (l = 1; l <= mmu.max_page_level; ++l)
13907c478bd9Sstevel@tonic-gate 		if (hat->hat_pages_mapped[l] != 0)
13917c478bd9Sstevel@tonic-gate 			max_mapped_level = l;
13927c478bd9Sstevel@tonic-gate 
13937c478bd9Sstevel@tonic-gate 	while (va < eaddr && va >= *vaddr) {
13947c478bd9Sstevel@tonic-gate 		ASSERT(!IN_VA_HOLE(va));
13957c478bd9Sstevel@tonic-gate 
13967c478bd9Sstevel@tonic-gate 		/*
13977c478bd9Sstevel@tonic-gate 		 *  Find lowest table with any entry for given address.
13987c478bd9Sstevel@tonic-gate 		 */
13997c478bd9Sstevel@tonic-gate 		for (l = 0; l <= TOP_LEVEL(hat); ++l) {
14007c478bd9Sstevel@tonic-gate 			ht = htable_lookup(hat, va, l);
14017c478bd9Sstevel@tonic-gate 			if (ht != NULL) {
14027c478bd9Sstevel@tonic-gate 				pte = htable_scan(ht, &va, eaddr);
14037c478bd9Sstevel@tonic-gate 				if (PTE_ISPAGE(pte, l)) {
14047c478bd9Sstevel@tonic-gate 					*vaddr = va;
14057c478bd9Sstevel@tonic-gate 					*htp = ht;
14067c478bd9Sstevel@tonic-gate 					return (pte);
14077c478bd9Sstevel@tonic-gate 				}
14087c478bd9Sstevel@tonic-gate 				htable_release(ht);
14097c478bd9Sstevel@tonic-gate 				break;
14107c478bd9Sstevel@tonic-gate 			}
14117c478bd9Sstevel@tonic-gate 
14127c478bd9Sstevel@tonic-gate 			/*
14137c478bd9Sstevel@tonic-gate 			 * The ht is never NULL at the top level since
14147c478bd9Sstevel@tonic-gate 			 * the top level htable is created in hat_alloc().
14157c478bd9Sstevel@tonic-gate 			 */
14167c478bd9Sstevel@tonic-gate 			ASSERT(l < TOP_LEVEL(hat));
14177c478bd9Sstevel@tonic-gate 
14187c478bd9Sstevel@tonic-gate 			/*
14197c478bd9Sstevel@tonic-gate 			 * No htable covers the address. If there is no
14207c478bd9Sstevel@tonic-gate 			 * larger page size that could cover it, we
14217c478bd9Sstevel@tonic-gate 			 * skip to the start of the next page table.
14227c478bd9Sstevel@tonic-gate 			 */
14237c478bd9Sstevel@tonic-gate 			if (l >= max_mapped_level) {
14247c478bd9Sstevel@tonic-gate 				va = NEXT_ENTRY_VA(va, l + 1);
14257c478bd9Sstevel@tonic-gate 				break;
14267c478bd9Sstevel@tonic-gate 			}
14277c478bd9Sstevel@tonic-gate 		}
14287c478bd9Sstevel@tonic-gate 	}
14297c478bd9Sstevel@tonic-gate 
14307c478bd9Sstevel@tonic-gate 	*vaddr = 0;
14317c478bd9Sstevel@tonic-gate 	*htp = NULL;
14327c478bd9Sstevel@tonic-gate 	return (0);
14337c478bd9Sstevel@tonic-gate }
14347c478bd9Sstevel@tonic-gate 
14357c478bd9Sstevel@tonic-gate /*
14367c478bd9Sstevel@tonic-gate  * Find the htable and page table entry index of the given virtual address
14377c478bd9Sstevel@tonic-gate  * with pagesize at or below given level.
14387c478bd9Sstevel@tonic-gate  * If not found returns NULL. When found, returns the htable, sets
14397c478bd9Sstevel@tonic-gate  * entry, and has a hold on the htable.
14407c478bd9Sstevel@tonic-gate  */
14417c478bd9Sstevel@tonic-gate htable_t *
14427c478bd9Sstevel@tonic-gate htable_getpte(
14437c478bd9Sstevel@tonic-gate 	struct hat *hat,
14447c478bd9Sstevel@tonic-gate 	uintptr_t vaddr,
14457c478bd9Sstevel@tonic-gate 	uint_t *entry,
14467c478bd9Sstevel@tonic-gate 	x86pte_t *pte,
14477c478bd9Sstevel@tonic-gate 	level_t level)
14487c478bd9Sstevel@tonic-gate {
14497c478bd9Sstevel@tonic-gate 	htable_t	*ht;
14507c478bd9Sstevel@tonic-gate 	level_t		l;
14517c478bd9Sstevel@tonic-gate 	uint_t		e;
14527c478bd9Sstevel@tonic-gate 
14537c478bd9Sstevel@tonic-gate 	ASSERT(level <= mmu.max_page_level);
14547c478bd9Sstevel@tonic-gate 
14557c478bd9Sstevel@tonic-gate 	for (l = 0; l <= level; ++l) {
14567c478bd9Sstevel@tonic-gate 		ht = htable_lookup(hat, vaddr, l);
14577c478bd9Sstevel@tonic-gate 		if (ht == NULL)
14587c478bd9Sstevel@tonic-gate 			continue;
14597c478bd9Sstevel@tonic-gate 		e = htable_va2entry(vaddr, ht);
14607c478bd9Sstevel@tonic-gate 		if (entry != NULL)
14617c478bd9Sstevel@tonic-gate 			*entry = e;
14627c478bd9Sstevel@tonic-gate 		if (pte != NULL)
14637c478bd9Sstevel@tonic-gate 			*pte = x86pte_get(ht, e);
14647c478bd9Sstevel@tonic-gate 		return (ht);
14657c478bd9Sstevel@tonic-gate 	}
14667c478bd9Sstevel@tonic-gate 	return (NULL);
14677c478bd9Sstevel@tonic-gate }
14687c478bd9Sstevel@tonic-gate 
14697c478bd9Sstevel@tonic-gate /*
14707c478bd9Sstevel@tonic-gate  * Find the htable and page table entry index of the given virtual address.
14717c478bd9Sstevel@tonic-gate  * There must be a valid page mapped at the given address.
14727c478bd9Sstevel@tonic-gate  * If not found returns NULL. When found, returns the htable, sets
14737c478bd9Sstevel@tonic-gate  * entry, and has a hold on the htable.
14747c478bd9Sstevel@tonic-gate  */
14757c478bd9Sstevel@tonic-gate htable_t *
14767c478bd9Sstevel@tonic-gate htable_getpage(struct hat *hat, uintptr_t vaddr, uint_t *entry)
14777c478bd9Sstevel@tonic-gate {
14787c478bd9Sstevel@tonic-gate 	htable_t	*ht;
14797c478bd9Sstevel@tonic-gate 	uint_t		e;
14807c478bd9Sstevel@tonic-gate 	x86pte_t	pte;
14817c478bd9Sstevel@tonic-gate 
14827c478bd9Sstevel@tonic-gate 	ht = htable_getpte(hat, vaddr, &e, &pte, mmu.max_page_level);
14837c478bd9Sstevel@tonic-gate 	if (ht == NULL)
14847c478bd9Sstevel@tonic-gate 		return (NULL);
14857c478bd9Sstevel@tonic-gate 
14867c478bd9Sstevel@tonic-gate 	if (entry)
14877c478bd9Sstevel@tonic-gate 		*entry = e;
14887c478bd9Sstevel@tonic-gate 
14897c478bd9Sstevel@tonic-gate 	if (PTE_ISPAGE(pte, ht->ht_level))
14907c478bd9Sstevel@tonic-gate 		return (ht);
14917c478bd9Sstevel@tonic-gate 	htable_release(ht);
14927c478bd9Sstevel@tonic-gate 	return (NULL);
14937c478bd9Sstevel@tonic-gate }
14947c478bd9Sstevel@tonic-gate 
14957c478bd9Sstevel@tonic-gate 
14967c478bd9Sstevel@tonic-gate void
14977c478bd9Sstevel@tonic-gate htable_init()
14987c478bd9Sstevel@tonic-gate {
14997c478bd9Sstevel@tonic-gate 	/*
15007c478bd9Sstevel@tonic-gate 	 * To save on kernel VA usage, we avoid debug information in 32 bit
15017c478bd9Sstevel@tonic-gate 	 * kernels.
15027c478bd9Sstevel@tonic-gate 	 */
15037c478bd9Sstevel@tonic-gate #if defined(__amd64)
15047c478bd9Sstevel@tonic-gate 	int	kmem_flags = KMC_NOHASH;
15057c478bd9Sstevel@tonic-gate #elif defined(__i386)
15067c478bd9Sstevel@tonic-gate 	int	kmem_flags = KMC_NOHASH | KMC_NODEBUG;
15077c478bd9Sstevel@tonic-gate #endif
15087c478bd9Sstevel@tonic-gate 
15097c478bd9Sstevel@tonic-gate 	/*
15107c478bd9Sstevel@tonic-gate 	 * initialize kmem caches
15117c478bd9Sstevel@tonic-gate 	 */
15127c478bd9Sstevel@tonic-gate 	htable_cache = kmem_cache_create("htable_t",
15137c478bd9Sstevel@tonic-gate 	    sizeof (htable_t), 0, NULL, NULL,
15147c478bd9Sstevel@tonic-gate 	    htable_reap, NULL, hat_memload_arena, kmem_flags);
15157c478bd9Sstevel@tonic-gate }
15167c478bd9Sstevel@tonic-gate 
15177c478bd9Sstevel@tonic-gate /*
15187c478bd9Sstevel@tonic-gate  * get the pte index for the virtual address in the given htable's pagetable
15197c478bd9Sstevel@tonic-gate  */
15207c478bd9Sstevel@tonic-gate uint_t
15217c478bd9Sstevel@tonic-gate htable_va2entry(uintptr_t va, htable_t *ht)
15227c478bd9Sstevel@tonic-gate {
15237c478bd9Sstevel@tonic-gate 	level_t	l = ht->ht_level;
15247c478bd9Sstevel@tonic-gate 
15257c478bd9Sstevel@tonic-gate 	ASSERT(va >= ht->ht_vaddr);
15267c478bd9Sstevel@tonic-gate 	ASSERT(va <= HTABLE_LAST_PAGE(ht));
15277c478bd9Sstevel@tonic-gate 	return ((va >> LEVEL_SHIFT(l)) & (ht->ht_num_ptes - 1));
15287c478bd9Sstevel@tonic-gate }
15297c478bd9Sstevel@tonic-gate 
15307c478bd9Sstevel@tonic-gate /*
15317c478bd9Sstevel@tonic-gate  * Given an htable and the index of a pte in it, return the virtual address
15327c478bd9Sstevel@tonic-gate  * of the page.
15337c478bd9Sstevel@tonic-gate  */
15347c478bd9Sstevel@tonic-gate uintptr_t
15357c478bd9Sstevel@tonic-gate htable_e2va(htable_t *ht, uint_t entry)
15367c478bd9Sstevel@tonic-gate {
15377c478bd9Sstevel@tonic-gate 	level_t	l = ht->ht_level;
15387c478bd9Sstevel@tonic-gate 	uintptr_t va;
15397c478bd9Sstevel@tonic-gate 
15407c478bd9Sstevel@tonic-gate 	ASSERT(entry < ht->ht_num_ptes);
15417c478bd9Sstevel@tonic-gate 	va = ht->ht_vaddr + ((uintptr_t)entry << LEVEL_SHIFT(l));
15427c478bd9Sstevel@tonic-gate 
15437c478bd9Sstevel@tonic-gate 	/*
15447c478bd9Sstevel@tonic-gate 	 * Need to skip over any VA hole in top level table
15457c478bd9Sstevel@tonic-gate 	 */
15467c478bd9Sstevel@tonic-gate #if defined(__amd64)
15477c478bd9Sstevel@tonic-gate 	if (ht->ht_level == mmu.max_level && va >= mmu.hole_start)
15487c478bd9Sstevel@tonic-gate 		va += ((mmu.hole_end - mmu.hole_start) + 1);
15497c478bd9Sstevel@tonic-gate #endif
15507c478bd9Sstevel@tonic-gate 
15517c478bd9Sstevel@tonic-gate 	return (va);
15527c478bd9Sstevel@tonic-gate }
15537c478bd9Sstevel@tonic-gate 
15547c478bd9Sstevel@tonic-gate /*
15557c478bd9Sstevel@tonic-gate  * The code uses compare and swap instructions to read/write PTE's to
15567c478bd9Sstevel@tonic-gate  * avoid atomicity problems, since PTEs can be 8 bytes on 32 bit systems.
15577c478bd9Sstevel@tonic-gate  * Again this can be optimized on 64 bit systems, since aligned load/store
15587c478bd9Sstevel@tonic-gate  * will naturally be atomic.
15597c478bd9Sstevel@tonic-gate  *
15607c478bd9Sstevel@tonic-gate  * The combination of using kpreempt_disable()/_enable() and the hci_mutex
15617c478bd9Sstevel@tonic-gate  * are used to ensure that an interrupt won't overwrite a temporary mapping
15627c478bd9Sstevel@tonic-gate  * while it's in use. If an interrupt thread tries to access a PTE, it will
15637c478bd9Sstevel@tonic-gate  * yield briefly back to the pinned thread which holds the cpu's hci_mutex.
15647c478bd9Sstevel@tonic-gate  */
15657c478bd9Sstevel@tonic-gate 
15667c478bd9Sstevel@tonic-gate static struct hat_cpu_info init_hci;	/* used for cpu 0 */
15677c478bd9Sstevel@tonic-gate 
15687c478bd9Sstevel@tonic-gate /*
15697c478bd9Sstevel@tonic-gate  * Initialize a CPU private window for mapping page tables.
15707c478bd9Sstevel@tonic-gate  * There will be 3 total pages of addressing needed:
15717c478bd9Sstevel@tonic-gate  *
15727c478bd9Sstevel@tonic-gate  *	1 for r/w access to pagetables
15737c478bd9Sstevel@tonic-gate  *	1 for r access when copying pagetables (hat_alloc)
15747c478bd9Sstevel@tonic-gate  *	1 that will map the PTEs for the 1st 2, so we can access them quickly
15757c478bd9Sstevel@tonic-gate  *
15767c478bd9Sstevel@tonic-gate  * We use vmem_xalloc() to get a correct alignment so that only one
15777c478bd9Sstevel@tonic-gate  * hat_mempte_setup() is needed.
15787c478bd9Sstevel@tonic-gate  */
15797c478bd9Sstevel@tonic-gate void
15807c478bd9Sstevel@tonic-gate x86pte_cpu_init(cpu_t *cpu, void *pages)
15817c478bd9Sstevel@tonic-gate {
15827c478bd9Sstevel@tonic-gate 	struct hat_cpu_info *hci;
15837c478bd9Sstevel@tonic-gate 	caddr_t va;
15847c478bd9Sstevel@tonic-gate 
15857c478bd9Sstevel@tonic-gate 	/*
15867c478bd9Sstevel@tonic-gate 	 * We can't use kmem_alloc/vmem_alloc for the 1st CPU, as this is
15877c478bd9Sstevel@tonic-gate 	 * called before we've activated our own HAT
15887c478bd9Sstevel@tonic-gate 	 */
15897c478bd9Sstevel@tonic-gate 	if (pages != NULL) {
15907c478bd9Sstevel@tonic-gate 		hci = &init_hci;
15917c478bd9Sstevel@tonic-gate 		va = pages;
15927c478bd9Sstevel@tonic-gate 	} else {
15937c478bd9Sstevel@tonic-gate 		hci = kmem_alloc(sizeof (struct hat_cpu_info), KM_SLEEP);
15947c478bd9Sstevel@tonic-gate 		va = vmem_xalloc(heap_arena, 3 * MMU_PAGESIZE, MMU_PAGESIZE, 0,
15957c478bd9Sstevel@tonic-gate 		    LEVEL_SIZE(1), NULL, NULL, VM_SLEEP);
15967c478bd9Sstevel@tonic-gate 	}
15977c478bd9Sstevel@tonic-gate 	mutex_init(&hci->hci_mutex, NULL, MUTEX_DEFAULT, NULL);
15987c478bd9Sstevel@tonic-gate 
15997c478bd9Sstevel@tonic-gate 	/*
16007c478bd9Sstevel@tonic-gate 	 * If we are using segkpm, then there is no need for any of the
16017c478bd9Sstevel@tonic-gate 	 * mempte support.  We can access the desired memory through a kpm
16027c478bd9Sstevel@tonic-gate 	 * mapping rather than setting up a temporary mempte mapping.
16037c478bd9Sstevel@tonic-gate 	 */
16047c478bd9Sstevel@tonic-gate 	if (kpm_enable == 0) {
16057c478bd9Sstevel@tonic-gate 		hci->hci_mapped_pfn = PFN_INVALID;
16067c478bd9Sstevel@tonic-gate 
16077c478bd9Sstevel@tonic-gate 		hci->hci_kernel_pte =
16087c478bd9Sstevel@tonic-gate 		    hat_mempte_kern_setup(va, va + (2 * MMU_PAGESIZE));
16097c478bd9Sstevel@tonic-gate 		hci->hci_pagetable_va = (void *)va;
16107c478bd9Sstevel@tonic-gate 	}
16117c478bd9Sstevel@tonic-gate 
16127c478bd9Sstevel@tonic-gate 	cpu->cpu_hat_info = hci;
16137c478bd9Sstevel@tonic-gate }
16147c478bd9Sstevel@tonic-gate 
16157c478bd9Sstevel@tonic-gate /*
16167c478bd9Sstevel@tonic-gate  * Macro to establish temporary mappings for x86pte_XXX routines.
16177c478bd9Sstevel@tonic-gate  */
16187c478bd9Sstevel@tonic-gate #define	X86PTE_REMAP(addr, pte, index, perm, pfn)	{		\
16197c478bd9Sstevel@tonic-gate 		x86pte_t t;						\
16207c478bd9Sstevel@tonic-gate 									\
16217c478bd9Sstevel@tonic-gate 		t = MAKEPTE((pfn), 0) | (perm) | mmu.pt_global | mmu.pt_nx;\
16227c478bd9Sstevel@tonic-gate 		if (mmu.pae_hat)					\
16237c478bd9Sstevel@tonic-gate 			pte[index] = t;					\
16247c478bd9Sstevel@tonic-gate 		else							\
16257c478bd9Sstevel@tonic-gate 			((x86pte32_t *)(pte))[index] = t;		\
16267c478bd9Sstevel@tonic-gate 		mmu_tlbflush_entry((caddr_t)(addr));			\
16277c478bd9Sstevel@tonic-gate }
16287c478bd9Sstevel@tonic-gate 
16297c478bd9Sstevel@tonic-gate /*
16307c478bd9Sstevel@tonic-gate  * Disable preemption and establish a mapping to the pagetable with the
16317c478bd9Sstevel@tonic-gate  * given pfn. This is optimized for there case where it's the same
16327c478bd9Sstevel@tonic-gate  * pfn as we last used referenced from this CPU.
16337c478bd9Sstevel@tonic-gate  */
16347c478bd9Sstevel@tonic-gate static x86pte_t *
16357c478bd9Sstevel@tonic-gate x86pte_access_pagetable(htable_t *ht)
16367c478bd9Sstevel@tonic-gate {
16377c478bd9Sstevel@tonic-gate 	pfn_t pfn;
16387c478bd9Sstevel@tonic-gate 	struct hat_cpu_info *hci;
16397c478bd9Sstevel@tonic-gate 
16407c478bd9Sstevel@tonic-gate 	/*
16417c478bd9Sstevel@tonic-gate 	 * VLP pagetables are contained in the hat_t
16427c478bd9Sstevel@tonic-gate 	 */
16437c478bd9Sstevel@tonic-gate 	if (ht->ht_flags & HTABLE_VLP)
16447c478bd9Sstevel@tonic-gate 		return (ht->ht_hat->hat_vlp_ptes);
16457c478bd9Sstevel@tonic-gate 
16467c478bd9Sstevel@tonic-gate 	/*
16477c478bd9Sstevel@tonic-gate 	 * During early boot, use hat_boot_remap() of a page table adddress.
16487c478bd9Sstevel@tonic-gate 	 */
16497c478bd9Sstevel@tonic-gate 	pfn = ht->ht_pfn;
16507c478bd9Sstevel@tonic-gate 	ASSERT(pfn != PFN_INVALID);
16517c478bd9Sstevel@tonic-gate 	if (kpm_enable)
16527c478bd9Sstevel@tonic-gate 		return ((x86pte_t *)hat_kpm_pfn2va(pfn));
16537c478bd9Sstevel@tonic-gate 
16547c478bd9Sstevel@tonic-gate 	if (!khat_running) {
16557c478bd9Sstevel@tonic-gate 		(void) hat_boot_remap(ptable_va, pfn);
16567c478bd9Sstevel@tonic-gate 		return ((x86pte_t *)ptable_va);
16577c478bd9Sstevel@tonic-gate 	}
16587c478bd9Sstevel@tonic-gate 
16597c478bd9Sstevel@tonic-gate 	/*
16607c478bd9Sstevel@tonic-gate 	 * Normally, disable preemption and grab the CPU's hci_mutex
16617c478bd9Sstevel@tonic-gate 	 */
16627c478bd9Sstevel@tonic-gate 	kpreempt_disable();
16637c478bd9Sstevel@tonic-gate 	hci = CPU->cpu_hat_info;
16647c478bd9Sstevel@tonic-gate 	ASSERT(hci != NULL);
16657c478bd9Sstevel@tonic-gate 	mutex_enter(&hci->hci_mutex);
16667c478bd9Sstevel@tonic-gate 	if (hci->hci_mapped_pfn != pfn) {
16677c478bd9Sstevel@tonic-gate 		/*
16687c478bd9Sstevel@tonic-gate 		 * The current mapping doesn't already point to this page.
16697c478bd9Sstevel@tonic-gate 		 * Update the CPU specific pagetable mapping to map the pfn.
16707c478bd9Sstevel@tonic-gate 		 */
16717c478bd9Sstevel@tonic-gate 		X86PTE_REMAP(hci->hci_pagetable_va, hci->hci_kernel_pte, 0,
16727c478bd9Sstevel@tonic-gate 		    PT_WRITABLE, pfn);
16737c478bd9Sstevel@tonic-gate 		hci->hci_mapped_pfn = pfn;
16747c478bd9Sstevel@tonic-gate 	}
16757c478bd9Sstevel@tonic-gate 	return (hci->hci_pagetable_va);
16767c478bd9Sstevel@tonic-gate }
16777c478bd9Sstevel@tonic-gate 
16787c478bd9Sstevel@tonic-gate /*
16797c478bd9Sstevel@tonic-gate  * Release access to a page table.
16807c478bd9Sstevel@tonic-gate  */
16817c478bd9Sstevel@tonic-gate static void
16827c478bd9Sstevel@tonic-gate x86pte_release_pagetable(htable_t *ht)
16837c478bd9Sstevel@tonic-gate {
16847c478bd9Sstevel@tonic-gate 	struct hat_cpu_info *hci;
16857c478bd9Sstevel@tonic-gate 
16867c478bd9Sstevel@tonic-gate 	if (kpm_enable)
16877c478bd9Sstevel@tonic-gate 		return;
16887c478bd9Sstevel@tonic-gate 
16897c478bd9Sstevel@tonic-gate 	/*
16907c478bd9Sstevel@tonic-gate 	 * nothing to do for VLP htables
16917c478bd9Sstevel@tonic-gate 	 */
16927c478bd9Sstevel@tonic-gate 	if (ht->ht_flags & HTABLE_VLP)
16937c478bd9Sstevel@tonic-gate 		return;
16947c478bd9Sstevel@tonic-gate 
16957c478bd9Sstevel@tonic-gate 	/*
16967c478bd9Sstevel@tonic-gate 	 * During boot-up hat_kern_setup(), erase the boot loader remapping.
16977c478bd9Sstevel@tonic-gate 	 */
16987c478bd9Sstevel@tonic-gate 	if (!khat_running) {
16997c478bd9Sstevel@tonic-gate 		hat_boot_demap(ptable_va);
17007c478bd9Sstevel@tonic-gate 		return;
17017c478bd9Sstevel@tonic-gate 	}
17027c478bd9Sstevel@tonic-gate 
17037c478bd9Sstevel@tonic-gate 	/*
17047c478bd9Sstevel@tonic-gate 	 * Normal Operation: drop the CPU's hci_mutex and restore preemption
17057c478bd9Sstevel@tonic-gate 	 */
17067c478bd9Sstevel@tonic-gate 	hci = CPU->cpu_hat_info;
17077c478bd9Sstevel@tonic-gate 	ASSERT(hci != NULL);
17087c478bd9Sstevel@tonic-gate 	mutex_exit(&hci->hci_mutex);
17097c478bd9Sstevel@tonic-gate 	kpreempt_enable();
17107c478bd9Sstevel@tonic-gate }
17117c478bd9Sstevel@tonic-gate 
17127c478bd9Sstevel@tonic-gate /*
17137c478bd9Sstevel@tonic-gate  * Atomic retrieval of a pagetable entry
17147c478bd9Sstevel@tonic-gate  */
17157c478bd9Sstevel@tonic-gate x86pte_t
17167c478bd9Sstevel@tonic-gate x86pte_get(htable_t *ht, uint_t entry)
17177c478bd9Sstevel@tonic-gate {
17187c478bd9Sstevel@tonic-gate 	x86pte_t	pte;
17197c478bd9Sstevel@tonic-gate 	x86pte32_t	*pte32p;
1720aa2ed9e5Sjosephb 	x86pte_t	*ptep;
17217c478bd9Sstevel@tonic-gate 
17227c478bd9Sstevel@tonic-gate 	/*
1723aa2ed9e5Sjosephb 	 * Be careful that loading PAE entries in 32 bit kernel is atomic.
17247c478bd9Sstevel@tonic-gate 	 */
17257c478bd9Sstevel@tonic-gate 	ptep = x86pte_access_pagetable(ht);
17267c478bd9Sstevel@tonic-gate 	if (mmu.pae_hat) {
1727aa2ed9e5Sjosephb 		ATOMIC_LOAD64(ptep + entry, pte);
17287c478bd9Sstevel@tonic-gate 	} else {
17297c478bd9Sstevel@tonic-gate 		pte32p = (x86pte32_t *)ptep;
17307c478bd9Sstevel@tonic-gate 		pte = pte32p[entry];
17317c478bd9Sstevel@tonic-gate 	}
17327c478bd9Sstevel@tonic-gate 	x86pte_release_pagetable(ht);
17337c478bd9Sstevel@tonic-gate 	return (pte);
17347c478bd9Sstevel@tonic-gate }
17357c478bd9Sstevel@tonic-gate 
17367c478bd9Sstevel@tonic-gate /*
17377c478bd9Sstevel@tonic-gate  * Atomic unconditional set of a page table entry, it returns the previous
17387c478bd9Sstevel@tonic-gate  * value.
17397c478bd9Sstevel@tonic-gate  */
17407c478bd9Sstevel@tonic-gate x86pte_t
17417c478bd9Sstevel@tonic-gate x86pte_set(htable_t *ht, uint_t entry, x86pte_t new, void *ptr)
17427c478bd9Sstevel@tonic-gate {
17437c478bd9Sstevel@tonic-gate 	x86pte_t	old;
1744b193e412Skchow 	x86pte_t	prev, n;
17457c478bd9Sstevel@tonic-gate 	x86pte_t	*ptep;
17467c478bd9Sstevel@tonic-gate 	x86pte32_t	*pte32p;
17477c478bd9Sstevel@tonic-gate 	x86pte32_t	n32, p32;
17487c478bd9Sstevel@tonic-gate 
17497c478bd9Sstevel@tonic-gate 	ASSERT(!(ht->ht_flags & HTABLE_SHARED_PFN));
17507c478bd9Sstevel@tonic-gate 	if (ptr == NULL) {
17517c478bd9Sstevel@tonic-gate 		ptep = x86pte_access_pagetable(ht);
17527c478bd9Sstevel@tonic-gate 		ptep = (void *)((caddr_t)ptep + (entry << mmu.pte_size_shift));
17537c478bd9Sstevel@tonic-gate 	} else {
17547c478bd9Sstevel@tonic-gate 		ptep = ptr;
17557c478bd9Sstevel@tonic-gate 	}
17567c478bd9Sstevel@tonic-gate 
17577c478bd9Sstevel@tonic-gate 	if (mmu.pae_hat) {
17587c478bd9Sstevel@tonic-gate 		for (;;) {
17597c478bd9Sstevel@tonic-gate 			prev = *ptep;
1760b193e412Skchow 			n = new;
1761b193e412Skchow 			/*
1762b193e412Skchow 			 * prevent potential data loss by preserving the MOD
1763b193e412Skchow 			 * bit if set in the current PTE and the pfns are the
1764b193e412Skchow 			 * same. For example, segmap can reissue a read-only
1765b193e412Skchow 			 * hat_memload on top of a dirty page.
1766b193e412Skchow 			 */
1767b193e412Skchow 			if (PTE_ISVALID(prev) && PTE2PFN(prev, ht->ht_level) ==
1768b193e412Skchow 			    PTE2PFN(n, ht->ht_level)) {
1769b193e412Skchow 				n |= prev & (PT_REF | PT_MOD);
1770b193e412Skchow 			}
1771b193e412Skchow 			if (prev == n) {
17727c478bd9Sstevel@tonic-gate 				old = new;
17737c478bd9Sstevel@tonic-gate 				break;
17747c478bd9Sstevel@tonic-gate 			}
1775b193e412Skchow 			old = cas64(ptep, prev, n);
17767c478bd9Sstevel@tonic-gate 			if (old == prev)
17777c478bd9Sstevel@tonic-gate 				break;
17787c478bd9Sstevel@tonic-gate 		}
17797c478bd9Sstevel@tonic-gate 	} else {
17807c478bd9Sstevel@tonic-gate 		pte32p = (x86pte32_t *)ptep;
17817c478bd9Sstevel@tonic-gate 		for (;;) {
17827c478bd9Sstevel@tonic-gate 			p32 = *pte32p;
1783b193e412Skchow 			n32 = new;
1784b193e412Skchow 			if (PTE_ISVALID(p32) && PTE2PFN(p32, ht->ht_level) ==
1785b193e412Skchow 			    PTE2PFN(n32, ht->ht_level)) {
1786b193e412Skchow 				n32 |= p32 & (PT_REF | PT_MOD);
1787b193e412Skchow 			}
17887c478bd9Sstevel@tonic-gate 			if (p32 == n32) {
17897c478bd9Sstevel@tonic-gate 				old = new;
17907c478bd9Sstevel@tonic-gate 				break;
17917c478bd9Sstevel@tonic-gate 			}
17927c478bd9Sstevel@tonic-gate 			old = cas32(pte32p, p32, n32);
17937c478bd9Sstevel@tonic-gate 			if (old == p32)
17947c478bd9Sstevel@tonic-gate 				break;
17957c478bd9Sstevel@tonic-gate 		}
17967c478bd9Sstevel@tonic-gate 	}
17977c478bd9Sstevel@tonic-gate 	if (ptr == NULL)
17987c478bd9Sstevel@tonic-gate 		x86pte_release_pagetable(ht);
17997c478bd9Sstevel@tonic-gate 	return (old);
18007c478bd9Sstevel@tonic-gate }
18017c478bd9Sstevel@tonic-gate 
18027c478bd9Sstevel@tonic-gate /*
18037c478bd9Sstevel@tonic-gate  * Atomic compare and swap of a page table entry.
18047c478bd9Sstevel@tonic-gate  */
18057c478bd9Sstevel@tonic-gate static x86pte_t
18067c478bd9Sstevel@tonic-gate x86pte_cas(htable_t *ht, uint_t entry, x86pte_t old, x86pte_t new)
18077c478bd9Sstevel@tonic-gate {
18087c478bd9Sstevel@tonic-gate 	x86pte_t	pte;
18097c478bd9Sstevel@tonic-gate 	x86pte_t	*ptep;
18107c478bd9Sstevel@tonic-gate 	x86pte32_t	pte32, o32, n32;
18117c478bd9Sstevel@tonic-gate 	x86pte32_t	*pte32p;
18127c478bd9Sstevel@tonic-gate 
18137c478bd9Sstevel@tonic-gate 	ASSERT(!(ht->ht_flags & HTABLE_SHARED_PFN));
18147c478bd9Sstevel@tonic-gate 	ptep = x86pte_access_pagetable(ht);
18157c478bd9Sstevel@tonic-gate 	if (mmu.pae_hat) {
18167c478bd9Sstevel@tonic-gate 		pte = cas64(&ptep[entry], old, new);
18177c478bd9Sstevel@tonic-gate 	} else {
18187c478bd9Sstevel@tonic-gate 		o32 = old;
18197c478bd9Sstevel@tonic-gate 		n32 = new;
18207c478bd9Sstevel@tonic-gate 		pte32p = (x86pte32_t *)ptep;
18217c478bd9Sstevel@tonic-gate 		pte32 = cas32(&pte32p[entry], o32, n32);
18227c478bd9Sstevel@tonic-gate 		pte = pte32;
18237c478bd9Sstevel@tonic-gate 	}
18247c478bd9Sstevel@tonic-gate 	x86pte_release_pagetable(ht);
18257c478bd9Sstevel@tonic-gate 
18267c478bd9Sstevel@tonic-gate 	return (pte);
18277c478bd9Sstevel@tonic-gate }
18287c478bd9Sstevel@tonic-gate 
18297c478bd9Sstevel@tonic-gate /*
18307c478bd9Sstevel@tonic-gate  * data structure for cross call information
18317c478bd9Sstevel@tonic-gate  */
18327c478bd9Sstevel@tonic-gate typedef struct xcall_info {
18337c478bd9Sstevel@tonic-gate 	x86pte_t	xi_pte;
18347c478bd9Sstevel@tonic-gate 	x86pte_t	xi_old;
18357c478bd9Sstevel@tonic-gate 	x86pte_t	*xi_pteptr;
18367c478bd9Sstevel@tonic-gate 	pfn_t		xi_pfn;
18377c478bd9Sstevel@tonic-gate 	processorid_t	xi_cpuid;
18387c478bd9Sstevel@tonic-gate 	level_t		xi_level;
18397c478bd9Sstevel@tonic-gate 	xc_func_t	xi_func;
18407c478bd9Sstevel@tonic-gate } xcall_info_t;
18417c478bd9Sstevel@tonic-gate 
18427c478bd9Sstevel@tonic-gate /*
18437c478bd9Sstevel@tonic-gate  * Cross call service function to atomically invalidate a PTE and flush TLBs
18447c478bd9Sstevel@tonic-gate  */
18457c478bd9Sstevel@tonic-gate /*ARGSUSED*/
18467c478bd9Sstevel@tonic-gate static int
18477c478bd9Sstevel@tonic-gate x86pte_inval_func(xc_arg_t a1, xc_arg_t a2, xc_arg_t a3)
18487c478bd9Sstevel@tonic-gate {
18497c478bd9Sstevel@tonic-gate 	xcall_info_t	*xi = (xcall_info_t *)a1;
18507c478bd9Sstevel@tonic-gate 	caddr_t		addr = (caddr_t)a2;
18517c478bd9Sstevel@tonic-gate 
18527c478bd9Sstevel@tonic-gate 	/*
18537c478bd9Sstevel@tonic-gate 	 * Only the initiating cpu invalidates the page table entry.
18547c478bd9Sstevel@tonic-gate 	 * It returns the previous PTE value to the caller.
18557c478bd9Sstevel@tonic-gate 	 */
18567c478bd9Sstevel@tonic-gate 	if (CPU->cpu_id == xi->xi_cpuid) {
18577c478bd9Sstevel@tonic-gate 		x86pte_t	*ptep = xi->xi_pteptr;
18587c478bd9Sstevel@tonic-gate 		pfn_t		pfn = xi->xi_pfn;
18597c478bd9Sstevel@tonic-gate 		level_t		level = xi->xi_level;
18607c478bd9Sstevel@tonic-gate 		x86pte_t	old;
18617c478bd9Sstevel@tonic-gate 		x86pte_t	prev;
18627c478bd9Sstevel@tonic-gate 		x86pte32_t	*pte32p;
18637c478bd9Sstevel@tonic-gate 		x86pte32_t	p32;
18647c478bd9Sstevel@tonic-gate 
18657c478bd9Sstevel@tonic-gate 		if (mmu.pae_hat) {
18667c478bd9Sstevel@tonic-gate 			for (;;) {
18677c478bd9Sstevel@tonic-gate 				prev = *ptep;
18687c478bd9Sstevel@tonic-gate 				if (PTE2PFN(prev, level) != pfn)
18697c478bd9Sstevel@tonic-gate 					break;
18707c478bd9Sstevel@tonic-gate 				old = cas64(ptep, prev, 0);
18717c478bd9Sstevel@tonic-gate 				if (old == prev)
18727c478bd9Sstevel@tonic-gate 					break;
18737c478bd9Sstevel@tonic-gate 			}
18747c478bd9Sstevel@tonic-gate 		} else {
18757c478bd9Sstevel@tonic-gate 			pte32p = (x86pte32_t *)ptep;
18767c478bd9Sstevel@tonic-gate 			for (;;) {
18777c478bd9Sstevel@tonic-gate 				p32 = *pte32p;
18787c478bd9Sstevel@tonic-gate 				if (PTE2PFN(p32, level) != pfn)
18797c478bd9Sstevel@tonic-gate 					break;
18807c478bd9Sstevel@tonic-gate 				old = cas32(pte32p, p32, 0);
18817c478bd9Sstevel@tonic-gate 				if (old == p32)
18827c478bd9Sstevel@tonic-gate 					break;
18837c478bd9Sstevel@tonic-gate 			}
18847c478bd9Sstevel@tonic-gate 			prev = p32;
18857c478bd9Sstevel@tonic-gate 		}
18867c478bd9Sstevel@tonic-gate 		xi->xi_pte = prev;
18877c478bd9Sstevel@tonic-gate 	}
18887c478bd9Sstevel@tonic-gate 
18897c478bd9Sstevel@tonic-gate 	/*
18907c478bd9Sstevel@tonic-gate 	 * For a normal address, we just flush one page mapping
18917c478bd9Sstevel@tonic-gate 	 * Otherwise reload cr3 to effect a complete TLB flush.
18927c478bd9Sstevel@tonic-gate 	 *
18937c478bd9Sstevel@tonic-gate 	 * Note we don't reload VLP pte's -- this assume we never have a
18947c478bd9Sstevel@tonic-gate 	 * large page size at VLP_LEVEL for VLP processes.
18957c478bd9Sstevel@tonic-gate 	 */
18967c478bd9Sstevel@tonic-gate 	if ((uintptr_t)addr != DEMAP_ALL_ADDR) {
18977c478bd9Sstevel@tonic-gate 		mmu_tlbflush_entry(addr);
18987c478bd9Sstevel@tonic-gate 	} else {
18997c478bd9Sstevel@tonic-gate 		reload_cr3();
19007c478bd9Sstevel@tonic-gate 	}
19017c478bd9Sstevel@tonic-gate 	return (0);
19027c478bd9Sstevel@tonic-gate }
19037c478bd9Sstevel@tonic-gate 
19047c478bd9Sstevel@tonic-gate /*
19057c478bd9Sstevel@tonic-gate  * Cross call service function to atomically change a PTE and flush TLBs
19067c478bd9Sstevel@tonic-gate  */
19077c478bd9Sstevel@tonic-gate /*ARGSUSED*/
19087c478bd9Sstevel@tonic-gate static int
19097c478bd9Sstevel@tonic-gate x86pte_update_func(xc_arg_t a1, xc_arg_t a2, xc_arg_t a3)
19107c478bd9Sstevel@tonic-gate {
19117c478bd9Sstevel@tonic-gate 	xcall_info_t	*xi = (xcall_info_t *)a1;
19127c478bd9Sstevel@tonic-gate 	caddr_t		addr = (caddr_t)a2;
19137c478bd9Sstevel@tonic-gate 
19147c478bd9Sstevel@tonic-gate 	/*
19157c478bd9Sstevel@tonic-gate 	 * Only the initiating cpu changes the page table entry.
19167c478bd9Sstevel@tonic-gate 	 * It returns the previous PTE value to the caller.
19177c478bd9Sstevel@tonic-gate 	 */
19187c478bd9Sstevel@tonic-gate 	if (CPU->cpu_id == xi->xi_cpuid) {
19197c478bd9Sstevel@tonic-gate 		x86pte_t	*ptep = xi->xi_pteptr;
19207c478bd9Sstevel@tonic-gate 		x86pte_t	new = xi->xi_pte;
19217c478bd9Sstevel@tonic-gate 		x86pte_t	old = xi->xi_old;
19227c478bd9Sstevel@tonic-gate 		x86pte_t	prev;
19237c478bd9Sstevel@tonic-gate 
19247c478bd9Sstevel@tonic-gate 		if (mmu.pae_hat) {
19257c478bd9Sstevel@tonic-gate 			prev = cas64(ptep, old, new);
19267c478bd9Sstevel@tonic-gate 		} else {
19277c478bd9Sstevel@tonic-gate 			x86pte32_t o32 = old;
19287c478bd9Sstevel@tonic-gate 			x86pte32_t n32 = new;
19297c478bd9Sstevel@tonic-gate 			x86pte32_t *pte32p = (x86pte32_t *)ptep;
19307c478bd9Sstevel@tonic-gate 			prev = cas32(pte32p, o32, n32);
19317c478bd9Sstevel@tonic-gate 		}
19327c478bd9Sstevel@tonic-gate 
19337c478bd9Sstevel@tonic-gate 		xi->xi_pte = prev;
19347c478bd9Sstevel@tonic-gate 	}
19357c478bd9Sstevel@tonic-gate 
19367c478bd9Sstevel@tonic-gate 	/*
19377c478bd9Sstevel@tonic-gate 	 * Flush the TLB entry
19387c478bd9Sstevel@tonic-gate 	 */
19397c478bd9Sstevel@tonic-gate 	if ((uintptr_t)addr != DEMAP_ALL_ADDR)
19407c478bd9Sstevel@tonic-gate 		mmu_tlbflush_entry(addr);
19417c478bd9Sstevel@tonic-gate 	else
19427c478bd9Sstevel@tonic-gate 		reload_cr3();
19437c478bd9Sstevel@tonic-gate 	return (0);
19447c478bd9Sstevel@tonic-gate }
19457c478bd9Sstevel@tonic-gate 
19467c478bd9Sstevel@tonic-gate /*
19477c478bd9Sstevel@tonic-gate  * Use cross calls to change a page table entry and invalidate TLBs.
19487c478bd9Sstevel@tonic-gate  */
19497c478bd9Sstevel@tonic-gate void
19507c478bd9Sstevel@tonic-gate x86pte_xcall(hat_t *hat, xcall_info_t *xi, uintptr_t addr)
19517c478bd9Sstevel@tonic-gate {
19527c478bd9Sstevel@tonic-gate 	cpuset_t	cpus;
19537c478bd9Sstevel@tonic-gate 
19547c478bd9Sstevel@tonic-gate 	/*
19557c478bd9Sstevel@tonic-gate 	 * Given the current implementation of hat_share(), doing a
19567c478bd9Sstevel@tonic-gate 	 * hat_pageunload() on a shared page table requries invalidating
19577c478bd9Sstevel@tonic-gate 	 * all user TLB entries on all CPUs.
19587c478bd9Sstevel@tonic-gate 	 */
19597c478bd9Sstevel@tonic-gate 	if (hat->hat_flags & HAT_SHARED) {
19607c478bd9Sstevel@tonic-gate 		hat = kas.a_hat;
19617c478bd9Sstevel@tonic-gate 		addr = DEMAP_ALL_ADDR;
19627c478bd9Sstevel@tonic-gate 	}
19637c478bd9Sstevel@tonic-gate 
19647c478bd9Sstevel@tonic-gate 	/*
19657c478bd9Sstevel@tonic-gate 	 * Use a cross call to do the invalidations.
19667c478bd9Sstevel@tonic-gate 	 * Note the current CPU always has to be in the cross call CPU set.
19677c478bd9Sstevel@tonic-gate 	 */
19687c478bd9Sstevel@tonic-gate 	kpreempt_disable();
19697c478bd9Sstevel@tonic-gate 	xi->xi_cpuid = CPU->cpu_id;
19707c478bd9Sstevel@tonic-gate 	CPUSET_ZERO(cpus);
19717c478bd9Sstevel@tonic-gate 	if (hat == kas.a_hat) {
19727c478bd9Sstevel@tonic-gate 		CPUSET_OR(cpus, khat_cpuset);
19737c478bd9Sstevel@tonic-gate 	} else {
19747c478bd9Sstevel@tonic-gate 		mutex_enter(&hat->hat_switch_mutex);
19757c478bd9Sstevel@tonic-gate 		CPUSET_OR(cpus, hat->hat_cpus);
19767c478bd9Sstevel@tonic-gate 		CPUSET_ADD(cpus, CPU->cpu_id);
19777c478bd9Sstevel@tonic-gate 	}
19787c478bd9Sstevel@tonic-gate 
19797c478bd9Sstevel@tonic-gate 	/*
19807c478bd9Sstevel@tonic-gate 	 * Use a cross call to modify the page table entry and invalidate TLBs.
19817c478bd9Sstevel@tonic-gate 	 * If we're panic'ing, don't bother with the cross call.
19827c478bd9Sstevel@tonic-gate 	 * Note the panicstr check isn't bullet proof and the panic system
19837c478bd9Sstevel@tonic-gate 	 * ought to be made tighter.
19847c478bd9Sstevel@tonic-gate 	 */
19857c478bd9Sstevel@tonic-gate 	if (panicstr == NULL)
19867c478bd9Sstevel@tonic-gate 		xc_wait_sync((xc_arg_t)xi, addr, NULL, X_CALL_HIPRI,
19877c478bd9Sstevel@tonic-gate 			    cpus, xi->xi_func);
19887c478bd9Sstevel@tonic-gate 	else
19897c478bd9Sstevel@tonic-gate 		(void) xi->xi_func((xc_arg_t)xi, (xc_arg_t)addr, NULL);
19907c478bd9Sstevel@tonic-gate 	if (hat != kas.a_hat)
19917c478bd9Sstevel@tonic-gate 		mutex_exit(&hat->hat_switch_mutex);
19927c478bd9Sstevel@tonic-gate 	kpreempt_enable();
19937c478bd9Sstevel@tonic-gate }
19947c478bd9Sstevel@tonic-gate 
19957c478bd9Sstevel@tonic-gate /*
19967c478bd9Sstevel@tonic-gate  * Invalidate a page table entry if it currently maps the given pfn.
19977c478bd9Sstevel@tonic-gate  * This returns the previous value of the PTE.
19987c478bd9Sstevel@tonic-gate  */
19997c478bd9Sstevel@tonic-gate x86pte_t
20007c478bd9Sstevel@tonic-gate x86pte_invalidate_pfn(htable_t *ht, uint_t entry, pfn_t pfn, void *pte_ptr)
20017c478bd9Sstevel@tonic-gate {
20027c478bd9Sstevel@tonic-gate 	xcall_info_t	xi;
20037c478bd9Sstevel@tonic-gate 	x86pte_t	*ptep;
20047c478bd9Sstevel@tonic-gate 	hat_t		*hat;
20057c478bd9Sstevel@tonic-gate 	uintptr_t	addr;
20067c478bd9Sstevel@tonic-gate 
20077c478bd9Sstevel@tonic-gate 	ASSERT(!(ht->ht_flags & HTABLE_SHARED_PFN));
20087c478bd9Sstevel@tonic-gate 	if (pte_ptr != NULL) {
20097c478bd9Sstevel@tonic-gate 		ptep = pte_ptr;
20107c478bd9Sstevel@tonic-gate 	} else {
20117c478bd9Sstevel@tonic-gate 		ptep = x86pte_access_pagetable(ht);
20127c478bd9Sstevel@tonic-gate 		ptep = (void *)((caddr_t)ptep + (entry << mmu.pte_size_shift));
20137c478bd9Sstevel@tonic-gate 	}
20147c478bd9Sstevel@tonic-gate 
20157c478bd9Sstevel@tonic-gate 	/*
20167c478bd9Sstevel@tonic-gate 	 * Fill in the structure used by the cross call function to do the
20177c478bd9Sstevel@tonic-gate 	 * invalidation.
20187c478bd9Sstevel@tonic-gate 	 */
20197c478bd9Sstevel@tonic-gate 	xi.xi_pte = 0;
20207c478bd9Sstevel@tonic-gate 	xi.xi_pteptr = ptep;
20217c478bd9Sstevel@tonic-gate 	xi.xi_pfn = pfn;
20227c478bd9Sstevel@tonic-gate 	xi.xi_level = ht->ht_level;
20237c478bd9Sstevel@tonic-gate 	xi.xi_func = x86pte_inval_func;
20247c478bd9Sstevel@tonic-gate 	ASSERT(xi.xi_level != VLP_LEVEL);
20257c478bd9Sstevel@tonic-gate 
20267c478bd9Sstevel@tonic-gate 	hat = ht->ht_hat;
20277c478bd9Sstevel@tonic-gate 	addr = htable_e2va(ht, entry);
20287c478bd9Sstevel@tonic-gate 
20297c478bd9Sstevel@tonic-gate 	x86pte_xcall(hat, &xi, addr);
20307c478bd9Sstevel@tonic-gate 
20317c478bd9Sstevel@tonic-gate 	if (pte_ptr == NULL)
20327c478bd9Sstevel@tonic-gate 		x86pte_release_pagetable(ht);
20337c478bd9Sstevel@tonic-gate 	return (xi.xi_pte);
20347c478bd9Sstevel@tonic-gate }
20357c478bd9Sstevel@tonic-gate 
20367c478bd9Sstevel@tonic-gate /*
20377c478bd9Sstevel@tonic-gate  * update a PTE and invalidate any stale TLB entries.
20387c478bd9Sstevel@tonic-gate  */
20397c478bd9Sstevel@tonic-gate x86pte_t
20407c478bd9Sstevel@tonic-gate x86pte_update(htable_t *ht, uint_t entry, x86pte_t expected, x86pte_t new)
20417c478bd9Sstevel@tonic-gate {
20427c478bd9Sstevel@tonic-gate 	xcall_info_t	xi;
20437c478bd9Sstevel@tonic-gate 	x86pte_t	*ptep;
20447c478bd9Sstevel@tonic-gate 	hat_t		*hat;
20457c478bd9Sstevel@tonic-gate 	uintptr_t	addr;
20467c478bd9Sstevel@tonic-gate 
20477c478bd9Sstevel@tonic-gate 	ASSERT(!(ht->ht_flags & HTABLE_SHARED_PFN));
20487c478bd9Sstevel@tonic-gate 	ptep = x86pte_access_pagetable(ht);
20497c478bd9Sstevel@tonic-gate 	ptep = (void *)((caddr_t)ptep + (entry << mmu.pte_size_shift));
20507c478bd9Sstevel@tonic-gate 
20517c478bd9Sstevel@tonic-gate 	/*
20527c478bd9Sstevel@tonic-gate 	 * Fill in the structure used by the cross call function to do the
20537c478bd9Sstevel@tonic-gate 	 * invalidation.
20547c478bd9Sstevel@tonic-gate 	 */
20557c478bd9Sstevel@tonic-gate 	xi.xi_pte = new;
20567c478bd9Sstevel@tonic-gate 	xi.xi_old = expected;
20577c478bd9Sstevel@tonic-gate 	xi.xi_pteptr = ptep;
20587c478bd9Sstevel@tonic-gate 	xi.xi_func = x86pte_update_func;
20597c478bd9Sstevel@tonic-gate 
20607c478bd9Sstevel@tonic-gate 	hat = ht->ht_hat;
20617c478bd9Sstevel@tonic-gate 	addr = htable_e2va(ht, entry);
20627c478bd9Sstevel@tonic-gate 
20637c478bd9Sstevel@tonic-gate 	x86pte_xcall(hat, &xi, addr);
20647c478bd9Sstevel@tonic-gate 
20657c478bd9Sstevel@tonic-gate 	x86pte_release_pagetable(ht);
20667c478bd9Sstevel@tonic-gate 	return (xi.xi_pte);
20677c478bd9Sstevel@tonic-gate }
20687c478bd9Sstevel@tonic-gate 
20697c478bd9Sstevel@tonic-gate /*
20707c478bd9Sstevel@tonic-gate  * Copy page tables - this is just a little more complicated than the
20717c478bd9Sstevel@tonic-gate  * previous routines. Note that it's also not atomic! It also is never
20727c478bd9Sstevel@tonic-gate  * used for VLP pagetables.
20737c478bd9Sstevel@tonic-gate  */
20747c478bd9Sstevel@tonic-gate void
20757c478bd9Sstevel@tonic-gate x86pte_copy(htable_t *src, htable_t *dest, uint_t entry, uint_t count)
20767c478bd9Sstevel@tonic-gate {
20777c478bd9Sstevel@tonic-gate 	struct hat_cpu_info *hci;
20787c478bd9Sstevel@tonic-gate 	caddr_t	src_va;
20797c478bd9Sstevel@tonic-gate 	caddr_t dst_va;
20807c478bd9Sstevel@tonic-gate 	size_t size;
20817c478bd9Sstevel@tonic-gate 
20827c478bd9Sstevel@tonic-gate 	ASSERT(khat_running);
20837c478bd9Sstevel@tonic-gate 	ASSERT(!(dest->ht_flags & HTABLE_VLP));
20847c478bd9Sstevel@tonic-gate 	ASSERT(!(src->ht_flags & HTABLE_VLP));
20857c478bd9Sstevel@tonic-gate 	ASSERT(!(src->ht_flags & HTABLE_SHARED_PFN));
20867c478bd9Sstevel@tonic-gate 	ASSERT(!(dest->ht_flags & HTABLE_SHARED_PFN));
20877c478bd9Sstevel@tonic-gate 
20887c478bd9Sstevel@tonic-gate 	/*
20897c478bd9Sstevel@tonic-gate 	 * Acquire access to the CPU pagetable window for the destination.
20907c478bd9Sstevel@tonic-gate 	 */
20917c478bd9Sstevel@tonic-gate 	dst_va = (caddr_t)x86pte_access_pagetable(dest);
20927c478bd9Sstevel@tonic-gate 	if (kpm_enable) {
20937c478bd9Sstevel@tonic-gate 		src_va = (caddr_t)x86pte_access_pagetable(src);
20947c478bd9Sstevel@tonic-gate 	} else {
20957c478bd9Sstevel@tonic-gate 		hci = CPU->cpu_hat_info;
20967c478bd9Sstevel@tonic-gate 
20977c478bd9Sstevel@tonic-gate 		/*
20987c478bd9Sstevel@tonic-gate 		 * Finish defining the src pagetable mapping
20997c478bd9Sstevel@tonic-gate 		 */
21007c478bd9Sstevel@tonic-gate 		src_va = dst_va + MMU_PAGESIZE;
21017c478bd9Sstevel@tonic-gate 		X86PTE_REMAP(src_va, hci->hci_kernel_pte, 1, 0, src->ht_pfn);
21027c478bd9Sstevel@tonic-gate 	}
21037c478bd9Sstevel@tonic-gate 
21047c478bd9Sstevel@tonic-gate 	/*
21057c478bd9Sstevel@tonic-gate 	 * now do the copy
21067c478bd9Sstevel@tonic-gate 	 */
21077c478bd9Sstevel@tonic-gate 
21087c478bd9Sstevel@tonic-gate 	dst_va += entry << mmu.pte_size_shift;
21097c478bd9Sstevel@tonic-gate 	src_va += entry << mmu.pte_size_shift;
21107c478bd9Sstevel@tonic-gate 	size = count << mmu.pte_size_shift;
21117c478bd9Sstevel@tonic-gate 	bcopy(src_va, dst_va, size);
21127c478bd9Sstevel@tonic-gate 
21137c478bd9Sstevel@tonic-gate 	x86pte_release_pagetable(dest);
21147c478bd9Sstevel@tonic-gate }
21157c478bd9Sstevel@tonic-gate 
21167c478bd9Sstevel@tonic-gate /*
21177c478bd9Sstevel@tonic-gate  * Zero page table entries - Note this doesn't use atomic stores!
21187c478bd9Sstevel@tonic-gate  */
21197c478bd9Sstevel@tonic-gate void
21207c478bd9Sstevel@tonic-gate x86pte_zero(htable_t *dest, uint_t entry, uint_t count)
21217c478bd9Sstevel@tonic-gate {
21227c478bd9Sstevel@tonic-gate 	caddr_t dst_va;
21237c478bd9Sstevel@tonic-gate 	x86pte_t *p;
21247c478bd9Sstevel@tonic-gate 	x86pte32_t *p32;
21257c478bd9Sstevel@tonic-gate 	size_t size;
21267c478bd9Sstevel@tonic-gate 	extern void hat_pte_zero(void *, size_t);
21277c478bd9Sstevel@tonic-gate 
21287c478bd9Sstevel@tonic-gate 	/*
21297c478bd9Sstevel@tonic-gate 	 * Map in the page table to be zeroed.
21307c478bd9Sstevel@tonic-gate 	 */
21317c478bd9Sstevel@tonic-gate 	ASSERT(!(dest->ht_flags & HTABLE_SHARED_PFN));
21327c478bd9Sstevel@tonic-gate 	ASSERT(!(dest->ht_flags & HTABLE_VLP));
21337c478bd9Sstevel@tonic-gate 	dst_va = (caddr_t)x86pte_access_pagetable(dest);
21347c478bd9Sstevel@tonic-gate 	dst_va += entry << mmu.pte_size_shift;
21357c478bd9Sstevel@tonic-gate 	size = count << mmu.pte_size_shift;
21367c478bd9Sstevel@tonic-gate 	if (x86_feature & X86_SSE2) {
21377c478bd9Sstevel@tonic-gate 		hat_pte_zero(dst_va, size);
21387c478bd9Sstevel@tonic-gate 	} else if (khat_running) {
21397c478bd9Sstevel@tonic-gate 		bzero(dst_va, size);
21407c478bd9Sstevel@tonic-gate 	} else {
21417c478bd9Sstevel@tonic-gate 		/*
21427c478bd9Sstevel@tonic-gate 		 * Can't just use bzero during boot because it checks the
21437c478bd9Sstevel@tonic-gate 		 * address against kernelbase. Instead just use a zero loop.
21447c478bd9Sstevel@tonic-gate 		 */
21457c478bd9Sstevel@tonic-gate 		if (mmu.pae_hat) {
21467c478bd9Sstevel@tonic-gate 			p = (x86pte_t *)dst_va;
21477c478bd9Sstevel@tonic-gate 			while (count-- > 0)
21487c478bd9Sstevel@tonic-gate 				*p++ = 0;
21497c478bd9Sstevel@tonic-gate 		} else {
21507c478bd9Sstevel@tonic-gate 			p32 = (x86pte32_t *)dst_va;
21517c478bd9Sstevel@tonic-gate 			while (count-- > 0)
21527c478bd9Sstevel@tonic-gate 				*p32++ = 0;
21537c478bd9Sstevel@tonic-gate 		}
21547c478bd9Sstevel@tonic-gate 	}
21557c478bd9Sstevel@tonic-gate 	x86pte_release_pagetable(dest);
21567c478bd9Sstevel@tonic-gate }
21577c478bd9Sstevel@tonic-gate 
21587c478bd9Sstevel@tonic-gate /*
21597c478bd9Sstevel@tonic-gate  * Called to ensure that all pagetables are in the system dump
21607c478bd9Sstevel@tonic-gate  */
21617c478bd9Sstevel@tonic-gate void
21627c478bd9Sstevel@tonic-gate hat_dump(void)
21637c478bd9Sstevel@tonic-gate {
21647c478bd9Sstevel@tonic-gate 	hat_t *hat;
21657c478bd9Sstevel@tonic-gate 	uint_t h;
21667c478bd9Sstevel@tonic-gate 	htable_t *ht;
21677c478bd9Sstevel@tonic-gate 	int count;
21687c478bd9Sstevel@tonic-gate 
21697c478bd9Sstevel@tonic-gate 	/*
21707c478bd9Sstevel@tonic-gate 	 * kas.a_hat is the head of the circular list, but not an element of
21717c478bd9Sstevel@tonic-gate 	 * the list. Once we pass kas.a_hat->hat_next a second time, we
21727c478bd9Sstevel@tonic-gate 	 * know we've iterated through every hat structure.
21737c478bd9Sstevel@tonic-gate 	 */
21747c478bd9Sstevel@tonic-gate 	for (hat = kas.a_hat, count = 0; hat != kas.a_hat->hat_next ||
21757c478bd9Sstevel@tonic-gate 	    count++ == 0; hat = hat->hat_next) {
21767c478bd9Sstevel@tonic-gate 		for (h = 0; h < hat->hat_num_hash; ++h) {
21777c478bd9Sstevel@tonic-gate 			for (ht = hat->hat_ht_hash[h]; ht; ht = ht->ht_next) {
21787c478bd9Sstevel@tonic-gate 				if ((ht->ht_flags & HTABLE_VLP) == 0) {
21797c478bd9Sstevel@tonic-gate 					dump_page(ht->ht_pfn);
21807c478bd9Sstevel@tonic-gate 				}
21817c478bd9Sstevel@tonic-gate 			}
21827c478bd9Sstevel@tonic-gate 		}
21837c478bd9Sstevel@tonic-gate 	}
21847c478bd9Sstevel@tonic-gate }
2185