10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 52241Shuah * Common Development and Distribution License (the "License"). 62241Shuah * You may not use this file except in compliance with the License. 70Sstevel@tonic-gate * 80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate * See the License for the specific language governing permissions 110Sstevel@tonic-gate * and limitations under the License. 120Sstevel@tonic-gate * 130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate * 190Sstevel@tonic-gate * CDDL HEADER END 200Sstevel@tonic-gate */ 2111311SSurya.Prakki@Sun.COM 220Sstevel@tonic-gate /* 23*11474SJonathan.Adams@Sun.COM * Copyright 2010 Sun Microsystems, Inc. All rights reserved. 240Sstevel@tonic-gate * Use is subject to license terms. 250Sstevel@tonic-gate */ 260Sstevel@tonic-gate 270Sstevel@tonic-gate #include <sys/types.h> 280Sstevel@tonic-gate #include <vm/hat.h> 290Sstevel@tonic-gate #include <vm/hat_sfmmu.h> 300Sstevel@tonic-gate #include <vm/page.h> 310Sstevel@tonic-gate #include <sys/pte.h> 320Sstevel@tonic-gate #include <sys/systm.h> 330Sstevel@tonic-gate #include <sys/mman.h> 340Sstevel@tonic-gate #include <sys/sysmacros.h> 350Sstevel@tonic-gate #include <sys/machparam.h> 360Sstevel@tonic-gate #include <sys/vtrace.h> 370Sstevel@tonic-gate #include <sys/kmem.h> 380Sstevel@tonic-gate #include <sys/mmu.h> 390Sstevel@tonic-gate #include <sys/cmn_err.h> 400Sstevel@tonic-gate #include <sys/cpu.h> 410Sstevel@tonic-gate #include <sys/cpuvar.h> 420Sstevel@tonic-gate #include <sys/debug.h> 430Sstevel@tonic-gate #include <sys/lgrp.h> 440Sstevel@tonic-gate #include <sys/archsystm.h> 450Sstevel@tonic-gate #include <sys/machsystm.h> 460Sstevel@tonic-gate #include <sys/vmsystm.h> 470Sstevel@tonic-gate #include <sys/bitmap.h> 480Sstevel@tonic-gate #include <vm/as.h> 490Sstevel@tonic-gate #include <vm/seg.h> 500Sstevel@tonic-gate #include <vm/seg_kmem.h> 510Sstevel@tonic-gate #include <vm/seg_kp.h> 520Sstevel@tonic-gate #include <vm/seg_kpm.h> 530Sstevel@tonic-gate #include <vm/rm.h> 540Sstevel@tonic-gate #include <vm/vm_dep.h> 550Sstevel@tonic-gate #include <sys/t_lock.h> 560Sstevel@tonic-gate #include <sys/vm_machparam.h> 570Sstevel@tonic-gate #include <sys/promif.h> 580Sstevel@tonic-gate #include <sys/prom_isa.h> 590Sstevel@tonic-gate #include <sys/prom_plat.h> 600Sstevel@tonic-gate #include <sys/prom_debug.h> 610Sstevel@tonic-gate #include <sys/privregs.h> 620Sstevel@tonic-gate #include <sys/bootconf.h> 630Sstevel@tonic-gate #include <sys/memlist.h> 640Sstevel@tonic-gate #include <sys/memlist_plat.h> 650Sstevel@tonic-gate #include <sys/cpu_module.h> 660Sstevel@tonic-gate #include <sys/reboot.h> 670Sstevel@tonic-gate #include <sys/kdi.h> 680Sstevel@tonic-gate 690Sstevel@tonic-gate /* 700Sstevel@tonic-gate * Static routines 710Sstevel@tonic-gate */ 720Sstevel@tonic-gate static void sfmmu_map_prom_mappings(struct translation *, size_t); 730Sstevel@tonic-gate static struct translation *read_prom_mappings(size_t *); 740Sstevel@tonic-gate static void sfmmu_reloc_trap_handler(void *, void *, size_t); 750Sstevel@tonic-gate 760Sstevel@tonic-gate /* 770Sstevel@tonic-gate * External routines 780Sstevel@tonic-gate */ 790Sstevel@tonic-gate extern void sfmmu_remap_kernel(void); 800Sstevel@tonic-gate extern void sfmmu_patch_utsb(void); 810Sstevel@tonic-gate 820Sstevel@tonic-gate /* 830Sstevel@tonic-gate * Global Data: 840Sstevel@tonic-gate */ 850Sstevel@tonic-gate extern caddr_t textva, datava; 860Sstevel@tonic-gate extern tte_t ktext_tte, kdata_tte; /* ttes for kernel text and data */ 870Sstevel@tonic-gate extern int enable_bigktsb; 887218Ssvemuri extern int kmem64_smchunks; 890Sstevel@tonic-gate 900Sstevel@tonic-gate uint64_t memsegspa = (uintptr_t)MSEG_NULLPTR_PA; /* memsegs physical linkage */ 910Sstevel@tonic-gate uint64_t memseg_phash[N_MEM_SLOTS]; /* use physical memseg addresses */ 920Sstevel@tonic-gate 930Sstevel@tonic-gate int sfmmu_kern_mapped = 0; 940Sstevel@tonic-gate 950Sstevel@tonic-gate /* 960Sstevel@tonic-gate * DMMU primary context register for the kernel context. Machine specific code 970Sstevel@tonic-gate * inserts correct page size codes when necessary 980Sstevel@tonic-gate */ 990Sstevel@tonic-gate uint64_t kcontextreg = KCONTEXT; 1000Sstevel@tonic-gate 1014104Sblakej #ifdef DEBUG 1024104Sblakej static int ndata_middle_hole_detected = 0; 1034104Sblakej #endif 1044104Sblakej 1050Sstevel@tonic-gate /* Extern Global Data */ 1060Sstevel@tonic-gate 1070Sstevel@tonic-gate extern int page_relocate_ready; 1080Sstevel@tonic-gate 1090Sstevel@tonic-gate /* 1100Sstevel@tonic-gate * Controls the logic which enables the use of the 1110Sstevel@tonic-gate * QUAD_LDD_PHYS ASI for TSB accesses. 1120Sstevel@tonic-gate */ 1130Sstevel@tonic-gate extern int ktsb_phys; 1140Sstevel@tonic-gate 1150Sstevel@tonic-gate /* 1160Sstevel@tonic-gate * Global Routines called from within: 1170Sstevel@tonic-gate * usr/src/uts/sun4u 1180Sstevel@tonic-gate * usr/src/uts/sfmmu 1190Sstevel@tonic-gate * usr/src/uts/sun 1200Sstevel@tonic-gate */ 1210Sstevel@tonic-gate 1220Sstevel@tonic-gate pfn_t 1230Sstevel@tonic-gate va_to_pfn(void *vaddr) 1240Sstevel@tonic-gate { 1250Sstevel@tonic-gate u_longlong_t physaddr; 1260Sstevel@tonic-gate int mode, valid; 1270Sstevel@tonic-gate 1280Sstevel@tonic-gate if (tba_taken_over) 1290Sstevel@tonic-gate return (hat_getpfnum(kas.a_hat, (caddr_t)vaddr)); 1300Sstevel@tonic-gate 1313764Sdp78419 #if !defined(C_OBP) 1327218Ssvemuri if (!kmem64_smchunks && 1337218Ssvemuri (caddr_t)vaddr >= kmem64_base && (caddr_t)vaddr < kmem64_end) { 1343764Sdp78419 if (kmem64_pabase == (uint64_t)-1) 1353764Sdp78419 prom_panic("va_to_pfn: kmem64_pabase not init"); 1363764Sdp78419 physaddr = kmem64_pabase + ((caddr_t)vaddr - kmem64_base); 1373764Sdp78419 return ((pfn_t)physaddr >> MMU_PAGESHIFT); 1383764Sdp78419 } 1393764Sdp78419 #endif /* !C_OBP */ 1403764Sdp78419 1410Sstevel@tonic-gate if ((prom_translate_virt(vaddr, &valid, &physaddr, &mode) != -1) && 1420Sstevel@tonic-gate (valid == -1)) { 1430Sstevel@tonic-gate return ((pfn_t)(physaddr >> MMU_PAGESHIFT)); 1440Sstevel@tonic-gate } 1450Sstevel@tonic-gate return (PFN_INVALID); 1460Sstevel@tonic-gate } 1470Sstevel@tonic-gate 1480Sstevel@tonic-gate uint64_t 1490Sstevel@tonic-gate va_to_pa(void *vaddr) 1500Sstevel@tonic-gate { 1510Sstevel@tonic-gate pfn_t pfn; 1520Sstevel@tonic-gate 1530Sstevel@tonic-gate if ((pfn = va_to_pfn(vaddr)) == PFN_INVALID) 1540Sstevel@tonic-gate return ((uint64_t)-1); 1550Sstevel@tonic-gate return (((uint64_t)pfn << MMU_PAGESHIFT) | 1565075Spaulsan ((uint64_t)vaddr & MMU_PAGEOFFSET)); 1570Sstevel@tonic-gate } 1580Sstevel@tonic-gate 1590Sstevel@tonic-gate void 1600Sstevel@tonic-gate hat_kern_setup(void) 1610Sstevel@tonic-gate { 1620Sstevel@tonic-gate struct translation *trans_root; 1630Sstevel@tonic-gate size_t ntrans_root; 1640Sstevel@tonic-gate extern void startup_fixup_physavail(void); 1650Sstevel@tonic-gate 1660Sstevel@tonic-gate /* 1670Sstevel@tonic-gate * These are the steps we take to take over the mmu from the prom. 1680Sstevel@tonic-gate * 1690Sstevel@tonic-gate * (1) Read the prom's mappings through the translation property. 1700Sstevel@tonic-gate * (2) Remap the kernel text and kernel data with 2 locked 4MB ttes. 1710Sstevel@tonic-gate * Create the the hmeblks for these 2 ttes at this time. 1720Sstevel@tonic-gate * (3) Create hat structures for all other prom mappings. Since the 1730Sstevel@tonic-gate * kernel text and data hme_blks have already been created we 1740Sstevel@tonic-gate * skip the equivalent prom's mappings. 1750Sstevel@tonic-gate * (4) Initialize the tsb and its corresponding hardware regs. 1760Sstevel@tonic-gate * (5) Take over the trap table (currently in startup). 1770Sstevel@tonic-gate * (6) Up to this point it is possible the prom required some of its 1780Sstevel@tonic-gate * locked tte's. Now that we own the trap table we remove them. 1790Sstevel@tonic-gate */ 1800Sstevel@tonic-gate 1810Sstevel@tonic-gate ktsb_pbase = va_to_pa(ktsb_base); 1820Sstevel@tonic-gate ktsb4m_pbase = va_to_pa(ktsb4m_base); 1830Sstevel@tonic-gate PRM_DEBUG(ktsb_pbase); 1840Sstevel@tonic-gate PRM_DEBUG(ktsb4m_pbase); 1850Sstevel@tonic-gate 1860Sstevel@tonic-gate sfmmu_patch_ktsb(); 1870Sstevel@tonic-gate sfmmu_patch_utsb(); 1880Sstevel@tonic-gate sfmmu_patch_mmu_asi(ktsb_phys); 1890Sstevel@tonic-gate 1900Sstevel@tonic-gate sfmmu_init_tsbs(); 1910Sstevel@tonic-gate 1920Sstevel@tonic-gate if (kpm_enable) { 1930Sstevel@tonic-gate sfmmu_kpm_patch_tlbm(); 1940Sstevel@tonic-gate if (kpm_smallpages == 0) { 1950Sstevel@tonic-gate sfmmu_kpm_patch_tsbm(); 1960Sstevel@tonic-gate } 1970Sstevel@tonic-gate } 1980Sstevel@tonic-gate 1995075Spaulsan if (!shctx_on) { 2004528Spaulsan sfmmu_patch_shctx(); 2014528Spaulsan } 2024528Spaulsan 2030Sstevel@tonic-gate /* 2040Sstevel@tonic-gate * The 8K-indexed kernel TSB space is used to hold 2050Sstevel@tonic-gate * translations below... 2060Sstevel@tonic-gate */ 2070Sstevel@tonic-gate trans_root = read_prom_mappings(&ntrans_root); 2080Sstevel@tonic-gate sfmmu_remap_kernel(); 2090Sstevel@tonic-gate startup_fixup_physavail(); 2100Sstevel@tonic-gate mmu_init_kernel_pgsz(kas.a_hat); 2110Sstevel@tonic-gate sfmmu_map_prom_mappings(trans_root, ntrans_root); 2120Sstevel@tonic-gate 2130Sstevel@tonic-gate /* 2140Sstevel@tonic-gate * We invalidate 8K kernel TSB because we used it in 2150Sstevel@tonic-gate * sfmmu_map_prom_mappings() 2160Sstevel@tonic-gate */ 2170Sstevel@tonic-gate sfmmu_inv_tsb(ktsb_base, ktsb_sz); 2180Sstevel@tonic-gate sfmmu_inv_tsb(ktsb4m_base, ktsb4m_sz); 2190Sstevel@tonic-gate 2200Sstevel@tonic-gate sfmmu_init_ktsbinfo(); 2210Sstevel@tonic-gate 2220Sstevel@tonic-gate 2230Sstevel@tonic-gate sfmmu_kern_mapped = 1; 2240Sstevel@tonic-gate 2250Sstevel@tonic-gate /* 2260Sstevel@tonic-gate * hments have been created for mapped pages, and thus we're ready 2270Sstevel@tonic-gate * for kmdb to start using its own trap table. It walks the hments 2280Sstevel@tonic-gate * to resolve TLB misses, and can't be used until they're ready. 2290Sstevel@tonic-gate */ 2300Sstevel@tonic-gate if (boothowto & RB_DEBUG) 2310Sstevel@tonic-gate kdi_dvec_vmready(); 2320Sstevel@tonic-gate } 2330Sstevel@tonic-gate 2340Sstevel@tonic-gate /* 2350Sstevel@tonic-gate * Macro used below to convert the prom's 32-bit high and low fields into 2360Sstevel@tonic-gate * a value appropriate for the 64-bit kernel. 2370Sstevel@tonic-gate */ 2380Sstevel@tonic-gate 2390Sstevel@tonic-gate #define COMBINE(hi, lo) (((uint64_t)(uint32_t)(hi) << 32) | (uint32_t)(lo)) 2400Sstevel@tonic-gate 2410Sstevel@tonic-gate /* 2423764Sdp78419 * Track larges pages used. 2433764Sdp78419 * Provides observability for this feature on non-debug kernels. 2443764Sdp78419 */ 2453764Sdp78419 ulong_t map_prom_lpcount[MMU_PAGE_SIZES]; 2463764Sdp78419 2473764Sdp78419 /* 2480Sstevel@tonic-gate * This function traverses the prom mapping list and creates equivalent 2490Sstevel@tonic-gate * mappings in the sfmmu mapping hash. 2500Sstevel@tonic-gate */ 2510Sstevel@tonic-gate static void 2520Sstevel@tonic-gate sfmmu_map_prom_mappings(struct translation *trans_root, size_t ntrans_root) 2530Sstevel@tonic-gate { 2540Sstevel@tonic-gate struct translation *promt; 2550Sstevel@tonic-gate tte_t tte, oldtte, *ttep; 2560Sstevel@tonic-gate pfn_t pfn, oldpfn, basepfn; 2570Sstevel@tonic-gate caddr_t vaddr; 2580Sstevel@tonic-gate size_t size, offset; 2590Sstevel@tonic-gate unsigned long i; 2600Sstevel@tonic-gate uint_t attr; 2610Sstevel@tonic-gate page_t *pp; 2620Sstevel@tonic-gate extern struct memlist *virt_avail; 2634610Sjesusm char buf[256]; 2640Sstevel@tonic-gate 2650Sstevel@tonic-gate ttep = &tte; 2660Sstevel@tonic-gate for (i = 0, promt = trans_root; i < ntrans_root; i++, promt++) { 2670Sstevel@tonic-gate ASSERT(promt->tte_hi != 0); 2680Sstevel@tonic-gate ASSERT32(promt->virt_hi == 0 && promt->size_hi == 0); 2690Sstevel@tonic-gate 2703764Sdp78419 vaddr = (caddr_t)COMBINE(promt->virt_hi, promt->virt_lo); 2713764Sdp78419 2720Sstevel@tonic-gate /* 2730Sstevel@tonic-gate * hack until we get rid of map-for-unix 2740Sstevel@tonic-gate */ 2753764Sdp78419 if (vaddr < (caddr_t)KERNELBASE) 2760Sstevel@tonic-gate continue; 2770Sstevel@tonic-gate 2780Sstevel@tonic-gate ttep->tte_inthi = promt->tte_hi; 2790Sstevel@tonic-gate ttep->tte_intlo = promt->tte_lo; 2800Sstevel@tonic-gate attr = PROC_DATA | HAT_NOSYNC; 2810Sstevel@tonic-gate #if defined(TTE_IS_GLOBAL) 2820Sstevel@tonic-gate if (TTE_IS_GLOBAL(ttep)) { 2830Sstevel@tonic-gate /* 2840Sstevel@tonic-gate * The prom better not use global translations 2850Sstevel@tonic-gate * because a user process might use the same 2860Sstevel@tonic-gate * virtual addresses 2870Sstevel@tonic-gate */ 2884610Sjesusm prom_panic("sfmmu_map_prom_mappings: global" 2894610Sjesusm " translation"); 2900Sstevel@tonic-gate TTE_SET_LOFLAGS(ttep, TTE_GLB_INT, 0); 2910Sstevel@tonic-gate } 2920Sstevel@tonic-gate #endif 2930Sstevel@tonic-gate if (TTE_IS_LOCKED(ttep)) { 2940Sstevel@tonic-gate /* clear the lock bits */ 2950Sstevel@tonic-gate TTE_CLR_LOCKED(ttep); 2960Sstevel@tonic-gate } 2970Sstevel@tonic-gate attr |= (TTE_IS_VCACHEABLE(ttep)) ? 0 : SFMMU_UNCACHEVTTE; 2980Sstevel@tonic-gate attr |= (TTE_IS_PCACHEABLE(ttep)) ? 0 : SFMMU_UNCACHEPTTE; 2990Sstevel@tonic-gate attr |= (TTE_IS_SIDEFFECT(ttep)) ? SFMMU_SIDEFFECT : 0; 3000Sstevel@tonic-gate attr |= (TTE_IS_IE(ttep)) ? HAT_STRUCTURE_LE : 0; 3010Sstevel@tonic-gate 3020Sstevel@tonic-gate size = COMBINE(promt->size_hi, promt->size_lo); 3030Sstevel@tonic-gate offset = 0; 3040Sstevel@tonic-gate basepfn = TTE_TO_PFN((caddr_t)COMBINE(promt->virt_hi, 3050Sstevel@tonic-gate promt->virt_lo), ttep); 3060Sstevel@tonic-gate while (size) { 3070Sstevel@tonic-gate vaddr = (caddr_t)(COMBINE(promt->virt_hi, 3080Sstevel@tonic-gate promt->virt_lo) + offset); 3090Sstevel@tonic-gate 3100Sstevel@tonic-gate /* 3110Sstevel@tonic-gate * make sure address is not in virt-avail list 3120Sstevel@tonic-gate */ 3130Sstevel@tonic-gate if (address_in_memlist(virt_avail, (uint64_t)vaddr, 3140Sstevel@tonic-gate size)) { 3154610Sjesusm prom_panic("sfmmu_map_prom_mappings:" 3164610Sjesusm " inconsistent translation/avail lists"); 3170Sstevel@tonic-gate } 3180Sstevel@tonic-gate 3190Sstevel@tonic-gate pfn = basepfn + mmu_btop(offset); 3200Sstevel@tonic-gate if (pf_is_memory(pfn)) { 3210Sstevel@tonic-gate if (attr & SFMMU_UNCACHEPTTE) { 3224610Sjesusm prom_panic("sfmmu_map_prom_mappings:" 3234610Sjesusm " uncached prom memory page"); 3240Sstevel@tonic-gate } 3250Sstevel@tonic-gate } else { 3260Sstevel@tonic-gate if (!(attr & SFMMU_SIDEFFECT)) { 3274610Sjesusm prom_panic("sfmmu_map_prom_mappings:" 3284610Sjesusm " prom i/o page without" 3294610Sjesusm " side-effect"); 3300Sstevel@tonic-gate } 3310Sstevel@tonic-gate } 3323764Sdp78419 3333764Sdp78419 /* 3343764Sdp78419 * skip kmem64 area 3353764Sdp78419 */ 3367218Ssvemuri if (!kmem64_smchunks && 3377218Ssvemuri vaddr >= kmem64_base && 3383764Sdp78419 vaddr < kmem64_aligned_end) { 3393764Sdp78419 #if !defined(C_OBP) 3404610Sjesusm prom_panic("sfmmu_map_prom_mappings:" 3414610Sjesusm " unexpected kmem64 prom mapping"); 3423764Sdp78419 #else /* !C_OBP */ 3433764Sdp78419 size_t mapsz; 3443764Sdp78419 3453764Sdp78419 if (ptob(pfn) != 3463764Sdp78419 kmem64_pabase + (vaddr - kmem64_base)) { 3474610Sjesusm prom_panic("sfmmu_map_prom_mappings:" 3484610Sjesusm " unexpected kmem64 prom mapping"); 3493764Sdp78419 } 3503764Sdp78419 3513764Sdp78419 mapsz = kmem64_aligned_end - vaddr; 3523764Sdp78419 if (mapsz >= size) { 3533764Sdp78419 break; 3543764Sdp78419 } 3553764Sdp78419 size -= mapsz; 3563764Sdp78419 offset += mapsz; 3573764Sdp78419 continue; 3583764Sdp78419 #endif /* !C_OBP */ 3593764Sdp78419 } 3603764Sdp78419 3610Sstevel@tonic-gate oldpfn = sfmmu_vatopfn(vaddr, KHATID, &oldtte); 3620Sstevel@tonic-gate ASSERT(oldpfn != PFN_SUSPENDED); 3630Sstevel@tonic-gate ASSERT(page_relocate_ready == 0); 3640Sstevel@tonic-gate 3650Sstevel@tonic-gate if (oldpfn != PFN_INVALID) { 3660Sstevel@tonic-gate /* 3670Sstevel@tonic-gate * mapping already exists. 3680Sstevel@tonic-gate * Verify they are equal 3690Sstevel@tonic-gate */ 3700Sstevel@tonic-gate if (pfn != oldpfn) { 3714610Sjesusm (void) snprintf(buf, sizeof (buf), 3724610Sjesusm "sfmmu_map_prom_mappings: mapping" 3734610Sjesusm " conflict (va = 0x%p, pfn = 0x%p," 3744610Sjesusm " oldpfn = 0x%p)", (void *)vaddr, 3754610Sjesusm (void *)pfn, (void *)oldpfn); 3764610Sjesusm prom_panic(buf); 3770Sstevel@tonic-gate } 3780Sstevel@tonic-gate size -= MMU_PAGESIZE; 3790Sstevel@tonic-gate offset += MMU_PAGESIZE; 3800Sstevel@tonic-gate continue; 3810Sstevel@tonic-gate } 3820Sstevel@tonic-gate 3830Sstevel@tonic-gate pp = page_numtopp_nolock(pfn); 3840Sstevel@tonic-gate if ((pp != NULL) && PP_ISFREE((page_t *)pp)) { 3854610Sjesusm (void) snprintf(buf, sizeof (buf), 3864610Sjesusm "sfmmu_map_prom_mappings: prom-mapped" 3874610Sjesusm " page (va = 0x%p, pfn = 0x%p) on free list", 3884610Sjesusm (void *)vaddr, (void *)pfn); 3894610Sjesusm prom_panic(buf); 3900Sstevel@tonic-gate } 3910Sstevel@tonic-gate 3920Sstevel@tonic-gate sfmmu_memtte(ttep, pfn, attr, TTE8K); 3930Sstevel@tonic-gate sfmmu_tteload(kas.a_hat, ttep, vaddr, pp, 3940Sstevel@tonic-gate HAT_LOAD_LOCK | SFMMU_NO_TSBLOAD); 3950Sstevel@tonic-gate size -= MMU_PAGESIZE; 3960Sstevel@tonic-gate offset += MMU_PAGESIZE; 3970Sstevel@tonic-gate } 3980Sstevel@tonic-gate } 3993764Sdp78419 4003764Sdp78419 /* 4013764Sdp78419 * We claimed kmem64 from prom, so now we need to load tte. 4023764Sdp78419 */ 4037218Ssvemuri if (!kmem64_smchunks && kmem64_base != NULL) { 4043764Sdp78419 pgcnt_t pages; 4053764Sdp78419 size_t psize; 4063764Sdp78419 int pszc; 4073764Sdp78419 4083764Sdp78419 pszc = kmem64_szc; 4093764Sdp78419 #ifdef sun4u 4103764Sdp78419 if (pszc > TTE8K) { 4113764Sdp78419 pszc = segkmem_lpszc; 4123764Sdp78419 } 4133764Sdp78419 #endif /* sun4u */ 4143764Sdp78419 psize = TTEBYTES(pszc); 4153764Sdp78419 pages = btop(psize); 4163764Sdp78419 basepfn = kmem64_pabase >> MMU_PAGESHIFT; 4173764Sdp78419 vaddr = kmem64_base; 4183764Sdp78419 while (vaddr < kmem64_end) { 4193764Sdp78419 sfmmu_memtte(ttep, basepfn, 4203764Sdp78419 PROC_DATA | HAT_NOSYNC, pszc); 4213764Sdp78419 sfmmu_tteload(kas.a_hat, ttep, vaddr, NULL, 4223764Sdp78419 HAT_LOAD_LOCK | SFMMU_NO_TSBLOAD); 4233764Sdp78419 vaddr += psize; 4243764Sdp78419 basepfn += pages; 4253764Sdp78419 } 4263764Sdp78419 map_prom_lpcount[pszc] = 4273764Sdp78419 ((caddr_t)P2ROUNDUP((uintptr_t)kmem64_end, psize) - 4284610Sjesusm kmem64_base) >> TTE_PAGE_SHIFT(pszc); 4293764Sdp78419 } 4300Sstevel@tonic-gate } 4310Sstevel@tonic-gate 4320Sstevel@tonic-gate #undef COMBINE /* local to previous routine */ 4330Sstevel@tonic-gate 4340Sstevel@tonic-gate /* 4350Sstevel@tonic-gate * This routine reads in the "translations" property in to a buffer and 4360Sstevel@tonic-gate * returns a pointer to this buffer and the number of translations. 4370Sstevel@tonic-gate */ 4380Sstevel@tonic-gate static struct translation * 4390Sstevel@tonic-gate read_prom_mappings(size_t *ntransrootp) 4400Sstevel@tonic-gate { 4410Sstevel@tonic-gate char *prop = "translations"; 4420Sstevel@tonic-gate size_t translen; 443789Sahrens pnode_t node; 4440Sstevel@tonic-gate struct translation *transroot; 4450Sstevel@tonic-gate 4460Sstevel@tonic-gate /* 4470Sstevel@tonic-gate * the "translations" property is associated with the mmu node 4480Sstevel@tonic-gate */ 449789Sahrens node = (pnode_t)prom_getphandle(prom_mmu_ihandle()); 4500Sstevel@tonic-gate 4510Sstevel@tonic-gate /* 4520Sstevel@tonic-gate * We use the TSB space to read in the prom mappings. This space 4530Sstevel@tonic-gate * is currently not being used because we haven't taken over the 4540Sstevel@tonic-gate * trap table yet. It should be big enough to hold the mappings. 4550Sstevel@tonic-gate */ 4560Sstevel@tonic-gate if ((translen = prom_getproplen(node, prop)) == -1) 4570Sstevel@tonic-gate cmn_err(CE_PANIC, "no translations property"); 4580Sstevel@tonic-gate *ntransrootp = translen / sizeof (*transroot); 4590Sstevel@tonic-gate translen = roundup(translen, MMU_PAGESIZE); 4600Sstevel@tonic-gate PRM_DEBUG(translen); 4610Sstevel@tonic-gate if (translen > TSB_BYTES(ktsb_szcode)) 4620Sstevel@tonic-gate cmn_err(CE_PANIC, "not enough space for translations"); 4630Sstevel@tonic-gate 4640Sstevel@tonic-gate transroot = (struct translation *)ktsb_base; 4650Sstevel@tonic-gate ASSERT(transroot); 4660Sstevel@tonic-gate if (prom_getprop(node, prop, (caddr_t)transroot) == -1) { 4670Sstevel@tonic-gate cmn_err(CE_PANIC, "translations getprop failed"); 4680Sstevel@tonic-gate } 4690Sstevel@tonic-gate return (transroot); 4700Sstevel@tonic-gate } 4710Sstevel@tonic-gate 4720Sstevel@tonic-gate /* 4730Sstevel@tonic-gate * Init routine of the nucleus data memory allocator. 4740Sstevel@tonic-gate * 4750Sstevel@tonic-gate * The nucleus data memory allocator is organized in ecache_alignsize'd 4760Sstevel@tonic-gate * memory chunks. Memory allocated by ndata_alloc() will never be freed. 4770Sstevel@tonic-gate * 4780Sstevel@tonic-gate * The ndata argument is used as header of the ndata freelist. 4790Sstevel@tonic-gate * Other freelist nodes are placed in the nucleus memory itself 4800Sstevel@tonic-gate * at the beginning of a free memory chunk. Therefore a freelist 4810Sstevel@tonic-gate * node (struct memlist) must fit into the smallest allocatable 4820Sstevel@tonic-gate * memory chunk (ecache_alignsize bytes). 4830Sstevel@tonic-gate * 4840Sstevel@tonic-gate * The memory interval [base, end] passed to ndata_alloc_init() must be 4850Sstevel@tonic-gate * bzero'd to allow the allocator to return bzero'd memory easily. 4860Sstevel@tonic-gate */ 4870Sstevel@tonic-gate void 4880Sstevel@tonic-gate ndata_alloc_init(struct memlist *ndata, uintptr_t base, uintptr_t end) 4890Sstevel@tonic-gate { 4900Sstevel@tonic-gate ASSERT(sizeof (struct memlist) <= ecache_alignsize); 4910Sstevel@tonic-gate 4920Sstevel@tonic-gate base = roundup(base, ecache_alignsize); 4930Sstevel@tonic-gate end = end - end % ecache_alignsize; 4940Sstevel@tonic-gate 4950Sstevel@tonic-gate ASSERT(base < end); 4960Sstevel@tonic-gate 497*11474SJonathan.Adams@Sun.COM ndata->ml_address = base; 498*11474SJonathan.Adams@Sun.COM ndata->ml_size = end - base; 499*11474SJonathan.Adams@Sun.COM ndata->ml_next = NULL; 500*11474SJonathan.Adams@Sun.COM ndata->ml_prev = NULL; 5010Sstevel@tonic-gate } 5020Sstevel@tonic-gate 5030Sstevel@tonic-gate /* 5040Sstevel@tonic-gate * Deliver the size of the largest free memory chunk. 5050Sstevel@tonic-gate */ 5060Sstevel@tonic-gate size_t 5070Sstevel@tonic-gate ndata_maxsize(struct memlist *ndata) 5080Sstevel@tonic-gate { 509*11474SJonathan.Adams@Sun.COM size_t chunksize = ndata->ml_size; 5100Sstevel@tonic-gate 511*11474SJonathan.Adams@Sun.COM while ((ndata = ndata->ml_next) != NULL) { 512*11474SJonathan.Adams@Sun.COM if (chunksize < ndata->ml_size) 513*11474SJonathan.Adams@Sun.COM chunksize = ndata->ml_size; 5140Sstevel@tonic-gate } 5150Sstevel@tonic-gate 5160Sstevel@tonic-gate return (chunksize); 5170Sstevel@tonic-gate } 5180Sstevel@tonic-gate 5190Sstevel@tonic-gate 5200Sstevel@tonic-gate /* 5210Sstevel@tonic-gate * Allocate the last properly aligned memory chunk. 5220Sstevel@tonic-gate * This function is called when no more large nucleus memory chunks 5230Sstevel@tonic-gate * will be allocated. The remaining free nucleus memory at the end 5240Sstevel@tonic-gate * of the nucleus can be added to the phys_avail list. 5250Sstevel@tonic-gate */ 5260Sstevel@tonic-gate void * 5274104Sblakej ndata_extra_base(struct memlist *ndata, size_t alignment, caddr_t endaddr) 5280Sstevel@tonic-gate { 5290Sstevel@tonic-gate uintptr_t base; 5300Sstevel@tonic-gate size_t wasteage = 0; 5310Sstevel@tonic-gate #ifdef DEBUG 5320Sstevel@tonic-gate static int called = 0; 5330Sstevel@tonic-gate 5340Sstevel@tonic-gate if (called++ > 0) 5350Sstevel@tonic-gate cmn_err(CE_PANIC, "ndata_extra_base() called more than once"); 5360Sstevel@tonic-gate #endif /* DEBUG */ 5370Sstevel@tonic-gate 5380Sstevel@tonic-gate /* 5390Sstevel@tonic-gate * The alignment needs to be a multiple of ecache_alignsize. 5400Sstevel@tonic-gate */ 5410Sstevel@tonic-gate ASSERT((alignment % ecache_alignsize) == 0); 5420Sstevel@tonic-gate 543*11474SJonathan.Adams@Sun.COM while (ndata->ml_next != NULL) { 544*11474SJonathan.Adams@Sun.COM wasteage += ndata->ml_size; 545*11474SJonathan.Adams@Sun.COM ndata = ndata->ml_next; 5460Sstevel@tonic-gate } 5470Sstevel@tonic-gate 548*11474SJonathan.Adams@Sun.COM base = roundup(ndata->ml_address, alignment); 5490Sstevel@tonic-gate 550*11474SJonathan.Adams@Sun.COM if (base >= ndata->ml_address + ndata->ml_size) 5510Sstevel@tonic-gate return (NULL); 5520Sstevel@tonic-gate 553*11474SJonathan.Adams@Sun.COM if ((caddr_t)(ndata->ml_address + ndata->ml_size) != endaddr) { 5544104Sblakej #ifdef DEBUG 5554104Sblakej ndata_middle_hole_detected = 1; /* see if we hit this again */ 5564104Sblakej #endif 5574104Sblakej return (NULL); 5584104Sblakej } 5594104Sblakej 560*11474SJonathan.Adams@Sun.COM if (base == ndata->ml_address) { 561*11474SJonathan.Adams@Sun.COM if (ndata->ml_prev != NULL) 562*11474SJonathan.Adams@Sun.COM ndata->ml_prev->ml_next = NULL; 5630Sstevel@tonic-gate else 564*11474SJonathan.Adams@Sun.COM ndata->ml_size = 0; 5650Sstevel@tonic-gate 5660Sstevel@tonic-gate bzero((void *)base, sizeof (struct memlist)); 5670Sstevel@tonic-gate 5680Sstevel@tonic-gate } else { 569*11474SJonathan.Adams@Sun.COM ndata->ml_size = base - ndata->ml_address; 570*11474SJonathan.Adams@Sun.COM wasteage += ndata->ml_size; 5710Sstevel@tonic-gate } 5720Sstevel@tonic-gate PRM_DEBUG(wasteage); 5730Sstevel@tonic-gate 5740Sstevel@tonic-gate return ((void *)base); 5750Sstevel@tonic-gate } 5760Sstevel@tonic-gate 5770Sstevel@tonic-gate /* 5780Sstevel@tonic-gate * Select the best matching buffer, avoid memory fragmentation. 5790Sstevel@tonic-gate */ 5800Sstevel@tonic-gate static struct memlist * 5810Sstevel@tonic-gate ndata_select_chunk(struct memlist *ndata, size_t wanted, size_t alignment) 5820Sstevel@tonic-gate { 5830Sstevel@tonic-gate struct memlist *fnd_below = NULL; 5840Sstevel@tonic-gate struct memlist *fnd_above = NULL; 5850Sstevel@tonic-gate struct memlist *fnd_unused = NULL; 5860Sstevel@tonic-gate struct memlist *frlist; 5870Sstevel@tonic-gate uintptr_t base; 5880Sstevel@tonic-gate uintptr_t end; 5890Sstevel@tonic-gate size_t below; 5900Sstevel@tonic-gate size_t above; 5910Sstevel@tonic-gate size_t unused; 5920Sstevel@tonic-gate size_t best_below = ULONG_MAX; 5930Sstevel@tonic-gate size_t best_above = ULONG_MAX; 5940Sstevel@tonic-gate size_t best_unused = ULONG_MAX; 5950Sstevel@tonic-gate 5960Sstevel@tonic-gate ASSERT(ndata != NULL); 5970Sstevel@tonic-gate 5980Sstevel@tonic-gate /* 5990Sstevel@tonic-gate * Look for the best matching buffer, avoid memory fragmentation. 6000Sstevel@tonic-gate * The following strategy is used, try to find 6010Sstevel@tonic-gate * 1. an exact fitting buffer 6020Sstevel@tonic-gate * 2. avoid wasting any space below the buffer, take first 6030Sstevel@tonic-gate * fitting buffer 6040Sstevel@tonic-gate * 3. avoid wasting any space above the buffer, take first 6050Sstevel@tonic-gate * fitting buffer 6060Sstevel@tonic-gate * 4. avoid wasting space, take first fitting buffer 6070Sstevel@tonic-gate * 5. take the last buffer in chain 6080Sstevel@tonic-gate */ 609*11474SJonathan.Adams@Sun.COM for (frlist = ndata; frlist != NULL; frlist = frlist->ml_next) { 610*11474SJonathan.Adams@Sun.COM base = roundup(frlist->ml_address, alignment); 6110Sstevel@tonic-gate end = roundup(base + wanted, ecache_alignsize); 6120Sstevel@tonic-gate 613*11474SJonathan.Adams@Sun.COM if (end > frlist->ml_address + frlist->ml_size) 6140Sstevel@tonic-gate continue; 6150Sstevel@tonic-gate 616*11474SJonathan.Adams@Sun.COM below = (base - frlist->ml_address) / ecache_alignsize; 617*11474SJonathan.Adams@Sun.COM above = (frlist->ml_address + frlist->ml_size - end) / 6180Sstevel@tonic-gate ecache_alignsize; 6190Sstevel@tonic-gate unused = below + above; 6200Sstevel@tonic-gate 6210Sstevel@tonic-gate if (unused == 0) 6220Sstevel@tonic-gate return (frlist); 6230Sstevel@tonic-gate 624*11474SJonathan.Adams@Sun.COM if (frlist->ml_next == NULL) 6250Sstevel@tonic-gate break; 6260Sstevel@tonic-gate 6270Sstevel@tonic-gate if (below < best_below) { 6280Sstevel@tonic-gate best_below = below; 6290Sstevel@tonic-gate fnd_below = frlist; 6300Sstevel@tonic-gate } 6310Sstevel@tonic-gate 6320Sstevel@tonic-gate if (above < best_above) { 6330Sstevel@tonic-gate best_above = above; 6340Sstevel@tonic-gate fnd_above = frlist; 6350Sstevel@tonic-gate } 6360Sstevel@tonic-gate 6370Sstevel@tonic-gate if (unused < best_unused) { 6380Sstevel@tonic-gate best_unused = unused; 6390Sstevel@tonic-gate fnd_unused = frlist; 6400Sstevel@tonic-gate } 6410Sstevel@tonic-gate } 6420Sstevel@tonic-gate 6430Sstevel@tonic-gate if (best_below == 0) 6440Sstevel@tonic-gate return (fnd_below); 6450Sstevel@tonic-gate if (best_above == 0) 6460Sstevel@tonic-gate return (fnd_above); 6470Sstevel@tonic-gate if (best_unused < ULONG_MAX) 6480Sstevel@tonic-gate return (fnd_unused); 6490Sstevel@tonic-gate 6500Sstevel@tonic-gate return (frlist); 6510Sstevel@tonic-gate } 6520Sstevel@tonic-gate 6530Sstevel@tonic-gate /* 6540Sstevel@tonic-gate * Nucleus data memory allocator. 6550Sstevel@tonic-gate * The granularity of the allocator is ecache_alignsize. 6560Sstevel@tonic-gate * See also comment for ndata_alloc_init(). 6570Sstevel@tonic-gate */ 6580Sstevel@tonic-gate void * 6590Sstevel@tonic-gate ndata_alloc(struct memlist *ndata, size_t wanted, size_t alignment) 6600Sstevel@tonic-gate { 6610Sstevel@tonic-gate struct memlist *found; 6620Sstevel@tonic-gate struct memlist *fnd_above; 6630Sstevel@tonic-gate uintptr_t base; 6640Sstevel@tonic-gate uintptr_t end; 6650Sstevel@tonic-gate size_t below; 6660Sstevel@tonic-gate size_t above; 6670Sstevel@tonic-gate 6680Sstevel@tonic-gate /* 6690Sstevel@tonic-gate * Look for the best matching buffer, avoid memory fragmentation. 6700Sstevel@tonic-gate */ 6710Sstevel@tonic-gate if ((found = ndata_select_chunk(ndata, wanted, alignment)) == NULL) 6720Sstevel@tonic-gate return (NULL); 6730Sstevel@tonic-gate 6740Sstevel@tonic-gate /* 6750Sstevel@tonic-gate * Allocate the nucleus data buffer. 6760Sstevel@tonic-gate */ 677*11474SJonathan.Adams@Sun.COM base = roundup(found->ml_address, alignment); 6780Sstevel@tonic-gate end = roundup(base + wanted, ecache_alignsize); 679*11474SJonathan.Adams@Sun.COM ASSERT(end <= found->ml_address + found->ml_size); 6800Sstevel@tonic-gate 681*11474SJonathan.Adams@Sun.COM below = base - found->ml_address; 682*11474SJonathan.Adams@Sun.COM above = found->ml_address + found->ml_size - end; 6830Sstevel@tonic-gate ASSERT(above == 0 || (above % ecache_alignsize) == 0); 6840Sstevel@tonic-gate 6850Sstevel@tonic-gate if (below >= ecache_alignsize) { 6860Sstevel@tonic-gate /* 6870Sstevel@tonic-gate * There is free memory below the allocated memory chunk. 6880Sstevel@tonic-gate */ 689*11474SJonathan.Adams@Sun.COM found->ml_size = below - below % ecache_alignsize; 6900Sstevel@tonic-gate 6910Sstevel@tonic-gate if (above) { 6920Sstevel@tonic-gate fnd_above = (struct memlist *)end; 693*11474SJonathan.Adams@Sun.COM fnd_above->ml_address = end; 694*11474SJonathan.Adams@Sun.COM fnd_above->ml_size = above; 6950Sstevel@tonic-gate 696*11474SJonathan.Adams@Sun.COM if ((fnd_above->ml_next = found->ml_next) != NULL) 697*11474SJonathan.Adams@Sun.COM found->ml_next->ml_prev = fnd_above; 698*11474SJonathan.Adams@Sun.COM fnd_above->ml_prev = found; 699*11474SJonathan.Adams@Sun.COM found->ml_next = fnd_above; 7000Sstevel@tonic-gate } 7010Sstevel@tonic-gate 7020Sstevel@tonic-gate return ((void *)base); 7030Sstevel@tonic-gate } 7040Sstevel@tonic-gate 705*11474SJonathan.Adams@Sun.COM if (found->ml_prev == NULL) { 7060Sstevel@tonic-gate /* 7070Sstevel@tonic-gate * The first chunk (ndata) is selected. 7080Sstevel@tonic-gate */ 7090Sstevel@tonic-gate ASSERT(found == ndata); 7100Sstevel@tonic-gate if (above) { 711*11474SJonathan.Adams@Sun.COM found->ml_address = end; 712*11474SJonathan.Adams@Sun.COM found->ml_size = above; 713*11474SJonathan.Adams@Sun.COM } else if (found->ml_next != NULL) { 714*11474SJonathan.Adams@Sun.COM found->ml_address = found->ml_next->ml_address; 715*11474SJonathan.Adams@Sun.COM found->ml_size = found->ml_next->ml_size; 716*11474SJonathan.Adams@Sun.COM if ((found->ml_next = found->ml_next->ml_next) != NULL) 717*11474SJonathan.Adams@Sun.COM found->ml_next->ml_prev = found; 7180Sstevel@tonic-gate 719*11474SJonathan.Adams@Sun.COM bzero((void *)found->ml_address, 720*11474SJonathan.Adams@Sun.COM sizeof (struct memlist)); 7210Sstevel@tonic-gate } else { 722*11474SJonathan.Adams@Sun.COM found->ml_address = end; 723*11474SJonathan.Adams@Sun.COM found->ml_size = 0; 7240Sstevel@tonic-gate } 7250Sstevel@tonic-gate 7260Sstevel@tonic-gate return ((void *)base); 7270Sstevel@tonic-gate } 7280Sstevel@tonic-gate 7290Sstevel@tonic-gate /* 7300Sstevel@tonic-gate * Not the first chunk. 7310Sstevel@tonic-gate */ 7320Sstevel@tonic-gate if (above) { 7330Sstevel@tonic-gate fnd_above = (struct memlist *)end; 734*11474SJonathan.Adams@Sun.COM fnd_above->ml_address = end; 735*11474SJonathan.Adams@Sun.COM fnd_above->ml_size = above; 7360Sstevel@tonic-gate 737*11474SJonathan.Adams@Sun.COM if ((fnd_above->ml_next = found->ml_next) != NULL) 738*11474SJonathan.Adams@Sun.COM fnd_above->ml_next->ml_prev = fnd_above; 739*11474SJonathan.Adams@Sun.COM fnd_above->ml_prev = found->ml_prev; 740*11474SJonathan.Adams@Sun.COM found->ml_prev->ml_next = fnd_above; 7410Sstevel@tonic-gate 7420Sstevel@tonic-gate } else { 743*11474SJonathan.Adams@Sun.COM if ((found->ml_prev->ml_next = found->ml_next) != NULL) 744*11474SJonathan.Adams@Sun.COM found->ml_next->ml_prev = found->ml_prev; 7450Sstevel@tonic-gate } 7460Sstevel@tonic-gate 747*11474SJonathan.Adams@Sun.COM bzero((void *)found->ml_address, sizeof (struct memlist)); 7480Sstevel@tonic-gate 7490Sstevel@tonic-gate return ((void *)base); 7500Sstevel@tonic-gate } 7510Sstevel@tonic-gate 7520Sstevel@tonic-gate /* 7530Sstevel@tonic-gate * Size the kernel TSBs based upon the amount of physical 7540Sstevel@tonic-gate * memory in the system. 7550Sstevel@tonic-gate */ 7560Sstevel@tonic-gate static void 7570Sstevel@tonic-gate calc_tsb_sizes(pgcnt_t npages) 7580Sstevel@tonic-gate { 7590Sstevel@tonic-gate PRM_DEBUG(npages); 7600Sstevel@tonic-gate 7610Sstevel@tonic-gate if (npages <= TSB_FREEMEM_MIN) { 7620Sstevel@tonic-gate ktsb_szcode = TSB_128K_SZCODE; 7630Sstevel@tonic-gate enable_bigktsb = 0; 7640Sstevel@tonic-gate } else if (npages <= TSB_FREEMEM_LARGE / 2) { 7650Sstevel@tonic-gate ktsb_szcode = TSB_256K_SZCODE; 7660Sstevel@tonic-gate enable_bigktsb = 0; 7670Sstevel@tonic-gate } else if (npages <= TSB_FREEMEM_LARGE) { 7680Sstevel@tonic-gate ktsb_szcode = TSB_512K_SZCODE; 7690Sstevel@tonic-gate enable_bigktsb = 0; 7700Sstevel@tonic-gate } else if (npages <= TSB_FREEMEM_LARGE * 2 || 7710Sstevel@tonic-gate enable_bigktsb == 0) { 7720Sstevel@tonic-gate ktsb_szcode = TSB_1M_SZCODE; 7730Sstevel@tonic-gate enable_bigktsb = 0; 7740Sstevel@tonic-gate } else { 7750Sstevel@tonic-gate ktsb_szcode = highbit(npages - 1); 7760Sstevel@tonic-gate ktsb_szcode -= TSB_START_SIZE; 7770Sstevel@tonic-gate ktsb_szcode = MAX(ktsb_szcode, MIN_BIGKTSB_SZCODE); 7780Sstevel@tonic-gate ktsb_szcode = MIN(ktsb_szcode, MAX_BIGKTSB_SZCODE); 7790Sstevel@tonic-gate } 7800Sstevel@tonic-gate 7810Sstevel@tonic-gate /* 7820Sstevel@tonic-gate * We choose the TSB to hold kernel 4M mappings to have twice 7830Sstevel@tonic-gate * the reach as the primary kernel TSB since this TSB will 7840Sstevel@tonic-gate * potentially (currently) be shared by both mappings to all of 7853764Sdp78419 * physical memory plus user TSBs. If this TSB has to be in nucleus 7863764Sdp78419 * (only for Spitfire and Cheetah) limit its size to 64K. 7870Sstevel@tonic-gate */ 7883764Sdp78419 ktsb4m_szcode = highbit((2 * npages) / TTEPAGES(TTE4M) - 1); 7893764Sdp78419 ktsb4m_szcode -= TSB_START_SIZE; 7903764Sdp78419 ktsb4m_szcode = MAX(ktsb4m_szcode, TSB_MIN_SZCODE); 7913764Sdp78419 ktsb4m_szcode = MIN(ktsb4m_szcode, TSB_SOFTSZ_MASK); 7923764Sdp78419 if ((enable_bigktsb == 0 || ktsb_phys == 0) && ktsb4m_szcode > 7933764Sdp78419 TSB_64K_SZCODE) { 7943764Sdp78419 ktsb4m_szcode = TSB_64K_SZCODE; 7953764Sdp78419 max_bootlp_tteszc = TTE8K; 7963764Sdp78419 } 7970Sstevel@tonic-gate 7980Sstevel@tonic-gate ktsb_sz = TSB_BYTES(ktsb_szcode); /* kernel 8K tsb size */ 7990Sstevel@tonic-gate ktsb4m_sz = TSB_BYTES(ktsb4m_szcode); /* kernel 4M tsb size */ 8000Sstevel@tonic-gate } 8010Sstevel@tonic-gate 8020Sstevel@tonic-gate /* 8030Sstevel@tonic-gate * Allocate kernel TSBs from nucleus data memory. 8040Sstevel@tonic-gate * The function return 0 on success and -1 on failure. 8050Sstevel@tonic-gate */ 8060Sstevel@tonic-gate int 8070Sstevel@tonic-gate ndata_alloc_tsbs(struct memlist *ndata, pgcnt_t npages) 8080Sstevel@tonic-gate { 8090Sstevel@tonic-gate /* 8103764Sdp78419 * Set ktsb_phys to 1 if the processor supports ASI_QUAD_LDD_PHYS. 8113764Sdp78419 */ 81211311SSurya.Prakki@Sun.COM (void) sfmmu_setup_4lp(); 8133764Sdp78419 8143764Sdp78419 /* 8150Sstevel@tonic-gate * Size the kernel TSBs based upon the amount of physical 8160Sstevel@tonic-gate * memory in the system. 8170Sstevel@tonic-gate */ 8180Sstevel@tonic-gate calc_tsb_sizes(npages); 8190Sstevel@tonic-gate 8200Sstevel@tonic-gate /* 8210Sstevel@tonic-gate * Allocate the 8K kernel TSB if it belongs inside the nucleus. 8220Sstevel@tonic-gate */ 8230Sstevel@tonic-gate if (enable_bigktsb == 0) { 8240Sstevel@tonic-gate if ((ktsb_base = ndata_alloc(ndata, ktsb_sz, ktsb_sz)) == NULL) 8250Sstevel@tonic-gate return (-1); 8260Sstevel@tonic-gate ASSERT(!((uintptr_t)ktsb_base & (ktsb_sz - 1))); 8270Sstevel@tonic-gate 8280Sstevel@tonic-gate PRM_DEBUG(ktsb_base); 8290Sstevel@tonic-gate PRM_DEBUG(ktsb_sz); 8300Sstevel@tonic-gate PRM_DEBUG(ktsb_szcode); 8310Sstevel@tonic-gate } 8320Sstevel@tonic-gate 8330Sstevel@tonic-gate /* 8340Sstevel@tonic-gate * Next, allocate 4M kernel TSB from the nucleus since it's small. 8350Sstevel@tonic-gate */ 8363764Sdp78419 if (ktsb4m_szcode <= TSB_64K_SZCODE) { 8370Sstevel@tonic-gate 8383764Sdp78419 ktsb4m_base = ndata_alloc(ndata, ktsb4m_sz, ktsb4m_sz); 8393764Sdp78419 if (ktsb4m_base == NULL) 8403764Sdp78419 return (-1); 8413764Sdp78419 ASSERT(!((uintptr_t)ktsb4m_base & (ktsb4m_sz - 1))); 8423764Sdp78419 8433764Sdp78419 PRM_DEBUG(ktsb4m_base); 8443764Sdp78419 PRM_DEBUG(ktsb4m_sz); 8453764Sdp78419 PRM_DEBUG(ktsb4m_szcode); 8463764Sdp78419 } 8470Sstevel@tonic-gate 8480Sstevel@tonic-gate return (0); 8490Sstevel@tonic-gate } 8500Sstevel@tonic-gate 8515648Ssetje size_t 8525648Ssetje calc_hmehash_sz(pgcnt_t npages) 8530Sstevel@tonic-gate { 8540Sstevel@tonic-gate ulong_t hme_buckets; 8550Sstevel@tonic-gate 8560Sstevel@tonic-gate /* 8570Sstevel@tonic-gate * The number of buckets in the hme hash tables 8580Sstevel@tonic-gate * is a power of 2 such that the average hash chain length is 8590Sstevel@tonic-gate * HMENT_HASHAVELEN. The number of buckets for the user hash is 8600Sstevel@tonic-gate * a function of physical memory and a predefined overmapping factor. 8610Sstevel@tonic-gate * The number of buckets for the kernel hash is a function of 8620Sstevel@tonic-gate * physical memory only. 8630Sstevel@tonic-gate */ 8640Sstevel@tonic-gate hme_buckets = (npages * HMEHASH_FACTOR) / 8655075Spaulsan (HMENT_HASHAVELEN * (HMEBLK_SPAN(TTE8K) >> MMU_PAGESHIFT)); 8660Sstevel@tonic-gate 8670Sstevel@tonic-gate uhmehash_num = (int)MIN(hme_buckets, MAX_UHME_BUCKETS); 8680Sstevel@tonic-gate 8690Sstevel@tonic-gate if (uhmehash_num > USER_BUCKETS_THRESHOLD) { 8700Sstevel@tonic-gate /* 8710Sstevel@tonic-gate * if uhmehash_num is not power of 2 round it down to the 8720Sstevel@tonic-gate * next power of 2. 8730Sstevel@tonic-gate */ 8740Sstevel@tonic-gate uint_t align = 1 << (highbit(uhmehash_num - 1) - 1); 8750Sstevel@tonic-gate uhmehash_num = P2ALIGN(uhmehash_num, align); 8760Sstevel@tonic-gate } else 8770Sstevel@tonic-gate uhmehash_num = 1 << highbit(uhmehash_num - 1); 8780Sstevel@tonic-gate 8790Sstevel@tonic-gate hme_buckets = npages / (HMEBLK_SPAN(TTE8K) >> MMU_PAGESHIFT); 8800Sstevel@tonic-gate khmehash_num = (int)MIN(hme_buckets, MAX_KHME_BUCKETS); 8810Sstevel@tonic-gate khmehash_num = 1 << highbit(khmehash_num - 1); 8820Sstevel@tonic-gate khmehash_num = MAX(khmehash_num, MIN_KHME_BUCKETS); 8830Sstevel@tonic-gate 8845648Ssetje return ((uhmehash_num + khmehash_num) * sizeof (struct hmehash_bucket)); 8855648Ssetje } 8865648Ssetje 8875648Ssetje caddr_t 8885648Ssetje alloc_hmehash(caddr_t alloc_base) 8895648Ssetje { 8905648Ssetje size_t khmehash_sz, uhmehash_sz; 8910Sstevel@tonic-gate 8925648Ssetje khme_hash = (struct hmehash_bucket *)alloc_base; 8935648Ssetje khmehash_sz = khmehash_num * sizeof (struct hmehash_bucket); 8945648Ssetje alloc_base += khmehash_sz; 8950Sstevel@tonic-gate 8965648Ssetje uhme_hash = (struct hmehash_bucket *)alloc_base; 8975648Ssetje uhmehash_sz = uhmehash_num * sizeof (struct hmehash_bucket); 8985648Ssetje alloc_base += uhmehash_sz; 8990Sstevel@tonic-gate 9000Sstevel@tonic-gate PRM_DEBUG(khme_hash); 9010Sstevel@tonic-gate PRM_DEBUG(uhme_hash); 9025648Ssetje 9035648Ssetje return (alloc_base); 9045648Ssetje } 9055648Ssetje 9065648Ssetje /* 9075648Ssetje * Allocate hat structs from the nucleus data memory. 9085648Ssetje */ 9095648Ssetje int 9105648Ssetje ndata_alloc_hat(struct memlist *ndata, pgcnt_t npages) 9115648Ssetje { 9125648Ssetje size_t mml_alloc_sz; 9135648Ssetje size_t cb_alloc_sz; 9140Sstevel@tonic-gate 9150Sstevel@tonic-gate /* 9160Sstevel@tonic-gate * For the page mapping list mutex array we allocate one mutex 9170Sstevel@tonic-gate * for every 128 pages (1 MB) with a minimum of 64 entries and 9180Sstevel@tonic-gate * a maximum of 8K entries. For the initial computation npages 9190Sstevel@tonic-gate * is rounded up (ie. 1 << highbit(npages * 1.5 / 128)) 9200Sstevel@tonic-gate * 9210Sstevel@tonic-gate * mml_shift is roughly log2(mml_table_sz) + 3 for MLIST_HASH 9220Sstevel@tonic-gate */ 9230Sstevel@tonic-gate mml_table_sz = 1 << highbit((npages * 3) / 256); 9240Sstevel@tonic-gate if (mml_table_sz < 64) 9250Sstevel@tonic-gate mml_table_sz = 64; 9260Sstevel@tonic-gate else if (mml_table_sz > 8192) 9270Sstevel@tonic-gate mml_table_sz = 8192; 9280Sstevel@tonic-gate mml_shift = highbit(mml_table_sz) + 3; 9290Sstevel@tonic-gate 9300Sstevel@tonic-gate PRM_DEBUG(mml_table_sz); 9310Sstevel@tonic-gate PRM_DEBUG(mml_shift); 9320Sstevel@tonic-gate 9330Sstevel@tonic-gate mml_alloc_sz = mml_table_sz * sizeof (kmutex_t); 9340Sstevel@tonic-gate 9350Sstevel@tonic-gate mml_table = ndata_alloc(ndata, mml_alloc_sz, ecache_alignsize); 9365648Ssetje if (mml_table == NULL) 9375648Ssetje return (-1); 9380Sstevel@tonic-gate PRM_DEBUG(mml_table); 9390Sstevel@tonic-gate 9400Sstevel@tonic-gate cb_alloc_sz = sfmmu_max_cb_id * sizeof (struct sfmmu_callback); 9410Sstevel@tonic-gate PRM_DEBUG(cb_alloc_sz); 9420Sstevel@tonic-gate sfmmu_cb_table = ndata_alloc(ndata, cb_alloc_sz, ecache_alignsize); 9435648Ssetje if (sfmmu_cb_table == NULL) 9445648Ssetje return (-1); 9450Sstevel@tonic-gate PRM_DEBUG(sfmmu_cb_table); 9460Sstevel@tonic-gate 9475648Ssetje return (0); 9485648Ssetje } 9495648Ssetje 9505648Ssetje int 9515648Ssetje ndata_alloc_kpm(struct memlist *ndata, pgcnt_t kpm_npages) 9525648Ssetje { 9535648Ssetje size_t kpmp_alloc_sz; 9545648Ssetje 9550Sstevel@tonic-gate /* 9560Sstevel@tonic-gate * For the kpm_page mutex array we allocate one mutex every 16 9570Sstevel@tonic-gate * kpm pages (64MB). In smallpage mode we allocate one mutex 9580Sstevel@tonic-gate * every 8K pages. The minimum is set to 64 entries and the 9590Sstevel@tonic-gate * maximum to 8K entries. 9600Sstevel@tonic-gate */ 9615648Ssetje if (kpm_smallpages == 0) { 9625648Ssetje kpmp_shift = highbit(sizeof (kpm_page_t)) - 1; 9635648Ssetje kpmp_table_sz = 1 << highbit(kpm_npages / 16); 9645648Ssetje kpmp_table_sz = (kpmp_table_sz < 64) ? 64 : 9655648Ssetje ((kpmp_table_sz > 8192) ? 8192 : kpmp_table_sz); 9665648Ssetje kpmp_alloc_sz = kpmp_table_sz * sizeof (kpm_hlk_t); 9670Sstevel@tonic-gate 9685648Ssetje kpmp_table = ndata_alloc(ndata, kpmp_alloc_sz, 9695648Ssetje ecache_alignsize); 9705648Ssetje if (kpmp_table == NULL) 9715648Ssetje return (-1); 9720Sstevel@tonic-gate 9735648Ssetje PRM_DEBUG(kpmp_table); 9745648Ssetje PRM_DEBUG(kpmp_table_sz); 9750Sstevel@tonic-gate 9765648Ssetje kpmp_stable_sz = 0; 9775648Ssetje kpmp_stable = NULL; 9785648Ssetje } else { 9795648Ssetje ASSERT(kpm_pgsz == PAGESIZE); 9805648Ssetje kpmp_shift = highbit(sizeof (kpm_shlk_t)) + 1; 9815648Ssetje kpmp_stable_sz = 1 << highbit(kpm_npages / 8192); 9825648Ssetje kpmp_stable_sz = (kpmp_stable_sz < 64) ? 64 : 9835648Ssetje ((kpmp_stable_sz > 8192) ? 8192 : kpmp_stable_sz); 9845648Ssetje kpmp_alloc_sz = kpmp_stable_sz * sizeof (kpm_shlk_t); 9850Sstevel@tonic-gate 9865648Ssetje kpmp_stable = ndata_alloc(ndata, kpmp_alloc_sz, 9875648Ssetje ecache_alignsize); 9885648Ssetje if (kpmp_stable == NULL) 9895648Ssetje return (-1); 9900Sstevel@tonic-gate 9915648Ssetje PRM_DEBUG(kpmp_stable); 9925648Ssetje PRM_DEBUG(kpmp_stable_sz); 9930Sstevel@tonic-gate 9945648Ssetje kpmp_table_sz = 0; 9955648Ssetje kpmp_table = NULL; 9960Sstevel@tonic-gate } 9975648Ssetje PRM_DEBUG(kpmp_shift); 9980Sstevel@tonic-gate 9990Sstevel@tonic-gate return (0); 10000Sstevel@tonic-gate } 10010Sstevel@tonic-gate 10023764Sdp78419 /* 10033764Sdp78419 * This function bop allocs kernel TSBs. 10040Sstevel@tonic-gate */ 10050Sstevel@tonic-gate caddr_t 10060Sstevel@tonic-gate sfmmu_ktsb_alloc(caddr_t tsbbase) 10070Sstevel@tonic-gate { 10080Sstevel@tonic-gate caddr_t vaddr; 10090Sstevel@tonic-gate 10100Sstevel@tonic-gate if (enable_bigktsb) { 10110Sstevel@tonic-gate ktsb_base = (caddr_t)roundup((uintptr_t)tsbbase, ktsb_sz); 10125648Ssetje vaddr = prom_alloc(ktsb_base, ktsb_sz, ktsb_sz); 10130Sstevel@tonic-gate if (vaddr != ktsb_base) 10140Sstevel@tonic-gate cmn_err(CE_PANIC, "sfmmu_ktsb_alloc: can't alloc" 10153764Sdp78419 " 8K bigktsb"); 10160Sstevel@tonic-gate ktsb_base = vaddr; 10170Sstevel@tonic-gate tsbbase = ktsb_base + ktsb_sz; 10180Sstevel@tonic-gate PRM_DEBUG(ktsb_base); 10190Sstevel@tonic-gate PRM_DEBUG(tsbbase); 10200Sstevel@tonic-gate } 10213764Sdp78419 10223764Sdp78419 if (ktsb4m_szcode > TSB_64K_SZCODE) { 10233764Sdp78419 ASSERT(ktsb_phys && enable_bigktsb); 10243764Sdp78419 ktsb4m_base = (caddr_t)roundup((uintptr_t)tsbbase, ktsb4m_sz); 10253764Sdp78419 vaddr = (caddr_t)BOP_ALLOC(bootops, ktsb4m_base, ktsb4m_sz, 10263764Sdp78419 ktsb4m_sz); 10273764Sdp78419 if (vaddr != ktsb4m_base) 10283764Sdp78419 cmn_err(CE_PANIC, "sfmmu_ktsb_alloc: can't alloc" 10293764Sdp78419 " 4M bigktsb"); 10303764Sdp78419 ktsb4m_base = vaddr; 10313764Sdp78419 tsbbase = ktsb4m_base + ktsb4m_sz; 10323764Sdp78419 PRM_DEBUG(ktsb4m_base); 10333764Sdp78419 PRM_DEBUG(tsbbase); 10343764Sdp78419 } 10350Sstevel@tonic-gate return (tsbbase); 10360Sstevel@tonic-gate } 10370Sstevel@tonic-gate 10380Sstevel@tonic-gate /* 10390Sstevel@tonic-gate * Moves code assembled outside of the trap table into the trap 10400Sstevel@tonic-gate * table taking care to relocate relative branches to code outside 10410Sstevel@tonic-gate * of the trap handler. 10420Sstevel@tonic-gate */ 10430Sstevel@tonic-gate static void 10440Sstevel@tonic-gate sfmmu_reloc_trap_handler(void *tablep, void *start, size_t count) 10450Sstevel@tonic-gate { 10460Sstevel@tonic-gate size_t i; 10470Sstevel@tonic-gate uint32_t *src; 10480Sstevel@tonic-gate uint32_t *dst; 10490Sstevel@tonic-gate uint32_t inst; 10500Sstevel@tonic-gate int op, op2; 10510Sstevel@tonic-gate int32_t offset; 10520Sstevel@tonic-gate int disp; 10530Sstevel@tonic-gate 10540Sstevel@tonic-gate src = start; 10550Sstevel@tonic-gate dst = tablep; 10560Sstevel@tonic-gate offset = src - dst; 10570Sstevel@tonic-gate for (src = start, i = 0; i < count; i++, src++, dst++) { 10580Sstevel@tonic-gate inst = *dst = *src; 10590Sstevel@tonic-gate op = (inst >> 30) & 0x2; 10600Sstevel@tonic-gate if (op == 1) { 10610Sstevel@tonic-gate /* call */ 10620Sstevel@tonic-gate disp = ((int32_t)inst << 2) >> 2; /* sign-extend */ 10630Sstevel@tonic-gate if (disp + i >= 0 && disp + i < count) 10640Sstevel@tonic-gate continue; 10650Sstevel@tonic-gate disp += offset; 10660Sstevel@tonic-gate inst = 0x40000000u | (disp & 0x3fffffffu); 10670Sstevel@tonic-gate *dst = inst; 10680Sstevel@tonic-gate } else if (op == 0) { 10690Sstevel@tonic-gate /* branch or sethi */ 10700Sstevel@tonic-gate op2 = (inst >> 22) & 0x7; 10710Sstevel@tonic-gate 10720Sstevel@tonic-gate switch (op2) { 10730Sstevel@tonic-gate case 0x3: /* BPr */ 10740Sstevel@tonic-gate disp = (((inst >> 20) & 0x3) << 14) | 10750Sstevel@tonic-gate (inst & 0x3fff); 10760Sstevel@tonic-gate disp = (disp << 16) >> 16; /* sign-extend */ 10770Sstevel@tonic-gate if (disp + i >= 0 && disp + i < count) 10780Sstevel@tonic-gate continue; 10790Sstevel@tonic-gate disp += offset; 10800Sstevel@tonic-gate if (((disp << 16) >> 16) != disp) 10810Sstevel@tonic-gate cmn_err(CE_PANIC, "bad reloc"); 10820Sstevel@tonic-gate inst &= ~0x303fff; 10830Sstevel@tonic-gate inst |= (disp & 0x3fff); 10840Sstevel@tonic-gate inst |= (disp & 0xc000) << 6; 10850Sstevel@tonic-gate break; 10860Sstevel@tonic-gate 10870Sstevel@tonic-gate case 0x2: /* Bicc */ 10880Sstevel@tonic-gate disp = ((int32_t)inst << 10) >> 10; 10890Sstevel@tonic-gate if (disp + i >= 0 && disp + i < count) 10900Sstevel@tonic-gate continue; 10910Sstevel@tonic-gate disp += offset; 10920Sstevel@tonic-gate if (((disp << 10) >> 10) != disp) 10930Sstevel@tonic-gate cmn_err(CE_PANIC, "bad reloc"); 10940Sstevel@tonic-gate inst &= ~0x3fffff; 10950Sstevel@tonic-gate inst |= (disp & 0x3fffff); 10960Sstevel@tonic-gate break; 10970Sstevel@tonic-gate 10980Sstevel@tonic-gate case 0x1: /* Bpcc */ 10990Sstevel@tonic-gate disp = ((int32_t)inst << 13) >> 13; 11000Sstevel@tonic-gate if (disp + i >= 0 && disp + i < count) 11010Sstevel@tonic-gate continue; 11020Sstevel@tonic-gate disp += offset; 11030Sstevel@tonic-gate if (((disp << 13) >> 13) != disp) 11040Sstevel@tonic-gate cmn_err(CE_PANIC, "bad reloc"); 11050Sstevel@tonic-gate inst &= ~0x7ffff; 11060Sstevel@tonic-gate inst |= (disp & 0x7ffffu); 11070Sstevel@tonic-gate break; 11080Sstevel@tonic-gate } 11090Sstevel@tonic-gate *dst = inst; 11100Sstevel@tonic-gate } 11110Sstevel@tonic-gate } 11120Sstevel@tonic-gate flush_instr_mem(tablep, count * sizeof (uint32_t)); 11130Sstevel@tonic-gate } 11140Sstevel@tonic-gate 11150Sstevel@tonic-gate /* 11160Sstevel@tonic-gate * Routine to allocate a large page to use in the TSB caches. 11170Sstevel@tonic-gate */ 11180Sstevel@tonic-gate /*ARGSUSED*/ 11190Sstevel@tonic-gate static page_t * 11200Sstevel@tonic-gate sfmmu_tsb_page_create(void *addr, size_t size, int vmflag, void *arg) 11210Sstevel@tonic-gate { 11220Sstevel@tonic-gate int pgflags; 11230Sstevel@tonic-gate 11240Sstevel@tonic-gate pgflags = PG_EXCL; 11250Sstevel@tonic-gate if ((vmflag & VM_NOSLEEP) == 0) 11260Sstevel@tonic-gate pgflags |= PG_WAIT; 11270Sstevel@tonic-gate if (vmflag & VM_PANIC) 11280Sstevel@tonic-gate pgflags |= PG_PANIC; 11290Sstevel@tonic-gate if (vmflag & VM_PUSHPAGE) 11300Sstevel@tonic-gate pgflags |= PG_PUSHPAGE; 11310Sstevel@tonic-gate 11320Sstevel@tonic-gate return (page_create_va_large(&kvp, (u_offset_t)(uintptr_t)addr, size, 11330Sstevel@tonic-gate pgflags, &kvseg, addr, arg)); 11340Sstevel@tonic-gate } 11350Sstevel@tonic-gate 11360Sstevel@tonic-gate /* 11370Sstevel@tonic-gate * Allocate a large page to back the virtual address range 11380Sstevel@tonic-gate * [addr, addr + size). If addr is NULL, allocate the virtual address 11390Sstevel@tonic-gate * space as well. 11400Sstevel@tonic-gate */ 11410Sstevel@tonic-gate static void * 11420Sstevel@tonic-gate sfmmu_tsb_xalloc(vmem_t *vmp, void *inaddr, size_t size, int vmflag, 11430Sstevel@tonic-gate uint_t attr, page_t *(*page_create_func)(void *, size_t, int, void *), 11440Sstevel@tonic-gate void *pcarg) 11450Sstevel@tonic-gate { 11460Sstevel@tonic-gate page_t *ppl; 11470Sstevel@tonic-gate page_t *rootpp; 11480Sstevel@tonic-gate caddr_t addr = inaddr; 11490Sstevel@tonic-gate pgcnt_t npages = btopr(size); 11500Sstevel@tonic-gate page_t **ppa; 11510Sstevel@tonic-gate int i = 0; 11520Sstevel@tonic-gate 11530Sstevel@tonic-gate /* 11540Sstevel@tonic-gate * Assuming that only TSBs will call this with size > PAGESIZE 11550Sstevel@tonic-gate * There is no reason why this couldn't be expanded to 8k pages as 11560Sstevel@tonic-gate * well, or other page sizes in the future .... but for now, we 11570Sstevel@tonic-gate * only support fixed sized page requests. 11580Sstevel@tonic-gate */ 11590Sstevel@tonic-gate if ((inaddr == NULL) && ((addr = vmem_xalloc(vmp, size, size, 0, 0, 11600Sstevel@tonic-gate NULL, NULL, vmflag)) == NULL)) 11610Sstevel@tonic-gate return (NULL); 11620Sstevel@tonic-gate 11630Sstevel@tonic-gate if (page_resv(npages, vmflag & VM_KMFLAGS) == 0) { 11640Sstevel@tonic-gate if (inaddr == NULL) 11650Sstevel@tonic-gate vmem_xfree(vmp, addr, size); 11660Sstevel@tonic-gate return (NULL); 11670Sstevel@tonic-gate } 11680Sstevel@tonic-gate 11690Sstevel@tonic-gate ppl = page_create_func(addr, size, vmflag, pcarg); 11700Sstevel@tonic-gate if (ppl == NULL) { 11710Sstevel@tonic-gate if (inaddr == NULL) 11720Sstevel@tonic-gate vmem_xfree(vmp, addr, size); 11730Sstevel@tonic-gate page_unresv(npages); 11740Sstevel@tonic-gate return (NULL); 11750Sstevel@tonic-gate } 11760Sstevel@tonic-gate 11770Sstevel@tonic-gate rootpp = ppl; 11780Sstevel@tonic-gate ppa = kmem_zalloc(npages * sizeof (page_t *), KM_SLEEP); 11790Sstevel@tonic-gate while (ppl != NULL) { 11800Sstevel@tonic-gate page_t *pp = ppl; 11810Sstevel@tonic-gate ppa[i++] = pp; 11820Sstevel@tonic-gate page_sub(&ppl, pp); 11830Sstevel@tonic-gate ASSERT(page_iolock_assert(pp)); 11840Sstevel@tonic-gate page_io_unlock(pp); 11850Sstevel@tonic-gate } 11860Sstevel@tonic-gate 11870Sstevel@tonic-gate /* 11880Sstevel@tonic-gate * Load the locked entry. It's OK to preload the entry into 11890Sstevel@tonic-gate * the TSB since we now support large mappings in the kernel TSB. 11900Sstevel@tonic-gate */ 11910Sstevel@tonic-gate hat_memload_array(kas.a_hat, (caddr_t)rootpp->p_offset, size, 11920Sstevel@tonic-gate ppa, (PROT_ALL & ~PROT_USER) | HAT_NOSYNC | attr, HAT_LOAD_LOCK); 11930Sstevel@tonic-gate 11940Sstevel@tonic-gate for (--i; i >= 0; --i) { 11950Sstevel@tonic-gate (void) page_pp_lock(ppa[i], 0, 1); 11960Sstevel@tonic-gate page_unlock(ppa[i]); 11970Sstevel@tonic-gate } 11980Sstevel@tonic-gate 11990Sstevel@tonic-gate kmem_free(ppa, npages * sizeof (page_t *)); 12000Sstevel@tonic-gate return (addr); 12010Sstevel@tonic-gate } 12020Sstevel@tonic-gate 12030Sstevel@tonic-gate /* Called to import new spans into the TSB vmem arenas */ 12040Sstevel@tonic-gate void * 12050Sstevel@tonic-gate sfmmu_tsb_segkmem_alloc(vmem_t *vmp, size_t size, int vmflag) 12060Sstevel@tonic-gate { 12070Sstevel@tonic-gate lgrp_id_t lgrpid = LGRP_NONE; 12080Sstevel@tonic-gate 12090Sstevel@tonic-gate if (tsb_lgrp_affinity) { 12100Sstevel@tonic-gate /* 12110Sstevel@tonic-gate * Search for the vmp->lgrpid mapping by brute force; 12120Sstevel@tonic-gate * some day vmp will have an lgrp, until then we have 12130Sstevel@tonic-gate * to do this the hard way. 12140Sstevel@tonic-gate */ 12150Sstevel@tonic-gate for (lgrpid = 0; lgrpid < NLGRPS_MAX && 12165648Ssetje vmp != kmem_tsb_default_arena[lgrpid]; lgrpid++) 12175648Ssetje ; 12180Sstevel@tonic-gate if (lgrpid == NLGRPS_MAX) 12190Sstevel@tonic-gate lgrpid = LGRP_NONE; 12200Sstevel@tonic-gate } 12210Sstevel@tonic-gate 12220Sstevel@tonic-gate return (sfmmu_tsb_xalloc(vmp, NULL, size, vmflag, 0, 12230Sstevel@tonic-gate sfmmu_tsb_page_create, lgrpid != LGRP_NONE? &lgrpid : NULL)); 12240Sstevel@tonic-gate } 12250Sstevel@tonic-gate 12260Sstevel@tonic-gate /* Called to free spans from the TSB vmem arenas */ 12270Sstevel@tonic-gate void 12280Sstevel@tonic-gate sfmmu_tsb_segkmem_free(vmem_t *vmp, void *inaddr, size_t size) 12290Sstevel@tonic-gate { 12300Sstevel@tonic-gate page_t *pp; 12310Sstevel@tonic-gate caddr_t addr = inaddr; 12320Sstevel@tonic-gate caddr_t eaddr; 12330Sstevel@tonic-gate pgcnt_t npages = btopr(size); 12340Sstevel@tonic-gate pgcnt_t pgs_left = npages; 12350Sstevel@tonic-gate page_t *rootpp = NULL; 12360Sstevel@tonic-gate 12370Sstevel@tonic-gate hat_unload(kas.a_hat, addr, size, HAT_UNLOAD_UNLOCK); 12380Sstevel@tonic-gate 12390Sstevel@tonic-gate for (eaddr = addr + size; addr < eaddr; addr += PAGESIZE) { 12400Sstevel@tonic-gate pp = page_lookup(&kvp, (u_offset_t)(uintptr_t)addr, SE_EXCL); 12410Sstevel@tonic-gate if (pp == NULL) 12420Sstevel@tonic-gate panic("sfmmu_tsb_segkmem_free: page not found"); 12430Sstevel@tonic-gate 12440Sstevel@tonic-gate ASSERT(PAGE_EXCL(pp)); 12450Sstevel@tonic-gate page_pp_unlock(pp, 0, 1); 12460Sstevel@tonic-gate 12470Sstevel@tonic-gate if (rootpp == NULL) 12480Sstevel@tonic-gate rootpp = pp; 12490Sstevel@tonic-gate if (--pgs_left == 0) { 12500Sstevel@tonic-gate /* 12510Sstevel@tonic-gate * similar logic to segspt_free_pages, but we know we 12520Sstevel@tonic-gate * have one large page. 12530Sstevel@tonic-gate */ 12540Sstevel@tonic-gate page_destroy_pages(rootpp); 12550Sstevel@tonic-gate } 12560Sstevel@tonic-gate } 12570Sstevel@tonic-gate page_unresv(npages); 12580Sstevel@tonic-gate 12590Sstevel@tonic-gate if (vmp != NULL) 12600Sstevel@tonic-gate vmem_xfree(vmp, inaddr, size); 12610Sstevel@tonic-gate } 1262