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 /* 237c478bd9Sstevel@tonic-gate * Copyright 2005 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/systm.h> 317c478bd9Sstevel@tonic-gate #include <sys/archsystm.h> 327c478bd9Sstevel@tonic-gate #include <sys/machparam.h> 337c478bd9Sstevel@tonic-gate #include <sys/machsystm.h> 347c478bd9Sstevel@tonic-gate #include <sys/cpu.h> 357c478bd9Sstevel@tonic-gate #include <sys/elf_SPARC.h> 367c478bd9Sstevel@tonic-gate #include <vm/hat_sfmmu.h> 377c478bd9Sstevel@tonic-gate #include <vm/page.h> 387c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h> 397c478bd9Sstevel@tonic-gate #include <sys/async.h> 407c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 417c478bd9Sstevel@tonic-gate #include <sys/debug.h> 427c478bd9Sstevel@tonic-gate #include <sys/dditypes.h> 437c478bd9Sstevel@tonic-gate #include <sys/sunddi.h> 447c478bd9Sstevel@tonic-gate #include <sys/cpu_module.h> 457c478bd9Sstevel@tonic-gate #include <sys/prom_debug.h> 467c478bd9Sstevel@tonic-gate #include <sys/vmsystm.h> 477c478bd9Sstevel@tonic-gate #include <sys/prom_plat.h> 487c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h> 497c478bd9Sstevel@tonic-gate #include <sys/intreg.h> 507c478bd9Sstevel@tonic-gate #include <sys/machtrap.h> 517c478bd9Sstevel@tonic-gate #include <sys/ontrap.h> 527c478bd9Sstevel@tonic-gate #include <sys/ivintr.h> 537c478bd9Sstevel@tonic-gate #include <sys/atomic.h> 547c478bd9Sstevel@tonic-gate #include <sys/panic.h> 557c478bd9Sstevel@tonic-gate #include <sys/dtrace.h> 567c478bd9Sstevel@tonic-gate #include <sys/simulate.h> 577c478bd9Sstevel@tonic-gate #include <sys/fault.h> 58*ce0352ebSgirish #include <sys/niagararegs.h> 59*ce0352ebSgirish #include <sys/trapstat.h> 607c478bd9Sstevel@tonic-gate 617c478bd9Sstevel@tonic-gate #define S_VAC_SIZE MMU_PAGESIZE /* XXXQ? */ 627c478bd9Sstevel@tonic-gate 637c478bd9Sstevel@tonic-gate /* 647c478bd9Sstevel@tonic-gate * Maximum number of contexts 657c478bd9Sstevel@tonic-gate */ 667c478bd9Sstevel@tonic-gate #define MAX_NCTXS (1 << 13) 677c478bd9Sstevel@tonic-gate 687c478bd9Sstevel@tonic-gate uint_t root_phys_addr_lo_mask = 0xffffffffU; 69*ce0352ebSgirish static niagara_mmustat_t *cpu_tstat_va; /* VA of mmustat buffer */ 70*ce0352ebSgirish static uint64_t cpu_tstat_pa; /* PA of mmustat buffer */ 717c478bd9Sstevel@tonic-gate 7207e2e5e8Sgirish #ifdef NIAGARA_CHK_VERSION 737c478bd9Sstevel@tonic-gate static uint64_t cpu_ver; /* Niagara CPU version reg */ 747c478bd9Sstevel@tonic-gate 757c478bd9Sstevel@tonic-gate /* Niagara CPU version register */ 767c478bd9Sstevel@tonic-gate #define VER_MASK_MAJOR_SHIFT 28 777c478bd9Sstevel@tonic-gate #define VER_MASK_MAJOR_MASK 0xf 787c478bd9Sstevel@tonic-gate 797c478bd9Sstevel@tonic-gate extern uint64_t va_to_pa(void *); 807c478bd9Sstevel@tonic-gate extern uint64_t ni_getver(); /* HV code to get %hver */ 817c478bd9Sstevel@tonic-gate extern uint64_t niagara_getver(uint64_t ni_getver_ra, uint64_t *cpu_version); 827c478bd9Sstevel@tonic-gate 8307e2e5e8Sgirish #endif /* NIAGARA_CHK_VERSION */ 847c478bd9Sstevel@tonic-gate 857c478bd9Sstevel@tonic-gate void 867c478bd9Sstevel@tonic-gate cpu_setup(void) 877c478bd9Sstevel@tonic-gate { 887c478bd9Sstevel@tonic-gate extern int at_flags; 897c478bd9Sstevel@tonic-gate extern int disable_delay_tlb_flush, delay_tlb_flush; 907c478bd9Sstevel@tonic-gate extern int mmu_exported_pagesize_mask; 917c478bd9Sstevel@tonic-gate extern int get_cpu_pagesizes(void); 927c478bd9Sstevel@tonic-gate extern int cpc_has_overflow_intr; 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gate cache |= (CACHE_PTAG | CACHE_IOCOHERENT); 957c478bd9Sstevel@tonic-gate at_flags = EF_SPARC_SUN_US3 | EF_SPARC_32PLUS | EF_SPARC_SUN_US1; 967c478bd9Sstevel@tonic-gate 977c478bd9Sstevel@tonic-gate /* 987c478bd9Sstevel@tonic-gate * Use the maximum number of contexts available for Spitfire unless 997c478bd9Sstevel@tonic-gate * it has been tuned for debugging. 1007c478bd9Sstevel@tonic-gate * We are checking against 0 here since this value can be patched 1017c478bd9Sstevel@tonic-gate * while booting. It can not be patched via /etc/system since it 1027c478bd9Sstevel@tonic-gate * will be patched too late and thus cause the system to panic. 1037c478bd9Sstevel@tonic-gate */ 1047c478bd9Sstevel@tonic-gate if (nctxs == 0) 1057c478bd9Sstevel@tonic-gate nctxs = MAX_NCTXS; 1067c478bd9Sstevel@tonic-gate 1077c478bd9Sstevel@tonic-gate if (use_page_coloring) { 1087c478bd9Sstevel@tonic-gate do_pg_coloring = 1; 1097c478bd9Sstevel@tonic-gate if (use_virtual_coloring) 1107c478bd9Sstevel@tonic-gate do_virtual_coloring = 1; 1117c478bd9Sstevel@tonic-gate } 1127c478bd9Sstevel@tonic-gate /* 1137c478bd9Sstevel@tonic-gate * Initalize supported page sizes information before the PD. 1147c478bd9Sstevel@tonic-gate * If no information is available, then initialize the 1157c478bd9Sstevel@tonic-gate * mmu_exported_pagesize_mask to a reasonable value for that processor. 1167c478bd9Sstevel@tonic-gate */ 1177c478bd9Sstevel@tonic-gate mmu_exported_pagesize_mask = get_cpu_pagesizes(); 1187c478bd9Sstevel@tonic-gate if (mmu_exported_pagesize_mask <= 0) { 1197c478bd9Sstevel@tonic-gate mmu_exported_pagesize_mask = (1 << TTE8K) | (1 << TTE64K) | 1207c478bd9Sstevel@tonic-gate (1 << TTE4M) | (1 << TTE256M); 1217c478bd9Sstevel@tonic-gate } 1227c478bd9Sstevel@tonic-gate 1237c478bd9Sstevel@tonic-gate /* 1247c478bd9Sstevel@tonic-gate * Tune pp_slots to use up to 1/8th of the tlb entries. 1257c478bd9Sstevel@tonic-gate */ 1267c478bd9Sstevel@tonic-gate pp_slots = MIN(8, MAXPP_SLOTS); 1277c478bd9Sstevel@tonic-gate 1287c478bd9Sstevel@tonic-gate /* 1297c478bd9Sstevel@tonic-gate * Block stores invalidate all pages of the d$ so pagecopy 1307c478bd9Sstevel@tonic-gate * et. al. do not need virtual translations with virtual 1317c478bd9Sstevel@tonic-gate * coloring taken into consideration. 1327c478bd9Sstevel@tonic-gate */ 1337c478bd9Sstevel@tonic-gate pp_consistent_coloring = 0; 1347c478bd9Sstevel@tonic-gate isa_list = 1357c478bd9Sstevel@tonic-gate "sparcv9 sparcv8plus sparcv8 sparcv8-fsmuld sparcv7 " 1367c478bd9Sstevel@tonic-gate "sparc sparcv9+vis sparcv9+vis2 sparcv8plus+vis sparcv8plus+vis2"; 1377c478bd9Sstevel@tonic-gate 1387c478bd9Sstevel@tonic-gate cpu_hwcap_flags |= AV_SPARC_ASI_BLK_INIT; 1397c478bd9Sstevel@tonic-gate 1407c478bd9Sstevel@tonic-gate /* 14107e2e5e8Sgirish * Niagara supports a 48-bit subset of the full 64-bit virtual 14207e2e5e8Sgirish * address space. Virtual addresses between 0x0000800000000000 14307e2e5e8Sgirish * and 0xffff.7fff.ffff.ffff inclusive lie within a "VA Hole" 14407e2e5e8Sgirish * and must never be mapped. In addition, software must not use 14507e2e5e8Sgirish * pages within 4GB of the VA hole as instruction pages to 14607e2e5e8Sgirish * avoid problems with prefetching into the VA hole. 1477c478bd9Sstevel@tonic-gate * 14807e2e5e8Sgirish * VA hole information should be obtained from the machine 14907e2e5e8Sgirish * description. 1507c478bd9Sstevel@tonic-gate */ 15107e2e5e8Sgirish hole_start = (caddr_t)(0x800000000000ul - (1ul << 32)); 15207e2e5e8Sgirish hole_end = (caddr_t)(0xffff800000000000ul + (1ul << 32)); 1537c478bd9Sstevel@tonic-gate 1547c478bd9Sstevel@tonic-gate /* 1557c478bd9Sstevel@tonic-gate * The kpm mapping window. 1567c478bd9Sstevel@tonic-gate * kpm_size: 1577c478bd9Sstevel@tonic-gate * The size of a single kpm range. 1587c478bd9Sstevel@tonic-gate * The overall size will be: kpm_size * vac_colors. 1597c478bd9Sstevel@tonic-gate * kpm_vbase: 1607c478bd9Sstevel@tonic-gate * The virtual start address of the kpm range within the kernel 1617c478bd9Sstevel@tonic-gate * virtual address space. kpm_vbase has to be kpm_size aligned. 1627c478bd9Sstevel@tonic-gate */ 1637c478bd9Sstevel@tonic-gate kpm_size = (size_t)(2ull * 1024 * 1024 * 1024 * 1024); /* 2TB */ 1647c478bd9Sstevel@tonic-gate kpm_size_shift = 41; 1657c478bd9Sstevel@tonic-gate kpm_vbase = (caddr_t)0xfffffa0000000000ull; /* 16EB - 6TB */ 1667c478bd9Sstevel@tonic-gate 1677c478bd9Sstevel@tonic-gate /* 1687c478bd9Sstevel@tonic-gate * The traptrace code uses either %tick or %stick for 1697c478bd9Sstevel@tonic-gate * timestamping. We have %stick so we can use it. 1707c478bd9Sstevel@tonic-gate */ 1717c478bd9Sstevel@tonic-gate traptrace_use_stick = 1; 1727c478bd9Sstevel@tonic-gate 1737c478bd9Sstevel@tonic-gate /* 1747c478bd9Sstevel@tonic-gate * sun4v provides demap_all 1757c478bd9Sstevel@tonic-gate */ 1767c478bd9Sstevel@tonic-gate if (!disable_delay_tlb_flush) 1777c478bd9Sstevel@tonic-gate delay_tlb_flush = 1; 1787c478bd9Sstevel@tonic-gate /* 1797c478bd9Sstevel@tonic-gate * Niagara has a performance counter overflow interrupt 1807c478bd9Sstevel@tonic-gate */ 1817c478bd9Sstevel@tonic-gate cpc_has_overflow_intr = 1; 1827c478bd9Sstevel@tonic-gate } 1837c478bd9Sstevel@tonic-gate 1847c478bd9Sstevel@tonic-gate #define MB * 1024 * 1024 1857c478bd9Sstevel@tonic-gate /* 1867c478bd9Sstevel@tonic-gate * Set the magic constants of the implementation. 1877c478bd9Sstevel@tonic-gate */ 1887c478bd9Sstevel@tonic-gate void 1897c478bd9Sstevel@tonic-gate cpu_fiximp(struct cpu_node *cpunode) 1907c478bd9Sstevel@tonic-gate { 1917c478bd9Sstevel@tonic-gate extern int vac_size, vac_shift; 1927c478bd9Sstevel@tonic-gate extern uint_t vac_mask; 1937c478bd9Sstevel@tonic-gate int i, a; 1947c478bd9Sstevel@tonic-gate 1957c478bd9Sstevel@tonic-gate /* 1967c478bd9Sstevel@tonic-gate * The assumption here is that fillsysinfo will eventually 1977c478bd9Sstevel@tonic-gate * have code to fill this info in from the PD. 1987c478bd9Sstevel@tonic-gate * We hard code this for niagara now. 1997c478bd9Sstevel@tonic-gate * Once the PD access library is done this code 2007c478bd9Sstevel@tonic-gate * might need to be changed to get the info from the PD 2017c478bd9Sstevel@tonic-gate */ 2027c478bd9Sstevel@tonic-gate if (cpunode->ecache_size == 0) 2037c478bd9Sstevel@tonic-gate cpunode->ecache_size = 3 MB; 2047c478bd9Sstevel@tonic-gate if (cpunode->ecache_linesize == 0) 2057c478bd9Sstevel@tonic-gate cpunode->ecache_linesize = 64; 2067c478bd9Sstevel@tonic-gate if (cpunode->ecache_associativity == 0) 2077c478bd9Sstevel@tonic-gate cpunode->ecache_associativity = 12; 2087c478bd9Sstevel@tonic-gate 2097c478bd9Sstevel@tonic-gate cpunode->ecache_setsize = 2107c478bd9Sstevel@tonic-gate cpunode->ecache_size / cpunode->ecache_associativity; 2117c478bd9Sstevel@tonic-gate 2127c478bd9Sstevel@tonic-gate if (ecache_setsize == 0) 2137c478bd9Sstevel@tonic-gate ecache_setsize = cpunode->ecache_setsize; 2147c478bd9Sstevel@tonic-gate if (ecache_alignsize == 0) 2157c478bd9Sstevel@tonic-gate ecache_alignsize = cpunode->ecache_linesize; 2167c478bd9Sstevel@tonic-gate 2177c478bd9Sstevel@tonic-gate vac_size = S_VAC_SIZE; 2187c478bd9Sstevel@tonic-gate vac_mask = MMU_PAGEMASK & (vac_size - 1); 2197c478bd9Sstevel@tonic-gate i = 0; a = vac_size; 2207c478bd9Sstevel@tonic-gate while (a >>= 1) 2217c478bd9Sstevel@tonic-gate ++i; 2227c478bd9Sstevel@tonic-gate vac_shift = i; 2237c478bd9Sstevel@tonic-gate shm_alignment = vac_size; 2247c478bd9Sstevel@tonic-gate vac = 0; 2257c478bd9Sstevel@tonic-gate } 2267c478bd9Sstevel@tonic-gate 2277c478bd9Sstevel@tonic-gate static int niagara_cpucnt; 2287c478bd9Sstevel@tonic-gate 2297c478bd9Sstevel@tonic-gate void 2307c478bd9Sstevel@tonic-gate cpu_init_private(struct cpu *cp) 2317c478bd9Sstevel@tonic-gate { 2327c478bd9Sstevel@tonic-gate extern int niagara_kstat_init(void); 2337c478bd9Sstevel@tonic-gate 23407e2e5e8Sgirish #ifdef NIAGARA_CHK_VERSION 23507e2e5e8Sgirish /* 23607e2e5e8Sgirish * Prevent booting on a Niagara 1.x processor as it is no longer 23707e2e5e8Sgirish * supported. 23807e2e5e8Sgirish * 23907e2e5e8Sgirish * This is a temporary hack until everyone has switched to the 24007e2e5e8Sgirish * firmware which prevents booting on a Niagara 1.x processor. 24107e2e5e8Sgirish */ 24207e2e5e8Sgirish if (niagara_getver(va_to_pa((void *)ni_getver), &cpu_ver) == H_EOK && 24307e2e5e8Sgirish ((cpu_ver >> VER_MASK_MAJOR_SHIFT) & VER_MASK_MAJOR_MASK) <= 1) 24407e2e5e8Sgirish cmn_err(CE_PANIC, "CPU%d: Niagara 1.x no longer supported.", 24507e2e5e8Sgirish cp->cpu_id); 24607e2e5e8Sgirish #endif /* NIAGARA_CHK_VERSION */ 24707e2e5e8Sgirish 24870f54eadSesaxe /* 24970f54eadSesaxe * This code change assumes that the virtual cpu ids are identical 25070f54eadSesaxe * to the physical cpu ids which is true for ontario but not for 25170f54eadSesaxe * niagara in general. 25270f54eadSesaxe * This is a temporary fix which will later be modified to obtain 25370f54eadSesaxe * the execution unit sharing information from MD table. 25470f54eadSesaxe */ 25570f54eadSesaxe cp->cpu_m.cpu_ipipe = (id_t)(cp->cpu_id / 4); 25670f54eadSesaxe 2577c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&cpu_lock)); 2587c478bd9Sstevel@tonic-gate if (niagara_cpucnt++ == 0) { 2597c478bd9Sstevel@tonic-gate (void) niagara_kstat_init(); 2607c478bd9Sstevel@tonic-gate } 2617c478bd9Sstevel@tonic-gate } 2627c478bd9Sstevel@tonic-gate 2637c478bd9Sstevel@tonic-gate void 2647c478bd9Sstevel@tonic-gate cpu_uninit_private(struct cpu *cp) 2657c478bd9Sstevel@tonic-gate { 2667c478bd9Sstevel@tonic-gate extern int niagara_kstat_fini(void); 2677c478bd9Sstevel@tonic-gate 2687c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&cpu_lock)); 2697c478bd9Sstevel@tonic-gate if (--niagara_cpucnt == 0) { 2707c478bd9Sstevel@tonic-gate (void) niagara_kstat_fini(); 2717c478bd9Sstevel@tonic-gate } 2727c478bd9Sstevel@tonic-gate } 2737c478bd9Sstevel@tonic-gate 2747c478bd9Sstevel@tonic-gate /* 2757c478bd9Sstevel@tonic-gate * On Niagara, any flush will cause all preceding stores to be 2767c478bd9Sstevel@tonic-gate * synchronized wrt the i$, regardless of address or ASI. In fact, 2777c478bd9Sstevel@tonic-gate * the address is ignored, so we always flush address 0. 2787c478bd9Sstevel@tonic-gate */ 2797c478bd9Sstevel@tonic-gate void 2807c478bd9Sstevel@tonic-gate dtrace_flush_sec(uintptr_t addr) 2817c478bd9Sstevel@tonic-gate { 2827c478bd9Sstevel@tonic-gate doflush(0); 2837c478bd9Sstevel@tonic-gate } 2847c478bd9Sstevel@tonic-gate 2857c478bd9Sstevel@tonic-gate #define IS_FLOAT(i) (((i) & 0x1000000) != 0) 2867c478bd9Sstevel@tonic-gate #define IS_IBIT_SET(x) (x & 0x2000) 2877c478bd9Sstevel@tonic-gate #define IS_VIS1(op, op3)(op == 2 && op3 == 0x36) 2887c478bd9Sstevel@tonic-gate #define IS_PARTIAL_OR_SHORT_FLOAT_LD_ST(op, op3, asi) \ 2897c478bd9Sstevel@tonic-gate (op == 3 && (op3 == IOP_V8_LDDFA || \ 2907c478bd9Sstevel@tonic-gate op3 == IOP_V8_STDFA) && asi > ASI_SNFL) 2917c478bd9Sstevel@tonic-gate int 2927c478bd9Sstevel@tonic-gate vis1_partial_support(struct regs *rp, k_siginfo_t *siginfo, uint_t *fault) 2937c478bd9Sstevel@tonic-gate { 2947c478bd9Sstevel@tonic-gate char *badaddr; 2957c478bd9Sstevel@tonic-gate int instr; 2967c478bd9Sstevel@tonic-gate uint_t optype, op3, asi; 2977c478bd9Sstevel@tonic-gate uint_t rd, ignor; 2987c478bd9Sstevel@tonic-gate 299efaef81fSarao if (!USERMODE(rp->r_tstate)) 300efaef81fSarao return (-1); 3017c478bd9Sstevel@tonic-gate 3027c478bd9Sstevel@tonic-gate instr = fetch_user_instr((caddr_t)rp->r_pc); 3037c478bd9Sstevel@tonic-gate 3047c478bd9Sstevel@tonic-gate rd = (instr >> 25) & 0x1f; 3057c478bd9Sstevel@tonic-gate optype = (instr >> 30) & 0x3; 3067c478bd9Sstevel@tonic-gate op3 = (instr >> 19) & 0x3f; 3077c478bd9Sstevel@tonic-gate ignor = (instr >> 5) & 0xff; 3087c478bd9Sstevel@tonic-gate if (IS_IBIT_SET(instr)) { 3097c478bd9Sstevel@tonic-gate asi = (uint32_t)((rp->r_tstate >> TSTATE_ASI_SHIFT) & 3107c478bd9Sstevel@tonic-gate TSTATE_ASI_MASK); 3117c478bd9Sstevel@tonic-gate } else { 3127c478bd9Sstevel@tonic-gate asi = ignor; 3137c478bd9Sstevel@tonic-gate } 3147c478bd9Sstevel@tonic-gate 3157c478bd9Sstevel@tonic-gate if (!IS_VIS1(optype, op3) && 3167c478bd9Sstevel@tonic-gate !IS_PARTIAL_OR_SHORT_FLOAT_LD_ST(optype, op3, asi)) { 3177c478bd9Sstevel@tonic-gate return (-1); 3187c478bd9Sstevel@tonic-gate } 3197c478bd9Sstevel@tonic-gate switch (simulate_unimp(rp, &badaddr)) { 3207c478bd9Sstevel@tonic-gate case SIMU_RETRY: 3217c478bd9Sstevel@tonic-gate break; /* regs are already set up */ 3227c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 3237c478bd9Sstevel@tonic-gate 3247c478bd9Sstevel@tonic-gate case SIMU_SUCCESS: 3257c478bd9Sstevel@tonic-gate /* 3267c478bd9Sstevel@tonic-gate * skip the successfully 3277c478bd9Sstevel@tonic-gate * simulated instruction 3287c478bd9Sstevel@tonic-gate */ 3297c478bd9Sstevel@tonic-gate rp->r_pc = rp->r_npc; 3307c478bd9Sstevel@tonic-gate rp->r_npc += 4; 3317c478bd9Sstevel@tonic-gate break; 3327c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 3337c478bd9Sstevel@tonic-gate 3347c478bd9Sstevel@tonic-gate case SIMU_FAULT: 3357c478bd9Sstevel@tonic-gate siginfo->si_signo = SIGSEGV; 3367c478bd9Sstevel@tonic-gate siginfo->si_code = SEGV_MAPERR; 3377c478bd9Sstevel@tonic-gate siginfo->si_addr = badaddr; 3387c478bd9Sstevel@tonic-gate *fault = FLTBOUNDS; 3397c478bd9Sstevel@tonic-gate break; 3407c478bd9Sstevel@tonic-gate 3417c478bd9Sstevel@tonic-gate case SIMU_DZERO: 3427c478bd9Sstevel@tonic-gate siginfo->si_signo = SIGFPE; 3437c478bd9Sstevel@tonic-gate siginfo->si_code = FPE_INTDIV; 3447c478bd9Sstevel@tonic-gate siginfo->si_addr = (caddr_t)rp->r_pc; 3457c478bd9Sstevel@tonic-gate *fault = FLTIZDIV; 3467c478bd9Sstevel@tonic-gate break; 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gate case SIMU_UNALIGN: 3497c478bd9Sstevel@tonic-gate siginfo->si_signo = SIGBUS; 3507c478bd9Sstevel@tonic-gate siginfo->si_code = BUS_ADRALN; 3517c478bd9Sstevel@tonic-gate siginfo->si_addr = badaddr; 3527c478bd9Sstevel@tonic-gate *fault = FLTACCESS; 3537c478bd9Sstevel@tonic-gate break; 3547c478bd9Sstevel@tonic-gate 3557c478bd9Sstevel@tonic-gate case SIMU_ILLEGAL: 3567c478bd9Sstevel@tonic-gate default: 3577c478bd9Sstevel@tonic-gate siginfo->si_signo = SIGILL; 3587c478bd9Sstevel@tonic-gate op3 = (instr >> 19) & 0x3F; 3597c478bd9Sstevel@tonic-gate if ((IS_FLOAT(instr) && (op3 == IOP_V8_STQFA) || 3607c478bd9Sstevel@tonic-gate (op3 == IOP_V8_STDFA))) 3617c478bd9Sstevel@tonic-gate siginfo->si_code = ILL_ILLADR; 3627c478bd9Sstevel@tonic-gate else 3637c478bd9Sstevel@tonic-gate siginfo->si_code = ILL_ILLOPC; 3647c478bd9Sstevel@tonic-gate siginfo->si_addr = (caddr_t)rp->r_pc; 3657c478bd9Sstevel@tonic-gate *fault = FLTILL; 3667c478bd9Sstevel@tonic-gate break; 3677c478bd9Sstevel@tonic-gate } 3687c478bd9Sstevel@tonic-gate return (0); 3697c478bd9Sstevel@tonic-gate } 370*ce0352ebSgirish 371*ce0352ebSgirish /* 372*ce0352ebSgirish * Trapstat support for Niagara processor 373*ce0352ebSgirish */ 374*ce0352ebSgirish int 375*ce0352ebSgirish cpu_trapstat_conf(int cmd) 376*ce0352ebSgirish { 377*ce0352ebSgirish size_t len; 378*ce0352ebSgirish uint64_t mmustat_pa, hvret; 379*ce0352ebSgirish int status = 0; 380*ce0352ebSgirish 381*ce0352ebSgirish switch (cmd) { 382*ce0352ebSgirish case CPU_TSTATCONF_INIT: 383*ce0352ebSgirish ASSERT(cpu_tstat_va == NULL); 384*ce0352ebSgirish len = (NCPU+1) * sizeof (niagara_mmustat_t); 385*ce0352ebSgirish cpu_tstat_va = contig_mem_alloc_align(len, 386*ce0352ebSgirish sizeof (niagara_mmustat_t)); 387*ce0352ebSgirish if (cpu_tstat_va == NULL) 388*ce0352ebSgirish status = EAGAIN; 389*ce0352ebSgirish else { 390*ce0352ebSgirish bzero(cpu_tstat_va, len); 391*ce0352ebSgirish cpu_tstat_pa = va_to_pa(cpu_tstat_va); 392*ce0352ebSgirish } 393*ce0352ebSgirish break; 394*ce0352ebSgirish 395*ce0352ebSgirish case CPU_TSTATCONF_FINI: 396*ce0352ebSgirish if (cpu_tstat_va) { 397*ce0352ebSgirish len = (NCPU+1) * sizeof (niagara_mmustat_t); 398*ce0352ebSgirish contig_mem_free(cpu_tstat_va, len); 399*ce0352ebSgirish cpu_tstat_va = NULL; 400*ce0352ebSgirish cpu_tstat_pa = 0; 401*ce0352ebSgirish } 402*ce0352ebSgirish break; 403*ce0352ebSgirish 404*ce0352ebSgirish case CPU_TSTATCONF_ENABLE: 405*ce0352ebSgirish hvret = hv_niagara_mmustat_conf((cpu_tstat_pa + 406*ce0352ebSgirish (CPU->cpu_id+1) * sizeof (niagara_mmustat_t)), 407*ce0352ebSgirish (uint64_t *)&mmustat_pa); 408*ce0352ebSgirish if (hvret != H_EOK) 409*ce0352ebSgirish status = EINVAL; 410*ce0352ebSgirish break; 411*ce0352ebSgirish 412*ce0352ebSgirish case CPU_TSTATCONF_DISABLE: 413*ce0352ebSgirish hvret = hv_niagara_mmustat_conf(0, (uint64_t *)&mmustat_pa); 414*ce0352ebSgirish if (hvret != H_EOK) 415*ce0352ebSgirish status = EINVAL; 416*ce0352ebSgirish break; 417*ce0352ebSgirish 418*ce0352ebSgirish default: 419*ce0352ebSgirish status = EINVAL; 420*ce0352ebSgirish break; 421*ce0352ebSgirish } 422*ce0352ebSgirish return (status); 423*ce0352ebSgirish } 424*ce0352ebSgirish 425*ce0352ebSgirish void 426*ce0352ebSgirish cpu_trapstat_data(void *buf, uint_t tstat_pgszs) 427*ce0352ebSgirish { 428*ce0352ebSgirish niagara_mmustat_t *mmustatp; 429*ce0352ebSgirish tstat_pgszdata_t *tstatp = (tstat_pgszdata_t *)buf; 430*ce0352ebSgirish int i, pgcnt; 431*ce0352ebSgirish 432*ce0352ebSgirish if (cpu_tstat_va == NULL) 433*ce0352ebSgirish return; 434*ce0352ebSgirish 435*ce0352ebSgirish mmustatp = &((niagara_mmustat_t *)cpu_tstat_va)[CPU->cpu_id+1]; 436*ce0352ebSgirish if (tstat_pgszs > NIAGARA_MMUSTAT_PGSZS) 437*ce0352ebSgirish tstat_pgszs = NIAGARA_MMUSTAT_PGSZS; 438*ce0352ebSgirish 439*ce0352ebSgirish for (i = 0; i < tstat_pgszs; i++, tstatp++) { 440*ce0352ebSgirish tstatp->tpgsz_kernel.tmode_itlb.ttlb_tlb.tmiss_count = 441*ce0352ebSgirish mmustatp->kitsb[i].tsbhit_count; 442*ce0352ebSgirish tstatp->tpgsz_kernel.tmode_itlb.ttlb_tlb.tmiss_time = 443*ce0352ebSgirish mmustatp->kitsb[i].tsbhit_time; 444*ce0352ebSgirish tstatp->tpgsz_user.tmode_itlb.ttlb_tlb.tmiss_count = 445*ce0352ebSgirish mmustatp->uitsb[i].tsbhit_count; 446*ce0352ebSgirish tstatp->tpgsz_user.tmode_itlb.ttlb_tlb.tmiss_time = 447*ce0352ebSgirish mmustatp->uitsb[i].tsbhit_time; 448*ce0352ebSgirish tstatp->tpgsz_kernel.tmode_dtlb.ttlb_tlb.tmiss_count = 449*ce0352ebSgirish mmustatp->kdtsb[i].tsbhit_count; 450*ce0352ebSgirish tstatp->tpgsz_kernel.tmode_dtlb.ttlb_tlb.tmiss_time = 451*ce0352ebSgirish mmustatp->kdtsb[i].tsbhit_time; 452*ce0352ebSgirish tstatp->tpgsz_user.tmode_dtlb.ttlb_tlb.tmiss_count = 453*ce0352ebSgirish mmustatp->udtsb[i].tsbhit_count; 454*ce0352ebSgirish tstatp->tpgsz_user.tmode_dtlb.ttlb_tlb.tmiss_time = 455*ce0352ebSgirish mmustatp->udtsb[i].tsbhit_time; 456*ce0352ebSgirish } 457*ce0352ebSgirish } 458