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 51772Sjl139090 * Common Development and Distribution License (the "License"). 61772Sjl139090 * 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 */ 210Sstevel@tonic-gate /* 223434Sesaxe * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 230Sstevel@tonic-gate * Use is subject to license terms. 240Sstevel@tonic-gate */ 250Sstevel@tonic-gate 260Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 270Sstevel@tonic-gate 280Sstevel@tonic-gate #include <sys/systm.h> 290Sstevel@tonic-gate #include <sys/conf.h> 300Sstevel@tonic-gate #include <sys/stat.h> 310Sstevel@tonic-gate #include <sys/ddi.h> 320Sstevel@tonic-gate #include <sys/sunddi.h> 330Sstevel@tonic-gate #include <sys/modctl.h> 340Sstevel@tonic-gate #include <sys/cpu_module.h> 350Sstevel@tonic-gate #include <vm/hat_sfmmu.h> 360Sstevel@tonic-gate #include <vm/seg_kmem.h> 370Sstevel@tonic-gate #include <vm/seg_kpm.h> 380Sstevel@tonic-gate #include <vm/vm_dep.h> 390Sstevel@tonic-gate #include <sys/machsystm.h> 400Sstevel@tonic-gate #include <sys/machasi.h> 410Sstevel@tonic-gate #include <sys/sysmacros.h> 420Sstevel@tonic-gate #include <sys/callb.h> 430Sstevel@tonic-gate #include <sys/archsystm.h> 440Sstevel@tonic-gate #include <sys/trapstat.h> 450Sstevel@tonic-gate #ifdef sun4v 460Sstevel@tonic-gate #include <sys/hypervisor_api.h> 470Sstevel@tonic-gate #endif 481772Sjl139090 #ifndef sun4v 493434Sesaxe #include <sys/pghw.h> 501772Sjl139090 #endif 510Sstevel@tonic-gate 520Sstevel@tonic-gate /* BEGIN CSTYLED */ 530Sstevel@tonic-gate /* 540Sstevel@tonic-gate * trapstat: Trap Statistics through Dynamic Trap Table Interposition 550Sstevel@tonic-gate * ------------------------------------------------------------------- 560Sstevel@tonic-gate * 570Sstevel@tonic-gate * Motivation and Overview 580Sstevel@tonic-gate * 590Sstevel@tonic-gate * Despite being a fundamental indicator of system behavior, there has 600Sstevel@tonic-gate * historically been very little insight provided into the frequency and cost 610Sstevel@tonic-gate * of machine-specific traps. The lack of insight has been especially acute 620Sstevel@tonic-gate * on UltraSPARC microprocessors: because these microprocessors handle TLB 630Sstevel@tonic-gate * misses as software traps, the frequency and duration of traps play a 640Sstevel@tonic-gate * decisive role in the performance of the memory system. As applications have 650Sstevel@tonic-gate * increasingly outstripped TLB reach, this has become increasingly true. 660Sstevel@tonic-gate * 670Sstevel@tonic-gate * Part of the difficulty of observing trap behavior is that the trap handlers 680Sstevel@tonic-gate * are so frequently called (e.g. millions of times per second) that any 690Sstevel@tonic-gate * permanently enabled instrumentation would induce an unacceptable performance 700Sstevel@tonic-gate * degradation. Thus, it is a constraint on any trap observability 710Sstevel@tonic-gate * infrastructure that it have no probe effect when not explicitly enabled. 720Sstevel@tonic-gate * 730Sstevel@tonic-gate * The basic idea, then, is to create an interposing trap table in which each 740Sstevel@tonic-gate * entry increments a per-trap, in-memory counter and then jumps to the actual, 750Sstevel@tonic-gate * underlying trap table entry. To enable trapstat, we atomically write to the 760Sstevel@tonic-gate * trap base address (%tba) register to point to our interposing trap table. 770Sstevel@tonic-gate * (Note that per-CPU statistics fall out by creating a different trap table 780Sstevel@tonic-gate * for each CPU.) 790Sstevel@tonic-gate * 800Sstevel@tonic-gate * Implementation Details 810Sstevel@tonic-gate * 820Sstevel@tonic-gate * While the idea is straight-forward, a nuance of SPARC V9 slightly 830Sstevel@tonic-gate * complicates the implementation. Unlike its predecessors, SPARC V9 supports 840Sstevel@tonic-gate * the notion of nested traps. The trap level is kept in the TL register: 850Sstevel@tonic-gate * during normal operation it is 0; when a trap is taken, the TL register is 860Sstevel@tonic-gate * incremented by 1. To aid system software, SPARC V9 breaks the trap table 870Sstevel@tonic-gate * into two halves: the lower half contains the trap handlers for traps taken 880Sstevel@tonic-gate * when TL is 0; the upper half contains the trap handlers for traps taken 890Sstevel@tonic-gate * when TL is greater than 0. Each half is further subdivided into two 900Sstevel@tonic-gate * subsequent halves: the lower half contains the trap handlers for traps 910Sstevel@tonic-gate * other than those induced by the trap instruction (Tcc variants); the upper 920Sstevel@tonic-gate * half contains the trap handlers for traps induced by the trap instruction. 930Sstevel@tonic-gate * This gives a total of four ranges, with each range containing 256 traps: 940Sstevel@tonic-gate * 950Sstevel@tonic-gate * +--------------------------------+- 3ff 960Sstevel@tonic-gate * | | . 970Sstevel@tonic-gate * | Trap instruction, TL>0 | . 980Sstevel@tonic-gate * | | . 990Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 300 1000Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 2ff 1010Sstevel@tonic-gate * | | . 1020Sstevel@tonic-gate * | Non-trap instruction, TL>0 | . 1030Sstevel@tonic-gate * | | . 1040Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 200 1050Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 1ff 1060Sstevel@tonic-gate * | | . 1070Sstevel@tonic-gate * | Trap instruction, TL=0 | . 1080Sstevel@tonic-gate * | | . 1090Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 100 1100Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 0ff 1110Sstevel@tonic-gate * | | . 1120Sstevel@tonic-gate * | Non-trap instruction, TL=0 | . 1130Sstevel@tonic-gate * | | . 1140Sstevel@tonic-gate * +--------------------------------+- 000 1150Sstevel@tonic-gate * 1160Sstevel@tonic-gate * 1170Sstevel@tonic-gate * Solaris, however, doesn't have reason to support trap instructions when 1180Sstevel@tonic-gate * TL>0 (only privileged code may execute at TL>0; not supporting this only 1190Sstevel@tonic-gate * constrains our own implementation). The trap table actually looks like: 1200Sstevel@tonic-gate * 1210Sstevel@tonic-gate * +--------------------------------+- 2ff 1220Sstevel@tonic-gate * | | . 1230Sstevel@tonic-gate * | Non-trap instruction, TL>0 | . 1240Sstevel@tonic-gate * | | . 1250Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 200 1260Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 1ff 1270Sstevel@tonic-gate * | | . 1280Sstevel@tonic-gate * | Trap instruction, TL=0 | . 1290Sstevel@tonic-gate * | | . 1300Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 100 1310Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 0ff 1320Sstevel@tonic-gate * | | . 1330Sstevel@tonic-gate * | Non-trap instruction, TL=0 | . 1340Sstevel@tonic-gate * | | . 1350Sstevel@tonic-gate * +--------------------------------+- 000 1360Sstevel@tonic-gate * 1370Sstevel@tonic-gate * Putatively to aid system software, SPARC V9 has the notion of multiple 1380Sstevel@tonic-gate * sets of global registers. UltraSPARC defines four sets of global 1390Sstevel@tonic-gate * registers: 1400Sstevel@tonic-gate * 1410Sstevel@tonic-gate * Normal Globals 1420Sstevel@tonic-gate * Alternate Globals (AGs) 1430Sstevel@tonic-gate * MMU Globals (MGs) 1440Sstevel@tonic-gate * Interrupt Globals (IGs) 1450Sstevel@tonic-gate * 1460Sstevel@tonic-gate * The set of globals in use is controlled by bits in PSTATE; when TL is 0 1470Sstevel@tonic-gate * (and PSTATE has not been otherwise explicitly modified), the Normal Globals 1480Sstevel@tonic-gate * are in use. When a trap is issued, PSTATE is modified to point to a set of 1490Sstevel@tonic-gate * globals corresponding to the trap type. Most traps correspond to the 1500Sstevel@tonic-gate * Alternate Globals, with a minority corresponding to the MMU Globals, and 1510Sstevel@tonic-gate * only the interrupt-vector trap (vector 0x60) corresponding to the Interrupt 1520Sstevel@tonic-gate * Globals. (The complete mapping can be found in the UltraSPARC I&II User's 1530Sstevel@tonic-gate * Manual.) 1540Sstevel@tonic-gate * 1550Sstevel@tonic-gate * Note that the sets of globals are per trap _type_, not per trap _level_. 1560Sstevel@tonic-gate * Thus, when executing a TL>0 trap handler, one may not have registers 1570Sstevel@tonic-gate * available (for example, both trap-instruction traps and spill traps execute 1580Sstevel@tonic-gate * on the alternate globals; if a trap-instruction trap induces a window spill, 1590Sstevel@tonic-gate * the window spill handler has no available globals). For trapstat, this is 1600Sstevel@tonic-gate * problematic: a register is required to transfer control from one arbitrary 1610Sstevel@tonic-gate * location (in the interposing trap table) to another (in the actual trap 1620Sstevel@tonic-gate * table). 1630Sstevel@tonic-gate * 1640Sstevel@tonic-gate * We solve this problem by exploiting the trap table's location at the bottom 1650Sstevel@tonic-gate * of valid kernel memory (i.e. at KERNELBASE). We locate the interposing trap 1660Sstevel@tonic-gate * tables just below KERNELBASE -- thereby allowing us to use a branch-always 1670Sstevel@tonic-gate * instruction (ba) instead of a jump instruction (jmp) to transfer control 1680Sstevel@tonic-gate * from the TL>0 entries in the interposing trap table to the TL>0 entries in 1690Sstevel@tonic-gate * the actual trap table. (N.B. while this allows trap table interposition to 1700Sstevel@tonic-gate * work, it necessarily limits trapstat to only recording information about 1710Sstevel@tonic-gate * TL=0 traps -- there is no way to increment a counter without using a 1720Sstevel@tonic-gate * register.) Diagrammatically: 1730Sstevel@tonic-gate * 1740Sstevel@tonic-gate * Actual trap table: 1750Sstevel@tonic-gate * 1760Sstevel@tonic-gate * +--------------------------------+- 2ff 1770Sstevel@tonic-gate * | | . 1780Sstevel@tonic-gate * | Non-trap instruction, TL>0 | . <-----------------------+ 1790Sstevel@tonic-gate * | | . <-----------------------|-+ 1800Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 200 <-----------------------|-|-+ 1810Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 1ff | | | 1820Sstevel@tonic-gate * | | . | | | 1830Sstevel@tonic-gate * | Trap instruction, TL=0 | . <-----------------+ | | | 1840Sstevel@tonic-gate * | | . <-----------------|-+ | | | 1850Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 100 <-----------------|-|-+ | | | 1860Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 0ff | | | | | | 1870Sstevel@tonic-gate * | | . | | | | | | 1880Sstevel@tonic-gate * | Non-trap instruction, TL=0 | . <-----------+ | | | | | | 1890Sstevel@tonic-gate * | | . <-----------|-+ | | | | | | 1900Sstevel@tonic-gate * +--------------------------------+- 000 <-----------|-|-+ | | | | | | 1910Sstevel@tonic-gate * KERNELBASE | | | | | | | | | 1920Sstevel@tonic-gate * | | | | | | | | | 1930Sstevel@tonic-gate * | | | | | | | | | 1940Sstevel@tonic-gate * Interposing trap table: | | | | | | | | | 1950Sstevel@tonic-gate * | | | | | | | | | 1960Sstevel@tonic-gate * +--------------------------------+- 2ff | | | | | | | | | 1970Sstevel@tonic-gate * | ... | . | | | | | | | | | 1980Sstevel@tonic-gate * | ... | . | | | | | | | | | 1990Sstevel@tonic-gate * | ... | . | | | | | | | | | 2000Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 203 | | | | | | | | | 2010Sstevel@tonic-gate * | ba,a | -------------|-|-|-|-|-|-+ | | 2020Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 202 | | | | | | | | 2030Sstevel@tonic-gate * | ba,a | -------------|-|-|-|-|-|---+ | 2040Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 201 | | | | | | | 2050Sstevel@tonic-gate * | ba,a | -------------|-|-|-|-|-|-----+ 2060Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 200 | | | | | | 2070Sstevel@tonic-gate * | ... | . | | | | | | 2080Sstevel@tonic-gate * | ... | . | | | | | | 2090Sstevel@tonic-gate * | ... | . | | | | | | 2100Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 103 | | | | | | 2110Sstevel@tonic-gate * | (Increment counter) | | | | | | | 2120Sstevel@tonic-gate * | ba,a | -------------------+ | | 2130Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 102 | | | | | 2140Sstevel@tonic-gate * | (Increment counter) | | | | | | 2150Sstevel@tonic-gate * | ba,a | ---------------------+ | 2160Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 101 | | | | 2170Sstevel@tonic-gate * | (Increment counter) | | | | | 2180Sstevel@tonic-gate * | ba,a | -----------------------+ 2190Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 100 | | | 2200Sstevel@tonic-gate * | ... | . | | | 2210Sstevel@tonic-gate * | ... | . | | | 2220Sstevel@tonic-gate * | ... | . | | | 2230Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 003 | | | 2240Sstevel@tonic-gate * | (Increment counter) | | | | 2250Sstevel@tonic-gate * | ba,a | -------------+ | | 2260Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 002 | | 2270Sstevel@tonic-gate * | (Increment counter) | | | 2280Sstevel@tonic-gate * | ba,a | ---------------+ | 2290Sstevel@tonic-gate * |- - - - - - - - - - - - - - - - +- 001 | 2300Sstevel@tonic-gate * | (Increment counter) | | 2310Sstevel@tonic-gate * | ba,a | -----------------+ 2320Sstevel@tonic-gate * +--------------------------------+- 000 2330Sstevel@tonic-gate * KERNELBASE - tstat_total_size 2340Sstevel@tonic-gate * 2350Sstevel@tonic-gate * tstat_total_size is the number of pages required for each trap table. It 2360Sstevel@tonic-gate * must be true that KERNELBASE - tstat_total_size is less than the maximum 2370Sstevel@tonic-gate * branch displacement; if each CPU were to consume a disjoint virtual range 2380Sstevel@tonic-gate * below KERNELBASE for its trap table, we could support at most 2390Sstevel@tonic-gate * (maximum_branch_displacement / tstat_total_size) CPUs. The maximum branch 2400Sstevel@tonic-gate * displacement for Bicc variants is just under eight megabytes, and (because 2410Sstevel@tonic-gate * the %tba must be 32K aligned), tstat_total_size must be at least 32K; if 2420Sstevel@tonic-gate * each CPU were to consume a disjoint virtual range, we would have an 2430Sstevel@tonic-gate * unacceptably low upper bound of 256 CPUs. 2440Sstevel@tonic-gate * 2450Sstevel@tonic-gate * While there are tricks that one could use to address this constraint (e.g., 2460Sstevel@tonic-gate * creating trampolines every maximum_branch_displacement bytes), we instead 2470Sstevel@tonic-gate * solve this by not permitting each CPU to consume a disjoint virtual range. 2480Sstevel@tonic-gate * Rather, we have each CPU's interposing trap table use the _same_ virtual 2490Sstevel@tonic-gate * range, but we back the trap tables with disjoint physical memory. Normally, 2500Sstevel@tonic-gate * such one-to-many virtual-to-physical mappings are illegal; this is 2510Sstevel@tonic-gate * permissible here only because the pages for the interposing trap table are 2520Sstevel@tonic-gate * necessarily locked in the TLB. (The CPUs thus never have the opportunity to 2530Sstevel@tonic-gate * discover that they have conflicting translations.) 2540Sstevel@tonic-gate * 2550Sstevel@tonic-gate * On CMT architectures in which CPUs can share MMUs, the above trick will not 2560Sstevel@tonic-gate * work: two CPUs that share an MMU cannot have the same virtual address map 2570Sstevel@tonic-gate * to disjoint physical pages. On these architectures, any CPUs sharing the 2580Sstevel@tonic-gate * same MMU must consume a disjoint 32K virtual address range -- limiting the 2590Sstevel@tonic-gate * number of CPUs sharing an MMU on these architectures to 256 due to the 2600Sstevel@tonic-gate * branch displacement limitation described above. On the sun4v architecture, 2610Sstevel@tonic-gate * there is a further limitation: a guest may not have more than eight locked 2620Sstevel@tonic-gate * TLB entries per MMU. To allow operation under this restriction, the 2630Sstevel@tonic-gate * interposing trap table and the trap statistics are each accessed through 2640Sstevel@tonic-gate * a single 4M TLB entry. This limits the footprint to two locked entries 2650Sstevel@tonic-gate * (one for the I-TLB and one for the D-TLB), but further restricts the number 2660Sstevel@tonic-gate * of CPUs to 128 per MMU. However, support for more than 128 CPUs can easily 2670Sstevel@tonic-gate * be added via a hybrid scheme, where the same 4M virtual address is used 2680Sstevel@tonic-gate * on different MMUs. 2690Sstevel@tonic-gate * 2704732Sdavemq * On sun4v architecture, we currently don't use hybrid scheme as it imposes 2714732Sdavemq * additional restriction on live migration and transparent CPU replacement. 2724732Sdavemq * Instead, we increase the number of supported CPUs by reducing the virtual 2734732Sdavemq * address space requirements per CPU via shared interposing trap table as 2744732Sdavemq * follows: 2754732Sdavemq * 2764732Sdavemq * Offset (within 4MB page) 2774732Sdavemq * +------------------------------------+- 0x400000 2784732Sdavemq * | CPU 507 trap statistics (8KB) | . 2794732Sdavemq * |- - - - - - - - - - - - - - - - - - +- 0x3fe000 2804732Sdavemq * | | 2814732Sdavemq * | ... | 2824732Sdavemq * | | 2834732Sdavemq * |- - - - - - - - - - - - - - - - - - +- 0x00c000 2844732Sdavemq * | CPU 1 trap statistics (8KB) | . 2854732Sdavemq * |- - - - - - - - - - - - - - - - - - +- 0x00a000 2864732Sdavemq * | CPU 0 trap statistics (8KB) | . 2874732Sdavemq * |- - - - - - - - - - - - - - - - - - +- 0x008000 2884732Sdavemq * | Shared trap handler continuation | . 2894732Sdavemq * |- - - - - - - - - - - - - - - - - - +- 0x006000 2904732Sdavemq * | Non-trap instruction, TL>0 | . 2914732Sdavemq * |- - - - - - - - - - - - - - - - - - +- 0x004000 2924732Sdavemq * | Trap instruction, TL=0 | . 2934732Sdavemq * |- - - - - - - - - - - - - - - - - - +- 0x002000 2944732Sdavemq * | Non-trap instruction, TL=0 | . 2954732Sdavemq * +------------------------------------+- 0x000000 2964732Sdavemq * 2974732Sdavemq * Note that each CPU has its own 8K space for its trap statistics but 2984732Sdavemq * shares the same interposing trap handlers. Interposing trap handlers 2994732Sdavemq * use the CPU ID to determine the location of per CPU trap statistics 3004732Sdavemq * area dynamically. This increases the interposing trap handler overhead, 3014732Sdavemq * but is acceptable as it allows us to support up to 508 CPUs with one 3024732Sdavemq * 4MB page on sun4v architecture. Support for additional CPUs can be 3034732Sdavemq * added via hybrid scheme as mentioned earlier. 3040Sstevel@tonic-gate * 3050Sstevel@tonic-gate * TLB Statistics 3060Sstevel@tonic-gate * 3070Sstevel@tonic-gate * Because TLB misses are an important component of system performance, we wish 3080Sstevel@tonic-gate * to know much more about these traps than simply the number received. 3090Sstevel@tonic-gate * Specifically, we wish to know: 3100Sstevel@tonic-gate * 3110Sstevel@tonic-gate * (a) The amount of time spent executing the TLB miss handler 3120Sstevel@tonic-gate * (b) TLB misses versus TSB misses 3130Sstevel@tonic-gate * (c) Kernel-level misses versus user-level misses 3140Sstevel@tonic-gate * (d) Misses per pagesize 3150Sstevel@tonic-gate * 3160Sstevel@tonic-gate * TLB Statistics: Time Spent Executing 3170Sstevel@tonic-gate * 3180Sstevel@tonic-gate * To accurately determine the amount of time spent executing the TLB miss 3190Sstevel@tonic-gate * handler, one must get a timestamp on trap entry and trap exit, subtract the 3200Sstevel@tonic-gate * latter from the former, and add the result to an accumulating count. 3210Sstevel@tonic-gate * Consider flow of control during normal TLB miss processing (where "ldx 3220Sstevel@tonic-gate * [%g2], %g2" is an arbitrary TLB-missing instruction): 3230Sstevel@tonic-gate * 3240Sstevel@tonic-gate * + - - - - - - - -+ 3250Sstevel@tonic-gate * : : 3260Sstevel@tonic-gate * : ldx [%g2], %g2 :<-------------------------------------------------------+ 3270Sstevel@tonic-gate * : : Return from trap: | 3280Sstevel@tonic-gate * + - - - - - - - -+ TL <- TL - 1 (0) | 3290Sstevel@tonic-gate * | %pc <- TSTATE[TL].TPC (address of load) | 3300Sstevel@tonic-gate * | TLB miss: | 3310Sstevel@tonic-gate * | TL <- TL + 1 (1) | 3320Sstevel@tonic-gate * | %pc <- TLB-miss-trap-handler | 3330Sstevel@tonic-gate * | | 3340Sstevel@tonic-gate * v | 3350Sstevel@tonic-gate * + - - - - - - - - - - - - - - - + | 3360Sstevel@tonic-gate * : : | 3370Sstevel@tonic-gate * : Lookup VA in TSB : | 3380Sstevel@tonic-gate * : If (hit) : | 3390Sstevel@tonic-gate * : Fill TLB : | 3400Sstevel@tonic-gate * : Else : | 3410Sstevel@tonic-gate * : Lookup VA (hme hash table : | 3420Sstevel@tonic-gate * : or segkpm) : | 3430Sstevel@tonic-gate * : Fill TLB : | 3440Sstevel@tonic-gate * : Endif : | 3450Sstevel@tonic-gate * : Issue "retry" ---------------------------------------------------------+ 3460Sstevel@tonic-gate * : : 3470Sstevel@tonic-gate * + - - - - - - - - - - - - - - - + 3480Sstevel@tonic-gate * TLB-miss-trap-handler 3490Sstevel@tonic-gate * 3500Sstevel@tonic-gate * 3510Sstevel@tonic-gate * As the above diagram indicates, interposing on the trap table allows one 3520Sstevel@tonic-gate * only to determine a timestamp on trap _entry_: when the TLB miss handler 3530Sstevel@tonic-gate * has completed filling the TLB, a "retry" will be issued, and control will 3540Sstevel@tonic-gate * transfer immediately back to the missing %pc. 3550Sstevel@tonic-gate * 3560Sstevel@tonic-gate * To obtain a timestamp on trap exit, we must then somehow interpose between 3570Sstevel@tonic-gate * the "retry" and the subsequent control transfer to the TLB-missing 3580Sstevel@tonic-gate * instruction. To do this, we _push_ a trap level. The basic idea is to 3590Sstevel@tonic-gate * spoof a TLB miss by raising TL, setting the %tpc to be within text 3600Sstevel@tonic-gate * controlled by trapstat (the "TLB return entry") and branching to the 3610Sstevel@tonic-gate * underlying TLB miss handler. When the TLB miss handler issues its "retry", 3620Sstevel@tonic-gate * control will transfer not to the TLB-missing instruction, but rather to the 3630Sstevel@tonic-gate * TLB return entry. This code can then obtain a timestamp, and issue its own 3640Sstevel@tonic-gate * "retry" -- thereby correctly returning to the TLB-missing instruction. 3650Sstevel@tonic-gate * Here is the above TLB miss flow control diagram modified to reflect 3660Sstevel@tonic-gate * trapstat's operation: 3670Sstevel@tonic-gate * 3680Sstevel@tonic-gate * + - - - - - - - -+ 3690Sstevel@tonic-gate * : : 3700Sstevel@tonic-gate * : ldx [%g2], %g2 :<-------------------------------------------------------+ 3710Sstevel@tonic-gate * : : Return from trap: | 3720Sstevel@tonic-gate * + - - - - - - - -+ TL <- TL - 1 (0) | 3730Sstevel@tonic-gate * | %pc <- TSTATE[TL].TPC (address of load) | 3740Sstevel@tonic-gate * | TLB miss: | 3750Sstevel@tonic-gate * | TL <- TL + 1 (1) | 3760Sstevel@tonic-gate * | %pc <- TLB-miss-trap-handler (trapstat) | 3770Sstevel@tonic-gate * | | 3780Sstevel@tonic-gate * v TLB-return-entry (trapstat) | 3790Sstevel@tonic-gate * + - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - + | 3800Sstevel@tonic-gate * : : : : | 3810Sstevel@tonic-gate * : Record timestamp : : Record timestamp : | 3820Sstevel@tonic-gate * : TL <- 2 : : Take timestamp difference : | 3830Sstevel@tonic-gate * : TSTATE[1].TPC <- TLB-return-entry : : Add to running total : | 3840Sstevel@tonic-gate * : ba,a TLB-miss-trap-handler -----------+ : Issue "retry" --------------+ 3850Sstevel@tonic-gate * : : | : : 3860Sstevel@tonic-gate * + - - - - - - - - - - - - - - - - - - + | + - - - - - - - - - - - - - + 3870Sstevel@tonic-gate * TLB-miss-trap-handler | ^ 3880Sstevel@tonic-gate * (trapstat) | | 3890Sstevel@tonic-gate * | | 3900Sstevel@tonic-gate * | | 3910Sstevel@tonic-gate * +-----------------------+ | 3920Sstevel@tonic-gate * | | 3930Sstevel@tonic-gate * | | 3940Sstevel@tonic-gate * v | 3950Sstevel@tonic-gate * + - - - - - - - - - - - - - - - + | 3960Sstevel@tonic-gate * : : | 3970Sstevel@tonic-gate * : Lookup VA in TSB : | 3980Sstevel@tonic-gate * : If (hit) : | 3990Sstevel@tonic-gate * : Fill TLB : | 4000Sstevel@tonic-gate * : Else : | 4010Sstevel@tonic-gate * : Lookup VA (hme hash table : | 4020Sstevel@tonic-gate * : or segkpm) : | 4030Sstevel@tonic-gate * : Fill TLB : | 4040Sstevel@tonic-gate * : Endif : | 4050Sstevel@tonic-gate * : Issue "retry" ------------------------------------------+ 4060Sstevel@tonic-gate * : : Return from trap: 4070Sstevel@tonic-gate * + - - - - - - - - - - - - - - - + TL <- TL - 1 (1) 4080Sstevel@tonic-gate * TLB-miss-trap-handler %pc <- TSTATE[TL].TPC (TLB-return-entry) 4090Sstevel@tonic-gate * 4100Sstevel@tonic-gate * 4110Sstevel@tonic-gate * A final subterfuge is required to complete our artifice: if we miss in 4120Sstevel@tonic-gate * the TLB, the TSB _and_ the subsequent hash or segkpm lookup (that is, if 4130Sstevel@tonic-gate * there is no valid translation for the TLB-missing address), common system 4140Sstevel@tonic-gate * software will need to accurately determine the %tpc as part of its page 4150Sstevel@tonic-gate * fault handling. We therefore modify the kernel to check the %tpc in this 4160Sstevel@tonic-gate * case: if the %tpc falls within the VA range controlled by trapstat and 4170Sstevel@tonic-gate * the TL is 2, TL is simply lowered back to 1 (this check is implemented 4180Sstevel@tonic-gate * by the TSTAT_CHECK_TL1 macro). Lowering TL to 1 has the effect of 4190Sstevel@tonic-gate * discarding the state pushed by trapstat. 4200Sstevel@tonic-gate * 4210Sstevel@tonic-gate * TLB Statistics: TLB Misses versus TSB Misses 4220Sstevel@tonic-gate * 4230Sstevel@tonic-gate * Distinguishing TLB misses from TSB misses requires further interposition 4240Sstevel@tonic-gate * on the TLB miss handler: we cannot know a priori or a posteriori if a 4250Sstevel@tonic-gate * given VA will or has hit in the TSB. 4260Sstevel@tonic-gate * 4270Sstevel@tonic-gate * We achieve this distinction by adding a second TLB return entry almost 4280Sstevel@tonic-gate * identical to the first -- differing only in the address to which it 4290Sstevel@tonic-gate * stores its results. We then modify the TLB miss handlers of the kernel 4300Sstevel@tonic-gate * such that they check the %tpc when they determine that a TLB miss has 4310Sstevel@tonic-gate * subsequently missed in the TSB: if the %tpc lies within trapstat's VA 4320Sstevel@tonic-gate * range and TL is 2 (that is, if trapstat is running), the TLB miss handler 4330Sstevel@tonic-gate * _increments_ the %tpc by the size of the TLB return entry. The ensuing 4340Sstevel@tonic-gate * "retry" will thus transfer control to the second TLB return entry, and 4350Sstevel@tonic-gate * the time spent in the handler will be accumulated in a memory location 4360Sstevel@tonic-gate * specific to TSB misses. 4370Sstevel@tonic-gate * 4380Sstevel@tonic-gate * N.B.: To minimize the amount of knowledge the kernel must have of trapstat, 4390Sstevel@tonic-gate * we do not allow the kernel to hard-code the size of the TLB return entry. 4400Sstevel@tonic-gate * Rather, the actual tsbmiss handler executes a known instruction at the 4410Sstevel@tonic-gate * corresponding tsbmiss patch points (see the tstat_tsbmiss_patch_table) with 4420Sstevel@tonic-gate * the %tpc in %g7: when trapstat is not running, these points contain the 4430Sstevel@tonic-gate * harmless TSTAT_TSBMISS_INSTR instruction ("add %g7, 0, %g7"). Before 4440Sstevel@tonic-gate * running, trapstat modifies the instructions at these patch points such 4450Sstevel@tonic-gate * that the simm13 equals the size of the TLB return entry. 4460Sstevel@tonic-gate * 4470Sstevel@tonic-gate * TLB Statistics: Kernel-level Misses versus User-level Misses 4480Sstevel@tonic-gate * 4490Sstevel@tonic-gate * Differentiating user-level misses from kernel-level misses employs a 4500Sstevel@tonic-gate * similar technique, but is simplified by the ability to distinguish a 4510Sstevel@tonic-gate * user-level miss from a kernel-level miss a priori by reading the context 4520Sstevel@tonic-gate * register: we implement kernel-/user-level differentiation by again doubling 4530Sstevel@tonic-gate * the number of TLB return entries, and setting the %tpc to the appropriate 4540Sstevel@tonic-gate * TLB return entry in trapstat's TLB miss handler. Together with the doubling 4550Sstevel@tonic-gate * of entries required for TLB-miss/TSB-miss differentiation, this yields a 4560Sstevel@tonic-gate * total of four TLB return entries: 4570Sstevel@tonic-gate * 4580Sstevel@tonic-gate * Level TSB hit? Structure member 4590Sstevel@tonic-gate * ------------------------------------------------------------ 4600Sstevel@tonic-gate * Kernel Yes tstat_tlbret_t.ttlbr_ktlb 4610Sstevel@tonic-gate * Kernel No tstat_tlbret_t.ttlbr_ktsb 4620Sstevel@tonic-gate * User Yes tstat_tlbret_t.ttlbr_utlb 4630Sstevel@tonic-gate * User No tstat_tlbret_t.ttlbr_utsb 4640Sstevel@tonic-gate * 4650Sstevel@tonic-gate * TLB Statistics: Misses per Pagesize 4660Sstevel@tonic-gate * 4670Sstevel@tonic-gate * As with the TLB-/TSB-miss differentiation, we have no way of determining 4680Sstevel@tonic-gate * pagesize a priori. This is therefore implemented by mandating a new rule: 4690Sstevel@tonic-gate * whenever the kernel fills the TLB in its TLB miss handler, the TTE 4700Sstevel@tonic-gate * corresponding to the TLB-missing VA must be in %g5 when the handler 4710Sstevel@tonic-gate * executes its "retry". This allows the TLB return entry to determine 4720Sstevel@tonic-gate * pagesize by simply looking at the pagesize field in the TTE stored in 4730Sstevel@tonic-gate * %g5. 4740Sstevel@tonic-gate * 4750Sstevel@tonic-gate * TLB Statistics: Probe Effect 4760Sstevel@tonic-gate * 4770Sstevel@tonic-gate * As one might imagine, gathering TLB statistics by pushing a trap level 4780Sstevel@tonic-gate * induces significant probe effect. To account for this probe effect, 4790Sstevel@tonic-gate * trapstat attempts to observe it by executing a code sequence with a known 4800Sstevel@tonic-gate * number of TLB misses both before and after interposing on the trap table. 4810Sstevel@tonic-gate * This allows trapstat to determine a per-trap probe effect which can then be 4820Sstevel@tonic-gate * factored into the "%tim" fields of the trapstat command. 4830Sstevel@tonic-gate * 4840Sstevel@tonic-gate * Note that on sun4v platforms, TLB misses are normally handled by the 4850Sstevel@tonic-gate * hypervisor or the hardware TSB walker. Thus no fast MMU miss information 4861050Sgirish * is reported for normal operation. However, when trapstat is invoked 4871050Sgirish * with -t or -T option to collect detailed TLB statistics, kernel takes 4880Sstevel@tonic-gate * over TLB miss handling. This results in significantly more overhead 4890Sstevel@tonic-gate * and TLB statistics may not be as accurate as on sun4u platforms. 4901050Sgirish * On some processors, hypervisor or hardware may provide a low overhead 4911050Sgirish * interface to collect TSB hit statistics. This support is exposed via 4921050Sgirish * a well defined CPU module interface (cpu_trapstat_conf to enable this 4931050Sgirish * interface and cpu_trapstat_data to get detailed TSB hit statistics). 4941050Sgirish * In this scenario, TSB miss statistics is collected by intercepting the 4951050Sgirish * IMMU_miss and DMMU_miss traps using above mentioned trap interposition 4961050Sgirish * approach. 4970Sstevel@tonic-gate * 4980Sstevel@tonic-gate * Locking 4990Sstevel@tonic-gate * 5000Sstevel@tonic-gate * The implementation uses two locks: tstat_lock (a local lock) and the global 5010Sstevel@tonic-gate * cpu_lock. tstat_lock is used to assure trapstat's consistency in the 5020Sstevel@tonic-gate * presence of multithreaded /dev/trapstat consumers (while as of this writing 5030Sstevel@tonic-gate * the only consumer of /dev/trapstat is single threaded, it is obviously 5040Sstevel@tonic-gate * necessary to correctly support multithreaded access). cpu_lock is held 5050Sstevel@tonic-gate * whenever CPUs are being manipulated directly, to prevent them from 5060Sstevel@tonic-gate * disappearing in the process. Because trapstat's DR callback 5070Sstevel@tonic-gate * (trapstat_cpu_setup()) must grab tstat_lock and is called with cpu_lock 5080Sstevel@tonic-gate * held, the lock ordering is necessarily cpu_lock before tstat_lock. 5090Sstevel@tonic-gate * 5100Sstevel@tonic-gate */ 5110Sstevel@tonic-gate /* END CSTYLED */ 5120Sstevel@tonic-gate 5130Sstevel@tonic-gate static dev_info_t *tstat_devi; /* saved in xxattach() for xxinfo() */ 5140Sstevel@tonic-gate static int tstat_open; /* set if driver is open */ 5150Sstevel@tonic-gate static kmutex_t tstat_lock; /* serialize access */ 5160Sstevel@tonic-gate static vmem_t *tstat_arena; /* arena for TLB-locked pages */ 5170Sstevel@tonic-gate static tstat_percpu_t *tstat_percpu; /* per-CPU data */ 5180Sstevel@tonic-gate static int tstat_running; /* set if trapstat is running */ 5190Sstevel@tonic-gate static tstat_data_t *tstat_buffer; /* staging buffer for outgoing data */ 5200Sstevel@tonic-gate static int tstat_options; /* bit-wise indication of options */ 5210Sstevel@tonic-gate static int *tstat_enabled; /* map of enabled trap entries */ 5220Sstevel@tonic-gate static int tstat_tsbmiss_patched; /* tsbmiss patch flag */ 5230Sstevel@tonic-gate static callb_id_t tstat_cprcb; /* CPR callback */ 5240Sstevel@tonic-gate static char *tstat_probe_area; /* VA range used for probe effect */ 5250Sstevel@tonic-gate static caddr_t tstat_probe_phys; /* physical to back above VA */ 5260Sstevel@tonic-gate static hrtime_t tstat_probe_time; /* time spent on probe effect */ 5270Sstevel@tonic-gate static hrtime_t tstat_probe_before[TSTAT_PROBE_NLAPS]; 5280Sstevel@tonic-gate static hrtime_t tstat_probe_after[TSTAT_PROBE_NLAPS]; 5290Sstevel@tonic-gate static uint_t tstat_pgszs; /* # of kernel page sizes */ 5300Sstevel@tonic-gate static uint_t tstat_user_pgszs; /* # of user page sizes */ 5310Sstevel@tonic-gate 5320Sstevel@tonic-gate /* 5330Sstevel@tonic-gate * sizeof tstat_data_t + pgsz data for the kernel. For simplicity's sake, when 5340Sstevel@tonic-gate * we collect data, we do it based upon szc, but when we report data back to 5350Sstevel@tonic-gate * userland, we have to do it based upon the userszc which may not match. 5360Sstevel@tonic-gate * So, these two variables are for internal use and exported use respectively. 5370Sstevel@tonic-gate */ 5380Sstevel@tonic-gate static size_t tstat_data_t_size; 5390Sstevel@tonic-gate static size_t tstat_data_t_exported_size; 5400Sstevel@tonic-gate 5414732Sdavemq #ifndef sun4v 5424732Sdavemq 5430Sstevel@tonic-gate static size_t tstat_data_pages; /* number of pages of tstat data */ 5440Sstevel@tonic-gate static size_t tstat_data_size; /* tstat data size in bytes */ 5450Sstevel@tonic-gate static size_t tstat_total_pages; /* #data pages + #instr pages */ 5460Sstevel@tonic-gate static size_t tstat_total_size; /* tstat data size + instr size */ 5474732Sdavemq 5484732Sdavemq #else /* sun4v */ 5494732Sdavemq 5500Sstevel@tonic-gate static caddr_t tstat_va; /* VA of memory reserved for TBA */ 5510Sstevel@tonic-gate static pfn_t tstat_pfn; /* PFN of memory reserved for TBA */ 5521050Sgirish static boolean_t tstat_fast_tlbstat = B_FALSE; 5534732Sdavemq static int tstat_traptab_initialized; 5544732Sdavemq 5554732Sdavemq #endif /* sun4v */ 5560Sstevel@tonic-gate 5570Sstevel@tonic-gate /* 5580Sstevel@tonic-gate * In the above block comment, see "TLB Statistics: TLB Misses versus 5590Sstevel@tonic-gate * TSB Misses" for an explanation of the tsbmiss patch points. 5600Sstevel@tonic-gate */ 5610Sstevel@tonic-gate extern uint32_t tsbmiss_trapstat_patch_point; 5620Sstevel@tonic-gate extern uint32_t tsbmiss_trapstat_patch_point_kpm; 5630Sstevel@tonic-gate extern uint32_t tsbmiss_trapstat_patch_point_kpm_small; 5640Sstevel@tonic-gate 5650Sstevel@tonic-gate /* 5660Sstevel@tonic-gate * Trapstat tsbmiss patch table 5670Sstevel@tonic-gate */ 5680Sstevel@tonic-gate tstat_tsbmiss_patch_entry_t tstat_tsbmiss_patch_table[] = { 5690Sstevel@tonic-gate {(uint32_t *)&tsbmiss_trapstat_patch_point, 0}, 5700Sstevel@tonic-gate {(uint32_t *)&tsbmiss_trapstat_patch_point_kpm, 0}, 5710Sstevel@tonic-gate {(uint32_t *)&tsbmiss_trapstat_patch_point_kpm_small, 0}, 5720Sstevel@tonic-gate {(uint32_t *)NULL, 0} 5730Sstevel@tonic-gate }; 5740Sstevel@tonic-gate 5750Sstevel@tonic-gate /* 5760Sstevel@tonic-gate * We define some general SPARC-specific constants to allow more readable 5770Sstevel@tonic-gate * relocations. 5780Sstevel@tonic-gate */ 5790Sstevel@tonic-gate #define NOP 0x01000000 5800Sstevel@tonic-gate #define HI22(v) ((uint32_t)(v) >> 10) 5810Sstevel@tonic-gate #define LO10(v) ((uint32_t)(v) & 0x3ff) 5820Sstevel@tonic-gate #define LO12(v) ((uint32_t)(v) & 0xfff) 5830Sstevel@tonic-gate #define DISP22(from, to) \ 5840Sstevel@tonic-gate ((((uintptr_t)(to) - (uintptr_t)(from)) >> 2) & 0x3fffff) 5850Sstevel@tonic-gate #define ASI(asi) ((asi) << 5) 5860Sstevel@tonic-gate 5870Sstevel@tonic-gate /* 5880Sstevel@tonic-gate * The interposing trap table must be locked in the I-TLB, and any data 5890Sstevel@tonic-gate * referred to in the interposing trap handler must be locked in the D-TLB. 5900Sstevel@tonic-gate * This function locks these pages in the appropriate TLBs by creating TTEs 5910Sstevel@tonic-gate * from whole cloth, and manually loading them into the TLB. This function is 5920Sstevel@tonic-gate * called from cross call context. 5930Sstevel@tonic-gate * 5940Sstevel@tonic-gate * On sun4v platforms, we use 4M page size mappings to minimize the number 5950Sstevel@tonic-gate * of locked down entries (i.e. permanent mappings). Each CPU uses a 5960Sstevel@tonic-gate * reserved portion of that 4M page for its TBA and data. 5970Sstevel@tonic-gate */ 5980Sstevel@tonic-gate static void 5990Sstevel@tonic-gate trapstat_load_tlb(void) 6000Sstevel@tonic-gate { 6010Sstevel@tonic-gate #ifndef sun4v 6020Sstevel@tonic-gate int i; 6030Sstevel@tonic-gate #else 6040Sstevel@tonic-gate uint64_t ret; 6050Sstevel@tonic-gate #endif 6060Sstevel@tonic-gate tte_t tte; 6070Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id]; 6080Sstevel@tonic-gate caddr_t va = tcpu->tcpu_vabase; 6090Sstevel@tonic-gate 6100Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 6110Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)); 6120Sstevel@tonic-gate 6130Sstevel@tonic-gate #ifndef sun4v 6140Sstevel@tonic-gate for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) { 6150Sstevel@tonic-gate tte.tte_inthi = TTE_VALID_INT | TTE_SZ_INT(TTE8K) | 6164732Sdavemq TTE_PFN_INTHI(tcpu->tcpu_pfn[i]); 6170Sstevel@tonic-gate if (i < TSTAT_INSTR_PAGES) { 6180Sstevel@tonic-gate tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) | 6194732Sdavemq TTE_LCK_INT | TTE_CP_INT | TTE_PRIV_INT; 6202241Shuah sfmmu_itlb_ld_kva(va, &tte); 6210Sstevel@tonic-gate } else { 6220Sstevel@tonic-gate tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) | 6234732Sdavemq TTE_LCK_INT | TTE_CP_INT | TTE_CV_INT | 6244732Sdavemq TTE_PRIV_INT | TTE_HWWR_INT; 6252241Shuah sfmmu_dtlb_ld_kva(va, &tte); 6260Sstevel@tonic-gate } 6270Sstevel@tonic-gate } 6280Sstevel@tonic-gate #else /* sun4v */ 6290Sstevel@tonic-gate tte.tte_inthi = TTE_VALID_INT | TTE_PFN_INTHI(tstat_pfn); 6300Sstevel@tonic-gate tte.tte_intlo = TTE_PFN_INTLO(tstat_pfn) | TTE_CP_INT | 6314732Sdavemq TTE_CV_INT | TTE_PRIV_INT | TTE_HWWR_INT | 6324732Sdavemq TTE_SZ_INTLO(TTE4M); 6330Sstevel@tonic-gate ret = hv_mmu_map_perm_addr(va, KCONTEXT, *(uint64_t *)&tte, 6344732Sdavemq MAP_ITLB | MAP_DTLB); 6350Sstevel@tonic-gate 6360Sstevel@tonic-gate if (ret != H_EOK) 6370Sstevel@tonic-gate cmn_err(CE_PANIC, "trapstat: cannot map new TBA " 6380Sstevel@tonic-gate "for cpu %d (error: 0x%lx)", CPU->cpu_id, ret); 6390Sstevel@tonic-gate #endif /* sun4v */ 6400Sstevel@tonic-gate } 6410Sstevel@tonic-gate 6420Sstevel@tonic-gate /* 6430Sstevel@tonic-gate * As mentioned in the "TLB Statistics: TLB Misses versus TSB Misses" section 6440Sstevel@tonic-gate * of the block comment, TLB misses are differentiated from TSB misses in 6450Sstevel@tonic-gate * part by hot-patching the instructions at the tsbmiss patch points (see 6460Sstevel@tonic-gate * tstat_tsbmiss_patch_table). This routine is used both to initially patch 6470Sstevel@tonic-gate * the instructions, and to patch them back to their original values upon 6480Sstevel@tonic-gate * restoring the original trap table. 6490Sstevel@tonic-gate */ 6500Sstevel@tonic-gate static void 6510Sstevel@tonic-gate trapstat_hotpatch() 6520Sstevel@tonic-gate { 6530Sstevel@tonic-gate uint32_t instr; 6540Sstevel@tonic-gate uint32_t simm13; 6550Sstevel@tonic-gate tstat_tsbmiss_patch_entry_t *ep; 6560Sstevel@tonic-gate 6570Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 6580Sstevel@tonic-gate 6590Sstevel@tonic-gate if (!(tstat_options & TSTAT_OPT_TLBDATA)) 6600Sstevel@tonic-gate return; 6610Sstevel@tonic-gate 6620Sstevel@tonic-gate if (!tstat_tsbmiss_patched) { 6630Sstevel@tonic-gate /* 6640Sstevel@tonic-gate * We haven't patched the TSB paths; do so now. 6650Sstevel@tonic-gate */ 6660Sstevel@tonic-gate /*CONSTCOND*/ 6670Sstevel@tonic-gate ASSERT(offsetof(tstat_tlbret_t, ttlbr_ktsb) - 6680Sstevel@tonic-gate offsetof(tstat_tlbret_t, ttlbr_ktlb) == 6690Sstevel@tonic-gate offsetof(tstat_tlbret_t, ttlbr_utsb) - 6700Sstevel@tonic-gate offsetof(tstat_tlbret_t, ttlbr_utlb)); 6710Sstevel@tonic-gate 6720Sstevel@tonic-gate simm13 = offsetof(tstat_tlbret_t, ttlbr_ktsb) - 6730Sstevel@tonic-gate offsetof(tstat_tlbret_t, ttlbr_ktlb); 6740Sstevel@tonic-gate 6750Sstevel@tonic-gate for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) { 6760Sstevel@tonic-gate ASSERT(ep->tpe_instr == 0); 6770Sstevel@tonic-gate instr = ep->tpe_instr = *ep->tpe_addr; 6780Sstevel@tonic-gate 6790Sstevel@tonic-gate /* 6800Sstevel@tonic-gate * Assert that the instruction we're about to patch is 6810Sstevel@tonic-gate * "add %g7, 0, %g7" (0x8e01e000). 6820Sstevel@tonic-gate */ 6830Sstevel@tonic-gate ASSERT(instr == TSTAT_TSBMISS_INSTR); 6840Sstevel@tonic-gate 6850Sstevel@tonic-gate instr |= simm13; 6860Sstevel@tonic-gate hot_patch_kernel_text((caddr_t)ep->tpe_addr, 6870Sstevel@tonic-gate instr, sizeof (instr)); 6880Sstevel@tonic-gate } 6890Sstevel@tonic-gate 6900Sstevel@tonic-gate tstat_tsbmiss_patched = 1; 6910Sstevel@tonic-gate 6920Sstevel@tonic-gate } else { 6930Sstevel@tonic-gate /* 6940Sstevel@tonic-gate * Remove patches from the TSB paths. 6950Sstevel@tonic-gate */ 6960Sstevel@tonic-gate for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) { 6970Sstevel@tonic-gate ASSERT(ep->tpe_instr == TSTAT_TSBMISS_INSTR); 6980Sstevel@tonic-gate hot_patch_kernel_text((caddr_t)ep->tpe_addr, 6990Sstevel@tonic-gate ep->tpe_instr, sizeof (instr)); 7000Sstevel@tonic-gate ep->tpe_instr = 0; 7010Sstevel@tonic-gate } 7020Sstevel@tonic-gate 7030Sstevel@tonic-gate tstat_tsbmiss_patched = 0; 7040Sstevel@tonic-gate } 7050Sstevel@tonic-gate } 7060Sstevel@tonic-gate 7070Sstevel@tonic-gate /* 7080Sstevel@tonic-gate * This is the routine executed to clock the performance of the trap table, 7090Sstevel@tonic-gate * executed both before and after interposing on the trap table to attempt to 7100Sstevel@tonic-gate * determine probe effect. The probe effect is used to adjust the "%tim" 7110Sstevel@tonic-gate * fields of trapstat's -t and -T output; we only use TLB misses to clock the 7120Sstevel@tonic-gate * trap table. We execute the inner loop (which is designed to exceed the 7130Sstevel@tonic-gate * TLB's reach) nlaps times, taking the best time as our time (thereby 7140Sstevel@tonic-gate * factoring out the effects of interrupts, cache misses or other perturbing 7150Sstevel@tonic-gate * events. 7160Sstevel@tonic-gate */ 7170Sstevel@tonic-gate static hrtime_t 7180Sstevel@tonic-gate trapstat_probe_laps(int nlaps, hrtime_t *buf) 7190Sstevel@tonic-gate { 7200Sstevel@tonic-gate int i, j = 0; 7210Sstevel@tonic-gate hrtime_t ts, best = INT64_MAX; 7220Sstevel@tonic-gate 7230Sstevel@tonic-gate while (nlaps--) { 7240Sstevel@tonic-gate ts = rdtick(); 7250Sstevel@tonic-gate 7260Sstevel@tonic-gate for (i = 0; i < TSTAT_PROBE_SIZE; i += MMU_PAGESIZE) 7270Sstevel@tonic-gate *((volatile char *)&tstat_probe_area[i]); 7280Sstevel@tonic-gate 7290Sstevel@tonic-gate if ((ts = rdtick() - ts) < best) 7300Sstevel@tonic-gate best = ts; 7310Sstevel@tonic-gate buf[j++] = ts; 7320Sstevel@tonic-gate } 7330Sstevel@tonic-gate 7340Sstevel@tonic-gate return (best); 7350Sstevel@tonic-gate } 7360Sstevel@tonic-gate 7370Sstevel@tonic-gate /* 7380Sstevel@tonic-gate * This routine determines the probe effect by calling trapstat_probe_laps() 7390Sstevel@tonic-gate * both without and with the interposing trap table. Note that this is 7400Sstevel@tonic-gate * called from a cross call on the desired CPU, and that it is called on 7410Sstevel@tonic-gate * every CPU (this is necessary because the probe effect may differ from 7420Sstevel@tonic-gate * one CPU to another). 7430Sstevel@tonic-gate */ 7440Sstevel@tonic-gate static void 7450Sstevel@tonic-gate trapstat_probe() 7460Sstevel@tonic-gate { 7470Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id]; 7480Sstevel@tonic-gate hrtime_t before, after; 7490Sstevel@tonic-gate 7500Sstevel@tonic-gate if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED)) 7510Sstevel@tonic-gate return; 7520Sstevel@tonic-gate 7530Sstevel@tonic-gate if (tstat_probe_area == NULL || (tstat_options & TSTAT_OPT_NOGO)) 7540Sstevel@tonic-gate return; 7550Sstevel@tonic-gate 7560Sstevel@tonic-gate /* 7570Sstevel@tonic-gate * We very much expect the %tba to be KERNELBASE; this is a 7580Sstevel@tonic-gate * precautionary measure to assure that trapstat doesn't melt the 7590Sstevel@tonic-gate * machine should the %tba point unexpectedly elsewhere. 7600Sstevel@tonic-gate */ 7610Sstevel@tonic-gate if (get_tba() != (caddr_t)KERNELBASE) 7620Sstevel@tonic-gate return; 7630Sstevel@tonic-gate 7640Sstevel@tonic-gate /* 7650Sstevel@tonic-gate * Preserve this CPU's data before destroying it by enabling the 7660Sstevel@tonic-gate * interposing trap table. We can safely use tstat_buffer because 7670Sstevel@tonic-gate * the caller of the trapstat_probe() cross call is holding tstat_lock. 7680Sstevel@tonic-gate */ 7690Sstevel@tonic-gate bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size); 7700Sstevel@tonic-gate 7710Sstevel@tonic-gate tstat_probe_time = gethrtime(); 7720Sstevel@tonic-gate 7730Sstevel@tonic-gate before = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_before); 7740Sstevel@tonic-gate (void) set_tba(tcpu->tcpu_ibase); 7750Sstevel@tonic-gate 7760Sstevel@tonic-gate after = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_after); 7770Sstevel@tonic-gate (void) set_tba((caddr_t)KERNELBASE); 7780Sstevel@tonic-gate 7790Sstevel@tonic-gate tstat_probe_time = gethrtime() - tstat_probe_time; 7800Sstevel@tonic-gate 7810Sstevel@tonic-gate bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size); 7820Sstevel@tonic-gate tcpu->tcpu_data->tdata_peffect = (after - before) / TSTAT_PROBE_NPAGES; 7830Sstevel@tonic-gate } 7840Sstevel@tonic-gate 7850Sstevel@tonic-gate static void 7860Sstevel@tonic-gate trapstat_probe_alloc() 7870Sstevel@tonic-gate { 7880Sstevel@tonic-gate pfn_t pfn; 7890Sstevel@tonic-gate caddr_t va; 7900Sstevel@tonic-gate int i; 7910Sstevel@tonic-gate 7920Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 7930Sstevel@tonic-gate ASSERT(tstat_probe_area == NULL); 7940Sstevel@tonic-gate ASSERT(tstat_probe_phys == NULL); 7950Sstevel@tonic-gate 7960Sstevel@tonic-gate if (!(tstat_options & TSTAT_OPT_TLBDATA)) 7970Sstevel@tonic-gate return; 7980Sstevel@tonic-gate 7990Sstevel@tonic-gate /* 8000Sstevel@tonic-gate * Grab some virtual from the heap arena. 8010Sstevel@tonic-gate */ 8020Sstevel@tonic-gate tstat_probe_area = vmem_alloc(heap_arena, TSTAT_PROBE_SIZE, VM_SLEEP); 8030Sstevel@tonic-gate va = tstat_probe_area; 8040Sstevel@tonic-gate 8050Sstevel@tonic-gate /* 8060Sstevel@tonic-gate * Grab a single physical page. 8070Sstevel@tonic-gate */ 8080Sstevel@tonic-gate tstat_probe_phys = vmem_alloc(tstat_arena, MMU_PAGESIZE, VM_SLEEP); 8090Sstevel@tonic-gate pfn = hat_getpfnum(kas.a_hat, tstat_probe_phys); 8100Sstevel@tonic-gate 8110Sstevel@tonic-gate /* 8120Sstevel@tonic-gate * Now set the translation for every page in our virtual range 8130Sstevel@tonic-gate * to be our allocated physical page. 8140Sstevel@tonic-gate */ 8150Sstevel@tonic-gate for (i = 0; i < TSTAT_PROBE_NPAGES; i++) { 8160Sstevel@tonic-gate hat_devload(kas.a_hat, va, MMU_PAGESIZE, pfn, PROT_READ, 8170Sstevel@tonic-gate HAT_LOAD_NOCONSIST | HAT_LOAD_LOCK); 8180Sstevel@tonic-gate va += MMU_PAGESIZE; 8190Sstevel@tonic-gate } 8200Sstevel@tonic-gate } 8210Sstevel@tonic-gate 8220Sstevel@tonic-gate static void 8230Sstevel@tonic-gate trapstat_probe_free() 8240Sstevel@tonic-gate { 8250Sstevel@tonic-gate caddr_t va; 8260Sstevel@tonic-gate int i; 8270Sstevel@tonic-gate 8280Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 8290Sstevel@tonic-gate 8300Sstevel@tonic-gate if ((va = tstat_probe_area) == NULL) 8310Sstevel@tonic-gate return; 8320Sstevel@tonic-gate 8330Sstevel@tonic-gate for (i = 0; i < TSTAT_PROBE_NPAGES; i++) { 8340Sstevel@tonic-gate hat_unload(kas.a_hat, va, MMU_PAGESIZE, HAT_UNLOAD_UNLOCK); 8350Sstevel@tonic-gate va += MMU_PAGESIZE; 8360Sstevel@tonic-gate } 8370Sstevel@tonic-gate 8380Sstevel@tonic-gate vmem_free(tstat_arena, tstat_probe_phys, MMU_PAGESIZE); 8390Sstevel@tonic-gate vmem_free(heap_arena, tstat_probe_area, TSTAT_PROBE_SIZE); 8400Sstevel@tonic-gate 8410Sstevel@tonic-gate tstat_probe_phys = NULL; 8420Sstevel@tonic-gate tstat_probe_area = NULL; 8430Sstevel@tonic-gate } 8440Sstevel@tonic-gate 8450Sstevel@tonic-gate /* 8460Sstevel@tonic-gate * This routine actually enables a CPU by setting its %tba to be the 8470Sstevel@tonic-gate * CPU's interposing trap table. It is called out of cross call context. 8480Sstevel@tonic-gate */ 8490Sstevel@tonic-gate static void 8500Sstevel@tonic-gate trapstat_enable() 8510Sstevel@tonic-gate { 8520Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id]; 8530Sstevel@tonic-gate 8540Sstevel@tonic-gate if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED)) 8550Sstevel@tonic-gate return; 8560Sstevel@tonic-gate 8570Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 8580Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)); 8590Sstevel@tonic-gate 8600Sstevel@tonic-gate if (get_tba() != (caddr_t)KERNELBASE) 8610Sstevel@tonic-gate return; 8620Sstevel@tonic-gate 8630Sstevel@tonic-gate if (!(tstat_options & TSTAT_OPT_NOGO)) 8640Sstevel@tonic-gate (void) set_tba(tcpu->tcpu_ibase); 8650Sstevel@tonic-gate tcpu->tcpu_flags |= TSTAT_CPU_ENABLED; 8660Sstevel@tonic-gate #ifdef sun4v 8671050Sgirish if ((tstat_options & TSTAT_OPT_TLBDATA) && 8681050Sgirish !(tstat_options & TSTAT_OPT_NOGO)) { 8691050Sgirish if (tstat_fast_tlbstat) { 8701050Sgirish /* 8711050Sgirish * Invoke processor specific interface to enable 8721050Sgirish * collection of TSB hit statistics. 8731050Sgirish */ 8741050Sgirish cpu_trapstat_conf(CPU_TSTATCONF_ENABLE); 8751050Sgirish } else { 8761050Sgirish /* 8771050Sgirish * Collect TLB miss statistics by taking over 8781050Sgirish * TLB miss handling from the hypervisor. This 8791050Sgirish * is done by telling the hypervisor that there 8801050Sgirish * is no TSB configured. Also set TSTAT_TLB_STATS 8811050Sgirish * flag so that no user TSB is configured during 8821050Sgirish * context switch time. 8831050Sgirish */ 8841050Sgirish cpu_t *cp = CPU; 8850Sstevel@tonic-gate 8861050Sgirish cp->cpu_m.cpu_tstat_flags |= TSTAT_TLB_STATS; 8871050Sgirish (void) hv_set_ctx0(NULL, NULL); 8881050Sgirish (void) hv_set_ctxnon0(NULL, NULL); 8891050Sgirish } 8900Sstevel@tonic-gate } 8910Sstevel@tonic-gate #endif 8920Sstevel@tonic-gate } 8930Sstevel@tonic-gate 8940Sstevel@tonic-gate /* 8950Sstevel@tonic-gate * This routine disables a CPU (vis a vis trapstat) by setting its %tba to be 8960Sstevel@tonic-gate * the actual, underlying trap table. It is called out of cross call context. 8970Sstevel@tonic-gate */ 8980Sstevel@tonic-gate static void 8990Sstevel@tonic-gate trapstat_disable() 9000Sstevel@tonic-gate { 9010Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id]; 9020Sstevel@tonic-gate 9030Sstevel@tonic-gate if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)) 9040Sstevel@tonic-gate return; 9050Sstevel@tonic-gate 9060Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED); 9070Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 9080Sstevel@tonic-gate 9090Sstevel@tonic-gate if (!(tstat_options & TSTAT_OPT_NOGO)) 9100Sstevel@tonic-gate (void) set_tba((caddr_t)KERNELBASE); 9110Sstevel@tonic-gate 9120Sstevel@tonic-gate tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED; 9130Sstevel@tonic-gate 9140Sstevel@tonic-gate #ifdef sun4v 9151050Sgirish if ((tstat_options & TSTAT_OPT_TLBDATA) && 9161050Sgirish !(tstat_options & TSTAT_OPT_NOGO)) { 9171050Sgirish if (tstat_fast_tlbstat) { 9181050Sgirish /* 9191050Sgirish * Invoke processor specific interface to disable 9201050Sgirish * collection of TSB hit statistics on each processor. 9211050Sgirish */ 9221050Sgirish cpu_trapstat_conf(CPU_TSTATCONF_DISABLE); 9231050Sgirish } else { 9241050Sgirish /* 9251050Sgirish * As part of collecting TLB miss statistics, we took 9261050Sgirish * over TLB miss handling from the hypervisor by 9271050Sgirish * telling the hypervisor that NO TSB is configured. 9281050Sgirish * We need to restore that by communicating proper 9291050Sgirish * kernel/user TSB information so that TLB misses 9301050Sgirish * can be handled by the hypervisor or the hardware 9311050Sgirish * more efficiently. 9321050Sgirish * 9331050Sgirish * We restore kernel TSB information right away. 9341050Sgirish * However, to minimize any locking dependency, we 9351050Sgirish * don't restore user TSB information right away. 9361050Sgirish * Instead, we simply clear the TSTAT_TLB_STATS flag 9371050Sgirish * so that the user TSB information is automatically 9381050Sgirish * restored on next context switch. 9391050Sgirish * 9401050Sgirish * Note that the call to restore kernel TSB information 9411050Sgirish * will normally not fail, unless wrong information is 9421050Sgirish * passed here. In that scenario, system will still 9431050Sgirish * continue to function properly with the exception of 9441050Sgirish * kernel handling all the TLB misses. 9451050Sgirish */ 9461050Sgirish struct hv_tsb_block *hvbp = &ksfmmup->sfmmu_hvblock; 9471050Sgirish cpu_t *cp = CPU; 9480Sstevel@tonic-gate 9491050Sgirish cp->cpu_m.cpu_tstat_flags &= ~TSTAT_TLB_STATS; 9501050Sgirish (void) hv_set_ctx0(hvbp->hv_tsb_info_cnt, 9511050Sgirish hvbp->hv_tsb_info_pa); 9521050Sgirish } 9530Sstevel@tonic-gate } 9540Sstevel@tonic-gate #endif 9550Sstevel@tonic-gate } 9560Sstevel@tonic-gate 9570Sstevel@tonic-gate /* 9580Sstevel@tonic-gate * We use %tick as the time base when recording the time spent executing 9590Sstevel@tonic-gate * the trap handler. %tick, however, is not necessarily kept in sync 9600Sstevel@tonic-gate * across CPUs (indeed, different CPUs may have different %tick frequencies). 9610Sstevel@tonic-gate * We therefore cross call onto a CPU to get a snapshot of its data to 9620Sstevel@tonic-gate * copy out; this is the routine executed out of that cross call. 9630Sstevel@tonic-gate */ 9640Sstevel@tonic-gate static void 9650Sstevel@tonic-gate trapstat_snapshot() 9660Sstevel@tonic-gate { 9670Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id]; 9680Sstevel@tonic-gate tstat_data_t *data = tcpu->tcpu_data; 9690Sstevel@tonic-gate 9700Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED); 9710Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 9720Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ENABLED); 9730Sstevel@tonic-gate 9740Sstevel@tonic-gate data->tdata_snapts = gethrtime(); 9750Sstevel@tonic-gate data->tdata_snaptick = rdtick(); 9760Sstevel@tonic-gate bcopy(data, tstat_buffer, tstat_data_t_size); 9771050Sgirish #ifdef sun4v 9781050Sgirish /* 9791050Sgirish * Invoke processor specific interface to collect TSB hit 9801050Sgirish * statistics on each processor. 9811050Sgirish */ 9821050Sgirish if ((tstat_options & TSTAT_OPT_TLBDATA) && tstat_fast_tlbstat) 9831050Sgirish cpu_trapstat_data((void *) tstat_buffer->tdata_pgsz, 9841050Sgirish tstat_pgszs); 9851050Sgirish #endif 9860Sstevel@tonic-gate } 9870Sstevel@tonic-gate 9880Sstevel@tonic-gate /* 9890Sstevel@tonic-gate * The TSTAT_RETENT_* constants define offsets in the TLB return entry. 9900Sstevel@tonic-gate * They are used only in trapstat_tlbretent() (below) and #undef'd 9910Sstevel@tonic-gate * immediately afterwards. Any change to "retent" in trapstat_tlbretent() 9920Sstevel@tonic-gate * will likely require changes to these constants. 9930Sstevel@tonic-gate */ 9940Sstevel@tonic-gate 9951050Sgirish #ifndef sun4v 9960Sstevel@tonic-gate #define TSTAT_RETENT_STATHI 1 9970Sstevel@tonic-gate #define TSTAT_RETENT_STATLO 2 998490Ssusans #define TSTAT_RETENT_SHIFT 11 999490Ssusans #define TSTAT_RETENT_COUNT_LD 13 1000490Ssusans #define TSTAT_RETENT_COUNT_ST 15 1001490Ssusans #define TSTAT_RETENT_TMPTSHI 16 1002490Ssusans #define TSTAT_RETENT_TMPTSLO 17 1003490Ssusans #define TSTAT_RETENT_TIME_LD 19 1004490Ssusans #define TSTAT_RETENT_TIME_ST 21 10050Sstevel@tonic-gate #else /* sun4v */ 10064732Sdavemq #define TSTAT_RETENT_TDATASHFT 2 10074732Sdavemq #define TSTAT_RETENT_STATHI 4 10084732Sdavemq #define TSTAT_RETENT_STATLO 6 10094732Sdavemq #define TSTAT_RETENT_SHIFT 9 10104732Sdavemq #define TSTAT_RETENT_COUNT_LD 11 10114732Sdavemq #define TSTAT_RETENT_COUNT_ST 13 10124732Sdavemq #define TSTAT_RETENT_TMPTSHI 14 10134732Sdavemq #define TSTAT_RETENT_TMPTSLO 16 10144732Sdavemq #define TSTAT_RETENT_TIME_LD 18 10154732Sdavemq #define TSTAT_RETENT_TIME_ST 20 10160Sstevel@tonic-gate #endif /* sun4v */ 10170Sstevel@tonic-gate 10180Sstevel@tonic-gate static void 10190Sstevel@tonic-gate trapstat_tlbretent(tstat_percpu_t *tcpu, tstat_tlbretent_t *ret, 10200Sstevel@tonic-gate tstat_missdata_t *data) 10210Sstevel@tonic-gate { 10220Sstevel@tonic-gate uint32_t *ent = ret->ttlbrent_instr, shift; 10234732Sdavemq uintptr_t base; 10244732Sdavemq #ifndef sun4v 10254732Sdavemq uintptr_t tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick); 10264732Sdavemq #else 10274732Sdavemq uintptr_t tmptick = TSTAT_CPU0_DATA_OFFS(tcpu, tdata_tmptick); 10284732Sdavemq #endif 10290Sstevel@tonic-gate 10300Sstevel@tonic-gate /* 10310Sstevel@tonic-gate * This is the entry executed upon return from the TLB/TSB miss 10320Sstevel@tonic-gate * handler (i.e. the code interpositioned between the "retry" and 10330Sstevel@tonic-gate * the actual return to the TLB-missing instruction). Detail on its 10340Sstevel@tonic-gate * theory of operation can be found in the "TLB Statistics" section 10350Sstevel@tonic-gate * of the block comment. Note that we expect the TTE just loaded 10360Sstevel@tonic-gate * into the TLB to be in %g5; all other globals are available as 10370Sstevel@tonic-gate * scratch. Finally, note that the page size information in sun4v is 10380Sstevel@tonic-gate * located in the lower bits of the TTE -- requiring us to have a 10390Sstevel@tonic-gate * different return entry on sun4v. 10400Sstevel@tonic-gate */ 10410Sstevel@tonic-gate static const uint32_t retent[TSTAT_TLBRET_NINSTR] = { 10420Sstevel@tonic-gate #ifndef sun4v 10430Sstevel@tonic-gate 0x87410000, /* rd %tick, %g3 */ 10440Sstevel@tonic-gate 0x03000000, /* sethi %hi(stat), %g1 */ 10450Sstevel@tonic-gate 0x82106000, /* or %g1, %lo(stat), %g1 */ 10460Sstevel@tonic-gate 0x89297001, /* sllx %g5, 1, %g4 */ 10470Sstevel@tonic-gate 0x8931303e, /* srlx %g4, 62, %g4 */ 10480Sstevel@tonic-gate 0x8531702e, /* srlx %g5, 46, %g2 */ 10490Sstevel@tonic-gate 0x8408a004, /* and %g2, 4, %g2 */ 10500Sstevel@tonic-gate 0x88110002, /* or %g4, %g2, %g4 */ 1051490Ssusans 0x80a12005, /* cmp %g4, 5 */ 1052490Ssusans 0x34400002, /* bg,a,pn %icc, +8 */ 1053490Ssusans 0x88102004, /* mov 4, %g4 */ 10540Sstevel@tonic-gate 0x89292000, /* sll %g4, shift, %g4 */ 10550Sstevel@tonic-gate 0x82004004, /* add %g1, %g4, %g1 */ 10560Sstevel@tonic-gate 0xc4586000, /* ldx [%g1 + tmiss_count], %g2 */ 10570Sstevel@tonic-gate 0x8400a001, /* add %g2, 1, %g2 */ 10580Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + tmiss_count] */ 10590Sstevel@tonic-gate 0x0d000000, /* sethi %hi(tdata_tmptick), %g6 */ 10600Sstevel@tonic-gate 0xc459a000, /* ldx [%g6 + %lo(tdata_tmptick)], %g2 */ 10610Sstevel@tonic-gate 0x8620c002, /* sub %g3, %g2, %g3 */ 10620Sstevel@tonic-gate 0xc4586000, /* ldx [%g1 + tmiss_time], %g2 */ 10630Sstevel@tonic-gate 0x84008003, /* add %g2, %g3, %g2 */ 10640Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + tmiss_time] */ 10650Sstevel@tonic-gate 0x83f00000 /* retry */ 10660Sstevel@tonic-gate #else /* sun4v */ 10674732Sdavemq 0x82102008, /* mov SCRATCHPAD_CPUID, %g1 */ 10684732Sdavemq 0xced84400, /* ldxa [%g1]ASI_SCRATCHPAD, %g7 */ 10694732Sdavemq 0x8f29f000, /* sllx %g7, TSTAT_DATA_SHIFT, %g7 */ 10700Sstevel@tonic-gate 0x87410000, /* rd %tick, %g3 */ 10710Sstevel@tonic-gate 0x03000000, /* sethi %hi(stat), %g1 */ 10724732Sdavemq 0x82004007, /* add %g1, %g7, %g1 */ 10730Sstevel@tonic-gate 0x82106000, /* or %g1, %lo(stat), %g1 */ 10740Sstevel@tonic-gate 0x8929703d, /* sllx %g5, 61, %g4 */ 10750Sstevel@tonic-gate 0x8931303d, /* srlx %g4, 61, %g4 */ 10760Sstevel@tonic-gate 0x89292000, /* sll %g4, shift, %g4 */ 10770Sstevel@tonic-gate 0x82004004, /* add %g1, %g4, %g1 */ 10780Sstevel@tonic-gate 0xc4586000, /* ldx [%g1 + tmiss_count], %g2 */ 10790Sstevel@tonic-gate 0x8400a001, /* add %g2, 1, %g2 */ 10800Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + tmiss_count] */ 10810Sstevel@tonic-gate 0x0d000000, /* sethi %hi(tdata_tmptick), %g6 */ 10824732Sdavemq 0x8c018007, /* add %g6, %g7, %g6 */ 10830Sstevel@tonic-gate 0xc459a000, /* ldx [%g6 + %lo(tdata_tmptick)], %g2 */ 10840Sstevel@tonic-gate 0x8620c002, /* sub %g3, %g2, %g3 */ 10850Sstevel@tonic-gate 0xc4586000, /* ldx [%g1 + tmiss_time], %g2 */ 10860Sstevel@tonic-gate 0x84008003, /* add %g2, %g3, %g2 */ 10870Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + tmiss_time] */ 10880Sstevel@tonic-gate 0x83f00000 /* retry */ 10890Sstevel@tonic-gate #endif /* sun4v */ 10900Sstevel@tonic-gate }; 10910Sstevel@tonic-gate 10920Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 10930Sstevel@tonic-gate /*CONSTCOND*/ 10940Sstevel@tonic-gate ASSERT(offsetof(tstat_missdata_t, tmiss_count) <= LO10(-1)); 10950Sstevel@tonic-gate /*CONSTCOND*/ 10960Sstevel@tonic-gate ASSERT(offsetof(tstat_missdata_t, tmiss_time) <= LO10(-1)); 10970Sstevel@tonic-gate /*CONSTCOND*/ 10980Sstevel@tonic-gate ASSERT(!((sizeof (tstat_pgszdata_t) - 1) & sizeof (tstat_pgszdata_t))); 10990Sstevel@tonic-gate 11000Sstevel@tonic-gate for (shift = 1; (1 << shift) != sizeof (tstat_pgszdata_t); shift++) 11010Sstevel@tonic-gate continue; 11020Sstevel@tonic-gate 11034732Sdavemq base = (uintptr_t)tcpu->tcpu_ibase + TSTAT_INSTR_SIZE + 11040Sstevel@tonic-gate ((uintptr_t)data - (uintptr_t)tcpu->tcpu_data); 11050Sstevel@tonic-gate 11060Sstevel@tonic-gate bcopy(retent, ent, sizeof (retent)); 11070Sstevel@tonic-gate 11084732Sdavemq #if defined(sun4v) 11094732Sdavemq ent[TSTAT_RETENT_TDATASHFT] |= LO10((uintptr_t)TSTAT_DATA_SHIFT); 11104732Sdavemq #endif 11110Sstevel@tonic-gate ent[TSTAT_RETENT_STATHI] |= HI22(base); 11120Sstevel@tonic-gate ent[TSTAT_RETENT_STATLO] |= LO10(base); 11130Sstevel@tonic-gate ent[TSTAT_RETENT_SHIFT] |= shift; 11140Sstevel@tonic-gate /* LINTED E_EXPR_NULL_EFFECT */ 11150Sstevel@tonic-gate ent[TSTAT_RETENT_COUNT_LD] |= offsetof(tstat_missdata_t, tmiss_count); 11160Sstevel@tonic-gate /* LINTED E_EXPR_NULL_EFFECT */ 11170Sstevel@tonic-gate ent[TSTAT_RETENT_COUNT_ST] |= offsetof(tstat_missdata_t, tmiss_count); 11180Sstevel@tonic-gate ent[TSTAT_RETENT_TMPTSHI] |= HI22(tmptick); 11190Sstevel@tonic-gate ent[TSTAT_RETENT_TMPTSLO] |= LO10(tmptick); 11200Sstevel@tonic-gate ent[TSTAT_RETENT_TIME_LD] |= offsetof(tstat_missdata_t, tmiss_time); 11210Sstevel@tonic-gate ent[TSTAT_RETENT_TIME_ST] |= offsetof(tstat_missdata_t, tmiss_time); 11220Sstevel@tonic-gate } 11230Sstevel@tonic-gate 11244732Sdavemq #if defined(sun4v) 11254732Sdavemq #undef TSTAT_RETENT_TDATASHFT 11264732Sdavemq #endif 11270Sstevel@tonic-gate #undef TSTAT_RETENT_STATHI 11280Sstevel@tonic-gate #undef TSTAT_RETENT_STATLO 11290Sstevel@tonic-gate #undef TSTAT_RETENT_SHIFT 11300Sstevel@tonic-gate #undef TSTAT_RETENT_COUNT_LD 11310Sstevel@tonic-gate #undef TSTAT_RETENT_COUNT_ST 11320Sstevel@tonic-gate #undef TSTAT_RETENT_TMPTSHI 11330Sstevel@tonic-gate #undef TSTAT_RETENT_TMPTSLO 11340Sstevel@tonic-gate #undef TSTAT_RETENT_TIME_LD 11350Sstevel@tonic-gate #undef TSTAT_RETENT_TIME_ST 11360Sstevel@tonic-gate 11370Sstevel@tonic-gate /* 11380Sstevel@tonic-gate * The TSTAT_TLBENT_* constants define offsets in the TLB entry. They are 11390Sstevel@tonic-gate * used only in trapstat_tlbent() (below) and #undef'd immediately afterwards. 11400Sstevel@tonic-gate * Any change to "tlbent" in trapstat_tlbent() will likely require changes 11410Sstevel@tonic-gate * to these constants. 11420Sstevel@tonic-gate */ 11430Sstevel@tonic-gate 11440Sstevel@tonic-gate #ifndef sun4v 11450Sstevel@tonic-gate #define TSTAT_TLBENT_STATHI 0 11460Sstevel@tonic-gate #define TSTAT_TLBENT_STATLO_LD 1 11470Sstevel@tonic-gate #define TSTAT_TLBENT_STATLO_ST 3 11480Sstevel@tonic-gate #define TSTAT_TLBENT_MMUASI 15 11490Sstevel@tonic-gate #define TSTAT_TLBENT_TPCHI 18 11500Sstevel@tonic-gate #define TSTAT_TLBENT_TPCLO_USER 19 11510Sstevel@tonic-gate #define TSTAT_TLBENT_TPCLO_KERN 21 11520Sstevel@tonic-gate #define TSTAT_TLBENT_TSHI 25 11530Sstevel@tonic-gate #define TSTAT_TLBENT_TSLO 27 11540Sstevel@tonic-gate #define TSTAT_TLBENT_BA 28 11550Sstevel@tonic-gate #else /* sun4v */ 11564732Sdavemq #define TSTAT_TLBENT_TDATASHFT 2 11574732Sdavemq #define TSTAT_TLBENT_STATHI 3 11584732Sdavemq #define TSTAT_TLBENT_STATLO_LD 5 11594732Sdavemq #define TSTAT_TLBENT_STATLO_ST 7 11604732Sdavemq #define TSTAT_TLBENT_TAGTARGET 23 11614732Sdavemq #define TSTAT_TLBENT_TPCHI 25 11624732Sdavemq #define TSTAT_TLBENT_TPCLO_USER 26 11634732Sdavemq #define TSTAT_TLBENT_TPCLO_KERN 28 11644732Sdavemq #define TSTAT_TLBENT_TSHI 32 11654732Sdavemq #define TSTAT_TLBENT_TSLO 35 11664732Sdavemq #define TSTAT_TLBENT_BA 36 11670Sstevel@tonic-gate #endif /* sun4v */ 11680Sstevel@tonic-gate 11690Sstevel@tonic-gate static void 11700Sstevel@tonic-gate trapstat_tlbent(tstat_percpu_t *tcpu, int entno) 11710Sstevel@tonic-gate { 11720Sstevel@tonic-gate uint32_t *ent; 11730Sstevel@tonic-gate uintptr_t orig, va, baoffs; 11741050Sgirish #ifndef sun4v 11750Sstevel@tonic-gate int itlb = entno == TSTAT_ENT_ITLBMISS; 11764732Sdavemq uint32_t asi = itlb ? ASI(ASI_IMMU) : ASI(ASI_DMMU); 11771050Sgirish #else 11781050Sgirish int itlb = (entno == TSTAT_ENT_IMMUMISS || entno == TSTAT_ENT_ITLBMISS); 11794732Sdavemq uint32_t tagtarget_off = itlb ? MMFSA_I_CTX : MMFSA_D_CTX; 11804732Sdavemq uint32_t *tent; /* MMU trap vector entry */ 11814732Sdavemq uintptr_t tentva; /* MMU trap vector entry va */ 11824732Sdavemq static const uint32_t mmumiss[TSTAT_ENT_NINSTR] = { 11834732Sdavemq 0x30800000, /* ba,a addr */ 11844732Sdavemq NOP, NOP, NOP, NOP, NOP, NOP, NOP 11854732Sdavemq }; 11861050Sgirish #endif 11870Sstevel@tonic-gate int entoffs = entno << TSTAT_ENT_SHIFT; 11880Sstevel@tonic-gate uintptr_t tmptick, stat, tpc, utpc; 11890Sstevel@tonic-gate tstat_pgszdata_t *data = &tcpu->tcpu_data->tdata_pgsz[0]; 11900Sstevel@tonic-gate tstat_tlbdata_t *udata, *kdata; 11910Sstevel@tonic-gate tstat_tlbret_t *ret; 11920Sstevel@tonic-gate 11930Sstevel@tonic-gate /* 11940Sstevel@tonic-gate * When trapstat is run with TLB statistics, this is the entry for 11950Sstevel@tonic-gate * both I- and D-TLB misses; this code performs trap level pushing, 11960Sstevel@tonic-gate * as described in the "TLB Statistics" section of the block comment. 11970Sstevel@tonic-gate * This code is executing at TL 1; %tstate[0] contains the saved 11980Sstevel@tonic-gate * state at the time of the TLB miss. Pushing trap level 1 (and thus 11990Sstevel@tonic-gate * raising TL to 2) requires us to fill in %tstate[1] with our %pstate, 12000Sstevel@tonic-gate * %cwp and %asi. We leave %tt unchanged, and we set %tpc and %tnpc to 12010Sstevel@tonic-gate * the appropriate TLB return entry (based on the context of the miss). 12020Sstevel@tonic-gate * Finally, we sample %tick, and stash it in the tdata_tmptick member 12030Sstevel@tonic-gate * the per-CPU tstat_data structure. tdata_tmptick will be used in 12040Sstevel@tonic-gate * the TLB return entry to determine the amount of time spent in the 12050Sstevel@tonic-gate * TLB miss handler. 12060Sstevel@tonic-gate * 1207158Sgirish * Note that on sun4v platforms, we must obtain the context information 1208158Sgirish * from the MMU fault status area. (The base address of this MMU fault 1209158Sgirish * status area is kept in the scratchpad register 0.) 12100Sstevel@tonic-gate */ 12110Sstevel@tonic-gate static const uint32_t tlbent[] = { 12120Sstevel@tonic-gate #ifndef sun4v 12130Sstevel@tonic-gate 0x03000000, /* sethi %hi(stat), %g1 */ 12140Sstevel@tonic-gate 0xc4586000, /* ldx [%g1 + %lo(stat)], %g2 */ 12150Sstevel@tonic-gate 0x8400a001, /* add %g2, 1, %g2 */ 12160Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + %lo(stat)] */ 12170Sstevel@tonic-gate 0x85524000, /* rdpr %cwp, %g2 */ 12180Sstevel@tonic-gate 0x87518000, /* rdpr %pstate, %g3 */ 12190Sstevel@tonic-gate 0x8728f008, /* sllx %g3, 8, %g3 */ 12200Sstevel@tonic-gate 0x84108003, /* or %g2, %g3, %g2 */ 12210Sstevel@tonic-gate 0x8740c000, /* rd %asi, %g3 */ 12220Sstevel@tonic-gate 0x8728f018, /* sllx %g3, 24, %g3 */ 12230Sstevel@tonic-gate 0x84108003, /* or %g2, %g3, %g2 */ 12240Sstevel@tonic-gate 0x8350c000, /* rdpr %tt, %g1 */ 12250Sstevel@tonic-gate 0x8f902002, /* wrpr %g0, 2, %tl */ 12260Sstevel@tonic-gate 0x85908000, /* wrpr %g2, %g0, %tstate */ 12270Sstevel@tonic-gate 0x87904000, /* wrpr %g1, %g0, %tt */ 12280Sstevel@tonic-gate 0xc2d80000, /* ldxa [%g0]ASI_MMU, %g1 */ 12290Sstevel@tonic-gate 0x83307030, /* srlx %g1, CTXSHIFT, %g1 */ 12300Sstevel@tonic-gate 0x02c04004, /* brz,pn %g1, .+0x10 */ 12310Sstevel@tonic-gate 0x03000000, /* sethi %hi(new_tpc), %g1 */ 12320Sstevel@tonic-gate 0x82106000, /* or %g1, %lo(new_tpc), %g1 */ 12330Sstevel@tonic-gate 0x30800002, /* ba,a .+0x8 */ 12340Sstevel@tonic-gate 0x82106000, /* or %g1, %lo(new_tpc), %g1 */ 12350Sstevel@tonic-gate 0x81904000, /* wrpr %g1, %g0, %tpc */ 12360Sstevel@tonic-gate 0x82006004, /* add %g1, 4, %g1 */ 12370Sstevel@tonic-gate 0x83904000, /* wrpr %g1, %g0, %tnpc */ 12380Sstevel@tonic-gate 0x03000000, /* sethi %hi(tmptick), %g1 */ 12390Sstevel@tonic-gate 0x85410000, /* rd %tick, %g2 */ 12400Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + %lo(tmptick)] */ 12410Sstevel@tonic-gate 0x30800000, /* ba,a addr */ 12420Sstevel@tonic-gate NOP, NOP, NOP 12430Sstevel@tonic-gate #else /* sun4v */ 12444732Sdavemq 0x82102008, /* mov SCRATCHPAD_CPUID, %g1 */ 12454732Sdavemq 0xc8d84400, /* ldxa [%g1]ASI_SCRATCHPAD, %g4 */ 12464732Sdavemq 0x89293000, /* sllx %g4, TSTAT_DATA_SHIFT, %g4 */ 12470Sstevel@tonic-gate 0x03000000, /* sethi %hi(stat), %g1 */ 12484732Sdavemq 0x82004004, /* add %g1, %g4, %g1 */ 12490Sstevel@tonic-gate 0xc4586000, /* ldx [%g1 + %lo(stat)], %g2 */ 12500Sstevel@tonic-gate 0x8400a001, /* add %g2, 1, %g2 */ 12510Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + %lo(stat)] */ 12520Sstevel@tonic-gate 0x85524000, /* rdpr %cwp, %g2 */ 12530Sstevel@tonic-gate 0x87518000, /* rdpr %pstate, %g3 */ 12540Sstevel@tonic-gate 0x8728f008, /* sllx %g3, 8, %g3 */ 12550Sstevel@tonic-gate 0x84108003, /* or %g2, %g3, %g2 */ 12560Sstevel@tonic-gate 0x8740c000, /* rd %asi, %g3 */ 1257158Sgirish 0x8728f018, /* sllx %g3, 24, %g3 */ 1258158Sgirish 0x83540000, /* rdpr %gl, %g1 */ 1259158Sgirish 0x83287028, /* sllx %g1, 40, %g1 */ 12600Sstevel@tonic-gate 0x86104003, /* or %g1, %g3, %g3 */ 12610Sstevel@tonic-gate 0x84108003, /* or %g2, %g3, %g2 */ 12620Sstevel@tonic-gate 0x8350c000, /* rdpr %tt, %g1 */ 12630Sstevel@tonic-gate 0x8f902002, /* wrpr %g0, 2, %tl */ 12640Sstevel@tonic-gate 0x85908000, /* wrpr %g2, %g0, %tstate */ 12650Sstevel@tonic-gate 0x87904000, /* wrpr %g1, %g0, %tt */ 12660Sstevel@tonic-gate 0xc2d80400, /* ldxa [%g0]ASI_SCRATCHPAD, %g1 */ 12670Sstevel@tonic-gate 0xc2586000, /* ldx [%g1 + MMFSA_?_CTX], %g1 */ 12680Sstevel@tonic-gate 0x02c04004, /* brz,pn %g1, .+0x10 */ 12690Sstevel@tonic-gate 0x03000000, /* sethi %hi(new_tpc), %g1 */ 12700Sstevel@tonic-gate 0x82106000, /* or %g1, %lo(new_tpc), %g1 */ 12710Sstevel@tonic-gate 0x30800002, /* ba,a .+0x8 */ 12720Sstevel@tonic-gate 0x82106000, /* or %g1, %lo(new_tpc), %g1 */ 12730Sstevel@tonic-gate 0x81904000, /* wrpr %g1, %g0, %tpc */ 12740Sstevel@tonic-gate 0x82006004, /* add %g1, 4, %g1 */ 12750Sstevel@tonic-gate 0x83904000, /* wrpr %g1, %g0, %tnpc */ 12760Sstevel@tonic-gate 0x03000000, /* sethi %hi(tmptick), %g1 */ 12774732Sdavemq 0x82004004, /* add %g1, %g4, %g1 */ 12780Sstevel@tonic-gate 0x85410000, /* rd %tick, %g2 */ 12790Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + %lo(tmptick)] */ 12800Sstevel@tonic-gate 0x30800000 /* ba,a addr */ 12810Sstevel@tonic-gate #endif /* sun4v */ 12820Sstevel@tonic-gate }; 12830Sstevel@tonic-gate 12840Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 12851050Sgirish #ifndef sun4v 12860Sstevel@tonic-gate ASSERT(entno == TSTAT_ENT_ITLBMISS || entno == TSTAT_ENT_DTLBMISS); 12870Sstevel@tonic-gate 12880Sstevel@tonic-gate stat = TSTAT_DATA_OFFS(tcpu, tdata_traps) + entoffs; 12890Sstevel@tonic-gate tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick); 12904732Sdavemq #else /* sun4v */ 12914732Sdavemq ASSERT(entno == TSTAT_ENT_ITLBMISS || entno == TSTAT_ENT_DTLBMISS || 12924732Sdavemq entno == TSTAT_ENT_IMMUMISS || entno == TSTAT_ENT_DMMUMISS); 12934732Sdavemq 12944732Sdavemq stat = TSTAT_CPU0_DATA_OFFS(tcpu, tdata_traps) + entoffs; 12954732Sdavemq tmptick = TSTAT_CPU0_DATA_OFFS(tcpu, tdata_tmptick); 12964732Sdavemq #endif /* sun4v */ 12970Sstevel@tonic-gate 12980Sstevel@tonic-gate if (itlb) { 12990Sstevel@tonic-gate ret = &tcpu->tcpu_instr->tinst_itlbret; 13000Sstevel@tonic-gate udata = &data->tpgsz_user.tmode_itlb; 13010Sstevel@tonic-gate kdata = &data->tpgsz_kernel.tmode_itlb; 13020Sstevel@tonic-gate tpc = TSTAT_INSTR_OFFS(tcpu, tinst_itlbret.ttlbr_ktlb); 13030Sstevel@tonic-gate } else { 13040Sstevel@tonic-gate ret = &tcpu->tcpu_instr->tinst_dtlbret; 13050Sstevel@tonic-gate udata = &data->tpgsz_user.tmode_dtlb; 13060Sstevel@tonic-gate kdata = &data->tpgsz_kernel.tmode_dtlb; 13070Sstevel@tonic-gate tpc = TSTAT_INSTR_OFFS(tcpu, tinst_dtlbret.ttlbr_ktlb); 13080Sstevel@tonic-gate } 13090Sstevel@tonic-gate 13100Sstevel@tonic-gate utpc = tpc + offsetof(tstat_tlbret_t, ttlbr_utlb) - 13110Sstevel@tonic-gate offsetof(tstat_tlbret_t, ttlbr_ktlb); 13120Sstevel@tonic-gate 13130Sstevel@tonic-gate ASSERT(HI22(tpc) == HI22(utpc)); 13140Sstevel@tonic-gate 13150Sstevel@tonic-gate ent = (uint32_t *)((uintptr_t)tcpu->tcpu_instr + entoffs); 13160Sstevel@tonic-gate orig = KERNELBASE + entoffs; 13170Sstevel@tonic-gate va = (uintptr_t)tcpu->tcpu_ibase + entoffs; 13180Sstevel@tonic-gate baoffs = TSTAT_TLBENT_BA * sizeof (uint32_t); 13190Sstevel@tonic-gate 13201050Sgirish #ifdef sun4v 13214732Sdavemq /* 13224732Sdavemq * Because of lack of space, interposing tlbent trap handler 13234732Sdavemq * for TLB and MMU miss traps cannot be placed in-line. Instead, 13244732Sdavemq * we copy it to the space set aside for shared trap handlers 13254732Sdavemq * continuation in the interposing trap table and invoke it by 13264732Sdavemq * placing a branch in the trap table itself. 13274732Sdavemq */ 13284732Sdavemq tent = ent; /* trap vector entry */ 13294732Sdavemq tentva = va; /* trap vector entry va */ 13301050Sgirish 13314732Sdavemq if (itlb) { 13324732Sdavemq ent = (uint32_t *)((uintptr_t) 13334732Sdavemq &tcpu->tcpu_instr->tinst_immumiss); 13344732Sdavemq va = TSTAT_INSTR_OFFS(tcpu, tinst_immumiss); 13354732Sdavemq } else { 13364732Sdavemq ent = (uint32_t *)((uintptr_t) 13374732Sdavemq &tcpu->tcpu_instr->tinst_dmmumiss); 13384732Sdavemq va = TSTAT_INSTR_OFFS(tcpu, tinst_dmmumiss); 13391050Sgirish } 13404732Sdavemq bcopy(mmumiss, tent, sizeof (mmumiss)); 13414732Sdavemq tent[0] |= DISP22(tentva, va); 13421050Sgirish #endif /* sun4v */ 13431050Sgirish 13440Sstevel@tonic-gate bcopy(tlbent, ent, sizeof (tlbent)); 13450Sstevel@tonic-gate 13464732Sdavemq #if defined(sun4v) 13474732Sdavemq ent[TSTAT_TLBENT_TDATASHFT] |= LO10((uintptr_t)TSTAT_DATA_SHIFT); 13484732Sdavemq #endif 13490Sstevel@tonic-gate ent[TSTAT_TLBENT_STATHI] |= HI22(stat); 13500Sstevel@tonic-gate ent[TSTAT_TLBENT_STATLO_LD] |= LO10(stat); 13510Sstevel@tonic-gate ent[TSTAT_TLBENT_STATLO_ST] |= LO10(stat); 13520Sstevel@tonic-gate #ifndef sun4v 13530Sstevel@tonic-gate ent[TSTAT_TLBENT_MMUASI] |= asi; 13540Sstevel@tonic-gate #else 13550Sstevel@tonic-gate ent[TSTAT_TLBENT_TAGTARGET] |= tagtarget_off; 13560Sstevel@tonic-gate #endif 13570Sstevel@tonic-gate ent[TSTAT_TLBENT_TPCHI] |= HI22(tpc); 13580Sstevel@tonic-gate ent[TSTAT_TLBENT_TPCLO_USER] |= LO10(utpc); 13590Sstevel@tonic-gate ent[TSTAT_TLBENT_TPCLO_KERN] |= LO10(tpc); 13600Sstevel@tonic-gate ent[TSTAT_TLBENT_TSHI] |= HI22(tmptick); 13610Sstevel@tonic-gate ent[TSTAT_TLBENT_TSLO] |= LO10(tmptick); 13620Sstevel@tonic-gate ent[TSTAT_TLBENT_BA] |= DISP22(va + baoffs, orig); 13630Sstevel@tonic-gate 13640Sstevel@tonic-gate /* 13650Sstevel@tonic-gate * And now set up the TLB return entries. 13660Sstevel@tonic-gate */ 13670Sstevel@tonic-gate trapstat_tlbretent(tcpu, &ret->ttlbr_ktlb, &kdata->ttlb_tlb); 13680Sstevel@tonic-gate trapstat_tlbretent(tcpu, &ret->ttlbr_ktsb, &kdata->ttlb_tsb); 13690Sstevel@tonic-gate trapstat_tlbretent(tcpu, &ret->ttlbr_utlb, &udata->ttlb_tlb); 13700Sstevel@tonic-gate trapstat_tlbretent(tcpu, &ret->ttlbr_utsb, &udata->ttlb_tsb); 13710Sstevel@tonic-gate } 13720Sstevel@tonic-gate 13734732Sdavemq #if defined(sun4v) 13744732Sdavemq #undef TSTAT_TLBENT_TDATASHFT 13754732Sdavemq #endif 13760Sstevel@tonic-gate #undef TSTAT_TLBENT_STATHI 13770Sstevel@tonic-gate #undef TSTAT_TLBENT_STATLO_LD 13780Sstevel@tonic-gate #undef TSTAT_TLBENT_STATLO_ST 13790Sstevel@tonic-gate #ifndef sun4v 13800Sstevel@tonic-gate #undef TSTAT_TLBENT_MMUASI 13810Sstevel@tonic-gate #else 13820Sstevel@tonic-gate #undef TSTAT_TLBENT_TAGTARGET 13830Sstevel@tonic-gate #endif 13840Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCHI 13850Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCLO_USER 13860Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCLO_KERN 13870Sstevel@tonic-gate #undef TSTAT_TLBENT_TSHI 13880Sstevel@tonic-gate #undef TSTAT_TLBENT_TSLO 13890Sstevel@tonic-gate #undef TSTAT_TLBENT_BA 13900Sstevel@tonic-gate 13910Sstevel@tonic-gate /* 13920Sstevel@tonic-gate * The TSTAT_ENABLED_* constants define offsets in the enabled entry; the 13930Sstevel@tonic-gate * TSTAT_DISABLED_BA constant defines an offset in the disabled entry. Both 13940Sstevel@tonic-gate * sets of constants are used only in trapstat_make_traptab() (below) and 13950Sstevel@tonic-gate * #undef'd immediately afterwards. Any change to "enabled" or "disabled" 13960Sstevel@tonic-gate * in trapstat_make_traptab() will likely require changes to these constants. 13970Sstevel@tonic-gate */ 13984732Sdavemq #ifndef sun4v 13990Sstevel@tonic-gate #define TSTAT_ENABLED_STATHI 0 14000Sstevel@tonic-gate #define TSTAT_ENABLED_STATLO_LD 1 14010Sstevel@tonic-gate #define TSTAT_ENABLED_STATLO_ST 3 14020Sstevel@tonic-gate #define TSTAT_ENABLED_BA 4 14030Sstevel@tonic-gate #define TSTAT_DISABLED_BA 0 14040Sstevel@tonic-gate 14050Sstevel@tonic-gate static void 14060Sstevel@tonic-gate trapstat_make_traptab(tstat_percpu_t *tcpu) 14070Sstevel@tonic-gate { 14080Sstevel@tonic-gate uint32_t *ent; 14090Sstevel@tonic-gate uint64_t *stat; 14100Sstevel@tonic-gate uintptr_t orig, va, en_baoffs, dis_baoffs; 14110Sstevel@tonic-gate int nent; 14120Sstevel@tonic-gate 14130Sstevel@tonic-gate /* 14140Sstevel@tonic-gate * This is the entry in the interposing trap table for enabled trap 14150Sstevel@tonic-gate * table entries. It loads a counter, increments it and stores it 14160Sstevel@tonic-gate * back before branching to the actual trap table entry. 14170Sstevel@tonic-gate */ 14180Sstevel@tonic-gate static const uint32_t enabled[TSTAT_ENT_NINSTR] = { 14190Sstevel@tonic-gate 0x03000000, /* sethi %hi(stat), %g1 */ 14200Sstevel@tonic-gate 0xc4586000, /* ldx [%g1 + %lo(stat)], %g2 */ 14210Sstevel@tonic-gate 0x8400a001, /* add %g2, 1, %g2 */ 14220Sstevel@tonic-gate 0xc4706000, /* stx %g2, [%g1 + %lo(stat)] */ 14230Sstevel@tonic-gate 0x30800000, /* ba,a addr */ 14240Sstevel@tonic-gate NOP, NOP, NOP 14250Sstevel@tonic-gate }; 14260Sstevel@tonic-gate 14270Sstevel@tonic-gate /* 14280Sstevel@tonic-gate * This is the entry in the interposing trap table for disabled trap 14290Sstevel@tonic-gate * table entries. It simply branches to the actual, underlying trap 14300Sstevel@tonic-gate * table entry. As explained in the "Implementation Details" section 14310Sstevel@tonic-gate * of the block comment, all TL>0 traps _must_ use the disabled entry; 14320Sstevel@tonic-gate * additional entries may be explicitly disabled through the use 14330Sstevel@tonic-gate * of TSTATIOC_ENTRY/TSTATIOC_NOENTRY. 14340Sstevel@tonic-gate */ 14350Sstevel@tonic-gate static const uint32_t disabled[TSTAT_ENT_NINSTR] = { 14360Sstevel@tonic-gate 0x30800000, /* ba,a addr */ 14370Sstevel@tonic-gate NOP, NOP, NOP, NOP, NOP, NOP, NOP, 14380Sstevel@tonic-gate }; 14390Sstevel@tonic-gate 14400Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 14410Sstevel@tonic-gate 14420Sstevel@tonic-gate ent = tcpu->tcpu_instr->tinst_traptab; 14430Sstevel@tonic-gate stat = (uint64_t *)TSTAT_DATA_OFFS(tcpu, tdata_traps); 14440Sstevel@tonic-gate orig = KERNELBASE; 14450Sstevel@tonic-gate va = (uintptr_t)tcpu->tcpu_ibase; 14460Sstevel@tonic-gate en_baoffs = TSTAT_ENABLED_BA * sizeof (uint32_t); 14470Sstevel@tonic-gate dis_baoffs = TSTAT_DISABLED_BA * sizeof (uint32_t); 14480Sstevel@tonic-gate 14490Sstevel@tonic-gate for (nent = 0; nent < TSTAT_TOTAL_NENT; nent++) { 14500Sstevel@tonic-gate if (tstat_enabled[nent]) { 14510Sstevel@tonic-gate bcopy(enabled, ent, sizeof (enabled)); 1452567Sdmick ent[TSTAT_ENABLED_STATHI] |= HI22((uintptr_t)stat); 1453567Sdmick ent[TSTAT_ENABLED_STATLO_LD] |= LO10((uintptr_t)stat); 1454567Sdmick ent[TSTAT_ENABLED_STATLO_ST] |= LO10((uintptr_t)stat); 14550Sstevel@tonic-gate ent[TSTAT_ENABLED_BA] |= DISP22(va + en_baoffs, orig); 14560Sstevel@tonic-gate } else { 14570Sstevel@tonic-gate bcopy(disabled, ent, sizeof (disabled)); 14580Sstevel@tonic-gate ent[TSTAT_DISABLED_BA] |= DISP22(va + dis_baoffs, orig); 14590Sstevel@tonic-gate } 14600Sstevel@tonic-gate 14610Sstevel@tonic-gate stat++; 14620Sstevel@tonic-gate orig += sizeof (enabled); 14630Sstevel@tonic-gate ent += sizeof (enabled) / sizeof (*ent); 14640Sstevel@tonic-gate va += sizeof (enabled); 14650Sstevel@tonic-gate } 14660Sstevel@tonic-gate } 14670Sstevel@tonic-gate 14680Sstevel@tonic-gate #undef TSTAT_ENABLED_STATHI 14690Sstevel@tonic-gate #undef TSTAT_ENABLED_STATLO_LD 14700Sstevel@tonic-gate #undef TSTAT_ENABLED_STATLO_ST 14710Sstevel@tonic-gate #undef TSTAT_ENABLED_BA 14720Sstevel@tonic-gate #undef TSTAT_DISABLED_BA 14730Sstevel@tonic-gate 14744732Sdavemq #else /* sun4v */ 14754732Sdavemq 14764732Sdavemq #define TSTAT_ENABLED_STATHI 0 14774732Sdavemq #define TSTAT_ENABLED_STATLO 1 14784732Sdavemq #define TSTAT_ENABLED_ADDRHI 2 14794732Sdavemq #define TSTAT_ENABLED_ADDRLO 3 14804732Sdavemq #define TSTAT_ENABLED_CONTBA 6 14814732Sdavemq #define TSTAT_ENABLED_TDATASHFT 7 14824732Sdavemq #define TSTAT_DISABLED_BA 0 14834732Sdavemq 14844732Sdavemq static void 14854732Sdavemq trapstat_make_traptab(tstat_percpu_t *tcpu) 14864732Sdavemq { 14874732Sdavemq uint32_t *ent; 14884732Sdavemq uint64_t *stat; 14894732Sdavemq uintptr_t orig, va, en_baoffs, dis_baoffs; 14904732Sdavemq uintptr_t tstat_cont_va; 14914732Sdavemq int nent; 14924732Sdavemq 14934732Sdavemq /* 14944732Sdavemq * This is the entry in the interposing trap table for enabled trap 14954732Sdavemq * table entries. It loads a counter, increments it and stores it 14964732Sdavemq * back before branching to the actual trap table entry. 14974732Sdavemq * 14984732Sdavemq * All CPUs share the same interposing trap entry to count the 14994732Sdavemq * number of traps. Note that the trap counter is kept in per CPU 15004732Sdavemq * trap statistics area. Its address is obtained dynamically by 15014732Sdavemq * adding the offset of that CPU's trap statistics area from CPU 0 15024732Sdavemq * (i.e. cpu_id * TSTAT_DATA_SIZE) to the address of the CPU 0 15034732Sdavemq * trap counter already coded in the interposing trap entry itself. 15044732Sdavemq * 15054732Sdavemq * Since this interposing code sequence to count traps takes more 15064732Sdavemq * than 8 instructions, it's split in two parts as follows: 15074732Sdavemq * 15084732Sdavemq * tstat_trapcnt: 15094732Sdavemq * sethi %hi(stat), %g1 15104732Sdavemq * or %g1, %lo[stat), %g1 ! %g1 = CPU0 trap counter addr 15114732Sdavemq * sethi %hi(addr), %g2 15124732Sdavemq * or %g2, %lo(addr), %g2 ! %g2 = real trap handler addr 15134732Sdavemq * mov ASI_SCRATCHPAD_CPUID, %g3 15144732Sdavemq * ldxa [%g3]ASI_SCRATCHPAD, %g3 ! %g3 = CPU ID 15154732Sdavemq * ba tstat_trapcnt_cont ! branch to tstat_trapcnt_cont 15164732Sdavemq * sllx %g3, TSTAT_DATA_SHIFT, %g3 ! %g3 = CPU trapstat data offset 15174732Sdavemq * 15184732Sdavemq * tstat_trapcnt_cont: 15194732Sdavemq * ldx [%g1 + %g3], %g4 ! get counter value 15204732Sdavemq * add %g4, 1, %g4 ! increment value 15214732Sdavemq * jmp %g2 ! jump to original trap handler 15224732Sdavemq * stx %g4, [%g1 + %g3] ! store counter value 15234732Sdavemq * 15244732Sdavemq * First part, i.e. tstat_trapcnt, is per trap and is kept in-line in 15254732Sdavemq * the interposing trap table. However, the tstat_trapcnt_cont code 15264732Sdavemq * sequence is shared by all traps and is kept right after the 15274732Sdavemq * the interposing trap table. 15284732Sdavemq */ 15294732Sdavemq static const uint32_t enabled[TSTAT_ENT_NINSTR] = { 15304732Sdavemq 0x03000000, /* sethi %hi(stat), %g1 */ 15314732Sdavemq 0x82106000, /* or %g1, %lo[stat), %g1 */ 15324732Sdavemq 0x05000000, /* sethi %hi(addr), %g2 */ 15334732Sdavemq 0x8410a000, /* or %g2, %lo(addr), %g2 */ 15344732Sdavemq 0x86102008, /* mov ASI_SCRATCHPAD_CPUID, %g3 */ 15354732Sdavemq 0xc6d8c400, /* ldxa [%g3]ASI_SCRATCHPAD, %g3 */ 15364732Sdavemq 0x10800000, /* ba enabled_cont */ 15374732Sdavemq 0x8728f000 /* sllx %g3, TSTAT_DATA_SHIFT, %g3 */ 15384732Sdavemq }; 15394732Sdavemq 15404732Sdavemq static const uint32_t enabled_cont[TSTAT_ENT_NINSTR] = { 15414732Sdavemq 0xc8584003, /* ldx [%g1 + %g3], %g4 */ 15424732Sdavemq 0x88012001, /* add %g4, 1, %g4 */ 15434732Sdavemq 0x81c08000, /* jmp %g2 */ 15444732Sdavemq 0xc8704003, /* stx %g4, [%g1 + %g3] */ 15454732Sdavemq NOP, NOP, NOP, NOP 15464732Sdavemq }; 15474732Sdavemq 15484732Sdavemq /* 15494732Sdavemq * This is the entry in the interposing trap table for disabled trap 15504732Sdavemq * table entries. It simply branches to the actual, underlying trap 15514732Sdavemq * table entry. As explained in the "Implementation Details" section 15524732Sdavemq * of the block comment, all TL>0 traps _must_ use the disabled entry; 15534732Sdavemq * additional entries may be explicitly disabled through the use 15544732Sdavemq * of TSTATIOC_ENTRY/TSTATIOC_NOENTRY. 15554732Sdavemq */ 15564732Sdavemq static const uint32_t disabled[TSTAT_ENT_NINSTR] = { 15574732Sdavemq 0x30800000, /* ba,a addr */ 15584732Sdavemq NOP, NOP, NOP, NOP, NOP, NOP, NOP, 15594732Sdavemq }; 15604732Sdavemq 15614732Sdavemq ASSERT(MUTEX_HELD(&tstat_lock)); 15624732Sdavemq ent = tcpu->tcpu_instr->tinst_traptab; 15634732Sdavemq stat = (uint64_t *)TSTAT_CPU0_DATA_OFFS(tcpu, tdata_traps); 15644732Sdavemq orig = KERNELBASE; 15654732Sdavemq va = (uintptr_t)tcpu->tcpu_ibase; 15664732Sdavemq en_baoffs = TSTAT_ENABLED_CONTBA * sizeof (uint32_t); 15674732Sdavemq dis_baoffs = TSTAT_DISABLED_BA * sizeof (uint32_t); 15684732Sdavemq tstat_cont_va = TSTAT_INSTR_OFFS(tcpu, tinst_trapcnt); 15694732Sdavemq 15704732Sdavemq for (nent = 0; nent < TSTAT_TOTAL_NENT; nent++) { 15714732Sdavemq if (tstat_enabled[nent]) { 15724732Sdavemq bcopy(enabled, ent, sizeof (enabled)); 15734732Sdavemq ent[TSTAT_ENABLED_STATHI] |= HI22((uintptr_t)stat); 15744732Sdavemq ent[TSTAT_ENABLED_STATLO] |= LO10((uintptr_t)stat); 15754732Sdavemq ent[TSTAT_ENABLED_ADDRHI] |= HI22((uintptr_t)orig); 15764732Sdavemq ent[TSTAT_ENABLED_ADDRLO] |= LO10((uintptr_t)orig); 15774732Sdavemq ent[TSTAT_ENABLED_CONTBA] |= 15784732Sdavemq DISP22(va + en_baoffs, tstat_cont_va); 15794732Sdavemq ent[TSTAT_ENABLED_TDATASHFT] |= 15804732Sdavemq LO10((uintptr_t)TSTAT_DATA_SHIFT); 15814732Sdavemq } else { 15824732Sdavemq bcopy(disabled, ent, sizeof (disabled)); 15834732Sdavemq ent[TSTAT_DISABLED_BA] |= DISP22(va + dis_baoffs, orig); 15844732Sdavemq } 15854732Sdavemq 15864732Sdavemq stat++; 15874732Sdavemq orig += sizeof (enabled); 15884732Sdavemq ent += sizeof (enabled) / sizeof (*ent); 15894732Sdavemq va += sizeof (enabled); 15904732Sdavemq } 15914732Sdavemq bcopy(enabled_cont, (uint32_t *)tcpu->tcpu_instr->tinst_trapcnt, 15924732Sdavemq sizeof (enabled_cont)); 15934732Sdavemq } 15944732Sdavemq 15954732Sdavemq #undef TSTAT_ENABLED_TDATASHFT 15964732Sdavemq #undef TSTAT_ENABLED_STATHI 15974732Sdavemq #undef TSTAT_ENABLED_STATLO 15984732Sdavemq #undef TSTAT_ENABLED_ADDRHI 15994732Sdavemq #undef TSTAT_ENABLED_ADDRLO 16004732Sdavemq #undef TSTAT_ENABLED_CONTBA 16014732Sdavemq #undef TSTAT_DISABLED_BA 16024732Sdavemq 16034732Sdavemq #endif /* sun4v */ 16044732Sdavemq 16051772Sjl139090 #ifndef sun4v 16061772Sjl139090 /* 16071772Sjl139090 * See Section A.6 in SPARC v9 Manual. 16081772Sjl139090 * max branch = 4*((2^21)-1) = 8388604 16091772Sjl139090 */ 16101772Sjl139090 #define MAX_BICC_BRANCH_DISPLACEMENT (4 * ((1 << 21) - 1)) 16111772Sjl139090 #endif 16121772Sjl139090 16130Sstevel@tonic-gate static void 16140Sstevel@tonic-gate trapstat_setup(processorid_t cpu) 16150Sstevel@tonic-gate { 16160Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[cpu]; 16170Sstevel@tonic-gate #ifndef sun4v 16180Sstevel@tonic-gate int i; 16190Sstevel@tonic-gate caddr_t va; 16200Sstevel@tonic-gate pfn_t *pfn; 16211772Sjl139090 cpu_t *cp; 16221772Sjl139090 uint_t strand_idx; 16231772Sjl139090 size_t tstat_offset; 16240Sstevel@tonic-gate #endif 16250Sstevel@tonic-gate 16260Sstevel@tonic-gate ASSERT(tcpu->tcpu_pfn == NULL); 16270Sstevel@tonic-gate ASSERT(tcpu->tcpu_instr == NULL); 16280Sstevel@tonic-gate ASSERT(tcpu->tcpu_data == NULL); 16290Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED); 16300Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED)); 16310Sstevel@tonic-gate ASSERT(MUTEX_HELD(&cpu_lock)); 16320Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 16330Sstevel@tonic-gate 16344732Sdavemq #ifndef sun4v 16350Sstevel@tonic-gate /* 16360Sstevel@tonic-gate * The lower fifteen bits of the %tba are always read as zero; we must 16370Sstevel@tonic-gate * align our instruction base address appropriately. 16380Sstevel@tonic-gate */ 16391772Sjl139090 tstat_offset = tstat_total_size; 16401772Sjl139090 16411772Sjl139090 cp = cpu_get(cpu); 16421772Sjl139090 ASSERT(cp != NULL); 16433434Sesaxe if ((strand_idx = cpu ^ pg_plat_hw_instance_id(cp, PGHW_IPIPE)) != 0) { 16441772Sjl139090 /* 16451772Sjl139090 * On sun4u platforms with multiple CPUs sharing the MMU 16461772Sjl139090 * (Olympus-C has 2 strands per core), each CPU uses a 16471772Sjl139090 * disjoint trap table. The indexing is based on the 16481772Sjl139090 * strand id, which is obtained by XOR'ing the cpuid with 16491772Sjl139090 * the coreid. 16501772Sjl139090 */ 16511772Sjl139090 tstat_offset += tstat_total_size * strand_idx; 16521772Sjl139090 16531772Sjl139090 /* 16541772Sjl139090 * Offset must be less than the maximum PC-relative branch 16551772Sjl139090 * displacement for Bicc variants. See the Implementation 16561772Sjl139090 * Details comment. 16571772Sjl139090 */ 16581772Sjl139090 ASSERT(tstat_offset <= MAX_BICC_BRANCH_DISPLACEMENT); 16591772Sjl139090 } 16601772Sjl139090 16611772Sjl139090 tcpu->tcpu_ibase = (caddr_t)((KERNELBASE - tstat_offset) 16624732Sdavemq & TSTAT_TBA_MASK); 16630Sstevel@tonic-gate tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE; 16640Sstevel@tonic-gate tcpu->tcpu_vabase = tcpu->tcpu_ibase; 16650Sstevel@tonic-gate 16660Sstevel@tonic-gate tcpu->tcpu_pfn = vmem_alloc(tstat_arena, tstat_total_pages, VM_SLEEP); 16670Sstevel@tonic-gate bzero(tcpu->tcpu_pfn, tstat_total_pages); 16680Sstevel@tonic-gate pfn = tcpu->tcpu_pfn; 16690Sstevel@tonic-gate 16700Sstevel@tonic-gate tcpu->tcpu_instr = vmem_alloc(tstat_arena, TSTAT_INSTR_SIZE, VM_SLEEP); 16710Sstevel@tonic-gate 16720Sstevel@tonic-gate va = (caddr_t)tcpu->tcpu_instr; 16730Sstevel@tonic-gate for (i = 0; i < TSTAT_INSTR_PAGES; i++, va += MMU_PAGESIZE) 16740Sstevel@tonic-gate *pfn++ = hat_getpfnum(kas.a_hat, va); 16750Sstevel@tonic-gate 16760Sstevel@tonic-gate /* 16770Sstevel@tonic-gate * We must be sure that the pages that we will use to examine the data 16780Sstevel@tonic-gate * have the same virtual color as the pages to which the data is being 16790Sstevel@tonic-gate * recorded, hence the alignment and phase constraints on the 16800Sstevel@tonic-gate * allocation. 16810Sstevel@tonic-gate */ 16820Sstevel@tonic-gate tcpu->tcpu_data = vmem_xalloc(tstat_arena, tstat_data_size, 16830Sstevel@tonic-gate shm_alignment, (uintptr_t)tcpu->tcpu_dbase & (shm_alignment - 1), 16840Sstevel@tonic-gate 0, 0, NULL, VM_SLEEP); 16850Sstevel@tonic-gate bzero(tcpu->tcpu_data, tstat_data_size); 16860Sstevel@tonic-gate tcpu->tcpu_data->tdata_cpuid = cpu; 16870Sstevel@tonic-gate 16880Sstevel@tonic-gate va = (caddr_t)tcpu->tcpu_data; 16890Sstevel@tonic-gate for (i = 0; i < tstat_data_pages; i++, va += MMU_PAGESIZE) 16900Sstevel@tonic-gate *pfn++ = hat_getpfnum(kas.a_hat, va); 16910Sstevel@tonic-gate 16920Sstevel@tonic-gate /* 16930Sstevel@tonic-gate * Now that we have all of the instruction and data pages allocated, 16940Sstevel@tonic-gate * make the trap table from scratch. 16950Sstevel@tonic-gate */ 16960Sstevel@tonic-gate trapstat_make_traptab(tcpu); 16970Sstevel@tonic-gate 16980Sstevel@tonic-gate if (tstat_options & TSTAT_OPT_TLBDATA) { 16990Sstevel@tonic-gate /* 17000Sstevel@tonic-gate * TLB Statistics have been specified; set up the I- and D-TLB 17010Sstevel@tonic-gate * entries and corresponding TLB return entries. 17020Sstevel@tonic-gate */ 17030Sstevel@tonic-gate trapstat_tlbent(tcpu, TSTAT_ENT_ITLBMISS); 17040Sstevel@tonic-gate trapstat_tlbent(tcpu, TSTAT_ENT_DTLBMISS); 17054732Sdavemq } 17064732Sdavemq 17074732Sdavemq #else /* sun4v */ 17084732Sdavemq 17094732Sdavemq /* 17104732Sdavemq * The lower fifteen bits of the %tba are always read as zero; hence 17114732Sdavemq * it must be aligned at least on 512K boundary. 17124732Sdavemq */ 17134732Sdavemq tcpu->tcpu_vabase = (caddr_t)(KERNELBASE - MMU_PAGESIZE4M); 17144732Sdavemq tcpu->tcpu_ibase = tcpu->tcpu_vabase; 17154732Sdavemq tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE + 17164732Sdavemq cpu * TSTAT_DATA_SIZE; 17174732Sdavemq 17184732Sdavemq tcpu->tcpu_pfn = &tstat_pfn; 17194732Sdavemq tcpu->tcpu_instr = (tstat_instr_t *)tstat_va; 17204732Sdavemq tcpu->tcpu_data = (tstat_data_t *)(tstat_va + TSTAT_INSTR_SIZE + 17214732Sdavemq cpu * TSTAT_DATA_SIZE); 17224732Sdavemq bzero(tcpu->tcpu_data, TSTAT_DATA_SIZE); 17234732Sdavemq tcpu->tcpu_data->tdata_cpuid = cpu; 17244732Sdavemq 17254732Sdavemq /* 17264732Sdavemq * Now that we have all of the instruction and data pages allocated, 17274732Sdavemq * make the trap table from scratch. It should be done only once 17284732Sdavemq * as it is shared by all CPUs. 17294732Sdavemq */ 17304732Sdavemq if (!tstat_traptab_initialized) 17314732Sdavemq trapstat_make_traptab(tcpu); 17324732Sdavemq 17334732Sdavemq if (tstat_options & TSTAT_OPT_TLBDATA) { 17344732Sdavemq /* 17354732Sdavemq * TLB Statistics have been specified; set up the I- and D-TLB 17364732Sdavemq * entries and corresponding TLB return entries. 17374732Sdavemq */ 17384732Sdavemq if (!tstat_traptab_initialized) { 17394732Sdavemq if (tstat_fast_tlbstat) { 17404732Sdavemq trapstat_tlbent(tcpu, TSTAT_ENT_IMMUMISS); 17414732Sdavemq trapstat_tlbent(tcpu, TSTAT_ENT_DMMUMISS); 17424732Sdavemq } else { 17434732Sdavemq trapstat_tlbent(tcpu, TSTAT_ENT_ITLBMISS); 17444732Sdavemq trapstat_tlbent(tcpu, TSTAT_ENT_DTLBMISS); 17454732Sdavemq } 17461050Sgirish } 17470Sstevel@tonic-gate } 17484732Sdavemq tstat_traptab_initialized = 1; 17494732Sdavemq #endif /* sun4v */ 17500Sstevel@tonic-gate 17510Sstevel@tonic-gate tcpu->tcpu_flags |= TSTAT_CPU_ALLOCATED; 17520Sstevel@tonic-gate 17530Sstevel@tonic-gate /* 17540Sstevel@tonic-gate * Finally, get the target CPU to load the locked pages into its TLBs. 17550Sstevel@tonic-gate */ 17560Sstevel@tonic-gate xc_one(cpu, (xcfunc_t *)trapstat_load_tlb, 0, 0); 17570Sstevel@tonic-gate } 17580Sstevel@tonic-gate 17590Sstevel@tonic-gate static void 17600Sstevel@tonic-gate trapstat_teardown(processorid_t cpu) 17610Sstevel@tonic-gate { 17620Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[cpu]; 17630Sstevel@tonic-gate #ifndef sun4v 17640Sstevel@tonic-gate int i; 17650Sstevel@tonic-gate #endif 17660Sstevel@tonic-gate caddr_t va = tcpu->tcpu_vabase; 17670Sstevel@tonic-gate 17680Sstevel@tonic-gate ASSERT(tcpu->tcpu_pfn != NULL); 17690Sstevel@tonic-gate ASSERT(tcpu->tcpu_instr != NULL); 17700Sstevel@tonic-gate ASSERT(tcpu->tcpu_data != NULL); 17710Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED); 17720Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 17730Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)); 17740Sstevel@tonic-gate ASSERT(MUTEX_HELD(&cpu_lock)); 17750Sstevel@tonic-gate ASSERT(MUTEX_HELD(&tstat_lock)); 17760Sstevel@tonic-gate 17770Sstevel@tonic-gate #ifndef sun4v 17780Sstevel@tonic-gate vmem_free(tstat_arena, tcpu->tcpu_pfn, tstat_total_pages); 17790Sstevel@tonic-gate vmem_free(tstat_arena, tcpu->tcpu_instr, TSTAT_INSTR_SIZE); 17800Sstevel@tonic-gate vmem_free(tstat_arena, tcpu->tcpu_data, tstat_data_size); 17810Sstevel@tonic-gate 17820Sstevel@tonic-gate for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) { 17832241Shuah xt_one(cpu, vtag_flushpage_tl1, (uint64_t)va, 17842241Shuah (uint64_t)ksfmmup); 17850Sstevel@tonic-gate } 17860Sstevel@tonic-gate #else 17870Sstevel@tonic-gate xt_one(cpu, vtag_unmap_perm_tl1, (uint64_t)va, KCONTEXT); 17880Sstevel@tonic-gate #endif 17890Sstevel@tonic-gate 17900Sstevel@tonic-gate tcpu->tcpu_pfn = NULL; 17910Sstevel@tonic-gate tcpu->tcpu_instr = NULL; 17920Sstevel@tonic-gate tcpu->tcpu_data = NULL; 17930Sstevel@tonic-gate tcpu->tcpu_flags &= ~TSTAT_CPU_ALLOCATED; 17940Sstevel@tonic-gate } 17950Sstevel@tonic-gate 17960Sstevel@tonic-gate static int 17970Sstevel@tonic-gate trapstat_go() 17980Sstevel@tonic-gate { 17990Sstevel@tonic-gate cpu_t *cp; 18000Sstevel@tonic-gate 18010Sstevel@tonic-gate mutex_enter(&cpu_lock); 18020Sstevel@tonic-gate mutex_enter(&tstat_lock); 18030Sstevel@tonic-gate 18040Sstevel@tonic-gate if (tstat_running) { 18050Sstevel@tonic-gate mutex_exit(&tstat_lock); 18060Sstevel@tonic-gate mutex_exit(&cpu_lock); 18070Sstevel@tonic-gate return (EBUSY); 18080Sstevel@tonic-gate } 18090Sstevel@tonic-gate 18100Sstevel@tonic-gate #ifdef sun4v 18110Sstevel@tonic-gate /* 18121050Sgirish * Allocate large page to hold interposing tables. 18130Sstevel@tonic-gate */ 18140Sstevel@tonic-gate tstat_va = contig_mem_alloc(MMU_PAGESIZE4M); 18150Sstevel@tonic-gate tstat_pfn = va_to_pfn(tstat_va); 18164204Sha137994 if (tstat_pfn == PFN_INVALID) { 18174204Sha137994 mutex_exit(&tstat_lock); 18184204Sha137994 mutex_exit(&cpu_lock); 18190Sstevel@tonic-gate return (EAGAIN); 18204204Sha137994 } 18211050Sgirish 18221050Sgirish /* 18231050Sgirish * For detailed TLB statistics, invoke CPU specific interface 18241050Sgirish * to see if it supports a low overhead interface to collect 18251050Sgirish * TSB hit statistics. If so, make set tstat_fast_tlbstat flag 18261050Sgirish * to reflect that. 18271050Sgirish */ 18281050Sgirish if (tstat_options & TSTAT_OPT_TLBDATA) { 18291050Sgirish int error; 18301050Sgirish 18314732Sdavemq tstat_fast_tlbstat = B_FALSE; 18321050Sgirish error = cpu_trapstat_conf(CPU_TSTATCONF_INIT); 18331050Sgirish if (error == 0) 18341050Sgirish tstat_fast_tlbstat = B_TRUE; 18351050Sgirish else if (error != ENOTSUP) { 18361050Sgirish contig_mem_free(tstat_va, MMU_PAGESIZE4M); 18374204Sha137994 mutex_exit(&tstat_lock); 18384204Sha137994 mutex_exit(&cpu_lock); 18391050Sgirish return (error); 18401050Sgirish } 18410Sstevel@tonic-gate } 18424732Sdavemq #endif /* sun4v */ 18430Sstevel@tonic-gate 18440Sstevel@tonic-gate /* 18450Sstevel@tonic-gate * First, perform any necessary hot patching. 18460Sstevel@tonic-gate */ 18470Sstevel@tonic-gate trapstat_hotpatch(); 18480Sstevel@tonic-gate 18490Sstevel@tonic-gate /* 18500Sstevel@tonic-gate * Allocate the resources we'll need to measure probe effect. 18510Sstevel@tonic-gate */ 18520Sstevel@tonic-gate trapstat_probe_alloc(); 18530Sstevel@tonic-gate 18540Sstevel@tonic-gate 18550Sstevel@tonic-gate cp = cpu_list; 18560Sstevel@tonic-gate do { 18570Sstevel@tonic-gate if (!(tstat_percpu[cp->cpu_id].tcpu_flags & TSTAT_CPU_SELECTED)) 18580Sstevel@tonic-gate continue; 18590Sstevel@tonic-gate 18600Sstevel@tonic-gate trapstat_setup(cp->cpu_id); 18610Sstevel@tonic-gate 18620Sstevel@tonic-gate /* 18630Sstevel@tonic-gate * Note that due to trapstat_probe()'s use of global data, 18640Sstevel@tonic-gate * we determine the probe effect on each CPU serially instead 18650Sstevel@tonic-gate * of in parallel with an xc_all(). 18660Sstevel@tonic-gate */ 18670Sstevel@tonic-gate xc_one(cp->cpu_id, (xcfunc_t *)trapstat_probe, 0, 0); 18680Sstevel@tonic-gate } while ((cp = cp->cpu_next) != cpu_list); 18690Sstevel@tonic-gate 18700Sstevel@tonic-gate xc_all((xcfunc_t *)trapstat_enable, 0, 0); 18710Sstevel@tonic-gate 18720Sstevel@tonic-gate trapstat_probe_free(); 18730Sstevel@tonic-gate tstat_running = 1; 18740Sstevel@tonic-gate mutex_exit(&tstat_lock); 18750Sstevel@tonic-gate mutex_exit(&cpu_lock); 18760Sstevel@tonic-gate 18770Sstevel@tonic-gate return (0); 18780Sstevel@tonic-gate } 18790Sstevel@tonic-gate 18800Sstevel@tonic-gate static int 18810Sstevel@tonic-gate trapstat_stop() 18820Sstevel@tonic-gate { 18830Sstevel@tonic-gate int i; 18840Sstevel@tonic-gate 18850Sstevel@tonic-gate mutex_enter(&cpu_lock); 18860Sstevel@tonic-gate mutex_enter(&tstat_lock); 18870Sstevel@tonic-gate if (!tstat_running) { 18880Sstevel@tonic-gate mutex_exit(&tstat_lock); 18890Sstevel@tonic-gate mutex_exit(&cpu_lock); 18900Sstevel@tonic-gate return (ENXIO); 18910Sstevel@tonic-gate } 18920Sstevel@tonic-gate 18930Sstevel@tonic-gate xc_all((xcfunc_t *)trapstat_disable, 0, 0); 18940Sstevel@tonic-gate 18950Sstevel@tonic-gate for (i = 0; i <= max_cpuid; i++) { 18960Sstevel@tonic-gate if (tstat_percpu[i].tcpu_flags & TSTAT_CPU_ALLOCATED) 18970Sstevel@tonic-gate trapstat_teardown(i); 18980Sstevel@tonic-gate } 18990Sstevel@tonic-gate 19000Sstevel@tonic-gate #ifdef sun4v 19014732Sdavemq tstat_traptab_initialized = 0; 19021050Sgirish if (tstat_options & TSTAT_OPT_TLBDATA) 19031050Sgirish cpu_trapstat_conf(CPU_TSTATCONF_FINI); 19040Sstevel@tonic-gate contig_mem_free(tstat_va, MMU_PAGESIZE4M); 19050Sstevel@tonic-gate #endif 19060Sstevel@tonic-gate trapstat_hotpatch(); 19070Sstevel@tonic-gate tstat_running = 0; 19080Sstevel@tonic-gate mutex_exit(&tstat_lock); 19090Sstevel@tonic-gate mutex_exit(&cpu_lock); 19100Sstevel@tonic-gate 19110Sstevel@tonic-gate return (0); 19120Sstevel@tonic-gate } 19130Sstevel@tonic-gate 19140Sstevel@tonic-gate /* 19150Sstevel@tonic-gate * This is trapstat's DR CPU configuration callback. It's called (with 19160Sstevel@tonic-gate * cpu_lock held) to unconfigure a newly powered-off CPU, or to configure a 19170Sstevel@tonic-gate * powered-off CPU that is to be brought into the system. We need only take 19180Sstevel@tonic-gate * action in the unconfigure case: because a powered-off CPU will have its 19190Sstevel@tonic-gate * trap table restored to KERNELBASE if it is ever powered back on, we must 19200Sstevel@tonic-gate * update the flags to reflect that trapstat is no longer enabled on the 19210Sstevel@tonic-gate * powered-off CPU. Note that this means that a TSTAT_CPU_ENABLED CPU that 19220Sstevel@tonic-gate * is unconfigured/powered off and later powered back on/reconfigured will 19230Sstevel@tonic-gate * _not_ be re-TSTAT_CPU_ENABLED. 19240Sstevel@tonic-gate */ 19250Sstevel@tonic-gate static int 19260Sstevel@tonic-gate trapstat_cpu_setup(cpu_setup_t what, processorid_t cpu) 19270Sstevel@tonic-gate { 19280Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[cpu]; 19290Sstevel@tonic-gate 19300Sstevel@tonic-gate ASSERT(MUTEX_HELD(&cpu_lock)); 19310Sstevel@tonic-gate mutex_enter(&tstat_lock); 19320Sstevel@tonic-gate 19330Sstevel@tonic-gate if (!tstat_running) { 19340Sstevel@tonic-gate mutex_exit(&tstat_lock); 19350Sstevel@tonic-gate return (0); 19360Sstevel@tonic-gate } 19370Sstevel@tonic-gate 19380Sstevel@tonic-gate switch (what) { 19390Sstevel@tonic-gate case CPU_CONFIG: 19400Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)); 19410Sstevel@tonic-gate break; 19420Sstevel@tonic-gate 19430Sstevel@tonic-gate case CPU_UNCONFIG: 19441991Sheppo if (tcpu->tcpu_flags & TSTAT_CPU_ENABLED) { 19450Sstevel@tonic-gate tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED; 19461991Sheppo #ifdef sun4v 19471991Sheppo /* 19481991Sheppo * A power-off, causes the cpu mondo queues to be 19491991Sheppo * unconfigured on sun4v. Since we can't teardown 19501991Sheppo * trapstat's mappings on the cpu that is going away, 19511991Sheppo * we simply mark it as not allocated. This will 19521991Sheppo * prevent a teardown on a cpu with the same cpu id 19531991Sheppo * that might have been added while trapstat is running. 19541991Sheppo */ 19551991Sheppo if (tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED) { 19561991Sheppo tcpu->tcpu_pfn = NULL; 19571991Sheppo tcpu->tcpu_instr = NULL; 19581991Sheppo tcpu->tcpu_data = NULL; 19591991Sheppo tcpu->tcpu_flags &= ~TSTAT_CPU_ALLOCATED; 19601991Sheppo } 19611991Sheppo #endif 19621991Sheppo } 19630Sstevel@tonic-gate break; 19640Sstevel@tonic-gate 19650Sstevel@tonic-gate default: 19660Sstevel@tonic-gate break; 19670Sstevel@tonic-gate } 19680Sstevel@tonic-gate 19690Sstevel@tonic-gate mutex_exit(&tstat_lock); 19700Sstevel@tonic-gate return (0); 19710Sstevel@tonic-gate } 19720Sstevel@tonic-gate 19730Sstevel@tonic-gate /* 19740Sstevel@tonic-gate * This is called before a CPR suspend and after a CPR resume. We don't have 19750Sstevel@tonic-gate * anything to do before a suspend, but after a restart we must restore the 19760Sstevel@tonic-gate * trap table to be our interposing trap table. However, we don't actually 19770Sstevel@tonic-gate * know whether or not the CPUs have been powered off -- this routine may be 19780Sstevel@tonic-gate * called while restoring from a failed CPR suspend. We thus run through each 19790Sstevel@tonic-gate * TSTAT_CPU_ENABLED CPU, and explicitly destroy and reestablish its 19800Sstevel@tonic-gate * interposing trap table. This assures that our state is correct regardless 19810Sstevel@tonic-gate * of whether or not the CPU has been newly powered on. 19820Sstevel@tonic-gate */ 19830Sstevel@tonic-gate /*ARGSUSED*/ 19840Sstevel@tonic-gate static boolean_t 19850Sstevel@tonic-gate trapstat_cpr(void *arg, int code) 19860Sstevel@tonic-gate { 19870Sstevel@tonic-gate cpu_t *cp; 19880Sstevel@tonic-gate 19890Sstevel@tonic-gate if (code == CB_CODE_CPR_CHKPT) 19900Sstevel@tonic-gate return (B_TRUE); 19910Sstevel@tonic-gate 19920Sstevel@tonic-gate ASSERT(code == CB_CODE_CPR_RESUME); 19930Sstevel@tonic-gate 19940Sstevel@tonic-gate mutex_enter(&cpu_lock); 19950Sstevel@tonic-gate mutex_enter(&tstat_lock); 19960Sstevel@tonic-gate 19970Sstevel@tonic-gate if (!tstat_running) { 19980Sstevel@tonic-gate mutex_exit(&tstat_lock); 19990Sstevel@tonic-gate mutex_exit(&cpu_lock); 20000Sstevel@tonic-gate return (B_TRUE); 20010Sstevel@tonic-gate } 20020Sstevel@tonic-gate 20030Sstevel@tonic-gate cp = cpu_list; 20040Sstevel@tonic-gate do { 20050Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[cp->cpu_id]; 20060Sstevel@tonic-gate 20070Sstevel@tonic-gate if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)) 20080Sstevel@tonic-gate continue; 20090Sstevel@tonic-gate 20100Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED); 20110Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 20120Sstevel@tonic-gate 20130Sstevel@tonic-gate xc_one(cp->cpu_id, (xcfunc_t *)trapstat_disable, 0, 0); 20140Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)); 20150Sstevel@tonic-gate 20160Sstevel@tonic-gate /* 20170Sstevel@tonic-gate * Preserve this CPU's data in tstat_buffer and rip down its 20180Sstevel@tonic-gate * interposing trap table. 20190Sstevel@tonic-gate */ 20200Sstevel@tonic-gate bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size); 20210Sstevel@tonic-gate trapstat_teardown(cp->cpu_id); 20220Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED)); 20230Sstevel@tonic-gate 20240Sstevel@tonic-gate /* 20250Sstevel@tonic-gate * Reestablish the interposing trap table and restore the old 20260Sstevel@tonic-gate * data. 20270Sstevel@tonic-gate */ 20280Sstevel@tonic-gate trapstat_setup(cp->cpu_id); 20290Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 20300Sstevel@tonic-gate bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size); 20310Sstevel@tonic-gate 20320Sstevel@tonic-gate xc_one(cp->cpu_id, (xcfunc_t *)trapstat_enable, 0, 0); 20330Sstevel@tonic-gate } while ((cp = cp->cpu_next) != cpu_list); 20340Sstevel@tonic-gate 20350Sstevel@tonic-gate mutex_exit(&tstat_lock); 20360Sstevel@tonic-gate mutex_exit(&cpu_lock); 20370Sstevel@tonic-gate 20380Sstevel@tonic-gate return (B_TRUE); 20390Sstevel@tonic-gate } 20400Sstevel@tonic-gate 20410Sstevel@tonic-gate /*ARGSUSED*/ 20420Sstevel@tonic-gate static int 20430Sstevel@tonic-gate trapstat_open(dev_t *devp, int flag, int otyp, cred_t *cred_p) 20440Sstevel@tonic-gate { 20450Sstevel@tonic-gate int i; 20460Sstevel@tonic-gate 20470Sstevel@tonic-gate mutex_enter(&cpu_lock); 20480Sstevel@tonic-gate mutex_enter(&tstat_lock); 20490Sstevel@tonic-gate if (tstat_open != 0) { 20500Sstevel@tonic-gate mutex_exit(&tstat_lock); 20510Sstevel@tonic-gate mutex_exit(&cpu_lock); 20520Sstevel@tonic-gate return (EBUSY); 20530Sstevel@tonic-gate } 20540Sstevel@tonic-gate 20550Sstevel@tonic-gate /* 20560Sstevel@tonic-gate * Register this in open() rather than in attach() to prevent deadlock 20570Sstevel@tonic-gate * with DR code. During attach, I/O device tree locks are grabbed 20580Sstevel@tonic-gate * before trapstat_attach() is invoked - registering in attach 20590Sstevel@tonic-gate * will result in the lock order: device tree lock, cpu_lock. 20600Sstevel@tonic-gate * DR code however requires that cpu_lock be acquired before 20610Sstevel@tonic-gate * device tree locks. 20620Sstevel@tonic-gate */ 20630Sstevel@tonic-gate ASSERT(!tstat_running); 20640Sstevel@tonic-gate register_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL); 20650Sstevel@tonic-gate 20660Sstevel@tonic-gate /* 20670Sstevel@tonic-gate * Clear all options. And until specific CPUs are specified, we'll 20680Sstevel@tonic-gate * mark all CPUs as selected. 20690Sstevel@tonic-gate */ 20700Sstevel@tonic-gate tstat_options = 0; 20710Sstevel@tonic-gate 20720Sstevel@tonic-gate for (i = 0; i <= max_cpuid; i++) 20730Sstevel@tonic-gate tstat_percpu[i].tcpu_flags |= TSTAT_CPU_SELECTED; 20740Sstevel@tonic-gate 20750Sstevel@tonic-gate /* 20760Sstevel@tonic-gate * By default, all traps at TL=0 are enabled. Traps at TL>0 must 20770Sstevel@tonic-gate * be disabled. 20780Sstevel@tonic-gate */ 20790Sstevel@tonic-gate for (i = 0; i < TSTAT_TOTAL_NENT; i++) 20800Sstevel@tonic-gate tstat_enabled[i] = i < TSTAT_NENT ? 1 : 0; 20810Sstevel@tonic-gate 20820Sstevel@tonic-gate tstat_open = 1; 20830Sstevel@tonic-gate mutex_exit(&tstat_lock); 20840Sstevel@tonic-gate mutex_exit(&cpu_lock); 20850Sstevel@tonic-gate 20860Sstevel@tonic-gate return (0); 20870Sstevel@tonic-gate } 20880Sstevel@tonic-gate 20890Sstevel@tonic-gate /*ARGSUSED*/ 20900Sstevel@tonic-gate static int 20910Sstevel@tonic-gate trapstat_close(dev_t dev, int flag, int otyp, cred_t *cred_p) 20920Sstevel@tonic-gate { 20930Sstevel@tonic-gate (void) trapstat_stop(); 20940Sstevel@tonic-gate 20950Sstevel@tonic-gate ASSERT(!tstat_running); 20960Sstevel@tonic-gate 20970Sstevel@tonic-gate mutex_enter(&cpu_lock); 20980Sstevel@tonic-gate unregister_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL); 20990Sstevel@tonic-gate mutex_exit(&cpu_lock); 21000Sstevel@tonic-gate 21010Sstevel@tonic-gate tstat_open = 0; 21020Sstevel@tonic-gate return (DDI_SUCCESS); 21030Sstevel@tonic-gate } 21040Sstevel@tonic-gate 21050Sstevel@tonic-gate static int 21060Sstevel@tonic-gate trapstat_option(int option) 21070Sstevel@tonic-gate { 21080Sstevel@tonic-gate mutex_enter(&tstat_lock); 21090Sstevel@tonic-gate 21100Sstevel@tonic-gate if (tstat_running) { 21110Sstevel@tonic-gate mutex_exit(&tstat_lock); 21120Sstevel@tonic-gate return (EBUSY); 21130Sstevel@tonic-gate } 21140Sstevel@tonic-gate 21150Sstevel@tonic-gate tstat_options |= option; 21160Sstevel@tonic-gate mutex_exit(&tstat_lock); 21170Sstevel@tonic-gate 21180Sstevel@tonic-gate return (0); 21190Sstevel@tonic-gate } 21200Sstevel@tonic-gate 21210Sstevel@tonic-gate /*ARGSUSED*/ 21220Sstevel@tonic-gate static int 21230Sstevel@tonic-gate trapstat_ioctl(dev_t dev, int cmd, intptr_t arg, int md, cred_t *crd, int *rval) 21240Sstevel@tonic-gate { 21250Sstevel@tonic-gate int i, j, out; 21260Sstevel@tonic-gate size_t dsize; 21270Sstevel@tonic-gate 21280Sstevel@tonic-gate switch (cmd) { 21290Sstevel@tonic-gate case TSTATIOC_GO: 21300Sstevel@tonic-gate return (trapstat_go()); 21310Sstevel@tonic-gate 21320Sstevel@tonic-gate case TSTATIOC_NOGO: 21330Sstevel@tonic-gate return (trapstat_option(TSTAT_OPT_NOGO)); 21340Sstevel@tonic-gate 21350Sstevel@tonic-gate case TSTATIOC_STOP: 21360Sstevel@tonic-gate return (trapstat_stop()); 21370Sstevel@tonic-gate 21380Sstevel@tonic-gate case TSTATIOC_CPU: 21390Sstevel@tonic-gate if (arg < 0 || arg > max_cpuid) 21400Sstevel@tonic-gate return (EINVAL); 21410Sstevel@tonic-gate /*FALLTHROUGH*/ 21420Sstevel@tonic-gate 21430Sstevel@tonic-gate case TSTATIOC_NOCPU: 21440Sstevel@tonic-gate mutex_enter(&tstat_lock); 21450Sstevel@tonic-gate 21460Sstevel@tonic-gate if (tstat_running) { 21470Sstevel@tonic-gate mutex_exit(&tstat_lock); 21480Sstevel@tonic-gate return (EBUSY); 21490Sstevel@tonic-gate } 21500Sstevel@tonic-gate 21510Sstevel@tonic-gate /* 21520Sstevel@tonic-gate * If this is the first CPU to be specified (or if we are 21530Sstevel@tonic-gate * being asked to explicitly de-select CPUs), disable all CPUs. 21540Sstevel@tonic-gate */ 21550Sstevel@tonic-gate if (!(tstat_options & TSTAT_OPT_CPU) || cmd == TSTATIOC_NOCPU) { 21560Sstevel@tonic-gate tstat_options |= TSTAT_OPT_CPU; 21570Sstevel@tonic-gate 21580Sstevel@tonic-gate for (i = 0; i <= max_cpuid; i++) { 21590Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[i]; 21600Sstevel@tonic-gate 21610Sstevel@tonic-gate ASSERT(cmd == TSTATIOC_NOCPU || 21620Sstevel@tonic-gate (tcpu->tcpu_flags & TSTAT_CPU_SELECTED)); 21630Sstevel@tonic-gate tcpu->tcpu_flags &= ~TSTAT_CPU_SELECTED; 21640Sstevel@tonic-gate } 21650Sstevel@tonic-gate } 21660Sstevel@tonic-gate 21670Sstevel@tonic-gate if (cmd == TSTATIOC_CPU) 21680Sstevel@tonic-gate tstat_percpu[arg].tcpu_flags |= TSTAT_CPU_SELECTED; 21690Sstevel@tonic-gate 21700Sstevel@tonic-gate mutex_exit(&tstat_lock); 21710Sstevel@tonic-gate 21720Sstevel@tonic-gate return (0); 21730Sstevel@tonic-gate 21740Sstevel@tonic-gate case TSTATIOC_ENTRY: 21750Sstevel@tonic-gate mutex_enter(&tstat_lock); 21760Sstevel@tonic-gate 21770Sstevel@tonic-gate if (tstat_running) { 21780Sstevel@tonic-gate mutex_exit(&tstat_lock); 21790Sstevel@tonic-gate return (EBUSY); 21800Sstevel@tonic-gate } 21810Sstevel@tonic-gate 21820Sstevel@tonic-gate if (arg >= TSTAT_NENT || arg < 0) { 21830Sstevel@tonic-gate mutex_exit(&tstat_lock); 21840Sstevel@tonic-gate return (EINVAL); 21850Sstevel@tonic-gate } 21860Sstevel@tonic-gate 21870Sstevel@tonic-gate if (!(tstat_options & TSTAT_OPT_ENTRY)) { 21880Sstevel@tonic-gate /* 21890Sstevel@tonic-gate * If this is the first entry that we are explicitly 21900Sstevel@tonic-gate * enabling, explicitly disable every TL=0 entry. 21910Sstevel@tonic-gate */ 21920Sstevel@tonic-gate for (i = 0; i < TSTAT_NENT; i++) 21930Sstevel@tonic-gate tstat_enabled[i] = 0; 21940Sstevel@tonic-gate 21950Sstevel@tonic-gate tstat_options |= TSTAT_OPT_ENTRY; 21960Sstevel@tonic-gate } 21970Sstevel@tonic-gate 21980Sstevel@tonic-gate tstat_enabled[arg] = 1; 21990Sstevel@tonic-gate mutex_exit(&tstat_lock); 22000Sstevel@tonic-gate return (0); 22010Sstevel@tonic-gate 22020Sstevel@tonic-gate case TSTATIOC_NOENTRY: 22030Sstevel@tonic-gate mutex_enter(&tstat_lock); 22040Sstevel@tonic-gate 22050Sstevel@tonic-gate if (tstat_running) { 22060Sstevel@tonic-gate mutex_exit(&tstat_lock); 22070Sstevel@tonic-gate return (EBUSY); 22080Sstevel@tonic-gate } 22090Sstevel@tonic-gate 22100Sstevel@tonic-gate for (i = 0; i < TSTAT_NENT; i++) 22110Sstevel@tonic-gate tstat_enabled[i] = 0; 22120Sstevel@tonic-gate 22130Sstevel@tonic-gate mutex_exit(&tstat_lock); 22140Sstevel@tonic-gate return (0); 22150Sstevel@tonic-gate 22160Sstevel@tonic-gate case TSTATIOC_READ: 22170Sstevel@tonic-gate mutex_enter(&tstat_lock); 22180Sstevel@tonic-gate 22190Sstevel@tonic-gate if (tstat_options & TSTAT_OPT_TLBDATA) { 22200Sstevel@tonic-gate dsize = tstat_data_t_exported_size; 22210Sstevel@tonic-gate } else { 22220Sstevel@tonic-gate dsize = sizeof (tstat_data_t); 22230Sstevel@tonic-gate } 22240Sstevel@tonic-gate 22250Sstevel@tonic-gate for (i = 0, out = 0; i <= max_cpuid; i++) { 22260Sstevel@tonic-gate tstat_percpu_t *tcpu = &tstat_percpu[i]; 22270Sstevel@tonic-gate 22280Sstevel@tonic-gate if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)) 22290Sstevel@tonic-gate continue; 22300Sstevel@tonic-gate 22310Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED); 22320Sstevel@tonic-gate ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED); 22330Sstevel@tonic-gate 22340Sstevel@tonic-gate tstat_buffer->tdata_cpuid = -1; 22350Sstevel@tonic-gate xc_one(i, (xcfunc_t *)trapstat_snapshot, 0, 0); 22360Sstevel@tonic-gate 22370Sstevel@tonic-gate if (tstat_buffer->tdata_cpuid == -1) { 22380Sstevel@tonic-gate /* 22390Sstevel@tonic-gate * This CPU is not currently responding to 22400Sstevel@tonic-gate * cross calls; we have caught it while it is 22410Sstevel@tonic-gate * being unconfigured. We'll drop tstat_lock 22420Sstevel@tonic-gate * and pick up and drop cpu_lock. By the 22430Sstevel@tonic-gate * time we acquire cpu_lock, the DR operation 22440Sstevel@tonic-gate * will appear consistent and we can assert 22450Sstevel@tonic-gate * that trapstat_cpu_setup() has cleared 22460Sstevel@tonic-gate * TSTAT_CPU_ENABLED. 22470Sstevel@tonic-gate */ 22480Sstevel@tonic-gate mutex_exit(&tstat_lock); 22490Sstevel@tonic-gate mutex_enter(&cpu_lock); 22500Sstevel@tonic-gate mutex_exit(&cpu_lock); 22510Sstevel@tonic-gate mutex_enter(&tstat_lock); 22520Sstevel@tonic-gate ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED)); 22530Sstevel@tonic-gate continue; 22540Sstevel@tonic-gate } 22550Sstevel@tonic-gate 22560Sstevel@tonic-gate /* 22570Sstevel@tonic-gate * Need to compensate for the difference between page 22580Sstevel@tonic-gate * sizes exported to users and page sizes available 22590Sstevel@tonic-gate * within the kernel. 22600Sstevel@tonic-gate */ 22610Sstevel@tonic-gate if ((tstat_options & TSTAT_OPT_TLBDATA) && 22620Sstevel@tonic-gate (tstat_pgszs != tstat_user_pgszs)) { 22630Sstevel@tonic-gate tstat_pgszdata_t *tp; 22640Sstevel@tonic-gate uint_t szc; 22650Sstevel@tonic-gate 22660Sstevel@tonic-gate tp = &tstat_buffer->tdata_pgsz[0]; 22670Sstevel@tonic-gate for (j = 0; j < tstat_user_pgszs; j++) { 22680Sstevel@tonic-gate if ((szc = USERSZC_2_SZC(j)) != j) { 22690Sstevel@tonic-gate bcopy(&tp[szc], &tp[j], 22700Sstevel@tonic-gate sizeof (tstat_pgszdata_t)); 22710Sstevel@tonic-gate } 22720Sstevel@tonic-gate } 22730Sstevel@tonic-gate } 22740Sstevel@tonic-gate 22750Sstevel@tonic-gate if (copyout(tstat_buffer, (void *)arg, dsize) != 0) { 22760Sstevel@tonic-gate mutex_exit(&tstat_lock); 22770Sstevel@tonic-gate return (EFAULT); 22780Sstevel@tonic-gate } 22790Sstevel@tonic-gate 22800Sstevel@tonic-gate out++; 22810Sstevel@tonic-gate arg += dsize; 22820Sstevel@tonic-gate } 22830Sstevel@tonic-gate 22840Sstevel@tonic-gate if (out != max_cpuid + 1) { 22850Sstevel@tonic-gate processorid_t cpuid = -1; 22860Sstevel@tonic-gate arg += offsetof(tstat_data_t, tdata_cpuid); 22870Sstevel@tonic-gate 22880Sstevel@tonic-gate if (copyout(&cpuid, (void *)arg, sizeof (cpuid)) != 0) { 22890Sstevel@tonic-gate mutex_exit(&tstat_lock); 22900Sstevel@tonic-gate return (EFAULT); 22910Sstevel@tonic-gate } 22920Sstevel@tonic-gate } 22930Sstevel@tonic-gate 22940Sstevel@tonic-gate mutex_exit(&tstat_lock); 22950Sstevel@tonic-gate 22960Sstevel@tonic-gate return (0); 22970Sstevel@tonic-gate 22980Sstevel@tonic-gate case TSTATIOC_TLBDATA: 22990Sstevel@tonic-gate return (trapstat_option(TSTAT_OPT_TLBDATA)); 23000Sstevel@tonic-gate 23010Sstevel@tonic-gate default: 23020Sstevel@tonic-gate break; 23030Sstevel@tonic-gate } 23040Sstevel@tonic-gate 23050Sstevel@tonic-gate return (ENOTTY); 23060Sstevel@tonic-gate } 23070Sstevel@tonic-gate 23080Sstevel@tonic-gate /*ARGSUSED*/ 23090Sstevel@tonic-gate static int 23100Sstevel@tonic-gate trapstat_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result) 23110Sstevel@tonic-gate { 23120Sstevel@tonic-gate int error; 23130Sstevel@tonic-gate 23140Sstevel@tonic-gate switch (infocmd) { 23150Sstevel@tonic-gate case DDI_INFO_DEVT2DEVINFO: 23160Sstevel@tonic-gate *result = (void *)tstat_devi; 23170Sstevel@tonic-gate error = DDI_SUCCESS; 23180Sstevel@tonic-gate break; 23190Sstevel@tonic-gate case DDI_INFO_DEVT2INSTANCE: 23200Sstevel@tonic-gate *result = (void *)0; 23210Sstevel@tonic-gate error = DDI_SUCCESS; 23220Sstevel@tonic-gate break; 23230Sstevel@tonic-gate default: 23240Sstevel@tonic-gate error = DDI_FAILURE; 23250Sstevel@tonic-gate } 23260Sstevel@tonic-gate return (error); 23270Sstevel@tonic-gate } 23280Sstevel@tonic-gate 23290Sstevel@tonic-gate static int 23300Sstevel@tonic-gate trapstat_attach(dev_info_t *devi, ddi_attach_cmd_t cmd) 23310Sstevel@tonic-gate { 23320Sstevel@tonic-gate switch (cmd) { 23330Sstevel@tonic-gate case DDI_ATTACH: 23340Sstevel@tonic-gate break; 23350Sstevel@tonic-gate 23360Sstevel@tonic-gate case DDI_RESUME: 23370Sstevel@tonic-gate return (DDI_SUCCESS); 23380Sstevel@tonic-gate 23390Sstevel@tonic-gate default: 23400Sstevel@tonic-gate return (DDI_FAILURE); 23410Sstevel@tonic-gate } 23420Sstevel@tonic-gate 23430Sstevel@tonic-gate if (ddi_create_minor_node(devi, "trapstat", S_IFCHR, 23440Sstevel@tonic-gate 0, DDI_PSEUDO, 0) == DDI_FAILURE) { 23450Sstevel@tonic-gate ddi_remove_minor_node(devi, NULL); 23460Sstevel@tonic-gate return (DDI_FAILURE); 23470Sstevel@tonic-gate } 23480Sstevel@tonic-gate 23490Sstevel@tonic-gate ddi_report_dev(devi); 23500Sstevel@tonic-gate tstat_devi = devi; 23510Sstevel@tonic-gate 23520Sstevel@tonic-gate tstat_pgszs = page_num_pagesizes(); 2353*5349Skchow tstat_user_pgszs = page_num_user_pagesizes(0); 23540Sstevel@tonic-gate tstat_data_t_size = sizeof (tstat_data_t) + 23550Sstevel@tonic-gate (tstat_pgszs - 1) * sizeof (tstat_pgszdata_t); 23560Sstevel@tonic-gate tstat_data_t_exported_size = sizeof (tstat_data_t) + 23570Sstevel@tonic-gate (tstat_user_pgszs - 1) * sizeof (tstat_pgszdata_t); 23580Sstevel@tonic-gate #ifndef sun4v 23590Sstevel@tonic-gate tstat_data_pages = (tstat_data_t_size >> MMU_PAGESHIFT) + 1; 23600Sstevel@tonic-gate tstat_total_pages = TSTAT_INSTR_PAGES + tstat_data_pages; 23610Sstevel@tonic-gate tstat_data_size = tstat_data_pages * MMU_PAGESIZE; 23620Sstevel@tonic-gate tstat_total_size = TSTAT_INSTR_SIZE + tstat_data_size; 23630Sstevel@tonic-gate #else 23644732Sdavemq ASSERT(tstat_data_t_size <= TSTAT_DATA_SIZE); 23650Sstevel@tonic-gate #endif 23660Sstevel@tonic-gate 23670Sstevel@tonic-gate tstat_percpu = kmem_zalloc((max_cpuid + 1) * 23680Sstevel@tonic-gate sizeof (tstat_percpu_t), KM_SLEEP); 23690Sstevel@tonic-gate 23700Sstevel@tonic-gate /* 23710Sstevel@tonic-gate * Create our own arena backed by segkmem to assure a source of 23720Sstevel@tonic-gate * MMU_PAGESIZE-aligned allocations. We allocate out of the 23730Sstevel@tonic-gate * heap32_arena to assure that we can address the allocated memory with 23740Sstevel@tonic-gate * a single sethi/simm13 pair in the interposing trap table entries. 23750Sstevel@tonic-gate */ 23760Sstevel@tonic-gate tstat_arena = vmem_create("trapstat", NULL, 0, MMU_PAGESIZE, 23770Sstevel@tonic-gate segkmem_alloc_permanent, segkmem_free, heap32_arena, 0, VM_SLEEP); 23780Sstevel@tonic-gate 23790Sstevel@tonic-gate tstat_enabled = kmem_alloc(TSTAT_TOTAL_NENT * sizeof (int), KM_SLEEP); 23800Sstevel@tonic-gate tstat_buffer = kmem_alloc(tstat_data_t_size, KM_SLEEP); 23810Sstevel@tonic-gate 23820Sstevel@tonic-gate /* 23830Sstevel@tonic-gate * CB_CL_CPR_POST_USER is the class that executes from cpr_resume() 23840Sstevel@tonic-gate * after user threads can be restarted. By executing in this class, 23850Sstevel@tonic-gate * we are assured of the availability of system services needed to 23860Sstevel@tonic-gate * resume trapstat (specifically, we are assured that all CPUs are 23870Sstevel@tonic-gate * restarted and responding to cross calls). 23880Sstevel@tonic-gate */ 23890Sstevel@tonic-gate tstat_cprcb = 23900Sstevel@tonic-gate callb_add(trapstat_cpr, NULL, CB_CL_CPR_POST_USER, "trapstat"); 23910Sstevel@tonic-gate 23920Sstevel@tonic-gate return (DDI_SUCCESS); 23930Sstevel@tonic-gate } 23940Sstevel@tonic-gate 23950Sstevel@tonic-gate static int 23960Sstevel@tonic-gate trapstat_detach(dev_info_t *devi, ddi_detach_cmd_t cmd) 23970Sstevel@tonic-gate { 23980Sstevel@tonic-gate int rval; 23990Sstevel@tonic-gate 24000Sstevel@tonic-gate ASSERT(devi == tstat_devi); 24010Sstevel@tonic-gate 24020Sstevel@tonic-gate switch (cmd) { 24030Sstevel@tonic-gate case DDI_DETACH: 24040Sstevel@tonic-gate break; 24050Sstevel@tonic-gate 24060Sstevel@tonic-gate case DDI_SUSPEND: 24070Sstevel@tonic-gate return (DDI_SUCCESS); 24080Sstevel@tonic-gate 24090Sstevel@tonic-gate default: 24100Sstevel@tonic-gate return (DDI_FAILURE); 24110Sstevel@tonic-gate } 24120Sstevel@tonic-gate 24130Sstevel@tonic-gate ASSERT(!tstat_running); 24140Sstevel@tonic-gate 24150Sstevel@tonic-gate rval = callb_delete(tstat_cprcb); 24160Sstevel@tonic-gate ASSERT(rval == 0); 24170Sstevel@tonic-gate 24180Sstevel@tonic-gate kmem_free(tstat_buffer, tstat_data_t_size); 24190Sstevel@tonic-gate kmem_free(tstat_enabled, TSTAT_TOTAL_NENT * sizeof (int)); 24200Sstevel@tonic-gate vmem_destroy(tstat_arena); 24210Sstevel@tonic-gate kmem_free(tstat_percpu, (max_cpuid + 1) * sizeof (tstat_percpu_t)); 24220Sstevel@tonic-gate ddi_remove_minor_node(devi, NULL); 24230Sstevel@tonic-gate 24240Sstevel@tonic-gate return (DDI_SUCCESS); 24250Sstevel@tonic-gate } 24260Sstevel@tonic-gate 24270Sstevel@tonic-gate /* 24280Sstevel@tonic-gate * Configuration data structures 24290Sstevel@tonic-gate */ 24300Sstevel@tonic-gate static struct cb_ops trapstat_cb_ops = { 24310Sstevel@tonic-gate trapstat_open, /* open */ 24320Sstevel@tonic-gate trapstat_close, /* close */ 24330Sstevel@tonic-gate nulldev, /* strategy */ 24340Sstevel@tonic-gate nulldev, /* print */ 24350Sstevel@tonic-gate nodev, /* dump */ 24360Sstevel@tonic-gate nodev, /* read */ 24370Sstevel@tonic-gate nodev, /* write */ 24380Sstevel@tonic-gate trapstat_ioctl, /* ioctl */ 24390Sstevel@tonic-gate nodev, /* devmap */ 24400Sstevel@tonic-gate nodev, /* mmap */ 24410Sstevel@tonic-gate nodev, /* segmap */ 24420Sstevel@tonic-gate nochpoll, /* poll */ 24430Sstevel@tonic-gate ddi_prop_op, /* cb_prop_op */ 24440Sstevel@tonic-gate 0, /* streamtab */ 24450Sstevel@tonic-gate D_MP | D_NEW /* Driver compatibility flag */ 24460Sstevel@tonic-gate }; 24470Sstevel@tonic-gate 24480Sstevel@tonic-gate static struct dev_ops trapstat_ops = { 24490Sstevel@tonic-gate DEVO_REV, /* devo_rev, */ 24500Sstevel@tonic-gate 0, /* refcnt */ 24510Sstevel@tonic-gate trapstat_info, /* getinfo */ 24520Sstevel@tonic-gate nulldev, /* identify */ 24530Sstevel@tonic-gate nulldev, /* probe */ 24540Sstevel@tonic-gate trapstat_attach, /* attach */ 24550Sstevel@tonic-gate trapstat_detach, /* detach */ 24560Sstevel@tonic-gate nulldev, /* reset */ 24570Sstevel@tonic-gate &trapstat_cb_ops, /* cb_ops */ 24580Sstevel@tonic-gate (struct bus_ops *)0, /* bus_ops */ 24590Sstevel@tonic-gate }; 24600Sstevel@tonic-gate 24610Sstevel@tonic-gate static struct modldrv modldrv = { 24620Sstevel@tonic-gate &mod_driverops, /* Type of module. This one is a driver */ 24630Sstevel@tonic-gate "Trap Statistics", /* name of module */ 24640Sstevel@tonic-gate &trapstat_ops, /* driver ops */ 24650Sstevel@tonic-gate }; 24660Sstevel@tonic-gate 24670Sstevel@tonic-gate static struct modlinkage modlinkage = { 24680Sstevel@tonic-gate MODREV_1, (void *)&modldrv, NULL 24690Sstevel@tonic-gate }; 24700Sstevel@tonic-gate 24710Sstevel@tonic-gate int 24720Sstevel@tonic-gate _init(void) 24730Sstevel@tonic-gate { 24740Sstevel@tonic-gate return (mod_install(&modlinkage)); 24750Sstevel@tonic-gate } 24760Sstevel@tonic-gate 24770Sstevel@tonic-gate int 24780Sstevel@tonic-gate _fini(void) 24790Sstevel@tonic-gate { 24800Sstevel@tonic-gate return (mod_remove(&modlinkage)); 24810Sstevel@tonic-gate } 24820Sstevel@tonic-gate 24830Sstevel@tonic-gate int 24840Sstevel@tonic-gate _info(struct modinfo *modinfop) 24850Sstevel@tonic-gate { 24860Sstevel@tonic-gate return (mod_info(&modlinkage, modinfop)); 24870Sstevel@tonic-gate } 2488