xref: /illumos-gate/usr/src/uts/common/vm/seg_kmem.c (revision 4fc2445a)
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*4fc2445aSelowe  * 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/t_lock.h>
317c478bd9Sstevel@tonic-gate #include <sys/param.h>
327c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
337c478bd9Sstevel@tonic-gate #include <sys/tuneable.h>
347c478bd9Sstevel@tonic-gate #include <sys/systm.h>
357c478bd9Sstevel@tonic-gate #include <sys/vm.h>
367c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
377c478bd9Sstevel@tonic-gate #include <sys/vmem.h>
387c478bd9Sstevel@tonic-gate #include <sys/mman.h>
397c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
407c478bd9Sstevel@tonic-gate #include <sys/debug.h>
417c478bd9Sstevel@tonic-gate #include <sys/dumphdr.h>
427c478bd9Sstevel@tonic-gate #include <sys/bootconf.h>
437c478bd9Sstevel@tonic-gate #include <sys/lgrp.h>
447c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h>
457c478bd9Sstevel@tonic-gate #include <vm/hat.h>
467c478bd9Sstevel@tonic-gate #include <vm/page.h>
477c478bd9Sstevel@tonic-gate #include <vm/vm_dep.h>
487c478bd9Sstevel@tonic-gate #include <vm/faultcode.h>
497c478bd9Sstevel@tonic-gate #include <sys/promif.h>
507c478bd9Sstevel@tonic-gate #include <vm/seg_kp.h>
517c478bd9Sstevel@tonic-gate #include <sys/bitmap.h>
527c478bd9Sstevel@tonic-gate #include <sys/mem_cage.h>
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate /*
557c478bd9Sstevel@tonic-gate  * seg_kmem is the primary kernel memory segment driver.  It
567c478bd9Sstevel@tonic-gate  * maps the kernel heap [kernelheap, ekernelheap), module text,
577c478bd9Sstevel@tonic-gate  * and all memory which was allocated before the VM was initialized
587c478bd9Sstevel@tonic-gate  * into kas.
597c478bd9Sstevel@tonic-gate  *
607c478bd9Sstevel@tonic-gate  * Pages which belong to seg_kmem are hashed into &kvp vnode at
617c478bd9Sstevel@tonic-gate  * an offset equal to (u_offset_t)virt_addr, and have p_lckcnt >= 1.
627c478bd9Sstevel@tonic-gate  * They must never be paged out since segkmem_fault() is a no-op to
637c478bd9Sstevel@tonic-gate  * prevent recursive faults.
647c478bd9Sstevel@tonic-gate  *
657c478bd9Sstevel@tonic-gate  * Currently, seg_kmem pages are sharelocked (p_sharelock == 1) on
667c478bd9Sstevel@tonic-gate  * __x86 and are unlocked (p_sharelock == 0) on __sparc.  Once __x86
677c478bd9Sstevel@tonic-gate  * supports relocation the #ifdef kludges can be removed.
687c478bd9Sstevel@tonic-gate  *
697c478bd9Sstevel@tonic-gate  * seg_kmem pages may be subject to relocation by page_relocate(),
707c478bd9Sstevel@tonic-gate  * provided that the HAT supports it; if this is so, segkmem_reloc
717c478bd9Sstevel@tonic-gate  * will be set to a nonzero value. All boot time allocated memory as
727c478bd9Sstevel@tonic-gate  * well as static memory is considered off limits to relocation.
737c478bd9Sstevel@tonic-gate  * Pages are "relocatable" if p_state does not have P_NORELOC set, so
747c478bd9Sstevel@tonic-gate  * we request P_NORELOC pages for memory that isn't safe to relocate.
757c478bd9Sstevel@tonic-gate  *
767c478bd9Sstevel@tonic-gate  * The kernel heap is logically divided up into four pieces:
777c478bd9Sstevel@tonic-gate  *
787c478bd9Sstevel@tonic-gate  *   heap32_arena is for allocations that require 32-bit absolute
797c478bd9Sstevel@tonic-gate  *   virtual addresses (e.g. code that uses 32-bit pointers/offsets).
807c478bd9Sstevel@tonic-gate  *
817c478bd9Sstevel@tonic-gate  *   heap_core is for allocations that require 2GB *relative*
827c478bd9Sstevel@tonic-gate  *   offsets; in other words all memory from heap_core is within
837c478bd9Sstevel@tonic-gate  *   2GB of all other memory from the same arena. This is a requirement
847c478bd9Sstevel@tonic-gate  *   of the addressing modes of some processors in supervisor code.
857c478bd9Sstevel@tonic-gate  *
867c478bd9Sstevel@tonic-gate  *   heap_arena is the general heap arena.
877c478bd9Sstevel@tonic-gate  *
887c478bd9Sstevel@tonic-gate  *   static_arena is the static memory arena.  Allocations from it
897c478bd9Sstevel@tonic-gate  *   are not subject to relocation so it is safe to use the memory
907c478bd9Sstevel@tonic-gate  *   physical address as well as the virtual address (e.g. the VA to
917c478bd9Sstevel@tonic-gate  *   PA translations are static).  Caches may import from static_arena;
927c478bd9Sstevel@tonic-gate  *   all other static memory allocations should use static_alloc_arena.
937c478bd9Sstevel@tonic-gate  *
947c478bd9Sstevel@tonic-gate  * On some platforms which have limited virtual address space, seg_kmem
957c478bd9Sstevel@tonic-gate  * may share [kernelheap, ekernelheap) with seg_kp; if this is so,
967c478bd9Sstevel@tonic-gate  * segkp_bitmap is non-NULL, and each bit represents a page of virtual
977c478bd9Sstevel@tonic-gate  * address space which is actually seg_kp mapped.
987c478bd9Sstevel@tonic-gate  */
997c478bd9Sstevel@tonic-gate 
1007c478bd9Sstevel@tonic-gate extern ulong_t *segkp_bitmap;   /* Is set if segkp is from the kernel heap */
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate char *kernelheap;		/* start of primary kernel heap */
1037c478bd9Sstevel@tonic-gate char *ekernelheap;		/* end of primary kernel heap */
1047c478bd9Sstevel@tonic-gate struct seg kvseg;		/* primary kernel heap segment */
1057c478bd9Sstevel@tonic-gate struct seg kvseg_core;		/* "core" kernel heap segment */
1067c478bd9Sstevel@tonic-gate vmem_t *heap_arena;		/* primary kernel heap arena */
1077c478bd9Sstevel@tonic-gate vmem_t *heap_core_arena;	/* core kernel heap arena */
1087c478bd9Sstevel@tonic-gate char *heap_core_base;		/* start of core kernel heap arena */
1097c478bd9Sstevel@tonic-gate char *heap_lp_base;		/* start of kernel large page heap arena */
1107c478bd9Sstevel@tonic-gate char *heap_lp_end;		/* end of kernel large page heap arena */
1117c478bd9Sstevel@tonic-gate vmem_t *hat_memload_arena;	/* HAT translation data */
1127c478bd9Sstevel@tonic-gate struct seg kvseg32;		/* 32-bit kernel heap segment */
1137c478bd9Sstevel@tonic-gate vmem_t *heap32_arena;		/* 32-bit kernel heap arena */
1147c478bd9Sstevel@tonic-gate vmem_t *heaptext_arena;		/* heaptext arena */
1157c478bd9Sstevel@tonic-gate struct as kas;			/* kernel address space */
1167c478bd9Sstevel@tonic-gate struct vnode kvp;		/* vnode for all segkmem pages */
1177c478bd9Sstevel@tonic-gate int segkmem_reloc;		/* enable/disable relocatable segkmem pages */
1187c478bd9Sstevel@tonic-gate vmem_t *static_arena;		/* arena for caches to import static memory */
1197c478bd9Sstevel@tonic-gate vmem_t *static_alloc_arena;	/* arena for allocating static memory */
1207c478bd9Sstevel@tonic-gate 
1217c478bd9Sstevel@tonic-gate /*
1227c478bd9Sstevel@tonic-gate  * seg_kmem driver can map part of the kernel heap with large pages.
1237c478bd9Sstevel@tonic-gate  * Currently this functionality is implemented for sparc platforms only.
1247c478bd9Sstevel@tonic-gate  *
1257c478bd9Sstevel@tonic-gate  * The large page size "segkmem_lpsize" for kernel heap is selected in the
1267c478bd9Sstevel@tonic-gate  * platform specific code. It can also be modified via /etc/system file.
1277c478bd9Sstevel@tonic-gate  * Setting segkmem_lpsize to PAGESIZE in /etc/system disables usage of large
1287c478bd9Sstevel@tonic-gate  * pages for kernel heap. "segkmem_lpshift" is adjusted appropriately to
1297c478bd9Sstevel@tonic-gate  * match segkmem_lpsize.
1307c478bd9Sstevel@tonic-gate  *
1317c478bd9Sstevel@tonic-gate  * At boot time we carve from kernel heap arena a range of virtual addresses
1327c478bd9Sstevel@tonic-gate  * that will be used for large page mappings. This range [heap_lp_base,
1337c478bd9Sstevel@tonic-gate  * heap_lp_end) is set up as a separate vmem arena - "heap_lp_arena". We also
1347c478bd9Sstevel@tonic-gate  * create "kmem_lp_arena" that caches memory already backed up by large
1357c478bd9Sstevel@tonic-gate  * pages. kmem_lp_arena imports virtual segments from heap_lp_arena.
1367c478bd9Sstevel@tonic-gate  */
1377c478bd9Sstevel@tonic-gate 
1387c478bd9Sstevel@tonic-gate size_t	segkmem_lpsize;
1397c478bd9Sstevel@tonic-gate static  uint_t	segkmem_lpshift = PAGESHIFT;
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate size_t  segkmem_kmemlp_quantum = 0x400000;	/* 4MB */
1427c478bd9Sstevel@tonic-gate size_t  segkmem_heaplp_quantum;
1437bc98a2eSeg155566 vmem_t *heap_lp_arena;
1447c478bd9Sstevel@tonic-gate static  vmem_t *kmem_lp_arena;
1457c478bd9Sstevel@tonic-gate static  vmem_t *segkmem_ppa_arena;
1467c478bd9Sstevel@tonic-gate static	segkmem_lpcb_t segkmem_lpcb;
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate /*
1497c478bd9Sstevel@tonic-gate  * We use "segkmem_kmemlp_max" to limit the total amount of physical memory
150501f3284Seg155566  * consumed by the large page heap. By default this parameter is set to 1/8 of
1517c478bd9Sstevel@tonic-gate  * physmem but can be adjusted through /etc/system either directly or
1527c478bd9Sstevel@tonic-gate  * indirectly by setting "segkmem_kmemlp_pcnt" to the percent of physmem
1537c478bd9Sstevel@tonic-gate  * we allow for large page heap.
1547c478bd9Sstevel@tonic-gate  */
1557c478bd9Sstevel@tonic-gate size_t  segkmem_kmemlp_max;
1567c478bd9Sstevel@tonic-gate static  uint_t  segkmem_kmemlp_pcnt;
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate /*
1597c478bd9Sstevel@tonic-gate  * Getting large pages for kernel heap could be problematic due to
1607c478bd9Sstevel@tonic-gate  * physical memory fragmentation. That's why we allow to preallocate
1617c478bd9Sstevel@tonic-gate  * "segkmem_kmemlp_min" bytes at boot time.
1627c478bd9Sstevel@tonic-gate  */
1637c478bd9Sstevel@tonic-gate static  size_t	segkmem_kmemlp_min;
1647c478bd9Sstevel@tonic-gate 
1657c478bd9Sstevel@tonic-gate /*
1667c478bd9Sstevel@tonic-gate  * Throttling is used to avoid expensive tries to allocate large pages
1677c478bd9Sstevel@tonic-gate  * for kernel heap when a lot of succesive attempts to do so fail.
1687c478bd9Sstevel@tonic-gate  */
1697c478bd9Sstevel@tonic-gate static  ulong_t segkmem_lpthrottle_max = 0x400000;
1707c478bd9Sstevel@tonic-gate static  ulong_t segkmem_lpthrottle_start = 0x40;
1717c478bd9Sstevel@tonic-gate static  ulong_t segkmem_use_lpthrottle = 1;
1727c478bd9Sstevel@tonic-gate 
1737c478bd9Sstevel@tonic-gate /*
1747c478bd9Sstevel@tonic-gate  * Freed pages accumulate on a garbage list until segkmem is ready,
1757c478bd9Sstevel@tonic-gate  * at which point we call segkmem_gc() to free it all.
1767c478bd9Sstevel@tonic-gate  */
1777c478bd9Sstevel@tonic-gate typedef struct segkmem_gc_list {
1787c478bd9Sstevel@tonic-gate 	struct segkmem_gc_list	*gc_next;
1797c478bd9Sstevel@tonic-gate 	vmem_t			*gc_arena;
1807c478bd9Sstevel@tonic-gate 	size_t			gc_size;
1817c478bd9Sstevel@tonic-gate } segkmem_gc_list_t;
1827c478bd9Sstevel@tonic-gate 
1837c478bd9Sstevel@tonic-gate static segkmem_gc_list_t *segkmem_gc_list;
1847c478bd9Sstevel@tonic-gate 
1857c478bd9Sstevel@tonic-gate /*
1867c478bd9Sstevel@tonic-gate  * Allocations from the hat_memload arena add VM_MEMLOAD to their
1877c478bd9Sstevel@tonic-gate  * vmflags so that segkmem_xalloc() can inform the hat layer that it needs
1887c478bd9Sstevel@tonic-gate  * to take steps to prevent infinite recursion.  HAT allocations also
1897c478bd9Sstevel@tonic-gate  * must be non-relocatable to prevent recursive page faults.
1907c478bd9Sstevel@tonic-gate  */
1917c478bd9Sstevel@tonic-gate static void *
1927c478bd9Sstevel@tonic-gate hat_memload_alloc(vmem_t *vmp, size_t size, int flags)
1937c478bd9Sstevel@tonic-gate {
1947c478bd9Sstevel@tonic-gate 	flags |= (VM_MEMLOAD | VM_NORELOC);
1957c478bd9Sstevel@tonic-gate 	return (segkmem_alloc(vmp, size, flags));
1967c478bd9Sstevel@tonic-gate }
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate /*
1997c478bd9Sstevel@tonic-gate  * Allocations from static_arena arena (or any other arena that uses
2007c478bd9Sstevel@tonic-gate  * segkmem_alloc_permanent()) require non-relocatable (permanently
2017c478bd9Sstevel@tonic-gate  * wired) memory pages, since these pages are referenced by physical
2027c478bd9Sstevel@tonic-gate  * as well as virtual address.
2037c478bd9Sstevel@tonic-gate  */
2047c478bd9Sstevel@tonic-gate void *
2057c478bd9Sstevel@tonic-gate segkmem_alloc_permanent(vmem_t *vmp, size_t size, int flags)
2067c478bd9Sstevel@tonic-gate {
2077c478bd9Sstevel@tonic-gate 	return (segkmem_alloc(vmp, size, flags | VM_NORELOC));
2087c478bd9Sstevel@tonic-gate }
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate /*
2117c478bd9Sstevel@tonic-gate  * Initialize kernel heap boundaries.
2127c478bd9Sstevel@tonic-gate  */
2137c478bd9Sstevel@tonic-gate void
2147c478bd9Sstevel@tonic-gate kernelheap_init(
2157c478bd9Sstevel@tonic-gate 	void *heap_start,
2167c478bd9Sstevel@tonic-gate 	void *heap_end,
2177c478bd9Sstevel@tonic-gate 	char *first_avail,
2187c478bd9Sstevel@tonic-gate 	void *core_start,
2197c478bd9Sstevel@tonic-gate 	void *core_end)
2207c478bd9Sstevel@tonic-gate {
2217c478bd9Sstevel@tonic-gate 	uintptr_t textbase;
2227c478bd9Sstevel@tonic-gate 	size_t core_size;
2237c478bd9Sstevel@tonic-gate 	size_t heap_size;
2247c478bd9Sstevel@tonic-gate 	vmem_t *heaptext_parent;
2257c478bd9Sstevel@tonic-gate 	size_t	heap_lp_size = 0;
2267c478bd9Sstevel@tonic-gate 
2277c478bd9Sstevel@tonic-gate 	kernelheap = heap_start;
2287c478bd9Sstevel@tonic-gate 	ekernelheap = heap_end;
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate #ifdef __sparc
2317c478bd9Sstevel@tonic-gate 	heap_lp_size = (((uintptr_t)heap_end - (uintptr_t)heap_start) / 4);
2327c478bd9Sstevel@tonic-gate 	heap_lp_base = ekernelheap - heap_lp_size;
2337c478bd9Sstevel@tonic-gate 	heap_lp_end = heap_lp_base + heap_lp_size;
2347c478bd9Sstevel@tonic-gate #endif	/* __sparc */
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate 	/*
2377c478bd9Sstevel@tonic-gate 	 * If this platform has a 'core' heap area, then the space for
2387c478bd9Sstevel@tonic-gate 	 * overflow module text should be carved out of the end of that
2397c478bd9Sstevel@tonic-gate 	 * heap.  Otherwise, it gets carved out of the general purpose
2407c478bd9Sstevel@tonic-gate 	 * heap.
2417c478bd9Sstevel@tonic-gate 	 */
2427c478bd9Sstevel@tonic-gate 	core_size = (uintptr_t)core_end - (uintptr_t)core_start;
2437c478bd9Sstevel@tonic-gate 	if (core_size > 0) {
2447c478bd9Sstevel@tonic-gate 		ASSERT(core_size >= HEAPTEXT_SIZE);
2457c478bd9Sstevel@tonic-gate 		textbase = (uintptr_t)core_end - HEAPTEXT_SIZE;
2467c478bd9Sstevel@tonic-gate 		core_size -= HEAPTEXT_SIZE;
2477c478bd9Sstevel@tonic-gate 	}
2487c478bd9Sstevel@tonic-gate #ifndef __sparc
2497c478bd9Sstevel@tonic-gate 	else {
2507c478bd9Sstevel@tonic-gate 		ekernelheap -= HEAPTEXT_SIZE;
2517c478bd9Sstevel@tonic-gate 		textbase = (uintptr_t)ekernelheap;
2527c478bd9Sstevel@tonic-gate 	}
2537c478bd9Sstevel@tonic-gate #endif
2547c478bd9Sstevel@tonic-gate 
2557c478bd9Sstevel@tonic-gate 	heap_size = (uintptr_t)ekernelheap - (uintptr_t)kernelheap;
2567c478bd9Sstevel@tonic-gate 	heap_arena = vmem_init("heap", kernelheap, heap_size, PAGESIZE,
2577c478bd9Sstevel@tonic-gate 	    segkmem_alloc, segkmem_free);
2587c478bd9Sstevel@tonic-gate 
2597c478bd9Sstevel@tonic-gate 	if (core_size > 0) {
2607c478bd9Sstevel@tonic-gate 		heap_core_arena = vmem_create("heap_core", core_start,
2617c478bd9Sstevel@tonic-gate 		    core_size, PAGESIZE, NULL, NULL, NULL, 0, VM_SLEEP);
2627c478bd9Sstevel@tonic-gate 		heap_core_base = core_start;
2637c478bd9Sstevel@tonic-gate 	} else {
2647c478bd9Sstevel@tonic-gate 		heap_core_arena = heap_arena;
2657c478bd9Sstevel@tonic-gate 		heap_core_base = kernelheap;
2667c478bd9Sstevel@tonic-gate 	}
2677c478bd9Sstevel@tonic-gate 
2687c478bd9Sstevel@tonic-gate 	/*
2697c478bd9Sstevel@tonic-gate 	 * reserve space for the large page heap. If large pages for kernel
2707c478bd9Sstevel@tonic-gate 	 * heap is enabled large page heap arean will be created later in the
2717c478bd9Sstevel@tonic-gate 	 * boot sequence in segkmem_heap_lp_init(). Otherwise the allocated
2727c478bd9Sstevel@tonic-gate 	 * range will be returned back to the heap_arena.
2737c478bd9Sstevel@tonic-gate 	 */
2747c478bd9Sstevel@tonic-gate 	if (heap_lp_size) {
2757c478bd9Sstevel@tonic-gate 		(void) vmem_xalloc(heap_arena, heap_lp_size, PAGESIZE, 0, 0,
2767c478bd9Sstevel@tonic-gate 		    heap_lp_base, heap_lp_end,
2777c478bd9Sstevel@tonic-gate 		    VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
2787c478bd9Sstevel@tonic-gate 	}
2797c478bd9Sstevel@tonic-gate 
2807c478bd9Sstevel@tonic-gate 	/*
2817c478bd9Sstevel@tonic-gate 	 * Remove the already-spoken-for memory range [kernelheap, first_avail).
2827c478bd9Sstevel@tonic-gate 	 */
2837c478bd9Sstevel@tonic-gate 	(void) vmem_xalloc(heap_arena, first_avail - kernelheap, PAGESIZE,
2847c478bd9Sstevel@tonic-gate 	    0, 0, kernelheap, first_avail, VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
2857c478bd9Sstevel@tonic-gate 
2867c478bd9Sstevel@tonic-gate #ifdef __sparc
2877c478bd9Sstevel@tonic-gate 	heap32_arena = vmem_create("heap32", (void *)SYSBASE32,
2887c478bd9Sstevel@tonic-gate 	    SYSLIMIT32 - SYSBASE32 - HEAPTEXT_SIZE, PAGESIZE, NULL,
2897c478bd9Sstevel@tonic-gate 	    NULL, NULL, 0, VM_SLEEP);
2907c478bd9Sstevel@tonic-gate 
2917c478bd9Sstevel@tonic-gate 	textbase = SYSLIMIT32 - HEAPTEXT_SIZE;
2927c478bd9Sstevel@tonic-gate 	heaptext_parent = NULL;
2937c478bd9Sstevel@tonic-gate #else	/* __sparc */
2947c478bd9Sstevel@tonic-gate 	heap32_arena = heap_core_arena;
2957c478bd9Sstevel@tonic-gate 	heaptext_parent = heap_core_arena;
2967c478bd9Sstevel@tonic-gate #endif	/* __sparc */
2977c478bd9Sstevel@tonic-gate 
2987c478bd9Sstevel@tonic-gate 	heaptext_arena = vmem_create("heaptext", (void *)textbase,
2997c478bd9Sstevel@tonic-gate 	    HEAPTEXT_SIZE, PAGESIZE, NULL, NULL, heaptext_parent, 0, VM_SLEEP);
3007c478bd9Sstevel@tonic-gate 
3017c478bd9Sstevel@tonic-gate 	/*
3027c478bd9Sstevel@tonic-gate 	 * Create a set of arenas for memory with static translations
3037c478bd9Sstevel@tonic-gate 	 * (e.g. VA -> PA translations cannot change).  Since using
3047c478bd9Sstevel@tonic-gate 	 * kernel pages by physical address implies it isn't safe to
3057c478bd9Sstevel@tonic-gate 	 * walk across page boundaries, the static_arena quantum must
3067c478bd9Sstevel@tonic-gate 	 * be PAGESIZE.  Any kmem caches that require static memory
3077c478bd9Sstevel@tonic-gate 	 * should source from static_arena, while direct allocations
3087c478bd9Sstevel@tonic-gate 	 * should only use static_alloc_arena.
3097c478bd9Sstevel@tonic-gate 	 */
3107c478bd9Sstevel@tonic-gate 	static_arena = vmem_create("static", NULL, 0, PAGESIZE,
3117c478bd9Sstevel@tonic-gate 	    segkmem_alloc_permanent, segkmem_free, heap_arena, 0, VM_SLEEP);
3127c478bd9Sstevel@tonic-gate 	static_alloc_arena = vmem_create("static_alloc", NULL, 0,
3137c478bd9Sstevel@tonic-gate 	    sizeof (uint64_t), vmem_alloc, vmem_free, static_arena,
3147c478bd9Sstevel@tonic-gate 	    0, VM_SLEEP);
3157c478bd9Sstevel@tonic-gate 
3167c478bd9Sstevel@tonic-gate 	/*
3177c478bd9Sstevel@tonic-gate 	 * Create an arena for translation data (ptes, hmes, or hblks).
3187c478bd9Sstevel@tonic-gate 	 * We need an arena for this because hat_memload() is essential
3197c478bd9Sstevel@tonic-gate 	 * to vmem_populate() (see comments in common/os/vmem.c).
3207c478bd9Sstevel@tonic-gate 	 *
3217c478bd9Sstevel@tonic-gate 	 * Note: any kmem cache that allocates from hat_memload_arena
3227c478bd9Sstevel@tonic-gate 	 * must be created as a KMC_NOHASH cache (i.e. no external slab
3237c478bd9Sstevel@tonic-gate 	 * and bufctl structures to allocate) so that slab creation doesn't
3247c478bd9Sstevel@tonic-gate 	 * require anything more than a single vmem_alloc().
3257c478bd9Sstevel@tonic-gate 	 */
3267c478bd9Sstevel@tonic-gate 	hat_memload_arena = vmem_create("hat_memload", NULL, 0, PAGESIZE,
3277c478bd9Sstevel@tonic-gate 	    hat_memload_alloc, segkmem_free, heap_arena, 0,
3287c478bd9Sstevel@tonic-gate 	    VM_SLEEP | VMC_POPULATOR);
3297c478bd9Sstevel@tonic-gate }
3307c478bd9Sstevel@tonic-gate 
3317c478bd9Sstevel@tonic-gate /*
3327c478bd9Sstevel@tonic-gate  * Grow kernel heap downward.
3337c478bd9Sstevel@tonic-gate  */
3347c478bd9Sstevel@tonic-gate void
3357c478bd9Sstevel@tonic-gate kernelheap_extend(void *range_start, void *range_end)
3367c478bd9Sstevel@tonic-gate {
3377c478bd9Sstevel@tonic-gate 	size_t len = (uintptr_t)range_end - (uintptr_t)range_start;
3387c478bd9Sstevel@tonic-gate 
3397c478bd9Sstevel@tonic-gate 	ASSERT(range_start < range_end && range_end == kernelheap);
3407c478bd9Sstevel@tonic-gate 
3417c478bd9Sstevel@tonic-gate 	if (vmem_add(heap_arena, range_start, len, VM_NOSLEEP) == NULL) {
3427c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "Could not grow kernel heap below 0x%p",
3437c478bd9Sstevel@tonic-gate 		    (void *)kernelheap);
3447c478bd9Sstevel@tonic-gate 	} else {
3457c478bd9Sstevel@tonic-gate 		kernelheap = range_start;
3467c478bd9Sstevel@tonic-gate 	}
3477c478bd9Sstevel@tonic-gate }
3487c478bd9Sstevel@tonic-gate 
3497c478bd9Sstevel@tonic-gate void
3507c478bd9Sstevel@tonic-gate boot_mapin(caddr_t addr, size_t size)
3517c478bd9Sstevel@tonic-gate {
3527c478bd9Sstevel@tonic-gate 	caddr_t	 eaddr;
3537c478bd9Sstevel@tonic-gate 	page_t	*pp;
3547c478bd9Sstevel@tonic-gate 	pfn_t	 pfnum;
3557c478bd9Sstevel@tonic-gate 
3567c478bd9Sstevel@tonic-gate 	if (page_resv(btop(size), KM_NOSLEEP) == 0)
3577c478bd9Sstevel@tonic-gate 		panic("boot_mapin: page_resv failed");
3587c478bd9Sstevel@tonic-gate 
3597c478bd9Sstevel@tonic-gate 	for (eaddr = addr + size; addr < eaddr; addr += PAGESIZE) {
3607c478bd9Sstevel@tonic-gate 		pfnum = va_to_pfn(addr);
3617c478bd9Sstevel@tonic-gate 		if ((pp = page_numtopp_nolock(pfnum)) == NULL)
3627c478bd9Sstevel@tonic-gate 			panic("boot_mapin(): No pp for pfnum = %lx", pfnum);
3637c478bd9Sstevel@tonic-gate 
3647c478bd9Sstevel@tonic-gate 		/*
3657c478bd9Sstevel@tonic-gate 		 * must break up any large pages that may have constituent
3667c478bd9Sstevel@tonic-gate 		 * pages being utilized for BOP_ALLOC()'s before calling
3677c478bd9Sstevel@tonic-gate 		 * page_numtopp().The locking code (ie. page_reclaim())
3687c478bd9Sstevel@tonic-gate 		 * can't handle them
3697c478bd9Sstevel@tonic-gate 		 */
3707c478bd9Sstevel@tonic-gate 		if (pp->p_szc != 0)
3717c478bd9Sstevel@tonic-gate 			page_boot_demote(pp);
3727c478bd9Sstevel@tonic-gate 
3737c478bd9Sstevel@tonic-gate 		pp = page_numtopp(pfnum, SE_EXCL);
3747c478bd9Sstevel@tonic-gate 		if (pp == NULL || PP_ISFREE(pp))
3757c478bd9Sstevel@tonic-gate 			panic("boot_alloc: pp is NULL or free");
3767c478bd9Sstevel@tonic-gate 
3777c478bd9Sstevel@tonic-gate 		/*
3787c478bd9Sstevel@tonic-gate 		 * If the cage is on but doesn't yet contain this page,
3797c478bd9Sstevel@tonic-gate 		 * mark it as non-relocatable.
3807c478bd9Sstevel@tonic-gate 		 */
3817c478bd9Sstevel@tonic-gate 		if (kcage_on && !PP_ISNORELOC(pp))
3827c478bd9Sstevel@tonic-gate 			PP_SETNORELOC(pp);
3837c478bd9Sstevel@tonic-gate 
3847c478bd9Sstevel@tonic-gate 		(void) page_hashin(pp, &kvp, (u_offset_t)(uintptr_t)addr, NULL);
3857c478bd9Sstevel@tonic-gate 		pp->p_lckcnt = 1;
3867c478bd9Sstevel@tonic-gate #if defined(__x86)
3877c478bd9Sstevel@tonic-gate 		page_downgrade(pp);
3887c478bd9Sstevel@tonic-gate #else
3897c478bd9Sstevel@tonic-gate 		page_unlock(pp);
3907c478bd9Sstevel@tonic-gate #endif
3917c478bd9Sstevel@tonic-gate 	}
3927c478bd9Sstevel@tonic-gate }
3937c478bd9Sstevel@tonic-gate 
3947c478bd9Sstevel@tonic-gate /*
3957c478bd9Sstevel@tonic-gate  * Get pages from boot and hash them into the kernel's vp.
3967c478bd9Sstevel@tonic-gate  * Used after page structs have been allocated, but before segkmem is ready.
3977c478bd9Sstevel@tonic-gate  */
3987c478bd9Sstevel@tonic-gate void *
3997c478bd9Sstevel@tonic-gate boot_alloc(void *inaddr, size_t size, uint_t align)
4007c478bd9Sstevel@tonic-gate {
4017c478bd9Sstevel@tonic-gate 	caddr_t addr = inaddr;
4027c478bd9Sstevel@tonic-gate 
4037c478bd9Sstevel@tonic-gate 	if (bootops == NULL)
4047c478bd9Sstevel@tonic-gate 		prom_panic("boot_alloc: attempt to allocate memory after "
4057c478bd9Sstevel@tonic-gate 		    "BOP_GONE");
4067c478bd9Sstevel@tonic-gate 
4077c478bd9Sstevel@tonic-gate 	size = ptob(btopr(size));
4087c478bd9Sstevel@tonic-gate 	if (BOP_ALLOC(bootops, addr, size, align) != addr)
4097c478bd9Sstevel@tonic-gate 		panic("boot_alloc: BOP_ALLOC failed");
4107c478bd9Sstevel@tonic-gate 	boot_mapin((caddr_t)addr, size);
4117c478bd9Sstevel@tonic-gate 	return (addr);
4127c478bd9Sstevel@tonic-gate }
4137c478bd9Sstevel@tonic-gate 
4147c478bd9Sstevel@tonic-gate static void
4157c478bd9Sstevel@tonic-gate segkmem_badop()
4167c478bd9Sstevel@tonic-gate {
4177c478bd9Sstevel@tonic-gate 	panic("segkmem_badop");
4187c478bd9Sstevel@tonic-gate }
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate #define	SEGKMEM_BADOP(t)	(t(*)())segkmem_badop
4217c478bd9Sstevel@tonic-gate 
4227c478bd9Sstevel@tonic-gate /*ARGSUSED*/
4237c478bd9Sstevel@tonic-gate static faultcode_t
4247c478bd9Sstevel@tonic-gate segkmem_fault(struct hat *hat, struct seg *seg, caddr_t addr, size_t size,
4257c478bd9Sstevel@tonic-gate 	enum fault_type type, enum seg_rw rw)
4267c478bd9Sstevel@tonic-gate {
427*4fc2445aSelowe 	pgcnt_t npages;
428*4fc2445aSelowe 	spgcnt_t pg;
429*4fc2445aSelowe 	page_t *pp;
430*4fc2445aSelowe 
4317c478bd9Sstevel@tonic-gate 	ASSERT(RW_READ_HELD(&seg->s_as->a_lock));
4327c478bd9Sstevel@tonic-gate 
4337c478bd9Sstevel@tonic-gate 	if (seg->s_as != &kas || size > seg->s_size ||
4347c478bd9Sstevel@tonic-gate 	    addr < seg->s_base || addr + size > seg->s_base + seg->s_size)
4357c478bd9Sstevel@tonic-gate 		panic("segkmem_fault: bad args");
4367c478bd9Sstevel@tonic-gate 
4377c478bd9Sstevel@tonic-gate 	if (segkp_bitmap && seg == &kvseg) {
4387c478bd9Sstevel@tonic-gate 		/*
4397c478bd9Sstevel@tonic-gate 		 * If it is one of segkp pages, call segkp_fault.
4407c478bd9Sstevel@tonic-gate 		 */
4417c478bd9Sstevel@tonic-gate 		if (BT_TEST(segkp_bitmap,
4427c478bd9Sstevel@tonic-gate 			btop((uintptr_t)(addr - seg->s_base))))
4437c478bd9Sstevel@tonic-gate 			return (SEGOP_FAULT(hat, segkp, addr, size, type, rw));
4447c478bd9Sstevel@tonic-gate 	}
4457c478bd9Sstevel@tonic-gate 
446*4fc2445aSelowe 	if (rw != S_READ && rw != S_WRITE && rw != S_OTHER)
447*4fc2445aSelowe 		return (FC_NOSUPPORT);
448*4fc2445aSelowe 
449*4fc2445aSelowe 	npages = btopr(size);
450*4fc2445aSelowe 
4517c478bd9Sstevel@tonic-gate 	switch (type) {
4527c478bd9Sstevel@tonic-gate 	case F_SOFTLOCK:	/* lock down already-loaded translations */
453*4fc2445aSelowe 		for (pg = 0; pg < npages; pg++) {
454*4fc2445aSelowe 			pp = page_lookup(&kvp, (u_offset_t)(uintptr_t)addr,
455*4fc2445aSelowe 			    SE_SHARED);
456*4fc2445aSelowe 			if (pp == NULL) {
457*4fc2445aSelowe 				/*
458*4fc2445aSelowe 				 * Hmm, no page. Does a kernel mapping
459*4fc2445aSelowe 				 * exist for it?
460*4fc2445aSelowe 				 */
461*4fc2445aSelowe 				if (!hat_probe(kas.a_hat, addr)) {
462*4fc2445aSelowe 					addr -= PAGESIZE;
463*4fc2445aSelowe 					while (--pg >= 0) {
464*4fc2445aSelowe 						pp = page_find(&kvp,
465*4fc2445aSelowe 						(u_offset_t)(uintptr_t)addr);
466*4fc2445aSelowe 						if (pp)
467*4fc2445aSelowe 							page_unlock(pp);
468*4fc2445aSelowe 						addr -= PAGESIZE;
469*4fc2445aSelowe 					}
470*4fc2445aSelowe 					return (FC_NOMAP);
471*4fc2445aSelowe 				}
472*4fc2445aSelowe 			}
473*4fc2445aSelowe 			addr += PAGESIZE;
474*4fc2445aSelowe 		}
475*4fc2445aSelowe 		if (rw == S_OTHER)
4767c478bd9Sstevel@tonic-gate 			hat_reserve(seg->s_as, addr, size);
4777c478bd9Sstevel@tonic-gate 		return (0);
4787c478bd9Sstevel@tonic-gate 	case F_SOFTUNLOCK:
479*4fc2445aSelowe 		while (npages--) {
480*4fc2445aSelowe 			pp = page_find(&kvp, (u_offset_t)(uintptr_t)addr);
481*4fc2445aSelowe 			if (pp)
482*4fc2445aSelowe 				page_unlock(pp);
483*4fc2445aSelowe 			addr += PAGESIZE;
4847c478bd9Sstevel@tonic-gate 		}
485*4fc2445aSelowe 		return (0);
486*4fc2445aSelowe 	default:
4877c478bd9Sstevel@tonic-gate 		return (FC_NOSUPPORT);
4887c478bd9Sstevel@tonic-gate 	}
489*4fc2445aSelowe 	/*NOTREACHED*/
490*4fc2445aSelowe }
4917c478bd9Sstevel@tonic-gate 
4927c478bd9Sstevel@tonic-gate static int
4937c478bd9Sstevel@tonic-gate segkmem_setprot(struct seg *seg, caddr_t addr, size_t size, uint_t prot)
4947c478bd9Sstevel@tonic-gate {
4957c478bd9Sstevel@tonic-gate 	ASSERT(RW_LOCK_HELD(&seg->s_as->a_lock));
4967c478bd9Sstevel@tonic-gate 
4977c478bd9Sstevel@tonic-gate 	if (seg->s_as != &kas || size > seg->s_size ||
4987c478bd9Sstevel@tonic-gate 	    addr < seg->s_base || addr + size > seg->s_base + seg->s_size)
4997c478bd9Sstevel@tonic-gate 		panic("segkmem_setprot: bad args");
5007c478bd9Sstevel@tonic-gate 
5017c478bd9Sstevel@tonic-gate 	if (segkp_bitmap && seg == &kvseg) {
5027c478bd9Sstevel@tonic-gate 
5037c478bd9Sstevel@tonic-gate 		/*
5047c478bd9Sstevel@tonic-gate 		 * If it is one of segkp pages, call segkp.
5057c478bd9Sstevel@tonic-gate 		 */
5067c478bd9Sstevel@tonic-gate 		if (BT_TEST(segkp_bitmap,
5077c478bd9Sstevel@tonic-gate 			btop((uintptr_t)(addr - seg->s_base))))
5087c478bd9Sstevel@tonic-gate 			return (SEGOP_SETPROT(segkp, addr, size, prot));
5097c478bd9Sstevel@tonic-gate 	}
5107c478bd9Sstevel@tonic-gate 
5117c478bd9Sstevel@tonic-gate 	if (prot == 0)
5127c478bd9Sstevel@tonic-gate 		hat_unload(kas.a_hat, addr, size, HAT_UNLOAD);
5137c478bd9Sstevel@tonic-gate 	else
5147c478bd9Sstevel@tonic-gate 		hat_chgprot(kas.a_hat, addr, size, prot);
5157c478bd9Sstevel@tonic-gate 	return (0);
5167c478bd9Sstevel@tonic-gate }
5177c478bd9Sstevel@tonic-gate 
5187c478bd9Sstevel@tonic-gate /*
5197c478bd9Sstevel@tonic-gate  * This is a dummy segkmem function overloaded to call segkp
5207c478bd9Sstevel@tonic-gate  * when segkp is under the heap.
5217c478bd9Sstevel@tonic-gate  */
5227c478bd9Sstevel@tonic-gate /* ARGSUSED */
5237c478bd9Sstevel@tonic-gate static int
5247c478bd9Sstevel@tonic-gate segkmem_checkprot(struct seg *seg, caddr_t addr, size_t size, uint_t prot)
5257c478bd9Sstevel@tonic-gate {
5267c478bd9Sstevel@tonic-gate 	ASSERT(RW_LOCK_HELD(&seg->s_as->a_lock));
5277c478bd9Sstevel@tonic-gate 
5287c478bd9Sstevel@tonic-gate 	if (seg->s_as != &kas)
5297c478bd9Sstevel@tonic-gate 		segkmem_badop();
5307c478bd9Sstevel@tonic-gate 
5317c478bd9Sstevel@tonic-gate 	if (segkp_bitmap && seg == &kvseg) {
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate 		/*
5347c478bd9Sstevel@tonic-gate 		 * If it is one of segkp pages, call into segkp.
5357c478bd9Sstevel@tonic-gate 		 */
5367c478bd9Sstevel@tonic-gate 		if (BT_TEST(segkp_bitmap,
5377c478bd9Sstevel@tonic-gate 			btop((uintptr_t)(addr - seg->s_base))))
5387c478bd9Sstevel@tonic-gate 			return (SEGOP_CHECKPROT(segkp, addr, size, prot));
5397c478bd9Sstevel@tonic-gate 	}
5407c478bd9Sstevel@tonic-gate 	segkmem_badop();
5417c478bd9Sstevel@tonic-gate 	return (0);
5427c478bd9Sstevel@tonic-gate }
5437c478bd9Sstevel@tonic-gate 
5447c478bd9Sstevel@tonic-gate /*
5457c478bd9Sstevel@tonic-gate  * This is a dummy segkmem function overloaded to call segkp
5467c478bd9Sstevel@tonic-gate  * when segkp is under the heap.
5477c478bd9Sstevel@tonic-gate  */
5487c478bd9Sstevel@tonic-gate /* ARGSUSED */
5497c478bd9Sstevel@tonic-gate static int
5507c478bd9Sstevel@tonic-gate segkmem_kluster(struct seg *seg, caddr_t addr, ssize_t delta)
5517c478bd9Sstevel@tonic-gate {
5527c478bd9Sstevel@tonic-gate 	ASSERT(RW_LOCK_HELD(&seg->s_as->a_lock));
5537c478bd9Sstevel@tonic-gate 
5547c478bd9Sstevel@tonic-gate 	if (seg->s_as != &kas)
5557c478bd9Sstevel@tonic-gate 		segkmem_badop();
5567c478bd9Sstevel@tonic-gate 
5577c478bd9Sstevel@tonic-gate 	if (segkp_bitmap && seg == &kvseg) {
5587c478bd9Sstevel@tonic-gate 
5597c478bd9Sstevel@tonic-gate 		/*
5607c478bd9Sstevel@tonic-gate 		 * If it is one of segkp pages, call into segkp.
5617c478bd9Sstevel@tonic-gate 		 */
5627c478bd9Sstevel@tonic-gate 		if (BT_TEST(segkp_bitmap,
5637c478bd9Sstevel@tonic-gate 			btop((uintptr_t)(addr - seg->s_base))))
5647c478bd9Sstevel@tonic-gate 			return (SEGOP_KLUSTER(segkp, addr, delta));
5657c478bd9Sstevel@tonic-gate 	}
5667c478bd9Sstevel@tonic-gate 	segkmem_badop();
5677c478bd9Sstevel@tonic-gate 	return (0);
5687c478bd9Sstevel@tonic-gate }
5697c478bd9Sstevel@tonic-gate 
5707c478bd9Sstevel@tonic-gate static void
5717c478bd9Sstevel@tonic-gate segkmem_xdump_range(void *arg, void *start, size_t size)
5727c478bd9Sstevel@tonic-gate {
5737c478bd9Sstevel@tonic-gate 	struct as *as = arg;
5747c478bd9Sstevel@tonic-gate 	caddr_t addr = start;
5757c478bd9Sstevel@tonic-gate 	caddr_t addr_end = addr + size;
5767c478bd9Sstevel@tonic-gate 
5777c478bd9Sstevel@tonic-gate 	while (addr < addr_end) {
5787c478bd9Sstevel@tonic-gate 		pfn_t pfn = hat_getpfnum(kas.a_hat, addr);
5797c478bd9Sstevel@tonic-gate 		if (pfn != PFN_INVALID && pfn <= physmax && pf_is_memory(pfn))
5807c478bd9Sstevel@tonic-gate 			dump_addpage(as, addr, pfn);
5817c478bd9Sstevel@tonic-gate 		addr += PAGESIZE;
5827c478bd9Sstevel@tonic-gate 		dump_timeleft = dump_timeout;
5837c478bd9Sstevel@tonic-gate 	}
5847c478bd9Sstevel@tonic-gate }
5857c478bd9Sstevel@tonic-gate 
5867c478bd9Sstevel@tonic-gate static void
5877c478bd9Sstevel@tonic-gate segkmem_dump_range(void *arg, void *start, size_t size)
5887c478bd9Sstevel@tonic-gate {
5897c478bd9Sstevel@tonic-gate 	caddr_t addr = start;
5907c478bd9Sstevel@tonic-gate 	caddr_t addr_end = addr + size;
5917c478bd9Sstevel@tonic-gate 
5927c478bd9Sstevel@tonic-gate 	/*
5937c478bd9Sstevel@tonic-gate 	 * If we are about to start dumping the range of addresses we
5947c478bd9Sstevel@tonic-gate 	 * carved out of the kernel heap for the large page heap walk
5957c478bd9Sstevel@tonic-gate 	 * heap_lp_arena to find what segments are actually populated
5967c478bd9Sstevel@tonic-gate 	 */
5977c478bd9Sstevel@tonic-gate 	if (SEGKMEM_USE_LARGEPAGES &&
5987c478bd9Sstevel@tonic-gate 	    addr == heap_lp_base && addr_end == heap_lp_end &&
5997c478bd9Sstevel@tonic-gate 	    vmem_size(heap_lp_arena, VMEM_ALLOC) < size) {
6007c478bd9Sstevel@tonic-gate 		vmem_walk(heap_lp_arena, VMEM_ALLOC | VMEM_REENTRANT,
6017c478bd9Sstevel@tonic-gate 		    segkmem_xdump_range, arg);
6027c478bd9Sstevel@tonic-gate 	} else {
6037c478bd9Sstevel@tonic-gate 		segkmem_xdump_range(arg, start, size);
6047c478bd9Sstevel@tonic-gate 	}
6057c478bd9Sstevel@tonic-gate }
6067c478bd9Sstevel@tonic-gate 
6077c478bd9Sstevel@tonic-gate static void
6087c478bd9Sstevel@tonic-gate segkmem_dump(struct seg *seg)
6097c478bd9Sstevel@tonic-gate {
6107c478bd9Sstevel@tonic-gate 	/*
6117c478bd9Sstevel@tonic-gate 	 * The kernel's heap_arena (represented by kvseg) is a very large
6127c478bd9Sstevel@tonic-gate 	 * VA space, most of which is typically unused.  To speed up dumping
6137c478bd9Sstevel@tonic-gate 	 * we use vmem_walk() to quickly find the pieces of heap_arena that
6147c478bd9Sstevel@tonic-gate 	 * are actually in use.  We do the same for heap32_arena and
6157c478bd9Sstevel@tonic-gate 	 * heap_core.
6167c478bd9Sstevel@tonic-gate 	 *
6177c478bd9Sstevel@tonic-gate 	 * We specify VMEM_REENTRANT to vmem_walk() because dump_addpage()
6187c478bd9Sstevel@tonic-gate 	 * may ultimately need to allocate memory.  Reentrant walks are
6197c478bd9Sstevel@tonic-gate 	 * necessarily imperfect snapshots.  The kernel heap continues
6207c478bd9Sstevel@tonic-gate 	 * to change during a live crash dump, for example.  For a normal
6217c478bd9Sstevel@tonic-gate 	 * crash dump, however, we know that there won't be any other threads
6227c478bd9Sstevel@tonic-gate 	 * messing with the heap.  Therefore, at worst, we may fail to dump
6237c478bd9Sstevel@tonic-gate 	 * the pages that get allocated by the act of dumping; but we will
6247c478bd9Sstevel@tonic-gate 	 * always dump every page that was allocated when the walk began.
6257c478bd9Sstevel@tonic-gate 	 *
6267c478bd9Sstevel@tonic-gate 	 * The other segkmem segments are dense (fully populated), so there's
6277c478bd9Sstevel@tonic-gate 	 * no need to use this technique when dumping them.
6287c478bd9Sstevel@tonic-gate 	 *
6297c478bd9Sstevel@tonic-gate 	 * Note: when adding special dump handling for any new sparsely-
6307c478bd9Sstevel@tonic-gate 	 * populated segments, be sure to add similar handling to the ::kgrep
6317c478bd9Sstevel@tonic-gate 	 * code in mdb.
6327c478bd9Sstevel@tonic-gate 	 */
6337c478bd9Sstevel@tonic-gate 	if (seg == &kvseg) {
6347c478bd9Sstevel@tonic-gate 		vmem_walk(heap_arena, VMEM_ALLOC | VMEM_REENTRANT,
6357c478bd9Sstevel@tonic-gate 		    segkmem_dump_range, seg->s_as);
6367c478bd9Sstevel@tonic-gate #ifndef __sparc
6377c478bd9Sstevel@tonic-gate 		vmem_walk(heaptext_arena, VMEM_ALLOC | VMEM_REENTRANT,
6387c478bd9Sstevel@tonic-gate 		    segkmem_dump_range, seg->s_as);
6397c478bd9Sstevel@tonic-gate #endif
6407c478bd9Sstevel@tonic-gate 	} else if (seg == &kvseg_core) {
6417c478bd9Sstevel@tonic-gate 		vmem_walk(heap_core_arena, VMEM_ALLOC | VMEM_REENTRANT,
6427c478bd9Sstevel@tonic-gate 		    segkmem_dump_range, seg->s_as);
6437c478bd9Sstevel@tonic-gate 	} else if (seg == &kvseg32) {
6447c478bd9Sstevel@tonic-gate 		vmem_walk(heap32_arena, VMEM_ALLOC | VMEM_REENTRANT,
6457c478bd9Sstevel@tonic-gate 		    segkmem_dump_range, seg->s_as);
6467c478bd9Sstevel@tonic-gate 		vmem_walk(heaptext_arena, VMEM_ALLOC | VMEM_REENTRANT,
6477c478bd9Sstevel@tonic-gate 		    segkmem_dump_range, seg->s_as);
6487c478bd9Sstevel@tonic-gate 	} else {
6497c478bd9Sstevel@tonic-gate 		segkmem_dump_range(seg->s_as, seg->s_base, seg->s_size);
6507c478bd9Sstevel@tonic-gate 	}
6517c478bd9Sstevel@tonic-gate }
6527c478bd9Sstevel@tonic-gate 
6537c478bd9Sstevel@tonic-gate /*
6547c478bd9Sstevel@tonic-gate  * lock/unlock kmem pages over a given range [addr, addr+len).
655*4fc2445aSelowe  * Returns a shadow list of pages in ppp. If there are holes
656*4fc2445aSelowe  * in the range (e.g. some of the kernel mappings do not have
657*4fc2445aSelowe  * underlying page_ts) returns ENOTSUP so that as_pagelock()
658*4fc2445aSelowe  * will handle the range via as_fault(F_SOFTLOCK).
6597c478bd9Sstevel@tonic-gate  */
6607c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6617c478bd9Sstevel@tonic-gate static int
6627c478bd9Sstevel@tonic-gate segkmem_pagelock(struct seg *seg, caddr_t addr, size_t len,
6637c478bd9Sstevel@tonic-gate 	page_t ***ppp, enum lock_type type, enum seg_rw rw)
6647c478bd9Sstevel@tonic-gate {
6657c478bd9Sstevel@tonic-gate 	page_t **pplist, *pp;
6667c478bd9Sstevel@tonic-gate 	pgcnt_t npages;
667*4fc2445aSelowe 	spgcnt_t pg;
6687c478bd9Sstevel@tonic-gate 	size_t nb;
6697c478bd9Sstevel@tonic-gate 
670*4fc2445aSelowe 	ASSERT(ppp != NULL);
671*4fc2445aSelowe 
6727c478bd9Sstevel@tonic-gate 	if (segkp_bitmap && seg == &kvseg) {
6737c478bd9Sstevel@tonic-gate 		/*
6747c478bd9Sstevel@tonic-gate 		 * If it is one of segkp pages, call into segkp.
6757c478bd9Sstevel@tonic-gate 		 */
6767c478bd9Sstevel@tonic-gate 		if (BT_TEST(segkp_bitmap,
6777c478bd9Sstevel@tonic-gate 			btop((uintptr_t)(addr - seg->s_base))))
6787c478bd9Sstevel@tonic-gate 			return (SEGOP_PAGELOCK(segkp, addr, len, ppp,
6797c478bd9Sstevel@tonic-gate 						type, rw));
6807c478bd9Sstevel@tonic-gate 	}
6817c478bd9Sstevel@tonic-gate 
6827c478bd9Sstevel@tonic-gate 	if (type == L_PAGERECLAIM)
6837c478bd9Sstevel@tonic-gate 		return (ENOTSUP);
6847c478bd9Sstevel@tonic-gate 
6857c478bd9Sstevel@tonic-gate 	npages = btopr(len);
6867c478bd9Sstevel@tonic-gate 	nb = sizeof (page_t *) * npages;
6877c478bd9Sstevel@tonic-gate 
6887c478bd9Sstevel@tonic-gate 	if (type == L_PAGEUNLOCK) {
689*4fc2445aSelowe 		pplist = *ppp;
690*4fc2445aSelowe 		ASSERT(pplist != NULL);
6917c478bd9Sstevel@tonic-gate 
692*4fc2445aSelowe 		for (pg = 0; pg < npages; pg++) {
693*4fc2445aSelowe 			pp = pplist[pg];
6947c478bd9Sstevel@tonic-gate 			page_unlock(pp);
6957c478bd9Sstevel@tonic-gate 		}
696*4fc2445aSelowe 		kmem_free(pplist, nb);
6977c478bd9Sstevel@tonic-gate 		return (0);
6987c478bd9Sstevel@tonic-gate 	}
6997c478bd9Sstevel@tonic-gate 
7007c478bd9Sstevel@tonic-gate 	ASSERT(type == L_PAGELOCK);
7017c478bd9Sstevel@tonic-gate 
702*4fc2445aSelowe 	pplist = kmem_alloc(nb, KM_NOSLEEP);
703*4fc2445aSelowe 	if (pplist == NULL) {
704*4fc2445aSelowe 		*ppp = NULL;
705*4fc2445aSelowe 		return (ENOTSUP);	/* take the slow path */
706*4fc2445aSelowe 	}
7077c478bd9Sstevel@tonic-gate 
708*4fc2445aSelowe 	for (pg = 0; pg < npages; pg++) {
7097c478bd9Sstevel@tonic-gate 		pp = page_lookup(&kvp, (u_offset_t)(uintptr_t)addr, SE_SHARED);
710*4fc2445aSelowe 		if (pp == NULL) {
711*4fc2445aSelowe 			while (--pg >= 0)
712*4fc2445aSelowe 				page_unlock(pplist[pg]);
713*4fc2445aSelowe 			kmem_free(pplist, nb);
714*4fc2445aSelowe 			*ppp = NULL;
715*4fc2445aSelowe 			return (ENOTSUP);
716*4fc2445aSelowe 		}
717*4fc2445aSelowe 		pplist[pg] = pp;
7187c478bd9Sstevel@tonic-gate 		addr += PAGESIZE;
7197c478bd9Sstevel@tonic-gate 	}
720*4fc2445aSelowe 
721*4fc2445aSelowe 	*ppp = pplist;
7227c478bd9Sstevel@tonic-gate 	return (0);
7237c478bd9Sstevel@tonic-gate }
7247c478bd9Sstevel@tonic-gate 
7257c478bd9Sstevel@tonic-gate /*
7267c478bd9Sstevel@tonic-gate  * This is a dummy segkmem function overloaded to call segkp
7277c478bd9Sstevel@tonic-gate  * when segkp is under the heap.
7287c478bd9Sstevel@tonic-gate  */
7297c478bd9Sstevel@tonic-gate /* ARGSUSED */
7307c478bd9Sstevel@tonic-gate static int
7317c478bd9Sstevel@tonic-gate segkmem_getmemid(struct seg *seg, caddr_t addr, memid_t *memidp)
7327c478bd9Sstevel@tonic-gate {
7337c478bd9Sstevel@tonic-gate 	ASSERT(RW_LOCK_HELD(&seg->s_as->a_lock));
7347c478bd9Sstevel@tonic-gate 
7357c478bd9Sstevel@tonic-gate 	if (seg->s_as != &kas)
7367c478bd9Sstevel@tonic-gate 		segkmem_badop();
7377c478bd9Sstevel@tonic-gate 
7387c478bd9Sstevel@tonic-gate 	if (segkp_bitmap && seg == &kvseg) {
7397c478bd9Sstevel@tonic-gate 
7407c478bd9Sstevel@tonic-gate 		/*
7417c478bd9Sstevel@tonic-gate 		 * If it is one of segkp pages, call into segkp.
7427c478bd9Sstevel@tonic-gate 		 */
7437c478bd9Sstevel@tonic-gate 		if (BT_TEST(segkp_bitmap,
7447c478bd9Sstevel@tonic-gate 			btop((uintptr_t)(addr - seg->s_base))))
7457c478bd9Sstevel@tonic-gate 			return (SEGOP_GETMEMID(segkp, addr, memidp));
7467c478bd9Sstevel@tonic-gate 	}
7477c478bd9Sstevel@tonic-gate 	segkmem_badop();
7487c478bd9Sstevel@tonic-gate 	return (0);
7497c478bd9Sstevel@tonic-gate }
7507c478bd9Sstevel@tonic-gate 
7517c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7527c478bd9Sstevel@tonic-gate static lgrp_mem_policy_info_t *
7537c478bd9Sstevel@tonic-gate segkmem_getpolicy(struct seg *seg, caddr_t addr)
7547c478bd9Sstevel@tonic-gate {
7557c478bd9Sstevel@tonic-gate 	return (NULL);
7567c478bd9Sstevel@tonic-gate }
7577c478bd9Sstevel@tonic-gate 
7581bd5c35fSelowe /*ARGSUSED*/
7591bd5c35fSelowe static int
7601bd5c35fSelowe segkmem_capable(struct seg *seg, segcapability_t capability)
7611bd5c35fSelowe {
7621bd5c35fSelowe 	if (capability == S_CAPABILITY_NOMINFLT)
7631bd5c35fSelowe 		return (1);
7641bd5c35fSelowe 	return (0);
7651bd5c35fSelowe }
7667c478bd9Sstevel@tonic-gate 
7677c478bd9Sstevel@tonic-gate static struct seg_ops segkmem_ops = {
7687c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* dup */
7697c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* unmap */
7707c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(void),		/* free */
7717c478bd9Sstevel@tonic-gate 	segkmem_fault,
7727c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(faultcode_t),	/* faulta */
7737c478bd9Sstevel@tonic-gate 	segkmem_setprot,
7747c478bd9Sstevel@tonic-gate 	segkmem_checkprot,
7757c478bd9Sstevel@tonic-gate 	segkmem_kluster,
7767c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(size_t),		/* swapout */
7777c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* sync */
7787c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(size_t),		/* incore */
7797c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* lockop */
7807c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* getprot */
7817c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(u_offset_t),	/* getoffset */
7827c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* gettype */
7837c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* getvp */
7847c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* advise */
7857c478bd9Sstevel@tonic-gate 	segkmem_dump,
7867c478bd9Sstevel@tonic-gate 	segkmem_pagelock,
7877c478bd9Sstevel@tonic-gate 	SEGKMEM_BADOP(int),		/* setpgsz */
7887c478bd9Sstevel@tonic-gate 	segkmem_getmemid,
7897c478bd9Sstevel@tonic-gate 	segkmem_getpolicy,		/* getpolicy */
7901bd5c35fSelowe 	segkmem_capable,		/* capable */
7917c478bd9Sstevel@tonic-gate };
7927c478bd9Sstevel@tonic-gate 
7937c478bd9Sstevel@tonic-gate int
7947c478bd9Sstevel@tonic-gate segkmem_create(struct seg *seg)
7957c478bd9Sstevel@tonic-gate {
7967c478bd9Sstevel@tonic-gate 	ASSERT(seg->s_as == &kas && RW_WRITE_HELD(&kas.a_lock));
7977c478bd9Sstevel@tonic-gate 	seg->s_ops = &segkmem_ops;
7987c478bd9Sstevel@tonic-gate 	seg->s_data = NULL;
7997c478bd9Sstevel@tonic-gate 	kas.a_size += seg->s_size;
8007c478bd9Sstevel@tonic-gate 	return (0);
8017c478bd9Sstevel@tonic-gate }
8027c478bd9Sstevel@tonic-gate 
8037c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8047c478bd9Sstevel@tonic-gate page_t *
8057c478bd9Sstevel@tonic-gate segkmem_page_create(void *addr, size_t size, int vmflag, void *arg)
8067c478bd9Sstevel@tonic-gate {
8077c478bd9Sstevel@tonic-gate 	struct seg kseg;
8087c478bd9Sstevel@tonic-gate 	int pgflags;
8097c478bd9Sstevel@tonic-gate 
8107c478bd9Sstevel@tonic-gate 	kseg.s_as = &kas;
8117c478bd9Sstevel@tonic-gate 	pgflags = PG_EXCL;
8127c478bd9Sstevel@tonic-gate 
8137c478bd9Sstevel@tonic-gate 	if (segkmem_reloc == 0 || (vmflag & VM_NORELOC))
8147c478bd9Sstevel@tonic-gate 		pgflags |= PG_NORELOC;
8157c478bd9Sstevel@tonic-gate 	if ((vmflag & VM_NOSLEEP) == 0)
8167c478bd9Sstevel@tonic-gate 		pgflags |= PG_WAIT;
8177c478bd9Sstevel@tonic-gate 	if (vmflag & VM_PANIC)
8187c478bd9Sstevel@tonic-gate 		pgflags |= PG_PANIC;
8197c478bd9Sstevel@tonic-gate 	if (vmflag & VM_PUSHPAGE)
8207c478bd9Sstevel@tonic-gate 		pgflags |= PG_PUSHPAGE;
8217c478bd9Sstevel@tonic-gate 
8227c478bd9Sstevel@tonic-gate 	return (page_create_va(&kvp, (u_offset_t)(uintptr_t)addr, size,
8237c478bd9Sstevel@tonic-gate 	    pgflags, &kseg, addr));
8247c478bd9Sstevel@tonic-gate }
8257c478bd9Sstevel@tonic-gate 
8267c478bd9Sstevel@tonic-gate /*
8277c478bd9Sstevel@tonic-gate  * Allocate pages to back the virtual address range [addr, addr + size).
8287c478bd9Sstevel@tonic-gate  * If addr is NULL, allocate the virtual address space as well.
8297c478bd9Sstevel@tonic-gate  */
8307c478bd9Sstevel@tonic-gate void *
8317c478bd9Sstevel@tonic-gate segkmem_xalloc(vmem_t *vmp, void *inaddr, size_t size, int vmflag, uint_t attr,
8327c478bd9Sstevel@tonic-gate 	page_t *(*page_create_func)(void *, size_t, int, void *), void *pcarg)
8337c478bd9Sstevel@tonic-gate {
8347c478bd9Sstevel@tonic-gate 	page_t *ppl;
8357c478bd9Sstevel@tonic-gate 	caddr_t addr = inaddr;
8367c478bd9Sstevel@tonic-gate 	pgcnt_t npages = btopr(size);
8377c478bd9Sstevel@tonic-gate 	int allocflag;
8387c478bd9Sstevel@tonic-gate 
8397c478bd9Sstevel@tonic-gate 	if (inaddr == NULL && (addr = vmem_alloc(vmp, size, vmflag)) == NULL)
8407c478bd9Sstevel@tonic-gate 		return (NULL);
8417c478bd9Sstevel@tonic-gate 
8427c478bd9Sstevel@tonic-gate 	ASSERT(((uintptr_t)addr & PAGEOFFSET) == 0);
8437c478bd9Sstevel@tonic-gate 
8447c478bd9Sstevel@tonic-gate 	if (page_resv(npages, vmflag & VM_KMFLAGS) == 0) {
8457c478bd9Sstevel@tonic-gate 		if (inaddr == NULL)
8467c478bd9Sstevel@tonic-gate 			vmem_free(vmp, addr, size);
8477c478bd9Sstevel@tonic-gate 		return (NULL);
8487c478bd9Sstevel@tonic-gate 	}
8497c478bd9Sstevel@tonic-gate 
8507c478bd9Sstevel@tonic-gate 	ppl = page_create_func(addr, size, vmflag, pcarg);
8517c478bd9Sstevel@tonic-gate 	if (ppl == NULL) {
8527c478bd9Sstevel@tonic-gate 		if (inaddr == NULL)
8537c478bd9Sstevel@tonic-gate 			vmem_free(vmp, addr, size);
8547c478bd9Sstevel@tonic-gate 		page_unresv(npages);
8557c478bd9Sstevel@tonic-gate 		return (NULL);
8567c478bd9Sstevel@tonic-gate 	}
8577c478bd9Sstevel@tonic-gate 
8587c478bd9Sstevel@tonic-gate 	/*
8597c478bd9Sstevel@tonic-gate 	 * Under certain conditions, we need to let the HAT layer know
8607c478bd9Sstevel@tonic-gate 	 * that it cannot safely allocate memory.  Allocations from
8617c478bd9Sstevel@tonic-gate 	 * the hat_memload vmem arena always need this, to prevent
8627c478bd9Sstevel@tonic-gate 	 * infinite recursion.
8637c478bd9Sstevel@tonic-gate 	 *
8647c478bd9Sstevel@tonic-gate 	 * In addition, the x86 hat cannot safely do memory
8657c478bd9Sstevel@tonic-gate 	 * allocations while in vmem_populate(), because there
8667c478bd9Sstevel@tonic-gate 	 * is no simple bound on its usage.
8677c478bd9Sstevel@tonic-gate 	 */
8687c478bd9Sstevel@tonic-gate 	if (vmflag & VM_MEMLOAD)
8697c478bd9Sstevel@tonic-gate 		allocflag = HAT_NO_KALLOC;
8707c478bd9Sstevel@tonic-gate #if defined(__x86)
8717c478bd9Sstevel@tonic-gate 	else if (vmem_is_populator())
8727c478bd9Sstevel@tonic-gate 		allocflag = HAT_NO_KALLOC;
8737c478bd9Sstevel@tonic-gate #endif
8747c478bd9Sstevel@tonic-gate 	else
8757c478bd9Sstevel@tonic-gate 		allocflag = 0;
8767c478bd9Sstevel@tonic-gate 
8777c478bd9Sstevel@tonic-gate 	while (ppl != NULL) {
8787c478bd9Sstevel@tonic-gate 		page_t *pp = ppl;
8797c478bd9Sstevel@tonic-gate 		page_sub(&ppl, pp);
8807c478bd9Sstevel@tonic-gate 		ASSERT(page_iolock_assert(pp));
8817c478bd9Sstevel@tonic-gate 		ASSERT(PAGE_EXCL(pp));
8827c478bd9Sstevel@tonic-gate 		page_io_unlock(pp);
8837c478bd9Sstevel@tonic-gate 		hat_memload(kas.a_hat, (caddr_t)(uintptr_t)pp->p_offset, pp,
8847c478bd9Sstevel@tonic-gate 		    (PROT_ALL & ~PROT_USER) | HAT_NOSYNC | attr,
8857c478bd9Sstevel@tonic-gate 		    HAT_LOAD_LOCK | allocflag);
8867c478bd9Sstevel@tonic-gate 		pp->p_lckcnt = 1;
8877c478bd9Sstevel@tonic-gate #if defined(__x86)
8887c478bd9Sstevel@tonic-gate 		page_downgrade(pp);
8897c478bd9Sstevel@tonic-gate #else
8907c478bd9Sstevel@tonic-gate 		if (vmflag & SEGKMEM_SHARELOCKED)
8917c478bd9Sstevel@tonic-gate 			page_downgrade(pp);
8927c478bd9Sstevel@tonic-gate 		else
8937c478bd9Sstevel@tonic-gate 			page_unlock(pp);
8947c478bd9Sstevel@tonic-gate #endif
8957c478bd9Sstevel@tonic-gate 	}
8967c478bd9Sstevel@tonic-gate 
8977c478bd9Sstevel@tonic-gate 	return (addr);
8987c478bd9Sstevel@tonic-gate }
8997c478bd9Sstevel@tonic-gate 
9007c478bd9Sstevel@tonic-gate void *
9017c478bd9Sstevel@tonic-gate segkmem_alloc(vmem_t *vmp, size_t size, int vmflag)
9027c478bd9Sstevel@tonic-gate {
9037c478bd9Sstevel@tonic-gate 	void *addr;
9047c478bd9Sstevel@tonic-gate 	segkmem_gc_list_t *gcp, **prev_gcpp;
9057c478bd9Sstevel@tonic-gate 
9067c478bd9Sstevel@tonic-gate 	if (kvseg.s_base == NULL) {
9077c478bd9Sstevel@tonic-gate #ifndef __sparc
9087c478bd9Sstevel@tonic-gate 		if (bootops->bsys_alloc == NULL)
9097c478bd9Sstevel@tonic-gate 			halt("Memory allocation between bop_alloc() and "
9107c478bd9Sstevel@tonic-gate 			    "kmem_alloc().\n");
9117c478bd9Sstevel@tonic-gate #endif
9127c478bd9Sstevel@tonic-gate 
9137c478bd9Sstevel@tonic-gate 		/*
9147c478bd9Sstevel@tonic-gate 		 * There's not a lot of memory to go around during boot,
9157c478bd9Sstevel@tonic-gate 		 * so recycle it if we can.
9167c478bd9Sstevel@tonic-gate 		 */
9177c478bd9Sstevel@tonic-gate 		for (prev_gcpp = &segkmem_gc_list; (gcp = *prev_gcpp) != NULL;
9187c478bd9Sstevel@tonic-gate 		    prev_gcpp = &gcp->gc_next) {
9197c478bd9Sstevel@tonic-gate 			if (gcp->gc_arena == vmp && gcp->gc_size == size) {
9207c478bd9Sstevel@tonic-gate 				*prev_gcpp = gcp->gc_next;
9217c478bd9Sstevel@tonic-gate 				return (gcp);
9227c478bd9Sstevel@tonic-gate 			}
9237c478bd9Sstevel@tonic-gate 		}
9247c478bd9Sstevel@tonic-gate 
9257c478bd9Sstevel@tonic-gate 		addr = vmem_alloc(vmp, size, vmflag | VM_PANIC);
9267c478bd9Sstevel@tonic-gate 		if (boot_alloc(addr, size, BO_NO_ALIGN) != addr)
9277c478bd9Sstevel@tonic-gate 			panic("segkmem_alloc: boot_alloc failed");
9287c478bd9Sstevel@tonic-gate 		return (addr);
9297c478bd9Sstevel@tonic-gate 	}
9307c478bd9Sstevel@tonic-gate 	return (segkmem_xalloc(vmp, NULL, size, vmflag, 0,
9317c478bd9Sstevel@tonic-gate 	    segkmem_page_create, NULL));
9327c478bd9Sstevel@tonic-gate }
9337c478bd9Sstevel@tonic-gate 
9347c478bd9Sstevel@tonic-gate /*
9357c478bd9Sstevel@tonic-gate  * Any changes to this routine must also be carried over to
9367c478bd9Sstevel@tonic-gate  * devmap_free_pages() in the seg_dev driver. This is because
9377c478bd9Sstevel@tonic-gate  * we currently don't have a special kernel segment for non-paged
9387c478bd9Sstevel@tonic-gate  * kernel memory that is exported by drivers to user space.
9397c478bd9Sstevel@tonic-gate  */
9407c478bd9Sstevel@tonic-gate void
9417c478bd9Sstevel@tonic-gate segkmem_free(vmem_t *vmp, void *inaddr, size_t size)
9427c478bd9Sstevel@tonic-gate {
9437c478bd9Sstevel@tonic-gate 	page_t *pp;
9447c478bd9Sstevel@tonic-gate 	caddr_t addr = inaddr;
9457c478bd9Sstevel@tonic-gate 	caddr_t eaddr;
9467c478bd9Sstevel@tonic-gate 	pgcnt_t npages = btopr(size);
9477c478bd9Sstevel@tonic-gate 
9487c478bd9Sstevel@tonic-gate 	ASSERT(((uintptr_t)addr & PAGEOFFSET) == 0);
9497c478bd9Sstevel@tonic-gate 
9507c478bd9Sstevel@tonic-gate 	if (kvseg.s_base == NULL) {
9517c478bd9Sstevel@tonic-gate 		segkmem_gc_list_t *gc = inaddr;
9527c478bd9Sstevel@tonic-gate 		gc->gc_arena = vmp;
9537c478bd9Sstevel@tonic-gate 		gc->gc_size = size;
9547c478bd9Sstevel@tonic-gate 		gc->gc_next = segkmem_gc_list;
9557c478bd9Sstevel@tonic-gate 		segkmem_gc_list = gc;
9567c478bd9Sstevel@tonic-gate 		return;
9577c478bd9Sstevel@tonic-gate 	}
9587c478bd9Sstevel@tonic-gate 
9597c478bd9Sstevel@tonic-gate 	hat_unload(kas.a_hat, addr, size, HAT_UNLOAD_UNLOCK);
9607c478bd9Sstevel@tonic-gate 
9617c478bd9Sstevel@tonic-gate 	for (eaddr = addr + size; addr < eaddr; addr += PAGESIZE) {
9627c478bd9Sstevel@tonic-gate #if defined(__x86)
9637c478bd9Sstevel@tonic-gate 		pp = page_find(&kvp, (u_offset_t)(uintptr_t)addr);
9647c478bd9Sstevel@tonic-gate 		if (pp == NULL)
9657c478bd9Sstevel@tonic-gate 			panic("segkmem_free: page not found");
9667c478bd9Sstevel@tonic-gate 		if (!page_tryupgrade(pp)) {
9677c478bd9Sstevel@tonic-gate 			/*
9687c478bd9Sstevel@tonic-gate 			 * Some other thread has a sharelock. Wait for
9697c478bd9Sstevel@tonic-gate 			 * it to drop the lock so we can free this page.
9707c478bd9Sstevel@tonic-gate 			 */
9717c478bd9Sstevel@tonic-gate 			page_unlock(pp);
9727c478bd9Sstevel@tonic-gate 			pp = page_lookup(&kvp, (u_offset_t)(uintptr_t)addr,
9737c478bd9Sstevel@tonic-gate 			    SE_EXCL);
9747c478bd9Sstevel@tonic-gate 		}
9757c478bd9Sstevel@tonic-gate #else
9767c478bd9Sstevel@tonic-gate 		pp = page_lookup(&kvp, (u_offset_t)(uintptr_t)addr, SE_EXCL);
9777c478bd9Sstevel@tonic-gate #endif
9787c478bd9Sstevel@tonic-gate 		if (pp == NULL)
9797c478bd9Sstevel@tonic-gate 			panic("segkmem_free: page not found");
9807c478bd9Sstevel@tonic-gate 		/* Clear p_lckcnt so page_destroy() doesn't update availrmem */
9817c478bd9Sstevel@tonic-gate 		pp->p_lckcnt = 0;
9827c478bd9Sstevel@tonic-gate 		page_destroy(pp, 0);
9837c478bd9Sstevel@tonic-gate 	}
9847c478bd9Sstevel@tonic-gate 	page_unresv(npages);
9857c478bd9Sstevel@tonic-gate 
9867c478bd9Sstevel@tonic-gate 	if (vmp != NULL)
9877c478bd9Sstevel@tonic-gate 		vmem_free(vmp, inaddr, size);
9887c478bd9Sstevel@tonic-gate }
9897c478bd9Sstevel@tonic-gate 
9907c478bd9Sstevel@tonic-gate void
9917c478bd9Sstevel@tonic-gate segkmem_gc(void)
9927c478bd9Sstevel@tonic-gate {
9937c478bd9Sstevel@tonic-gate 	ASSERT(kvseg.s_base != NULL);
9947c478bd9Sstevel@tonic-gate 	while (segkmem_gc_list != NULL) {
9957c478bd9Sstevel@tonic-gate 		segkmem_gc_list_t *gc = segkmem_gc_list;
9967c478bd9Sstevel@tonic-gate 		segkmem_gc_list = gc->gc_next;
9977c478bd9Sstevel@tonic-gate 		segkmem_free(gc->gc_arena, gc, gc->gc_size);
9987c478bd9Sstevel@tonic-gate 	}
9997c478bd9Sstevel@tonic-gate }
10007c478bd9Sstevel@tonic-gate 
10017c478bd9Sstevel@tonic-gate /*
10027c478bd9Sstevel@tonic-gate  * Legacy entry points from here to end of file.
10037c478bd9Sstevel@tonic-gate  */
10047c478bd9Sstevel@tonic-gate void
10057c478bd9Sstevel@tonic-gate segkmem_mapin(struct seg *seg, void *addr, size_t size, uint_t vprot,
10067c478bd9Sstevel@tonic-gate     pfn_t pfn, uint_t flags)
10077c478bd9Sstevel@tonic-gate {
10087c478bd9Sstevel@tonic-gate 	hat_unload(seg->s_as->a_hat, addr, size, HAT_UNLOAD_UNLOCK);
10097c478bd9Sstevel@tonic-gate 	hat_devload(seg->s_as->a_hat, addr, size, pfn, vprot,
10107c478bd9Sstevel@tonic-gate 	    flags | HAT_LOAD_LOCK);
10117c478bd9Sstevel@tonic-gate }
10127c478bd9Sstevel@tonic-gate 
10137c478bd9Sstevel@tonic-gate void
10147c478bd9Sstevel@tonic-gate segkmem_mapout(struct seg *seg, void *addr, size_t size)
10157c478bd9Sstevel@tonic-gate {
10167c478bd9Sstevel@tonic-gate 	hat_unload(seg->s_as->a_hat, addr, size, HAT_UNLOAD_UNLOCK);
10177c478bd9Sstevel@tonic-gate }
10187c478bd9Sstevel@tonic-gate 
10197c478bd9Sstevel@tonic-gate void *
10207c478bd9Sstevel@tonic-gate kmem_getpages(pgcnt_t npages, int kmflag)
10217c478bd9Sstevel@tonic-gate {
10227c478bd9Sstevel@tonic-gate 	return (kmem_alloc(ptob(npages), kmflag));
10237c478bd9Sstevel@tonic-gate }
10247c478bd9Sstevel@tonic-gate 
10257c478bd9Sstevel@tonic-gate void
10267c478bd9Sstevel@tonic-gate kmem_freepages(void *addr, pgcnt_t npages)
10277c478bd9Sstevel@tonic-gate {
10287c478bd9Sstevel@tonic-gate 	kmem_free(addr, ptob(npages));
10297c478bd9Sstevel@tonic-gate }
10307c478bd9Sstevel@tonic-gate 
10317c478bd9Sstevel@tonic-gate /*
10327c478bd9Sstevel@tonic-gate  * segkmem_page_create_large() allocates a large page to be used for the kmem
10337c478bd9Sstevel@tonic-gate  * caches. If kpr is enabled we ask for a relocatable page unless requested
10347c478bd9Sstevel@tonic-gate  * otherwise. If kpr is disabled we have to ask for a non-reloc page
10357c478bd9Sstevel@tonic-gate  */
10367c478bd9Sstevel@tonic-gate static page_t *
10377c478bd9Sstevel@tonic-gate segkmem_page_create_large(void *addr, size_t size, int vmflag, void *arg)
10387c478bd9Sstevel@tonic-gate {
10397c478bd9Sstevel@tonic-gate 	int pgflags;
10407c478bd9Sstevel@tonic-gate 
10417c478bd9Sstevel@tonic-gate 	pgflags = PG_EXCL;
10427c478bd9Sstevel@tonic-gate 
10437c478bd9Sstevel@tonic-gate 	if (segkmem_reloc == 0 || (vmflag & VM_NORELOC))
10447c478bd9Sstevel@tonic-gate 		pgflags |= PG_NORELOC;
10457c478bd9Sstevel@tonic-gate 	if (!(vmflag & VM_NOSLEEP))
10467c478bd9Sstevel@tonic-gate 		pgflags |= PG_WAIT;
10477c478bd9Sstevel@tonic-gate 	if (vmflag & VM_PUSHPAGE)
10487c478bd9Sstevel@tonic-gate 		pgflags |= PG_PUSHPAGE;
10497c478bd9Sstevel@tonic-gate 
10507c478bd9Sstevel@tonic-gate 	return (page_create_va_large(&kvp, (u_offset_t)(uintptr_t)addr, size,
10517c478bd9Sstevel@tonic-gate 	    pgflags, &kvseg, addr, arg));
10527c478bd9Sstevel@tonic-gate }
10537c478bd9Sstevel@tonic-gate 
10547c478bd9Sstevel@tonic-gate /*
10557c478bd9Sstevel@tonic-gate  * Allocate a large page to back the virtual address range
10567c478bd9Sstevel@tonic-gate  * [addr, addr + size).  If addr is NULL, allocate the virtual address
10577c478bd9Sstevel@tonic-gate  * space as well.
10587c478bd9Sstevel@tonic-gate  */
10597c478bd9Sstevel@tonic-gate static void *
10607c478bd9Sstevel@tonic-gate segkmem_xalloc_lp(vmem_t *vmp, void *inaddr, size_t size, int vmflag,
10617c478bd9Sstevel@tonic-gate     uint_t attr, page_t *(*page_create_func)(void *, size_t, int, void *),
10627c478bd9Sstevel@tonic-gate     void *pcarg)
10637c478bd9Sstevel@tonic-gate {
10647c478bd9Sstevel@tonic-gate 	caddr_t addr = inaddr, pa;
10657c478bd9Sstevel@tonic-gate 	size_t  lpsize = segkmem_lpsize;
10667c478bd9Sstevel@tonic-gate 	pgcnt_t npages = btopr(size);
10677c478bd9Sstevel@tonic-gate 	pgcnt_t nbpages = btop(lpsize);
10687c478bd9Sstevel@tonic-gate 	pgcnt_t nlpages = size >> segkmem_lpshift;
10697c478bd9Sstevel@tonic-gate 	size_t  ppasize = nbpages * sizeof (page_t *);
10707c478bd9Sstevel@tonic-gate 	page_t *pp, *rootpp, **ppa, *pplist = NULL;
10717c478bd9Sstevel@tonic-gate 	int i;
10727c478bd9Sstevel@tonic-gate 
10737c478bd9Sstevel@tonic-gate 	if (page_resv(npages, vmflag & VM_KMFLAGS) == 0) {
10747c478bd9Sstevel@tonic-gate 		return (NULL);
10757c478bd9Sstevel@tonic-gate 	}
10767c478bd9Sstevel@tonic-gate 
10777c478bd9Sstevel@tonic-gate 	/*
10787c478bd9Sstevel@tonic-gate 	 * allocate an array we need for hat_memload_array.
10797c478bd9Sstevel@tonic-gate 	 * we use a separate arena to avoid recursion.
10807c478bd9Sstevel@tonic-gate 	 * we will not need this array when hat_memload_array learns pp++
10817c478bd9Sstevel@tonic-gate 	 */
10827c478bd9Sstevel@tonic-gate 	if ((ppa = vmem_alloc(segkmem_ppa_arena, ppasize, vmflag)) == NULL) {
10837c478bd9Sstevel@tonic-gate 		goto fail_array_alloc;
10847c478bd9Sstevel@tonic-gate 	}
10857c478bd9Sstevel@tonic-gate 
10867c478bd9Sstevel@tonic-gate 	if (inaddr == NULL && (addr = vmem_alloc(vmp, size, vmflag)) == NULL)
10877c478bd9Sstevel@tonic-gate 		goto fail_vmem_alloc;
10887c478bd9Sstevel@tonic-gate 
10897c478bd9Sstevel@tonic-gate 	ASSERT(((uintptr_t)addr & (lpsize - 1)) == 0);
10907c478bd9Sstevel@tonic-gate 
10917c478bd9Sstevel@tonic-gate 	/* create all the pages */
10927c478bd9Sstevel@tonic-gate 	for (pa = addr, i = 0; i < nlpages; i++, pa += lpsize) {
10937c478bd9Sstevel@tonic-gate 		if ((pp = page_create_func(pa, lpsize, vmflag, pcarg)) == NULL)
10947c478bd9Sstevel@tonic-gate 			goto fail_page_create;
10957c478bd9Sstevel@tonic-gate 		page_list_concat(&pplist, &pp);
10967c478bd9Sstevel@tonic-gate 	}
10977c478bd9Sstevel@tonic-gate 
10987c478bd9Sstevel@tonic-gate 	/* at this point we have all the resource to complete the request */
10997c478bd9Sstevel@tonic-gate 	while ((rootpp = pplist) != NULL) {
11007c478bd9Sstevel@tonic-gate 		for (i = 0; i < nbpages; i++) {
11017c478bd9Sstevel@tonic-gate 			ASSERT(pplist != NULL);
11027c478bd9Sstevel@tonic-gate 			pp = pplist;
11037c478bd9Sstevel@tonic-gate 			page_sub(&pplist, pp);
11047c478bd9Sstevel@tonic-gate 			ASSERT(page_iolock_assert(pp));
11057c478bd9Sstevel@tonic-gate 			page_io_unlock(pp);
11067c478bd9Sstevel@tonic-gate 			ppa[i] = pp;
11077c478bd9Sstevel@tonic-gate 		}
11087c478bd9Sstevel@tonic-gate 		/*
11097c478bd9Sstevel@tonic-gate 		 * Load the locked entry. It's OK to preload the entry into the
11107c478bd9Sstevel@tonic-gate 		 * TSB since we now support large mappings in the kernel TSB.
11117c478bd9Sstevel@tonic-gate 		 */
11127c478bd9Sstevel@tonic-gate 		hat_memload_array(kas.a_hat,
11137c478bd9Sstevel@tonic-gate 		    (caddr_t)(uintptr_t)rootpp->p_offset, lpsize,
11147c478bd9Sstevel@tonic-gate 		    ppa, (PROT_ALL & ~PROT_USER) | HAT_NOSYNC | attr,
11157c478bd9Sstevel@tonic-gate 		    HAT_LOAD_LOCK);
11167c478bd9Sstevel@tonic-gate 
11177c478bd9Sstevel@tonic-gate 		for (--i; i >= 0; --i) {
11187c478bd9Sstevel@tonic-gate 			ppa[i]->p_lckcnt = 1;
11197c478bd9Sstevel@tonic-gate 			page_unlock(ppa[i]);
11207c478bd9Sstevel@tonic-gate 		}
11217c478bd9Sstevel@tonic-gate 	}
11227c478bd9Sstevel@tonic-gate 
11237c478bd9Sstevel@tonic-gate 	vmem_free(segkmem_ppa_arena, ppa, ppasize);
11247c478bd9Sstevel@tonic-gate 	return (addr);
11257c478bd9Sstevel@tonic-gate 
11267c478bd9Sstevel@tonic-gate fail_page_create:
11277c478bd9Sstevel@tonic-gate 	while ((rootpp = pplist) != NULL) {
11287c478bd9Sstevel@tonic-gate 		for (i = 0, pp = pplist; i < nbpages; i++, pp = pplist) {
11297c478bd9Sstevel@tonic-gate 			ASSERT(pp != NULL);
11307c478bd9Sstevel@tonic-gate 			page_sub(&pplist, pp);
11317c478bd9Sstevel@tonic-gate 			ASSERT(page_iolock_assert(pp));
11327c478bd9Sstevel@tonic-gate 			page_io_unlock(pp);
11337c478bd9Sstevel@tonic-gate 		}
11347c478bd9Sstevel@tonic-gate 		page_destroy_pages(rootpp);
11357c478bd9Sstevel@tonic-gate 	}
11367c478bd9Sstevel@tonic-gate 
11377c478bd9Sstevel@tonic-gate 	if (inaddr == NULL)
11387c478bd9Sstevel@tonic-gate 		vmem_free(vmp, addr, size);
11397c478bd9Sstevel@tonic-gate 
11407c478bd9Sstevel@tonic-gate fail_vmem_alloc:
11417c478bd9Sstevel@tonic-gate 	vmem_free(segkmem_ppa_arena, ppa, ppasize);
11427c478bd9Sstevel@tonic-gate 
11437c478bd9Sstevel@tonic-gate fail_array_alloc:
11447c478bd9Sstevel@tonic-gate 	page_unresv(npages);
11457c478bd9Sstevel@tonic-gate 
11467c478bd9Sstevel@tonic-gate 	return (NULL);
11477c478bd9Sstevel@tonic-gate }
11487c478bd9Sstevel@tonic-gate 
11497c478bd9Sstevel@tonic-gate static void
11507c478bd9Sstevel@tonic-gate segkmem_free_one_lp(caddr_t addr, size_t size)
11517c478bd9Sstevel@tonic-gate {
11527c478bd9Sstevel@tonic-gate 	page_t		*pp, *rootpp = NULL;
11537c478bd9Sstevel@tonic-gate 	pgcnt_t 	pgs_left = btopr(size);
11547c478bd9Sstevel@tonic-gate 
11557c478bd9Sstevel@tonic-gate 	ASSERT(size == segkmem_lpsize);
11567c478bd9Sstevel@tonic-gate 
11577c478bd9Sstevel@tonic-gate 	hat_unload(kas.a_hat, addr, size, HAT_UNLOAD_UNLOCK);
11587c478bd9Sstevel@tonic-gate 
11597c478bd9Sstevel@tonic-gate 	for (; pgs_left > 0; addr += PAGESIZE, pgs_left--) {
11607c478bd9Sstevel@tonic-gate 		pp = page_lookup(&kvp, (u_offset_t)(uintptr_t)addr, SE_EXCL);
11617c478bd9Sstevel@tonic-gate 		if (pp == NULL)
11627c478bd9Sstevel@tonic-gate 			panic("segkmem_free_one_lp: page not found");
11637c478bd9Sstevel@tonic-gate 		ASSERT(PAGE_EXCL(pp));
11647c478bd9Sstevel@tonic-gate 		pp->p_lckcnt = 0;
11657c478bd9Sstevel@tonic-gate 		if (rootpp == NULL)
11667c478bd9Sstevel@tonic-gate 			rootpp = pp;
11677c478bd9Sstevel@tonic-gate 	}
11687c478bd9Sstevel@tonic-gate 	ASSERT(rootpp != NULL);
11697c478bd9Sstevel@tonic-gate 	page_destroy_pages(rootpp);
11707c478bd9Sstevel@tonic-gate 
11717c478bd9Sstevel@tonic-gate 	/* page_unresv() is done by the caller */
11727c478bd9Sstevel@tonic-gate }
11737c478bd9Sstevel@tonic-gate 
11747c478bd9Sstevel@tonic-gate /*
11757c478bd9Sstevel@tonic-gate  * This function is called to import new spans into the vmem arenas like
11767c478bd9Sstevel@tonic-gate  * kmem_default_arena and kmem_oversize_arena. It first tries to import
11777c478bd9Sstevel@tonic-gate  * spans from large page arena - kmem_lp_arena. In order to do this it might
11787c478bd9Sstevel@tonic-gate  * have to "upgrade the requested size" to kmem_lp_arena quantum. If
11797c478bd9Sstevel@tonic-gate  * it was not able to satisfy the upgraded request it then calls regular
11807c478bd9Sstevel@tonic-gate  * segkmem_alloc() that satisfies the request by importing from "*vmp" arena
11817c478bd9Sstevel@tonic-gate  */
11827c478bd9Sstevel@tonic-gate void *
11837c478bd9Sstevel@tonic-gate segkmem_alloc_lp(vmem_t *vmp, size_t *sizep, int vmflag)
11847c478bd9Sstevel@tonic-gate {
11857c478bd9Sstevel@tonic-gate 	size_t size;
11867c478bd9Sstevel@tonic-gate 	kthread_t *t = curthread;
11877c478bd9Sstevel@tonic-gate 	segkmem_lpcb_t *lpcb = &segkmem_lpcb;
11887c478bd9Sstevel@tonic-gate 
11897c478bd9Sstevel@tonic-gate 	ASSERT(sizep != NULL);
11907c478bd9Sstevel@tonic-gate 
11917c478bd9Sstevel@tonic-gate 	size = *sizep;
11927c478bd9Sstevel@tonic-gate 
11937c478bd9Sstevel@tonic-gate 	if (lpcb->lp_uselp && !(t->t_flag & T_PANIC) &&
11947c478bd9Sstevel@tonic-gate 	    !(vmflag & SEGKMEM_SHARELOCKED)) {
11957c478bd9Sstevel@tonic-gate 
11967c478bd9Sstevel@tonic-gate 		size_t kmemlp_qnt = segkmem_kmemlp_quantum;
11977c478bd9Sstevel@tonic-gate 		size_t asize = P2ROUNDUP(size, kmemlp_qnt);
11987c478bd9Sstevel@tonic-gate 		void  *addr = NULL;
11997c478bd9Sstevel@tonic-gate 		ulong_t *lpthrtp = &lpcb->lp_throttle;
12007c478bd9Sstevel@tonic-gate 		ulong_t lpthrt = *lpthrtp;
12017c478bd9Sstevel@tonic-gate 		int	dowakeup = 0;
12027c478bd9Sstevel@tonic-gate 		int	doalloc = 1;
12037c478bd9Sstevel@tonic-gate 
12047c478bd9Sstevel@tonic-gate 		ASSERT(kmem_lp_arena != NULL);
12057c478bd9Sstevel@tonic-gate 		ASSERT(asize >= size);
12067c478bd9Sstevel@tonic-gate 
12077c478bd9Sstevel@tonic-gate 		if (lpthrt != 0) {
12087c478bd9Sstevel@tonic-gate 			/* try to update the throttle value */
12097c478bd9Sstevel@tonic-gate 			lpthrt = atomic_add_long_nv(lpthrtp, 1);
12107c478bd9Sstevel@tonic-gate 			if (lpthrt >= segkmem_lpthrottle_max) {
12117c478bd9Sstevel@tonic-gate 				lpthrt = atomic_cas_ulong(lpthrtp, lpthrt,
12127c478bd9Sstevel@tonic-gate 				    segkmem_lpthrottle_max / 4);
12137c478bd9Sstevel@tonic-gate 			}
12147c478bd9Sstevel@tonic-gate 
12157c478bd9Sstevel@tonic-gate 			/*
12167c478bd9Sstevel@tonic-gate 			 * when we get above throttle start do an exponential
12177c478bd9Sstevel@tonic-gate 			 * backoff at trying large pages and reaping
12187c478bd9Sstevel@tonic-gate 			 */
12197c478bd9Sstevel@tonic-gate 			if (lpthrt > segkmem_lpthrottle_start &&
12207c478bd9Sstevel@tonic-gate 			    (lpthrt & (lpthrt - 1))) {
1221501f3284Seg155566 				lpcb->allocs_throttled++;
12227c478bd9Sstevel@tonic-gate 				lpthrt--;
12237c478bd9Sstevel@tonic-gate 				if ((lpthrt & (lpthrt - 1)) == 0)
12247c478bd9Sstevel@tonic-gate 					kmem_reap();
12257c478bd9Sstevel@tonic-gate 				return (segkmem_alloc(vmp, size, vmflag));
12267c478bd9Sstevel@tonic-gate 			}
12277c478bd9Sstevel@tonic-gate 		}
12287c478bd9Sstevel@tonic-gate 
12297c478bd9Sstevel@tonic-gate 		if (!(vmflag & VM_NOSLEEP) &&
12307c478bd9Sstevel@tonic-gate 		    segkmem_heaplp_quantum >= (8 * kmemlp_qnt) &&
12317c478bd9Sstevel@tonic-gate 		    vmem_size(kmem_lp_arena, VMEM_FREE) <= kmemlp_qnt &&
12327c478bd9Sstevel@tonic-gate 		    asize < (segkmem_heaplp_quantum - kmemlp_qnt)) {
12337c478bd9Sstevel@tonic-gate 
12347c478bd9Sstevel@tonic-gate 			/*
12357c478bd9Sstevel@tonic-gate 			 * we are low on free memory in kmem_lp_arena
12367c478bd9Sstevel@tonic-gate 			 * we let only one guy to allocate heap_lp
12377c478bd9Sstevel@tonic-gate 			 * quantum size chunk that everybody is going to
12387c478bd9Sstevel@tonic-gate 			 * share
12397c478bd9Sstevel@tonic-gate 			 */
12407c478bd9Sstevel@tonic-gate 			mutex_enter(&lpcb->lp_lock);
12417c478bd9Sstevel@tonic-gate 
12427c478bd9Sstevel@tonic-gate 			if (lpcb->lp_wait) {
12437c478bd9Sstevel@tonic-gate 
12447c478bd9Sstevel@tonic-gate 				/* we are not the first one - wait */
12457c478bd9Sstevel@tonic-gate 				cv_wait(&lpcb->lp_cv, &lpcb->lp_lock);
12467c478bd9Sstevel@tonic-gate 				if (vmem_size(kmem_lp_arena, VMEM_FREE) <
12477c478bd9Sstevel@tonic-gate 				    kmemlp_qnt)  {
12487c478bd9Sstevel@tonic-gate 					doalloc = 0;
12497c478bd9Sstevel@tonic-gate 				}
12507c478bd9Sstevel@tonic-gate 			} else if (vmem_size(kmem_lp_arena, VMEM_FREE) <=
12517c478bd9Sstevel@tonic-gate 			    kmemlp_qnt) {
12527c478bd9Sstevel@tonic-gate 
12537c478bd9Sstevel@tonic-gate 				/*
12547c478bd9Sstevel@tonic-gate 				 * we are the first one, make sure we import
12557c478bd9Sstevel@tonic-gate 				 * a large page
12567c478bd9Sstevel@tonic-gate 				 */
12577c478bd9Sstevel@tonic-gate 				if (asize == kmemlp_qnt)
12587c478bd9Sstevel@tonic-gate 					asize += kmemlp_qnt;
12597c478bd9Sstevel@tonic-gate 				dowakeup = 1;
12607c478bd9Sstevel@tonic-gate 				lpcb->lp_wait = 1;
12617c478bd9Sstevel@tonic-gate 			}
12627c478bd9Sstevel@tonic-gate 
12637c478bd9Sstevel@tonic-gate 			mutex_exit(&lpcb->lp_lock);
12647c478bd9Sstevel@tonic-gate 		}
12657c478bd9Sstevel@tonic-gate 
12667c478bd9Sstevel@tonic-gate 		/*
12677c478bd9Sstevel@tonic-gate 		 * VM_ABORT flag prevents sleeps in vmem_xalloc when
12687c478bd9Sstevel@tonic-gate 		 * large pages are not available. In that case this allocation
12697c478bd9Sstevel@tonic-gate 		 * attempt will fail and we will retry allocation with small
12707c478bd9Sstevel@tonic-gate 		 * pages. We also do not want to panic if this allocation fails
12717c478bd9Sstevel@tonic-gate 		 * because we are going to retry.
12727c478bd9Sstevel@tonic-gate 		 */
12737c478bd9Sstevel@tonic-gate 		if (doalloc) {
12747c478bd9Sstevel@tonic-gate 			addr = vmem_alloc(kmem_lp_arena, asize,
12757c478bd9Sstevel@tonic-gate 			    (vmflag | VM_ABORT) & ~VM_PANIC);
12767c478bd9Sstevel@tonic-gate 
12777c478bd9Sstevel@tonic-gate 			if (dowakeup) {
12787c478bd9Sstevel@tonic-gate 				mutex_enter(&lpcb->lp_lock);
12797c478bd9Sstevel@tonic-gate 				ASSERT(lpcb->lp_wait != 0);
12807c478bd9Sstevel@tonic-gate 				lpcb->lp_wait = 0;
12817c478bd9Sstevel@tonic-gate 				cv_broadcast(&lpcb->lp_cv);
12827c478bd9Sstevel@tonic-gate 				mutex_exit(&lpcb->lp_lock);
12837c478bd9Sstevel@tonic-gate 			}
12847c478bd9Sstevel@tonic-gate 		}
12857c478bd9Sstevel@tonic-gate 
12867c478bd9Sstevel@tonic-gate 		if (addr != NULL) {
12877c478bd9Sstevel@tonic-gate 			*sizep = asize;
12887c478bd9Sstevel@tonic-gate 			*lpthrtp = 0;
12897c478bd9Sstevel@tonic-gate 			return (addr);
12907c478bd9Sstevel@tonic-gate 		}
12917c478bd9Sstevel@tonic-gate 
12927c478bd9Sstevel@tonic-gate 		if (vmflag & VM_NOSLEEP)
1293501f3284Seg155566 			lpcb->nosleep_allocs_failed++;
12947c478bd9Sstevel@tonic-gate 		else
1295501f3284Seg155566 			lpcb->sleep_allocs_failed++;
1296501f3284Seg155566 		lpcb->alloc_bytes_failed += size;
12977c478bd9Sstevel@tonic-gate 
12987c478bd9Sstevel@tonic-gate 		/* if large page throttling is not started yet do it */
12997c478bd9Sstevel@tonic-gate 		if (segkmem_use_lpthrottle && lpthrt == 0) {
13007c478bd9Sstevel@tonic-gate 			lpthrt = atomic_cas_ulong(lpthrtp, lpthrt, 1);
13017c478bd9Sstevel@tonic-gate 		}
13027c478bd9Sstevel@tonic-gate 	}
13037c478bd9Sstevel@tonic-gate 	return (segkmem_alloc(vmp, size, vmflag));
13047c478bd9Sstevel@tonic-gate }
13057c478bd9Sstevel@tonic-gate 
13067c478bd9Sstevel@tonic-gate void
13077c478bd9Sstevel@tonic-gate segkmem_free_lp(vmem_t *vmp, void *inaddr, size_t size)
13087c478bd9Sstevel@tonic-gate {
13097c478bd9Sstevel@tonic-gate 	if (kmem_lp_arena == NULL || !IS_KMEM_VA_LARGEPAGE((caddr_t)inaddr)) {
13107c478bd9Sstevel@tonic-gate 		segkmem_free(vmp, inaddr, size);
13117c478bd9Sstevel@tonic-gate 	} else {
13127c478bd9Sstevel@tonic-gate 		vmem_free(kmem_lp_arena, inaddr, size);
13137c478bd9Sstevel@tonic-gate 	}
13147c478bd9Sstevel@tonic-gate }
13157c478bd9Sstevel@tonic-gate 
13167c478bd9Sstevel@tonic-gate /*
13177c478bd9Sstevel@tonic-gate  * segkmem_alloc_lpi() imports virtual memory from large page heap arena
13187c478bd9Sstevel@tonic-gate  * into kmem_lp arena. In the process it maps the imported segment with
13197c478bd9Sstevel@tonic-gate  * large pages
13207c478bd9Sstevel@tonic-gate  */
13217c478bd9Sstevel@tonic-gate static void *
13227c478bd9Sstevel@tonic-gate segkmem_alloc_lpi(vmem_t *vmp, size_t size, int vmflag)
13237c478bd9Sstevel@tonic-gate {
13247c478bd9Sstevel@tonic-gate 	segkmem_lpcb_t *lpcb = &segkmem_lpcb;
13257c478bd9Sstevel@tonic-gate 	void  *addr;
13267c478bd9Sstevel@tonic-gate 
13277c478bd9Sstevel@tonic-gate 	ASSERT(size != 0);
13287c478bd9Sstevel@tonic-gate 	ASSERT(vmp == heap_lp_arena);
13297c478bd9Sstevel@tonic-gate 
13307c478bd9Sstevel@tonic-gate 	/* do not allow large page heap grow beyound limits */
13317c478bd9Sstevel@tonic-gate 	if (vmem_size(vmp, VMEM_ALLOC) >= segkmem_kmemlp_max) {
1332501f3284Seg155566 		lpcb->allocs_limited++;
13337c478bd9Sstevel@tonic-gate 		return (NULL);
13347c478bd9Sstevel@tonic-gate 	}
13357c478bd9Sstevel@tonic-gate 
13367c478bd9Sstevel@tonic-gate 	addr = segkmem_xalloc_lp(vmp, NULL, size, vmflag, 0,
13377c478bd9Sstevel@tonic-gate 	    segkmem_page_create_large, NULL);
13387c478bd9Sstevel@tonic-gate 	return (addr);
13397c478bd9Sstevel@tonic-gate }
13407c478bd9Sstevel@tonic-gate 
13417c478bd9Sstevel@tonic-gate /*
13427c478bd9Sstevel@tonic-gate  * segkmem_free_lpi() returns virtual memory back into large page heap arena
13437c478bd9Sstevel@tonic-gate  * from kmem_lp arena. Beore doing this it unmaps the segment and frees
13447c478bd9Sstevel@tonic-gate  * large pages used to map it.
13457c478bd9Sstevel@tonic-gate  */
13467c478bd9Sstevel@tonic-gate static void
13477c478bd9Sstevel@tonic-gate segkmem_free_lpi(vmem_t *vmp, void *inaddr, size_t size)
13487c478bd9Sstevel@tonic-gate {
13497c478bd9Sstevel@tonic-gate 	pgcnt_t		nlpages = size >> segkmem_lpshift;
13507c478bd9Sstevel@tonic-gate 	size_t		lpsize = segkmem_lpsize;
13517c478bd9Sstevel@tonic-gate 	caddr_t		addr = inaddr;
13527c478bd9Sstevel@tonic-gate 	pgcnt_t 	npages = btopr(size);
13537c478bd9Sstevel@tonic-gate 	int		i;
13547c478bd9Sstevel@tonic-gate 
13557c478bd9Sstevel@tonic-gate 	ASSERT(vmp == heap_lp_arena);
13567c478bd9Sstevel@tonic-gate 	ASSERT(IS_KMEM_VA_LARGEPAGE(addr));
13577c478bd9Sstevel@tonic-gate 	ASSERT(((uintptr_t)inaddr & (lpsize - 1)) == 0);
13587c478bd9Sstevel@tonic-gate 
13597c478bd9Sstevel@tonic-gate 	for (i = 0; i < nlpages; i++) {
13607c478bd9Sstevel@tonic-gate 		segkmem_free_one_lp(addr, lpsize);
13617c478bd9Sstevel@tonic-gate 		addr += lpsize;
13627c478bd9Sstevel@tonic-gate 	}
13637c478bd9Sstevel@tonic-gate 
13647c478bd9Sstevel@tonic-gate 	page_unresv(npages);
13657c478bd9Sstevel@tonic-gate 
13667c478bd9Sstevel@tonic-gate 	vmem_free(vmp, inaddr, size);
13677c478bd9Sstevel@tonic-gate }
13687c478bd9Sstevel@tonic-gate 
13697c478bd9Sstevel@tonic-gate /*
13707c478bd9Sstevel@tonic-gate  * This function is called at system boot time by kmem_init right after
13717c478bd9Sstevel@tonic-gate  * /etc/system file has been read. It checks based on hardware configuration
13727c478bd9Sstevel@tonic-gate  * and /etc/system settings if system is going to use large pages. The
13737c478bd9Sstevel@tonic-gate  * initialiazation necessary to actually start using large pages
13747c478bd9Sstevel@tonic-gate  * happens later in the process after segkmem_heap_lp_init() is called.
13757c478bd9Sstevel@tonic-gate  */
13767c478bd9Sstevel@tonic-gate int
13777c478bd9Sstevel@tonic-gate segkmem_lpsetup()
13787c478bd9Sstevel@tonic-gate {
13797c478bd9Sstevel@tonic-gate 	int use_large_pages = 0;
13807c478bd9Sstevel@tonic-gate 
13817c478bd9Sstevel@tonic-gate #ifdef __sparc
13827c478bd9Sstevel@tonic-gate 
13837c478bd9Sstevel@tonic-gate 	size_t memtotal = physmem * PAGESIZE;
13847c478bd9Sstevel@tonic-gate 
13857c478bd9Sstevel@tonic-gate 	if (heap_lp_base == NULL) {
13867c478bd9Sstevel@tonic-gate 		segkmem_lpsize = PAGESIZE;
13877c478bd9Sstevel@tonic-gate 		return (0);
13887c478bd9Sstevel@tonic-gate 	}
13897c478bd9Sstevel@tonic-gate 
13907c478bd9Sstevel@tonic-gate 	/* get a platform dependent value of large page size for kernel heap */
13917c478bd9Sstevel@tonic-gate 	segkmem_lpsize = get_segkmem_lpsize(segkmem_lpsize);
13927c478bd9Sstevel@tonic-gate 
13937c478bd9Sstevel@tonic-gate 	if (segkmem_lpsize <= PAGESIZE) {
13947c478bd9Sstevel@tonic-gate 		/*
13957c478bd9Sstevel@tonic-gate 		 * put virtual space reserved for the large page kernel
13967c478bd9Sstevel@tonic-gate 		 * back to the regular heap
13977c478bd9Sstevel@tonic-gate 		 */
13987c478bd9Sstevel@tonic-gate 		vmem_xfree(heap_arena, heap_lp_base,
13997c478bd9Sstevel@tonic-gate 		    heap_lp_end - heap_lp_base);
14007c478bd9Sstevel@tonic-gate 		heap_lp_base = NULL;
14017c478bd9Sstevel@tonic-gate 		heap_lp_end = NULL;
14027c478bd9Sstevel@tonic-gate 		segkmem_lpsize = PAGESIZE;
14037c478bd9Sstevel@tonic-gate 		return (0);
14047c478bd9Sstevel@tonic-gate 	}
14057c478bd9Sstevel@tonic-gate 
14067c478bd9Sstevel@tonic-gate 	/* set heap_lp quantum if necessary */
14077c478bd9Sstevel@tonic-gate 	if (segkmem_heaplp_quantum == 0 ||
14087c478bd9Sstevel@tonic-gate 	    (segkmem_heaplp_quantum & (segkmem_heaplp_quantum - 1)) ||
14097c478bd9Sstevel@tonic-gate 	    P2PHASE(segkmem_heaplp_quantum, segkmem_lpsize)) {
14107c478bd9Sstevel@tonic-gate 		segkmem_heaplp_quantum = segkmem_lpsize;
14117c478bd9Sstevel@tonic-gate 	}
14127c478bd9Sstevel@tonic-gate 
14137c478bd9Sstevel@tonic-gate 	/* set kmem_lp quantum if necessary */
14147c478bd9Sstevel@tonic-gate 	if (segkmem_kmemlp_quantum == 0 ||
14157c478bd9Sstevel@tonic-gate 	    (segkmem_kmemlp_quantum & (segkmem_kmemlp_quantum - 1)) ||
14167c478bd9Sstevel@tonic-gate 	    segkmem_kmemlp_quantum > segkmem_heaplp_quantum) {
14177c478bd9Sstevel@tonic-gate 		segkmem_kmemlp_quantum = segkmem_heaplp_quantum;
14187c478bd9Sstevel@tonic-gate 	}
14197c478bd9Sstevel@tonic-gate 
14207c478bd9Sstevel@tonic-gate 	/* set total amount of memory allowed for large page kernel heap */
14217c478bd9Sstevel@tonic-gate 	if (segkmem_kmemlp_max == 0) {
14227c478bd9Sstevel@tonic-gate 		if (segkmem_kmemlp_pcnt == 0 || segkmem_kmemlp_pcnt > 100)
1423501f3284Seg155566 			segkmem_kmemlp_pcnt = 12;
1424501f3284Seg155566 		segkmem_kmemlp_max = (memtotal * segkmem_kmemlp_pcnt) / 100;
14257c478bd9Sstevel@tonic-gate 	}
14267c478bd9Sstevel@tonic-gate 	segkmem_kmemlp_max = P2ROUNDUP(segkmem_kmemlp_max,
14277c478bd9Sstevel@tonic-gate 	    segkmem_heaplp_quantum);
14287c478bd9Sstevel@tonic-gate 
14297c478bd9Sstevel@tonic-gate 	/* fix lp kmem preallocation request if necesssary */
14307c478bd9Sstevel@tonic-gate 	if (segkmem_kmemlp_min) {
14317c478bd9Sstevel@tonic-gate 		segkmem_kmemlp_min = P2ROUNDUP(segkmem_kmemlp_min,
14327c478bd9Sstevel@tonic-gate 		    segkmem_heaplp_quantum);
14337c478bd9Sstevel@tonic-gate 		if (segkmem_kmemlp_min > segkmem_kmemlp_max)
14347c478bd9Sstevel@tonic-gate 			segkmem_kmemlp_min = segkmem_kmemlp_max;
14357c478bd9Sstevel@tonic-gate 	}
14367c478bd9Sstevel@tonic-gate 
14377c478bd9Sstevel@tonic-gate 	use_large_pages = 1;
14387c478bd9Sstevel@tonic-gate 	segkmem_lpshift = page_get_shift(page_szc(segkmem_lpsize));
14397c478bd9Sstevel@tonic-gate 
14407c478bd9Sstevel@tonic-gate #endif
14417c478bd9Sstevel@tonic-gate 	return (use_large_pages);
14427c478bd9Sstevel@tonic-gate }
14437c478bd9Sstevel@tonic-gate 
14447c478bd9Sstevel@tonic-gate #ifdef __sparc
14457c478bd9Sstevel@tonic-gate 
14467c478bd9Sstevel@tonic-gate 
14477c478bd9Sstevel@tonic-gate static void *
14487c478bd9Sstevel@tonic-gate segkmem_alloc_ppa(vmem_t *vmp, size_t size, int vmflag)
14497c478bd9Sstevel@tonic-gate {
14507c478bd9Sstevel@tonic-gate 	size_t ppaquantum = btopr(segkmem_lpsize) * sizeof (page_t *);
14517c478bd9Sstevel@tonic-gate 	void   *addr;
14527c478bd9Sstevel@tonic-gate 
14537c478bd9Sstevel@tonic-gate 	if (ppaquantum <= PAGESIZE)
14547c478bd9Sstevel@tonic-gate 		return (segkmem_alloc(vmp, size, vmflag));
14557c478bd9Sstevel@tonic-gate 
14567c478bd9Sstevel@tonic-gate 	ASSERT((size & (ppaquantum - 1)) == 0);
14577c478bd9Sstevel@tonic-gate 
14587c478bd9Sstevel@tonic-gate 	addr = vmem_xalloc(vmp, size, ppaquantum, 0, 0, NULL, NULL, vmflag);
14597c478bd9Sstevel@tonic-gate 	if (addr != NULL && segkmem_xalloc(vmp, addr, size, vmflag, 0,
14607c478bd9Sstevel@tonic-gate 		segkmem_page_create, NULL) == NULL) {
14617c478bd9Sstevel@tonic-gate 		vmem_xfree(vmp, addr, size);
14627c478bd9Sstevel@tonic-gate 		addr = NULL;
14637c478bd9Sstevel@tonic-gate 	}
14647c478bd9Sstevel@tonic-gate 
14657c478bd9Sstevel@tonic-gate 	return (addr);
14667c478bd9Sstevel@tonic-gate }
14677c478bd9Sstevel@tonic-gate 
14687c478bd9Sstevel@tonic-gate static void
14697c478bd9Sstevel@tonic-gate segkmem_free_ppa(vmem_t *vmp, void *addr, size_t size)
14707c478bd9Sstevel@tonic-gate {
14717c478bd9Sstevel@tonic-gate 	size_t ppaquantum = btopr(segkmem_lpsize) * sizeof (page_t *);
14727c478bd9Sstevel@tonic-gate 
14737c478bd9Sstevel@tonic-gate 	ASSERT(addr != NULL);
14747c478bd9Sstevel@tonic-gate 
14757c478bd9Sstevel@tonic-gate 	if (ppaquantum <= PAGESIZE) {
14767c478bd9Sstevel@tonic-gate 		segkmem_free(vmp, addr, size);
14777c478bd9Sstevel@tonic-gate 	} else {
14787c478bd9Sstevel@tonic-gate 		segkmem_free(NULL, addr, size);
14797c478bd9Sstevel@tonic-gate 		vmem_xfree(vmp, addr, size);
14807c478bd9Sstevel@tonic-gate 	}
14817c478bd9Sstevel@tonic-gate }
14827c478bd9Sstevel@tonic-gate 
14837c478bd9Sstevel@tonic-gate void
14847c478bd9Sstevel@tonic-gate segkmem_heap_lp_init()
14857c478bd9Sstevel@tonic-gate {
14867c478bd9Sstevel@tonic-gate 	segkmem_lpcb_t *lpcb = &segkmem_lpcb;
14877c478bd9Sstevel@tonic-gate 	size_t heap_lp_size = heap_lp_end - heap_lp_base;
14887c478bd9Sstevel@tonic-gate 	size_t lpsize = segkmem_lpsize;
14897c478bd9Sstevel@tonic-gate 	size_t ppaquantum;
14907c478bd9Sstevel@tonic-gate 	void   *addr;
14917c478bd9Sstevel@tonic-gate 
14927c478bd9Sstevel@tonic-gate 	if (segkmem_lpsize <= PAGESIZE) {
14937c478bd9Sstevel@tonic-gate 		ASSERT(heap_lp_base == NULL);
14947c478bd9Sstevel@tonic-gate 		ASSERT(heap_lp_end == NULL);
14957c478bd9Sstevel@tonic-gate 		return;
14967c478bd9Sstevel@tonic-gate 	}
14977c478bd9Sstevel@tonic-gate 
14987c478bd9Sstevel@tonic-gate 	ASSERT(segkmem_heaplp_quantum >= lpsize);
14997c478bd9Sstevel@tonic-gate 	ASSERT((segkmem_heaplp_quantum & (lpsize - 1)) == 0);
15007c478bd9Sstevel@tonic-gate 	ASSERT(lpcb->lp_uselp == 0);
15017c478bd9Sstevel@tonic-gate 	ASSERT(heap_lp_base != NULL);
15027c478bd9Sstevel@tonic-gate 	ASSERT(heap_lp_end != NULL);
15037c478bd9Sstevel@tonic-gate 	ASSERT(heap_lp_base < heap_lp_end);
15047c478bd9Sstevel@tonic-gate 	ASSERT(heap_lp_arena == NULL);
15057c478bd9Sstevel@tonic-gate 	ASSERT(((uintptr_t)heap_lp_base & (lpsize - 1)) == 0);
15067c478bd9Sstevel@tonic-gate 	ASSERT(((uintptr_t)heap_lp_end & (lpsize - 1)) == 0);
15077c478bd9Sstevel@tonic-gate 
15087c478bd9Sstevel@tonic-gate 	/* create large page heap arena */
15097c478bd9Sstevel@tonic-gate 	heap_lp_arena = vmem_create("heap_lp", heap_lp_base, heap_lp_size,
15107c478bd9Sstevel@tonic-gate 	    segkmem_heaplp_quantum, NULL, NULL, NULL, 0, VM_SLEEP);
15117c478bd9Sstevel@tonic-gate 
15127c478bd9Sstevel@tonic-gate 	ASSERT(heap_lp_arena != NULL);
15137c478bd9Sstevel@tonic-gate 
15147c478bd9Sstevel@tonic-gate 	/* This arena caches memory already mapped by large pages */
15157c478bd9Sstevel@tonic-gate 	kmem_lp_arena = vmem_create("kmem_lp", NULL, 0, segkmem_kmemlp_quantum,
15167c478bd9Sstevel@tonic-gate 	    segkmem_alloc_lpi, segkmem_free_lpi, heap_lp_arena, 0, VM_SLEEP);
15177c478bd9Sstevel@tonic-gate 
15187c478bd9Sstevel@tonic-gate 	ASSERT(kmem_lp_arena != NULL);
15197c478bd9Sstevel@tonic-gate 
15207c478bd9Sstevel@tonic-gate 	mutex_init(&lpcb->lp_lock, NULL, MUTEX_DEFAULT, NULL);
15217c478bd9Sstevel@tonic-gate 	cv_init(&lpcb->lp_cv, NULL, CV_DEFAULT, NULL);
15227c478bd9Sstevel@tonic-gate 
15237c478bd9Sstevel@tonic-gate 	/*
15247c478bd9Sstevel@tonic-gate 	 * this arena is used for the array of page_t pointers necessary
15257c478bd9Sstevel@tonic-gate 	 * to call hat_mem_load_array
15267c478bd9Sstevel@tonic-gate 	 */
15277c478bd9Sstevel@tonic-gate 	ppaquantum = btopr(lpsize) * sizeof (page_t *);
15287c478bd9Sstevel@tonic-gate 	segkmem_ppa_arena = vmem_create("segkmem_ppa", NULL, 0, ppaquantum,
15297c478bd9Sstevel@tonic-gate 	    segkmem_alloc_ppa, segkmem_free_ppa, heap_arena, ppaquantum,
15307c478bd9Sstevel@tonic-gate 	    VM_SLEEP);
15317c478bd9Sstevel@tonic-gate 
15327c478bd9Sstevel@tonic-gate 	ASSERT(segkmem_ppa_arena != NULL);
15337c478bd9Sstevel@tonic-gate 
15347c478bd9Sstevel@tonic-gate 	/* prealloacate some memory for the lp kernel heap */
15357c478bd9Sstevel@tonic-gate 	if (segkmem_kmemlp_min) {
15367c478bd9Sstevel@tonic-gate 
15377c478bd9Sstevel@tonic-gate 		ASSERT(P2PHASE(segkmem_kmemlp_min,
15387c478bd9Sstevel@tonic-gate 		    segkmem_heaplp_quantum) == 0);
15397c478bd9Sstevel@tonic-gate 
15407c478bd9Sstevel@tonic-gate 		if ((addr = segkmem_alloc_lpi(heap_lp_arena,
15417c478bd9Sstevel@tonic-gate 		    segkmem_kmemlp_min, VM_SLEEP)) != NULL) {
15427c478bd9Sstevel@tonic-gate 
15437c478bd9Sstevel@tonic-gate 			addr = vmem_add(kmem_lp_arena, addr,
15447c478bd9Sstevel@tonic-gate 			    segkmem_kmemlp_min, VM_SLEEP);
15457c478bd9Sstevel@tonic-gate 			ASSERT(addr != NULL);
15467c478bd9Sstevel@tonic-gate 		}
15477c478bd9Sstevel@tonic-gate 	}
15487c478bd9Sstevel@tonic-gate 
15497c478bd9Sstevel@tonic-gate 	lpcb->lp_uselp = 1;
15507c478bd9Sstevel@tonic-gate }
15517c478bd9Sstevel@tonic-gate 
15527c478bd9Sstevel@tonic-gate #endif
1553