xref: /onnv-gate/usr/src/uts/sun4/io/trapstat.c (revision 1050)
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
450*1050Sgirish  * is reported for normal operation. However, when trapstat is invoked
451*1050Sgirish  * with -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.
454*1050Sgirish  * On some processors, hypervisor or hardware may provide a low overhead
455*1050Sgirish  * interface to collect TSB hit statistics. This support is exposed via
456*1050Sgirish  * a well defined CPU module interface (cpu_trapstat_conf to enable this
457*1050Sgirish  * interface and cpu_trapstat_data to get detailed TSB hit statistics).
458*1050Sgirish  * In this scenario, TSB miss statistics is collected by intercepting the
459*1050Sgirish  * IMMU_miss and DMMU_miss traps using above mentioned trap interposition
460*1050Sgirish  * approach.
4610Sstevel@tonic-gate  *
4620Sstevel@tonic-gate  * Locking
4630Sstevel@tonic-gate  *
4640Sstevel@tonic-gate  * The implementation uses two locks:  tstat_lock (a local lock) and the global
4650Sstevel@tonic-gate  * cpu_lock.  tstat_lock is used to assure trapstat's consistency in the
4660Sstevel@tonic-gate  * presence of multithreaded /dev/trapstat consumers (while as of this writing
4670Sstevel@tonic-gate  * the only consumer of /dev/trapstat is single threaded, it is obviously
4680Sstevel@tonic-gate  * necessary to correctly support multithreaded access).  cpu_lock is held
4690Sstevel@tonic-gate  * whenever CPUs are being manipulated directly, to prevent them from
4700Sstevel@tonic-gate  * disappearing in the process.  Because trapstat's DR callback
4710Sstevel@tonic-gate  * (trapstat_cpu_setup()) must grab tstat_lock and is called with cpu_lock
4720Sstevel@tonic-gate  * held, the lock ordering is necessarily cpu_lock before tstat_lock.
4730Sstevel@tonic-gate  *
4740Sstevel@tonic-gate  */
4750Sstevel@tonic-gate /* END CSTYLED */
4760Sstevel@tonic-gate 
4770Sstevel@tonic-gate static dev_info_t	*tstat_devi;	/* saved in xxattach() for xxinfo() */
4780Sstevel@tonic-gate static int		tstat_open;	/* set if driver is open */
4790Sstevel@tonic-gate static kmutex_t		tstat_lock;	/* serialize access */
4800Sstevel@tonic-gate static vmem_t		*tstat_arena;	/* arena for TLB-locked pages */
4810Sstevel@tonic-gate static tstat_percpu_t	*tstat_percpu;	/* per-CPU data */
4820Sstevel@tonic-gate static int		tstat_running;	/* set if trapstat is running */
4830Sstevel@tonic-gate static tstat_data_t	*tstat_buffer;	/* staging buffer for outgoing data */
4840Sstevel@tonic-gate static int		tstat_options;	/* bit-wise indication of options */
4850Sstevel@tonic-gate static int		*tstat_enabled;	/* map of enabled trap entries */
4860Sstevel@tonic-gate static int		tstat_tsbmiss_patched; /* tsbmiss patch flag */
4870Sstevel@tonic-gate static callb_id_t	tstat_cprcb;	/* CPR callback */
4880Sstevel@tonic-gate static char		*tstat_probe_area; /* VA range used for probe effect */
4890Sstevel@tonic-gate static caddr_t		tstat_probe_phys; /* physical to back above VA */
4900Sstevel@tonic-gate static hrtime_t		tstat_probe_time; /* time spent on probe effect */
4910Sstevel@tonic-gate static hrtime_t		tstat_probe_before[TSTAT_PROBE_NLAPS];
4920Sstevel@tonic-gate static hrtime_t		tstat_probe_after[TSTAT_PROBE_NLAPS];
4930Sstevel@tonic-gate static uint_t		tstat_pgszs;		/* # of kernel page sizes */
4940Sstevel@tonic-gate static uint_t		tstat_user_pgszs;	/* # of user page sizes */
4950Sstevel@tonic-gate 
4960Sstevel@tonic-gate /*
4970Sstevel@tonic-gate  * sizeof tstat_data_t + pgsz data for the kernel.  For simplicity's sake, when
4980Sstevel@tonic-gate  * we collect data, we do it based upon szc, but when we report data back to
4990Sstevel@tonic-gate  * userland, we have to do it based upon the userszc which may not match.
5000Sstevel@tonic-gate  * So, these two variables are for internal use and exported use respectively.
5010Sstevel@tonic-gate  */
5020Sstevel@tonic-gate static size_t		tstat_data_t_size;
5030Sstevel@tonic-gate static size_t		tstat_data_t_exported_size;
5040Sstevel@tonic-gate 
5050Sstevel@tonic-gate static size_t		tstat_data_pages;  /* number of pages of tstat data */
5060Sstevel@tonic-gate static size_t		tstat_data_size;   /* tstat data size in bytes */
5070Sstevel@tonic-gate static size_t		tstat_total_pages; /* #data pages + #instr pages */
5080Sstevel@tonic-gate static size_t		tstat_total_size;  /* tstat data size + instr size */
5090Sstevel@tonic-gate #ifdef sun4v
5100Sstevel@tonic-gate static caddr_t		tstat_va;	/* VA of memory reserved for TBA */
5110Sstevel@tonic-gate static pfn_t		tstat_pfn;	/* PFN of memory reserved for TBA */
512*1050Sgirish static boolean_t	tstat_fast_tlbstat = B_FALSE;
5130Sstevel@tonic-gate #endif
5140Sstevel@tonic-gate 
5150Sstevel@tonic-gate /*
5160Sstevel@tonic-gate  * In the above block comment, see "TLB Statistics: TLB Misses versus
5170Sstevel@tonic-gate  * TSB Misses" for an explanation of the tsbmiss patch points.
5180Sstevel@tonic-gate  */
5190Sstevel@tonic-gate extern uint32_t		tsbmiss_trapstat_patch_point;
5200Sstevel@tonic-gate extern uint32_t		tsbmiss_trapstat_patch_point_kpm;
5210Sstevel@tonic-gate extern uint32_t		tsbmiss_trapstat_patch_point_kpm_small;
5220Sstevel@tonic-gate 
5230Sstevel@tonic-gate /*
5240Sstevel@tonic-gate  * Trapstat tsbmiss patch table
5250Sstevel@tonic-gate  */
5260Sstevel@tonic-gate tstat_tsbmiss_patch_entry_t tstat_tsbmiss_patch_table[] = {
5270Sstevel@tonic-gate 	{(uint32_t *)&tsbmiss_trapstat_patch_point, 0},
5280Sstevel@tonic-gate 	{(uint32_t *)&tsbmiss_trapstat_patch_point_kpm, 0},
5290Sstevel@tonic-gate 	{(uint32_t *)&tsbmiss_trapstat_patch_point_kpm_small, 0},
5300Sstevel@tonic-gate 	{(uint32_t *)NULL, 0}
5310Sstevel@tonic-gate };
5320Sstevel@tonic-gate 
5330Sstevel@tonic-gate /*
5340Sstevel@tonic-gate  * We define some general SPARC-specific constants to allow more readable
5350Sstevel@tonic-gate  * relocations.
5360Sstevel@tonic-gate  */
5370Sstevel@tonic-gate #define	NOP	0x01000000
5380Sstevel@tonic-gate #define	HI22(v) ((uint32_t)(v) >> 10)
5390Sstevel@tonic-gate #define	LO10(v) ((uint32_t)(v) & 0x3ff)
5400Sstevel@tonic-gate #define	LO12(v) ((uint32_t)(v) & 0xfff)
5410Sstevel@tonic-gate #define	DISP22(from, to) \
5420Sstevel@tonic-gate 	((((uintptr_t)(to) - (uintptr_t)(from)) >> 2) & 0x3fffff)
5430Sstevel@tonic-gate #define	ASI(asi)	((asi) << 5)
5440Sstevel@tonic-gate 
5450Sstevel@tonic-gate /*
5460Sstevel@tonic-gate  * The interposing trap table must be locked in the I-TLB, and any data
5470Sstevel@tonic-gate  * referred to in the interposing trap handler must be locked in the D-TLB.
5480Sstevel@tonic-gate  * This function locks these pages in the appropriate TLBs by creating TTEs
5490Sstevel@tonic-gate  * from whole cloth, and manually loading them into the TLB.  This function is
5500Sstevel@tonic-gate  * called from cross call context.
5510Sstevel@tonic-gate  *
5520Sstevel@tonic-gate  * On sun4v platforms, we use 4M page size mappings to minimize the number
5530Sstevel@tonic-gate  * of locked down entries (i.e. permanent mappings). Each CPU uses a
5540Sstevel@tonic-gate  * reserved portion of that 4M page for its TBA and data.
5550Sstevel@tonic-gate  */
5560Sstevel@tonic-gate static void
5570Sstevel@tonic-gate trapstat_load_tlb(void)
5580Sstevel@tonic-gate {
5590Sstevel@tonic-gate #ifndef sun4v
5600Sstevel@tonic-gate 	int i;
5610Sstevel@tonic-gate #else
5620Sstevel@tonic-gate 	uint64_t ret;
5630Sstevel@tonic-gate #endif
5640Sstevel@tonic-gate 	tte_t tte;
5650Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
5660Sstevel@tonic-gate 	caddr_t va = tcpu->tcpu_vabase;
5670Sstevel@tonic-gate 
5680Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
5690Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
5700Sstevel@tonic-gate 
5710Sstevel@tonic-gate #ifndef sun4v
5720Sstevel@tonic-gate 	for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) {
5730Sstevel@tonic-gate 		tte.tte_inthi = TTE_VALID_INT | TTE_SZ_INT(TTE8K) |
5740Sstevel@tonic-gate 			TTE_PFN_INTHI(tcpu->tcpu_pfn[i]);
5750Sstevel@tonic-gate 		if (i < TSTAT_INSTR_PAGES) {
5760Sstevel@tonic-gate 			tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) |
5770Sstevel@tonic-gate 				TTE_LCK_INT | TTE_CP_INT | TTE_PRIV_INT;
5780Sstevel@tonic-gate 			sfmmu_itlb_ld(va, KCONTEXT, &tte);
5790Sstevel@tonic-gate 		} else {
5800Sstevel@tonic-gate 			tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) |
5810Sstevel@tonic-gate 				TTE_LCK_INT | TTE_CP_INT | TTE_CV_INT |
5820Sstevel@tonic-gate 				TTE_PRIV_INT | TTE_HWWR_INT;
5830Sstevel@tonic-gate 			sfmmu_dtlb_ld(va, KCONTEXT, &tte);
5840Sstevel@tonic-gate 		}
5850Sstevel@tonic-gate 	}
5860Sstevel@tonic-gate #else /* sun4v */
5870Sstevel@tonic-gate 	tte.tte_inthi = TTE_VALID_INT | TTE_PFN_INTHI(tstat_pfn);
5880Sstevel@tonic-gate 	tte.tte_intlo = TTE_PFN_INTLO(tstat_pfn) | TTE_CP_INT |
5890Sstevel@tonic-gate 		TTE_CV_INT | TTE_PRIV_INT | TTE_HWWR_INT |
5900Sstevel@tonic-gate 		TTE_SZ_INTLO(TTE4M);
5910Sstevel@tonic-gate 	ret = hv_mmu_map_perm_addr(va, KCONTEXT, *(uint64_t *)&tte,
5920Sstevel@tonic-gate 		MAP_ITLB | MAP_DTLB);
5930Sstevel@tonic-gate 
5940Sstevel@tonic-gate 	if (ret != H_EOK)
5950Sstevel@tonic-gate 		cmn_err(CE_PANIC, "trapstat: cannot map new TBA "
5960Sstevel@tonic-gate 		    "for cpu %d  (error: 0x%lx)", CPU->cpu_id, ret);
5970Sstevel@tonic-gate #endif /* sun4v */
5980Sstevel@tonic-gate }
5990Sstevel@tonic-gate 
6000Sstevel@tonic-gate /*
6010Sstevel@tonic-gate  * As mentioned in the "TLB Statistics: TLB Misses versus TSB Misses" section
6020Sstevel@tonic-gate  * of the block comment, TLB misses are differentiated from TSB misses in
6030Sstevel@tonic-gate  * part by hot-patching the instructions at the tsbmiss patch points (see
6040Sstevel@tonic-gate  * tstat_tsbmiss_patch_table). This routine is used both to initially patch
6050Sstevel@tonic-gate  * the instructions, and to patch them back to their original values upon
6060Sstevel@tonic-gate  * restoring the original trap table.
6070Sstevel@tonic-gate  */
6080Sstevel@tonic-gate static void
6090Sstevel@tonic-gate trapstat_hotpatch()
6100Sstevel@tonic-gate {
6110Sstevel@tonic-gate 	uint32_t instr;
6120Sstevel@tonic-gate 	uint32_t simm13;
6130Sstevel@tonic-gate 	tstat_tsbmiss_patch_entry_t *ep;
6140Sstevel@tonic-gate 
6150Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
6160Sstevel@tonic-gate 
6170Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_TLBDATA))
6180Sstevel@tonic-gate 		return;
6190Sstevel@tonic-gate 
6200Sstevel@tonic-gate 	if (!tstat_tsbmiss_patched) {
6210Sstevel@tonic-gate 		/*
6220Sstevel@tonic-gate 		 * We haven't patched the TSB paths; do so now.
6230Sstevel@tonic-gate 		 */
6240Sstevel@tonic-gate 		/*CONSTCOND*/
6250Sstevel@tonic-gate 		ASSERT(offsetof(tstat_tlbret_t, ttlbr_ktsb) -
6260Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_ktlb) ==
6270Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_utsb) -
6280Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_utlb));
6290Sstevel@tonic-gate 
6300Sstevel@tonic-gate 		simm13 = offsetof(tstat_tlbret_t, ttlbr_ktsb) -
6310Sstevel@tonic-gate 		    offsetof(tstat_tlbret_t, ttlbr_ktlb);
6320Sstevel@tonic-gate 
6330Sstevel@tonic-gate 		for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) {
6340Sstevel@tonic-gate 			ASSERT(ep->tpe_instr == 0);
6350Sstevel@tonic-gate 			instr = ep->tpe_instr = *ep->tpe_addr;
6360Sstevel@tonic-gate 
6370Sstevel@tonic-gate 			/*
6380Sstevel@tonic-gate 			 * Assert that the instruction we're about to patch is
6390Sstevel@tonic-gate 			 * "add %g7, 0, %g7" (0x8e01e000).
6400Sstevel@tonic-gate 			 */
6410Sstevel@tonic-gate 			ASSERT(instr == TSTAT_TSBMISS_INSTR);
6420Sstevel@tonic-gate 
6430Sstevel@tonic-gate 			instr |= simm13;
6440Sstevel@tonic-gate 			hot_patch_kernel_text((caddr_t)ep->tpe_addr,
6450Sstevel@tonic-gate 			    instr, sizeof (instr));
6460Sstevel@tonic-gate 		}
6470Sstevel@tonic-gate 
6480Sstevel@tonic-gate 		tstat_tsbmiss_patched = 1;
6490Sstevel@tonic-gate 
6500Sstevel@tonic-gate 	} else {
6510Sstevel@tonic-gate 		/*
6520Sstevel@tonic-gate 		 * Remove patches from the TSB paths.
6530Sstevel@tonic-gate 		 */
6540Sstevel@tonic-gate 		for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) {
6550Sstevel@tonic-gate 			ASSERT(ep->tpe_instr == TSTAT_TSBMISS_INSTR);
6560Sstevel@tonic-gate 			hot_patch_kernel_text((caddr_t)ep->tpe_addr,
6570Sstevel@tonic-gate 			    ep->tpe_instr, sizeof (instr));
6580Sstevel@tonic-gate 			ep->tpe_instr = 0;
6590Sstevel@tonic-gate 		}
6600Sstevel@tonic-gate 
6610Sstevel@tonic-gate 		tstat_tsbmiss_patched = 0;
6620Sstevel@tonic-gate 	}
6630Sstevel@tonic-gate }
6640Sstevel@tonic-gate 
6650Sstevel@tonic-gate /*
6660Sstevel@tonic-gate  * This is the routine executed to clock the performance of the trap table,
6670Sstevel@tonic-gate  * executed both before and after interposing on the trap table to attempt to
6680Sstevel@tonic-gate  * determine probe effect.  The probe effect is used to adjust the "%tim"
6690Sstevel@tonic-gate  * fields of trapstat's -t and -T output; we only use TLB misses to clock the
6700Sstevel@tonic-gate  * trap table.  We execute the inner loop (which is designed to exceed the
6710Sstevel@tonic-gate  * TLB's reach) nlaps times, taking the best time as our time (thereby
6720Sstevel@tonic-gate  * factoring out the effects of interrupts, cache misses or other perturbing
6730Sstevel@tonic-gate  * events.
6740Sstevel@tonic-gate  */
6750Sstevel@tonic-gate static hrtime_t
6760Sstevel@tonic-gate trapstat_probe_laps(int nlaps, hrtime_t *buf)
6770Sstevel@tonic-gate {
6780Sstevel@tonic-gate 	int i, j = 0;
6790Sstevel@tonic-gate 	hrtime_t ts, best = INT64_MAX;
6800Sstevel@tonic-gate 
6810Sstevel@tonic-gate 	while (nlaps--) {
6820Sstevel@tonic-gate 		ts = rdtick();
6830Sstevel@tonic-gate 
6840Sstevel@tonic-gate 		for (i = 0; i < TSTAT_PROBE_SIZE; i += MMU_PAGESIZE)
6850Sstevel@tonic-gate 			*((volatile char *)&tstat_probe_area[i]);
6860Sstevel@tonic-gate 
6870Sstevel@tonic-gate 		if ((ts = rdtick() - ts) < best)
6880Sstevel@tonic-gate 			best = ts;
6890Sstevel@tonic-gate 		buf[j++] = ts;
6900Sstevel@tonic-gate 	}
6910Sstevel@tonic-gate 
6920Sstevel@tonic-gate 	return (best);
6930Sstevel@tonic-gate }
6940Sstevel@tonic-gate 
6950Sstevel@tonic-gate /*
6960Sstevel@tonic-gate  * This routine determines the probe effect by calling trapstat_probe_laps()
6970Sstevel@tonic-gate  * both without and with the interposing trap table.  Note that this is
6980Sstevel@tonic-gate  * called from a cross call on the desired CPU, and that it is called on
6990Sstevel@tonic-gate  * every CPU (this is necessary because the probe effect may differ from
7000Sstevel@tonic-gate  * one CPU to another).
7010Sstevel@tonic-gate  */
7020Sstevel@tonic-gate static void
7030Sstevel@tonic-gate trapstat_probe()
7040Sstevel@tonic-gate {
7050Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
7060Sstevel@tonic-gate 	hrtime_t before, after;
7070Sstevel@tonic-gate 
7080Sstevel@tonic-gate 	if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED))
7090Sstevel@tonic-gate 		return;
7100Sstevel@tonic-gate 
7110Sstevel@tonic-gate 	if (tstat_probe_area == NULL || (tstat_options & TSTAT_OPT_NOGO))
7120Sstevel@tonic-gate 		return;
7130Sstevel@tonic-gate 
7140Sstevel@tonic-gate 	/*
7150Sstevel@tonic-gate 	 * We very much expect the %tba to be KERNELBASE; this is a
7160Sstevel@tonic-gate 	 * precautionary measure to assure that trapstat doesn't melt the
7170Sstevel@tonic-gate 	 * machine should the %tba point unexpectedly elsewhere.
7180Sstevel@tonic-gate 	 */
7190Sstevel@tonic-gate 	if (get_tba() != (caddr_t)KERNELBASE)
7200Sstevel@tonic-gate 		return;
7210Sstevel@tonic-gate 
7220Sstevel@tonic-gate 	/*
7230Sstevel@tonic-gate 	 * Preserve this CPU's data before destroying it by enabling the
7240Sstevel@tonic-gate 	 * interposing trap table.  We can safely use tstat_buffer because
7250Sstevel@tonic-gate 	 * the caller of the trapstat_probe() cross call is holding tstat_lock.
7260Sstevel@tonic-gate 	 */
7270Sstevel@tonic-gate 	bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size);
7280Sstevel@tonic-gate 
7290Sstevel@tonic-gate 	tstat_probe_time = gethrtime();
7300Sstevel@tonic-gate 
7310Sstevel@tonic-gate 	before = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_before);
7320Sstevel@tonic-gate 	(void) set_tba(tcpu->tcpu_ibase);
7330Sstevel@tonic-gate 
7340Sstevel@tonic-gate 	after = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_after);
7350Sstevel@tonic-gate 	(void) set_tba((caddr_t)KERNELBASE);
7360Sstevel@tonic-gate 
7370Sstevel@tonic-gate 	tstat_probe_time = gethrtime() - tstat_probe_time;
7380Sstevel@tonic-gate 
7390Sstevel@tonic-gate 	bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size);
7400Sstevel@tonic-gate 	tcpu->tcpu_data->tdata_peffect = (after - before) / TSTAT_PROBE_NPAGES;
7410Sstevel@tonic-gate }
7420Sstevel@tonic-gate 
7430Sstevel@tonic-gate static void
7440Sstevel@tonic-gate trapstat_probe_alloc()
7450Sstevel@tonic-gate {
7460Sstevel@tonic-gate 	pfn_t pfn;
7470Sstevel@tonic-gate 	caddr_t va;
7480Sstevel@tonic-gate 	int i;
7490Sstevel@tonic-gate 
7500Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
7510Sstevel@tonic-gate 	ASSERT(tstat_probe_area == NULL);
7520Sstevel@tonic-gate 	ASSERT(tstat_probe_phys == NULL);
7530Sstevel@tonic-gate 
7540Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_TLBDATA))
7550Sstevel@tonic-gate 		return;
7560Sstevel@tonic-gate 
7570Sstevel@tonic-gate 	/*
7580Sstevel@tonic-gate 	 * Grab some virtual from the heap arena.
7590Sstevel@tonic-gate 	 */
7600Sstevel@tonic-gate 	tstat_probe_area = vmem_alloc(heap_arena, TSTAT_PROBE_SIZE, VM_SLEEP);
7610Sstevel@tonic-gate 	va = tstat_probe_area;
7620Sstevel@tonic-gate 
7630Sstevel@tonic-gate 	/*
7640Sstevel@tonic-gate 	 * Grab a single physical page.
7650Sstevel@tonic-gate 	 */
7660Sstevel@tonic-gate 	tstat_probe_phys = vmem_alloc(tstat_arena, MMU_PAGESIZE, VM_SLEEP);
7670Sstevel@tonic-gate 	pfn = hat_getpfnum(kas.a_hat, tstat_probe_phys);
7680Sstevel@tonic-gate 
7690Sstevel@tonic-gate 	/*
7700Sstevel@tonic-gate 	 * Now set the translation for every page in our virtual range
7710Sstevel@tonic-gate 	 * to be our allocated physical page.
7720Sstevel@tonic-gate 	 */
7730Sstevel@tonic-gate 	for (i = 0; i < TSTAT_PROBE_NPAGES; i++) {
7740Sstevel@tonic-gate 		hat_devload(kas.a_hat, va, MMU_PAGESIZE, pfn, PROT_READ,
7750Sstevel@tonic-gate 		    HAT_LOAD_NOCONSIST | HAT_LOAD_LOCK);
7760Sstevel@tonic-gate 		va += MMU_PAGESIZE;
7770Sstevel@tonic-gate 	}
7780Sstevel@tonic-gate }
7790Sstevel@tonic-gate 
7800Sstevel@tonic-gate static void
7810Sstevel@tonic-gate trapstat_probe_free()
7820Sstevel@tonic-gate {
7830Sstevel@tonic-gate 	caddr_t va;
7840Sstevel@tonic-gate 	int i;
7850Sstevel@tonic-gate 
7860Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
7870Sstevel@tonic-gate 
7880Sstevel@tonic-gate 	if ((va = tstat_probe_area) == NULL)
7890Sstevel@tonic-gate 		return;
7900Sstevel@tonic-gate 
7910Sstevel@tonic-gate 	for (i = 0; i < TSTAT_PROBE_NPAGES; i++) {
7920Sstevel@tonic-gate 		hat_unload(kas.a_hat, va, MMU_PAGESIZE, HAT_UNLOAD_UNLOCK);
7930Sstevel@tonic-gate 		va += MMU_PAGESIZE;
7940Sstevel@tonic-gate 	}
7950Sstevel@tonic-gate 
7960Sstevel@tonic-gate 	vmem_free(tstat_arena, tstat_probe_phys, MMU_PAGESIZE);
7970Sstevel@tonic-gate 	vmem_free(heap_arena, tstat_probe_area, TSTAT_PROBE_SIZE);
7980Sstevel@tonic-gate 
7990Sstevel@tonic-gate 	tstat_probe_phys = NULL;
8000Sstevel@tonic-gate 	tstat_probe_area = NULL;
8010Sstevel@tonic-gate }
8020Sstevel@tonic-gate 
8030Sstevel@tonic-gate /*
8040Sstevel@tonic-gate  * This routine actually enables a CPU by setting its %tba to be the
8050Sstevel@tonic-gate  * CPU's interposing trap table.  It is called out of cross call context.
8060Sstevel@tonic-gate  */
8070Sstevel@tonic-gate static void
8080Sstevel@tonic-gate trapstat_enable()
8090Sstevel@tonic-gate {
8100Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
8110Sstevel@tonic-gate 
8120Sstevel@tonic-gate 	if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED))
8130Sstevel@tonic-gate 		return;
8140Sstevel@tonic-gate 
8150Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
8160Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
8170Sstevel@tonic-gate 
8180Sstevel@tonic-gate 	if (get_tba() != (caddr_t)KERNELBASE)
8190Sstevel@tonic-gate 		return;
8200Sstevel@tonic-gate 
8210Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_NOGO))
8220Sstevel@tonic-gate 		(void) set_tba(tcpu->tcpu_ibase);
8230Sstevel@tonic-gate 	tcpu->tcpu_flags |= TSTAT_CPU_ENABLED;
8240Sstevel@tonic-gate #ifdef sun4v
825*1050Sgirish 	if ((tstat_options & TSTAT_OPT_TLBDATA) &&
826*1050Sgirish 	    !(tstat_options & TSTAT_OPT_NOGO)) {
827*1050Sgirish 		if (tstat_fast_tlbstat) {
828*1050Sgirish 			/*
829*1050Sgirish 			 * Invoke processor specific interface to enable
830*1050Sgirish 			 * collection of TSB hit statistics.
831*1050Sgirish 			 */
832*1050Sgirish 			cpu_trapstat_conf(CPU_TSTATCONF_ENABLE);
833*1050Sgirish 		} else {
834*1050Sgirish 			/*
835*1050Sgirish 			 * Collect TLB miss statistics by taking over
836*1050Sgirish 			 * TLB miss handling from the hypervisor. This
837*1050Sgirish 			 * is done by telling the hypervisor that there
838*1050Sgirish 			 * is no TSB configured. Also set TSTAT_TLB_STATS
839*1050Sgirish 			 * flag so that no user TSB is configured during
840*1050Sgirish 			 * context switch time.
841*1050Sgirish 			 */
842*1050Sgirish 			cpu_t *cp = CPU;
8430Sstevel@tonic-gate 
844*1050Sgirish 			cp->cpu_m.cpu_tstat_flags |= TSTAT_TLB_STATS;
845*1050Sgirish 			(void) hv_set_ctx0(NULL, NULL);
846*1050Sgirish 			(void) hv_set_ctxnon0(NULL, NULL);
847*1050Sgirish 		}
8480Sstevel@tonic-gate 	}
8490Sstevel@tonic-gate #endif
8500Sstevel@tonic-gate }
8510Sstevel@tonic-gate 
8520Sstevel@tonic-gate /*
8530Sstevel@tonic-gate  * This routine disables a CPU (vis a vis trapstat) by setting its %tba to be
8540Sstevel@tonic-gate  * the actual, underlying trap table.  It is called out of cross call context.
8550Sstevel@tonic-gate  */
8560Sstevel@tonic-gate static void
8570Sstevel@tonic-gate trapstat_disable()
8580Sstevel@tonic-gate {
8590Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
8600Sstevel@tonic-gate 
8610Sstevel@tonic-gate 	if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
8620Sstevel@tonic-gate 		return;
8630Sstevel@tonic-gate 
8640Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
8650Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
8660Sstevel@tonic-gate 
8670Sstevel@tonic-gate 	if (!(tstat_options & TSTAT_OPT_NOGO))
8680Sstevel@tonic-gate 		(void) set_tba((caddr_t)KERNELBASE);
8690Sstevel@tonic-gate 
8700Sstevel@tonic-gate 	tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED;
8710Sstevel@tonic-gate 
8720Sstevel@tonic-gate #ifdef sun4v
873*1050Sgirish 	if ((tstat_options & TSTAT_OPT_TLBDATA) &&
874*1050Sgirish 	    !(tstat_options & TSTAT_OPT_NOGO)) {
875*1050Sgirish 		if (tstat_fast_tlbstat) {
876*1050Sgirish 			/*
877*1050Sgirish 			 * Invoke processor specific interface to disable
878*1050Sgirish 			 * collection of TSB hit statistics on each processor.
879*1050Sgirish 			 */
880*1050Sgirish 			cpu_trapstat_conf(CPU_TSTATCONF_DISABLE);
881*1050Sgirish 		} else {
882*1050Sgirish 			/*
883*1050Sgirish 			 * As part of collecting TLB miss statistics, we took
884*1050Sgirish 			 * over TLB miss handling from the hypervisor by
885*1050Sgirish 			 * telling the hypervisor that NO TSB is configured.
886*1050Sgirish 			 * We need to restore that by communicating proper
887*1050Sgirish 			 * kernel/user TSB information so that TLB misses
888*1050Sgirish 			 * can be handled by the hypervisor or the hardware
889*1050Sgirish 			 * more efficiently.
890*1050Sgirish 			 *
891*1050Sgirish 			 * We restore kernel TSB information right away.
892*1050Sgirish 			 * However, to minimize any locking dependency, we
893*1050Sgirish 			 * don't restore user TSB information right away.
894*1050Sgirish 			 * Instead, we simply clear the TSTAT_TLB_STATS flag
895*1050Sgirish 			 * so that the user TSB information is automatically
896*1050Sgirish 			 * restored on next context switch.
897*1050Sgirish 			 *
898*1050Sgirish 			 * Note that the call to restore kernel TSB information
899*1050Sgirish 			 * will normally not fail, unless wrong information is
900*1050Sgirish 			 * passed here. In that scenario, system will still
901*1050Sgirish 			 * continue to function properly with the exception of
902*1050Sgirish 			 * kernel handling all the TLB misses.
903*1050Sgirish 			 */
904*1050Sgirish 			struct hv_tsb_block *hvbp = &ksfmmup->sfmmu_hvblock;
905*1050Sgirish 			cpu_t *cp = CPU;
9060Sstevel@tonic-gate 
907*1050Sgirish 			cp->cpu_m.cpu_tstat_flags &= ~TSTAT_TLB_STATS;
908*1050Sgirish 			(void) hv_set_ctx0(hvbp->hv_tsb_info_cnt,
909*1050Sgirish 			    hvbp->hv_tsb_info_pa);
910*1050Sgirish 		}
9110Sstevel@tonic-gate 	}
9120Sstevel@tonic-gate #endif
9130Sstevel@tonic-gate }
9140Sstevel@tonic-gate 
9150Sstevel@tonic-gate /*
9160Sstevel@tonic-gate  * We use %tick as the time base when recording the time spent executing
9170Sstevel@tonic-gate  * the trap handler.  %tick, however, is not necessarily kept in sync
9180Sstevel@tonic-gate  * across CPUs (indeed, different CPUs may have different %tick frequencies).
9190Sstevel@tonic-gate  * We therefore cross call onto a CPU to get a snapshot of its data to
9200Sstevel@tonic-gate  * copy out; this is the routine executed out of that cross call.
9210Sstevel@tonic-gate  */
9220Sstevel@tonic-gate static void
9230Sstevel@tonic-gate trapstat_snapshot()
9240Sstevel@tonic-gate {
9250Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
9260Sstevel@tonic-gate 	tstat_data_t *data = tcpu->tcpu_data;
9270Sstevel@tonic-gate 
9280Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
9290Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
9300Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ENABLED);
9310Sstevel@tonic-gate 
9320Sstevel@tonic-gate 	data->tdata_snapts = gethrtime();
9330Sstevel@tonic-gate 	data->tdata_snaptick = rdtick();
9340Sstevel@tonic-gate 	bcopy(data, tstat_buffer, tstat_data_t_size);
935*1050Sgirish #ifdef sun4v
936*1050Sgirish 	/*
937*1050Sgirish 	 * Invoke processor specific interface to collect TSB hit
938*1050Sgirish 	 * statistics on each processor.
939*1050Sgirish 	 */
940*1050Sgirish 	if ((tstat_options & TSTAT_OPT_TLBDATA) && tstat_fast_tlbstat)
941*1050Sgirish 		cpu_trapstat_data((void *) tstat_buffer->tdata_pgsz,
942*1050Sgirish 		    tstat_pgszs);
943*1050Sgirish #endif
9440Sstevel@tonic-gate }
9450Sstevel@tonic-gate 
9460Sstevel@tonic-gate /*
9470Sstevel@tonic-gate  * The TSTAT_RETENT_* constants define offsets in the TLB return entry.
9480Sstevel@tonic-gate  * They are used only in trapstat_tlbretent() (below) and #undef'd
9490Sstevel@tonic-gate  * immediately afterwards.  Any change to "retent" in trapstat_tlbretent()
9500Sstevel@tonic-gate  * will likely require changes to these constants.
9510Sstevel@tonic-gate  */
9520Sstevel@tonic-gate 
953*1050Sgirish #ifndef sun4v
9540Sstevel@tonic-gate #define	TSTAT_RETENT_STATHI	1
9550Sstevel@tonic-gate #define	TSTAT_RETENT_STATLO	2
956490Ssusans #define	TSTAT_RETENT_SHIFT	11
957490Ssusans #define	TSTAT_RETENT_COUNT_LD	13
958490Ssusans #define	TSTAT_RETENT_COUNT_ST	15
959490Ssusans #define	TSTAT_RETENT_TMPTSHI	16
960490Ssusans #define	TSTAT_RETENT_TMPTSLO	17
961490Ssusans #define	TSTAT_RETENT_TIME_LD	19
962490Ssusans #define	TSTAT_RETENT_TIME_ST	21
9630Sstevel@tonic-gate #else /* sun4v */
9640Sstevel@tonic-gate #define	TSTAT_RETENT_STATHI	1
9650Sstevel@tonic-gate #define	TSTAT_RETENT_STATLO	2
9660Sstevel@tonic-gate #define	TSTAT_RETENT_SHIFT	5
9670Sstevel@tonic-gate #define	TSTAT_RETENT_COUNT_LD	7
9680Sstevel@tonic-gate #define	TSTAT_RETENT_COUNT_ST	9
9690Sstevel@tonic-gate #define	TSTAT_RETENT_TMPTSHI	10
9700Sstevel@tonic-gate #define	TSTAT_RETENT_TMPTSLO	11
9710Sstevel@tonic-gate #define	TSTAT_RETENT_TIME_LD	13
9720Sstevel@tonic-gate #define	TSTAT_RETENT_TIME_ST	15
9730Sstevel@tonic-gate #endif /* sun4v */
9740Sstevel@tonic-gate 
9750Sstevel@tonic-gate static void
9760Sstevel@tonic-gate trapstat_tlbretent(tstat_percpu_t *tcpu, tstat_tlbretent_t *ret,
9770Sstevel@tonic-gate     tstat_missdata_t *data)
9780Sstevel@tonic-gate {
9790Sstevel@tonic-gate 	uint32_t *ent = ret->ttlbrent_instr, shift;
9800Sstevel@tonic-gate 	uintptr_t base, tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick);
9810Sstevel@tonic-gate 
9820Sstevel@tonic-gate 	/*
9830Sstevel@tonic-gate 	 * This is the entry executed upon return from the TLB/TSB miss
9840Sstevel@tonic-gate 	 * handler (i.e. the code interpositioned between the "retry" and
9850Sstevel@tonic-gate 	 * the actual return to the TLB-missing instruction).  Detail on its
9860Sstevel@tonic-gate 	 * theory of operation can be found in the "TLB Statistics" section
9870Sstevel@tonic-gate 	 * of the block comment.  Note that we expect the TTE just loaded
9880Sstevel@tonic-gate 	 * into the TLB to be in %g5; all other globals are available as
9890Sstevel@tonic-gate 	 * scratch.  Finally, note that the page size information in sun4v is
9900Sstevel@tonic-gate 	 * located in the lower bits of the TTE -- requiring us to have a
9910Sstevel@tonic-gate 	 * different return entry on sun4v.
9920Sstevel@tonic-gate 	 */
9930Sstevel@tonic-gate 	static const uint32_t retent[TSTAT_TLBRET_NINSTR] = {
9940Sstevel@tonic-gate #ifndef 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 	    0x89297001,		/* sllx  %g5, 1, %g4			*/
9990Sstevel@tonic-gate 	    0x8931303e,		/* srlx  %g4, 62, %g4			*/
10000Sstevel@tonic-gate 	    0x8531702e,		/* srlx  %g5, 46, %g2			*/
10010Sstevel@tonic-gate 	    0x8408a004,		/* and   %g2, 4, %g2			*/
10020Sstevel@tonic-gate 	    0x88110002,		/* or    %g4, %g2, %g4			*/
1003490Ssusans 	    0x80a12005,		/* cmp   %g4, 5				*/
1004490Ssusans 	    0x34400002,		/* bg,a,pn %icc, +8			*/
1005490Ssusans 	    0x88102004,		/* mov   4, %g4				*/
10060Sstevel@tonic-gate 	    0x89292000,		/* sll   %g4, shift, %g4		*/
10070Sstevel@tonic-gate 	    0x82004004,		/* add   %g1, %g4, %g1			*/
10080Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_count], %g2	*/
10090Sstevel@tonic-gate 	    0x8400a001,		/* add   %g2, 1, %g2			*/
10100Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_count]	*/
10110Sstevel@tonic-gate 	    0x0d000000, 	/* sethi %hi(tdata_tmptick), %g6	*/
10120Sstevel@tonic-gate 	    0xc459a000, 	/* ldx   [%g6 + %lo(tdata_tmptick)], %g2 */
10130Sstevel@tonic-gate 	    0x8620c002,		/* sub   %g3, %g2, %g3			*/
10140Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_time], %g2	*/
10150Sstevel@tonic-gate 	    0x84008003,		/* add   %g2, %g3, %g2			*/
10160Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_time]	*/
10170Sstevel@tonic-gate 	    0x83f00000		/* retry				*/
10180Sstevel@tonic-gate #else /* sun4v */
10190Sstevel@tonic-gate 	    0x87410000,		/* rd    %tick, %g3			*/
10200Sstevel@tonic-gate 	    0x03000000, 	/* sethi %hi(stat), %g1			*/
10210Sstevel@tonic-gate 	    0x82106000,		/* or    %g1, %lo(stat), %g1		*/
10220Sstevel@tonic-gate 	    0x8929703d,		/* sllx  %g5, 61, %g4			*/
10230Sstevel@tonic-gate 	    0x8931303d,		/* srlx  %g4, 61, %g4			*/
10240Sstevel@tonic-gate 	    0x89292000,		/* sll   %g4, shift, %g4		*/
10250Sstevel@tonic-gate 	    0x82004004,		/* add   %g1, %g4, %g1			*/
10260Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_count], %g2	*/
10270Sstevel@tonic-gate 	    0x8400a001,		/* add   %g2, 1, %g2			*/
10280Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_count]	*/
10290Sstevel@tonic-gate 	    0x0d000000, 	/* sethi %hi(tdata_tmptick), %g6	*/
10300Sstevel@tonic-gate 	    0xc459a000, 	/* ldx   [%g6 + %lo(tdata_tmptick)], %g2 */
10310Sstevel@tonic-gate 	    0x8620c002,		/* sub   %g3, %g2, %g3			*/
10320Sstevel@tonic-gate 	    0xc4586000,		/* ldx   [%g1 + tmiss_time], %g2	*/
10330Sstevel@tonic-gate 	    0x84008003,		/* add   %g2, %g3, %g2			*/
10340Sstevel@tonic-gate 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_time]	*/
10350Sstevel@tonic-gate 	    0x83f00000		/* retry				*/
10360Sstevel@tonic-gate #endif /* sun4v */
10370Sstevel@tonic-gate 	};
10380Sstevel@tonic-gate 
10390Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
10400Sstevel@tonic-gate 	/*CONSTCOND*/
10410Sstevel@tonic-gate 	ASSERT(offsetof(tstat_missdata_t, tmiss_count) <= LO10(-1));
10420Sstevel@tonic-gate 	/*CONSTCOND*/
10430Sstevel@tonic-gate 	ASSERT(offsetof(tstat_missdata_t, tmiss_time) <= LO10(-1));
10440Sstevel@tonic-gate 	/*CONSTCOND*/
10450Sstevel@tonic-gate 	ASSERT(!((sizeof (tstat_pgszdata_t) - 1) & sizeof (tstat_pgszdata_t)));
10460Sstevel@tonic-gate 
10470Sstevel@tonic-gate 	for (shift = 1; (1 << shift) != sizeof (tstat_pgszdata_t); shift++)
10480Sstevel@tonic-gate 		continue;
10490Sstevel@tonic-gate 
10500Sstevel@tonic-gate 	base = (uintptr_t)tcpu->tcpu_dbase +
10510Sstevel@tonic-gate 	    ((uintptr_t)data - (uintptr_t)tcpu->tcpu_data);
10520Sstevel@tonic-gate 
10530Sstevel@tonic-gate 	bcopy(retent, ent, sizeof (retent));
10540Sstevel@tonic-gate 
10550Sstevel@tonic-gate 	ent[TSTAT_RETENT_STATHI] |= HI22(base);
10560Sstevel@tonic-gate 	ent[TSTAT_RETENT_STATLO] |= LO10(base);
10570Sstevel@tonic-gate 	ent[TSTAT_RETENT_SHIFT] |= shift;
10580Sstevel@tonic-gate 	/* LINTED E_EXPR_NULL_EFFECT */
10590Sstevel@tonic-gate 	ent[TSTAT_RETENT_COUNT_LD] |= offsetof(tstat_missdata_t, tmiss_count);
10600Sstevel@tonic-gate 	/* LINTED E_EXPR_NULL_EFFECT */
10610Sstevel@tonic-gate 	ent[TSTAT_RETENT_COUNT_ST] |= offsetof(tstat_missdata_t, tmiss_count);
10620Sstevel@tonic-gate 	ent[TSTAT_RETENT_TMPTSHI] |= HI22(tmptick);
10630Sstevel@tonic-gate 	ent[TSTAT_RETENT_TMPTSLO] |= LO10(tmptick);
10640Sstevel@tonic-gate 	ent[TSTAT_RETENT_TIME_LD] |= offsetof(tstat_missdata_t, tmiss_time);
10650Sstevel@tonic-gate 	ent[TSTAT_RETENT_TIME_ST] |= offsetof(tstat_missdata_t, tmiss_time);
10660Sstevel@tonic-gate }
10670Sstevel@tonic-gate 
10680Sstevel@tonic-gate #undef TSTAT_RETENT_STATHI
10690Sstevel@tonic-gate #undef TSTAT_RETENT_STATLO
10700Sstevel@tonic-gate #undef TSTAT_RETENT_SHIFT
10710Sstevel@tonic-gate #undef TSTAT_RETENT_COUNT_LD
10720Sstevel@tonic-gate #undef TSTAT_RETENT_COUNT_ST
10730Sstevel@tonic-gate #undef TSTAT_RETENT_TMPTSHI
10740Sstevel@tonic-gate #undef TSTAT_RETENT_TMPTSLO
10750Sstevel@tonic-gate #undef TSTAT_RETENT_TIME_LD
10760Sstevel@tonic-gate #undef TSTAT_RETENT_TIME_ST
10770Sstevel@tonic-gate 
10780Sstevel@tonic-gate /*
10790Sstevel@tonic-gate  * The TSTAT_TLBENT_* constants define offsets in the TLB entry.  They are
10800Sstevel@tonic-gate  * used only in trapstat_tlbent() (below) and #undef'd immediately afterwards.
10810Sstevel@tonic-gate  * Any change to "tlbent" in trapstat_tlbent() will likely require changes
10820Sstevel@tonic-gate  * to these constants.
10830Sstevel@tonic-gate  */
10840Sstevel@tonic-gate 
10850Sstevel@tonic-gate #ifndef sun4v
10860Sstevel@tonic-gate #define	TSTAT_TLBENT_STATHI	0
10870Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_LD	1
10880Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_ST	3
10890Sstevel@tonic-gate #define	TSTAT_TLBENT_MMUASI	15
10900Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCHI	18
10910Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_USER	19
10920Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_KERN	21
10930Sstevel@tonic-gate #define	TSTAT_TLBENT_TSHI	25
10940Sstevel@tonic-gate #define	TSTAT_TLBENT_TSLO	27
10950Sstevel@tonic-gate #define	TSTAT_TLBENT_BA		28
10960Sstevel@tonic-gate #else /* sun4v */
10970Sstevel@tonic-gate #define	TSTAT_TLBENT_STATHI	0
10980Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_LD	1
10990Sstevel@tonic-gate #define	TSTAT_TLBENT_STATLO_ST	3
11000Sstevel@tonic-gate #define	TSTAT_TLBENT_TAGTARGET	19
11010Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCHI	21
11020Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_USER	22
11030Sstevel@tonic-gate #define	TSTAT_TLBENT_TPCLO_KERN	24
11040Sstevel@tonic-gate #define	TSTAT_TLBENT_TSHI	28
11050Sstevel@tonic-gate #define	TSTAT_TLBENT_TSLO	30
11060Sstevel@tonic-gate #define	TSTAT_TLBENT_BA		31
11070Sstevel@tonic-gate #endif /* sun4v */
11080Sstevel@tonic-gate 
11090Sstevel@tonic-gate static void
11100Sstevel@tonic-gate trapstat_tlbent(tstat_percpu_t *tcpu, int entno)
11110Sstevel@tonic-gate {
11120Sstevel@tonic-gate 	uint32_t *ent;
11130Sstevel@tonic-gate 	uintptr_t orig, va, baoffs;
1114*1050Sgirish #ifndef sun4v
11150Sstevel@tonic-gate 	int itlb = entno == TSTAT_ENT_ITLBMISS;
1116*1050Sgirish #else
1117*1050Sgirish 	int itlb = (entno == TSTAT_ENT_IMMUMISS || entno == TSTAT_ENT_ITLBMISS);
1118*1050Sgirish #endif
11190Sstevel@tonic-gate 	int entoffs = entno << TSTAT_ENT_SHIFT;
11200Sstevel@tonic-gate 	uintptr_t tmptick, stat, tpc, utpc;
11210Sstevel@tonic-gate 	tstat_pgszdata_t *data = &tcpu->tcpu_data->tdata_pgsz[0];
11220Sstevel@tonic-gate 	tstat_tlbdata_t *udata, *kdata;
11230Sstevel@tonic-gate 	tstat_tlbret_t *ret;
11240Sstevel@tonic-gate #ifndef sun4v
11250Sstevel@tonic-gate 	uint32_t asi = itlb ? ASI(ASI_IMMU) : ASI(ASI_DMMU);
11260Sstevel@tonic-gate #else
11270Sstevel@tonic-gate 	uint32_t tagtarget_off = itlb ? MMFSA_I_CTX : MMFSA_D_CTX;
11280Sstevel@tonic-gate #endif
11290Sstevel@tonic-gate 
11300Sstevel@tonic-gate 	/*
11310Sstevel@tonic-gate 	 * When trapstat is run with TLB statistics, this is the entry for
11320Sstevel@tonic-gate 	 * both I- and D-TLB misses; this code performs trap level pushing,
11330Sstevel@tonic-gate 	 * as described in the "TLB Statistics" section of the block comment.
11340Sstevel@tonic-gate 	 * This code is executing at TL 1; %tstate[0] contains the saved
11350Sstevel@tonic-gate 	 * state at the time of the TLB miss.  Pushing trap level 1 (and thus
11360Sstevel@tonic-gate 	 * raising TL to 2) requires us to fill in %tstate[1] with our %pstate,
11370Sstevel@tonic-gate 	 * %cwp and %asi.  We leave %tt unchanged, and we set %tpc and %tnpc to
11380Sstevel@tonic-gate 	 * the appropriate TLB return entry (based on the context of the miss).
11390Sstevel@tonic-gate 	 * Finally, we sample %tick, and stash it in the tdata_tmptick member
11400Sstevel@tonic-gate 	 * the per-CPU tstat_data structure.  tdata_tmptick will be used in
11410Sstevel@tonic-gate 	 * the TLB return entry to determine the amount of time spent in the
11420Sstevel@tonic-gate 	 * TLB miss handler.
11430Sstevel@tonic-gate 	 *
1144158Sgirish 	 * Note that on sun4v platforms, we must obtain the context information
1145158Sgirish 	 * from the MMU fault status area. (The base address of this MMU fault
1146158Sgirish 	 * status area is kept in the scratchpad register 0.)
11470Sstevel@tonic-gate 	 */
11480Sstevel@tonic-gate 	static const uint32_t tlbent[] = {
11490Sstevel@tonic-gate #ifndef sun4v
11500Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
11510Sstevel@tonic-gate 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
11520Sstevel@tonic-gate 	    0x8400a001,			/* add   %g2, 1, %g2		*/
11530Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
11540Sstevel@tonic-gate 	    0x85524000,			/* rdpr  %cwp, %g2		*/
11550Sstevel@tonic-gate 	    0x87518000,			/* rdpr  %pstate, %g3		*/
11560Sstevel@tonic-gate 	    0x8728f008,			/* sllx  %g3, 8, %g3		*/
11570Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11580Sstevel@tonic-gate 	    0x8740c000,			/* rd    %asi, %g3		*/
11590Sstevel@tonic-gate 	    0x8728f018,			/* sllx  %g3, 24, %g3		*/
11600Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11610Sstevel@tonic-gate 	    0x8350c000,			/* rdpr  %tt, %g1		*/
11620Sstevel@tonic-gate 	    0x8f902002,			/* wrpr  %g0, 2, %tl		*/
11630Sstevel@tonic-gate 	    0x85908000,			/* wrpr  %g2, %g0, %tstate	*/
11640Sstevel@tonic-gate 	    0x87904000,			/* wrpr  %g1, %g0, %tt		*/
11650Sstevel@tonic-gate 	    0xc2d80000,			/* ldxa  [%g0]ASI_MMU, %g1	*/
11660Sstevel@tonic-gate 	    0x83307030,			/* srlx  %g1, CTXSHIFT, %g1	*/
11670Sstevel@tonic-gate 	    0x02c04004,			/* brz,pn %g1, .+0x10		*/
11680Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(new_tpc), %g1	*/
11690Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
11700Sstevel@tonic-gate 	    0x30800002,			/* ba,a  .+0x8			*/
11710Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
11720Sstevel@tonic-gate 	    0x81904000,			/* wrpr  %g1, %g0, %tpc		*/
11730Sstevel@tonic-gate 	    0x82006004,			/* add   %g1, 4, %g1		*/
11740Sstevel@tonic-gate 	    0x83904000,			/* wrpr  %g1, %g0, %tnpc	*/
11750Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(tmptick), %g1	*/
11760Sstevel@tonic-gate 	    0x85410000,			/* rd    %tick, %g2		*/
11770Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(tmptick)] */
11780Sstevel@tonic-gate 	    0x30800000,			/* ba,a  addr			*/
11790Sstevel@tonic-gate 	    NOP, NOP, NOP
11800Sstevel@tonic-gate #else /* sun4v */
11810Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
11820Sstevel@tonic-gate 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
11830Sstevel@tonic-gate 	    0x8400a001,			/* add   %g2, 1, %g2		*/
11840Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
11850Sstevel@tonic-gate 	    0x85524000,			/* rdpr  %cwp, %g2		*/
11860Sstevel@tonic-gate 	    0x87518000,			/* rdpr  %pstate, %g3		*/
11870Sstevel@tonic-gate 	    0x8728f008,			/* sllx  %g3, 8, %g3		*/
11880Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11890Sstevel@tonic-gate 	    0x8740c000,			/* rd    %asi, %g3		*/
1190158Sgirish 	    0x8728f018,			/* sllx  %g3, 24, %g3		*/
1191158Sgirish 	    0x83540000,			/* rdpr  %gl, %g1		*/
1192158Sgirish 	    0x83287028,			/* sllx  %g1, 40, %g1		*/
11930Sstevel@tonic-gate 	    0x86104003,			/* or    %g1, %g3, %g3		*/
11940Sstevel@tonic-gate 	    0x84108003,			/* or    %g2, %g3, %g2		*/
11950Sstevel@tonic-gate 	    0x8350c000,			/* rdpr  %tt, %g1		*/
11960Sstevel@tonic-gate 	    0x8f902002,			/* wrpr  %g0, 2, %tl		*/
11970Sstevel@tonic-gate 	    0x85908000,			/* wrpr  %g2, %g0, %tstate	*/
11980Sstevel@tonic-gate 	    0x87904000,			/* wrpr  %g1, %g0, %tt		*/
11990Sstevel@tonic-gate 	    0xc2d80400,			/* ldxa  [%g0]ASI_SCRATCHPAD, %g1 */
12000Sstevel@tonic-gate 	    0xc2586000,			/* ldx  [%g1 + MMFSA_?_CTX], %g1 */
12010Sstevel@tonic-gate 	    0x02c04004,			/* brz,pn %g1, .+0x10		*/
12020Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(new_tpc), %g1	*/
12030Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
12040Sstevel@tonic-gate 	    0x30800002,			/* ba,a  .+0x8			*/
12050Sstevel@tonic-gate 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
12060Sstevel@tonic-gate 	    0x81904000,			/* wrpr  %g1, %g0, %tpc		*/
12070Sstevel@tonic-gate 	    0x82006004,			/* add   %g1, 4, %g1		*/
12080Sstevel@tonic-gate 	    0x83904000,			/* wrpr  %g1, %g0, %tnpc	*/
12090Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(tmptick), %g1	*/
12100Sstevel@tonic-gate 	    0x85410000,			/* rd    %tick, %g2		*/
12110Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(tmptick)] */
12120Sstevel@tonic-gate 	    0x30800000			/* ba,a  addr			*/
12130Sstevel@tonic-gate #endif /* sun4v */
12140Sstevel@tonic-gate 	};
12150Sstevel@tonic-gate 
12160Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
1217*1050Sgirish #ifndef sun4v
12180Sstevel@tonic-gate 	ASSERT(entno == TSTAT_ENT_ITLBMISS || entno == TSTAT_ENT_DTLBMISS);
1219*1050Sgirish #else
1220*1050Sgirish 	ASSERT(entno == TSTAT_ENT_ITLBMISS || entno == TSTAT_ENT_DTLBMISS ||
1221*1050Sgirish 	    entno == TSTAT_ENT_IMMUMISS || entno == TSTAT_ENT_DMMUMISS);
1222*1050Sgirish #endif
12230Sstevel@tonic-gate 
12240Sstevel@tonic-gate 	stat = TSTAT_DATA_OFFS(tcpu, tdata_traps) + entoffs;
12250Sstevel@tonic-gate 	tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick);
12260Sstevel@tonic-gate 
12270Sstevel@tonic-gate 	if (itlb) {
12280Sstevel@tonic-gate 		ret = &tcpu->tcpu_instr->tinst_itlbret;
12290Sstevel@tonic-gate 		udata = &data->tpgsz_user.tmode_itlb;
12300Sstevel@tonic-gate 		kdata = &data->tpgsz_kernel.tmode_itlb;
12310Sstevel@tonic-gate 		tpc = TSTAT_INSTR_OFFS(tcpu, tinst_itlbret.ttlbr_ktlb);
12320Sstevel@tonic-gate 	} else {
12330Sstevel@tonic-gate 		ret = &tcpu->tcpu_instr->tinst_dtlbret;
12340Sstevel@tonic-gate 		udata = &data->tpgsz_user.tmode_dtlb;
12350Sstevel@tonic-gate 		kdata = &data->tpgsz_kernel.tmode_dtlb;
12360Sstevel@tonic-gate 		tpc = TSTAT_INSTR_OFFS(tcpu, tinst_dtlbret.ttlbr_ktlb);
12370Sstevel@tonic-gate 	}
12380Sstevel@tonic-gate 
12390Sstevel@tonic-gate 	utpc = tpc + offsetof(tstat_tlbret_t, ttlbr_utlb) -
12400Sstevel@tonic-gate 	    offsetof(tstat_tlbret_t, ttlbr_ktlb);
12410Sstevel@tonic-gate 
12420Sstevel@tonic-gate 	ASSERT(HI22(tpc) == HI22(utpc));
12430Sstevel@tonic-gate 
12440Sstevel@tonic-gate 	ent = (uint32_t *)((uintptr_t)tcpu->tcpu_instr + entoffs);
12450Sstevel@tonic-gate 	orig = KERNELBASE + entoffs;
12460Sstevel@tonic-gate 	va = (uintptr_t)tcpu->tcpu_ibase + entoffs;
12470Sstevel@tonic-gate 	baoffs = TSTAT_TLBENT_BA * sizeof (uint32_t);
12480Sstevel@tonic-gate 
1249*1050Sgirish #ifdef sun4v
1250*1050Sgirish 	if (entno == TSTAT_ENT_IMMUMISS || entno == TSTAT_ENT_DMMUMISS) {
1251*1050Sgirish 		/*
1252*1050Sgirish 		 * Because of lack of space, interposing tlbent trap
1253*1050Sgirish 		 * handler for IMMU_miss and DMMU_miss traps cannot be
1254*1050Sgirish 		 * placed in-line. Instead, we copy it to the space set
1255*1050Sgirish 		 * aside for these traps in per CPU trapstat area and
1256*1050Sgirish 		 * invoke it by placing a branch in the trap table itself.
1257*1050Sgirish 		 */
1258*1050Sgirish 		static const uint32_t mmumiss[TSTAT_ENT_NINSTR] = {
1259*1050Sgirish 		    0x30800000,			/* ba,a addr */
1260*1050Sgirish 		    NOP, NOP, NOP, NOP, NOP, NOP, NOP
1261*1050Sgirish 		};
1262*1050Sgirish 		uint32_t *tent = ent;		/* trap vector entry */
1263*1050Sgirish 		uintptr_t tentva = va;		/* trap vector entry va */
1264*1050Sgirish 
1265*1050Sgirish 		if (itlb) {
1266*1050Sgirish 			ent = (uint32_t *)((uintptr_t)
1267*1050Sgirish 				&tcpu->tcpu_instr->tinst_immumiss);
1268*1050Sgirish 			va = TSTAT_INSTR_OFFS(tcpu, tinst_immumiss);
1269*1050Sgirish 		} else {
1270*1050Sgirish 			ent = (uint32_t *)((uintptr_t)
1271*1050Sgirish 				&tcpu->tcpu_instr->tinst_dmmumiss);
1272*1050Sgirish 			va = TSTAT_INSTR_OFFS(tcpu, tinst_dmmumiss);
1273*1050Sgirish 		}
1274*1050Sgirish 		bcopy(mmumiss, tent, sizeof (mmumiss));
1275*1050Sgirish 		tent[0] |= DISP22(tentva, va);
1276*1050Sgirish 	}
1277*1050Sgirish #endif /* sun4v */
1278*1050Sgirish 
12790Sstevel@tonic-gate 	bcopy(tlbent, ent, sizeof (tlbent));
12800Sstevel@tonic-gate 
12810Sstevel@tonic-gate 	ent[TSTAT_TLBENT_STATHI] |= HI22(stat);
12820Sstevel@tonic-gate 	ent[TSTAT_TLBENT_STATLO_LD] |= LO10(stat);
12830Sstevel@tonic-gate 	ent[TSTAT_TLBENT_STATLO_ST] |= LO10(stat);
12840Sstevel@tonic-gate #ifndef sun4v
12850Sstevel@tonic-gate 	ent[TSTAT_TLBENT_MMUASI] |= asi;
12860Sstevel@tonic-gate #else
12870Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TAGTARGET] |= tagtarget_off;
12880Sstevel@tonic-gate #endif
12890Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TPCHI] |= HI22(tpc);
12900Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TPCLO_USER] |= LO10(utpc);
12910Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TPCLO_KERN] |= LO10(tpc);
12920Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TSHI] |= HI22(tmptick);
12930Sstevel@tonic-gate 	ent[TSTAT_TLBENT_TSLO] |= LO10(tmptick);
12940Sstevel@tonic-gate 	ent[TSTAT_TLBENT_BA] |= DISP22(va + baoffs, orig);
12950Sstevel@tonic-gate 
12960Sstevel@tonic-gate 	/*
12970Sstevel@tonic-gate 	 * And now set up the TLB return entries.
12980Sstevel@tonic-gate 	 */
12990Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_ktlb, &kdata->ttlb_tlb);
13000Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_ktsb, &kdata->ttlb_tsb);
13010Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_utlb, &udata->ttlb_tlb);
13020Sstevel@tonic-gate 	trapstat_tlbretent(tcpu, &ret->ttlbr_utsb, &udata->ttlb_tsb);
13030Sstevel@tonic-gate }
13040Sstevel@tonic-gate 
13050Sstevel@tonic-gate #undef TSTAT_TLBENT_STATHI
13060Sstevel@tonic-gate #undef TSTAT_TLBENT_STATLO_LD
13070Sstevel@tonic-gate #undef TSTAT_TLBENT_STATLO_ST
13080Sstevel@tonic-gate #ifndef sun4v
13090Sstevel@tonic-gate #undef TSTAT_TLBENT_MMUASI
13100Sstevel@tonic-gate #else
13110Sstevel@tonic-gate #undef TSTAT_TLBENT_TAGTARGET
13120Sstevel@tonic-gate #endif
13130Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCHI
13140Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCLO_USER
13150Sstevel@tonic-gate #undef TSTAT_TLBENT_TPCLO_KERN
13160Sstevel@tonic-gate #undef TSTAT_TLBENT_TSHI
13170Sstevel@tonic-gate #undef TSTAT_TLBENT_TSLO
13180Sstevel@tonic-gate #undef TSTAT_TLBENT_BA
13190Sstevel@tonic-gate 
13200Sstevel@tonic-gate /*
13210Sstevel@tonic-gate  * The TSTAT_ENABLED_* constants define offsets in the enabled entry; the
13220Sstevel@tonic-gate  * TSTAT_DISABLED_BA constant defines an offset in the disabled entry.  Both
13230Sstevel@tonic-gate  * sets of constants are used only in trapstat_make_traptab() (below) and
13240Sstevel@tonic-gate  * #undef'd immediately afterwards.  Any change to "enabled" or "disabled"
13250Sstevel@tonic-gate  * in trapstat_make_traptab() will likely require changes to these constants.
13260Sstevel@tonic-gate  */
13270Sstevel@tonic-gate #define	TSTAT_ENABLED_STATHI	0
13280Sstevel@tonic-gate #define	TSTAT_ENABLED_STATLO_LD	1
13290Sstevel@tonic-gate #define	TSTAT_ENABLED_STATLO_ST 3
13300Sstevel@tonic-gate #define	TSTAT_ENABLED_BA	4
13310Sstevel@tonic-gate #define	TSTAT_DISABLED_BA	0
13320Sstevel@tonic-gate 
13330Sstevel@tonic-gate static void
13340Sstevel@tonic-gate trapstat_make_traptab(tstat_percpu_t *tcpu)
13350Sstevel@tonic-gate {
13360Sstevel@tonic-gate 	uint32_t *ent;
13370Sstevel@tonic-gate 	uint64_t *stat;
13380Sstevel@tonic-gate 	uintptr_t orig, va, en_baoffs, dis_baoffs;
13390Sstevel@tonic-gate 	int nent;
13400Sstevel@tonic-gate 
13410Sstevel@tonic-gate 	/*
13420Sstevel@tonic-gate 	 * This is the entry in the interposing trap table for enabled trap
13430Sstevel@tonic-gate 	 * table entries.  It loads a counter, increments it and stores it
13440Sstevel@tonic-gate 	 * back before branching to the actual trap table entry.
13450Sstevel@tonic-gate 	 */
13460Sstevel@tonic-gate 	static const uint32_t enabled[TSTAT_ENT_NINSTR] = {
13470Sstevel@tonic-gate 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
13480Sstevel@tonic-gate 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
13490Sstevel@tonic-gate 	    0x8400a001,			/* add   %g2, 1, %g2		*/
13500Sstevel@tonic-gate 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
13510Sstevel@tonic-gate 	    0x30800000,			/* ba,a addr			*/
13520Sstevel@tonic-gate 	    NOP, NOP, NOP
13530Sstevel@tonic-gate 	};
13540Sstevel@tonic-gate 
13550Sstevel@tonic-gate 	/*
13560Sstevel@tonic-gate 	 * This is the entry in the interposing trap table for disabled trap
13570Sstevel@tonic-gate 	 * table entries.  It simply branches to the actual, underlying trap
13580Sstevel@tonic-gate 	 * table entry.  As explained in the "Implementation Details" section
13590Sstevel@tonic-gate 	 * of the block comment, all TL>0 traps _must_ use the disabled entry;
13600Sstevel@tonic-gate 	 * additional entries may be explicitly disabled through the use
13610Sstevel@tonic-gate 	 * of TSTATIOC_ENTRY/TSTATIOC_NOENTRY.
13620Sstevel@tonic-gate 	 */
13630Sstevel@tonic-gate 	static const uint32_t disabled[TSTAT_ENT_NINSTR] = {
13640Sstevel@tonic-gate 	    0x30800000,			/* ba,a addr			*/
13650Sstevel@tonic-gate 	    NOP, NOP, NOP, NOP, NOP, NOP, NOP,
13660Sstevel@tonic-gate 	};
13670Sstevel@tonic-gate 
13680Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
13690Sstevel@tonic-gate 
13700Sstevel@tonic-gate 	ent = tcpu->tcpu_instr->tinst_traptab;
13710Sstevel@tonic-gate 	stat = (uint64_t *)TSTAT_DATA_OFFS(tcpu, tdata_traps);
13720Sstevel@tonic-gate 	orig = KERNELBASE;
13730Sstevel@tonic-gate 	va = (uintptr_t)tcpu->tcpu_ibase;
13740Sstevel@tonic-gate 	en_baoffs = TSTAT_ENABLED_BA * sizeof (uint32_t);
13750Sstevel@tonic-gate 	dis_baoffs = TSTAT_DISABLED_BA * sizeof (uint32_t);
13760Sstevel@tonic-gate 
13770Sstevel@tonic-gate 	for (nent = 0; nent < TSTAT_TOTAL_NENT; nent++) {
13780Sstevel@tonic-gate 		if (tstat_enabled[nent]) {
13790Sstevel@tonic-gate 			bcopy(enabled, ent, sizeof (enabled));
1380567Sdmick 			ent[TSTAT_ENABLED_STATHI] |= HI22((uintptr_t)stat);
1381567Sdmick 			ent[TSTAT_ENABLED_STATLO_LD] |= LO10((uintptr_t)stat);
1382567Sdmick 			ent[TSTAT_ENABLED_STATLO_ST] |= LO10((uintptr_t)stat);
13830Sstevel@tonic-gate 			ent[TSTAT_ENABLED_BA] |= DISP22(va + en_baoffs, orig);
13840Sstevel@tonic-gate 		} else {
13850Sstevel@tonic-gate 			bcopy(disabled, ent, sizeof (disabled));
13860Sstevel@tonic-gate 			ent[TSTAT_DISABLED_BA] |= DISP22(va + dis_baoffs, orig);
13870Sstevel@tonic-gate 		}
13880Sstevel@tonic-gate 
13890Sstevel@tonic-gate 		stat++;
13900Sstevel@tonic-gate 		orig += sizeof (enabled);
13910Sstevel@tonic-gate 		ent += sizeof (enabled) / sizeof (*ent);
13920Sstevel@tonic-gate 		va += sizeof (enabled);
13930Sstevel@tonic-gate 	}
13940Sstevel@tonic-gate }
13950Sstevel@tonic-gate 
13960Sstevel@tonic-gate #undef TSTAT_ENABLED_STATHI
13970Sstevel@tonic-gate #undef TSTAT_ENABLED_STATLO_LD
13980Sstevel@tonic-gate #undef TSTAT_ENABLED_STATLO_ST
13990Sstevel@tonic-gate #undef TSTAT_ENABLED_BA
14000Sstevel@tonic-gate #undef TSTAT_DISABLED_BA
14010Sstevel@tonic-gate 
14020Sstevel@tonic-gate static void
14030Sstevel@tonic-gate trapstat_setup(processorid_t cpu)
14040Sstevel@tonic-gate {
14050Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
14060Sstevel@tonic-gate #ifndef sun4v
14070Sstevel@tonic-gate 	int i;
14080Sstevel@tonic-gate 	caddr_t va;
14090Sstevel@tonic-gate 	pfn_t *pfn;
14100Sstevel@tonic-gate #endif
14110Sstevel@tonic-gate 
14120Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_pfn == NULL);
14130Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_instr == NULL);
14140Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_data == NULL);
14150Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
14160Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED));
14170Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
14180Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
14190Sstevel@tonic-gate 
14200Sstevel@tonic-gate 	/*
14210Sstevel@tonic-gate 	 * The lower fifteen bits of the %tba are always read as zero; we must
14220Sstevel@tonic-gate 	 * align our instruction base address appropriately.
14230Sstevel@tonic-gate 	 */
14240Sstevel@tonic-gate #ifndef sun4v
14250Sstevel@tonic-gate 	tcpu->tcpu_ibase = (caddr_t)((KERNELBASE - tstat_total_size)
14260Sstevel@tonic-gate 		& TSTAT_TBA_MASK);
14270Sstevel@tonic-gate 	tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE;
14280Sstevel@tonic-gate 	tcpu->tcpu_vabase = tcpu->tcpu_ibase;
14290Sstevel@tonic-gate 
14300Sstevel@tonic-gate 	tcpu->tcpu_pfn = vmem_alloc(tstat_arena, tstat_total_pages, VM_SLEEP);
14310Sstevel@tonic-gate 	bzero(tcpu->tcpu_pfn, tstat_total_pages);
14320Sstevel@tonic-gate 	pfn = tcpu->tcpu_pfn;
14330Sstevel@tonic-gate 
14340Sstevel@tonic-gate 	tcpu->tcpu_instr = vmem_alloc(tstat_arena, TSTAT_INSTR_SIZE, VM_SLEEP);
14350Sstevel@tonic-gate 
14360Sstevel@tonic-gate 	va = (caddr_t)tcpu->tcpu_instr;
14370Sstevel@tonic-gate 	for (i = 0; i < TSTAT_INSTR_PAGES; i++, va += MMU_PAGESIZE)
14380Sstevel@tonic-gate 		*pfn++ = hat_getpfnum(kas.a_hat, va);
14390Sstevel@tonic-gate 
14400Sstevel@tonic-gate 	/*
14410Sstevel@tonic-gate 	 * We must be sure that the pages that we will use to examine the data
14420Sstevel@tonic-gate 	 * have the same virtual color as the pages to which the data is being
14430Sstevel@tonic-gate 	 * recorded, hence the alignment and phase constraints on the
14440Sstevel@tonic-gate 	 * allocation.
14450Sstevel@tonic-gate 	 */
14460Sstevel@tonic-gate 	tcpu->tcpu_data = vmem_xalloc(tstat_arena, tstat_data_size,
14470Sstevel@tonic-gate 	    shm_alignment, (uintptr_t)tcpu->tcpu_dbase & (shm_alignment - 1),
14480Sstevel@tonic-gate 	    0, 0, NULL, VM_SLEEP);
14490Sstevel@tonic-gate 	bzero(tcpu->tcpu_data, tstat_data_size);
14500Sstevel@tonic-gate 	tcpu->tcpu_data->tdata_cpuid = cpu;
14510Sstevel@tonic-gate 
14520Sstevel@tonic-gate 	va = (caddr_t)tcpu->tcpu_data;
14530Sstevel@tonic-gate 	for (i = 0; i < tstat_data_pages; i++, va += MMU_PAGESIZE)
14540Sstevel@tonic-gate 		*pfn++ = hat_getpfnum(kas.a_hat, va);
14550Sstevel@tonic-gate #else /* sun4v */
14560Sstevel@tonic-gate 	ASSERT(!(tstat_total_size > (1 + ~TSTAT_TBA_MASK)));
14570Sstevel@tonic-gate 	tcpu->tcpu_vabase = (caddr_t)(KERNELBASE - MMU_PAGESIZE4M);
14580Sstevel@tonic-gate 	tcpu->tcpu_ibase = tcpu->tcpu_vabase + (cpu * (1 + ~TSTAT_TBA_MASK));
14590Sstevel@tonic-gate 	tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE;
14600Sstevel@tonic-gate 
14610Sstevel@tonic-gate 	tcpu->tcpu_pfn = &tstat_pfn;
14620Sstevel@tonic-gate 	tcpu->tcpu_instr = (tstat_instr_t *)(tstat_va + (cpu *
14630Sstevel@tonic-gate 		(1 + ~TSTAT_TBA_MASK)));
14640Sstevel@tonic-gate 	tcpu->tcpu_data = (tstat_data_t *)(tstat_va + (cpu *
14650Sstevel@tonic-gate 		(1 + ~TSTAT_TBA_MASK)) + TSTAT_INSTR_SIZE);
14660Sstevel@tonic-gate 	bzero(tcpu->tcpu_data, tstat_data_size);
14670Sstevel@tonic-gate 	tcpu->tcpu_data->tdata_cpuid = cpu;
14680Sstevel@tonic-gate #endif /* sun4v */
14690Sstevel@tonic-gate 
14700Sstevel@tonic-gate 	/*
14710Sstevel@tonic-gate 	 * Now that we have all of the instruction and data pages allocated,
14720Sstevel@tonic-gate 	 * make the trap table from scratch.
14730Sstevel@tonic-gate 	 */
14740Sstevel@tonic-gate 	trapstat_make_traptab(tcpu);
14750Sstevel@tonic-gate 
14760Sstevel@tonic-gate 	if (tstat_options & TSTAT_OPT_TLBDATA) {
14770Sstevel@tonic-gate 		/*
14780Sstevel@tonic-gate 		 * TLB Statistics have been specified; set up the I- and D-TLB
14790Sstevel@tonic-gate 		 * entries and corresponding TLB return entries.
14800Sstevel@tonic-gate 		 */
1481*1050Sgirish #ifndef sun4v
14820Sstevel@tonic-gate 		trapstat_tlbent(tcpu, TSTAT_ENT_ITLBMISS);
14830Sstevel@tonic-gate 		trapstat_tlbent(tcpu, TSTAT_ENT_DTLBMISS);
1484*1050Sgirish #else
1485*1050Sgirish 		if (tstat_fast_tlbstat) {
1486*1050Sgirish 			trapstat_tlbent(tcpu, TSTAT_ENT_IMMUMISS);
1487*1050Sgirish 			trapstat_tlbent(tcpu, TSTAT_ENT_DMMUMISS);
1488*1050Sgirish 		} else {
1489*1050Sgirish 			trapstat_tlbent(tcpu, TSTAT_ENT_ITLBMISS);
1490*1050Sgirish 			trapstat_tlbent(tcpu, TSTAT_ENT_DTLBMISS);
1491*1050Sgirish 		}
1492*1050Sgirish #endif
14930Sstevel@tonic-gate 	}
14940Sstevel@tonic-gate 
14950Sstevel@tonic-gate 	tcpu->tcpu_flags |= TSTAT_CPU_ALLOCATED;
14960Sstevel@tonic-gate 
14970Sstevel@tonic-gate 	/*
14980Sstevel@tonic-gate 	 * Finally, get the target CPU to load the locked pages into its TLBs.
14990Sstevel@tonic-gate 	 */
15000Sstevel@tonic-gate 	xc_one(cpu, (xcfunc_t *)trapstat_load_tlb, 0, 0);
15010Sstevel@tonic-gate }
15020Sstevel@tonic-gate 
15030Sstevel@tonic-gate static void
15040Sstevel@tonic-gate trapstat_teardown(processorid_t cpu)
15050Sstevel@tonic-gate {
15060Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
15070Sstevel@tonic-gate #ifndef sun4v
15080Sstevel@tonic-gate 	int i;
15090Sstevel@tonic-gate #endif
15100Sstevel@tonic-gate 	caddr_t va = tcpu->tcpu_vabase;
15110Sstevel@tonic-gate 
15120Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_pfn != NULL);
15130Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_instr != NULL);
15140Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_data != NULL);
15150Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
15160Sstevel@tonic-gate 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
15170Sstevel@tonic-gate 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
15180Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
15190Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&tstat_lock));
15200Sstevel@tonic-gate 
15210Sstevel@tonic-gate #ifndef sun4v
15220Sstevel@tonic-gate 	vmem_free(tstat_arena, tcpu->tcpu_pfn, tstat_total_pages);
15230Sstevel@tonic-gate 	vmem_free(tstat_arena, tcpu->tcpu_instr, TSTAT_INSTR_SIZE);
15240Sstevel@tonic-gate 	vmem_free(tstat_arena, tcpu->tcpu_data, tstat_data_size);
15250Sstevel@tonic-gate 
15260Sstevel@tonic-gate 	for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) {
15270Sstevel@tonic-gate 		xt_one(cpu, vtag_flushpage_tl1, (uint64_t)va, KCONTEXT);
15280Sstevel@tonic-gate 	}
15290Sstevel@tonic-gate #else
15300Sstevel@tonic-gate 	xt_one(cpu, vtag_unmap_perm_tl1, (uint64_t)va, KCONTEXT);
15310Sstevel@tonic-gate #endif
15320Sstevel@tonic-gate 
15330Sstevel@tonic-gate 	tcpu->tcpu_pfn = NULL;
15340Sstevel@tonic-gate 	tcpu->tcpu_instr = NULL;
15350Sstevel@tonic-gate 	tcpu->tcpu_data = NULL;
15360Sstevel@tonic-gate 	tcpu->tcpu_flags &= ~TSTAT_CPU_ALLOCATED;
15370Sstevel@tonic-gate }
15380Sstevel@tonic-gate 
15390Sstevel@tonic-gate static int
15400Sstevel@tonic-gate trapstat_go()
15410Sstevel@tonic-gate {
15420Sstevel@tonic-gate 	cpu_t *cp;
15430Sstevel@tonic-gate 
15440Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
15450Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
15460Sstevel@tonic-gate 
15470Sstevel@tonic-gate 	if (tstat_running) {
15480Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
15490Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
15500Sstevel@tonic-gate 		return (EBUSY);
15510Sstevel@tonic-gate 	}
15520Sstevel@tonic-gate 
15530Sstevel@tonic-gate #ifdef sun4v
15540Sstevel@tonic-gate 	/*
1555*1050Sgirish 	 * Allocate large page to hold interposing tables.
15560Sstevel@tonic-gate 	 */
15570Sstevel@tonic-gate 	tstat_va = contig_mem_alloc(MMU_PAGESIZE4M);
15580Sstevel@tonic-gate 	tstat_pfn = va_to_pfn(tstat_va);
1559*1050Sgirish 	if (tstat_pfn == PFN_INVALID)
15600Sstevel@tonic-gate 		return (EAGAIN);
1561*1050Sgirish 
1562*1050Sgirish 	/*
1563*1050Sgirish 	 * For detailed TLB statistics, invoke CPU specific interface
1564*1050Sgirish 	 * to see if it supports a low overhead interface to collect
1565*1050Sgirish 	 * TSB hit statistics. If so, make set tstat_fast_tlbstat flag
1566*1050Sgirish 	 * to reflect that.
1567*1050Sgirish 	 */
1568*1050Sgirish 	if (tstat_options & TSTAT_OPT_TLBDATA) {
1569*1050Sgirish 		int error;
1570*1050Sgirish 
1571*1050Sgirish 		error = cpu_trapstat_conf(CPU_TSTATCONF_INIT);
1572*1050Sgirish 		if (error == 0)
1573*1050Sgirish 			tstat_fast_tlbstat = B_TRUE;
1574*1050Sgirish 		else if (error != ENOTSUP) {
1575*1050Sgirish 			contig_mem_free(tstat_va, MMU_PAGESIZE4M);
1576*1050Sgirish 			return (error);
1577*1050Sgirish 		}
15780Sstevel@tonic-gate 	}
15790Sstevel@tonic-gate #endif
15800Sstevel@tonic-gate 
15810Sstevel@tonic-gate 	/*
15820Sstevel@tonic-gate 	 * First, perform any necessary hot patching.
15830Sstevel@tonic-gate 	 */
15840Sstevel@tonic-gate 	trapstat_hotpatch();
15850Sstevel@tonic-gate 
15860Sstevel@tonic-gate 	/*
15870Sstevel@tonic-gate 	 * Allocate the resources we'll need to measure probe effect.
15880Sstevel@tonic-gate 	 */
15890Sstevel@tonic-gate 	trapstat_probe_alloc();
15900Sstevel@tonic-gate 
15910Sstevel@tonic-gate 
15920Sstevel@tonic-gate 	cp = cpu_list;
15930Sstevel@tonic-gate 	do {
15940Sstevel@tonic-gate 		if (!(tstat_percpu[cp->cpu_id].tcpu_flags & TSTAT_CPU_SELECTED))
15950Sstevel@tonic-gate 			continue;
15960Sstevel@tonic-gate 
15970Sstevel@tonic-gate 		trapstat_setup(cp->cpu_id);
15980Sstevel@tonic-gate 
15990Sstevel@tonic-gate 		/*
16000Sstevel@tonic-gate 		 * Note that due to trapstat_probe()'s use of global data,
16010Sstevel@tonic-gate 		 * we determine the probe effect on each CPU serially instead
16020Sstevel@tonic-gate 		 * of in parallel with an xc_all().
16030Sstevel@tonic-gate 		 */
16040Sstevel@tonic-gate 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_probe, 0, 0);
16050Sstevel@tonic-gate 	} while ((cp = cp->cpu_next) != cpu_list);
16060Sstevel@tonic-gate 
16070Sstevel@tonic-gate 	xc_all((xcfunc_t *)trapstat_enable, 0, 0);
16080Sstevel@tonic-gate 
16090Sstevel@tonic-gate 	trapstat_probe_free();
16100Sstevel@tonic-gate 	tstat_running = 1;
16110Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
16120Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
16130Sstevel@tonic-gate 
16140Sstevel@tonic-gate 	return (0);
16150Sstevel@tonic-gate }
16160Sstevel@tonic-gate 
16170Sstevel@tonic-gate static int
16180Sstevel@tonic-gate trapstat_stop()
16190Sstevel@tonic-gate {
16200Sstevel@tonic-gate 	int i;
16210Sstevel@tonic-gate 
16220Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
16230Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
16240Sstevel@tonic-gate 	if (!tstat_running) {
16250Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
16260Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
16270Sstevel@tonic-gate 		return (ENXIO);
16280Sstevel@tonic-gate 	}
16290Sstevel@tonic-gate 
16300Sstevel@tonic-gate 	xc_all((xcfunc_t *)trapstat_disable, 0, 0);
16310Sstevel@tonic-gate 
16320Sstevel@tonic-gate 	for (i = 0; i <= max_cpuid; i++) {
16330Sstevel@tonic-gate 		if (tstat_percpu[i].tcpu_flags & TSTAT_CPU_ALLOCATED)
16340Sstevel@tonic-gate 			trapstat_teardown(i);
16350Sstevel@tonic-gate 	}
16360Sstevel@tonic-gate 
16370Sstevel@tonic-gate #ifdef sun4v
1638*1050Sgirish 	if (tstat_options & TSTAT_OPT_TLBDATA)
1639*1050Sgirish 		cpu_trapstat_conf(CPU_TSTATCONF_FINI);
16400Sstevel@tonic-gate 	contig_mem_free(tstat_va, MMU_PAGESIZE4M);
16410Sstevel@tonic-gate #endif
16420Sstevel@tonic-gate 	trapstat_hotpatch();
16430Sstevel@tonic-gate 	tstat_running = 0;
16440Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
16450Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
16460Sstevel@tonic-gate 
16470Sstevel@tonic-gate 	return (0);
16480Sstevel@tonic-gate }
16490Sstevel@tonic-gate 
16500Sstevel@tonic-gate /*
16510Sstevel@tonic-gate  * This is trapstat's DR CPU configuration callback.  It's called (with
16520Sstevel@tonic-gate  * cpu_lock held) to unconfigure a newly powered-off CPU, or to configure a
16530Sstevel@tonic-gate  * powered-off CPU that is to be brought into the system.  We need only take
16540Sstevel@tonic-gate  * action in the unconfigure case:  because a powered-off CPU will have its
16550Sstevel@tonic-gate  * trap table restored to KERNELBASE if it is ever powered back on, we must
16560Sstevel@tonic-gate  * update the flags to reflect that trapstat is no longer enabled on the
16570Sstevel@tonic-gate  * powered-off CPU.  Note that this means that a TSTAT_CPU_ENABLED CPU that
16580Sstevel@tonic-gate  * is unconfigured/powered off and later powered back on/reconfigured will
16590Sstevel@tonic-gate  * _not_ be re-TSTAT_CPU_ENABLED.
16600Sstevel@tonic-gate  */
16610Sstevel@tonic-gate static int
16620Sstevel@tonic-gate trapstat_cpu_setup(cpu_setup_t what, processorid_t cpu)
16630Sstevel@tonic-gate {
16640Sstevel@tonic-gate 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
16650Sstevel@tonic-gate 
16660Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
16670Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
16680Sstevel@tonic-gate 
16690Sstevel@tonic-gate 	if (!tstat_running) {
16700Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
16710Sstevel@tonic-gate 		return (0);
16720Sstevel@tonic-gate 	}
16730Sstevel@tonic-gate 
16740Sstevel@tonic-gate 	switch (what) {
16750Sstevel@tonic-gate 	case CPU_CONFIG:
16760Sstevel@tonic-gate 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
16770Sstevel@tonic-gate 		break;
16780Sstevel@tonic-gate 
16790Sstevel@tonic-gate 	case CPU_UNCONFIG:
16800Sstevel@tonic-gate 		if (tcpu->tcpu_flags & TSTAT_CPU_ENABLED)
16810Sstevel@tonic-gate 			tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED;
16820Sstevel@tonic-gate 		break;
16830Sstevel@tonic-gate 
16840Sstevel@tonic-gate 	default:
16850Sstevel@tonic-gate 		break;
16860Sstevel@tonic-gate 	}
16870Sstevel@tonic-gate 
16880Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
16890Sstevel@tonic-gate 	return (0);
16900Sstevel@tonic-gate }
16910Sstevel@tonic-gate 
16920Sstevel@tonic-gate /*
16930Sstevel@tonic-gate  * This is called before a CPR suspend and after a CPR resume.  We don't have
16940Sstevel@tonic-gate  * anything to do before a suspend, but after a restart we must restore the
16950Sstevel@tonic-gate  * trap table to be our interposing trap table.  However, we don't actually
16960Sstevel@tonic-gate  * know whether or not the CPUs have been powered off -- this routine may be
16970Sstevel@tonic-gate  * called while restoring from a failed CPR suspend.  We thus run through each
16980Sstevel@tonic-gate  * TSTAT_CPU_ENABLED CPU, and explicitly destroy and reestablish its
16990Sstevel@tonic-gate  * interposing trap table.  This assures that our state is correct regardless
17000Sstevel@tonic-gate  * of whether or not the CPU has been newly powered on.
17010Sstevel@tonic-gate  */
17020Sstevel@tonic-gate /*ARGSUSED*/
17030Sstevel@tonic-gate static boolean_t
17040Sstevel@tonic-gate trapstat_cpr(void *arg, int code)
17050Sstevel@tonic-gate {
17060Sstevel@tonic-gate 	cpu_t *cp;
17070Sstevel@tonic-gate 
17080Sstevel@tonic-gate 	if (code == CB_CODE_CPR_CHKPT)
17090Sstevel@tonic-gate 		return (B_TRUE);
17100Sstevel@tonic-gate 
17110Sstevel@tonic-gate 	ASSERT(code == CB_CODE_CPR_RESUME);
17120Sstevel@tonic-gate 
17130Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
17140Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
17150Sstevel@tonic-gate 
17160Sstevel@tonic-gate 	if (!tstat_running) {
17170Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
17180Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
17190Sstevel@tonic-gate 		return (B_TRUE);
17200Sstevel@tonic-gate 	}
17210Sstevel@tonic-gate 
17220Sstevel@tonic-gate 	cp = cpu_list;
17230Sstevel@tonic-gate 	do {
17240Sstevel@tonic-gate 		tstat_percpu_t *tcpu = &tstat_percpu[cp->cpu_id];
17250Sstevel@tonic-gate 
17260Sstevel@tonic-gate 		if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
17270Sstevel@tonic-gate 			continue;
17280Sstevel@tonic-gate 
17290Sstevel@tonic-gate 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
17300Sstevel@tonic-gate 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
17310Sstevel@tonic-gate 
17320Sstevel@tonic-gate 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_disable, 0, 0);
17330Sstevel@tonic-gate 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
17340Sstevel@tonic-gate 
17350Sstevel@tonic-gate 		/*
17360Sstevel@tonic-gate 		 * Preserve this CPU's data in tstat_buffer and rip down its
17370Sstevel@tonic-gate 		 * interposing trap table.
17380Sstevel@tonic-gate 		 */
17390Sstevel@tonic-gate 		bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size);
17400Sstevel@tonic-gate 		trapstat_teardown(cp->cpu_id);
17410Sstevel@tonic-gate 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED));
17420Sstevel@tonic-gate 
17430Sstevel@tonic-gate 		/*
17440Sstevel@tonic-gate 		 * Reestablish the interposing trap table and restore the old
17450Sstevel@tonic-gate 		 * data.
17460Sstevel@tonic-gate 		 */
17470Sstevel@tonic-gate 		trapstat_setup(cp->cpu_id);
17480Sstevel@tonic-gate 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
17490Sstevel@tonic-gate 		bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size);
17500Sstevel@tonic-gate 
17510Sstevel@tonic-gate 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_enable, 0, 0);
17520Sstevel@tonic-gate 	} while ((cp = cp->cpu_next) != cpu_list);
17530Sstevel@tonic-gate 
17540Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
17550Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
17560Sstevel@tonic-gate 
17570Sstevel@tonic-gate 	return (B_TRUE);
17580Sstevel@tonic-gate }
17590Sstevel@tonic-gate 
17600Sstevel@tonic-gate /*ARGSUSED*/
17610Sstevel@tonic-gate static int
17620Sstevel@tonic-gate trapstat_open(dev_t *devp, int flag, int otyp, cred_t *cred_p)
17630Sstevel@tonic-gate {
17640Sstevel@tonic-gate 	int i;
17650Sstevel@tonic-gate 
17660Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
17670Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
17680Sstevel@tonic-gate 	if (tstat_open != 0) {
17690Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
17700Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
17710Sstevel@tonic-gate 		return (EBUSY);
17720Sstevel@tonic-gate 	}
17730Sstevel@tonic-gate 
17740Sstevel@tonic-gate 	/*
17750Sstevel@tonic-gate 	 * Register this in open() rather than in attach() to prevent deadlock
17760Sstevel@tonic-gate 	 * with DR code. During attach, I/O device tree locks are grabbed
17770Sstevel@tonic-gate 	 * before trapstat_attach() is invoked - registering in attach
17780Sstevel@tonic-gate 	 * will result in the lock order: device tree lock, cpu_lock.
17790Sstevel@tonic-gate 	 * DR code however requires that cpu_lock be acquired before
17800Sstevel@tonic-gate 	 * device tree locks.
17810Sstevel@tonic-gate 	 */
17820Sstevel@tonic-gate 	ASSERT(!tstat_running);
17830Sstevel@tonic-gate 	register_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL);
17840Sstevel@tonic-gate 
17850Sstevel@tonic-gate 	/*
17860Sstevel@tonic-gate 	 * Clear all options.  And until specific CPUs are specified, we'll
17870Sstevel@tonic-gate 	 * mark all CPUs as selected.
17880Sstevel@tonic-gate 	 */
17890Sstevel@tonic-gate 	tstat_options = 0;
17900Sstevel@tonic-gate 
17910Sstevel@tonic-gate 	for (i = 0; i <= max_cpuid; i++)
17920Sstevel@tonic-gate 		tstat_percpu[i].tcpu_flags |= TSTAT_CPU_SELECTED;
17930Sstevel@tonic-gate 
17940Sstevel@tonic-gate 	/*
17950Sstevel@tonic-gate 	 * By default, all traps at TL=0 are enabled.  Traps at TL>0 must
17960Sstevel@tonic-gate 	 * be disabled.
17970Sstevel@tonic-gate 	 */
17980Sstevel@tonic-gate 	for (i = 0; i < TSTAT_TOTAL_NENT; i++)
17990Sstevel@tonic-gate 		tstat_enabled[i] = i < TSTAT_NENT ? 1 : 0;
18000Sstevel@tonic-gate 
18010Sstevel@tonic-gate 	tstat_open = 1;
18020Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
18030Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
18040Sstevel@tonic-gate 
18050Sstevel@tonic-gate 	return (0);
18060Sstevel@tonic-gate }
18070Sstevel@tonic-gate 
18080Sstevel@tonic-gate /*ARGSUSED*/
18090Sstevel@tonic-gate static int
18100Sstevel@tonic-gate trapstat_close(dev_t dev, int flag, int otyp, cred_t *cred_p)
18110Sstevel@tonic-gate {
18120Sstevel@tonic-gate 	(void) trapstat_stop();
18130Sstevel@tonic-gate 
18140Sstevel@tonic-gate 	ASSERT(!tstat_running);
18150Sstevel@tonic-gate 
18160Sstevel@tonic-gate 	mutex_enter(&cpu_lock);
18170Sstevel@tonic-gate 	unregister_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL);
18180Sstevel@tonic-gate 	mutex_exit(&cpu_lock);
18190Sstevel@tonic-gate 
18200Sstevel@tonic-gate 	tstat_open = 0;
18210Sstevel@tonic-gate 	return (DDI_SUCCESS);
18220Sstevel@tonic-gate }
18230Sstevel@tonic-gate 
18240Sstevel@tonic-gate static int
18250Sstevel@tonic-gate trapstat_option(int option)
18260Sstevel@tonic-gate {
18270Sstevel@tonic-gate 	mutex_enter(&tstat_lock);
18280Sstevel@tonic-gate 
18290Sstevel@tonic-gate 	if (tstat_running) {
18300Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
18310Sstevel@tonic-gate 		return (EBUSY);
18320Sstevel@tonic-gate 	}
18330Sstevel@tonic-gate 
18340Sstevel@tonic-gate 	tstat_options |= option;
18350Sstevel@tonic-gate 	mutex_exit(&tstat_lock);
18360Sstevel@tonic-gate 
18370Sstevel@tonic-gate 	return (0);
18380Sstevel@tonic-gate }
18390Sstevel@tonic-gate 
18400Sstevel@tonic-gate /*ARGSUSED*/
18410Sstevel@tonic-gate static int
18420Sstevel@tonic-gate trapstat_ioctl(dev_t dev, int cmd, intptr_t arg, int md, cred_t *crd, int *rval)
18430Sstevel@tonic-gate {
18440Sstevel@tonic-gate 	int i, j, out;
18450Sstevel@tonic-gate 	size_t dsize;
18460Sstevel@tonic-gate 
18470Sstevel@tonic-gate 	switch (cmd) {
18480Sstevel@tonic-gate 	case TSTATIOC_GO:
18490Sstevel@tonic-gate 		return (trapstat_go());
18500Sstevel@tonic-gate 
18510Sstevel@tonic-gate 	case TSTATIOC_NOGO:
18520Sstevel@tonic-gate 		return (trapstat_option(TSTAT_OPT_NOGO));
18530Sstevel@tonic-gate 
18540Sstevel@tonic-gate 	case TSTATIOC_STOP:
18550Sstevel@tonic-gate 		return (trapstat_stop());
18560Sstevel@tonic-gate 
18570Sstevel@tonic-gate 	case TSTATIOC_CPU:
18580Sstevel@tonic-gate 		if (arg < 0 || arg > max_cpuid)
18590Sstevel@tonic-gate 			return (EINVAL);
18600Sstevel@tonic-gate 		/*FALLTHROUGH*/
18610Sstevel@tonic-gate 
18620Sstevel@tonic-gate 	case TSTATIOC_NOCPU:
18630Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
18640Sstevel@tonic-gate 
18650Sstevel@tonic-gate 		if (tstat_running) {
18660Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
18670Sstevel@tonic-gate 			return (EBUSY);
18680Sstevel@tonic-gate 		}
18690Sstevel@tonic-gate 
18700Sstevel@tonic-gate 		/*
18710Sstevel@tonic-gate 		 * If this is the first CPU to be specified (or if we are
18720Sstevel@tonic-gate 		 * being asked to explicitly de-select CPUs), disable all CPUs.
18730Sstevel@tonic-gate 		 */
18740Sstevel@tonic-gate 		if (!(tstat_options & TSTAT_OPT_CPU) || cmd == TSTATIOC_NOCPU) {
18750Sstevel@tonic-gate 			tstat_options |= TSTAT_OPT_CPU;
18760Sstevel@tonic-gate 
18770Sstevel@tonic-gate 			for (i = 0; i <= max_cpuid; i++) {
18780Sstevel@tonic-gate 				tstat_percpu_t *tcpu = &tstat_percpu[i];
18790Sstevel@tonic-gate 
18800Sstevel@tonic-gate 				ASSERT(cmd == TSTATIOC_NOCPU ||
18810Sstevel@tonic-gate 				    (tcpu->tcpu_flags & TSTAT_CPU_SELECTED));
18820Sstevel@tonic-gate 				tcpu->tcpu_flags &= ~TSTAT_CPU_SELECTED;
18830Sstevel@tonic-gate 			}
18840Sstevel@tonic-gate 		}
18850Sstevel@tonic-gate 
18860Sstevel@tonic-gate 		if (cmd == TSTATIOC_CPU)
18870Sstevel@tonic-gate 			tstat_percpu[arg].tcpu_flags |= TSTAT_CPU_SELECTED;
18880Sstevel@tonic-gate 
18890Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
18900Sstevel@tonic-gate 
18910Sstevel@tonic-gate 		return (0);
18920Sstevel@tonic-gate 
18930Sstevel@tonic-gate 	case TSTATIOC_ENTRY:
18940Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
18950Sstevel@tonic-gate 
18960Sstevel@tonic-gate 		if (tstat_running) {
18970Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
18980Sstevel@tonic-gate 			return (EBUSY);
18990Sstevel@tonic-gate 		}
19000Sstevel@tonic-gate 
19010Sstevel@tonic-gate 		if (arg >= TSTAT_NENT || arg < 0) {
19020Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
19030Sstevel@tonic-gate 			return (EINVAL);
19040Sstevel@tonic-gate 		}
19050Sstevel@tonic-gate 
19060Sstevel@tonic-gate 		if (!(tstat_options & TSTAT_OPT_ENTRY)) {
19070Sstevel@tonic-gate 			/*
19080Sstevel@tonic-gate 			 * If this is the first entry that we are explicitly
19090Sstevel@tonic-gate 			 * enabling, explicitly disable every TL=0 entry.
19100Sstevel@tonic-gate 			 */
19110Sstevel@tonic-gate 			for (i = 0; i < TSTAT_NENT; i++)
19120Sstevel@tonic-gate 				tstat_enabled[i] = 0;
19130Sstevel@tonic-gate 
19140Sstevel@tonic-gate 			tstat_options |= TSTAT_OPT_ENTRY;
19150Sstevel@tonic-gate 		}
19160Sstevel@tonic-gate 
19170Sstevel@tonic-gate 		tstat_enabled[arg] = 1;
19180Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
19190Sstevel@tonic-gate 		return (0);
19200Sstevel@tonic-gate 
19210Sstevel@tonic-gate 	case TSTATIOC_NOENTRY:
19220Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
19230Sstevel@tonic-gate 
19240Sstevel@tonic-gate 		if (tstat_running) {
19250Sstevel@tonic-gate 			mutex_exit(&tstat_lock);
19260Sstevel@tonic-gate 			return (EBUSY);
19270Sstevel@tonic-gate 		}
19280Sstevel@tonic-gate 
19290Sstevel@tonic-gate 		for (i = 0; i < TSTAT_NENT; i++)
19300Sstevel@tonic-gate 			tstat_enabled[i] = 0;
19310Sstevel@tonic-gate 
19320Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
19330Sstevel@tonic-gate 		return (0);
19340Sstevel@tonic-gate 
19350Sstevel@tonic-gate 	case TSTATIOC_READ:
19360Sstevel@tonic-gate 		mutex_enter(&tstat_lock);
19370Sstevel@tonic-gate 
19380Sstevel@tonic-gate 		if (tstat_options & TSTAT_OPT_TLBDATA) {
19390Sstevel@tonic-gate 			dsize = tstat_data_t_exported_size;
19400Sstevel@tonic-gate 		} else {
19410Sstevel@tonic-gate 			dsize = sizeof (tstat_data_t);
19420Sstevel@tonic-gate 		}
19430Sstevel@tonic-gate 
19440Sstevel@tonic-gate 		for (i = 0, out = 0; i <= max_cpuid; i++) {
19450Sstevel@tonic-gate 			tstat_percpu_t *tcpu = &tstat_percpu[i];
19460Sstevel@tonic-gate 
19470Sstevel@tonic-gate 			if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
19480Sstevel@tonic-gate 				continue;
19490Sstevel@tonic-gate 
19500Sstevel@tonic-gate 			ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
19510Sstevel@tonic-gate 			ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
19520Sstevel@tonic-gate 
19530Sstevel@tonic-gate 			tstat_buffer->tdata_cpuid = -1;
19540Sstevel@tonic-gate 			xc_one(i, (xcfunc_t *)trapstat_snapshot, 0, 0);
19550Sstevel@tonic-gate 
19560Sstevel@tonic-gate 			if (tstat_buffer->tdata_cpuid == -1) {
19570Sstevel@tonic-gate 				/*
19580Sstevel@tonic-gate 				 * This CPU is not currently responding to
19590Sstevel@tonic-gate 				 * cross calls; we have caught it while it is
19600Sstevel@tonic-gate 				 * being unconfigured.  We'll drop tstat_lock
19610Sstevel@tonic-gate 				 * and pick up and drop cpu_lock.  By the
19620Sstevel@tonic-gate 				 * time we acquire cpu_lock, the DR operation
19630Sstevel@tonic-gate 				 * will appear consistent and we can assert
19640Sstevel@tonic-gate 				 * that trapstat_cpu_setup() has cleared
19650Sstevel@tonic-gate 				 * TSTAT_CPU_ENABLED.
19660Sstevel@tonic-gate 				 */
19670Sstevel@tonic-gate 				mutex_exit(&tstat_lock);
19680Sstevel@tonic-gate 				mutex_enter(&cpu_lock);
19690Sstevel@tonic-gate 				mutex_exit(&cpu_lock);
19700Sstevel@tonic-gate 				mutex_enter(&tstat_lock);
19710Sstevel@tonic-gate 				ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
19720Sstevel@tonic-gate 				continue;
19730Sstevel@tonic-gate 			}
19740Sstevel@tonic-gate 
19750Sstevel@tonic-gate 			/*
19760Sstevel@tonic-gate 			 * Need to compensate for the difference between page
19770Sstevel@tonic-gate 			 * sizes exported to users and page sizes available
19780Sstevel@tonic-gate 			 * within the kernel.
19790Sstevel@tonic-gate 			 */
19800Sstevel@tonic-gate 			if ((tstat_options & TSTAT_OPT_TLBDATA) &&
19810Sstevel@tonic-gate 			    (tstat_pgszs != tstat_user_pgszs)) {
19820Sstevel@tonic-gate 				tstat_pgszdata_t *tp;
19830Sstevel@tonic-gate 				uint_t szc;
19840Sstevel@tonic-gate 
19850Sstevel@tonic-gate 				tp = &tstat_buffer->tdata_pgsz[0];
19860Sstevel@tonic-gate 				for (j = 0; j < tstat_user_pgszs; j++) {
19870Sstevel@tonic-gate 					if ((szc = USERSZC_2_SZC(j)) != j) {
19880Sstevel@tonic-gate 						bcopy(&tp[szc], &tp[j],
19890Sstevel@tonic-gate 						    sizeof (tstat_pgszdata_t));
19900Sstevel@tonic-gate 					}
19910Sstevel@tonic-gate 				}
19920Sstevel@tonic-gate 			}
19930Sstevel@tonic-gate 
19940Sstevel@tonic-gate 			if (copyout(tstat_buffer, (void *)arg, dsize) != 0) {
19950Sstevel@tonic-gate 				mutex_exit(&tstat_lock);
19960Sstevel@tonic-gate 				return (EFAULT);
19970Sstevel@tonic-gate 			}
19980Sstevel@tonic-gate 
19990Sstevel@tonic-gate 			out++;
20000Sstevel@tonic-gate 			arg += dsize;
20010Sstevel@tonic-gate 		}
20020Sstevel@tonic-gate 
20030Sstevel@tonic-gate 		if (out != max_cpuid + 1) {
20040Sstevel@tonic-gate 			processorid_t cpuid = -1;
20050Sstevel@tonic-gate 			arg += offsetof(tstat_data_t, tdata_cpuid);
20060Sstevel@tonic-gate 
20070Sstevel@tonic-gate 			if (copyout(&cpuid, (void *)arg, sizeof (cpuid)) != 0) {
20080Sstevel@tonic-gate 				mutex_exit(&tstat_lock);
20090Sstevel@tonic-gate 				return (EFAULT);
20100Sstevel@tonic-gate 			}
20110Sstevel@tonic-gate 		}
20120Sstevel@tonic-gate 
20130Sstevel@tonic-gate 		mutex_exit(&tstat_lock);
20140Sstevel@tonic-gate 
20150Sstevel@tonic-gate 		return (0);
20160Sstevel@tonic-gate 
20170Sstevel@tonic-gate 	case TSTATIOC_TLBDATA:
20180Sstevel@tonic-gate 		return (trapstat_option(TSTAT_OPT_TLBDATA));
20190Sstevel@tonic-gate 
20200Sstevel@tonic-gate 	default:
20210Sstevel@tonic-gate 		break;
20220Sstevel@tonic-gate 	}
20230Sstevel@tonic-gate 
20240Sstevel@tonic-gate 	return (ENOTTY);
20250Sstevel@tonic-gate }
20260Sstevel@tonic-gate 
20270Sstevel@tonic-gate /*ARGSUSED*/
20280Sstevel@tonic-gate static int
20290Sstevel@tonic-gate trapstat_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
20300Sstevel@tonic-gate {
20310Sstevel@tonic-gate 	int error;
20320Sstevel@tonic-gate 
20330Sstevel@tonic-gate 	switch (infocmd) {
20340Sstevel@tonic-gate 	case DDI_INFO_DEVT2DEVINFO:
20350Sstevel@tonic-gate 		*result = (void *)tstat_devi;
20360Sstevel@tonic-gate 		error = DDI_SUCCESS;
20370Sstevel@tonic-gate 		break;
20380Sstevel@tonic-gate 	case DDI_INFO_DEVT2INSTANCE:
20390Sstevel@tonic-gate 		*result = (void *)0;
20400Sstevel@tonic-gate 		error = DDI_SUCCESS;
20410Sstevel@tonic-gate 		break;
20420Sstevel@tonic-gate 	default:
20430Sstevel@tonic-gate 		error = DDI_FAILURE;
20440Sstevel@tonic-gate 	}
20450Sstevel@tonic-gate 	return (error);
20460Sstevel@tonic-gate }
20470Sstevel@tonic-gate 
20480Sstevel@tonic-gate static int
20490Sstevel@tonic-gate trapstat_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
20500Sstevel@tonic-gate {
20510Sstevel@tonic-gate 	switch (cmd) {
20520Sstevel@tonic-gate 	case DDI_ATTACH:
20530Sstevel@tonic-gate 		break;
20540Sstevel@tonic-gate 
20550Sstevel@tonic-gate 	case DDI_RESUME:
20560Sstevel@tonic-gate 		return (DDI_SUCCESS);
20570Sstevel@tonic-gate 
20580Sstevel@tonic-gate 	default:
20590Sstevel@tonic-gate 		return (DDI_FAILURE);
20600Sstevel@tonic-gate 	}
20610Sstevel@tonic-gate 
20620Sstevel@tonic-gate 	if (ddi_create_minor_node(devi, "trapstat", S_IFCHR,
20630Sstevel@tonic-gate 	    0, DDI_PSEUDO, 0) == DDI_FAILURE) {
20640Sstevel@tonic-gate 		ddi_remove_minor_node(devi, NULL);
20650Sstevel@tonic-gate 		return (DDI_FAILURE);
20660Sstevel@tonic-gate 	}
20670Sstevel@tonic-gate 
20680Sstevel@tonic-gate 	ddi_report_dev(devi);
20690Sstevel@tonic-gate 	tstat_devi = devi;
20700Sstevel@tonic-gate 
20710Sstevel@tonic-gate 	tstat_pgszs = page_num_pagesizes();
20720Sstevel@tonic-gate 	tstat_user_pgszs = page_num_user_pagesizes();
20730Sstevel@tonic-gate 	tstat_data_t_size = sizeof (tstat_data_t) +
20740Sstevel@tonic-gate 	    (tstat_pgszs - 1) * sizeof (tstat_pgszdata_t);
20750Sstevel@tonic-gate 	tstat_data_t_exported_size = sizeof (tstat_data_t) +
20760Sstevel@tonic-gate 	    (tstat_user_pgszs - 1) * sizeof (tstat_pgszdata_t);
20770Sstevel@tonic-gate #ifndef sun4v
20780Sstevel@tonic-gate 	tstat_data_pages = (tstat_data_t_size >> MMU_PAGESHIFT) + 1;
20790Sstevel@tonic-gate 	tstat_total_pages = TSTAT_INSTR_PAGES + tstat_data_pages;
20800Sstevel@tonic-gate 	tstat_data_size = tstat_data_pages * MMU_PAGESIZE;
20810Sstevel@tonic-gate 	tstat_total_size = TSTAT_INSTR_SIZE + tstat_data_size;
20820Sstevel@tonic-gate #else
20830Sstevel@tonic-gate 	tstat_data_pages = 0;
20840Sstevel@tonic-gate 	tstat_data_size = tstat_data_t_size;
20850Sstevel@tonic-gate 	tstat_total_pages = ((TSTAT_INSTR_SIZE + tstat_data_size) >>
20860Sstevel@tonic-gate 		MMU_PAGESHIFT) + 1;
20870Sstevel@tonic-gate 	tstat_total_size = tstat_total_pages * MMU_PAGESIZE;
20880Sstevel@tonic-gate #endif
20890Sstevel@tonic-gate 
20900Sstevel@tonic-gate 	tstat_percpu = kmem_zalloc((max_cpuid + 1) *
20910Sstevel@tonic-gate 	    sizeof (tstat_percpu_t), KM_SLEEP);
20920Sstevel@tonic-gate 
20930Sstevel@tonic-gate 	/*
20940Sstevel@tonic-gate 	 * Create our own arena backed by segkmem to assure a source of
20950Sstevel@tonic-gate 	 * MMU_PAGESIZE-aligned allocations.  We allocate out of the
20960Sstevel@tonic-gate 	 * heap32_arena to assure that we can address the allocated memory with
20970Sstevel@tonic-gate 	 * a single sethi/simm13 pair in the interposing trap table entries.
20980Sstevel@tonic-gate 	 */
20990Sstevel@tonic-gate 	tstat_arena = vmem_create("trapstat", NULL, 0, MMU_PAGESIZE,
21000Sstevel@tonic-gate 	    segkmem_alloc_permanent, segkmem_free, heap32_arena, 0, VM_SLEEP);
21010Sstevel@tonic-gate 
21020Sstevel@tonic-gate 	tstat_enabled = kmem_alloc(TSTAT_TOTAL_NENT * sizeof (int), KM_SLEEP);
21030Sstevel@tonic-gate 	tstat_buffer = kmem_alloc(tstat_data_t_size, KM_SLEEP);
21040Sstevel@tonic-gate 
21050Sstevel@tonic-gate 	/*
21060Sstevel@tonic-gate 	 * CB_CL_CPR_POST_USER is the class that executes from cpr_resume()
21070Sstevel@tonic-gate 	 * after user threads can be restarted.  By executing in this class,
21080Sstevel@tonic-gate 	 * we are assured of the availability of system services needed to
21090Sstevel@tonic-gate 	 * resume trapstat (specifically, we are assured that all CPUs are
21100Sstevel@tonic-gate 	 * restarted and responding to cross calls).
21110Sstevel@tonic-gate 	 */
21120Sstevel@tonic-gate 	tstat_cprcb =
21130Sstevel@tonic-gate 	    callb_add(trapstat_cpr, NULL, CB_CL_CPR_POST_USER, "trapstat");
21140Sstevel@tonic-gate 
21150Sstevel@tonic-gate 	return (DDI_SUCCESS);
21160Sstevel@tonic-gate }
21170Sstevel@tonic-gate 
21180Sstevel@tonic-gate static int
21190Sstevel@tonic-gate trapstat_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
21200Sstevel@tonic-gate {
21210Sstevel@tonic-gate 	int rval;
21220Sstevel@tonic-gate 
21230Sstevel@tonic-gate 	ASSERT(devi == tstat_devi);
21240Sstevel@tonic-gate 
21250Sstevel@tonic-gate 	switch (cmd) {
21260Sstevel@tonic-gate 	case DDI_DETACH:
21270Sstevel@tonic-gate 		break;
21280Sstevel@tonic-gate 
21290Sstevel@tonic-gate 	case DDI_SUSPEND:
21300Sstevel@tonic-gate 		return (DDI_SUCCESS);
21310Sstevel@tonic-gate 
21320Sstevel@tonic-gate 	default:
21330Sstevel@tonic-gate 		return (DDI_FAILURE);
21340Sstevel@tonic-gate 	}
21350Sstevel@tonic-gate 
21360Sstevel@tonic-gate 	ASSERT(!tstat_running);
21370Sstevel@tonic-gate 
21380Sstevel@tonic-gate 	rval = callb_delete(tstat_cprcb);
21390Sstevel@tonic-gate 	ASSERT(rval == 0);
21400Sstevel@tonic-gate 
21410Sstevel@tonic-gate 	kmem_free(tstat_buffer, tstat_data_t_size);
21420Sstevel@tonic-gate 	kmem_free(tstat_enabled, TSTAT_TOTAL_NENT * sizeof (int));
21430Sstevel@tonic-gate 	vmem_destroy(tstat_arena);
21440Sstevel@tonic-gate 	kmem_free(tstat_percpu, (max_cpuid + 1) * sizeof (tstat_percpu_t));
21450Sstevel@tonic-gate 	ddi_remove_minor_node(devi, NULL);
21460Sstevel@tonic-gate 
21470Sstevel@tonic-gate 	return (DDI_SUCCESS);
21480Sstevel@tonic-gate }
21490Sstevel@tonic-gate 
21500Sstevel@tonic-gate /*
21510Sstevel@tonic-gate  * Configuration data structures
21520Sstevel@tonic-gate  */
21530Sstevel@tonic-gate static struct cb_ops trapstat_cb_ops = {
21540Sstevel@tonic-gate 	trapstat_open,		/* open */
21550Sstevel@tonic-gate 	trapstat_close,		/* close */
21560Sstevel@tonic-gate 	nulldev,		/* strategy */
21570Sstevel@tonic-gate 	nulldev,		/* print */
21580Sstevel@tonic-gate 	nodev,			/* dump */
21590Sstevel@tonic-gate 	nodev,			/* read */
21600Sstevel@tonic-gate 	nodev,			/* write */
21610Sstevel@tonic-gate 	trapstat_ioctl,		/* ioctl */
21620Sstevel@tonic-gate 	nodev,			/* devmap */
21630Sstevel@tonic-gate 	nodev,			/* mmap */
21640Sstevel@tonic-gate 	nodev,			/* segmap */
21650Sstevel@tonic-gate 	nochpoll,		/* poll */
21660Sstevel@tonic-gate 	ddi_prop_op,		/* cb_prop_op */
21670Sstevel@tonic-gate 	0,			/* streamtab */
21680Sstevel@tonic-gate 	D_MP | D_NEW		/* Driver compatibility flag */
21690Sstevel@tonic-gate };
21700Sstevel@tonic-gate 
21710Sstevel@tonic-gate static struct dev_ops trapstat_ops = {
21720Sstevel@tonic-gate 	DEVO_REV,		/* devo_rev, */
21730Sstevel@tonic-gate 	0,			/* refcnt */
21740Sstevel@tonic-gate 	trapstat_info,		/* getinfo */
21750Sstevel@tonic-gate 	nulldev,		/* identify */
21760Sstevel@tonic-gate 	nulldev,		/* probe */
21770Sstevel@tonic-gate 	trapstat_attach,	/* attach */
21780Sstevel@tonic-gate 	trapstat_detach,	/* detach */
21790Sstevel@tonic-gate 	nulldev,		/* reset */
21800Sstevel@tonic-gate 	&trapstat_cb_ops,	/* cb_ops */
21810Sstevel@tonic-gate 	(struct bus_ops *)0,	/* bus_ops */
21820Sstevel@tonic-gate };
21830Sstevel@tonic-gate 
21840Sstevel@tonic-gate static struct modldrv modldrv = {
21850Sstevel@tonic-gate 	&mod_driverops,		/* Type of module.  This one is a driver */
21860Sstevel@tonic-gate 	"Trap Statistics",	/* name of module */
21870Sstevel@tonic-gate 	&trapstat_ops,		/* driver ops */
21880Sstevel@tonic-gate };
21890Sstevel@tonic-gate 
21900Sstevel@tonic-gate static struct modlinkage modlinkage = {
21910Sstevel@tonic-gate 	MODREV_1, (void *)&modldrv, NULL
21920Sstevel@tonic-gate };
21930Sstevel@tonic-gate 
21940Sstevel@tonic-gate int
21950Sstevel@tonic-gate _init(void)
21960Sstevel@tonic-gate {
21970Sstevel@tonic-gate 	return (mod_install(&modlinkage));
21980Sstevel@tonic-gate }
21990Sstevel@tonic-gate 
22000Sstevel@tonic-gate int
22010Sstevel@tonic-gate _fini(void)
22020Sstevel@tonic-gate {
22030Sstevel@tonic-gate 	return (mod_remove(&modlinkage));
22040Sstevel@tonic-gate }
22050Sstevel@tonic-gate 
22060Sstevel@tonic-gate int
22070Sstevel@tonic-gate _info(struct modinfo *modinfop)
22080Sstevel@tonic-gate {
22090Sstevel@tonic-gate 	return (mod_info(&modlinkage, modinfop));
22100Sstevel@tonic-gate }
2211