xref: /titanic_41/usr/src/uts/sun4/io/trapstat.c (revision 8eea8e29cc4374d1ee24c25a07f45af132db3499)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 #include <sys/systm.h>
30 #include <sys/conf.h>
31 #include <sys/stat.h>
32 #include <sys/ddi.h>
33 #include <sys/sunddi.h>
34 #include <sys/modctl.h>
35 #include <sys/cpu_module.h>
36 #include <vm/hat_sfmmu.h>
37 #include <vm/seg_kmem.h>
38 #include <vm/seg_kpm.h>
39 #include <vm/vm_dep.h>
40 #include <sys/machsystm.h>
41 #include <sys/machasi.h>
42 #include <sys/sysmacros.h>
43 #include <sys/callb.h>
44 #include <sys/archsystm.h>
45 #include <sys/trapstat.h>
46 #ifdef sun4v
47 #include <sys/hypervisor_api.h>
48 #endif
49 
50 /* BEGIN CSTYLED */
51 /*
52  * trapstat:  Trap Statistics through Dynamic Trap Table Interposition
53  * -------------------------------------------------------------------
54  *
55  * Motivation and Overview
56  *
57  * Despite being a fundamental indicator of system behavior, there has
58  * historically been very little insight provided into the frequency and cost
59  * of machine-specific traps.  The lack of insight has been especially acute
60  * on UltraSPARC microprocessors:  because these microprocessors handle TLB
61  * misses as software traps, the frequency and duration of traps play a
62  * decisive role in the performance of the memory system.  As applications have
63  * increasingly outstripped TLB reach, this has become increasingly true.
64  *
65  * Part of the difficulty of observing trap behavior is that the trap handlers
66  * are so frequently called (e.g. millions of times per second) that any
67  * permanently enabled instrumentation would induce an unacceptable performance
68  * degradation.  Thus, it is a constraint on any trap observability
69  * infrastructure that it have no probe effect when not explicitly enabled.
70  *
71  * The basic idea, then, is to create an interposing trap table in which each
72  * entry increments a per-trap, in-memory counter and then jumps to the actual,
73  * underlying trap table entry.  To enable trapstat, we atomically write to the
74  * trap base address (%tba) register to point to our interposing trap table.
75  * (Note that per-CPU statistics fall out by creating a different trap table
76  * for each CPU.)
77  *
78  * Implementation Details
79  *
80  * While the idea is straight-forward, a nuance of SPARC V9 slightly
81  * complicates the implementation.  Unlike its predecessors, SPARC V9 supports
82  * the notion of nested traps.  The trap level is kept in the TL register:
83  * during normal operation it is 0; when a trap is taken, the TL register is
84  * incremented by 1.  To aid system software, SPARC V9 breaks the trap table
85  * into two halves:  the lower half contains the trap handlers for traps taken
86  * when TL is 0; the upper half contains the trap handlers for traps taken
87  * when TL is greater than 0.  Each half is further subdivided into two
88  * subsequent halves:  the lower half contains the trap handlers for traps
89  * other than those induced by the trap instruction (Tcc variants); the upper
90  * half contains the trap handlers for traps induced by the trap instruction.
91  * This gives a total of four ranges, with each range containing 256 traps:
92  *
93  *       +--------------------------------+- 3ff
94  *       |                                |   .
95  *       |     Trap instruction, TL>0     |   .
96  *       |                                |   .
97  *       |- - - - - - - - - - - - - - - - +- 300
98  *       |- - - - - - - - - - - - - - - - +- 2ff
99  *       |                                |   .
100  *       |   Non-trap instruction, TL>0   |   .
101  *       |                                |   .
102  *       |- - - - - - - - - - - - - - - - +- 200
103  *       |- - - - - - - - - - - - - - - - +- 1ff
104  *       |                                |   .
105  *       |     Trap instruction, TL=0     |   .
106  *       |                                |   .
107  *       |- - - - - - - - - - - - - - - - +- 100
108  *       |- - - - - - - - - - - - - - - - +- 0ff
109  *       |                                |   .
110  *       |   Non-trap instruction, TL=0   |   .
111  *       |                                |   .
112  *       +--------------------------------+- 000
113  *
114  *
115  * Solaris, however, doesn't have reason to support trap instructions when
116  * TL>0 (only privileged code may execute at TL>0; not supporting this only
117  * constrains our own implementation).  The trap table actually looks like:
118  *
119  *       +--------------------------------+- 2ff
120  *       |                                |   .
121  *       |   Non-trap instruction, TL>0   |   .
122  *       |                                |   .
123  *       |- - - - - - - - - - - - - - - - +- 200
124  *       |- - - - - - - - - - - - - - - - +- 1ff
125  *       |                                |   .
126  *       |     Trap instruction, TL=0     |   .
127  *       |                                |   .
128  *       |- - - - - - - - - - - - - - - - +- 100
129  *       |- - - - - - - - - - - - - - - - +- 0ff
130  *       |                                |   .
131  *       |   Non-trap instruction, TL=0   |   .
132  *       |                                |   .
133  *       +--------------------------------+- 000
134  *
135  * Putatively to aid system software, SPARC V9 has the notion of multiple
136  * sets of global registers.  UltraSPARC defines four sets of global
137  * registers:
138  *
139  *    Normal Globals
140  *    Alternate Globals (AGs)
141  *    MMU Globals (MGs)
142  *    Interrupt Globals (IGs)
143  *
144  * The set of globals in use is controlled by bits in PSTATE; when TL is 0
145  * (and PSTATE has not been otherwise explicitly modified), the Normal Globals
146  * are in use.  When a trap is issued, PSTATE is modified to point to a set of
147  * globals corresponding to the trap type.  Most traps correspond to the
148  * Alternate Globals, with a minority corresponding to the MMU Globals, and
149  * only the interrupt-vector trap (vector 0x60) corresponding to the Interrupt
150  * Globals.  (The complete mapping can be found in the UltraSPARC I&II User's
151  * Manual.)
152  *
153  * Note that the sets of globals are per trap _type_, not per trap _level_.
154  * Thus, when executing a TL>0 trap handler, one may not have registers
155  * available (for example, both trap-instruction traps and spill traps execute
156  * on the alternate globals; if a trap-instruction trap induces a window spill,
157  * the window spill handler has no available globals).  For trapstat, this is
158  * problematic:  a register is required to transfer control from one arbitrary
159  * location (in the interposing trap table) to another (in the actual trap
160  * table).
161  *
162  * We solve this problem by exploiting the trap table's location at the bottom
163  * of valid kernel memory (i.e. at KERNELBASE).  We locate the interposing trap
164  * tables just below KERNELBASE -- thereby allowing us to use a branch-always
165  * instruction (ba) instead of a jump instruction (jmp) to transfer control
166  * from the TL>0 entries in the interposing trap table to the TL>0 entries in
167  * the actual trap table.  (N.B. while this allows trap table interposition to
168  * work, it necessarily limits trapstat to only recording information about
169  * TL=0 traps -- there is no way to increment a counter without using a
170  * register.)  Diagrammatically:
171  *
172  *  Actual trap table:
173  *
174  *       +--------------------------------+- 2ff
175  *       |                                |   .
176  *       |   Non-trap instruction, TL>0   |   .   <-----------------------+
177  *       |                                |   .   <-----------------------|-+
178  *       |- - - - - - - - - - - - - - - - +- 200  <-----------------------|-|-+
179  *       |- - - - - - - - - - - - - - - - +- 1ff                          | | |
180  *       |                                |   .                           | | |
181  *       |     Trap instruction, TL=0     |   .   <-----------------+     | | |
182  *       |                                |   .   <-----------------|-+   | | |
183  *       |- - - - - - - - - - - - - - - - +- 100  <-----------------|-|-+ | | |
184  *       |- - - - - - - - - - - - - - - - +- 0ff                    | | | | | |
185  *       |                                |   .                     | | | | | |
186  *       |   Non-trap instruction, TL=0   |   .   <-----------+     | | | | | |
187  *       |                                |   .   <-----------|-+   | | | | | |
188  *       +--------------------------------+- 000  <-----------|-|-+ | | | | | |
189  *        KERNELBASE                                          | | | | | | | | |
190  *                                                            | | | | | | | | |
191  *                                                            | | | | | | | | |
192  *  Interposing trap table:                                   | | | | | | | | |
193  *                                                            | | | | | | | | |
194  *       +--------------------------------+- 2ff              | | | | | | | | |
195  *       |  ...                           |   .               | | | | | | | | |
196  *       |  ...                           |   .               | | | | | | | | |
197  *       |  ...                           |   .               | | | | | | | | |
198  *       |- - - - - - - - - - - - - - - - +- 203              | | | | | | | | |
199  *       |  ba,a                          |      -------------|-|-|-|-|-|-+ | |
200  *       |- - - - - - - - - - - - - - - - +- 202              | | | | | |   | |
201  *       |  ba,a                          |      -------------|-|-|-|-|-|---+ |
202  *       |- - - - - - - - - - - - - - - - +- 201              | | | | | |     |
203  *       |  ba,a                          |      -------------|-|-|-|-|-|-----+
204  *       |- - - - - - - - - - - - - - - - +- 200              | | | | | |
205  *       |  ...                           |   .               | | | | | |
206  *       |  ...                           |   .               | | | | | |
207  *       |  ...                           |   .               | | | | | |
208  *       |- - - - - - - - - - - - - - - - +- 103              | | | | | |
209  *       |  (Increment counter)           |                   | | | | | |
210  *       |  ba,a                          |      -------------------+ | |
211  *       |- - - - - - - - - - - - - - - - +- 102              | | |   | |
212  *       |  (Increment counter)           |                   | | |   | |
213  *       |  ba,a                          |      ---------------------+ |
214  *       |- - - - - - - - - - - - - - - - +- 101              | | |     |
215  *       |  (Increment counter)           |                   | | |     |
216  *       |  ba,a                          |      -----------------------+
217  *       |- - - - - - - - - - - - - - - - +- 100              | | |
218  *       |  ...                           |   .               | | |
219  *       |  ...                           |   .               | | |
220  *       |  ...                           |   .               | | |
221  *       |- - - - - - - - - - - - - - - - +- 003              | | |
222  *       |  (Increment counter)           |                   | | |
223  *       |  ba,a                          |      -------------+ | |
224  *       |- - - - - - - - - - - - - - - - +- 002                | |
225  *       |  (Increment counter)           |                     | |
226  *       |  ba,a                          |      ---------------+ |
227  *       |- - - - - - - - - - - - - - - - +- 001                  |
228  *       |  (Increment counter)           |                       |
229  *       |  ba,a                          |      -----------------+
230  *       +--------------------------------+- 000
231  *        KERNELBASE - tstat_total_size
232  *
233  * tstat_total_size is the number of pages required for each trap table.  It
234  * must be true that KERNELBASE - tstat_total_size is less than the maximum
235  * branch displacement; if each CPU were to consume a disjoint virtual range
236  * below KERNELBASE for its trap table, we could support at most
237  * (maximum_branch_displacement / tstat_total_size) CPUs.  The maximum branch
238  * displacement for Bicc variants is just under eight megabytes, and (because
239  * the %tba must be 32K aligned), tstat_total_size must be at least 32K; if
240  * each CPU were to consume a disjoint virtual range, we would have an
241  * unacceptably low upper bound of 256 CPUs.
242  *
243  * While there are tricks that one could use to address this constraint (e.g.,
244  * creating trampolines every maximum_branch_displacement bytes), we instead
245  * solve this by not permitting each CPU to consume a disjoint virtual range.
246  * Rather, we have each CPU's interposing trap table use the _same_ virtual
247  * range, but we back the trap tables with disjoint physical memory.  Normally,
248  * such one-to-many virtual-to-physical mappings are illegal; this is
249  * permissible here only because the pages for the interposing trap table are
250  * necessarily locked in the TLB.  (The CPUs thus never have the opportunity to
251  * discover that they have conflicting translations.)
252  *
253  * On CMT architectures in which CPUs can share MMUs, the above trick will not
254  * work: two CPUs that share an MMU cannot have the same virtual address map
255  * to disjoint physical pages.  On these architectures, any CPUs sharing the
256  * same MMU must consume a disjoint 32K virtual address range -- limiting the
257  * number of CPUs sharing an MMU on these architectures to 256 due to the
258  * branch displacement limitation described above.  On the sun4v architecture,
259  * there is a further limitation: a guest may not have more than eight locked
260  * TLB entries per MMU.  To allow operation under this restriction, the
261  * interposing trap table and the trap statistics are each accessed through
262  * a single 4M TLB entry.  This limits the footprint to two locked entries
263  * (one for the I-TLB and one for the D-TLB), but further restricts the number
264  * of CPUs to 128 per MMU.  However, support for more than 128 CPUs can easily
265  * be added via a hybrid scheme, where the same 4M virtual address is used
266  * on different MMUs.
267  *
268  *
269  * TLB Statistics
270  *
271  * Because TLB misses are an important component of system performance, we wish
272  * to know much more about these traps than simply the number received.
273  * Specifically, we wish to know:
274  *
275  *  (a)	The amount of time spent executing the TLB miss handler
276  *  (b)	TLB misses versus TSB misses
277  *  (c) Kernel-level misses versus user-level misses
278  *  (d) Misses per pagesize
279  *
280  * TLB Statistics: Time Spent Executing
281  *
282  * To accurately determine the amount of time spent executing the TLB miss
283  * handler, one must get a timestamp on trap entry and trap exit, subtract the
284  * latter from the former, and add the result to an accumulating count.
285  * Consider flow of control during normal TLB miss processing (where "ldx
286  * [%g2], %g2" is an arbitrary TLB-missing instruction):
287  *
288  * + - - - - - - - -+
289  * :                :
290  * : ldx [%g2], %g2 :<-------------------------------------------------------+
291  * :                :              Return from trap:                         |
292  * + - - - - - - - -+                TL <- TL - 1 (0)                        |
293  *	  |                          %pc <- TSTATE[TL].TPC (address of load) |
294  *	  | TLB miss:                                                        |
295  *        |   TL <- TL + 1 (1)                                               |
296  *        |   %pc <- TLB-miss-trap-handler                                   |
297  *        |                                                                  |
298  *        v                                                                  |
299  * + - - - - - - - - - - - - - - - +                                         |
300  * :                               :                                         |
301  * : Lookup VA in TSB              :                                         |
302  * : If (hit)                      :                                         |
303  * :     Fill TLB                  :                                         |
304  * : Else                          :                                         |
305  * :     Lookup VA (hme hash table :                                         |
306  * :                or segkpm)     :                                         |
307  * :     Fill TLB                  :                                         |
308  * : Endif                         :                                         |
309  * : Issue "retry"  ---------------------------------------------------------+
310  * :                               :
311  * + - - - - - - - - - - - - - - - +
312  *  TLB-miss-trap-handler
313  *
314  *
315  * As the above diagram indicates, interposing on the trap table allows one
316  * only to determine a timestamp on trap _entry_:  when the TLB miss handler
317  * has completed filling the TLB, a "retry" will be issued, and control will
318  * transfer immediately back to the missing %pc.
319  *
320  * To obtain a timestamp on trap exit, we must then somehow interpose between
321  * the "retry" and the subsequent control transfer to the TLB-missing
322  * instruction.  To do this, we _push_ a trap level.  The basic idea is to
323  * spoof a TLB miss by raising TL, setting the %tpc to be within text
324  * controlled by trapstat (the "TLB return entry") and branching to the
325  * underlying TLB miss handler.  When the TLB miss handler issues its "retry",
326  * control will transfer not to the TLB-missing instruction, but rather to the
327  * TLB return entry.  This code can then obtain a timestamp, and issue its own
328  * "retry" -- thereby correctly returning to the TLB-missing instruction.
329  * Here is the above TLB miss flow control diagram modified to reflect
330  * trapstat's operation:
331  *
332  * + - - - - - - - -+
333  * :                :
334  * : ldx [%g2], %g2 :<-------------------------------------------------------+
335  * :                :             Return from trap:                          |
336  * + - - - - - - - -+               TL <- TL - 1 (0)                         |
337  *	  |                         %pc <- TSTATE[TL].TPC (address of load)  |
338  *	  | TLB miss:                                                        |
339  *        |   TL <- TL + 1 (1)                                               |
340  *        |   %pc <- TLB-miss-trap-handler (trapstat)                        |
341  *        |                                                                  |
342  *        v                                    TLB-return-entry (trapstat)   |
343  * + - - - - - - - - - - - - - - - - - - +    + - - - - - - - - - - - - - +  |
344  * :                                     :    :                           :  |
345  * : Record timestamp                    :    : Record timestamp          :  |
346  * : TL <- 2                             :    : Take timestamp difference :  |
347  * : TSTATE[1].TPC <- TLB-return-entry   :    : Add to running total      :  |
348  * : ba,a TLB-miss-trap-handler -----------+  : Issue "retry"  --------------+
349  * :                                     : |  :                           :
350  * + - - - - - - - - - - - - - - - - - - + |  + - - - - - - - - - - - - - +
351  *  TLB-miss-trap-handler	           |                  ^
352  *  (trapstat)                             |                  |
353  *                                         |                  |
354  *                                         |                  |
355  *                 +-----------------------+                  |
356  *                 |                                          |
357  *                 |                                          |
358  *                 v                                          |
359  * + - - - - - - - - - - - - - - - +                          |
360  * :                               :                          |
361  * : Lookup VA in TSB              :                          |
362  * : If (hit)                      :                          |
363  * :     Fill TLB                  :                          |
364  * : Else                          :                          |
365  * :     Lookup VA (hme hash table :                          |
366  * :                or segkpm)     :                          |
367  * :     Fill TLB                  :                          |
368  * : Endif                         :                          |
369  * : Issue "retry"  ------------------------------------------+
370  * :                               : Return from trap:
371  * + - - - - - - - - - - - - - - - +   TL <- TL - 1 (1)
372  *  TLB-miss-trap-handler              %pc <- TSTATE[TL].TPC (TLB-return-entry)
373  *
374  *
375  * A final subterfuge is required to complete our artifice:  if we miss in
376  * the TLB, the TSB _and_ the subsequent hash or segkpm lookup (that is, if
377  * there is no valid translation for the TLB-missing address), common system
378  * software will need to accurately determine the %tpc as part of its page
379  * fault handling. We therefore modify the kernel to check the %tpc in this
380  * case: if the %tpc falls within the VA range controlled by trapstat and
381  * the TL is 2, TL is simply lowered back to 1 (this check is implemented
382  * by the TSTAT_CHECK_TL1 macro).  Lowering TL to 1 has the effect of
383  * discarding the state pushed by trapstat.
384  *
385  * TLB Statistics: TLB Misses versus TSB Misses
386  *
387  * Distinguishing TLB misses from TSB misses requires further interposition
388  * on the TLB miss handler:  we cannot know a priori or a posteriori if a
389  * given VA will or has hit in the TSB.
390  *
391  * We achieve this distinction by adding a second TLB return entry almost
392  * identical to the first -- differing only in the address to which it
393  * stores its results.  We then modify the TLB miss handlers of the kernel
394  * such that they check the %tpc when they determine that a TLB miss has
395  * subsequently missed in the TSB:  if the %tpc lies within trapstat's VA
396  * range and TL is 2 (that is, if trapstat is running), the TLB miss handler
397  * _increments_ the %tpc by the size of the TLB return entry.  The ensuing
398  * "retry" will thus transfer control to the second TLB return entry, and
399  * the time spent in the handler will be accumulated in a memory location
400  * specific to TSB misses.
401  *
402  * N.B.:  To minimize the amount of knowledge the kernel must have of trapstat,
403  * we do not allow the kernel to hard-code the size of the TLB return entry.
404  * Rather, the actual tsbmiss handler executes a known instruction at the
405  * corresponding tsbmiss patch points (see the tstat_tsbmiss_patch_table) with
406  * the %tpc in %g7:  when trapstat is not running, these points contain the
407  * harmless TSTAT_TSBMISS_INSTR instruction ("add %g7, 0, %g7"). Before
408  * running, trapstat modifies the instructions at these patch points such
409  * that the simm13 equals the size of the TLB return entry.
410  *
411  * TLB Statistics: Kernel-level Misses versus User-level Misses
412  *
413  * Differentiating user-level misses from kernel-level misses employs a
414  * similar technique, but is simplified by the ability to distinguish a
415  * user-level miss from a kernel-level miss a priori by reading the context
416  * register:  we implement kernel-/user-level differentiation by again doubling
417  * the number of TLB return entries, and setting the %tpc to the appropriate
418  * TLB return entry in trapstat's TLB miss handler.  Together with the doubling
419  * of entries required for TLB-miss/TSB-miss differentiation, this yields a
420  * total of four TLB return entries:
421  *
422  *	Level		TSB hit?	Structure member
423  *	------------------------------------------------------------
424  *	Kernel		Yes		tstat_tlbret_t.ttlbr_ktlb
425  *	Kernel		No		tstat_tlbret_t.ttlbr_ktsb
426  *	User		Yes		tstat_tlbret_t.ttlbr_utlb
427  *	User		No		tstat_tlbret_t.ttlbr_utsb
428  *
429  * TLB Statistics: Misses per Pagesize
430  *
431  * As with the TLB-/TSB-miss differentiation, we have no way of determining
432  * pagesize a priori.  This is therefore implemented by mandating a new rule:
433  * whenever the kernel fills the TLB in its TLB miss handler, the TTE
434  * corresponding to the TLB-missing VA must be in %g5 when the handler
435  * executes its "retry".  This allows the TLB return entry to determine
436  * pagesize by simply looking at the pagesize field in the TTE stored in
437  * %g5.
438  *
439  * TLB Statistics: Probe Effect
440  *
441  * As one might imagine, gathering TLB statistics by pushing a trap level
442  * induces significant probe effect.  To account for this probe effect,
443  * trapstat attempts to observe it by executing a code sequence with a known
444  * number of TLB misses both before and after interposing on the trap table.
445  * This allows trapstat to determine a per-trap probe effect which can then be
446  * factored into the "%tim" fields of the trapstat command.
447  *
448  * Note that on sun4v platforms, TLB misses are normally handled by the
449  * hypervisor or the hardware TSB walker. Thus no fast MMU miss information
450  * is reported for normal operation. However, when trapstat is invoked with
451  * -t or -T option to collect detailed TLB statistics, kernel takes
452  * over TLB miss handling. This results in significantly more overhead
453  * and TLB statistics may not be as accurate as on sun4u platforms.
454  *
455  * Locking
456  *
457  * The implementation uses two locks:  tstat_lock (a local lock) and the global
458  * cpu_lock.  tstat_lock is used to assure trapstat's consistency in the
459  * presence of multithreaded /dev/trapstat consumers (while as of this writing
460  * the only consumer of /dev/trapstat is single threaded, it is obviously
461  * necessary to correctly support multithreaded access).  cpu_lock is held
462  * whenever CPUs are being manipulated directly, to prevent them from
463  * disappearing in the process.  Because trapstat's DR callback
464  * (trapstat_cpu_setup()) must grab tstat_lock and is called with cpu_lock
465  * held, the lock ordering is necessarily cpu_lock before tstat_lock.
466  *
467  */
468 /* END CSTYLED */
469 
470 static dev_info_t	*tstat_devi;	/* saved in xxattach() for xxinfo() */
471 static int		tstat_open;	/* set if driver is open */
472 static kmutex_t		tstat_lock;	/* serialize access */
473 static vmem_t		*tstat_arena;	/* arena for TLB-locked pages */
474 static tstat_percpu_t	*tstat_percpu;	/* per-CPU data */
475 static int		tstat_running;	/* set if trapstat is running */
476 static tstat_data_t	*tstat_buffer;	/* staging buffer for outgoing data */
477 static int		tstat_options;	/* bit-wise indication of options */
478 static int		*tstat_enabled;	/* map of enabled trap entries */
479 static int		tstat_tsbmiss_patched; /* tsbmiss patch flag */
480 static callb_id_t	tstat_cprcb;	/* CPR callback */
481 static char		*tstat_probe_area; /* VA range used for probe effect */
482 static caddr_t		tstat_probe_phys; /* physical to back above VA */
483 static hrtime_t		tstat_probe_time; /* time spent on probe effect */
484 static hrtime_t		tstat_probe_before[TSTAT_PROBE_NLAPS];
485 static hrtime_t		tstat_probe_after[TSTAT_PROBE_NLAPS];
486 static uint_t		tstat_pgszs;		/* # of kernel page sizes */
487 static uint_t		tstat_user_pgszs;	/* # of user page sizes */
488 
489 /*
490  * sizeof tstat_data_t + pgsz data for the kernel.  For simplicity's sake, when
491  * we collect data, we do it based upon szc, but when we report data back to
492  * userland, we have to do it based upon the userszc which may not match.
493  * So, these two variables are for internal use and exported use respectively.
494  */
495 static size_t		tstat_data_t_size;
496 static size_t		tstat_data_t_exported_size;
497 
498 static size_t		tstat_data_pages;  /* number of pages of tstat data */
499 static size_t		tstat_data_size;   /* tstat data size in bytes */
500 static size_t		tstat_total_pages; /* #data pages + #instr pages */
501 static size_t		tstat_total_size;  /* tstat data size + instr size */
502 #ifdef sun4v
503 static caddr_t		tstat_va;	/* VA of memory reserved for TBA */
504 static pfn_t		tstat_pfn;	/* PFN of memory reserved for TBA */
505 #endif
506 
507 /*
508  * In the above block comment, see "TLB Statistics: TLB Misses versus
509  * TSB Misses" for an explanation of the tsbmiss patch points.
510  */
511 extern uint32_t		tsbmiss_trapstat_patch_point;
512 extern uint32_t		tsbmiss_trapstat_patch_point_kpm;
513 extern uint32_t		tsbmiss_trapstat_patch_point_kpm_small;
514 
515 /*
516  * Trapstat tsbmiss patch table
517  */
518 tstat_tsbmiss_patch_entry_t tstat_tsbmiss_patch_table[] = {
519 	{(uint32_t *)&tsbmiss_trapstat_patch_point, 0},
520 	{(uint32_t *)&tsbmiss_trapstat_patch_point_kpm, 0},
521 	{(uint32_t *)&tsbmiss_trapstat_patch_point_kpm_small, 0},
522 	{(uint32_t *)NULL, 0}
523 };
524 
525 /*
526  * We define some general SPARC-specific constants to allow more readable
527  * relocations.
528  */
529 #define	NOP	0x01000000
530 #define	HI22(v) ((uint32_t)(v) >> 10)
531 #define	LO10(v) ((uint32_t)(v) & 0x3ff)
532 #define	LO12(v) ((uint32_t)(v) & 0xfff)
533 #define	DISP22(from, to) \
534 	((((uintptr_t)(to) - (uintptr_t)(from)) >> 2) & 0x3fffff)
535 #define	ASI(asi)	((asi) << 5)
536 
537 /*
538  * The interposing trap table must be locked in the I-TLB, and any data
539  * referred to in the interposing trap handler must be locked in the D-TLB.
540  * This function locks these pages in the appropriate TLBs by creating TTEs
541  * from whole cloth, and manually loading them into the TLB.  This function is
542  * called from cross call context.
543  *
544  * On sun4v platforms, we use 4M page size mappings to minimize the number
545  * of locked down entries (i.e. permanent mappings). Each CPU uses a
546  * reserved portion of that 4M page for its TBA and data.
547  */
548 static void
549 trapstat_load_tlb(void)
550 {
551 #ifndef sun4v
552 	int i;
553 #else
554 	uint64_t ret;
555 #endif
556 	tte_t tte;
557 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
558 	caddr_t va = tcpu->tcpu_vabase;
559 
560 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
561 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
562 
563 #ifndef sun4v
564 	for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) {
565 		tte.tte_inthi = TTE_VALID_INT | TTE_SZ_INT(TTE8K) |
566 			TTE_PFN_INTHI(tcpu->tcpu_pfn[i]);
567 		if (i < TSTAT_INSTR_PAGES) {
568 			tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) |
569 				TTE_LCK_INT | TTE_CP_INT | TTE_PRIV_INT;
570 			sfmmu_itlb_ld(va, KCONTEXT, &tte);
571 		} else {
572 			tte.tte_intlo = TTE_PFN_INTLO(tcpu->tcpu_pfn[i]) |
573 				TTE_LCK_INT | TTE_CP_INT | TTE_CV_INT |
574 				TTE_PRIV_INT | TTE_HWWR_INT;
575 			sfmmu_dtlb_ld(va, KCONTEXT, &tte);
576 		}
577 	}
578 #else /* sun4v */
579 	tte.tte_inthi = TTE_VALID_INT | TTE_PFN_INTHI(tstat_pfn);
580 	tte.tte_intlo = TTE_PFN_INTLO(tstat_pfn) | TTE_CP_INT |
581 		TTE_CV_INT | TTE_PRIV_INT | TTE_HWWR_INT |
582 		TTE_SZ_INTLO(TTE4M);
583 	ret = hv_mmu_map_perm_addr(va, KCONTEXT, *(uint64_t *)&tte,
584 		MAP_ITLB | MAP_DTLB);
585 
586 	if (ret != H_EOK)
587 		cmn_err(CE_PANIC, "trapstat: cannot map new TBA "
588 		    "for cpu %d  (error: 0x%lx)", CPU->cpu_id, ret);
589 #endif /* sun4v */
590 }
591 
592 /*
593  * As mentioned in the "TLB Statistics: TLB Misses versus TSB Misses" section
594  * of the block comment, TLB misses are differentiated from TSB misses in
595  * part by hot-patching the instructions at the tsbmiss patch points (see
596  * tstat_tsbmiss_patch_table). This routine is used both to initially patch
597  * the instructions, and to patch them back to their original values upon
598  * restoring the original trap table.
599  */
600 static void
601 trapstat_hotpatch()
602 {
603 	uint32_t instr;
604 	uint32_t simm13;
605 	tstat_tsbmiss_patch_entry_t *ep;
606 
607 	ASSERT(MUTEX_HELD(&tstat_lock));
608 
609 	if (!(tstat_options & TSTAT_OPT_TLBDATA))
610 		return;
611 
612 	if (!tstat_tsbmiss_patched) {
613 		/*
614 		 * We haven't patched the TSB paths; do so now.
615 		 */
616 		/*CONSTCOND*/
617 		ASSERT(offsetof(tstat_tlbret_t, ttlbr_ktsb) -
618 		    offsetof(tstat_tlbret_t, ttlbr_ktlb) ==
619 		    offsetof(tstat_tlbret_t, ttlbr_utsb) -
620 		    offsetof(tstat_tlbret_t, ttlbr_utlb));
621 
622 		simm13 = offsetof(tstat_tlbret_t, ttlbr_ktsb) -
623 		    offsetof(tstat_tlbret_t, ttlbr_ktlb);
624 
625 		for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) {
626 			ASSERT(ep->tpe_instr == 0);
627 			instr = ep->tpe_instr = *ep->tpe_addr;
628 
629 			/*
630 			 * Assert that the instruction we're about to patch is
631 			 * "add %g7, 0, %g7" (0x8e01e000).
632 			 */
633 			ASSERT(instr == TSTAT_TSBMISS_INSTR);
634 
635 			instr |= simm13;
636 			hot_patch_kernel_text((caddr_t)ep->tpe_addr,
637 			    instr, sizeof (instr));
638 		}
639 
640 		tstat_tsbmiss_patched = 1;
641 
642 	} else {
643 		/*
644 		 * Remove patches from the TSB paths.
645 		 */
646 		for (ep = tstat_tsbmiss_patch_table; ep->tpe_addr; ep++) {
647 			ASSERT(ep->tpe_instr == TSTAT_TSBMISS_INSTR);
648 			hot_patch_kernel_text((caddr_t)ep->tpe_addr,
649 			    ep->tpe_instr, sizeof (instr));
650 			ep->tpe_instr = 0;
651 		}
652 
653 		tstat_tsbmiss_patched = 0;
654 	}
655 }
656 
657 /*
658  * This is the routine executed to clock the performance of the trap table,
659  * executed both before and after interposing on the trap table to attempt to
660  * determine probe effect.  The probe effect is used to adjust the "%tim"
661  * fields of trapstat's -t and -T output; we only use TLB misses to clock the
662  * trap table.  We execute the inner loop (which is designed to exceed the
663  * TLB's reach) nlaps times, taking the best time as our time (thereby
664  * factoring out the effects of interrupts, cache misses or other perturbing
665  * events.
666  */
667 static hrtime_t
668 trapstat_probe_laps(int nlaps, hrtime_t *buf)
669 {
670 	int i, j = 0;
671 	hrtime_t ts, best = INT64_MAX;
672 
673 	while (nlaps--) {
674 		ts = rdtick();
675 
676 		for (i = 0; i < TSTAT_PROBE_SIZE; i += MMU_PAGESIZE)
677 			*((volatile char *)&tstat_probe_area[i]);
678 
679 		if ((ts = rdtick() - ts) < best)
680 			best = ts;
681 		buf[j++] = ts;
682 	}
683 
684 	return (best);
685 }
686 
687 /*
688  * This routine determines the probe effect by calling trapstat_probe_laps()
689  * both without and with the interposing trap table.  Note that this is
690  * called from a cross call on the desired CPU, and that it is called on
691  * every CPU (this is necessary because the probe effect may differ from
692  * one CPU to another).
693  */
694 static void
695 trapstat_probe()
696 {
697 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
698 	hrtime_t before, after;
699 
700 	if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED))
701 		return;
702 
703 	if (tstat_probe_area == NULL || (tstat_options & TSTAT_OPT_NOGO))
704 		return;
705 
706 	/*
707 	 * We very much expect the %tba to be KERNELBASE; this is a
708 	 * precautionary measure to assure that trapstat doesn't melt the
709 	 * machine should the %tba point unexpectedly elsewhere.
710 	 */
711 	if (get_tba() != (caddr_t)KERNELBASE)
712 		return;
713 
714 	/*
715 	 * Preserve this CPU's data before destroying it by enabling the
716 	 * interposing trap table.  We can safely use tstat_buffer because
717 	 * the caller of the trapstat_probe() cross call is holding tstat_lock.
718 	 */
719 	bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size);
720 
721 	tstat_probe_time = gethrtime();
722 
723 	before = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_before);
724 	(void) set_tba(tcpu->tcpu_ibase);
725 
726 	after = trapstat_probe_laps(TSTAT_PROBE_NLAPS, tstat_probe_after);
727 	(void) set_tba((caddr_t)KERNELBASE);
728 
729 	tstat_probe_time = gethrtime() - tstat_probe_time;
730 
731 	bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size);
732 	tcpu->tcpu_data->tdata_peffect = (after - before) / TSTAT_PROBE_NPAGES;
733 }
734 
735 static void
736 trapstat_probe_alloc()
737 {
738 	pfn_t pfn;
739 	caddr_t va;
740 	int i;
741 
742 	ASSERT(MUTEX_HELD(&tstat_lock));
743 	ASSERT(tstat_probe_area == NULL);
744 	ASSERT(tstat_probe_phys == NULL);
745 
746 	if (!(tstat_options & TSTAT_OPT_TLBDATA))
747 		return;
748 
749 	/*
750 	 * Grab some virtual from the heap arena.
751 	 */
752 	tstat_probe_area = vmem_alloc(heap_arena, TSTAT_PROBE_SIZE, VM_SLEEP);
753 	va = tstat_probe_area;
754 
755 	/*
756 	 * Grab a single physical page.
757 	 */
758 	tstat_probe_phys = vmem_alloc(tstat_arena, MMU_PAGESIZE, VM_SLEEP);
759 	pfn = hat_getpfnum(kas.a_hat, tstat_probe_phys);
760 
761 	/*
762 	 * Now set the translation for every page in our virtual range
763 	 * to be our allocated physical page.
764 	 */
765 	for (i = 0; i < TSTAT_PROBE_NPAGES; i++) {
766 		hat_devload(kas.a_hat, va, MMU_PAGESIZE, pfn, PROT_READ,
767 		    HAT_LOAD_NOCONSIST | HAT_LOAD_LOCK);
768 		va += MMU_PAGESIZE;
769 	}
770 }
771 
772 static void
773 trapstat_probe_free()
774 {
775 	caddr_t va;
776 	int i;
777 
778 	ASSERT(MUTEX_HELD(&tstat_lock));
779 
780 	if ((va = tstat_probe_area) == NULL)
781 		return;
782 
783 	for (i = 0; i < TSTAT_PROBE_NPAGES; i++) {
784 		hat_unload(kas.a_hat, va, MMU_PAGESIZE, HAT_UNLOAD_UNLOCK);
785 		va += MMU_PAGESIZE;
786 	}
787 
788 	vmem_free(tstat_arena, tstat_probe_phys, MMU_PAGESIZE);
789 	vmem_free(heap_arena, tstat_probe_area, TSTAT_PROBE_SIZE);
790 
791 	tstat_probe_phys = NULL;
792 	tstat_probe_area = NULL;
793 }
794 
795 /*
796  * This routine actually enables a CPU by setting its %tba to be the
797  * CPU's interposing trap table.  It is called out of cross call context.
798  */
799 static void
800 trapstat_enable()
801 {
802 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
803 
804 	if (!(tcpu->tcpu_flags & TSTAT_CPU_SELECTED))
805 		return;
806 
807 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
808 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
809 
810 	if (get_tba() != (caddr_t)KERNELBASE)
811 		return;
812 
813 	if (!(tstat_options & TSTAT_OPT_NOGO))
814 		(void) set_tba(tcpu->tcpu_ibase);
815 	tcpu->tcpu_flags |= TSTAT_CPU_ENABLED;
816 #ifdef sun4v
817 	if (tstat_options & (TSTAT_OPT_TLBDATA | TSTAT_OPT_NOGO)) {
818 		/*
819 		 * On sun4v platforms, TLB misses are normally handled by the
820 		 * hypervisor or the hardware -- provided one or more TSBs
821 		 * have been setup and communicated via hv_set_ctx0 and
822 		 * hv_set_nonctx0 API.  However, as part of collecting TLB
823 		 * statistics, we disabled this miss processing by telling the
824 		 * hypervisor that there was not a TSB; we now need to
825 		 * communicate the proper kernel/user TSB information to
826 		 * resume efficient operation.
827 		 *
828 		 * While we restore kernel TSB information immediately, to
829 		 * avoid any locking dependency, we don't restore user TSB
830 		 * information right away.  Rather, we simply clear the
831 		 * TSTAT_TLB_STATS flag so that the user TSB information is
832 		 * automatically restored on the next context switch.
833 		 *
834 		 * Note that the call to restore kernel TSB information is not
835 		 * expected to fail.  Even in the event of failure, the system
836 		 * will still continue to function properly, if in a state of
837 		 * reduced performance due to the guest kernel handling all
838 		 * TLB misses.
839 		 */
840 		cpu_t *cp = CPU;
841 
842 		cp->cpu_m.cpu_tstat_flags |= TSTAT_TLB_STATS;
843 		(void) hv_set_ctx0(NULL, NULL);
844 		(void) hv_set_ctxnon0(NULL, NULL);
845 	}
846 #endif
847 }
848 
849 /*
850  * This routine disables a CPU (vis a vis trapstat) by setting its %tba to be
851  * the actual, underlying trap table.  It is called out of cross call context.
852  */
853 static void
854 trapstat_disable()
855 {
856 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
857 
858 	if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
859 		return;
860 
861 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
862 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
863 
864 	if (!(tstat_options & TSTAT_OPT_NOGO))
865 		(void) set_tba((caddr_t)KERNELBASE);
866 
867 	tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED;
868 
869 #ifdef sun4v
870 	if (tstat_options & (TSTAT_OPT_TLBDATA | TSTAT_OPT_NOGO)) {
871 		/*
872 		 * On sun4v platforms, TlB misses are normally handled by
873 		 * the hypervisor or the hardware provided one or more TSBs
874 		 * have been setup and communicated via hv_set_ctx0 and
875 		 * hv_set_nonctx0 API. However, as part of collecting TLB
876 		 * statistics, we disabled that by faking NO TSB and we
877 		 * need to communicate proper kernel/user TSB information
878 		 * so that TLB misses can be handled by the hypervisor or
879 		 * the hardware more efficiently.
880 		 *
881 		 * We restore kernel TSB information right away. However,
882 		 * to minimize any locking dependency, we don't restore
883 		 * user TSB information right away. Instead, we simply
884 		 * clear the TSTAT_TLB_STATS flag so that the user TSB
885 		 * information is automatically restored on next context
886 		 * switch.
887 		 *
888 		 * Note that the call to restore kernel TSB information
889 		 * will normally not fail, unless wrong information is
890 		 * passed here. In that scenario, system will still
891 		 * continue to function properly with the exception of
892 		 * kernel handling all the TLB misses.
893 		 */
894 		struct hv_tsb_block *hvbp = &ksfmmup->sfmmu_hvblock;
895 		cpu_t *cp = CPU;
896 
897 		cp->cpu_m.cpu_tstat_flags &= ~TSTAT_TLB_STATS;
898 		(void) hv_set_ctx0(hvbp->hv_tsb_info_cnt, hvbp->hv_tsb_info_pa);
899 	}
900 #endif
901 }
902 
903 /*
904  * We use %tick as the time base when recording the time spent executing
905  * the trap handler.  %tick, however, is not necessarily kept in sync
906  * across CPUs (indeed, different CPUs may have different %tick frequencies).
907  * We therefore cross call onto a CPU to get a snapshot of its data to
908  * copy out; this is the routine executed out of that cross call.
909  */
910 static void
911 trapstat_snapshot()
912 {
913 	tstat_percpu_t *tcpu = &tstat_percpu[CPU->cpu_id];
914 	tstat_data_t *data = tcpu->tcpu_data;
915 
916 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
917 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
918 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ENABLED);
919 
920 	data->tdata_snapts = gethrtime();
921 	data->tdata_snaptick = rdtick();
922 	bcopy(data, tstat_buffer, tstat_data_t_size);
923 }
924 
925 /*
926  * The TSTAT_RETENT_* constants define offsets in the TLB return entry.
927  * They are used only in trapstat_tlbretent() (below) and #undef'd
928  * immediately afterwards.  Any change to "retent" in trapstat_tlbretent()
929  * will likely require changes to these constants.
930  */
931 
932 #ifndef	sun4v
933 #define	TSTAT_RETENT_STATHI	1
934 #define	TSTAT_RETENT_STATLO	2
935 #define	TSTAT_RETENT_SHIFT	8
936 #define	TSTAT_RETENT_COUNT_LD	10
937 #define	TSTAT_RETENT_COUNT_ST	12
938 #define	TSTAT_RETENT_TMPTSHI	13
939 #define	TSTAT_RETENT_TMPTSLO	14
940 #define	TSTAT_RETENT_TIME_LD	16
941 #define	TSTAT_RETENT_TIME_ST	18
942 #else /* sun4v */
943 #define	TSTAT_RETENT_STATHI	1
944 #define	TSTAT_RETENT_STATLO	2
945 #define	TSTAT_RETENT_SHIFT	5
946 #define	TSTAT_RETENT_COUNT_LD	7
947 #define	TSTAT_RETENT_COUNT_ST	9
948 #define	TSTAT_RETENT_TMPTSHI	10
949 #define	TSTAT_RETENT_TMPTSLO	11
950 #define	TSTAT_RETENT_TIME_LD	13
951 #define	TSTAT_RETENT_TIME_ST	15
952 #endif /* sun4v */
953 
954 static void
955 trapstat_tlbretent(tstat_percpu_t *tcpu, tstat_tlbretent_t *ret,
956     tstat_missdata_t *data)
957 {
958 	uint32_t *ent = ret->ttlbrent_instr, shift;
959 	uintptr_t base, tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick);
960 
961 	/*
962 	 * This is the entry executed upon return from the TLB/TSB miss
963 	 * handler (i.e. the code interpositioned between the "retry" and
964 	 * the actual return to the TLB-missing instruction).  Detail on its
965 	 * theory of operation can be found in the "TLB Statistics" section
966 	 * of the block comment.  Note that we expect the TTE just loaded
967 	 * into the TLB to be in %g5; all other globals are available as
968 	 * scratch.  Finally, note that the page size information in sun4v is
969 	 * located in the lower bits of the TTE -- requiring us to have a
970 	 * different return entry on sun4v.
971 	 */
972 	static const uint32_t retent[TSTAT_TLBRET_NINSTR] = {
973 #ifndef sun4v
974 	    0x87410000,		/* rd    %tick, %g3			*/
975 	    0x03000000, 	/* sethi %hi(stat), %g1			*/
976 	    0x82106000,		/* or    %g1, %lo(stat), %g1		*/
977 	    0x89297001,		/* sllx  %g5, 1, %g4			*/
978 	    0x8931303e,		/* srlx  %g4, 62, %g4			*/
979 	    0x8531702e,		/* srlx  %g5, 46, %g2			*/
980 	    0x8408a004,		/* and   %g2, 4, %g2			*/
981 	    0x88110002,		/* or    %g4, %g2, %g4			*/
982 	    0x89292000,		/* sll   %g4, shift, %g4		*/
983 	    0x82004004,		/* add   %g1, %g4, %g1			*/
984 	    0xc4586000,		/* ldx   [%g1 + tmiss_count], %g2	*/
985 	    0x8400a001,		/* add   %g2, 1, %g2			*/
986 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_count]	*/
987 	    0x0d000000, 	/* sethi %hi(tdata_tmptick), %g6	*/
988 	    0xc459a000, 	/* ldx   [%g6 + %lo(tdata_tmptick)], %g2 */
989 	    0x8620c002,		/* sub   %g3, %g2, %g3			*/
990 	    0xc4586000,		/* ldx   [%g1 + tmiss_time], %g2	*/
991 	    0x84008003,		/* add   %g2, %g3, %g2			*/
992 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_time]	*/
993 	    0x83f00000		/* retry				*/
994 #else /* sun4v */
995 	    0x87410000,		/* rd    %tick, %g3			*/
996 	    0x03000000, 	/* sethi %hi(stat), %g1			*/
997 	    0x82106000,		/* or    %g1, %lo(stat), %g1		*/
998 	    0x8929703d,		/* sllx  %g5, 61, %g4			*/
999 	    0x8931303d,		/* srlx  %g4, 61, %g4			*/
1000 	    0x89292000,		/* sll   %g4, shift, %g4		*/
1001 	    0x82004004,		/* add   %g1, %g4, %g1			*/
1002 	    0xc4586000,		/* ldx   [%g1 + tmiss_count], %g2	*/
1003 	    0x8400a001,		/* add   %g2, 1, %g2			*/
1004 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_count]	*/
1005 	    0x0d000000, 	/* sethi %hi(tdata_tmptick), %g6	*/
1006 	    0xc459a000, 	/* ldx   [%g6 + %lo(tdata_tmptick)], %g2 */
1007 	    0x8620c002,		/* sub   %g3, %g2, %g3			*/
1008 	    0xc4586000,		/* ldx   [%g1 + tmiss_time], %g2	*/
1009 	    0x84008003,		/* add   %g2, %g3, %g2			*/
1010 	    0xc4706000,		/* stx   %g2, [%g1 + tmiss_time]	*/
1011 	    0x83f00000		/* retry				*/
1012 #endif /* sun4v */
1013 	};
1014 
1015 	ASSERT(MUTEX_HELD(&tstat_lock));
1016 	/*CONSTCOND*/
1017 	ASSERT(offsetof(tstat_missdata_t, tmiss_count) <= LO10(-1));
1018 	/*CONSTCOND*/
1019 	ASSERT(offsetof(tstat_missdata_t, tmiss_time) <= LO10(-1));
1020 	/*CONSTCOND*/
1021 	ASSERT(!((sizeof (tstat_pgszdata_t) - 1) & sizeof (tstat_pgszdata_t)));
1022 
1023 	for (shift = 1; (1 << shift) != sizeof (tstat_pgszdata_t); shift++)
1024 		continue;
1025 
1026 	base = (uintptr_t)tcpu->tcpu_dbase +
1027 	    ((uintptr_t)data - (uintptr_t)tcpu->tcpu_data);
1028 
1029 	bcopy(retent, ent, sizeof (retent));
1030 
1031 	ent[TSTAT_RETENT_STATHI] |= HI22(base);
1032 	ent[TSTAT_RETENT_STATLO] |= LO10(base);
1033 	ent[TSTAT_RETENT_SHIFT] |= shift;
1034 	/* LINTED E_EXPR_NULL_EFFECT */
1035 	ent[TSTAT_RETENT_COUNT_LD] |= offsetof(tstat_missdata_t, tmiss_count);
1036 	/* LINTED E_EXPR_NULL_EFFECT */
1037 	ent[TSTAT_RETENT_COUNT_ST] |= offsetof(tstat_missdata_t, tmiss_count);
1038 	ent[TSTAT_RETENT_TMPTSHI] |= HI22(tmptick);
1039 	ent[TSTAT_RETENT_TMPTSLO] |= LO10(tmptick);
1040 	ent[TSTAT_RETENT_TIME_LD] |= offsetof(tstat_missdata_t, tmiss_time);
1041 	ent[TSTAT_RETENT_TIME_ST] |= offsetof(tstat_missdata_t, tmiss_time);
1042 }
1043 
1044 #undef TSTAT_RETENT_STATHI
1045 #undef TSTAT_RETENT_STATLO
1046 #undef TSTAT_RETENT_SHIFT
1047 #undef TSTAT_RETENT_COUNT_LD
1048 #undef TSTAT_RETENT_COUNT_ST
1049 #undef TSTAT_RETENT_TMPTSHI
1050 #undef TSTAT_RETENT_TMPTSLO
1051 #undef TSTAT_RETENT_TIME_LD
1052 #undef TSTAT_RETENT_TIME_ST
1053 
1054 /*
1055  * The TSTAT_TLBENT_* constants define offsets in the TLB entry.  They are
1056  * used only in trapstat_tlbent() (below) and #undef'd immediately afterwards.
1057  * Any change to "tlbent" in trapstat_tlbent() will likely require changes
1058  * to these constants.
1059  */
1060 
1061 #ifndef sun4v
1062 #define	TSTAT_TLBENT_STATHI	0
1063 #define	TSTAT_TLBENT_STATLO_LD	1
1064 #define	TSTAT_TLBENT_STATLO_ST	3
1065 #define	TSTAT_TLBENT_MMUASI	15
1066 #define	TSTAT_TLBENT_TPCHI	18
1067 #define	TSTAT_TLBENT_TPCLO_USER	19
1068 #define	TSTAT_TLBENT_TPCLO_KERN	21
1069 #define	TSTAT_TLBENT_TSHI	25
1070 #define	TSTAT_TLBENT_TSLO	27
1071 #define	TSTAT_TLBENT_BA		28
1072 #else /* sun4v */
1073 #define	TSTAT_TLBENT_STATHI	0
1074 #define	TSTAT_TLBENT_STATLO_LD	1
1075 #define	TSTAT_TLBENT_STATLO_ST	3
1076 #define	TSTAT_TLBENT_TAGTARGET	19
1077 #define	TSTAT_TLBENT_TPCHI	21
1078 #define	TSTAT_TLBENT_TPCLO_USER	22
1079 #define	TSTAT_TLBENT_TPCLO_KERN	24
1080 #define	TSTAT_TLBENT_TSHI	28
1081 #define	TSTAT_TLBENT_TSLO	30
1082 #define	TSTAT_TLBENT_BA		31
1083 #endif /* sun4v */
1084 
1085 static void
1086 trapstat_tlbent(tstat_percpu_t *tcpu, int entno)
1087 {
1088 	uint32_t *ent;
1089 	uintptr_t orig, va, baoffs;
1090 	int itlb = entno == TSTAT_ENT_ITLBMISS;
1091 	int entoffs = entno << TSTAT_ENT_SHIFT;
1092 	uintptr_t tmptick, stat, tpc, utpc;
1093 	tstat_pgszdata_t *data = &tcpu->tcpu_data->tdata_pgsz[0];
1094 	tstat_tlbdata_t *udata, *kdata;
1095 	tstat_tlbret_t *ret;
1096 #ifndef sun4v
1097 	uint32_t asi = itlb ? ASI(ASI_IMMU) : ASI(ASI_DMMU);
1098 #else
1099 	uint32_t tagtarget_off = itlb ? MMFSA_I_CTX : MMFSA_D_CTX;
1100 #endif
1101 
1102 	/*
1103 	 * When trapstat is run with TLB statistics, this is the entry for
1104 	 * both I- and D-TLB misses; this code performs trap level pushing,
1105 	 * as described in the "TLB Statistics" section of the block comment.
1106 	 * This code is executing at TL 1; %tstate[0] contains the saved
1107 	 * state at the time of the TLB miss.  Pushing trap level 1 (and thus
1108 	 * raising TL to 2) requires us to fill in %tstate[1] with our %pstate,
1109 	 * %cwp and %asi.  We leave %tt unchanged, and we set %tpc and %tnpc to
1110 	 * the appropriate TLB return entry (based on the context of the miss).
1111 	 * Finally, we sample %tick, and stash it in the tdata_tmptick member
1112 	 * the per-CPU tstat_data structure.  tdata_tmptick will be used in
1113 	 * the TLB return entry to determine the amount of time spent in the
1114 	 * TLB miss handler.
1115 	 *
1116 	 * Note that on sun4v platforms, we must also force the %gl value to 1
1117 	 * in %tstate and we must obtain the context information from the MMU
1118 	 * fault status area. (The base address of this MMU fault status area
1119 	 * is kept in the scratchpad register 0.)
1120 	 */
1121 	static const uint32_t tlbent[] = {
1122 #ifndef sun4v
1123 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
1124 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
1125 	    0x8400a001,			/* add   %g2, 1, %g2		*/
1126 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
1127 	    0x85524000,			/* rdpr  %cwp, %g2		*/
1128 	    0x87518000,			/* rdpr  %pstate, %g3		*/
1129 	    0x8728f008,			/* sllx  %g3, 8, %g3		*/
1130 	    0x84108003,			/* or    %g2, %g3, %g2		*/
1131 	    0x8740c000,			/* rd    %asi, %g3		*/
1132 	    0x8728f018,			/* sllx  %g3, 24, %g3		*/
1133 	    0x84108003,			/* or    %g2, %g3, %g2		*/
1134 	    0x8350c000,			/* rdpr  %tt, %g1		*/
1135 	    0x8f902002,			/* wrpr  %g0, 2, %tl		*/
1136 	    0x85908000,			/* wrpr  %g2, %g0, %tstate	*/
1137 	    0x87904000,			/* wrpr  %g1, %g0, %tt		*/
1138 	    0xc2d80000,			/* ldxa  [%g0]ASI_MMU, %g1	*/
1139 	    0x83307030,			/* srlx  %g1, CTXSHIFT, %g1	*/
1140 	    0x02c04004,			/* brz,pn %g1, .+0x10		*/
1141 	    0x03000000, 		/* sethi %hi(new_tpc), %g1	*/
1142 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
1143 	    0x30800002,			/* ba,a  .+0x8			*/
1144 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
1145 	    0x81904000,			/* wrpr  %g1, %g0, %tpc		*/
1146 	    0x82006004,			/* add   %g1, 4, %g1		*/
1147 	    0x83904000,			/* wrpr  %g1, %g0, %tnpc	*/
1148 	    0x03000000, 		/* sethi %hi(tmptick), %g1	*/
1149 	    0x85410000,			/* rd    %tick, %g2		*/
1150 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(tmptick)] */
1151 	    0x30800000,			/* ba,a  addr			*/
1152 	    NOP, NOP, NOP
1153 #else /* sun4v */
1154 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
1155 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
1156 	    0x8400a001,			/* add   %g2, 1, %g2		*/
1157 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
1158 	    0x85524000,			/* rdpr  %cwp, %g2		*/
1159 	    0x87518000,			/* rdpr  %pstate, %g3		*/
1160 	    0x8728f008,			/* sllx  %g3, 8, %g3		*/
1161 	    0x84108003,			/* or    %g2, %g3, %g2		*/
1162 	    0x8740c000,			/* rd    %asi, %g3		*/
1163 	    0x03000040,			/* sethi %hi(0x10000), %g1	*/
1164 	    0x86104003,			/* or    %g1, %g3, %g3		*/
1165 	    0x8728f018,			/* sllx  %g3, 24, %g3		*/
1166 	    0x84108003,			/* or    %g2, %g3, %g2		*/
1167 	    0x8350c000,			/* rdpr  %tt, %g1		*/
1168 	    0x8f902002,			/* wrpr  %g0, 2, %tl		*/
1169 	    0x85908000,			/* wrpr  %g2, %g0, %tstate	*/
1170 	    0x87904000,			/* wrpr  %g1, %g0, %tt		*/
1171 	    0xa1902001,			/* wrpr  %g0, 1, %gl		*/
1172 	    0xc2d80400,			/* ldxa  [%g0]ASI_SCRATCHPAD, %g1 */
1173 	    0xc2586000,			/* ldx  [%g1 + MMFSA_?_CTX], %g1 */
1174 	    0x02c04004,			/* brz,pn %g1, .+0x10		*/
1175 	    0x03000000, 		/* sethi %hi(new_tpc), %g1	*/
1176 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
1177 	    0x30800002,			/* ba,a  .+0x8			*/
1178 	    0x82106000,			/* or    %g1, %lo(new_tpc), %g1	*/
1179 	    0x81904000,			/* wrpr  %g1, %g0, %tpc		*/
1180 	    0x82006004,			/* add   %g1, 4, %g1		*/
1181 	    0x83904000,			/* wrpr  %g1, %g0, %tnpc	*/
1182 	    0x03000000, 		/* sethi %hi(tmptick), %g1	*/
1183 	    0x85410000,			/* rd    %tick, %g2		*/
1184 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(tmptick)] */
1185 	    0x30800000			/* ba,a  addr			*/
1186 #endif /* sun4v */
1187 	};
1188 
1189 	ASSERT(MUTEX_HELD(&tstat_lock));
1190 	ASSERT(entno == TSTAT_ENT_ITLBMISS || entno == TSTAT_ENT_DTLBMISS);
1191 
1192 	stat = TSTAT_DATA_OFFS(tcpu, tdata_traps) + entoffs;
1193 	tmptick = TSTAT_DATA_OFFS(tcpu, tdata_tmptick);
1194 
1195 	if (itlb) {
1196 		ret = &tcpu->tcpu_instr->tinst_itlbret;
1197 		udata = &data->tpgsz_user.tmode_itlb;
1198 		kdata = &data->tpgsz_kernel.tmode_itlb;
1199 		tpc = TSTAT_INSTR_OFFS(tcpu, tinst_itlbret.ttlbr_ktlb);
1200 	} else {
1201 		ret = &tcpu->tcpu_instr->tinst_dtlbret;
1202 		udata = &data->tpgsz_user.tmode_dtlb;
1203 		kdata = &data->tpgsz_kernel.tmode_dtlb;
1204 		tpc = TSTAT_INSTR_OFFS(tcpu, tinst_dtlbret.ttlbr_ktlb);
1205 	}
1206 
1207 	utpc = tpc + offsetof(tstat_tlbret_t, ttlbr_utlb) -
1208 	    offsetof(tstat_tlbret_t, ttlbr_ktlb);
1209 
1210 	ASSERT(HI22(tpc) == HI22(utpc));
1211 
1212 	ent = (uint32_t *)((uintptr_t)tcpu->tcpu_instr + entoffs);
1213 	orig = KERNELBASE + entoffs;
1214 	va = (uintptr_t)tcpu->tcpu_ibase + entoffs;
1215 	baoffs = TSTAT_TLBENT_BA * sizeof (uint32_t);
1216 
1217 	bcopy(tlbent, ent, sizeof (tlbent));
1218 
1219 	ent[TSTAT_TLBENT_STATHI] |= HI22(stat);
1220 	ent[TSTAT_TLBENT_STATLO_LD] |= LO10(stat);
1221 	ent[TSTAT_TLBENT_STATLO_ST] |= LO10(stat);
1222 #ifndef sun4v
1223 	ent[TSTAT_TLBENT_MMUASI] |= asi;
1224 #else
1225 	ent[TSTAT_TLBENT_TAGTARGET] |= tagtarget_off;
1226 #endif
1227 	ent[TSTAT_TLBENT_TPCHI] |= HI22(tpc);
1228 	ent[TSTAT_TLBENT_TPCLO_USER] |= LO10(utpc);
1229 	ent[TSTAT_TLBENT_TPCLO_KERN] |= LO10(tpc);
1230 	ent[TSTAT_TLBENT_TSHI] |= HI22(tmptick);
1231 	ent[TSTAT_TLBENT_TSLO] |= LO10(tmptick);
1232 	ent[TSTAT_TLBENT_BA] |= DISP22(va + baoffs, orig);
1233 
1234 	/*
1235 	 * And now set up the TLB return entries.
1236 	 */
1237 	trapstat_tlbretent(tcpu, &ret->ttlbr_ktlb, &kdata->ttlb_tlb);
1238 	trapstat_tlbretent(tcpu, &ret->ttlbr_ktsb, &kdata->ttlb_tsb);
1239 	trapstat_tlbretent(tcpu, &ret->ttlbr_utlb, &udata->ttlb_tlb);
1240 	trapstat_tlbretent(tcpu, &ret->ttlbr_utsb, &udata->ttlb_tsb);
1241 }
1242 
1243 #undef TSTAT_TLBENT_STATHI
1244 #undef TSTAT_TLBENT_STATLO_LD
1245 #undef TSTAT_TLBENT_STATLO_ST
1246 #ifndef sun4v
1247 #undef TSTAT_TLBENT_MMUASI
1248 #else
1249 #undef TSTAT_TLBENT_TAGTARGET
1250 #endif
1251 #undef TSTAT_TLBENT_TPCHI
1252 #undef TSTAT_TLBENT_TPCLO_USER
1253 #undef TSTAT_TLBENT_TPCLO_KERN
1254 #undef TSTAT_TLBENT_TSHI
1255 #undef TSTAT_TLBENT_TSLO
1256 #undef TSTAT_TLBENT_BA
1257 
1258 /*
1259  * The TSTAT_ENABLED_* constants define offsets in the enabled entry; the
1260  * TSTAT_DISABLED_BA constant defines an offset in the disabled entry.  Both
1261  * sets of constants are used only in trapstat_make_traptab() (below) and
1262  * #undef'd immediately afterwards.  Any change to "enabled" or "disabled"
1263  * in trapstat_make_traptab() will likely require changes to these constants.
1264  */
1265 #define	TSTAT_ENABLED_STATHI	0
1266 #define	TSTAT_ENABLED_STATLO_LD	1
1267 #define	TSTAT_ENABLED_STATLO_ST 3
1268 #define	TSTAT_ENABLED_BA	4
1269 #define	TSTAT_DISABLED_BA	0
1270 
1271 static void
1272 trapstat_make_traptab(tstat_percpu_t *tcpu)
1273 {
1274 	uint32_t *ent;
1275 	uint64_t *stat;
1276 	uintptr_t orig, va, en_baoffs, dis_baoffs;
1277 	int nent;
1278 
1279 	/*
1280 	 * This is the entry in the interposing trap table for enabled trap
1281 	 * table entries.  It loads a counter, increments it and stores it
1282 	 * back before branching to the actual trap table entry.
1283 	 */
1284 	static const uint32_t enabled[TSTAT_ENT_NINSTR] = {
1285 	    0x03000000, 		/* sethi %hi(stat), %g1		*/
1286 	    0xc4586000,			/* ldx   [%g1 + %lo(stat)], %g2	*/
1287 	    0x8400a001,			/* add   %g2, 1, %g2		*/
1288 	    0xc4706000,			/* stx   %g2, [%g1 + %lo(stat)]	*/
1289 	    0x30800000,			/* ba,a addr			*/
1290 	    NOP, NOP, NOP
1291 	};
1292 
1293 	/*
1294 	 * This is the entry in the interposing trap table for disabled trap
1295 	 * table entries.  It simply branches to the actual, underlying trap
1296 	 * table entry.  As explained in the "Implementation Details" section
1297 	 * of the block comment, all TL>0 traps _must_ use the disabled entry;
1298 	 * additional entries may be explicitly disabled through the use
1299 	 * of TSTATIOC_ENTRY/TSTATIOC_NOENTRY.
1300 	 */
1301 	static const uint32_t disabled[TSTAT_ENT_NINSTR] = {
1302 	    0x30800000,			/* ba,a addr			*/
1303 	    NOP, NOP, NOP, NOP, NOP, NOP, NOP,
1304 	};
1305 
1306 	ASSERT(MUTEX_HELD(&tstat_lock));
1307 
1308 	ent = tcpu->tcpu_instr->tinst_traptab;
1309 	stat = (uint64_t *)TSTAT_DATA_OFFS(tcpu, tdata_traps);
1310 	orig = KERNELBASE;
1311 	va = (uintptr_t)tcpu->tcpu_ibase;
1312 	en_baoffs = TSTAT_ENABLED_BA * sizeof (uint32_t);
1313 	dis_baoffs = TSTAT_DISABLED_BA * sizeof (uint32_t);
1314 
1315 	for (nent = 0; nent < TSTAT_TOTAL_NENT; nent++) {
1316 		if (tstat_enabled[nent]) {
1317 			bcopy(enabled, ent, sizeof (enabled));
1318 			ent[TSTAT_ENABLED_STATHI] |= HI22(stat);
1319 			ent[TSTAT_ENABLED_STATLO_LD] |= LO10(stat);
1320 			ent[TSTAT_ENABLED_STATLO_ST] |= LO10(stat);
1321 			ent[TSTAT_ENABLED_BA] |= DISP22(va + en_baoffs, orig);
1322 		} else {
1323 			bcopy(disabled, ent, sizeof (disabled));
1324 			ent[TSTAT_DISABLED_BA] |= DISP22(va + dis_baoffs, orig);
1325 		}
1326 
1327 		stat++;
1328 		orig += sizeof (enabled);
1329 		ent += sizeof (enabled) / sizeof (*ent);
1330 		va += sizeof (enabled);
1331 	}
1332 }
1333 
1334 #undef TSTAT_ENABLED_STATHI
1335 #undef TSTAT_ENABLED_STATLO_LD
1336 #undef TSTAT_ENABLED_STATLO_ST
1337 #undef TSTAT_ENABLED_BA
1338 #undef TSTAT_DISABLED_BA
1339 
1340 static void
1341 trapstat_setup(processorid_t cpu)
1342 {
1343 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
1344 #ifndef sun4v
1345 	int i;
1346 	caddr_t va;
1347 	pfn_t *pfn;
1348 #endif
1349 
1350 	ASSERT(tcpu->tcpu_pfn == NULL);
1351 	ASSERT(tcpu->tcpu_instr == NULL);
1352 	ASSERT(tcpu->tcpu_data == NULL);
1353 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
1354 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED));
1355 	ASSERT(MUTEX_HELD(&cpu_lock));
1356 	ASSERT(MUTEX_HELD(&tstat_lock));
1357 
1358 	/*
1359 	 * The lower fifteen bits of the %tba are always read as zero; we must
1360 	 * align our instruction base address appropriately.
1361 	 */
1362 #ifndef sun4v
1363 	tcpu->tcpu_ibase = (caddr_t)((KERNELBASE - tstat_total_size)
1364 		& TSTAT_TBA_MASK);
1365 	tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE;
1366 	tcpu->tcpu_vabase = tcpu->tcpu_ibase;
1367 
1368 	tcpu->tcpu_pfn = vmem_alloc(tstat_arena, tstat_total_pages, VM_SLEEP);
1369 	bzero(tcpu->tcpu_pfn, tstat_total_pages);
1370 	pfn = tcpu->tcpu_pfn;
1371 
1372 	tcpu->tcpu_instr = vmem_alloc(tstat_arena, TSTAT_INSTR_SIZE, VM_SLEEP);
1373 
1374 	va = (caddr_t)tcpu->tcpu_instr;
1375 	for (i = 0; i < TSTAT_INSTR_PAGES; i++, va += MMU_PAGESIZE)
1376 		*pfn++ = hat_getpfnum(kas.a_hat, va);
1377 
1378 	/*
1379 	 * We must be sure that the pages that we will use to examine the data
1380 	 * have the same virtual color as the pages to which the data is being
1381 	 * recorded, hence the alignment and phase constraints on the
1382 	 * allocation.
1383 	 */
1384 	tcpu->tcpu_data = vmem_xalloc(tstat_arena, tstat_data_size,
1385 	    shm_alignment, (uintptr_t)tcpu->tcpu_dbase & (shm_alignment - 1),
1386 	    0, 0, NULL, VM_SLEEP);
1387 	bzero(tcpu->tcpu_data, tstat_data_size);
1388 	tcpu->tcpu_data->tdata_cpuid = cpu;
1389 
1390 	va = (caddr_t)tcpu->tcpu_data;
1391 	for (i = 0; i < tstat_data_pages; i++, va += MMU_PAGESIZE)
1392 		*pfn++ = hat_getpfnum(kas.a_hat, va);
1393 #else /* sun4v */
1394 	ASSERT(!(tstat_total_size > (1 + ~TSTAT_TBA_MASK)));
1395 	tcpu->tcpu_vabase = (caddr_t)(KERNELBASE - MMU_PAGESIZE4M);
1396 	tcpu->tcpu_ibase = tcpu->tcpu_vabase + (cpu * (1 + ~TSTAT_TBA_MASK));
1397 	tcpu->tcpu_dbase = tcpu->tcpu_ibase + TSTAT_INSTR_SIZE;
1398 
1399 	tcpu->tcpu_pfn = &tstat_pfn;
1400 	tcpu->tcpu_instr = (tstat_instr_t *)(tstat_va + (cpu *
1401 		(1 + ~TSTAT_TBA_MASK)));
1402 	tcpu->tcpu_data = (tstat_data_t *)(tstat_va + (cpu *
1403 		(1 + ~TSTAT_TBA_MASK)) + TSTAT_INSTR_SIZE);
1404 	bzero(tcpu->tcpu_data, tstat_data_size);
1405 	tcpu->tcpu_data->tdata_cpuid = cpu;
1406 #endif /* sun4v */
1407 
1408 	/*
1409 	 * Now that we have all of the instruction and data pages allocated,
1410 	 * make the trap table from scratch.
1411 	 */
1412 	trapstat_make_traptab(tcpu);
1413 
1414 	if (tstat_options & TSTAT_OPT_TLBDATA) {
1415 		/*
1416 		 * TLB Statistics have been specified; set up the I- and D-TLB
1417 		 * entries and corresponding TLB return entries.
1418 		 */
1419 		trapstat_tlbent(tcpu, TSTAT_ENT_ITLBMISS);
1420 		trapstat_tlbent(tcpu, TSTAT_ENT_DTLBMISS);
1421 	}
1422 
1423 	tcpu->tcpu_flags |= TSTAT_CPU_ALLOCATED;
1424 
1425 	/*
1426 	 * Finally, get the target CPU to load the locked pages into its TLBs.
1427 	 */
1428 	xc_one(cpu, (xcfunc_t *)trapstat_load_tlb, 0, 0);
1429 }
1430 
1431 static void
1432 trapstat_teardown(processorid_t cpu)
1433 {
1434 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
1435 #ifndef sun4v
1436 	int i;
1437 #endif
1438 	caddr_t va = tcpu->tcpu_vabase;
1439 
1440 	ASSERT(tcpu->tcpu_pfn != NULL);
1441 	ASSERT(tcpu->tcpu_instr != NULL);
1442 	ASSERT(tcpu->tcpu_data != NULL);
1443 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
1444 	ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
1445 	ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
1446 	ASSERT(MUTEX_HELD(&cpu_lock));
1447 	ASSERT(MUTEX_HELD(&tstat_lock));
1448 
1449 #ifndef sun4v
1450 	vmem_free(tstat_arena, tcpu->tcpu_pfn, tstat_total_pages);
1451 	vmem_free(tstat_arena, tcpu->tcpu_instr, TSTAT_INSTR_SIZE);
1452 	vmem_free(tstat_arena, tcpu->tcpu_data, tstat_data_size);
1453 
1454 	for (i = 0; i < tstat_total_pages; i++, va += MMU_PAGESIZE) {
1455 		xt_one(cpu, vtag_flushpage_tl1, (uint64_t)va, KCONTEXT);
1456 	}
1457 #else
1458 	xt_one(cpu, vtag_unmap_perm_tl1, (uint64_t)va, KCONTEXT);
1459 #endif
1460 
1461 	tcpu->tcpu_pfn = NULL;
1462 	tcpu->tcpu_instr = NULL;
1463 	tcpu->tcpu_data = NULL;
1464 	tcpu->tcpu_flags &= ~TSTAT_CPU_ALLOCATED;
1465 }
1466 
1467 static int
1468 trapstat_go()
1469 {
1470 	cpu_t *cp;
1471 
1472 	mutex_enter(&cpu_lock);
1473 	mutex_enter(&tstat_lock);
1474 
1475 	if (tstat_running) {
1476 		mutex_exit(&tstat_lock);
1477 		mutex_exit(&cpu_lock);
1478 		return (EBUSY);
1479 	}
1480 
1481 #ifdef sun4v
1482 	/*
1483 	 * Allocate large page to hold interposing tables
1484 	 */
1485 	tstat_va = contig_mem_alloc(MMU_PAGESIZE4M);
1486 	tstat_pfn = va_to_pfn(tstat_va);
1487 	if (tstat_pfn == PFN_INVALID) {
1488 		contig_mem_free(tstat_va, MMU_PAGESIZE4M);
1489 		return (EAGAIN);
1490 	}
1491 #endif
1492 
1493 	/*
1494 	 * First, perform any necessary hot patching.
1495 	 */
1496 	trapstat_hotpatch();
1497 
1498 	/*
1499 	 * Allocate the resources we'll need to measure probe effect.
1500 	 */
1501 	trapstat_probe_alloc();
1502 
1503 
1504 	cp = cpu_list;
1505 	do {
1506 		if (!(tstat_percpu[cp->cpu_id].tcpu_flags & TSTAT_CPU_SELECTED))
1507 			continue;
1508 
1509 		trapstat_setup(cp->cpu_id);
1510 
1511 		/*
1512 		 * Note that due to trapstat_probe()'s use of global data,
1513 		 * we determine the probe effect on each CPU serially instead
1514 		 * of in parallel with an xc_all().
1515 		 */
1516 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_probe, 0, 0);
1517 	} while ((cp = cp->cpu_next) != cpu_list);
1518 
1519 	xc_all((xcfunc_t *)trapstat_enable, 0, 0);
1520 
1521 	trapstat_probe_free();
1522 	tstat_running = 1;
1523 	mutex_exit(&tstat_lock);
1524 	mutex_exit(&cpu_lock);
1525 
1526 	return (0);
1527 }
1528 
1529 static int
1530 trapstat_stop()
1531 {
1532 	int i;
1533 
1534 	mutex_enter(&cpu_lock);
1535 	mutex_enter(&tstat_lock);
1536 	if (!tstat_running) {
1537 		mutex_exit(&tstat_lock);
1538 		mutex_exit(&cpu_lock);
1539 		return (ENXIO);
1540 	}
1541 
1542 	xc_all((xcfunc_t *)trapstat_disable, 0, 0);
1543 
1544 	for (i = 0; i <= max_cpuid; i++) {
1545 		if (tstat_percpu[i].tcpu_flags & TSTAT_CPU_ALLOCATED)
1546 			trapstat_teardown(i);
1547 	}
1548 
1549 #ifdef sun4v
1550 	contig_mem_free(tstat_va, MMU_PAGESIZE4M);
1551 #endif
1552 	trapstat_hotpatch();
1553 	tstat_running = 0;
1554 	mutex_exit(&tstat_lock);
1555 	mutex_exit(&cpu_lock);
1556 
1557 	return (0);
1558 }
1559 
1560 /*
1561  * This is trapstat's DR CPU configuration callback.  It's called (with
1562  * cpu_lock held) to unconfigure a newly powered-off CPU, or to configure a
1563  * powered-off CPU that is to be brought into the system.  We need only take
1564  * action in the unconfigure case:  because a powered-off CPU will have its
1565  * trap table restored to KERNELBASE if it is ever powered back on, we must
1566  * update the flags to reflect that trapstat is no longer enabled on the
1567  * powered-off CPU.  Note that this means that a TSTAT_CPU_ENABLED CPU that
1568  * is unconfigured/powered off and later powered back on/reconfigured will
1569  * _not_ be re-TSTAT_CPU_ENABLED.
1570  */
1571 static int
1572 trapstat_cpu_setup(cpu_setup_t what, processorid_t cpu)
1573 {
1574 	tstat_percpu_t *tcpu = &tstat_percpu[cpu];
1575 
1576 	ASSERT(MUTEX_HELD(&cpu_lock));
1577 	mutex_enter(&tstat_lock);
1578 
1579 	if (!tstat_running) {
1580 		mutex_exit(&tstat_lock);
1581 		return (0);
1582 	}
1583 
1584 	switch (what) {
1585 	case CPU_CONFIG:
1586 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
1587 		break;
1588 
1589 	case CPU_UNCONFIG:
1590 		if (tcpu->tcpu_flags & TSTAT_CPU_ENABLED)
1591 			tcpu->tcpu_flags &= ~TSTAT_CPU_ENABLED;
1592 		break;
1593 
1594 	default:
1595 		break;
1596 	}
1597 
1598 	mutex_exit(&tstat_lock);
1599 	return (0);
1600 }
1601 
1602 /*
1603  * This is called before a CPR suspend and after a CPR resume.  We don't have
1604  * anything to do before a suspend, but after a restart we must restore the
1605  * trap table to be our interposing trap table.  However, we don't actually
1606  * know whether or not the CPUs have been powered off -- this routine may be
1607  * called while restoring from a failed CPR suspend.  We thus run through each
1608  * TSTAT_CPU_ENABLED CPU, and explicitly destroy and reestablish its
1609  * interposing trap table.  This assures that our state is correct regardless
1610  * of whether or not the CPU has been newly powered on.
1611  */
1612 /*ARGSUSED*/
1613 static boolean_t
1614 trapstat_cpr(void *arg, int code)
1615 {
1616 	cpu_t *cp;
1617 
1618 	if (code == CB_CODE_CPR_CHKPT)
1619 		return (B_TRUE);
1620 
1621 	ASSERT(code == CB_CODE_CPR_RESUME);
1622 
1623 	mutex_enter(&cpu_lock);
1624 	mutex_enter(&tstat_lock);
1625 
1626 	if (!tstat_running) {
1627 		mutex_exit(&tstat_lock);
1628 		mutex_exit(&cpu_lock);
1629 		return (B_TRUE);
1630 	}
1631 
1632 	cp = cpu_list;
1633 	do {
1634 		tstat_percpu_t *tcpu = &tstat_percpu[cp->cpu_id];
1635 
1636 		if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
1637 			continue;
1638 
1639 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
1640 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
1641 
1642 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_disable, 0, 0);
1643 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
1644 
1645 		/*
1646 		 * Preserve this CPU's data in tstat_buffer and rip down its
1647 		 * interposing trap table.
1648 		 */
1649 		bcopy(tcpu->tcpu_data, tstat_buffer, tstat_data_t_size);
1650 		trapstat_teardown(cp->cpu_id);
1651 		ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED));
1652 
1653 		/*
1654 		 * Reestablish the interposing trap table and restore the old
1655 		 * data.
1656 		 */
1657 		trapstat_setup(cp->cpu_id);
1658 		ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
1659 		bcopy(tstat_buffer, tcpu->tcpu_data, tstat_data_t_size);
1660 
1661 		xc_one(cp->cpu_id, (xcfunc_t *)trapstat_enable, 0, 0);
1662 	} while ((cp = cp->cpu_next) != cpu_list);
1663 
1664 	mutex_exit(&tstat_lock);
1665 	mutex_exit(&cpu_lock);
1666 
1667 	return (B_TRUE);
1668 }
1669 
1670 /*ARGSUSED*/
1671 static int
1672 trapstat_open(dev_t *devp, int flag, int otyp, cred_t *cred_p)
1673 {
1674 	int i;
1675 
1676 	mutex_enter(&cpu_lock);
1677 	mutex_enter(&tstat_lock);
1678 	if (tstat_open != 0) {
1679 		mutex_exit(&tstat_lock);
1680 		mutex_exit(&cpu_lock);
1681 		return (EBUSY);
1682 	}
1683 
1684 	/*
1685 	 * Register this in open() rather than in attach() to prevent deadlock
1686 	 * with DR code. During attach, I/O device tree locks are grabbed
1687 	 * before trapstat_attach() is invoked - registering in attach
1688 	 * will result in the lock order: device tree lock, cpu_lock.
1689 	 * DR code however requires that cpu_lock be acquired before
1690 	 * device tree locks.
1691 	 */
1692 	ASSERT(!tstat_running);
1693 	register_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL);
1694 
1695 	/*
1696 	 * Clear all options.  And until specific CPUs are specified, we'll
1697 	 * mark all CPUs as selected.
1698 	 */
1699 	tstat_options = 0;
1700 
1701 	for (i = 0; i <= max_cpuid; i++)
1702 		tstat_percpu[i].tcpu_flags |= TSTAT_CPU_SELECTED;
1703 
1704 	/*
1705 	 * By default, all traps at TL=0 are enabled.  Traps at TL>0 must
1706 	 * be disabled.
1707 	 */
1708 	for (i = 0; i < TSTAT_TOTAL_NENT; i++)
1709 		tstat_enabled[i] = i < TSTAT_NENT ? 1 : 0;
1710 
1711 	tstat_open = 1;
1712 	mutex_exit(&tstat_lock);
1713 	mutex_exit(&cpu_lock);
1714 
1715 	return (0);
1716 }
1717 
1718 /*ARGSUSED*/
1719 static int
1720 trapstat_close(dev_t dev, int flag, int otyp, cred_t *cred_p)
1721 {
1722 	(void) trapstat_stop();
1723 
1724 	ASSERT(!tstat_running);
1725 
1726 	mutex_enter(&cpu_lock);
1727 	unregister_cpu_setup_func((cpu_setup_func_t *)trapstat_cpu_setup, NULL);
1728 	mutex_exit(&cpu_lock);
1729 
1730 	tstat_open = 0;
1731 	return (DDI_SUCCESS);
1732 }
1733 
1734 static int
1735 trapstat_option(int option)
1736 {
1737 	mutex_enter(&tstat_lock);
1738 
1739 	if (tstat_running) {
1740 		mutex_exit(&tstat_lock);
1741 		return (EBUSY);
1742 	}
1743 
1744 	tstat_options |= option;
1745 	mutex_exit(&tstat_lock);
1746 
1747 	return (0);
1748 }
1749 
1750 /*ARGSUSED*/
1751 static int
1752 trapstat_ioctl(dev_t dev, int cmd, intptr_t arg, int md, cred_t *crd, int *rval)
1753 {
1754 	int i, j, out;
1755 	size_t dsize;
1756 
1757 	switch (cmd) {
1758 	case TSTATIOC_GO:
1759 		return (trapstat_go());
1760 
1761 	case TSTATIOC_NOGO:
1762 		return (trapstat_option(TSTAT_OPT_NOGO));
1763 
1764 	case TSTATIOC_STOP:
1765 		return (trapstat_stop());
1766 
1767 	case TSTATIOC_CPU:
1768 		if (arg < 0 || arg > max_cpuid)
1769 			return (EINVAL);
1770 		/*FALLTHROUGH*/
1771 
1772 	case TSTATIOC_NOCPU:
1773 		mutex_enter(&tstat_lock);
1774 
1775 		if (tstat_running) {
1776 			mutex_exit(&tstat_lock);
1777 			return (EBUSY);
1778 		}
1779 
1780 		/*
1781 		 * If this is the first CPU to be specified (or if we are
1782 		 * being asked to explicitly de-select CPUs), disable all CPUs.
1783 		 */
1784 		if (!(tstat_options & TSTAT_OPT_CPU) || cmd == TSTATIOC_NOCPU) {
1785 			tstat_options |= TSTAT_OPT_CPU;
1786 
1787 			for (i = 0; i <= max_cpuid; i++) {
1788 				tstat_percpu_t *tcpu = &tstat_percpu[i];
1789 
1790 				ASSERT(cmd == TSTATIOC_NOCPU ||
1791 				    (tcpu->tcpu_flags & TSTAT_CPU_SELECTED));
1792 				tcpu->tcpu_flags &= ~TSTAT_CPU_SELECTED;
1793 			}
1794 		}
1795 
1796 		if (cmd == TSTATIOC_CPU)
1797 			tstat_percpu[arg].tcpu_flags |= TSTAT_CPU_SELECTED;
1798 
1799 		mutex_exit(&tstat_lock);
1800 
1801 		return (0);
1802 
1803 	case TSTATIOC_ENTRY:
1804 		mutex_enter(&tstat_lock);
1805 
1806 		if (tstat_running) {
1807 			mutex_exit(&tstat_lock);
1808 			return (EBUSY);
1809 		}
1810 
1811 		if (arg >= TSTAT_NENT || arg < 0) {
1812 			mutex_exit(&tstat_lock);
1813 			return (EINVAL);
1814 		}
1815 
1816 		if (!(tstat_options & TSTAT_OPT_ENTRY)) {
1817 			/*
1818 			 * If this is the first entry that we are explicitly
1819 			 * enabling, explicitly disable every TL=0 entry.
1820 			 */
1821 			for (i = 0; i < TSTAT_NENT; i++)
1822 				tstat_enabled[i] = 0;
1823 
1824 			tstat_options |= TSTAT_OPT_ENTRY;
1825 		}
1826 
1827 		tstat_enabled[arg] = 1;
1828 		mutex_exit(&tstat_lock);
1829 		return (0);
1830 
1831 	case TSTATIOC_NOENTRY:
1832 		mutex_enter(&tstat_lock);
1833 
1834 		if (tstat_running) {
1835 			mutex_exit(&tstat_lock);
1836 			return (EBUSY);
1837 		}
1838 
1839 		for (i = 0; i < TSTAT_NENT; i++)
1840 			tstat_enabled[i] = 0;
1841 
1842 		mutex_exit(&tstat_lock);
1843 		return (0);
1844 
1845 	case TSTATIOC_READ:
1846 		mutex_enter(&tstat_lock);
1847 
1848 		if (tstat_options & TSTAT_OPT_TLBDATA) {
1849 			dsize = tstat_data_t_exported_size;
1850 		} else {
1851 			dsize = sizeof (tstat_data_t);
1852 		}
1853 
1854 		for (i = 0, out = 0; i <= max_cpuid; i++) {
1855 			tstat_percpu_t *tcpu = &tstat_percpu[i];
1856 
1857 			if (!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED))
1858 				continue;
1859 
1860 			ASSERT(tcpu->tcpu_flags & TSTAT_CPU_SELECTED);
1861 			ASSERT(tcpu->tcpu_flags & TSTAT_CPU_ALLOCATED);
1862 
1863 			tstat_buffer->tdata_cpuid = -1;
1864 			xc_one(i, (xcfunc_t *)trapstat_snapshot, 0, 0);
1865 
1866 			if (tstat_buffer->tdata_cpuid == -1) {
1867 				/*
1868 				 * This CPU is not currently responding to
1869 				 * cross calls; we have caught it while it is
1870 				 * being unconfigured.  We'll drop tstat_lock
1871 				 * and pick up and drop cpu_lock.  By the
1872 				 * time we acquire cpu_lock, the DR operation
1873 				 * will appear consistent and we can assert
1874 				 * that trapstat_cpu_setup() has cleared
1875 				 * TSTAT_CPU_ENABLED.
1876 				 */
1877 				mutex_exit(&tstat_lock);
1878 				mutex_enter(&cpu_lock);
1879 				mutex_exit(&cpu_lock);
1880 				mutex_enter(&tstat_lock);
1881 				ASSERT(!(tcpu->tcpu_flags & TSTAT_CPU_ENABLED));
1882 				continue;
1883 			}
1884 
1885 			/*
1886 			 * Need to compensate for the difference between page
1887 			 * sizes exported to users and page sizes available
1888 			 * within the kernel.
1889 			 */
1890 			if ((tstat_options & TSTAT_OPT_TLBDATA) &&
1891 			    (tstat_pgszs != tstat_user_pgszs)) {
1892 				tstat_pgszdata_t *tp;
1893 				uint_t szc;
1894 
1895 				tp = &tstat_buffer->tdata_pgsz[0];
1896 				for (j = 0; j < tstat_user_pgszs; j++) {
1897 					if ((szc = USERSZC_2_SZC(j)) != j) {
1898 						bcopy(&tp[szc], &tp[j],
1899 						    sizeof (tstat_pgszdata_t));
1900 					}
1901 				}
1902 			}
1903 
1904 			if (copyout(tstat_buffer, (void *)arg, dsize) != 0) {
1905 				mutex_exit(&tstat_lock);
1906 				return (EFAULT);
1907 			}
1908 
1909 			out++;
1910 			arg += dsize;
1911 		}
1912 
1913 		if (out != max_cpuid + 1) {
1914 			processorid_t cpuid = -1;
1915 			arg += offsetof(tstat_data_t, tdata_cpuid);
1916 
1917 			if (copyout(&cpuid, (void *)arg, sizeof (cpuid)) != 0) {
1918 				mutex_exit(&tstat_lock);
1919 				return (EFAULT);
1920 			}
1921 		}
1922 
1923 		mutex_exit(&tstat_lock);
1924 
1925 		return (0);
1926 
1927 	case TSTATIOC_TLBDATA:
1928 		return (trapstat_option(TSTAT_OPT_TLBDATA));
1929 
1930 	default:
1931 		break;
1932 	}
1933 
1934 	return (ENOTTY);
1935 }
1936 
1937 /*ARGSUSED*/
1938 static int
1939 trapstat_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
1940 {
1941 	int error;
1942 
1943 	switch (infocmd) {
1944 	case DDI_INFO_DEVT2DEVINFO:
1945 		*result = (void *)tstat_devi;
1946 		error = DDI_SUCCESS;
1947 		break;
1948 	case DDI_INFO_DEVT2INSTANCE:
1949 		*result = (void *)0;
1950 		error = DDI_SUCCESS;
1951 		break;
1952 	default:
1953 		error = DDI_FAILURE;
1954 	}
1955 	return (error);
1956 }
1957 
1958 static int
1959 trapstat_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
1960 {
1961 	switch (cmd) {
1962 	case DDI_ATTACH:
1963 		break;
1964 
1965 	case DDI_RESUME:
1966 		return (DDI_SUCCESS);
1967 
1968 	default:
1969 		return (DDI_FAILURE);
1970 	}
1971 
1972 	if (ddi_create_minor_node(devi, "trapstat", S_IFCHR,
1973 	    0, DDI_PSEUDO, 0) == DDI_FAILURE) {
1974 		ddi_remove_minor_node(devi, NULL);
1975 		return (DDI_FAILURE);
1976 	}
1977 
1978 	ddi_report_dev(devi);
1979 	tstat_devi = devi;
1980 
1981 	tstat_pgszs = page_num_pagesizes();
1982 	tstat_user_pgszs = page_num_user_pagesizes();
1983 	tstat_data_t_size = sizeof (tstat_data_t) +
1984 	    (tstat_pgszs - 1) * sizeof (tstat_pgszdata_t);
1985 	tstat_data_t_exported_size = sizeof (tstat_data_t) +
1986 	    (tstat_user_pgszs - 1) * sizeof (tstat_pgszdata_t);
1987 #ifndef sun4v
1988 	tstat_data_pages = (tstat_data_t_size >> MMU_PAGESHIFT) + 1;
1989 	tstat_total_pages = TSTAT_INSTR_PAGES + tstat_data_pages;
1990 	tstat_data_size = tstat_data_pages * MMU_PAGESIZE;
1991 	tstat_total_size = TSTAT_INSTR_SIZE + tstat_data_size;
1992 #else
1993 	tstat_data_pages = 0;
1994 	tstat_data_size = tstat_data_t_size;
1995 	tstat_total_pages = ((TSTAT_INSTR_SIZE + tstat_data_size) >>
1996 		MMU_PAGESHIFT) + 1;
1997 	tstat_total_size = tstat_total_pages * MMU_PAGESIZE;
1998 #endif
1999 
2000 	tstat_percpu = kmem_zalloc((max_cpuid + 1) *
2001 	    sizeof (tstat_percpu_t), KM_SLEEP);
2002 
2003 	/*
2004 	 * Create our own arena backed by segkmem to assure a source of
2005 	 * MMU_PAGESIZE-aligned allocations.  We allocate out of the
2006 	 * heap32_arena to assure that we can address the allocated memory with
2007 	 * a single sethi/simm13 pair in the interposing trap table entries.
2008 	 */
2009 	tstat_arena = vmem_create("trapstat", NULL, 0, MMU_PAGESIZE,
2010 	    segkmem_alloc_permanent, segkmem_free, heap32_arena, 0, VM_SLEEP);
2011 
2012 	tstat_enabled = kmem_alloc(TSTAT_TOTAL_NENT * sizeof (int), KM_SLEEP);
2013 	tstat_buffer = kmem_alloc(tstat_data_t_size, KM_SLEEP);
2014 
2015 	/*
2016 	 * CB_CL_CPR_POST_USER is the class that executes from cpr_resume()
2017 	 * after user threads can be restarted.  By executing in this class,
2018 	 * we are assured of the availability of system services needed to
2019 	 * resume trapstat (specifically, we are assured that all CPUs are
2020 	 * restarted and responding to cross calls).
2021 	 */
2022 	tstat_cprcb =
2023 	    callb_add(trapstat_cpr, NULL, CB_CL_CPR_POST_USER, "trapstat");
2024 
2025 	return (DDI_SUCCESS);
2026 }
2027 
2028 static int
2029 trapstat_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
2030 {
2031 	int rval;
2032 
2033 	ASSERT(devi == tstat_devi);
2034 
2035 	switch (cmd) {
2036 	case DDI_DETACH:
2037 		break;
2038 
2039 	case DDI_SUSPEND:
2040 		return (DDI_SUCCESS);
2041 
2042 	default:
2043 		return (DDI_FAILURE);
2044 	}
2045 
2046 	ASSERT(!tstat_running);
2047 
2048 	rval = callb_delete(tstat_cprcb);
2049 	ASSERT(rval == 0);
2050 
2051 	kmem_free(tstat_buffer, tstat_data_t_size);
2052 	kmem_free(tstat_enabled, TSTAT_TOTAL_NENT * sizeof (int));
2053 	vmem_destroy(tstat_arena);
2054 	kmem_free(tstat_percpu, (max_cpuid + 1) * sizeof (tstat_percpu_t));
2055 	ddi_remove_minor_node(devi, NULL);
2056 
2057 	return (DDI_SUCCESS);
2058 }
2059 
2060 /*
2061  * Configuration data structures
2062  */
2063 static struct cb_ops trapstat_cb_ops = {
2064 	trapstat_open,		/* open */
2065 	trapstat_close,		/* close */
2066 	nulldev,		/* strategy */
2067 	nulldev,		/* print */
2068 	nodev,			/* dump */
2069 	nodev,			/* read */
2070 	nodev,			/* write */
2071 	trapstat_ioctl,		/* ioctl */
2072 	nodev,			/* devmap */
2073 	nodev,			/* mmap */
2074 	nodev,			/* segmap */
2075 	nochpoll,		/* poll */
2076 	ddi_prop_op,		/* cb_prop_op */
2077 	0,			/* streamtab */
2078 	D_MP | D_NEW		/* Driver compatibility flag */
2079 };
2080 
2081 static struct dev_ops trapstat_ops = {
2082 	DEVO_REV,		/* devo_rev, */
2083 	0,			/* refcnt */
2084 	trapstat_info,		/* getinfo */
2085 	nulldev,		/* identify */
2086 	nulldev,		/* probe */
2087 	trapstat_attach,	/* attach */
2088 	trapstat_detach,	/* detach */
2089 	nulldev,		/* reset */
2090 	&trapstat_cb_ops,	/* cb_ops */
2091 	(struct bus_ops *)0,	/* bus_ops */
2092 };
2093 
2094 static struct modldrv modldrv = {
2095 	&mod_driverops,		/* Type of module.  This one is a driver */
2096 	"Trap Statistics",	/* name of module */
2097 	&trapstat_ops,		/* driver ops */
2098 };
2099 
2100 static struct modlinkage modlinkage = {
2101 	MODREV_1, (void *)&modldrv, NULL
2102 };
2103 
2104 int
2105 _init(void)
2106 {
2107 	return (mod_install(&modlinkage));
2108 }
2109 
2110 int
2111 _fini(void)
2112 {
2113 	return (mod_remove(&modlinkage));
2114 }
2115 
2116 int
2117 _info(struct modinfo *modinfop)
2118 {
2119 	return (mod_info(&modlinkage, modinfop));
2120 }
2121