xref: /onnv-gate/usr/src/uts/sun4/io/trapstat.c (revision 158)
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
50Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
60Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
70Sstevel@tonic-gate  * with the License.
80Sstevel@tonic-gate  *
90Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
100Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
110Sstevel@tonic-gate  * See the License for the specific language governing permissions
120Sstevel@tonic-gate  * and limitations under the License.
130Sstevel@tonic-gate  *
140Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
150Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
160Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
170Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
180Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
190Sstevel@tonic-gate  *
200Sstevel@tonic-gate  * CDDL HEADER END
210Sstevel@tonic-gate  */
220Sstevel@tonic-gate /*
230Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #include <sys/systm.h>
300Sstevel@tonic-gate #include <sys/conf.h>
310Sstevel@tonic-gate #include <sys/stat.h>
320Sstevel@tonic-gate #include <sys/ddi.h>
330Sstevel@tonic-gate #include <sys/sunddi.h>
340Sstevel@tonic-gate #include <sys/modctl.h>
350Sstevel@tonic-gate #include <sys/cpu_module.h>
360Sstevel@tonic-gate #include <vm/hat_sfmmu.h>
370Sstevel@tonic-gate #include <vm/seg_kmem.h>
380Sstevel@tonic-gate #include <vm/seg_kpm.h>
390Sstevel@tonic-gate #include <vm/vm_dep.h>
400Sstevel@tonic-gate #include <sys/machsystm.h>
410Sstevel@tonic-gate #include <sys/machasi.h>
420Sstevel@tonic-gate #include <sys/sysmacros.h>
430Sstevel@tonic-gate #include <sys/callb.h>
440Sstevel@tonic-gate #include <sys/archsystm.h>
450Sstevel@tonic-gate #include <sys/trapstat.h>
460Sstevel@tonic-gate #ifdef sun4v
470Sstevel@tonic-gate #include <sys/hypervisor_api.h>
480Sstevel@tonic-gate #endif
490Sstevel@tonic-gate 
500Sstevel@tonic-gate /* BEGIN CSTYLED */
510Sstevel@tonic-gate /*
520Sstevel@tonic-gate  * trapstat:  Trap Statistics through Dynamic Trap Table Interposition
530Sstevel@tonic-gate  * -------------------------------------------------------------------
540Sstevel@tonic-gate  *
550Sstevel@tonic-gate  * Motivation and Overview
560Sstevel@tonic-gate  *
570Sstevel@tonic-gate  * Despite being a fundamental indicator of system behavior, there has
580Sstevel@tonic-gate  * historically been very little insight provided into the frequency and cost
590Sstevel@tonic-gate  * of machine-specific traps.  The lack of insight has been especially acute
600Sstevel@tonic-gate  * on UltraSPARC microprocessors:  because these microprocessors handle TLB
610Sstevel@tonic-gate  * misses as software traps, the frequency and duration of traps play a
620Sstevel@tonic-gate  * decisive role in the performance of the memory system.  As applications have
630Sstevel@tonic-gate  * increasingly outstripped TLB reach, this has become increasingly true.
640Sstevel@tonic-gate  *
650Sstevel@tonic-gate  * Part of the difficulty of observing trap behavior is that the trap handlers
660Sstevel@tonic-gate  * are so frequently called (e.g. millions of times per second) that any
670Sstevel@tonic-gate  * permanently enabled instrumentation would induce an unacceptable performance
680Sstevel@tonic-gate  * degradation.  Thus, it is a constraint on any trap observability
690Sstevel@tonic-gate  * infrastructure that it have no probe effect when not explicitly enabled.
700Sstevel@tonic-gate  *
710Sstevel@tonic-gate  * The basic idea, then, is to create an interposing trap table in which each
720Sstevel@tonic-gate  * entry increments a per-trap, in-memory counter and then jumps to the actual,
730Sstevel@tonic-gate  * underlying trap table entry.  To enable trapstat, we atomically write to the
740Sstevel@tonic-gate  * trap base address (%tba) register to point to our interposing trap table.
750Sstevel@tonic-gate  * (Note that per-CPU statistics fall out by creating a different trap table
760Sstevel@tonic-gate  * for each CPU.)
770Sstevel@tonic-gate  *
780Sstevel@tonic-gate  * Implementation Details
790Sstevel@tonic-gate  *
800Sstevel@tonic-gate  * While the idea is straight-forward, a nuance of SPARC V9 slightly
810Sstevel@tonic-gate  * complicates the implementation.  Unlike its predecessors, SPARC V9 supports
820Sstevel@tonic-gate  * the notion of nested traps.  The trap level is kept in the TL register:
830Sstevel@tonic-gate  * during normal operation it is 0; when a trap is taken, the TL register is
840Sstevel@tonic-gate  * incremented by 1.  To aid system software, SPARC V9 breaks the trap table
850Sstevel@tonic-gate  * into two halves:  the lower half contains the trap handlers for traps taken
860Sstevel@tonic-gate  * when TL is 0; the upper half contains the trap handlers for traps taken
870Sstevel@tonic-gate  * when TL is greater than 0.  Each half is further subdivided into two
880Sstevel@tonic-gate  * subsequent halves:  the lower half contains the trap handlers for traps
890Sstevel@tonic-gate  * other than those induced by the trap instruction (Tcc variants); the upper
900Sstevel@tonic-gate  * half contains the trap handlers for traps induced by the trap instruction.
910Sstevel@tonic-gate  * This gives a total of four ranges, with each range containing 256 traps:
920Sstevel@tonic-gate  *
930Sstevel@tonic-gate  *       +--------------------------------+- 3ff
940Sstevel@tonic-gate  *       |                                |   .
950Sstevel@tonic-gate  *       |     Trap instruction, TL>0     |   .
960Sstevel@tonic-gate  *       |                                |   .
970Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 300
980Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 2ff
990Sstevel@tonic-gate  *       |                                |   .
1000Sstevel@tonic-gate  *       |   Non-trap instruction, TL>0   |   .
1010Sstevel@tonic-gate  *       |                                |   .
1020Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 200
1030Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 1ff
1040Sstevel@tonic-gate  *       |                                |   .
1050Sstevel@tonic-gate  *       |     Trap instruction, TL=0     |   .
1060Sstevel@tonic-gate  *       |                                |   .
1070Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 100
1080Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 0ff
1090Sstevel@tonic-gate  *       |                                |   .
1100Sstevel@tonic-gate  *       |   Non-trap instruction, TL=0   |   .
1110Sstevel@tonic-gate  *       |                                |   .
1120Sstevel@tonic-gate  *       +--------------------------------+- 000
1130Sstevel@tonic-gate  *
1140Sstevel@tonic-gate  *
1150Sstevel@tonic-gate  * Solaris, however, doesn't have reason to support trap instructions when
1160Sstevel@tonic-gate  * TL>0 (only privileged code may execute at TL>0; not supporting this only
1170Sstevel@tonic-gate  * constrains our own implementation).  The trap table actually looks like:
1180Sstevel@tonic-gate  *
1190Sstevel@tonic-gate  *       +--------------------------------+- 2ff
1200Sstevel@tonic-gate  *       |                                |   .
1210Sstevel@tonic-gate  *       |   Non-trap instruction, TL>0   |   .
1220Sstevel@tonic-gate  *       |                                |   .
1230Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 200
1240Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 1ff
1250Sstevel@tonic-gate  *       |                                |   .
1260Sstevel@tonic-gate  *       |     Trap instruction, TL=0     |   .
1270Sstevel@tonic-gate  *       |                                |   .
1280Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 100
1290Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 0ff
1300Sstevel@tonic-gate  *       |                                |   .
1310Sstevel@tonic-gate  *       |   Non-trap instruction, TL=0   |   .
1320Sstevel@tonic-gate  *       |                                |   .
1330Sstevel@tonic-gate  *       +--------------------------------+- 000
1340Sstevel@tonic-gate  *
1350Sstevel@tonic-gate  * Putatively to aid system software, SPARC V9 has the notion of multiple
1360Sstevel@tonic-gate  * sets of global registers.  UltraSPARC defines four sets of global
1370Sstevel@tonic-gate  * registers:
1380Sstevel@tonic-gate  *
1390Sstevel@tonic-gate  *    Normal Globals
1400Sstevel@tonic-gate  *    Alternate Globals (AGs)
1410Sstevel@tonic-gate  *    MMU Globals (MGs)
1420Sstevel@tonic-gate  *    Interrupt Globals (IGs)
1430Sstevel@tonic-gate  *
1440Sstevel@tonic-gate  * The set of globals in use is controlled by bits in PSTATE; when TL is 0
1450Sstevel@tonic-gate  * (and PSTATE has not been otherwise explicitly modified), the Normal Globals
1460Sstevel@tonic-gate  * are in use.  When a trap is issued, PSTATE is modified to point to a set of
1470Sstevel@tonic-gate  * globals corresponding to the trap type.  Most traps correspond to the
1480Sstevel@tonic-gate  * Alternate Globals, with a minority corresponding to the MMU Globals, and
1490Sstevel@tonic-gate  * only the interrupt-vector trap (vector 0x60) corresponding to the Interrupt
1500Sstevel@tonic-gate  * Globals.  (The complete mapping can be found in the UltraSPARC I&II User's
1510Sstevel@tonic-gate  * Manual.)
1520Sstevel@tonic-gate  *
1530Sstevel@tonic-gate  * Note that the sets of globals are per trap _type_, not per trap _level_.
1540Sstevel@tonic-gate  * Thus, when executing a TL>0 trap handler, one may not have registers
1550Sstevel@tonic-gate  * available (for example, both trap-instruction traps and spill traps execute
1560Sstevel@tonic-gate  * on the alternate globals; if a trap-instruction trap induces a window spill,
1570Sstevel@tonic-gate  * the window spill handler has no available globals).  For trapstat, this is
1580Sstevel@tonic-gate  * problematic:  a register is required to transfer control from one arbitrary
1590Sstevel@tonic-gate  * location (in the interposing trap table) to another (in the actual trap
1600Sstevel@tonic-gate  * table).
1610Sstevel@tonic-gate  *
1620Sstevel@tonic-gate  * We solve this problem by exploiting the trap table's location at the bottom
1630Sstevel@tonic-gate  * of valid kernel memory (i.e. at KERNELBASE).  We locate the interposing trap
1640Sstevel@tonic-gate  * tables just below KERNELBASE -- thereby allowing us to use a branch-always
1650Sstevel@tonic-gate  * instruction (ba) instead of a jump instruction (jmp) to transfer control
1660Sstevel@tonic-gate  * from the TL>0 entries in the interposing trap table to the TL>0 entries in
1670Sstevel@tonic-gate  * the actual trap table.  (N.B. while this allows trap table interposition to
1680Sstevel@tonic-gate  * work, it necessarily limits trapstat to only recording information about
1690Sstevel@tonic-gate  * TL=0 traps -- there is no way to increment a counter without using a
1700Sstevel@tonic-gate  * register.)  Diagrammatically:
1710Sstevel@tonic-gate  *
1720Sstevel@tonic-gate  *  Actual trap table:
1730Sstevel@tonic-gate  *
1740Sstevel@tonic-gate  *       +--------------------------------+- 2ff
1750Sstevel@tonic-gate  *       |                                |   .
1760Sstevel@tonic-gate  *       |   Non-trap instruction, TL>0   |   .   <-----------------------+
1770Sstevel@tonic-gate  *       |                                |   .   <-----------------------|-+
1780Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 200  <-----------------------|-|-+
1790Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 1ff                          | | |
1800Sstevel@tonic-gate  *       |                                |   .                           | | |
1810Sstevel@tonic-gate  *       |     Trap instruction, TL=0     |   .   <-----------------+     | | |
1820Sstevel@tonic-gate  *       |                                |   .   <-----------------|-+   | | |
1830Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 100  <-----------------|-|-+ | | |
1840Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 0ff                    | | | | | |
1850Sstevel@tonic-gate  *       |                                |   .                     | | | | | |
1860Sstevel@tonic-gate  *       |   Non-trap instruction, TL=0   |   .   <-----------+     | | | | | |
1870Sstevel@tonic-gate  *       |                                |   .   <-----------|-+   | | | | | |
1880Sstevel@tonic-gate  *       +--------------------------------+- 000  <-----------|-|-+ | | | | | |
1890Sstevel@tonic-gate  *        KERNELBASE                                          | | | | | | | | |
1900Sstevel@tonic-gate  *                                                            | | | | | | | | |
1910Sstevel@tonic-gate  *                                                            | | | | | | | | |
1920Sstevel@tonic-gate  *  Interposing trap table:                                   | | | | | | | | |
1930Sstevel@tonic-gate  *                                                            | | | | | | | | |
1940Sstevel@tonic-gate  *       +--------------------------------+- 2ff              | | | | | | | | |
1950Sstevel@tonic-gate  *       |  ...                           |   .               | | | | | | | | |
1960Sstevel@tonic-gate  *       |  ...                           |   .               | | | | | | | | |
1970Sstevel@tonic-gate  *       |  ...                           |   .               | | | | | | | | |
1980Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 203              | | | | | | | | |
1990Sstevel@tonic-gate  *       |  ba,a                          |      -------------|-|-|-|-|-|-+ | |
2000Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 202              | | | | | |   | |
2010Sstevel@tonic-gate  *       |  ba,a                          |      -------------|-|-|-|-|-|---+ |
2020Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 201              | | | | | |     |
2030Sstevel@tonic-gate  *       |  ba,a                          |      -------------|-|-|-|-|-|-----+
2040Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 200              | | | | | |
2050Sstevel@tonic-gate  *       |  ...                           |   .               | | | | | |
2060Sstevel@tonic-gate  *       |  ...                           |   .               | | | | | |
2070Sstevel@tonic-gate  *       |  ...                           |   .               | | | | | |
2080Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 103              | | | | | |
2090Sstevel@tonic-gate  *       |  (Increment counter)           |                   | | | | | |
2100Sstevel@tonic-gate  *       |  ba,a                          |      -------------------+ | |
2110Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 102              | | |   | |
2120Sstevel@tonic-gate  *       |  (Increment counter)           |                   | | |   | |
2130Sstevel@tonic-gate  *       |  ba,a                          |      ---------------------+ |
2140Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 101              | | |     |
2150Sstevel@tonic-gate  *       |  (Increment counter)           |                   | | |     |
2160Sstevel@tonic-gate  *       |  ba,a                          |      -----------------------+
2170Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 100              | | |
2180Sstevel@tonic-gate  *       |  ...                           |   .               | | |
2190Sstevel@tonic-gate  *       |  ...                           |   .               | | |
2200Sstevel@tonic-gate  *       |  ...                           |   .               | | |
2210Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 003              | | |
2220Sstevel@tonic-gate  *       |  (Increment counter)           |                   | | |
2230Sstevel@tonic-gate  *       |  ba,a                          |      -------------+ | |
2240Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 002                | |
2250Sstevel@tonic-gate  *       |  (Increment counter)           |                     | |
2260Sstevel@tonic-gate  *       |  ba,a                          |      ---------------+ |
2270Sstevel@tonic-gate  *       |- - - - - - - - - - - - - - - - +- 001                  |
2280Sstevel@tonic-gate  *       |  (Increment counter)           |                       |
2290Sstevel@tonic-gate  *       |  ba,a                          |      -----------------+
2300Sstevel@tonic-gate  *       +--------------------------------+- 000
2310Sstevel@tonic-gate  *        KERNELBASE - tstat_total_size
2320Sstevel@tonic-gate  *
2330Sstevel@tonic-gate  * tstat_total_size is the number of pages required for each trap table.  It
2340Sstevel@tonic-gate  * must be true that KERNELBASE - tstat_total_size is less than the maximum
2350Sstevel@tonic-gate  * branch displacement; if each CPU were to consume a disjoint virtual range
2360Sstevel@tonic-gate  * below KERNELBASE for its trap table, we could support at most
2370Sstevel@tonic-gate  * (maximum_branch_displacement / tstat_total_size) CPUs.  The maximum branch
2380Sstevel@tonic-gate  * displacement for Bicc variants is just under eight megabytes, and (because
2390Sstevel@tonic-gate  * the %tba must be 32K aligned), tstat_total_size must be at least 32K; if
2400Sstevel@tonic-gate  * each CPU were to consume a disjoint virtual range, we would have an
2410Sstevel@tonic-gate  * unacceptably low upper bound of 256 CPUs.
2420Sstevel@tonic-gate  *
2430Sstevel@tonic-gate  * While there are tricks that one could use to address this constraint (e.g.,
2440Sstevel@tonic-gate  * creating trampolines every maximum_branch_displacement bytes), we instead
2450Sstevel@tonic-gate  * solve this by not permitting each CPU to consume a disjoint virtual range.
2460Sstevel@tonic-gate  * Rather, we have each CPU's interposing trap table use the _same_ virtual
2470Sstevel@tonic-gate  * range, but we back the trap tables with disjoint physical memory.  Normally,
2480Sstevel@tonic-gate  * such one-to-many virtual-to-physical mappings are illegal; this is
2490Sstevel@tonic-gate  * permissible here only because the pages for the interposing trap table are
2500Sstevel@tonic-gate  * necessarily locked in the TLB.  (The CPUs thus never have the opportunity to
2510Sstevel@tonic-gate  * discover that they have conflicting translations.)
2520Sstevel@tonic-gate  *
2530Sstevel@tonic-gate  * On CMT architectures in which CPUs can share MMUs, the above trick will not
2540Sstevel@tonic-gate  * work: two CPUs that share an MMU cannot have the same virtual address map
2550Sstevel@tonic-gate  * to disjoint physical pages.  On these architectures, any CPUs sharing the
2560Sstevel@tonic-gate  * same MMU must consume a disjoint 32K virtual address range -- limiting the
2570Sstevel@tonic-gate  * number of CPUs sharing an MMU on these architectures to 256 due to the
2580Sstevel@tonic-gate  * branch displacement limitation described above.  On the sun4v architecture,
2590Sstevel@tonic-gate  * there is a further limitation: a guest may not have more than eight locked
2600Sstevel@tonic-gate  * TLB entries per MMU.  To allow operation under this restriction, the
2610Sstevel@tonic-gate  * interposing trap table and the trap statistics are each accessed through
2620Sstevel@tonic-gate  * a single 4M TLB entry.  This limits the footprint to two locked entries
2630Sstevel@tonic-gate  * (one for the I-TLB and one for the D-TLB), but further restricts the number
2640Sstevel@tonic-gate  * of CPUs to 128 per MMU.  However, support for more than 128 CPUs can easily
2650Sstevel@tonic-gate  * be added via a hybrid scheme, where the same 4M virtual address is used
2660Sstevel@tonic-gate  * on different MMUs.
2670Sstevel@tonic-gate  *
2680Sstevel@tonic-gate  *
2690Sstevel@tonic-gate  * TLB Statistics
2700Sstevel@tonic-gate  *
2710Sstevel@tonic-gate  * Because TLB misses are an important component of system performance, we wish
2720Sstevel@tonic-gate  * to know much more about these traps than simply the number received.
2730Sstevel@tonic-gate  * Specifically, we wish to know:
2740Sstevel@tonic-gate  *
2750Sstevel@tonic-gate  *  (a)	The amount of time spent executing the TLB miss handler
2760Sstevel@tonic-gate  *  (b)	TLB misses versus TSB misses
2770Sstevel@tonic-gate  *  (c) Kernel-level misses versus user-level misses
2780Sstevel@tonic-gate  *  (d) Misses per pagesize
2790Sstevel@tonic-gate  *
2800Sstevel@tonic-gate  * TLB Statistics: Time Spent Executing
2810Sstevel@tonic-gate  *
2820Sstevel@tonic-gate  * To accurately determine the amount of time spent executing the TLB miss
2830Sstevel@tonic-gate  * handler, one must get a timestamp on trap entry and trap exit, subtract the
2840Sstevel@tonic-gate  * latter from the former, and add the result to an accumulating count.
2850Sstevel@tonic-gate  * Consider flow of control during normal TLB miss processing (where "ldx
2860Sstevel@tonic-gate  * [%g2], %g2" is an arbitrary TLB-missing instruction):
2870Sstevel@tonic-gate  *
2880Sstevel@tonic-gate  * + - - - - - - - -+
2890Sstevel@tonic-gate  * :                :
2900Sstevel@tonic-gate  * : ldx [%g2], %g2 :<-------------------------------------------------------+
2910Sstevel@tonic-gate  * :                :              Return from trap:                         |
2920Sstevel@tonic-gate  * + - - - - - - - -+                TL <- TL - 1 (0)                        |
2930Sstevel@tonic-gate  *	  |                          %pc <- TSTATE[TL].TPC (address of load) |
2940Sstevel@tonic-gate  *	  | TLB miss:                                                        |
2950Sstevel@tonic-gate  *        |   TL <- TL + 1 (1)                                               |
2960Sstevel@tonic-gate  *        |   %pc <- TLB-miss-trap-handler                                   |
2970Sstevel@tonic-gate  *        |                                                                  |
2980Sstevel@tonic-gate  *        v                                                                  |
2990Sstevel@tonic-gate  * + - - - - - - - - - - - - - - - +                                         |
3000Sstevel@tonic-gate  * :                               :                                         |
3010Sstevel@tonic-gate  * : Lookup VA in TSB              :                                         |
3020Sstevel@tonic-gate  * : If (hit)                      :                                         |
3030Sstevel@tonic-gate  * :     Fill TLB                  :                                         |
3040Sstevel@tonic-gate  * : Else                          :                                         |
3050Sstevel@tonic-gate  * :     Lookup VA (hme hash table :                                         |
3060Sstevel@tonic-gate  * :                or segkpm)     :                                         |
3070Sstevel@tonic-gate  * :     Fill TLB                  :                                         |
3080Sstevel@tonic-gate  * : Endif                         :                                         |
3090Sstevel@tonic-gate  * : Issue "retry"  ---------------------------------------------------------+
3100Sstevel@tonic-gate  * :                               :
3110Sstevel@tonic-gate  * + - - - - - - - - - - - - - - - +
3120Sstevel@tonic-gate  *  TLB-miss-trap-handler
3130Sstevel@tonic-gate  *
3140Sstevel@tonic-gate  *
3150Sstevel@tonic-gate  * As the above diagram indicates, interposing on the trap table allows one
3160Sstevel@tonic-gate  * only to determine a timestamp on trap _entry_:  when the TLB miss handler
3170Sstevel@tonic-gate  * has completed filling the TLB, a "retry" will be issued, and control will
3180Sstevel@tonic-gate  * transfer immediately back to the missing %pc.
3190Sstevel@tonic-gate  *
3200Sstevel@tonic-gate  * To obtain a timestamp on trap exit, we must then somehow interpose between
3210Sstevel@tonic-gate  * the "retry" and the subsequent control transfer to the TLB-missing
3220Sstevel@tonic-gate  * instruction.  To do this, we _push_ a trap level.  The basic idea is to
3230Sstevel@tonic-gate  * spoof a TLB miss by raising TL, setting the %tpc to be within text
3240Sstevel@tonic-gate  * controlled by trapstat (the "TLB return entry") and branching to the
3250Sstevel@tonic-gate  * underlying TLB miss handler.  When the TLB miss handler issues its "retry",
3260Sstevel@tonic-gate  * control will transfer not to the TLB-missing instruction, but rather to the
3270Sstevel@tonic-gate  * TLB return entry.  This code can then obtain a timestamp, and issue its own
3280Sstevel@tonic-gate  * "retry" -- thereby correctly returning to the TLB-missing instruction.
3290Sstevel@tonic-gate  * Here is the above TLB miss flow control diagram modified to reflect
3300Sstevel@tonic-gate  * trapstat's operation:
3310Sstevel@tonic-gate  *
3320Sstevel@tonic-gate  * + - - - - - - - -+
3330Sstevel@tonic-gate  * :                :
3340Sstevel@tonic-gate  * : ldx [%g2], %g2 :<-------------------------------------------------------+
3350Sstevel@tonic-gate  * :                :             Return from trap:                          |
3360Sstevel@tonic-gate  * + - - - - - - - -+               TL <- TL - 1 (0)                         |
3370Sstevel@tonic-gate  *	  |                         %pc <- TSTATE[TL].TPC (address of load)  |
3380Sstevel@tonic-gate  *	  | TLB miss:                                                        |
3390Sstevel@tonic-gate  *        |   TL <- TL + 1 (1)                                               |
3400Sstevel@tonic-gate  *        |   %pc <- TLB-miss-trap-handler (trapstat)                        |
3410Sstevel@tonic-gate  *        |                                                                  |
3420Sstevel@tonic-gate  *        v                                    TLB-return-entry (trapstat)   |
3430Sstevel@tonic-gate  * + - - - - - - - - - - - - - - - - - - +    + - - - - - - - - - - - - - +  |
3440Sstevel@tonic-gate  * :                                     :    :                           :  |
3450Sstevel@tonic-gate  * : Record timestamp                    :    : Record timestamp          :  |
3460Sstevel@tonic-gate  * : TL <- 2                             :    : Take timestamp difference :  |
3470Sstevel@tonic-gate  * : TSTATE[1].TPC <- TLB-return-entry   :    : Add to running total      :  |
3480Sstevel@tonic-gate  * : ba,a TLB-miss-trap-handler -----------+  : Issue "retry"  --------------+
3490Sstevel@tonic-gate  * :                                     : |  :                           :
3500Sstevel@tonic-gate  * + - - - - - - - - - - - - - - - - - - + |  + - - - - - - - - - - - - - +
3510Sstevel@tonic-gate  *  TLB-miss-trap-handler	           |                  ^
3520Sstevel@tonic-gate  *  (trapstat)                             |                  |
3530Sstevel@tonic-gate  *                                         |                  |
3540Sstevel@tonic-gate  *                                         |                  |
3550Sstevel@tonic-gate  *                 +-----------------------+                  |
3560Sstevel@tonic-gate  *                 |                                          |
3570Sstevel@tonic-gate  *                 |                                          |
3580Sstevel@tonic-gate  *                 v                                          |
3590Sstevel@tonic-gate  * + - - - - - - - - - - - - - - - +                          |
3600Sstevel@tonic-gate  * :                               :                          |
3610Sstevel@tonic-gate  * : Lookup VA in TSB              :                          |
3620Sstevel@tonic-gate  * : If (hit)                      :                          |
3630Sstevel@tonic-gate  * :     Fill TLB                  :                          |
3640Sstevel@tonic-gate  * : Else                          :                          |
3650Sstevel@tonic-gate  * :     Lookup VA (hme hash table :                          |
3660Sstevel@tonic-gate  * :                or segkpm)     :                          |
3670Sstevel@tonic-gate  * :     Fill TLB                  :                          |
3680Sstevel@tonic-gate  * : Endif                         :                          |
3690Sstevel@tonic-gate  * : Issue "retry"  ------------------------------------------+
3700Sstevel@tonic-gate  * :                               : Return from trap:
3710Sstevel@tonic-gate  * + - - - - - - - - - - - - - - - +   TL <- TL - 1 (1)
3720Sstevel@tonic-gate  *  TLB-miss-trap-handler              %pc <- TSTATE[TL].TPC (TLB-return-entry)
3730Sstevel@tonic-gate  *
3740Sstevel@tonic-gate  *
3750Sstevel@tonic-gate  * A final subterfuge is required to complete our artifice:  if we miss in
3760Sstevel@tonic-gate  * the TLB, the TSB _and_ the subsequent hash or segkpm lookup (that is, if
3770Sstevel@tonic-gate  * there is no valid translation for the TLB-missing address), common system
3780Sstevel@tonic-gate  * software will need to accurately determine the %tpc as part of its page
3790Sstevel@tonic-gate  * fault handling. We therefore modify the kernel to check the %tpc in this
3800Sstevel@tonic-gate  * case: if the %tpc falls within the VA range controlled by trapstat and
3810Sstevel@tonic-gate  * the TL is 2, TL is simply lowered back to 1 (this check is implemented
3820Sstevel@tonic-gate  * by the TSTAT_CHECK_TL1 macro).  Lowering TL to 1 has the effect of
3830Sstevel@tonic-gate  * discarding the state pushed by trapstat.
3840Sstevel@tonic-gate  *
3850Sstevel@tonic-gate  * TLB Statistics: TLB Misses versus TSB Misses
3860Sstevel@tonic-gate  *
3870Sstevel@tonic-gate  * Distinguishing TLB misses from TSB misses requires further interposition
3880Sstevel@tonic-gate  * on the TLB miss handler:  we cannot know a priori or a posteriori if a
3890Sstevel@tonic-gate  * given VA will or has hit in the TSB.
3900Sstevel@tonic-gate  *
3910Sstevel@tonic-gate  * We achieve this distinction by adding a second TLB return entry almost
3920Sstevel@tonic-gate  * identical to the first -- differing only in the address to which it
3930Sstevel@tonic-gate  * stores its results.  We then modify the TLB miss handlers of the kernel
3940Sstevel@tonic-gate  * such that they check the %tpc when they determine that a TLB miss has
3950Sstevel@tonic-gate  * subsequently missed in the TSB:  if the %tpc lies within trapstat's VA
3960Sstevel@tonic-gate  * range and TL is 2 (that is, if trapstat is running), the TLB miss handler
3970Sstevel@tonic-gate  * _increments_ the %tpc by the size of the TLB return entry.  The ensuing
3980Sstevel@tonic-gate  * "retry" will thus transfer control to the second TLB return entry, and
3990Sstevel@tonic-gate  * the time spent in the handler will be accumulated in a memory location
4000Sstevel@tonic-gate  * specific to TSB misses.
4010Sstevel@tonic-gate  *
4020Sstevel@tonic-gate  * N.B.:  To minimize the amount of knowledge the kernel must have of trapstat,
4030Sstevel@tonic-gate  * we do not allow the kernel to hard-code the size of the TLB return entry.
4040Sstevel@tonic-gate  * Rather, the actual tsbmiss handler executes a known instruction at the
4050Sstevel@tonic-gate  * corresponding tsbmiss patch points (see the tstat_tsbmiss_patch_table) with
4060Sstevel@tonic-gate  * the %tpc in %g7:  when trapstat is not running, these points contain the
4070Sstevel@tonic-gate  * harmless TSTAT_TSBMISS_INSTR instruction ("add %g7, 0, %g7"). Before
4080Sstevel@tonic-gate  * running, trapstat modifies the instructions at these patch points such
4090Sstevel@tonic-gate  * that the simm13 equals the size of the TLB return entry.
4100Sstevel@tonic-gate  *
4110Sstevel@tonic-gate  * TLB Statistics: Kernel-level Misses versus User-level Misses
4120Sstevel@tonic-gate  *
4130Sstevel@tonic-gate  * Differentiating user-level misses from kernel-level misses employs a
4140Sstevel@tonic-gate  * similar technique, but is simplified by the ability to distinguish a
4150Sstevel@tonic-gate  * user-level miss from a kernel-level miss a priori by reading the context
4160Sstevel@tonic-gate  * register:  we implement kernel-/user-level differentiation by again doubling
4170Sstevel@tonic-gate  * the number of TLB return entries, and setting the %tpc to the appropriate
4180Sstevel@tonic-gate  * TLB return entry in trapstat's TLB miss handler.  Together with the doubling
4190Sstevel@tonic-gate  * of entries required for TLB-miss/TSB-miss differentiation, this yields a
4200Sstevel@tonic-gate  * total of four TLB return entries:
4210Sstevel@tonic-gate  *
4220Sstevel@tonic-gate  *	Level		TSB hit?	Structure member
4230Sstevel@tonic-gate  *	------------------------------------------------------------
4240Sstevel@tonic-gate  *	Kernel		Yes		tstat_tlbret_t.ttlbr_ktlb
4250Sstevel@tonic-gate  *	Kernel		No		tstat_tlbret_t.ttlbr_ktsb
4260Sstevel@tonic-gate  *	User		Yes		tstat_tlbret_t.ttlbr_utlb
4270Sstevel@tonic-gate  *	User		No		tstat_tlbret_t.ttlbr_utsb
4280Sstevel@tonic-gate  *
4290Sstevel@tonic-gate  * TLB Statistics: Misses per Pagesize
4300Sstevel@tonic-gate  *
4310Sstevel@tonic-gate  * As with the TLB-/TSB-miss differentiation, we have no way of determining
4320Sstevel@tonic-gate  * pagesize a priori.  This is therefore implemented by mandating a new rule:
4330Sstevel@tonic-gate  * whenever the kernel fills the TLB in its TLB miss handler, the TTE
4340Sstevel@tonic-gate  * corresponding to the TLB-missing VA must be in %g5 when the handler
4350Sstevel@tonic-gate  * executes its "retry".  This allows the TLB return entry to determine
4360Sstevel@tonic-gate  * pagesize by simply looking at the pagesize field in the TTE stored in
4370Sstevel@tonic-gate  * %g5.
4380Sstevel@tonic-gate  *
4390Sstevel@tonic-gate  * TLB Statistics: Probe Effect
4400Sstevel@tonic-gate  *
4410Sstevel@tonic-gate  * As one might imagine, gathering TLB statistics by pushing a trap level
4420Sstevel@tonic-gate  * induces significant probe effect.  To account for this probe effect,
4430Sstevel@tonic-gate  * trapstat attempts to observe it by executing a code sequence with a known
4440Sstevel@tonic-gate  * number of TLB misses both before and after interposing on the trap table.
4450Sstevel@tonic-gate  * This allows trapstat to determine a per-trap probe effect which can then be
4460Sstevel@tonic-gate  * factored into the "%tim" fields of the trapstat command.
4470Sstevel@tonic-gate  *
4480Sstevel@tonic-gate  * Note that on sun4v platforms, TLB misses are normally handled by the
4490Sstevel@tonic-gate  * hypervisor or the hardware TSB walker. Thus no fast MMU miss information
4500Sstevel@tonic-gate  * is reported for normal operation. However, when trapstat is invoked with
4510Sstevel@tonic-gate  * -t or -T option to collect detailed TLB statistics, kernel takes
4520Sstevel@tonic-gate  * over TLB miss handling. This results in significantly more overhead
4530Sstevel@tonic-gate  * and TLB statistics may not be as accurate as on sun4u platforms.
4540Sstevel@tonic-gate  *
4550Sstevel@tonic-gate  * Locking
4560Sstevel@tonic-gate  *
4570Sstevel@tonic-gate  * The implementation uses two locks:  tstat_lock (a local lock) and the global
4580Sstevel@tonic-gate  * cpu_lock.  tstat_lock is used to assure trapstat's consistency in the
4590Sstevel@tonic-gate  * presence of multithreaded /dev/trapstat consumers (while as of this writing
4600Sstevel@tonic-gate  * the only consumer of /dev/trapstat is single threaded, it is obviously
4610Sstevel@tonic-gate  * necessary to correctly support multithreaded access).  cpu_lock is held
4620Sstevel@tonic-gate  * whenever CPUs are being manipulated directly, to prevent them from
4630Sstevel@tonic-gate  * disappearing in the process.  Because trapstat's DR callback
4640Sstevel@tonic-gate  * (trapstat_cpu_setup()) must grab tstat_lock and is called with cpu_lock
4650Sstevel@tonic-gate  * held, the lock ordering is necessarily cpu_lock before tstat_lock.
4660Sstevel@tonic-gate  *
4670Sstevel@tonic-gate  */
4680Sstevel@tonic-gate /* END CSTYLED */
4690Sstevel@tonic-gate 
4700Sstevel@tonic-gate static dev_info_t	*tstat_devi;	/* saved in xxattach() for xxinfo() */
4710Sstevel@tonic-gate static int		tstat_open;	/* set if driver is open */
4720Sstevel@tonic-gate static kmutex_t		tstat_lock;	/* serialize access */
4730Sstevel@tonic-gate static vmem_t		*tstat_arena;	/* arena for TLB-locked pages */
4740Sstevel@tonic-gate static tstat_percpu_t	*tstat_percpu;	/* per-CPU data */
4750Sstevel@tonic-gate static int		tstat_running;	/* set if trapstat is running */
4760Sstevel@tonic-gate static tstat_data_t	*tstat_buffer;	/* staging buffer for outgoing data */
4770Sstevel@tonic-gate static int		tstat_options;	/* bit-wise indication of options */
4780Sstevel@tonic-gate static int		*tstat_enabled;	/* map of enabled trap entries */
4790Sstevel@tonic-gate static int		tstat_tsbmiss_patched; /* tsbmiss patch flag */
4800Sstevel@tonic-gate static callb_id_t	tstat_cprcb;	/* CPR callback */
4810Sstevel@tonic-gate static char		*tstat_probe_area; /* VA range used for probe effect */
4820Sstevel@tonic-gate static caddr_t		tstat_probe_phys; /* physical to back above VA */
4830Sstevel@tonic-gate static hrtime_t		tstat_probe_time; /* time spent on probe effect */
4840Sstevel@tonic-gate static hrtime_t		tstat_probe_before[TSTAT_PROBE_NLAPS];
4850Sstevel@tonic-gate static hrtime_t		tstat_probe_after[TSTAT_PROBE_NLAPS];
4860Sstevel@tonic-gate static uint_t		tstat_pgszs;		/* # of kernel page sizes */
4870Sstevel@tonic-gate static uint_t		tstat_user_pgszs;	/* # of user page sizes */
4880Sstevel@tonic-gate 
4890Sstevel@tonic-gate /*
4900Sstevel@tonic-gate  * sizeof tstat_data_t + pgsz data for the kernel.  For simplicity's sake, when
4910Sstevel@tonic-gate  * we collect data, we do it based upon szc, but when we report data back to
4920Sstevel@tonic-gate  * userland, we have to do it based upon the userszc which may not match.
4930Sstevel@tonic-gate  * So, these two variables are for internal use and exported use respectively.
4940Sstevel@tonic-gate  */
4950Sstevel@tonic-gate static size_t		tstat_data_t_size;
4960Sstevel@tonic-gate static size_t		tstat_data_t_exported_size;
4970Sstevel@tonic-gate 
4980Sstevel@tonic-gate static size_t		tstat_data_pages;  /* number of pages of tstat data */
4990Sstevel@tonic-gate static size_t		tstat_data_size;   /* tstat data size in bytes */
5000Sstevel@tonic-gate static size_t		tstat_total_pages; /* #data pages + #instr pages */
5010Sstevel@tonic-gate static size_t		tstat_total_size;  /* tstat data size + instr size */
5020Sstevel@tonic-gate #ifdef sun4v
5030Sstevel@tonic-gate static caddr_t		tstat_va;	/* VA of memory reserved for TBA */
5040Sstevel@tonic-gate static pfn_t		tstat_pfn;	/* PFN of memory reserved for TBA */
5050Sstevel@tonic-gate #endif
5060Sstevel@tonic-gate 
5070Sstevel@tonic-gate /*
5080Sstevel@tonic-gate  * In the above block comment, see "TLB Statistics: TLB Misses versus
5090Sstevel@tonic-gate  * TSB Misses" for an explanation of the tsbmiss patch points.
5100Sstevel@tonic-gate  */
5110Sstevel@tonic-gate extern uint32_t		tsbmiss_trapstat_patch_point;
5120Sstevel@tonic-gate extern uint32_t		tsbmiss_trapstat_patch_point_kpm;
5130Sstevel@tonic-gate extern uint32_t		tsbmiss_trapstat_patch_point_kpm_small;
5140Sstevel@tonic-gate 
5150Sstevel@tonic-gate /*
5160Sstevel@tonic-gate  * Trapstat tsbmiss patch table
5170Sstevel@tonic-gate  */
5180Sstevel@tonic-gate tstat_tsbmiss_patch_entry_t tstat_tsbmiss_patch_table[] = {
5190Sstevel@tonic-gate 	{(uint32_t *)&tsbmiss_trapstat_patch_point, 0},
5200Sstevel@tonic-gate 	{(uint32_t *)&tsbmiss_trapstat_patch_point_kpm, 0},
5210Sstevel@tonic-gate 	{(uint32_t *)&tsbmiss_trapstat_patch_point_kpm_small, 0},
5220Sstevel@tonic-gate 	{(uint32_t *)NULL, 0}
5230Sstevel@tonic-gate };
5240Sstevel@tonic-gate 
5250Sstevel@tonic-gate /*
5260Sstevel@tonic-gate  * We define some general SPARC-specific constants to allow more readable
5270Sstevel@tonic-gate  * relocations.
5280Sstevel@tonic-gate  */
5290Sstevel@tonic-gate #define	NOP	0x01000000
5300Sstevel@tonic-gate #define	HI22(v) ((uint32_t)(v) >> 10)
5310Sstevel@tonic-gate #define	LO10(v) ((uint32_t)(v) & 0x3ff)
5320Sstevel@tonic-gate #define	LO12(v) ((uint32_t)(v) & 0xfff)
5330Sstevel@tonic-gate #define	DISP22(from, to) \
5340Sstevel@tonic-gate 	((((uintptr_t)(to) - (uintptr_t)(from)) >> 2) & 0x3fffff)
5350Sstevel@tonic-gate #define	ASI(asi)	((asi) << 5)
5360Sstevel@tonic-gate 
5370Sstevel@tonic-gate /*
5380Sstevel@tonic-gate  * The interposing trap table must be locked in the I-TLB, and any data
5390Sstevel@tonic-gate  * referred to in the interposing trap handler must be locked in the D-TLB.
5400Sstevel@tonic-gate  * This function locks these pages in the appropriate TLBs by creating TTEs
5410Sstevel@tonic-gate  * from whole cloth, and manually loading them into the TLB.  This function is
5420Sstevel@tonic-gate  * called from cross call context.
5430Sstevel@tonic-gate  *
5440Sstevel@tonic-gate  * On sun4v platforms, we use 4M page size mappings to minimize the number
5450Sstevel@tonic-gate  * of locked down entries (i.e. permanent mappings). Each CPU uses a
5460Sstevel@tonic-gate  * reserved portion of that 4M page for its TBA and data.
5470Sstevel@tonic-gate  */
5480Sstevel@tonic-gate static void
5490Sstevel@tonic-gate trapstat_load_tlb(void)
5500Sstevel@tonic-gate {
5510Sstevel@tonic-gate #ifndef sun4v
5520Sstevel@tonic-gate 	int i;
5530Sstevel@tonic-gate #else
5540Sstevel@tonic-gate 	uint64_t ret;
5550Sstevel@tonic-gate #endif
5560Sstevel@tonic-gate 	tte_t tte;
5570Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
5580Sstevel@tonic-gate 	caddr_t va = tcpu->tcpu_vabase;
5590Sstevel@tonic-gate 
5600Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
5610Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
5620Sstevel@tonic-gate 
5630Sstevel@tonic-gate #ifndef sun4v
5640Sstevel@tonic-gate 	for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) {
5650Sstevel@tonic-gate 		tte.tte_inthi = TTE_VALID_INT | TTE_SZ_INT(TTE8K) |
5660Sstevel@tonic-gate 			TTE_PFN_INTHI(tcpu->tcpu_pfn[i]);
5670Sstevel@tonic-gate 		if (i < TSTAT_INSTR_PAGES) {
5680Sstevel@tonic-gate 			tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) |
5690Sstevel@tonic-gate 				TTE_LCK_INT | TTE_CP_INT | TTE_PRIV_INT;
5700Sstevel@tonic-gate 			sfmmu_itlb_ld(va, KCONTEXT, &tte);
5710Sstevel@tonic-gate 		} else {
5720Sstevel@tonic-gate 			tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) |
5730Sstevel@tonic-gate 				TTE_LCK_INT | TTE_CP_INT | TTE_CV_INT |
5740Sstevel@tonic-gate 				TTE_PRIV_INT | TTE_HWWR_INT;
5750Sstevel@tonic-gate 			sfmmu_dtlb_ld(va, KCONTEXT, &tte);
5760Sstevel@tonic-gate 		}
5770Sstevel@tonic-gate 	}
5780Sstevel@tonic-gate #else /* sun4v */
5790Sstevel@tonic-gate 	tte.tte_inthi = TTE_VALID_INT | TTE_PFN_INTHI(tstat_pfn);
5800Sstevel@tonic-gate 	tte.tte_intlo = TTE_PFN_INTLO(tstat_pfn) | TTE_CP_INT |
5810Sstevel@tonic-gate 		TTE_CV_INT | TTE_PRIV_INT | TTE_HWWR_INT |
5820Sstevel@tonic-gate 		TTE_SZ_INTLO(TTE4M);
5830Sstevel@tonic-gate 	ret = hv_mmu_map_perm_addr(va, KCONTEXT, *(uint64_t *)&tte,
5840Sstevel@tonic-gate 		MAP_ITLB | MAP_DTLB);
5850Sstevel@tonic-gate 
5860Sstevel@tonic-gate 	if (ret != H_EOK)
5870Sstevel@tonic-gate 		cmn_err(CE_PANIC, "trapstat: cannot map new TBA "
5880Sstevel@tonic-gate 		    "for cpu %d  (error: 0x%lx)", CPU->cpu_id, ret);
5890Sstevel@tonic-gate #endif /* sun4v */
5900Sstevel@tonic-gate }
5910Sstevel@tonic-gate 
5920Sstevel@tonic-gate /*
5930Sstevel@tonic-gate  * As mentioned in the "TLB Statistics: TLB Misses versus TSB Misses" section
5940Sstevel@tonic-gate  * of the block comment, TLB misses are differentiated from TSB misses in
5950Sstevel@tonic-gate  * part by hot-patching the instructions at the tsbmiss patch points (see
5960Sstevel@tonic-gate  * tstat_tsbmiss_patch_table). This routine is used both to initially patch
5970Sstevel@tonic-gate  * the instructions, and to patch them back to their original values upon
5980Sstevel@tonic-gate  * restoring the original trap table.
5990Sstevel@tonic-gate  */
6000Sstevel@tonic-gate static void
6010Sstevel@tonic-gate trapstat_hotpatch()
6020Sstevel@tonic-gate {
6030Sstevel@tonic-gate 	uint32_t instr;
6040Sstevel@tonic-gate 	uint32_t simm13;
6050Sstevel@tonic-gate 	tstat_tsbmiss_patch_entry_t *ep;
6060Sstevel@tonic-gate 
6070Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
6080Sstevel@tonic-gate 
6090Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_TLBDATA))
6100Sstevel@tonic-gate 		return;
6110Sstevel@tonic-gate 
6120Sstevel@tonic-gate 	if (!tstat_tsbmiss_patched) {
6130Sstevel@tonic-gate 		/*
6140Sstevel@tonic-gate 		 * We haven't patched the TSB paths; do so now.
6150Sstevel@tonic-gate 		 */
6160Sstevel@tonic-gate 		/*CONSTCOND*/
6170Sstevel@tonic-gate 		ASSERT(offsetof(tstat_tlbret_t, ttlbr_ktsb) -
6180Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_ktlb) ==
6190Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_utsb) -
6200Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_utlb));
6210Sstevel@tonic-gate 
6220Sstevel@tonic-gate 		simm13 = offsetof(tstat_tlbret_t, ttlbr_ktsb) -
6230Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_ktlb);
6240Sstevel@tonic-gate 
6250Sstevel@tonic-gate 		for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) {
6260Sstevel@tonic-gate 			ASSERT(ep->tpe_instr == 0);
6270Sstevel@tonic-gate 			instr = ep->tpe_instr = *ep->tpe_addr;
6280Sstevel@tonic-gate 
6290Sstevel@tonic-gate 			/*
6300Sstevel@tonic-gate 			 * Assert that the instruction we're about to patch is
6310Sstevel@tonic-gate 			 * "add %g7, 0, %g7" (0x8e01e000).
6320Sstevel@tonic-gate 			 */
6330Sstevel@tonic-gate 			ASSERT(instr == TSTAT_TSBMISS_INSTR);
6340Sstevel@tonic-gate 
6350Sstevel@tonic-gate 			instr |= simm13;
6360Sstevel@tonic-gate 			hot_patch_kernel_text((caddr_t)ep->tpe_addr,
6370Sstevel@tonic-gate 			    instr, sizeof (instr));
6380Sstevel@tonic-gate 		}
6390Sstevel@tonic-gate 
6400Sstevel@tonic-gate 		tstat_tsbmiss_patched = 1;
6410Sstevel@tonic-gate 
6420Sstevel@tonic-gate 	} else {
6430Sstevel@tonic-gate 		/*
6440Sstevel@tonic-gate 		 * Remove patches from the TSB paths.
6450Sstevel@tonic-gate 		 */
6460Sstevel@tonic-gate 		for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) {
6470Sstevel@tonic-gate 			ASSERT(ep->tpe_instr == TSTAT_TSBMISS_INSTR);
6480Sstevel@tonic-gate 			hot_patch_kernel_text((caddr_t)ep->tpe_addr,
6490Sstevel@tonic-gate 			    ep->tpe_instr, sizeof (instr));
6500Sstevel@tonic-gate 			ep->tpe_instr = 0;
6510Sstevel@tonic-gate 		}
6520Sstevel@tonic-gate 
6530Sstevel@tonic-gate 		tstat_tsbmiss_patched = 0;
6540Sstevel@tonic-gate 	}
6550Sstevel@tonic-gate }
6560Sstevel@tonic-gate 
6570Sstevel@tonic-gate /*
6580Sstevel@tonic-gate  * This is the routine executed to clock the performance of the trap table,
6590Sstevel@tonic-gate  * executed both before and after interposing on the trap table to attempt to
6600Sstevel@tonic-gate  * determine probe effect.  The probe effect is used to adjust the "%tim"
6610Sstevel@tonic-gate  * fields of trapstat's -t and -T output; we only use TLB misses to clock the
6620Sstevel@tonic-gate  * trap table.  We execute the inner loop (which is designed to exceed the
6630Sstevel@tonic-gate  * TLB's reach) nlaps times, taking the best time as our time (thereby
6640Sstevel@tonic-gate  * factoring out the effects of interrupts, cache misses or other perturbing
6650Sstevel@tonic-gate  * events.
6660Sstevel@tonic-gate  */
6670Sstevel@tonic-gate static hrtime_t
6680Sstevel@tonic-gate trapstat_probe_laps(int nlaps, hrtime_t *buf)
6690Sstevel@tonic-gate {
6700Sstevel@tonic-gate 	int i, j = 0;
6710Sstevel@tonic-gate 	hrtime_t ts, best = INT64_MAX;
6720Sstevel@tonic-gate 
6730Sstevel@tonic-gate 	while (nlaps--) {
6740Sstevel@tonic-gate 		ts = rdtick();
6750Sstevel@tonic-gate 
6760Sstevel@tonic-gate 		for (i = 0; i < TSTAT_PROBE_SIZE; i += MMU_PAGESIZE)
6770Sstevel@tonic-gate 			*((volatile char *)&tstat_probe_area[i]);
6780Sstevel@tonic-gate 
6790Sstevel@tonic-gate 		if ((ts = rdtick() - ts) < best)
6800Sstevel@tonic-gate 			best = ts;
6810Sstevel@tonic-gate 		buf[j++] = ts;
6820Sstevel@tonic-gate 	}
6830Sstevel@tonic-gate 
6840Sstevel@tonic-gate 	return (best);
6850Sstevel@tonic-gate }
6860Sstevel@tonic-gate 
6870Sstevel@tonic-gate /*
6880Sstevel@tonic-gate  * This routine determines the probe effect by calling trapstat_probe_laps()
6890Sstevel@tonic-gate  * both without and with the interposing trap table.  Note that this is
6900Sstevel@tonic-gate  * called from a cross call on the desired CPU, and that it is called on
6910Sstevel@tonic-gate  * every CPU (this is necessary because the probe effect may differ from
6920Sstevel@tonic-gate  * one CPU to another).
6930Sstevel@tonic-gate  */
6940Sstevel@tonic-gate static void
6950Sstevel@tonic-gate trapstat_probe()
6960Sstevel@tonic-gate {
6970Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
6980Sstevel@tonic-gate 	hrtime_t before, after;
6990Sstevel@tonic-gate 
7000Sstevel@tonic-gate 	if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED))
7010Sstevel@tonic-gate 		return;
7020Sstevel@tonic-gate 
7030Sstevel@tonic-gate 	if (tstat_probe_area == NULL || (tstat_options & TSTAT_OPT_NOGO))
7040Sstevel@tonic-gate 		return;
7050Sstevel@tonic-gate 
7060Sstevel@tonic-gate 	/*
7070Sstevel@tonic-gate 	 * We very much expect the %tba to be KERNELBASE; this is a
7080Sstevel@tonic-gate 	 * precautionary measure to assure that trapstat doesn't melt the
7090Sstevel@tonic-gate 	 * machine should the %tba point unexpectedly elsewhere.
7100Sstevel@tonic-gate 	 */
7110Sstevel@tonic-gate 	if (get_tba() != (caddr_t)KERNELBASE)
7120Sstevel@tonic-gate 		return;
7130Sstevel@tonic-gate 
7140Sstevel@tonic-gate 	/*
7150Sstevel@tonic-gate 	 * Preserve this CPU's data before destroying it by enabling the
7160Sstevel@tonic-gate 	 * interposing trap table.  We can safely use tstat_buffer because
7170Sstevel@tonic-gate 	 * the caller of the trapstat_probe() cross call is holding tstat_lock.
7180Sstevel@tonic-gate 	 */
7190Sstevel@tonic-gate 	bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size);
7200Sstevel@tonic-gate 
7210Sstevel@tonic-gate 	tstat_probe_time = gethrtime();
7220Sstevel@tonic-gate 
7230Sstevel@tonic-gate 	before = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_before);
7240Sstevel@tonic-gate 	(void) set_tba(tcpu->tcpu_ibase);
7250Sstevel@tonic-gate 
7260Sstevel@tonic-gate 	after = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_after);
7270Sstevel@tonic-gate 	(void) set_tba((caddr_t)KERNELBASE);
7280Sstevel@tonic-gate 
7290Sstevel@tonic-gate 	tstat_probe_time = gethrtime() - tstat_probe_time;
7300Sstevel@tonic-gate 
7310Sstevel@tonic-gate 	bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size);
7320Sstevel@tonic-gate 	tcpu->tcpu_data->tdata_peffect = (after - before) / TSTAT_PROBE_NPAGES;
7330Sstevel@tonic-gate }
7340Sstevel@tonic-gate 
7350Sstevel@tonic-gate static void
7360Sstevel@tonic-gate trapstat_probe_alloc()
7370Sstevel@tonic-gate {
7380Sstevel@tonic-gate 	pfn_t pfn;
7390Sstevel@tonic-gate 	caddr_t va;
7400Sstevel@tonic-gate 	int i;
7410Sstevel@tonic-gate 
7420Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
7430Sstevel@tonic-gate 	ASSERT(tstat_probe_area == NULL);
7440Sstevel@tonic-gate 	ASSERT(tstat_probe_phys == NULL);
7450Sstevel@tonic-gate 
7460Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_TLBDATA))
7470Sstevel@tonic-gate 		return;
7480Sstevel@tonic-gate 
7490Sstevel@tonic-gate 	/*
7500Sstevel@tonic-gate 	 * Grab some virtual from the heap arena.
7510Sstevel@tonic-gate 	 */
7520Sstevel@tonic-gate 	tstat_probe_area = vmem_alloc(heap_arena, TSTAT_PROBE_SIZE, VM_SLEEP);
7530Sstevel@tonic-gate 	va = tstat_probe_area;
7540Sstevel@tonic-gate 
7550Sstevel@tonic-gate 	/*
7560Sstevel@tonic-gate 	 * Grab a single physical page.
7570Sstevel@tonic-gate 	 */
7580Sstevel@tonic-gate 	tstat_probe_phys = vmem_alloc(tstat_arena, MMU_PAGESIZE, VM_SLEEP);
7590Sstevel@tonic-gate 	pfn = hat_getpfnum(kas.a_hat, tstat_probe_phys);
7600Sstevel@tonic-gate 
7610Sstevel@tonic-gate 	/*
7620Sstevel@tonic-gate 	 * Now set the translation for every page in our virtual range
7630Sstevel@tonic-gate 	 * to be our allocated physical page.
7640Sstevel@tonic-gate 	 */
7650Sstevel@tonic-gate 	for (i = 0; i < TSTAT_PROBE_NPAGES; i++) {
7660Sstevel@tonic-gate 		hat_devload(kas.a_hat, va, MMU_PAGESIZE, pfn, PROT_READ,
7670Sstevel@tonic-gate 		    HAT_LOAD_NOCONSIST | HAT_LOAD_LOCK);
7680Sstevel@tonic-gate 		va += MMU_PAGESIZE;
7690Sstevel@tonic-gate 	}
7700Sstevel@tonic-gate }
7710Sstevel@tonic-gate 
7720Sstevel@tonic-gate static void
7730Sstevel@tonic-gate trapstat_probe_free()
7740Sstevel@tonic-gate {
7750Sstevel@tonic-gate 	caddr_t va;
7760Sstevel@tonic-gate 	int i;
7770Sstevel@tonic-gate 
7780Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
7790Sstevel@tonic-gate 
7800Sstevel@tonic-gate 	if ((va = tstat_probe_area) == NULL)
7810Sstevel@tonic-gate 		return;
7820Sstevel@tonic-gate 
7830Sstevel@tonic-gate 	for (i = 0; i < TSTAT_PROBE_NPAGES; i++) {
7840Sstevel@tonic-gate 		hat_unload(kas.a_hat, va, MMU_PAGESIZE, HAT_UNLOAD_UNLOCK);
7850Sstevel@tonic-gate 		va += MMU_PAGESIZE;
7860Sstevel@tonic-gate 	}
7870Sstevel@tonic-gate 
7880Sstevel@tonic-gate 	vmem_free(tstat_arena, tstat_probe_phys, MMU_PAGESIZE);
7890Sstevel@tonic-gate 	vmem_free(heap_arena, tstat_probe_area, TSTAT_PROBE_SIZE);
7900Sstevel@tonic-gate 
7910Sstevel@tonic-gate 	tstat_probe_phys = NULL;
7920Sstevel@tonic-gate 	tstat_probe_area = NULL;
7930Sstevel@tonic-gate }
7940Sstevel@tonic-gate 
7950Sstevel@tonic-gate /*
7960Sstevel@tonic-gate  * This routine actually enables a CPU by setting its %tba to be the
7970Sstevel@tonic-gate  * CPU's interposing trap table.  It is called out of cross call context.
7980Sstevel@tonic-gate  */
7990Sstevel@tonic-gate static void
8000Sstevel@tonic-gate trapstat_enable()
8010Sstevel@tonic-gate {
8020Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
8030Sstevel@tonic-gate 
8040Sstevel@tonic-gate 	if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED))
8050Sstevel@tonic-gate 		return;
8060Sstevel@tonic-gate 
8070Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
8080Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
8090Sstevel@tonic-gate 
8100Sstevel@tonic-gate 	if (get_tba() != (caddr_t)KERNELBASE)
8110Sstevel@tonic-gate 		return;
8120Sstevel@tonic-gate 
8130Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_NOGO))
8140Sstevel@tonic-gate 		(void) set_tba(tcpu->tcpu_ibase);
8150Sstevel@tonic-gate 	tcpu->tcpu_flags |= TSTAT_CPU_ENABLED;
8160Sstevel@tonic-gate #ifdef sun4v
8170Sstevel@tonic-gate 	if (tstat_options & (TSTAT_OPT_TLBDATA | TSTAT_OPT_NOGO)) {
8180Sstevel@tonic-gate 		/*
8190Sstevel@tonic-gate 		 * On sun4v platforms, TLB misses are normally handled by the
8200Sstevel@tonic-gate 		 * hypervisor or the hardware -- provided one or more TSBs
8210Sstevel@tonic-gate 		 * have been setup and communicated via hv_set_ctx0 and
8220Sstevel@tonic-gate 		 * hv_set_nonctx0 API.  However, as part of collecting TLB
8230Sstevel@tonic-gate 		 * statistics, we disabled this miss processing by telling the
8240Sstevel@tonic-gate 		 * hypervisor that there was not a TSB; we now need to
8250Sstevel@tonic-gate 		 * communicate the proper kernel/user TSB information to
8260Sstevel@tonic-gate 		 * resume efficient operation.
8270Sstevel@tonic-gate 		 *
8280Sstevel@tonic-gate 		 * While we restore kernel TSB information immediately, to
8290Sstevel@tonic-gate 		 * avoid any locking dependency, we don't restore user TSB
8300Sstevel@tonic-gate 		 * information right away.  Rather, we simply clear the
8310Sstevel@tonic-gate 		 * TSTAT_TLB_STATS flag so that the user TSB information is
8320Sstevel@tonic-gate 		 * automatically restored on the next context switch.
8330Sstevel@tonic-gate 		 *
8340Sstevel@tonic-gate 		 * Note that the call to restore kernel TSB information is not
8350Sstevel@tonic-gate 		 * expected to fail.  Even in the event of failure, the system
8360Sstevel@tonic-gate 		 * will still continue to function properly, if in a state of
8370Sstevel@tonic-gate 		 * reduced performance due to the guest kernel handling all
8380Sstevel@tonic-gate 		 * TLB misses.
8390Sstevel@tonic-gate 		 */
8400Sstevel@tonic-gate 		cpu_t *cp = CPU;
8410Sstevel@tonic-gate 
8420Sstevel@tonic-gate 		cp->cpu_m.cpu_tstat_flags |= TSTAT_TLB_STATS;
8430Sstevel@tonic-gate 		(void) hv_set_ctx0(NULL, NULL);
8440Sstevel@tonic-gate 		(void) hv_set_ctxnon0(NULL, NULL);
8450Sstevel@tonic-gate 	}
8460Sstevel@tonic-gate #endif
8470Sstevel@tonic-gate }
8480Sstevel@tonic-gate 
8490Sstevel@tonic-gate /*
8500Sstevel@tonic-gate  * This routine disables a CPU (vis a vis trapstat) by setting its %tba to be
8510Sstevel@tonic-gate  * the actual, underlying trap table.  It is called out of cross call context.
8520Sstevel@tonic-gate  */
8530Sstevel@tonic-gate static void
8540Sstevel@tonic-gate trapstat_disable()
8550Sstevel@tonic-gate {
8560Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
8570Sstevel@tonic-gate 
8580Sstevel@tonic-gate 	if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
8590Sstevel@tonic-gate 		return;
8600Sstevel@tonic-gate 
8610Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
8620Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
8630Sstevel@tonic-gate 
8640Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_NOGO))
8650Sstevel@tonic-gate 		(void) set_tba((caddr_t)KERNELBASE);
8660Sstevel@tonic-gate 
8670Sstevel@tonic-gate 	tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED;
8680Sstevel@tonic-gate 
8690Sstevel@tonic-gate #ifdef sun4v
8700Sstevel@tonic-gate 	if (tstat_options & (TSTAT_OPT_TLBDATA | TSTAT_OPT_NOGO)) {
8710Sstevel@tonic-gate 		/*
8720Sstevel@tonic-gate 		 * On sun4v platforms, TlB misses are normally handled by
8730Sstevel@tonic-gate 		 * the hypervisor or the hardware provided one or more TSBs
8740Sstevel@tonic-gate 		 * have been setup and communicated via hv_set_ctx0 and
8750Sstevel@tonic-gate 		 * hv_set_nonctx0 API. However, as part of collecting TLB
8760Sstevel@tonic-gate 		 * statistics, we disabled that by faking NO TSB and we
8770Sstevel@tonic-gate 		 * need to communicate proper kernel/user TSB information
8780Sstevel@tonic-gate 		 * so that TLB misses can be handled by the hypervisor or
8790Sstevel@tonic-gate 		 * the hardware more efficiently.
8800Sstevel@tonic-gate 		 *
8810Sstevel@tonic-gate 		 * We restore kernel TSB information right away. However,
8820Sstevel@tonic-gate 		 * to minimize any locking dependency, we don't restore
8830Sstevel@tonic-gate 		 * user TSB information right away. Instead, we simply
8840Sstevel@tonic-gate 		 * clear the TSTAT_TLB_STATS flag so that the user TSB
8850Sstevel@tonic-gate 		 * information is automatically restored on next context
8860Sstevel@tonic-gate 		 * switch.
8870Sstevel@tonic-gate 		 *
8880Sstevel@tonic-gate 		 * Note that the call to restore kernel TSB information
8890Sstevel@tonic-gate 		 * will normally not fail, unless wrong information is
8900Sstevel@tonic-gate 		 * passed here. In that scenario, system will still
8910Sstevel@tonic-gate 		 * continue to function properly with the exception of
8920Sstevel@tonic-gate 		 * kernel handling all the TLB misses.
8930Sstevel@tonic-gate 		 */
8940Sstevel@tonic-gate 		struct hv_tsb_block *hvbp = &ksfmmup->sfmmu_hvblock;
8950Sstevel@tonic-gate 		cpu_t *cp = CPU;
8960Sstevel@tonic-gate 
8970Sstevel@tonic-gate 		cp->cpu_m.cpu_tstat_flags &= ~TSTAT_TLB_STATS;
8980Sstevel@tonic-gate 		(void) hv_set_ctx0(hvbp->hv_tsb_info_cnt, hvbp->hv_tsb_info_pa);
8990Sstevel@tonic-gate 	}
9000Sstevel@tonic-gate #endif
9010Sstevel@tonic-gate }
9020Sstevel@tonic-gate 
9030Sstevel@tonic-gate /*
9040Sstevel@tonic-gate  * We use %tick as the time base when recording the time spent executing
9050Sstevel@tonic-gate  * the trap handler.  %tick, however, is not necessarily kept in sync
9060Sstevel@tonic-gate  * across CPUs (indeed, different CPUs may have different %tick frequencies).
9070Sstevel@tonic-gate  * We therefore cross call onto a CPU to get a snapshot of its data to
9080Sstevel@tonic-gate  * copy out; this is the routine executed out of that cross call.
9090Sstevel@tonic-gate  */
9100Sstevel@tonic-gate static void
9110Sstevel@tonic-gate trapstat_snapshot()
9120Sstevel@tonic-gate {
9130Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
9140Sstevel@tonic-gate 	tstat_data_t *data = tcpu->tcpu_data;
9150Sstevel@tonic-gate 
9160Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
9170Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
9180Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ENABLED);
9190Sstevel@tonic-gate 
9200Sstevel@tonic-gate 	data->tdata_snapts = gethrtime();
9210Sstevel@tonic-gate 	data->tdata_snaptick = rdtick();
9220Sstevel@tonic-gate 	bcopy(data, tstat_buffer, tstat_data_t_size);
9230Sstevel@tonic-gate }
9240Sstevel@tonic-gate 
9250Sstevel@tonic-gate /*
9260Sstevel@tonic-gate  * The TSTAT_RETENT_* constants define offsets in the TLB return entry.
9270Sstevel@tonic-gate  * They are used only in trapstat_tlbretent() (below) and #undef'd
9280Sstevel@tonic-gate  * immediately afterwards.  Any change to "retent" in trapstat_tlbretent()
9290Sstevel@tonic-gate  * will likely require changes to these constants.
9300Sstevel@tonic-gate  */
9310Sstevel@tonic-gate 
9320Sstevel@tonic-gate #ifndef	sun4v
9330Sstevel@tonic-gate #define	TSTAT_RETENT_STATHI	1
9340Sstevel@tonic-gate #define	TSTAT_RETENT_STATLO	2
9350Sstevel@tonic-gate #define	TSTAT_RETENT_SHIFT	8
9360Sstevel@tonic-gate #define	TSTAT_RETENT_COUNT_LD	10
9370Sstevel@tonic-gate #define	TSTAT_RETENT_COUNT_ST	12
9380Sstevel@tonic-gate #define	TSTAT_RETENT_TMPTSHI	13
9390Sstevel@tonic-gate #define	TSTAT_RETENT_TMPTSLO	14
9400Sstevel@tonic-gate #define	TSTAT_RETENT_TIME_LD	16
9410Sstevel@tonic-gate #define	TSTAT_RETENT_TIME_ST	18
9420Sstevel@tonic-gate #else /* sun4v */
9430Sstevel@tonic-gate #define	TSTAT_RETENT_STATHI	1
9440Sstevel@tonic-gate #define	TSTAT_RETENT_STATLO	2
9450Sstevel@tonic-gate #define	TSTAT_RETENT_SHIFT	5
9460Sstevel@tonic-gate #define	TSTAT_RETENT_COUNT_LD	7
9470Sstevel@tonic-gate #define	TSTAT_RETENT_COUNT_ST	9
9480Sstevel@tonic-gate #define	TSTAT_RETENT_TMPTSHI	10
9490Sstevel@tonic-gate #define	TSTAT_RETENT_TMPTSLO	11
9500Sstevel@tonic-gate #define	TSTAT_RETENT_TIME_LD	13
9510Sstevel@tonic-gate #define	TSTAT_RETENT_TIME_ST	15
9520Sstevel@tonic-gate #endif /* sun4v */
9530Sstevel@tonic-gate 
9540Sstevel@tonic-gate static void
9550Sstevel@tonic-gate trapstat_tlbretent(tstat_percpu_t *tcpu, tstat_tlbretent_t *ret,
9560Sstevel@tonic-gate     tstat_missdata_t *data)
9570Sstevel@tonic-gate {
9580Sstevel@tonic-gate 	uint32_t *ent = ret->ttlbrent_instr, shift;
9590Sstevel@tonic-gate 	uintptr_t base, tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick);
9600Sstevel@tonic-gate 
9610Sstevel@tonic-gate 	/*
9620Sstevel@tonic-gate 	 * This is the entry executed upon return from the TLB/TSB miss
9630Sstevel@tonic-gate 	 * handler (i.e. the code interpositioned between the "retry" and
9640Sstevel@tonic-gate 	 * the actual return to the TLB-missing instruction).  Detail on its
9650Sstevel@tonic-gate 	 * theory of operation can be found in the "TLB Statistics" section
9660Sstevel@tonic-gate 	 * of the block comment.  Note that we expect the TTE just loaded
9670Sstevel@tonic-gate 	 * into the TLB to be in %g5; all other globals are available as
9680Sstevel@tonic-gate 	 * scratch.  Finally, note that the page size information in sun4v is
9690Sstevel@tonic-gate 	 * located in the lower bits of the TTE -- requiring us to have a
9700Sstevel@tonic-gate 	 * different return entry on sun4v.
9710Sstevel@tonic-gate 	 */
9720Sstevel@tonic-gate 	static const uint32_t retent[TSTAT_TLBRET_NINSTR] = {
9730Sstevel@tonic-gate #ifndef sun4v
9740Sstevel@tonic-gate 	    0x87410000,		/* rd    %tick, %g3			*/
9750Sstevel@tonic-gate 	    0x03000000, 	/* sethi %hi(stat), %g1			*/
9760Sstevel@tonic-gate 	    0x82106000,		/* or    %g1, %lo(stat), %g1		*/
9770Sstevel@tonic-gate 	    0x89297001,		/* sllx  %g5, 1, %g4			*/
9780Sstevel@tonic-gate 	    0x8931303e,		/* srlx  %g4, 62, %g4			*/
9790Sstevel@tonic-gate 	    0x8531702e,		/* srlx  %g5, 46, %g2			*/
9800Sstevel@tonic-gate 	    0x8408a004,		/* and   %g2, 4, %g2			*/
9810Sstevel@tonic-gate 	    0x88110002,		/* or    %g4, %g2, %g4			*/
9820Sstevel@tonic-gate 	    0x89292000,		/* sll   %g4, shift, %g4		*/
9830Sstevel@tonic-gate 	    0x82004004,		/* add   %g1, %g4, %g1			*/
9840Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_count], %g2	*/
9850Sstevel@tonic-gate 	    0x8400a001,		/* add   %g2, 1, %g2			*/
9860Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_count]	*/
9870Sstevel@tonic-gate 	    0x0d000000, 	/* sethi %hi(tdata_tmptick), %g6	*/
9880Sstevel@tonic-gate 	    0xc459a000, 	/* ldx   [%g6 + %lo(tdata_tmptick)], %g2 */
9890Sstevel@tonic-gate 	    0x8620c002,		/* sub   %g3, %g2, %g3			*/
9900Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_time], %g2	*/
9910Sstevel@tonic-gate 	    0x84008003,		/* add   %g2, %g3, %g2			*/
9920Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_time]	*/
9930Sstevel@tonic-gate 	    0x83f00000		/* retry				*/
9940Sstevel@tonic-gate #else /* sun4v */
9950Sstevel@tonic-gate 	    0x87410000,		/* rd    %tick, %g3			*/
9960Sstevel@tonic-gate 	    0x03000000, 	/* sethi %hi(stat), %g1			*/
9970Sstevel@tonic-gate 	    0x82106000,		/* or    %g1, %lo(stat), %g1		*/
9980Sstevel@tonic-gate 	    0x8929703d,		/* sllx  %g5, 61, %g4			*/
9990Sstevel@tonic-gate 	    0x8931303d,		/* srlx  %g4, 61, %g4			*/
10000Sstevel@tonic-gate 	    0x89292000,		/* sll   %g4, shift, %g4		*/
10010Sstevel@tonic-gate 	    0x82004004,		/* add   %g1, %g4, %g1			*/
10020Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_count], %g2	*/
10030Sstevel@tonic-gate 	    0x8400a001,		/* add   %g2, 1, %g2			*/
10040Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_count]	*/
10050Sstevel@tonic-gate 	    0x0d000000, 	/* sethi %hi(tdata_tmptick), %g6	*/
10060Sstevel@tonic-gate 	    0xc459a000, 	/* ldx   [%g6 + %lo(tdata_tmptick)], %g2 */
10070Sstevel@tonic-gate 	    0x8620c002,		/* sub   %g3, %g2, %g3			*/
10080Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_time], %g2	*/
10090Sstevel@tonic-gate 	    0x84008003,		/* add   %g2, %g3, %g2			*/
10100Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_time]	*/
10110Sstevel@tonic-gate 	    0x83f00000		/* retry				*/
10120Sstevel@tonic-gate #endif /* sun4v */
10130Sstevel@tonic-gate 	};
10140Sstevel@tonic-gate 
10150Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
10160Sstevel@tonic-gate 	/*CONSTCOND*/
10170Sstevel@tonic-gate 	ASSERT(offsetof(tstat_missdata_t, tmiss_count) <= LO10(-1));
10180Sstevel@tonic-gate 	/*CONSTCOND*/
10190Sstevel@tonic-gate 	ASSERT(offsetof(tstat_missdata_t, tmiss_time) <= LO10(-1));
10200Sstevel@tonic-gate 	/*CONSTCOND*/
10210Sstevel@tonic-gate 	ASSERT(!((sizeof (tstat_pgszdata_t) - 1) & sizeof (tstat_pgszdata_t)));
10220Sstevel@tonic-gate 
10230Sstevel@tonic-gate 	for (shift = 1; (1 << shift) != sizeof (tstat_pgszdata_t); shift++)
10240Sstevel@tonic-gate 		continue;
10250Sstevel@tonic-gate 
10260Sstevel@tonic-gate 	base = (uintptr_t)tcpu->tcpu_dbase +
10270Sstevel@tonic-gate 	    ((uintptr_t)data - (uintptr_t)tcpu->tcpu_data);
10280Sstevel@tonic-gate 
10290Sstevel@tonic-gate 	bcopy(retent, ent, sizeof (retent));
10300Sstevel@tonic-gate 
10310Sstevel@tonic-gate 	ent[TSTAT_RETENT_STATHI] |= HI22(base);
10320Sstevel@tonic-gate 	ent[TSTAT_RETENT_STATLO] |= LO10(base);
10330Sstevel@tonic-gate 	ent[TSTAT_RETENT_SHIFT] |= shift;
10340Sstevel@tonic-gate 	/* LINTED E_EXPR_NULL_EFFECT */
10350Sstevel@tonic-gate 	ent[TSTAT_RETENT_COUNT_LD] |= offsetof(tstat_missdata_t, tmiss_count);
10360Sstevel@tonic-gate 	/* LINTED E_EXPR_NULL_EFFECT */
10370Sstevel@tonic-gate 	ent[TSTAT_RETENT_COUNT_ST] |= offsetof(tstat_missdata_t, tmiss_count);
10380Sstevel@tonic-gate 	ent[TSTAT_RETENT_TMPTSHI] |= HI22(tmptick);
10390Sstevel@tonic-gate 	ent[TSTAT_RETENT_TMPTSLO] |= LO10(tmptick);
10400Sstevel@tonic-gate 	ent[TSTAT_RETENT_TIME_LD] |= offsetof(tstat_missdata_t, tmiss_time);
10410Sstevel@tonic-gate 	ent[TSTAT_RETENT_TIME_ST] |= offsetof(tstat_missdata_t, tmiss_time);
10420Sstevel@tonic-gate }
10430Sstevel@tonic-gate 
10440Sstevel@tonic-gate #undef TSTAT_RETENT_STATHI
10450Sstevel@tonic-gate #undef TSTAT_RETENT_STATLO
10460Sstevel@tonic-gate #undef TSTAT_RETENT_SHIFT
10470Sstevel@tonic-gate #undef TSTAT_RETENT_COUNT_LD
10480Sstevel@tonic-gate #undef TSTAT_RETENT_COUNT_ST
10490Sstevel@tonic-gate #undef TSTAT_RETENT_TMPTSHI
10500Sstevel@tonic-gate #undef TSTAT_RETENT_TMPTSLO
10510Sstevel@tonic-gate #undef TSTAT_RETENT_TIME_LD
10520Sstevel@tonic-gate #undef TSTAT_RETENT_TIME_ST
10530Sstevel@tonic-gate 
10540Sstevel@tonic-gate /*
10550Sstevel@tonic-gate  * The TSTAT_TLBENT_* constants define offsets in the TLB entry.  They are
10560Sstevel@tonic-gate  * used only in trapstat_tlbent() (below) and #undef'd immediately afterwards.
10570Sstevel@tonic-gate  * Any change to "tlbent" in trapstat_tlbent() will likely require changes
10580Sstevel@tonic-gate  * to these constants.
10590Sstevel@tonic-gate  */
10600Sstevel@tonic-gate 
10610Sstevel@tonic-gate #ifndef sun4v
10620Sstevel@tonic-gate #define	TSTAT_TLBENT_STATHI	0
10630Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_LD	1
10640Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_ST	3
10650Sstevel@tonic-gate #define	TSTAT_TLBENT_MMUASI	15
10660Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCHI	18
10670Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_USER	19
10680Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_KERN	21
10690Sstevel@tonic-gate #define	TSTAT_TLBENT_TSHI	25
10700Sstevel@tonic-gate #define	TSTAT_TLBENT_TSLO	27
10710Sstevel@tonic-gate #define	TSTAT_TLBENT_BA		28
10720Sstevel@tonic-gate #else /* sun4v */
10730Sstevel@tonic-gate #define	TSTAT_TLBENT_STATHI	0
10740Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_LD	1
10750Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_ST	3
10760Sstevel@tonic-gate #define	TSTAT_TLBENT_TAGTARGET	19
10770Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCHI	21
10780Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_USER	22
10790Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_KERN	24
10800Sstevel@tonic-gate #define	TSTAT_TLBENT_TSHI	28
10810Sstevel@tonic-gate #define	TSTAT_TLBENT_TSLO	30
10820Sstevel@tonic-gate #define	TSTAT_TLBENT_BA		31
10830Sstevel@tonic-gate #endif /* sun4v */
10840Sstevel@tonic-gate 
10850Sstevel@tonic-gate static void
10860Sstevel@tonic-gate trapstat_tlbent(tstat_percpu_t *tcpu, int entno)
10870Sstevel@tonic-gate {
10880Sstevel@tonic-gate 	uint32_t *ent;
10890Sstevel@tonic-gate 	uintptr_t orig, va, baoffs;
10900Sstevel@tonic-gate 	int itlb = entno == TSTAT_ENT_ITLBMISS;
10910Sstevel@tonic-gate 	int entoffs = entno << TSTAT_ENT_SHIFT;
10920Sstevel@tonic-gate 	uintptr_t tmptick, stat, tpc, utpc;
10930Sstevel@tonic-gate 	tstat_pgszdata_t *data = &tcpu->tcpu_data->tdata_pgsz[0];
10940Sstevel@tonic-gate 	tstat_tlbdata_t *udata, *kdata;
10950Sstevel@tonic-gate 	tstat_tlbret_t *ret;
10960Sstevel@tonic-gate #ifndef sun4v
10970Sstevel@tonic-gate 	uint32_t asi = itlb ? ASI(ASI_IMMU) : ASI(ASI_DMMU);
10980Sstevel@tonic-gate #else
10990Sstevel@tonic-gate 	uint32_t tagtarget_off = itlb ? MMFSA_I_CTX : MMFSA_D_CTX;
11000Sstevel@tonic-gate #endif
11010Sstevel@tonic-gate 
11020Sstevel@tonic-gate 	/*
11030Sstevel@tonic-gate 	 * When trapstat is run with TLB statistics, this is the entry for
11040Sstevel@tonic-gate 	 * both I- and D-TLB misses; this code performs trap level pushing,
11050Sstevel@tonic-gate 	 * as described in the "TLB Statistics" section of the block comment.
11060Sstevel@tonic-gate 	 * This code is executing at TL 1; %tstate[0] contains the saved
11070Sstevel@tonic-gate 	 * state at the time of the TLB miss.  Pushing trap level 1 (and thus
11080Sstevel@tonic-gate 	 * raising TL to 2) requires us to fill in %tstate[1] with our %pstate,
11090Sstevel@tonic-gate 	 * %cwp and %asi.  We leave %tt unchanged, and we set %tpc and %tnpc to
11100Sstevel@tonic-gate 	 * the appropriate TLB return entry (based on the context of the miss).
11110Sstevel@tonic-gate 	 * Finally, we sample %tick, and stash it in the tdata_tmptick member
11120Sstevel@tonic-gate 	 * the per-CPU tstat_data structure.  tdata_tmptick will be used in
11130Sstevel@tonic-gate 	 * the TLB return entry to determine the amount of time spent in the
11140Sstevel@tonic-gate 	 * TLB miss handler.
11150Sstevel@tonic-gate 	 *
1116*158Sgirish 	 * Note that on sun4v platforms, we must obtain the context information
1117*158Sgirish 	 * from the MMU fault status area. (The base address of this MMU fault
1118*158Sgirish 	 * status area is kept in the scratchpad register 0.)
11190Sstevel@tonic-gate 	 */
11200Sstevel@tonic-gate 	static const uint32_t tlbent[] = {
11210Sstevel@tonic-gate #ifndef sun4v
11220Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
11230Sstevel@tonic-gate 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
11240Sstevel@tonic-gate 	    0x8400a001,			/* add   %g2, 1, %g2		*/
11250Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
11260Sstevel@tonic-gate 	    0x85524000,			/* rdpr  %cwp, %g2		*/
11270Sstevel@tonic-gate 	    0x87518000,			/* rdpr  %pstate, %g3		*/
11280Sstevel@tonic-gate 	    0x8728f008,			/* sllx  %g3, 8, %g3		*/
11290Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11300Sstevel@tonic-gate 	    0x8740c000,			/* rd    %asi, %g3		*/
11310Sstevel@tonic-gate 	    0x8728f018,			/* sllx  %g3, 24, %g3		*/
11320Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11330Sstevel@tonic-gate 	    0x8350c000,			/* rdpr  %tt, %g1		*/
11340Sstevel@tonic-gate 	    0x8f902002,			/* wrpr  %g0, 2, %tl		*/
11350Sstevel@tonic-gate 	    0x85908000,			/* wrpr  %g2, %g0, %tstate	*/
11360Sstevel@tonic-gate 	    0x87904000,			/* wrpr  %g1, %g0, %tt		*/
11370Sstevel@tonic-gate 	    0xc2d80000,			/* ldxa  [%g0]ASI_MMU, %g1	*/
11380Sstevel@tonic-gate 	    0x83307030,			/* srlx  %g1, CTXSHIFT, %g1	*/
11390Sstevel@tonic-gate 	    0x02c04004,			/* brz,pn %g1, .+0x10		*/
11400Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(new_tpc), %g1	*/
11410Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
11420Sstevel@tonic-gate 	    0x30800002,			/* ba,a  .+0x8			*/
11430Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
11440Sstevel@tonic-gate 	    0x81904000,			/* wrpr  %g1, %g0, %tpc		*/
11450Sstevel@tonic-gate 	    0x82006004,			/* add   %g1, 4, %g1		*/
11460Sstevel@tonic-gate 	    0x83904000,			/* wrpr  %g1, %g0, %tnpc	*/
11470Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(tmptick), %g1	*/
11480Sstevel@tonic-gate 	    0x85410000,			/* rd    %tick, %g2		*/
11490Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(tmptick)] */
11500Sstevel@tonic-gate 	    0x30800000,			/* ba,a  addr			*/
11510Sstevel@tonic-gate 	    NOP, NOP, NOP
11520Sstevel@tonic-gate #else /* sun4v */
11530Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
11540Sstevel@tonic-gate 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
11550Sstevel@tonic-gate 	    0x8400a001,			/* add   %g2, 1, %g2		*/
11560Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
11570Sstevel@tonic-gate 	    0x85524000,			/* rdpr  %cwp, %g2		*/
11580Sstevel@tonic-gate 	    0x87518000,			/* rdpr  %pstate, %g3		*/
11590Sstevel@tonic-gate 	    0x8728f008,			/* sllx  %g3, 8, %g3		*/
11600Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11610Sstevel@tonic-gate 	    0x8740c000,			/* rd    %asi, %g3		*/
1162*158Sgirish 	    0x8728f018,			/* sllx  %g3, 24, %g3		*/
1163*158Sgirish 	    0x83540000,			/* rdpr  %gl, %g1		*/
1164*158Sgirish 	    0x83287028,			/* sllx  %g1, 40, %g1		*/
11650Sstevel@tonic-gate 	    0x86104003,			/* or    %g1, %g3, %g3		*/
11660Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11670Sstevel@tonic-gate 	    0x8350c000,			/* rdpr  %tt, %g1		*/
11680Sstevel@tonic-gate 	    0x8f902002,			/* wrpr  %g0, 2, %tl		*/
11690Sstevel@tonic-gate 	    0x85908000,			/* wrpr  %g2, %g0, %tstate	*/
11700Sstevel@tonic-gate 	    0x87904000,			/* wrpr  %g1, %g0, %tt		*/
11710Sstevel@tonic-gate 	    0xc2d80400,			/* ldxa  [%g0]ASI_SCRATCHPAD, %g1 */
11720Sstevel@tonic-gate 	    0xc2586000,			/* ldx  [%g1 + MMFSA_?_CTX], %g1 */
11730Sstevel@tonic-gate 	    0x02c04004,			/* brz,pn %g1, .+0x10		*/
11740Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(new_tpc), %g1	*/
11750Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
11760Sstevel@tonic-gate 	    0x30800002,			/* ba,a  .+0x8			*/
11770Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
11780Sstevel@tonic-gate 	    0x81904000,			/* wrpr  %g1, %g0, %tpc		*/
11790Sstevel@tonic-gate 	    0x82006004,			/* add   %g1, 4, %g1		*/
11800Sstevel@tonic-gate 	    0x83904000,			/* wrpr  %g1, %g0, %tnpc	*/
11810Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(tmptick), %g1	*/
11820Sstevel@tonic-gate 	    0x85410000,			/* rd    %tick, %g2		*/
11830Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(tmptick)] */
11840Sstevel@tonic-gate 	    0x30800000			/* ba,a  addr			*/
11850Sstevel@tonic-gate #endif /* sun4v */
11860Sstevel@tonic-gate 	};
11870Sstevel@tonic-gate 
11880Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
11890Sstevel@tonic-gate 	ASSERT(entno == TSTAT_ENT_ITLBMISS || entno == TSTAT_ENT_DTLBMISS);
11900Sstevel@tonic-gate 
11910Sstevel@tonic-gate 	stat = TSTAT_DATA_OFFS(tcpu, tdata_traps) + entoffs;
11920Sstevel@tonic-gate 	tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick);
11930Sstevel@tonic-gate 
11940Sstevel@tonic-gate 	if (itlb) {
11950Sstevel@tonic-gate 		ret = &tcpu->tcpu_instr->tinst_itlbret;
11960Sstevel@tonic-gate 		udata = &data->tpgsz_user.tmode_itlb;
11970Sstevel@tonic-gate 		kdata = &data->tpgsz_kernel.tmode_itlb;
11980Sstevel@tonic-gate 		tpc = TSTAT_INSTR_OFFS(tcpu, tinst_itlbret.ttlbr_ktlb);
11990Sstevel@tonic-gate 	} else {
12000Sstevel@tonic-gate 		ret = &tcpu->tcpu_instr->tinst_dtlbret;
12010Sstevel@tonic-gate 		udata = &data->tpgsz_user.tmode_dtlb;
12020Sstevel@tonic-gate 		kdata = &data->tpgsz_kernel.tmode_dtlb;
12030Sstevel@tonic-gate 		tpc = TSTAT_INSTR_OFFS(tcpu, tinst_dtlbret.ttlbr_ktlb);
12040Sstevel@tonic-gate 	}
12050Sstevel@tonic-gate 
12060Sstevel@tonic-gate 	utpc = tpc + offsetof(tstat_tlbret_t, ttlbr_utlb) -
12070Sstevel@tonic-gate 	    offsetof(tstat_tlbret_t, ttlbr_ktlb);
12080Sstevel@tonic-gate 
12090Sstevel@tonic-gate 	ASSERT(HI22(tpc) == HI22(utpc));
12100Sstevel@tonic-gate 
12110Sstevel@tonic-gate 	ent = (uint32_t *)((uintptr_t)tcpu->tcpu_instr + entoffs);
12120Sstevel@tonic-gate 	orig = KERNELBASE + entoffs;
12130Sstevel@tonic-gate 	va = (uintptr_t)tcpu->tcpu_ibase + entoffs;
12140Sstevel@tonic-gate 	baoffs = TSTAT_TLBENT_BA * sizeof (uint32_t);
12150Sstevel@tonic-gate 
12160Sstevel@tonic-gate 	bcopy(tlbent, ent, sizeof (tlbent));
12170Sstevel@tonic-gate 
12180Sstevel@tonic-gate 	ent[TSTAT_TLBENT_STATHI] |= HI22(stat);
12190Sstevel@tonic-gate 	ent[TSTAT_TLBENT_STATLO_LD] |= LO10(stat);
12200Sstevel@tonic-gate 	ent[TSTAT_TLBENT_STATLO_ST] |= LO10(stat);
12210Sstevel@tonic-gate #ifndef sun4v
12220Sstevel@tonic-gate 	ent[TSTAT_TLBENT_MMUASI] |= asi;
12230Sstevel@tonic-gate #else
12240Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TAGTARGET] |= tagtarget_off;
12250Sstevel@tonic-gate #endif
12260Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TPCHI] |= HI22(tpc);
12270Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TPCLO_USER] |= LO10(utpc);
12280Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TPCLO_KERN] |= LO10(tpc);
12290Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TSHI] |= HI22(tmptick);
12300Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TSLO] |= LO10(tmptick);
12310Sstevel@tonic-gate 	ent[TSTAT_TLBENT_BA] |= DISP22(va + baoffs, orig);
12320Sstevel@tonic-gate 
12330Sstevel@tonic-gate 	/*
12340Sstevel@tonic-gate 	 * And now set up the TLB return entries.
12350Sstevel@tonic-gate 	 */
12360Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_ktlb, &kdata->ttlb_tlb);
12370Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_ktsb, &kdata->ttlb_tsb);
12380Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_utlb, &udata->ttlb_tlb);
12390Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_utsb, &udata->ttlb_tsb);
12400Sstevel@tonic-gate }
12410Sstevel@tonic-gate 
12420Sstevel@tonic-gate #undef TSTAT_TLBENT_STATHI
12430Sstevel@tonic-gate #undef TSTAT_TLBENT_STATLO_LD
12440Sstevel@tonic-gate #undef TSTAT_TLBENT_STATLO_ST
12450Sstevel@tonic-gate #ifndef sun4v
12460Sstevel@tonic-gate #undef TSTAT_TLBENT_MMUASI
12470Sstevel@tonic-gate #else
12480Sstevel@tonic-gate #undef TSTAT_TLBENT_TAGTARGET
12490Sstevel@tonic-gate #endif
12500Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCHI
12510Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCLO_USER
12520Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCLO_KERN
12530Sstevel@tonic-gate #undef TSTAT_TLBENT_TSHI
12540Sstevel@tonic-gate #undef TSTAT_TLBENT_TSLO
12550Sstevel@tonic-gate #undef TSTAT_TLBENT_BA
12560Sstevel@tonic-gate 
12570Sstevel@tonic-gate /*
12580Sstevel@tonic-gate  * The TSTAT_ENABLED_* constants define offsets in the enabled entry; the
12590Sstevel@tonic-gate  * TSTAT_DISABLED_BA constant defines an offset in the disabled entry.  Both
12600Sstevel@tonic-gate  * sets of constants are used only in trapstat_make_traptab() (below) and
12610Sstevel@tonic-gate  * #undef'd immediately afterwards.  Any change to "enabled" or "disabled"
12620Sstevel@tonic-gate  * in trapstat_make_traptab() will likely require changes to these constants.
12630Sstevel@tonic-gate  */
12640Sstevel@tonic-gate #define	TSTAT_ENABLED_STATHI	0
12650Sstevel@tonic-gate #define	TSTAT_ENABLED_STATLO_LD	1
12660Sstevel@tonic-gate #define	TSTAT_ENABLED_STATLO_ST 3
12670Sstevel@tonic-gate #define	TSTAT_ENABLED_BA	4
12680Sstevel@tonic-gate #define	TSTAT_DISABLED_BA	0
12690Sstevel@tonic-gate 
12700Sstevel@tonic-gate static void
12710Sstevel@tonic-gate trapstat_make_traptab(tstat_percpu_t *tcpu)
12720Sstevel@tonic-gate {
12730Sstevel@tonic-gate 	uint32_t *ent;
12740Sstevel@tonic-gate 	uint64_t *stat;
12750Sstevel@tonic-gate 	uintptr_t orig, va, en_baoffs, dis_baoffs;
12760Sstevel@tonic-gate 	int nent;
12770Sstevel@tonic-gate 
12780Sstevel@tonic-gate 	/*
12790Sstevel@tonic-gate 	 * This is the entry in the interposing trap table for enabled trap
12800Sstevel@tonic-gate 	 * table entries.  It loads a counter, increments it and stores it
12810Sstevel@tonic-gate 	 * back before branching to the actual trap table entry.
12820Sstevel@tonic-gate 	 */
12830Sstevel@tonic-gate 	static const uint32_t enabled[TSTAT_ENT_NINSTR] = {
12840Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
12850Sstevel@tonic-gate 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
12860Sstevel@tonic-gate 	    0x8400a001,			/* add   %g2, 1, %g2		*/
12870Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
12880Sstevel@tonic-gate 	    0x30800000,			/* ba,a addr			*/
12890Sstevel@tonic-gate 	    NOP, NOP, NOP
12900Sstevel@tonic-gate 	};
12910Sstevel@tonic-gate 
12920Sstevel@tonic-gate 	/*
12930Sstevel@tonic-gate 	 * This is the entry in the interposing trap table for disabled trap
12940Sstevel@tonic-gate 	 * table entries.  It simply branches to the actual, underlying trap
12950Sstevel@tonic-gate 	 * table entry.  As explained in the "Implementation Details" section
12960Sstevel@tonic-gate 	 * of the block comment, all TL>0 traps _must_ use the disabled entry;
12970Sstevel@tonic-gate 	 * additional entries may be explicitly disabled through the use
12980Sstevel@tonic-gate 	 * of TSTATIOC_ENTRY/TSTATIOC_NOENTRY.
12990Sstevel@tonic-gate 	 */
13000Sstevel@tonic-gate 	static const uint32_t disabled[TSTAT_ENT_NINSTR] = {
13010Sstevel@tonic-gate 	    0x30800000,			/* ba,a addr			*/
13020Sstevel@tonic-gate 	    NOP, NOP, NOP, NOP, NOP, NOP, NOP,
13030Sstevel@tonic-gate 	};
13040Sstevel@tonic-gate 
13050Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
13060Sstevel@tonic-gate 
13070Sstevel@tonic-gate 	ent = tcpu->tcpu_instr->tinst_traptab;
13080Sstevel@tonic-gate 	stat = (uint64_t *)TSTAT_DATA_OFFS(tcpu, tdata_traps);
13090Sstevel@tonic-gate 	orig = KERNELBASE;
13100Sstevel@tonic-gate 	va = (uintptr_t)tcpu->tcpu_ibase;
13110Sstevel@tonic-gate 	en_baoffs = TSTAT_ENABLED_BA * sizeof (uint32_t);
13120Sstevel@tonic-gate 	dis_baoffs = TSTAT_DISABLED_BA * sizeof (uint32_t);
13130Sstevel@tonic-gate 
13140Sstevel@tonic-gate 	for (nent = 0; nent < TSTAT_TOTAL_NENT; nent++) {
13150Sstevel@tonic-gate 		if (tstat_enabled[nent]) {
13160Sstevel@tonic-gate 			bcopy(enabled, ent, sizeof (enabled));
13170Sstevel@tonic-gate 			ent[TSTAT_ENABLED_STATHI] |= HI22(stat);
13180Sstevel@tonic-gate 			ent[TSTAT_ENABLED_STATLO_LD] |= LO10(stat);
13190Sstevel@tonic-gate 			ent[TSTAT_ENABLED_STATLO_ST] |= LO10(stat);
13200Sstevel@tonic-gate 			ent[TSTAT_ENABLED_BA] |= DISP22(va + en_baoffs, orig);
13210Sstevel@tonic-gate 		} else {
13220Sstevel@tonic-gate 			bcopy(disabled, ent, sizeof (disabled));
13230Sstevel@tonic-gate 			ent[TSTAT_DISABLED_BA] |= DISP22(va + dis_baoffs, orig);
13240Sstevel@tonic-gate 		}
13250Sstevel@tonic-gate 
13260Sstevel@tonic-gate 		stat++;
13270Sstevel@tonic-gate 		orig += sizeof (enabled);
13280Sstevel@tonic-gate 		ent += sizeof (enabled) / sizeof (*ent);
13290Sstevel@tonic-gate 		va += sizeof (enabled);
13300Sstevel@tonic-gate 	}
13310Sstevel@tonic-gate }
13320Sstevel@tonic-gate 
13330Sstevel@tonic-gate #undef TSTAT_ENABLED_STATHI
13340Sstevel@tonic-gate #undef TSTAT_ENABLED_STATLO_LD
13350Sstevel@tonic-gate #undef TSTAT_ENABLED_STATLO_ST
13360Sstevel@tonic-gate #undef TSTAT_ENABLED_BA
13370Sstevel@tonic-gate #undef TSTAT_DISABLED_BA
13380Sstevel@tonic-gate 
13390Sstevel@tonic-gate static void
13400Sstevel@tonic-gate trapstat_setup(processorid_t cpu)
13410Sstevel@tonic-gate {
13420Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
13430Sstevel@tonic-gate #ifndef sun4v
13440Sstevel@tonic-gate 	int i;
13450Sstevel@tonic-gate 	caddr_t va;
13460Sstevel@tonic-gate 	pfn_t *pfn;
13470Sstevel@tonic-gate #endif
13480Sstevel@tonic-gate 
13490Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_pfn == NULL);
13500Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_instr == NULL);
13510Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_data == NULL);
13520Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
13530Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED));
13540Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
13550Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
13560Sstevel@tonic-gate 
13570Sstevel@tonic-gate 	/*
13580Sstevel@tonic-gate 	 * The lower fifteen bits of the %tba are always read as zero; we must
13590Sstevel@tonic-gate 	 * align our instruction base address appropriately.
13600Sstevel@tonic-gate 	 */
13610Sstevel@tonic-gate #ifndef sun4v
13620Sstevel@tonic-gate 	tcpu->tcpu_ibase = (caddr_t)((KERNELBASE - tstat_total_size)
13630Sstevel@tonic-gate 		& TSTAT_TBA_MASK);
13640Sstevel@tonic-gate 	tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE;
13650Sstevel@tonic-gate 	tcpu->tcpu_vabase = tcpu->tcpu_ibase;
13660Sstevel@tonic-gate 
13670Sstevel@tonic-gate 	tcpu->tcpu_pfn = vmem_alloc(tstat_arena, tstat_total_pages, VM_SLEEP);
13680Sstevel@tonic-gate 	bzero(tcpu->tcpu_pfn, tstat_total_pages);
13690Sstevel@tonic-gate 	pfn = tcpu->tcpu_pfn;
13700Sstevel@tonic-gate 
13710Sstevel@tonic-gate 	tcpu->tcpu_instr = vmem_alloc(tstat_arena, TSTAT_INSTR_SIZE, VM_SLEEP);
13720Sstevel@tonic-gate 
13730Sstevel@tonic-gate 	va = (caddr_t)tcpu->tcpu_instr;
13740Sstevel@tonic-gate 	for (i = 0; i < TSTAT_INSTR_PAGES; i++, va += MMU_PAGESIZE)
13750Sstevel@tonic-gate 		*pfn++ = hat_getpfnum(kas.a_hat, va);
13760Sstevel@tonic-gate 
13770Sstevel@tonic-gate 	/*
13780Sstevel@tonic-gate 	 * We must be sure that the pages that we will use to examine the data
13790Sstevel@tonic-gate 	 * have the same virtual color as the pages to which the data is being
13800Sstevel@tonic-gate 	 * recorded, hence the alignment and phase constraints on the
13810Sstevel@tonic-gate 	 * allocation.
13820Sstevel@tonic-gate 	 */
13830Sstevel@tonic-gate 	tcpu->tcpu_data = vmem_xalloc(tstat_arena, tstat_data_size,
13840Sstevel@tonic-gate 	    shm_alignment, (uintptr_t)tcpu->tcpu_dbase & (shm_alignment - 1),
13850Sstevel@tonic-gate 	    0, 0, NULL, VM_SLEEP);
13860Sstevel@tonic-gate 	bzero(tcpu->tcpu_data, tstat_data_size);
13870Sstevel@tonic-gate 	tcpu->tcpu_data->tdata_cpuid = cpu;
13880Sstevel@tonic-gate 
13890Sstevel@tonic-gate 	va = (caddr_t)tcpu->tcpu_data;
13900Sstevel@tonic-gate 	for (i = 0; i < tstat_data_pages; i++, va += MMU_PAGESIZE)
13910Sstevel@tonic-gate 		*pfn++ = hat_getpfnum(kas.a_hat, va);
13920Sstevel@tonic-gate #else /* sun4v */
13930Sstevel@tonic-gate 	ASSERT(!(tstat_total_size > (1 + ~TSTAT_TBA_MASK)));
13940Sstevel@tonic-gate 	tcpu->tcpu_vabase = (caddr_t)(KERNELBASE - MMU_PAGESIZE4M);
13950Sstevel@tonic-gate 	tcpu->tcpu_ibase = tcpu->tcpu_vabase + (cpu * (1 + ~TSTAT_TBA_MASK));
13960Sstevel@tonic-gate 	tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE;
13970Sstevel@tonic-gate 
13980Sstevel@tonic-gate 	tcpu->tcpu_pfn = &tstat_pfn;
13990Sstevel@tonic-gate 	tcpu->tcpu_instr = (tstat_instr_t *)(tstat_va + (cpu *
14000Sstevel@tonic-gate 		(1 + ~TSTAT_TBA_MASK)));
14010Sstevel@tonic-gate 	tcpu->tcpu_data = (tstat_data_t *)(tstat_va + (cpu *
14020Sstevel@tonic-gate 		(1 + ~TSTAT_TBA_MASK)) + TSTAT_INSTR_SIZE);
14030Sstevel@tonic-gate 	bzero(tcpu->tcpu_data, tstat_data_size);
14040Sstevel@tonic-gate 	tcpu->tcpu_data->tdata_cpuid = cpu;
14050Sstevel@tonic-gate #endif /* sun4v */
14060Sstevel@tonic-gate 
14070Sstevel@tonic-gate 	/*
14080Sstevel@tonic-gate 	 * Now that we have all of the instruction and data pages allocated,
14090Sstevel@tonic-gate 	 * make the trap table from scratch.
14100Sstevel@tonic-gate 	 */
14110Sstevel@tonic-gate 	trapstat_make_traptab(tcpu);
14120Sstevel@tonic-gate 
14130Sstevel@tonic-gate 	if (tstat_options & TSTAT_OPT_TLBDATA) {
14140Sstevel@tonic-gate 		/*
14150Sstevel@tonic-gate 		 * TLB Statistics have been specified; set up the I- and D-TLB
14160Sstevel@tonic-gate 		 * entries and corresponding TLB return entries.
14170Sstevel@tonic-gate 		 */
14180Sstevel@tonic-gate 		trapstat_tlbent(tcpu, TSTAT_ENT_ITLBMISS);
14190Sstevel@tonic-gate 		trapstat_tlbent(tcpu, TSTAT_ENT_DTLBMISS);
14200Sstevel@tonic-gate 	}
14210Sstevel@tonic-gate 
14220Sstevel@tonic-gate 	tcpu->tcpu_flags |= TSTAT_CPU_ALLOCATED;
14230Sstevel@tonic-gate 
14240Sstevel@tonic-gate 	/*
14250Sstevel@tonic-gate 	 * Finally, get the target CPU to load the locked pages into its TLBs.
14260Sstevel@tonic-gate 	 */
14270Sstevel@tonic-gate 	xc_one(cpu, (xcfunc_t *)trapstat_load_tlb, 0, 0);
14280Sstevel@tonic-gate }
14290Sstevel@tonic-gate 
14300Sstevel@tonic-gate static void
14310Sstevel@tonic-gate trapstat_teardown(processorid_t cpu)
14320Sstevel@tonic-gate {
14330Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
14340Sstevel@tonic-gate #ifndef sun4v
14350Sstevel@tonic-gate 	int i;
14360Sstevel@tonic-gate #endif
14370Sstevel@tonic-gate 	caddr_t va = tcpu->tcpu_vabase;
14380Sstevel@tonic-gate 
14390Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_pfn != NULL);
14400Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_instr != NULL);
14410Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_data != NULL);
14420Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
14430Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
14440Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
14450Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
14460Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
14470Sstevel@tonic-gate 
14480Sstevel@tonic-gate #ifndef sun4v
14490Sstevel@tonic-gate 	vmem_free(tstat_arena, tcpu->tcpu_pfn, tstat_total_pages);
14500Sstevel@tonic-gate 	vmem_free(tstat_arena, tcpu->tcpu_instr, TSTAT_INSTR_SIZE);
14510Sstevel@tonic-gate 	vmem_free(tstat_arena, tcpu->tcpu_data, tstat_data_size);
14520Sstevel@tonic-gate 
14530Sstevel@tonic-gate 	for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) {
14540Sstevel@tonic-gate 		xt_one(cpu, vtag_flushpage_tl1, (uint64_t)va, KCONTEXT);
14550Sstevel@tonic-gate 	}
14560Sstevel@tonic-gate #else
14570Sstevel@tonic-gate 	xt_one(cpu, vtag_unmap_perm_tl1, (uint64_t)va, KCONTEXT);
14580Sstevel@tonic-gate #endif
14590Sstevel@tonic-gate 
14600Sstevel@tonic-gate 	tcpu->tcpu_pfn = NULL;
14610Sstevel@tonic-gate 	tcpu->tcpu_instr = NULL;
14620Sstevel@tonic-gate 	tcpu->tcpu_data = NULL;
14630Sstevel@tonic-gate 	tcpu->tcpu_flags &= ~TSTAT_CPU_ALLOCATED;
14640Sstevel@tonic-gate }
14650Sstevel@tonic-gate 
14660Sstevel@tonic-gate static int
14670Sstevel@tonic-gate trapstat_go()
14680Sstevel@tonic-gate {
14690Sstevel@tonic-gate 	cpu_t *cp;
14700Sstevel@tonic-gate 
14710Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
14720Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
14730Sstevel@tonic-gate 
14740Sstevel@tonic-gate 	if (tstat_running) {
14750Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
14760Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
14770Sstevel@tonic-gate 		return (EBUSY);
14780Sstevel@tonic-gate 	}
14790Sstevel@tonic-gate 
14800Sstevel@tonic-gate #ifdef sun4v
14810Sstevel@tonic-gate 	/*
14820Sstevel@tonic-gate 	 * Allocate large page to hold interposing tables
14830Sstevel@tonic-gate 	 */
14840Sstevel@tonic-gate 	tstat_va = contig_mem_alloc(MMU_PAGESIZE4M);
14850Sstevel@tonic-gate 	tstat_pfn = va_to_pfn(tstat_va);
14860Sstevel@tonic-gate 	if (tstat_pfn == PFN_INVALID) {
14870Sstevel@tonic-gate 		contig_mem_free(tstat_va, MMU_PAGESIZE4M);
14880Sstevel@tonic-gate 		return (EAGAIN);
14890Sstevel@tonic-gate 	}
14900Sstevel@tonic-gate #endif
14910Sstevel@tonic-gate 
14920Sstevel@tonic-gate 	/*
14930Sstevel@tonic-gate 	 * First, perform any necessary hot patching.
14940Sstevel@tonic-gate 	 */
14950Sstevel@tonic-gate 	trapstat_hotpatch();
14960Sstevel@tonic-gate 
14970Sstevel@tonic-gate 	/*
14980Sstevel@tonic-gate 	 * Allocate the resources we'll need to measure probe effect.
14990Sstevel@tonic-gate 	 */
15000Sstevel@tonic-gate 	trapstat_probe_alloc();
15010Sstevel@tonic-gate 
15020Sstevel@tonic-gate 
15030Sstevel@tonic-gate 	cp = cpu_list;
15040Sstevel@tonic-gate 	do {
15050Sstevel@tonic-gate 		if (!(tstat_percpu[cp->cpu_id].tcpu_flags & TSTAT_CPU_SELECTED))
15060Sstevel@tonic-gate 			continue;
15070Sstevel@tonic-gate 
15080Sstevel@tonic-gate 		trapstat_setup(cp->cpu_id);
15090Sstevel@tonic-gate 
15100Sstevel@tonic-gate 		/*
15110Sstevel@tonic-gate 		 * Note that due to trapstat_probe()'s use of global data,
15120Sstevel@tonic-gate 		 * we determine the probe effect on each CPU serially instead
15130Sstevel@tonic-gate 		 * of in parallel with an xc_all().
15140Sstevel@tonic-gate 		 */
15150Sstevel@tonic-gate 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_probe, 0, 0);
15160Sstevel@tonic-gate 	} while ((cp = cp->cpu_next) != cpu_list);
15170Sstevel@tonic-gate 
15180Sstevel@tonic-gate 	xc_all((xcfunc_t *)trapstat_enable, 0, 0);
15190Sstevel@tonic-gate 
15200Sstevel@tonic-gate 	trapstat_probe_free();
15210Sstevel@tonic-gate 	tstat_running = 1;
15220Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
15230Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
15240Sstevel@tonic-gate 
15250Sstevel@tonic-gate 	return (0);
15260Sstevel@tonic-gate }
15270Sstevel@tonic-gate 
15280Sstevel@tonic-gate static int
15290Sstevel@tonic-gate trapstat_stop()
15300Sstevel@tonic-gate {
15310Sstevel@tonic-gate 	int i;
15320Sstevel@tonic-gate 
15330Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
15340Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
15350Sstevel@tonic-gate 	if (!tstat_running) {
15360Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
15370Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
15380Sstevel@tonic-gate 		return (ENXIO);
15390Sstevel@tonic-gate 	}
15400Sstevel@tonic-gate 
15410Sstevel@tonic-gate 	xc_all((xcfunc_t *)trapstat_disable, 0, 0);
15420Sstevel@tonic-gate 
15430Sstevel@tonic-gate 	for (i = 0; i <= max_cpuid; i++) {
15440Sstevel@tonic-gate 		if (tstat_percpu[i].tcpu_flags & TSTAT_CPU_ALLOCATED)
15450Sstevel@tonic-gate 			trapstat_teardown(i);
15460Sstevel@tonic-gate 	}
15470Sstevel@tonic-gate 
15480Sstevel@tonic-gate #ifdef sun4v
15490Sstevel@tonic-gate 	contig_mem_free(tstat_va, MMU_PAGESIZE4M);
15500Sstevel@tonic-gate #endif
15510Sstevel@tonic-gate 	trapstat_hotpatch();
15520Sstevel@tonic-gate 	tstat_running = 0;
15530Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
15540Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
15550Sstevel@tonic-gate 
15560Sstevel@tonic-gate 	return (0);
15570Sstevel@tonic-gate }
15580Sstevel@tonic-gate 
15590Sstevel@tonic-gate /*
15600Sstevel@tonic-gate  * This is trapstat's DR CPU configuration callback.  It's called (with
15610Sstevel@tonic-gate  * cpu_lock held) to unconfigure a newly powered-off CPU, or to configure a
15620Sstevel@tonic-gate  * powered-off CPU that is to be brought into the system.  We need only take
15630Sstevel@tonic-gate  * action in the unconfigure case:  because a powered-off CPU will have its
15640Sstevel@tonic-gate  * trap table restored to KERNELBASE if it is ever powered back on, we must
15650Sstevel@tonic-gate  * update the flags to reflect that trapstat is no longer enabled on the
15660Sstevel@tonic-gate  * powered-off CPU.  Note that this means that a TSTAT_CPU_ENABLED CPU that
15670Sstevel@tonic-gate  * is unconfigured/powered off and later powered back on/reconfigured will
15680Sstevel@tonic-gate  * _not_ be re-TSTAT_CPU_ENABLED.
15690Sstevel@tonic-gate  */
15700Sstevel@tonic-gate static int
15710Sstevel@tonic-gate trapstat_cpu_setup(cpu_setup_t what, processorid_t cpu)
15720Sstevel@tonic-gate {
15730Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
15740Sstevel@tonic-gate 
15750Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
15760Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
15770Sstevel@tonic-gate 
15780Sstevel@tonic-gate 	if (!tstat_running) {
15790Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
15800Sstevel@tonic-gate 		return (0);
15810Sstevel@tonic-gate 	}
15820Sstevel@tonic-gate 
15830Sstevel@tonic-gate 	switch (what) {
15840Sstevel@tonic-gate 	case CPU_CONFIG:
15850Sstevel@tonic-gate 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
15860Sstevel@tonic-gate 		break;
15870Sstevel@tonic-gate 
15880Sstevel@tonic-gate 	case CPU_UNCONFIG:
15890Sstevel@tonic-gate 		if (tcpu->tcpu_flags & TSTAT_CPU_ENABLED)
15900Sstevel@tonic-gate 			tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED;
15910Sstevel@tonic-gate 		break;
15920Sstevel@tonic-gate 
15930Sstevel@tonic-gate 	default:
15940Sstevel@tonic-gate 		break;
15950Sstevel@tonic-gate 	}
15960Sstevel@tonic-gate 
15970Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
15980Sstevel@tonic-gate 	return (0);
15990Sstevel@tonic-gate }
16000Sstevel@tonic-gate 
16010Sstevel@tonic-gate /*
16020Sstevel@tonic-gate  * This is called before a CPR suspend and after a CPR resume.  We don't have
16030Sstevel@tonic-gate  * anything to do before a suspend, but after a restart we must restore the
16040Sstevel@tonic-gate  * trap table to be our interposing trap table.  However, we don't actually
16050Sstevel@tonic-gate  * know whether or not the CPUs have been powered off -- this routine may be
16060Sstevel@tonic-gate  * called while restoring from a failed CPR suspend.  We thus run through each
16070Sstevel@tonic-gate  * TSTAT_CPU_ENABLED CPU, and explicitly destroy and reestablish its
16080Sstevel@tonic-gate  * interposing trap table.  This assures that our state is correct regardless
16090Sstevel@tonic-gate  * of whether or not the CPU has been newly powered on.
16100Sstevel@tonic-gate  */
16110Sstevel@tonic-gate /*ARGSUSED*/
16120Sstevel@tonic-gate static boolean_t
16130Sstevel@tonic-gate trapstat_cpr(void *arg, int code)
16140Sstevel@tonic-gate {
16150Sstevel@tonic-gate 	cpu_t *cp;
16160Sstevel@tonic-gate 
16170Sstevel@tonic-gate 	if (code == CB_CODE_CPR_CHKPT)
16180Sstevel@tonic-gate 		return (B_TRUE);
16190Sstevel@tonic-gate 
16200Sstevel@tonic-gate 	ASSERT(code == CB_CODE_CPR_RESUME);
16210Sstevel@tonic-gate 
16220Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
16230Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
16240Sstevel@tonic-gate 
16250Sstevel@tonic-gate 	if (!tstat_running) {
16260Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
16270Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
16280Sstevel@tonic-gate 		return (B_TRUE);
16290Sstevel@tonic-gate 	}
16300Sstevel@tonic-gate 
16310Sstevel@tonic-gate 	cp = cpu_list;
16320Sstevel@tonic-gate 	do {
16330Sstevel@tonic-gate 		tstat_percpu_t *tcpu = &tstat_percpu[cp->cpu_id];
16340Sstevel@tonic-gate 
16350Sstevel@tonic-gate 		if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
16360Sstevel@tonic-gate 			continue;
16370Sstevel@tonic-gate 
16380Sstevel@tonic-gate 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
16390Sstevel@tonic-gate 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
16400Sstevel@tonic-gate 
16410Sstevel@tonic-gate 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_disable, 0, 0);
16420Sstevel@tonic-gate 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
16430Sstevel@tonic-gate 
16440Sstevel@tonic-gate 		/*
16450Sstevel@tonic-gate 		 * Preserve this CPU's data in tstat_buffer and rip down its
16460Sstevel@tonic-gate 		 * interposing trap table.
16470Sstevel@tonic-gate 		 */
16480Sstevel@tonic-gate 		bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size);
16490Sstevel@tonic-gate 		trapstat_teardown(cp->cpu_id);
16500Sstevel@tonic-gate 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED));
16510Sstevel@tonic-gate 
16520Sstevel@tonic-gate 		/*
16530Sstevel@tonic-gate 		 * Reestablish the interposing trap table and restore the old
16540Sstevel@tonic-gate 		 * data.
16550Sstevel@tonic-gate 		 */
16560Sstevel@tonic-gate 		trapstat_setup(cp->cpu_id);
16570Sstevel@tonic-gate 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
16580Sstevel@tonic-gate 		bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size);
16590Sstevel@tonic-gate 
16600Sstevel@tonic-gate 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_enable, 0, 0);
16610Sstevel@tonic-gate 	} while ((cp = cp->cpu_next) != cpu_list);
16620Sstevel@tonic-gate 
16630Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
16640Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
16650Sstevel@tonic-gate 
16660Sstevel@tonic-gate 	return (B_TRUE);
16670Sstevel@tonic-gate }
16680Sstevel@tonic-gate 
16690Sstevel@tonic-gate /*ARGSUSED*/
16700Sstevel@tonic-gate static int
16710Sstevel@tonic-gate trapstat_open(dev_t *devp, int flag, int otyp, cred_t *cred_p)
16720Sstevel@tonic-gate {
16730Sstevel@tonic-gate 	int i;
16740Sstevel@tonic-gate 
16750Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
16760Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
16770Sstevel@tonic-gate 	if (tstat_open != 0) {
16780Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
16790Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
16800Sstevel@tonic-gate 		return (EBUSY);
16810Sstevel@tonic-gate 	}
16820Sstevel@tonic-gate 
16830Sstevel@tonic-gate 	/*
16840Sstevel@tonic-gate 	 * Register this in open() rather than in attach() to prevent deadlock
16850Sstevel@tonic-gate 	 * with DR code. During attach, I/O device tree locks are grabbed
16860Sstevel@tonic-gate 	 * before trapstat_attach() is invoked - registering in attach
16870Sstevel@tonic-gate 	 * will result in the lock order: device tree lock, cpu_lock.
16880Sstevel@tonic-gate 	 * DR code however requires that cpu_lock be acquired before
16890Sstevel@tonic-gate 	 * device tree locks.
16900Sstevel@tonic-gate 	 */
16910Sstevel@tonic-gate 	ASSERT(!tstat_running);
16920Sstevel@tonic-gate 	register_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL);
16930Sstevel@tonic-gate 
16940Sstevel@tonic-gate 	/*
16950Sstevel@tonic-gate 	 * Clear all options.  And until specific CPUs are specified, we'll
16960Sstevel@tonic-gate 	 * mark all CPUs as selected.
16970Sstevel@tonic-gate 	 */
16980Sstevel@tonic-gate 	tstat_options = 0;
16990Sstevel@tonic-gate 
17000Sstevel@tonic-gate 	for (i = 0; i <= max_cpuid; i++)
17010Sstevel@tonic-gate 		tstat_percpu[i].tcpu_flags |= TSTAT_CPU_SELECTED;
17020Sstevel@tonic-gate 
17030Sstevel@tonic-gate 	/*
17040Sstevel@tonic-gate 	 * By default, all traps at TL=0 are enabled.  Traps at TL>0 must
17050Sstevel@tonic-gate 	 * be disabled.
17060Sstevel@tonic-gate 	 */
17070Sstevel@tonic-gate 	for (i = 0; i < TSTAT_TOTAL_NENT; i++)
17080Sstevel@tonic-gate 		tstat_enabled[i] = i < TSTAT_NENT ? 1 : 0;
17090Sstevel@tonic-gate 
17100Sstevel@tonic-gate 	tstat_open = 1;
17110Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
17120Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
17130Sstevel@tonic-gate 
17140Sstevel@tonic-gate 	return (0);
17150Sstevel@tonic-gate }
17160Sstevel@tonic-gate 
17170Sstevel@tonic-gate /*ARGSUSED*/
17180Sstevel@tonic-gate static int
17190Sstevel@tonic-gate trapstat_close(dev_t dev, int flag, int otyp, cred_t *cred_p)
17200Sstevel@tonic-gate {
17210Sstevel@tonic-gate 	(void) trapstat_stop();
17220Sstevel@tonic-gate 
17230Sstevel@tonic-gate 	ASSERT(!tstat_running);
17240Sstevel@tonic-gate 
17250Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
17260Sstevel@tonic-gate 	unregister_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL);
17270Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
17280Sstevel@tonic-gate 
17290Sstevel@tonic-gate 	tstat_open = 0;
17300Sstevel@tonic-gate 	return (DDI_SUCCESS);
17310Sstevel@tonic-gate }
17320Sstevel@tonic-gate 
17330Sstevel@tonic-gate static int
17340Sstevel@tonic-gate trapstat_option(int option)
17350Sstevel@tonic-gate {
17360Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
17370Sstevel@tonic-gate 
17380Sstevel@tonic-gate 	if (tstat_running) {
17390Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
17400Sstevel@tonic-gate 		return (EBUSY);
17410Sstevel@tonic-gate 	}
17420Sstevel@tonic-gate 
17430Sstevel@tonic-gate 	tstat_options |= option;
17440Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
17450Sstevel@tonic-gate 
17460Sstevel@tonic-gate 	return (0);
17470Sstevel@tonic-gate }
17480Sstevel@tonic-gate 
17490Sstevel@tonic-gate /*ARGSUSED*/
17500Sstevel@tonic-gate static int
17510Sstevel@tonic-gate trapstat_ioctl(dev_t dev, int cmd, intptr_t arg, int md, cred_t *crd, int *rval)
17520Sstevel@tonic-gate {
17530Sstevel@tonic-gate 	int i, j, out;
17540Sstevel@tonic-gate 	size_t dsize;
17550Sstevel@tonic-gate 
17560Sstevel@tonic-gate 	switch (cmd) {
17570Sstevel@tonic-gate 	case TSTATIOC_GO:
17580Sstevel@tonic-gate 		return (trapstat_go());
17590Sstevel@tonic-gate 
17600Sstevel@tonic-gate 	case TSTATIOC_NOGO:
17610Sstevel@tonic-gate 		return (trapstat_option(TSTAT_OPT_NOGO));
17620Sstevel@tonic-gate 
17630Sstevel@tonic-gate 	case TSTATIOC_STOP:
17640Sstevel@tonic-gate 		return (trapstat_stop());
17650Sstevel@tonic-gate 
17660Sstevel@tonic-gate 	case TSTATIOC_CPU:
17670Sstevel@tonic-gate 		if (arg < 0 || arg > max_cpuid)
17680Sstevel@tonic-gate 			return (EINVAL);
17690Sstevel@tonic-gate 		/*FALLTHROUGH*/
17700Sstevel@tonic-gate 
17710Sstevel@tonic-gate 	case TSTATIOC_NOCPU:
17720Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
17730Sstevel@tonic-gate 
17740Sstevel@tonic-gate 		if (tstat_running) {
17750Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
17760Sstevel@tonic-gate 			return (EBUSY);
17770Sstevel@tonic-gate 		}
17780Sstevel@tonic-gate 
17790Sstevel@tonic-gate 		/*
17800Sstevel@tonic-gate 		 * If this is the first CPU to be specified (or if we are
17810Sstevel@tonic-gate 		 * being asked to explicitly de-select CPUs), disable all CPUs.
17820Sstevel@tonic-gate 		 */
17830Sstevel@tonic-gate 		if (!(tstat_options & TSTAT_OPT_CPU) || cmd == TSTATIOC_NOCPU) {
17840Sstevel@tonic-gate 			tstat_options |= TSTAT_OPT_CPU;
17850Sstevel@tonic-gate 
17860Sstevel@tonic-gate 			for (i = 0; i <= max_cpuid; i++) {
17870Sstevel@tonic-gate 				tstat_percpu_t *tcpu = &tstat_percpu[i];
17880Sstevel@tonic-gate 
17890Sstevel@tonic-gate 				ASSERT(cmd == TSTATIOC_NOCPU ||
17900Sstevel@tonic-gate 				    (tcpu->tcpu_flags & TSTAT_CPU_SELECTED));
17910Sstevel@tonic-gate 				tcpu->tcpu_flags &= ~TSTAT_CPU_SELECTED;
17920Sstevel@tonic-gate 			}
17930Sstevel@tonic-gate 		}
17940Sstevel@tonic-gate 
17950Sstevel@tonic-gate 		if (cmd == TSTATIOC_CPU)
17960Sstevel@tonic-gate 			tstat_percpu[arg].tcpu_flags |= TSTAT_CPU_SELECTED;
17970Sstevel@tonic-gate 
17980Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
17990Sstevel@tonic-gate 
18000Sstevel@tonic-gate 		return (0);
18010Sstevel@tonic-gate 
18020Sstevel@tonic-gate 	case TSTATIOC_ENTRY:
18030Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
18040Sstevel@tonic-gate 
18050Sstevel@tonic-gate 		if (tstat_running) {
18060Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
18070Sstevel@tonic-gate 			return (EBUSY);
18080Sstevel@tonic-gate 		}
18090Sstevel@tonic-gate 
18100Sstevel@tonic-gate 		if (arg >= TSTAT_NENT || arg < 0) {
18110Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
18120Sstevel@tonic-gate 			return (EINVAL);
18130Sstevel@tonic-gate 		}
18140Sstevel@tonic-gate 
18150Sstevel@tonic-gate 		if (!(tstat_options & TSTAT_OPT_ENTRY)) {
18160Sstevel@tonic-gate 			/*
18170Sstevel@tonic-gate 			 * If this is the first entry that we are explicitly
18180Sstevel@tonic-gate 			 * enabling, explicitly disable every TL=0 entry.
18190Sstevel@tonic-gate 			 */
18200Sstevel@tonic-gate 			for (i = 0; i < TSTAT_NENT; i++)
18210Sstevel@tonic-gate 				tstat_enabled[i] = 0;
18220Sstevel@tonic-gate 
18230Sstevel@tonic-gate 			tstat_options |= TSTAT_OPT_ENTRY;
18240Sstevel@tonic-gate 		}
18250Sstevel@tonic-gate 
18260Sstevel@tonic-gate 		tstat_enabled[arg] = 1;
18270Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
18280Sstevel@tonic-gate 		return (0);
18290Sstevel@tonic-gate 
18300Sstevel@tonic-gate 	case TSTATIOC_NOENTRY:
18310Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
18320Sstevel@tonic-gate 
18330Sstevel@tonic-gate 		if (tstat_running) {
18340Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
18350Sstevel@tonic-gate 			return (EBUSY);
18360Sstevel@tonic-gate 		}
18370Sstevel@tonic-gate 
18380Sstevel@tonic-gate 		for (i = 0; i < TSTAT_NENT; i++)
18390Sstevel@tonic-gate 			tstat_enabled[i] = 0;
18400Sstevel@tonic-gate 
18410Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
18420Sstevel@tonic-gate 		return (0);
18430Sstevel@tonic-gate 
18440Sstevel@tonic-gate 	case TSTATIOC_READ:
18450Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
18460Sstevel@tonic-gate 
18470Sstevel@tonic-gate 		if (tstat_options & TSTAT_OPT_TLBDATA) {
18480Sstevel@tonic-gate 			dsize = tstat_data_t_exported_size;
18490Sstevel@tonic-gate 		} else {
18500Sstevel@tonic-gate 			dsize = sizeof (tstat_data_t);
18510Sstevel@tonic-gate 		}
18520Sstevel@tonic-gate 
18530Sstevel@tonic-gate 		for (i = 0, out = 0; i <= max_cpuid; i++) {
18540Sstevel@tonic-gate 			tstat_percpu_t *tcpu = &tstat_percpu[i];
18550Sstevel@tonic-gate 
18560Sstevel@tonic-gate 			if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
18570Sstevel@tonic-gate 				continue;
18580Sstevel@tonic-gate 
18590Sstevel@tonic-gate 			ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
18600Sstevel@tonic-gate 			ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
18610Sstevel@tonic-gate 
18620Sstevel@tonic-gate 			tstat_buffer->tdata_cpuid = -1;
18630Sstevel@tonic-gate 			xc_one(i, (xcfunc_t *)trapstat_snapshot, 0, 0);
18640Sstevel@tonic-gate 
18650Sstevel@tonic-gate 			if (tstat_buffer->tdata_cpuid == -1) {
18660Sstevel@tonic-gate 				/*
18670Sstevel@tonic-gate 				 * This CPU is not currently responding to
18680Sstevel@tonic-gate 				 * cross calls; we have caught it while it is
18690Sstevel@tonic-gate 				 * being unconfigured.  We'll drop tstat_lock
18700Sstevel@tonic-gate 				 * and pick up and drop cpu_lock.  By the
18710Sstevel@tonic-gate 				 * time we acquire cpu_lock, the DR operation
18720Sstevel@tonic-gate 				 * will appear consistent and we can assert
18730Sstevel@tonic-gate 				 * that trapstat_cpu_setup() has cleared
18740Sstevel@tonic-gate 				 * TSTAT_CPU_ENABLED.
18750Sstevel@tonic-gate 				 */
18760Sstevel@tonic-gate 				mutex_exit(&tstat_lock);
18770Sstevel@tonic-gate 				mutex_enter(&cpu_lock);
18780Sstevel@tonic-gate 				mutex_exit(&cpu_lock);
18790Sstevel@tonic-gate 				mutex_enter(&tstat_lock);
18800Sstevel@tonic-gate 				ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
18810Sstevel@tonic-gate 				continue;
18820Sstevel@tonic-gate 			}
18830Sstevel@tonic-gate 
18840Sstevel@tonic-gate 			/*
18850Sstevel@tonic-gate 			 * Need to compensate for the difference between page
18860Sstevel@tonic-gate 			 * sizes exported to users and page sizes available
18870Sstevel@tonic-gate 			 * within the kernel.
18880Sstevel@tonic-gate 			 */
18890Sstevel@tonic-gate 			if ((tstat_options & TSTAT_OPT_TLBDATA) &&
18900Sstevel@tonic-gate 			    (tstat_pgszs != tstat_user_pgszs)) {
18910Sstevel@tonic-gate 				tstat_pgszdata_t *tp;
18920Sstevel@tonic-gate 				uint_t szc;
18930Sstevel@tonic-gate 
18940Sstevel@tonic-gate 				tp = &tstat_buffer->tdata_pgsz[0];
18950Sstevel@tonic-gate 				for (j = 0; j < tstat_user_pgszs; j++) {
18960Sstevel@tonic-gate 					if ((szc = USERSZC_2_SZC(j)) != j) {
18970Sstevel@tonic-gate 						bcopy(&tp[szc], &tp[j],
18980Sstevel@tonic-gate 						    sizeof (tstat_pgszdata_t));
18990Sstevel@tonic-gate 					}
19000Sstevel@tonic-gate 				}
19010Sstevel@tonic-gate 			}
19020Sstevel@tonic-gate 
19030Sstevel@tonic-gate 			if (copyout(tstat_buffer, (void *)arg, dsize) != 0) {
19040Sstevel@tonic-gate 				mutex_exit(&tstat_lock);
19050Sstevel@tonic-gate 				return (EFAULT);
19060Sstevel@tonic-gate 			}
19070Sstevel@tonic-gate 
19080Sstevel@tonic-gate 			out++;
19090Sstevel@tonic-gate 			arg += dsize;
19100Sstevel@tonic-gate 		}
19110Sstevel@tonic-gate 
19120Sstevel@tonic-gate 		if (out != max_cpuid + 1) {
19130Sstevel@tonic-gate 			processorid_t cpuid = -1;
19140Sstevel@tonic-gate 			arg += offsetof(tstat_data_t, tdata_cpuid);
19150Sstevel@tonic-gate 
19160Sstevel@tonic-gate 			if (copyout(&cpuid, (void *)arg, sizeof (cpuid)) != 0) {
19170Sstevel@tonic-gate 				mutex_exit(&tstat_lock);
19180Sstevel@tonic-gate 				return (EFAULT);
19190Sstevel@tonic-gate 			}
19200Sstevel@tonic-gate 		}
19210Sstevel@tonic-gate 
19220Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
19230Sstevel@tonic-gate 
19240Sstevel@tonic-gate 		return (0);
19250Sstevel@tonic-gate 
19260Sstevel@tonic-gate 	case TSTATIOC_TLBDATA:
19270Sstevel@tonic-gate 		return (trapstat_option(TSTAT_OPT_TLBDATA));
19280Sstevel@tonic-gate 
19290Sstevel@tonic-gate 	default:
19300Sstevel@tonic-gate 		break;
19310Sstevel@tonic-gate 	}
19320Sstevel@tonic-gate 
19330Sstevel@tonic-gate 	return (ENOTTY);
19340Sstevel@tonic-gate }
19350Sstevel@tonic-gate 
19360Sstevel@tonic-gate /*ARGSUSED*/
19370Sstevel@tonic-gate static int
19380Sstevel@tonic-gate trapstat_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
19390Sstevel@tonic-gate {
19400Sstevel@tonic-gate 	int error;
19410Sstevel@tonic-gate 
19420Sstevel@tonic-gate 	switch (infocmd) {
19430Sstevel@tonic-gate 	case DDI_INFO_DEVT2DEVINFO:
19440Sstevel@tonic-gate 		*result = (void *)tstat_devi;
19450Sstevel@tonic-gate 		error = DDI_SUCCESS;
19460Sstevel@tonic-gate 		break;
19470Sstevel@tonic-gate 	case DDI_INFO_DEVT2INSTANCE:
19480Sstevel@tonic-gate 		*result = (void *)0;
19490Sstevel@tonic-gate 		error = DDI_SUCCESS;
19500Sstevel@tonic-gate 		break;
19510Sstevel@tonic-gate 	default:
19520Sstevel@tonic-gate 		error = DDI_FAILURE;
19530Sstevel@tonic-gate 	}
19540Sstevel@tonic-gate 	return (error);
19550Sstevel@tonic-gate }
19560Sstevel@tonic-gate 
19570Sstevel@tonic-gate static int
19580Sstevel@tonic-gate trapstat_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
19590Sstevel@tonic-gate {
19600Sstevel@tonic-gate 	switch (cmd) {
19610Sstevel@tonic-gate 	case DDI_ATTACH:
19620Sstevel@tonic-gate 		break;
19630Sstevel@tonic-gate 
19640Sstevel@tonic-gate 	case DDI_RESUME:
19650Sstevel@tonic-gate 		return (DDI_SUCCESS);
19660Sstevel@tonic-gate 
19670Sstevel@tonic-gate 	default:
19680Sstevel@tonic-gate 		return (DDI_FAILURE);
19690Sstevel@tonic-gate 	}
19700Sstevel@tonic-gate 
19710Sstevel@tonic-gate 	if (ddi_create_minor_node(devi, "trapstat", S_IFCHR,
19720Sstevel@tonic-gate 	    0, DDI_PSEUDO, 0) == DDI_FAILURE) {
19730Sstevel@tonic-gate 		ddi_remove_minor_node(devi, NULL);
19740Sstevel@tonic-gate 		return (DDI_FAILURE);
19750Sstevel@tonic-gate 	}
19760Sstevel@tonic-gate 
19770Sstevel@tonic-gate 	ddi_report_dev(devi);
19780Sstevel@tonic-gate 	tstat_devi = devi;
19790Sstevel@tonic-gate 
19800Sstevel@tonic-gate 	tstat_pgszs = page_num_pagesizes();
19810Sstevel@tonic-gate 	tstat_user_pgszs = page_num_user_pagesizes();
19820Sstevel@tonic-gate 	tstat_data_t_size = sizeof (tstat_data_t) +
19830Sstevel@tonic-gate 	    (tstat_pgszs - 1) * sizeof (tstat_pgszdata_t);
19840Sstevel@tonic-gate 	tstat_data_t_exported_size = sizeof (tstat_data_t) +
19850Sstevel@tonic-gate 	    (tstat_user_pgszs - 1) * sizeof (tstat_pgszdata_t);
19860Sstevel@tonic-gate #ifndef sun4v
19870Sstevel@tonic-gate 	tstat_data_pages = (tstat_data_t_size >> MMU_PAGESHIFT) + 1;
19880Sstevel@tonic-gate 	tstat_total_pages = TSTAT_INSTR_PAGES + tstat_data_pages;
19890Sstevel@tonic-gate 	tstat_data_size = tstat_data_pages * MMU_PAGESIZE;
19900Sstevel@tonic-gate 	tstat_total_size = TSTAT_INSTR_SIZE + tstat_data_size;
19910Sstevel@tonic-gate #else
19920Sstevel@tonic-gate 	tstat_data_pages = 0;
19930Sstevel@tonic-gate 	tstat_data_size = tstat_data_t_size;
19940Sstevel@tonic-gate 	tstat_total_pages = ((TSTAT_INSTR_SIZE + tstat_data_size) >>
19950Sstevel@tonic-gate 		MMU_PAGESHIFT) + 1;
19960Sstevel@tonic-gate 	tstat_total_size = tstat_total_pages * MMU_PAGESIZE;
19970Sstevel@tonic-gate #endif
19980Sstevel@tonic-gate 
19990Sstevel@tonic-gate 	tstat_percpu = kmem_zalloc((max_cpuid + 1) *
20000Sstevel@tonic-gate 	    sizeof (tstat_percpu_t), KM_SLEEP);
20010Sstevel@tonic-gate 
20020Sstevel@tonic-gate 	/*
20030Sstevel@tonic-gate 	 * Create our own arena backed by segkmem to assure a source of
20040Sstevel@tonic-gate 	 * MMU_PAGESIZE-aligned allocations.  We allocate out of the
20050Sstevel@tonic-gate 	 * heap32_arena to assure that we can address the allocated memory with
20060Sstevel@tonic-gate 	 * a single sethi/simm13 pair in the interposing trap table entries.
20070Sstevel@tonic-gate 	 */
20080Sstevel@tonic-gate 	tstat_arena = vmem_create("trapstat", NULL, 0, MMU_PAGESIZE,
20090Sstevel@tonic-gate 	    segkmem_alloc_permanent, segkmem_free, heap32_arena, 0, VM_SLEEP);
20100Sstevel@tonic-gate 
20110Sstevel@tonic-gate 	tstat_enabled = kmem_alloc(TSTAT_TOTAL_NENT * sizeof (int), KM_SLEEP);
20120Sstevel@tonic-gate 	tstat_buffer = kmem_alloc(tstat_data_t_size, KM_SLEEP);
20130Sstevel@tonic-gate 
20140Sstevel@tonic-gate 	/*
20150Sstevel@tonic-gate 	 * CB_CL_CPR_POST_USER is the class that executes from cpr_resume()
20160Sstevel@tonic-gate 	 * after user threads can be restarted.  By executing in this class,
20170Sstevel@tonic-gate 	 * we are assured of the availability of system services needed to
20180Sstevel@tonic-gate 	 * resume trapstat (specifically, we are assured that all CPUs are
20190Sstevel@tonic-gate 	 * restarted and responding to cross calls).
20200Sstevel@tonic-gate 	 */
20210Sstevel@tonic-gate 	tstat_cprcb =
20220Sstevel@tonic-gate 	    callb_add(trapstat_cpr, NULL, CB_CL_CPR_POST_USER, "trapstat");
20230Sstevel@tonic-gate 
20240Sstevel@tonic-gate 	return (DDI_SUCCESS);
20250Sstevel@tonic-gate }
20260Sstevel@tonic-gate 
20270Sstevel@tonic-gate static int
20280Sstevel@tonic-gate trapstat_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
20290Sstevel@tonic-gate {
20300Sstevel@tonic-gate 	int rval;
20310Sstevel@tonic-gate 
20320Sstevel@tonic-gate 	ASSERT(devi == tstat_devi);
20330Sstevel@tonic-gate 
20340Sstevel@tonic-gate 	switch (cmd) {
20350Sstevel@tonic-gate 	case DDI_DETACH:
20360Sstevel@tonic-gate 		break;
20370Sstevel@tonic-gate 
20380Sstevel@tonic-gate 	case DDI_SUSPEND:
20390Sstevel@tonic-gate 		return (DDI_SUCCESS);
20400Sstevel@tonic-gate 
20410Sstevel@tonic-gate 	default:
20420Sstevel@tonic-gate 		return (DDI_FAILURE);
20430Sstevel@tonic-gate 	}
20440Sstevel@tonic-gate 
20450Sstevel@tonic-gate 	ASSERT(!tstat_running);
20460Sstevel@tonic-gate 
20470Sstevel@tonic-gate 	rval = callb_delete(tstat_cprcb);
20480Sstevel@tonic-gate 	ASSERT(rval == 0);
20490Sstevel@tonic-gate 
20500Sstevel@tonic-gate 	kmem_free(tstat_buffer, tstat_data_t_size);
20510Sstevel@tonic-gate 	kmem_free(tstat_enabled, TSTAT_TOTAL_NENT * sizeof (int));
20520Sstevel@tonic-gate 	vmem_destroy(tstat_arena);
20530Sstevel@tonic-gate 	kmem_free(tstat_percpu, (max_cpuid + 1) * sizeof (tstat_percpu_t));
20540Sstevel@tonic-gate 	ddi_remove_minor_node(devi, NULL);
20550Sstevel@tonic-gate 
20560Sstevel@tonic-gate 	return (DDI_SUCCESS);
20570Sstevel@tonic-gate }
20580Sstevel@tonic-gate 
20590Sstevel@tonic-gate /*
20600Sstevel@tonic-gate  * Configuration data structures
20610Sstevel@tonic-gate  */
20620Sstevel@tonic-gate static struct cb_ops trapstat_cb_ops = {
20630Sstevel@tonic-gate 	trapstat_open,		/* open */
20640Sstevel@tonic-gate 	trapstat_close,		/* close */
20650Sstevel@tonic-gate 	nulldev,		/* strategy */
20660Sstevel@tonic-gate 	nulldev,		/* print */
20670Sstevel@tonic-gate 	nodev,			/* dump */
20680Sstevel@tonic-gate 	nodev,			/* read */
20690Sstevel@tonic-gate 	nodev,			/* write */
20700Sstevel@tonic-gate 	trapstat_ioctl,		/* ioctl */
20710Sstevel@tonic-gate 	nodev,			/* devmap */
20720Sstevel@tonic-gate 	nodev,			/* mmap */
20730Sstevel@tonic-gate 	nodev,			/* segmap */
20740Sstevel@tonic-gate 	nochpoll,		/* poll */
20750Sstevel@tonic-gate 	ddi_prop_op,		/* cb_prop_op */
20760Sstevel@tonic-gate 	0,			/* streamtab */
20770Sstevel@tonic-gate 	D_MP | D_NEW		/* Driver compatibility flag */
20780Sstevel@tonic-gate };
20790Sstevel@tonic-gate 
20800Sstevel@tonic-gate static struct dev_ops trapstat_ops = {
20810Sstevel@tonic-gate 	DEVO_REV,		/* devo_rev, */
20820Sstevel@tonic-gate 	0,			/* refcnt */
20830Sstevel@tonic-gate 	trapstat_info,		/* getinfo */
20840Sstevel@tonic-gate 	nulldev,		/* identify */
20850Sstevel@tonic-gate 	nulldev,		/* probe */
20860Sstevel@tonic-gate 	trapstat_attach,	/* attach */
20870Sstevel@tonic-gate 	trapstat_detach,	/* detach */
20880Sstevel@tonic-gate 	nulldev,		/* reset */
20890Sstevel@tonic-gate 	&trapstat_cb_ops,	/* cb_ops */
20900Sstevel@tonic-gate 	(struct bus_ops *)0,	/* bus_ops */
20910Sstevel@tonic-gate };
20920Sstevel@tonic-gate 
20930Sstevel@tonic-gate static struct modldrv modldrv = {
20940Sstevel@tonic-gate 	&mod_driverops,		/* Type of module.  This one is a driver */
20950Sstevel@tonic-gate 	"Trap Statistics",	/* name of module */
20960Sstevel@tonic-gate 	&trapstat_ops,		/* driver ops */
20970Sstevel@tonic-gate };
20980Sstevel@tonic-gate 
20990Sstevel@tonic-gate static struct modlinkage modlinkage = {
21000Sstevel@tonic-gate 	MODREV_1, (void *)&modldrv, NULL
21010Sstevel@tonic-gate };
21020Sstevel@tonic-gate 
21030Sstevel@tonic-gate int
21040Sstevel@tonic-gate _init(void)
21050Sstevel@tonic-gate {
21060Sstevel@tonic-gate 	return (mod_install(&modlinkage));
21070Sstevel@tonic-gate }
21080Sstevel@tonic-gate 
21090Sstevel@tonic-gate int
21100Sstevel@tonic-gate _fini(void)
21110Sstevel@tonic-gate {
21120Sstevel@tonic-gate 	return (mod_remove(&modlinkage));
21130Sstevel@tonic-gate }
21140Sstevel@tonic-gate 
21150Sstevel@tonic-gate int
21160Sstevel@tonic-gate _info(struct modinfo *modinfop)
21170Sstevel@tonic-gate {
21180Sstevel@tonic-gate 	return (mod_info(&modlinkage, modinfop));
21190Sstevel@tonic-gate }
2120