]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/pmc.h
hwpmc: add initial Intel Broadwell support.
[FreeBSD/FreeBSD.git] / sys / sys / pmc.h
1 /*-
2  * Copyright (c) 2003-2008, Joseph Koshy
3  * Copyright (c) 2007 The FreeBSD Foundation
4  * All rights reserved.
5  *
6  * Portions of this software were developed by A. Joseph Koshy under
7  * sponsorship from the FreeBSD Foundation and Google, Inc.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * $FreeBSD$
31  */
32
33 #ifndef _SYS_PMC_H_
34 #define _SYS_PMC_H_
35
36 #include <dev/hwpmc/pmc_events.h>
37
38 #include <machine/pmc_mdep.h>
39 #include <machine/profile.h>
40
41 #define PMC_MODULE_NAME         "hwpmc"
42 #define PMC_NAME_MAX            64 /* HW counter name size */
43 #define PMC_CLASS_MAX           8  /* max #classes of PMCs per-system */
44
45 /*
46  * Kernel<->userland API version number [MMmmpppp]
47  *
48  * Major numbers are to be incremented when an incompatible change to
49  * the ABI occurs that older clients will not be able to handle.
50  *
51  * Minor numbers are incremented when a backwards compatible change
52  * occurs that allows older correct programs to run unchanged.  For
53  * example, when support for a new PMC type is added.
54  *
55  * The patch version is incremented for every bug fix.
56  */
57 #define PMC_VERSION_MAJOR       0x03
58 #define PMC_VERSION_MINOR       0x01
59 #define PMC_VERSION_PATCH       0x0000
60
61 #define PMC_VERSION             (PMC_VERSION_MAJOR << 24 |              \
62         PMC_VERSION_MINOR << 16 | PMC_VERSION_PATCH)
63
64 /*
65  * Kinds of CPUs known.
66  *
67  * We keep track of CPU variants that need to be distinguished in
68  * some way for PMC operations.  CPU names are grouped by manufacturer
69  * and numbered sparsely in order to minimize changes to the ABI involved
70  * when new CPUs are added.
71  */
72
73 #define __PMC_CPUS()                                            \
74         __PMC_CPU(AMD_K7,       0x00,   "AMD K7")               \
75         __PMC_CPU(AMD_K8,       0x01,   "AMD K8")               \
76         __PMC_CPU(ARMV7,        0x500,  "ARMv7")                \
77         __PMC_CPU(INTEL_P5,     0x80,   "Intel Pentium")        \
78         __PMC_CPU(INTEL_P6,     0x81,   "Intel Pentium Pro")    \
79         __PMC_CPU(INTEL_CL,     0x82,   "Intel Celeron")        \
80         __PMC_CPU(INTEL_PII,    0x83,   "Intel Pentium II")     \
81         __PMC_CPU(INTEL_PIII,   0x84,   "Intel Pentium III")    \
82         __PMC_CPU(INTEL_PM,     0x85,   "Intel Pentium M")      \
83         __PMC_CPU(INTEL_PIV,    0x86,   "Intel Pentium IV")     \
84         __PMC_CPU(INTEL_CORE,   0x87,   "Intel Core Solo/Duo")  \
85         __PMC_CPU(INTEL_CORE2,  0x88,   "Intel Core2")          \
86         __PMC_CPU(INTEL_CORE2EXTREME,   0x89,   "Intel Core2 Extreme")  \
87         __PMC_CPU(INTEL_ATOM,   0x8A,   "Intel Atom")           \
88         __PMC_CPU(INTEL_COREI7, 0x8B,   "Intel Core i7")        \
89         __PMC_CPU(INTEL_WESTMERE, 0x8C,   "Intel Westmere")     \
90         __PMC_CPU(INTEL_SANDYBRIDGE, 0x8D,   "Intel Sandy Bridge")      \
91         __PMC_CPU(INTEL_IVYBRIDGE, 0x8E,   "Intel Ivy Bridge")  \
92         __PMC_CPU(INTEL_SANDYBRIDGE_XEON, 0x8F,   "Intel Sandy Bridge Xeon")    \
93         __PMC_CPU(INTEL_IVYBRIDGE_XEON, 0x90,   "Intel Ivy Bridge Xeon")        \
94         __PMC_CPU(INTEL_HASWELL, 0x91,   "Intel Haswell")       \
95         __PMC_CPU(INTEL_ATOM_SILVERMONT, 0x92,  "Intel Atom Silvermont")    \
96         __PMC_CPU(INTEL_NEHALEM_EX, 0x93,   "Intel Nehalem Xeon 7500")  \
97         __PMC_CPU(INTEL_WESTMERE_EX, 0x94,   "Intel Westmere Xeon E7")  \
98         __PMC_CPU(INTEL_HASWELL_XEON, 0x95,   "Intel Haswell Xeon E5 v3") \
99         __PMC_CPU(INTEL_BROADWELL, 0x96,   "Intel Broadwell") \
100         __PMC_CPU(INTEL_XSCALE, 0x100,  "Intel XScale")         \
101         __PMC_CPU(MIPS_24K,     0x200,  "MIPS 24K")             \
102         __PMC_CPU(MIPS_OCTEON,  0x201,  "Cavium Octeon")        \
103         __PMC_CPU(MIPS_74K,     0x202,  "MIPS 74K")             \
104         __PMC_CPU(PPC_7450,     0x300,  "PowerPC MPC7450")      \
105         __PMC_CPU(PPC_970,      0x380,  "IBM PowerPC 970")      \
106         __PMC_CPU(GENERIC,      0x400,  "Generic")
107
108 enum pmc_cputype {
109 #undef  __PMC_CPU
110 #define __PMC_CPU(S,V,D)        PMC_CPU_##S = V,
111         __PMC_CPUS()
112 };
113
114 #define PMC_CPU_FIRST   PMC_CPU_AMD_K7
115 #define PMC_CPU_LAST    PMC_CPU_GENERIC
116
117 /*
118  * Classes of PMCs
119  */
120
121 #define __PMC_CLASSES()                                                 \
122         __PMC_CLASS(TSC)        /* CPU Timestamp counter */             \
123         __PMC_CLASS(K7)         /* AMD K7 performance counters */       \
124         __PMC_CLASS(K8)         /* AMD K8 performance counters */       \
125         __PMC_CLASS(P5)         /* Intel Pentium counters */            \
126         __PMC_CLASS(P6)         /* Intel Pentium Pro counters */        \
127         __PMC_CLASS(P4)         /* Intel Pentium-IV counters */         \
128         __PMC_CLASS(IAF)        /* Intel Core2/Atom, fixed function */  \
129         __PMC_CLASS(IAP)        /* Intel Core...Atom, programmable */   \
130         __PMC_CLASS(UCF)        /* Intel Uncore fixed function */       \
131         __PMC_CLASS(UCP)        /* Intel Uncore programmable */         \
132         __PMC_CLASS(XSCALE)     /* Intel XScale counters */             \
133         __PMC_CLASS(ARMV7)      /* ARMv7 */                             \
134         __PMC_CLASS(MIPS24K)    /* MIPS 24K */                          \
135         __PMC_CLASS(OCTEON)     /* Cavium Octeon */                     \
136         __PMC_CLASS(MIPS74K)    /* MIPS 74K */                          \
137         __PMC_CLASS(PPC7450)    /* Motorola MPC7450 class */            \
138         __PMC_CLASS(PPC970)     /* IBM PowerPC 970 class */             \
139         __PMC_CLASS(SOFT)       /* Software events */
140
141 enum pmc_class {
142 #undef  __PMC_CLASS
143 #define __PMC_CLASS(N)  PMC_CLASS_##N ,
144         __PMC_CLASSES()
145 };
146
147 #define PMC_CLASS_FIRST PMC_CLASS_TSC
148 #define PMC_CLASS_LAST  PMC_CLASS_SOFT
149
150 /*
151  * A PMC can be in the following states:
152  *
153  * Hardware states:
154  *   DISABLED   -- administratively prohibited from being used.
155  *   FREE       -- HW available for use
156  * Software states:
157  *   ALLOCATED  -- allocated
158  *   STOPPED    -- allocated, but not counting events
159  *   RUNNING    -- allocated, and in operation; 'pm_runcount'
160  *                 holds the number of CPUs using this PMC at
161  *                 a given instant
162  *   DELETED    -- being destroyed
163  */
164
165 #define __PMC_HWSTATES()                        \
166         __PMC_STATE(DISABLED)                   \
167         __PMC_STATE(FREE)
168
169 #define __PMC_SWSTATES()                        \
170         __PMC_STATE(ALLOCATED)                  \
171         __PMC_STATE(STOPPED)                    \
172         __PMC_STATE(RUNNING)                    \
173         __PMC_STATE(DELETED)
174
175 #define __PMC_STATES()                          \
176         __PMC_HWSTATES()                        \
177         __PMC_SWSTATES()
178
179 enum pmc_state {
180 #undef  __PMC_STATE
181 #define __PMC_STATE(S)  PMC_STATE_##S,
182         __PMC_STATES()
183         __PMC_STATE(MAX)
184 };
185
186 #define PMC_STATE_FIRST PMC_STATE_DISABLED
187 #define PMC_STATE_LAST  PMC_STATE_DELETED
188
189 /*
190  * An allocated PMC may used as a 'global' counter or as a
191  * 'thread-private' one.  Each such mode of use can be in either
192  * statistical sampling mode or in counting mode.  Thus a PMC in use
193  *
194  * SS i.e., SYSTEM STATISTICAL  -- system-wide statistical profiling
195  * SC i.e., SYSTEM COUNTER      -- system-wide counting mode
196  * TS i.e., THREAD STATISTICAL  -- thread virtual, statistical profiling
197  * TC i.e., THREAD COUNTER      -- thread virtual, counting mode
198  *
199  * Statistical profiling modes rely on the PMC periodically delivering
200  * a interrupt to the CPU (when the configured number of events have
201  * been measured), so the PMC must have the ability to generate
202  * interrupts.
203  *
204  * In counting modes, the PMC counts its configured events, with the
205  * value of the PMC being read whenever needed by its owner process.
206  *
207  * The thread specific modes "virtualize" the PMCs -- the PMCs appear
208  * to be thread private and count events only when the profiled thread
209  * actually executes on the CPU.
210  *
211  * The system-wide "global" modes keep the PMCs running all the time
212  * and are used to measure the behaviour of the whole system.
213  */
214
215 #define __PMC_MODES()                           \
216         __PMC_MODE(SS,  0)                      \
217         __PMC_MODE(SC,  1)                      \
218         __PMC_MODE(TS,  2)                      \
219         __PMC_MODE(TC,  3)
220
221 enum pmc_mode {
222 #undef  __PMC_MODE
223 #define __PMC_MODE(M,N) PMC_MODE_##M = N,
224         __PMC_MODES()
225 };
226
227 #define PMC_MODE_FIRST  PMC_MODE_SS
228 #define PMC_MODE_LAST   PMC_MODE_TC
229
230 #define PMC_IS_COUNTING_MODE(mode)                              \
231         ((mode) == PMC_MODE_SC || (mode) == PMC_MODE_TC)
232 #define PMC_IS_SYSTEM_MODE(mode)                                \
233         ((mode) == PMC_MODE_SS || (mode) == PMC_MODE_SC)
234 #define PMC_IS_SAMPLING_MODE(mode)                              \
235         ((mode) == PMC_MODE_SS || (mode) == PMC_MODE_TS)
236 #define PMC_IS_VIRTUAL_MODE(mode)                               \
237         ((mode) == PMC_MODE_TS || (mode) == PMC_MODE_TC)
238
239 /*
240  * PMC row disposition
241  */
242
243 #define __PMC_DISPOSITIONS(N)                                   \
244         __PMC_DISP(STANDALONE)  /* global/disabled counters */  \
245         __PMC_DISP(FREE)        /* free/available */            \
246         __PMC_DISP(THREAD)      /* thread-virtual PMCs */       \
247         __PMC_DISP(UNKNOWN)     /* sentinel */
248
249 enum pmc_disp {
250 #undef  __PMC_DISP
251 #define __PMC_DISP(D)   PMC_DISP_##D ,
252         __PMC_DISPOSITIONS()
253 };
254
255 #define PMC_DISP_FIRST  PMC_DISP_STANDALONE
256 #define PMC_DISP_LAST   PMC_DISP_THREAD
257
258 /*
259  * Counter capabilities
260  *
261  * __PMC_CAPS(NAME, VALUE, DESCRIPTION)
262  */
263
264 #define __PMC_CAPS()                                                    \
265         __PMC_CAP(INTERRUPT,    0, "generate interrupts")               \
266         __PMC_CAP(USER,         1, "count user-mode events")            \
267         __PMC_CAP(SYSTEM,       2, "count system-mode events")          \
268         __PMC_CAP(EDGE,         3, "do edge detection of events")       \
269         __PMC_CAP(THRESHOLD,    4, "ignore events below a threshold")   \
270         __PMC_CAP(READ,         5, "read PMC counter")                  \
271         __PMC_CAP(WRITE,        6, "reprogram PMC counter")             \
272         __PMC_CAP(INVERT,       7, "invert comparision sense")          \
273         __PMC_CAP(QUALIFIER,    8, "further qualify monitored events")  \
274         __PMC_CAP(PRECISE,      9, "perform precise sampling")          \
275         __PMC_CAP(TAGGING,      10, "tag upstream events")              \
276         __PMC_CAP(CASCADE,      11, "cascade counters")
277
278 enum pmc_caps
279 {
280 #undef  __PMC_CAP
281 #define __PMC_CAP(NAME, VALUE, DESCR)   PMC_CAP_##NAME = (1 << VALUE) ,
282         __PMC_CAPS()
283 };
284
285 #define PMC_CAP_FIRST           PMC_CAP_INTERRUPT
286 #define PMC_CAP_LAST            PMC_CAP_CASCADE
287
288 /*
289  * PMC Event Numbers
290  *
291  * These are generated from the definitions in "dev/hwpmc/pmc_events.h".
292  */
293
294 enum pmc_event {
295 #undef  __PMC_EV
296 #undef  __PMC_EV_BLOCK
297 #define __PMC_EV_BLOCK(C,V)     PMC_EV_ ## C ## __BLOCK_START = (V) - 1 ,
298 #define __PMC_EV(C,N)           PMC_EV_ ## C ## _ ## N ,
299         __PMC_EVENTS()
300 };
301
302 /*
303  * PMC SYSCALL INTERFACE
304  */
305
306 /*
307  * "PMC_OPS" -- these are the commands recognized by the kernel
308  * module, and are used when performing a system call from userland.
309  */
310 #define __PMC_OPS()                                                     \
311         __PMC_OP(CONFIGURELOG, "Set log file")                          \
312         __PMC_OP(FLUSHLOG, "Flush log file")                            \
313         __PMC_OP(GETCPUINFO, "Get system CPU information")              \
314         __PMC_OP(GETDRIVERSTATS, "Get driver statistics")               \
315         __PMC_OP(GETMODULEVERSION, "Get module version")                \
316         __PMC_OP(GETPMCINFO, "Get per-cpu PMC information")             \
317         __PMC_OP(PMCADMIN, "Set PMC state")                             \
318         __PMC_OP(PMCALLOCATE, "Allocate and configure a PMC")           \
319         __PMC_OP(PMCATTACH, "Attach a PMC to a process")                \
320         __PMC_OP(PMCDETACH, "Detach a PMC from a process")              \
321         __PMC_OP(PMCGETMSR, "Get a PMC's hardware address")             \
322         __PMC_OP(PMCRELEASE, "Release a PMC")                           \
323         __PMC_OP(PMCRW, "Read/Set a PMC")                               \
324         __PMC_OP(PMCSETCOUNT, "Set initial count/sampling rate")        \
325         __PMC_OP(PMCSTART, "Start a PMC")                               \
326         __PMC_OP(PMCSTOP, "Stop a PMC")                                 \
327         __PMC_OP(WRITELOG, "Write a cookie to the log file")            \
328         __PMC_OP(CLOSELOG, "Close log file")                            \
329         __PMC_OP(GETDYNEVENTINFO, "Get dynamic events list")
330
331
332 enum pmc_ops {
333 #undef  __PMC_OP
334 #define __PMC_OP(N, D)  PMC_OP_##N,
335         __PMC_OPS()
336 };
337
338
339 /*
340  * Flags used in operations on PMCs.
341  */
342
343 #define PMC_F_FORCE             0x00000001 /*OP ADMIN force operation */
344 #define PMC_F_DESCENDANTS       0x00000002 /*OP ALLOCATE track descendants */
345 #define PMC_F_LOG_PROCCSW       0x00000004 /*OP ALLOCATE track ctx switches */
346 #define PMC_F_LOG_PROCEXIT      0x00000008 /*OP ALLOCATE log proc exits */
347 #define PMC_F_NEWVALUE          0x00000010 /*OP RW write new value */
348 #define PMC_F_OLDVALUE          0x00000020 /*OP RW get old value */
349 #define PMC_F_KGMON             0x00000040 /*OP ALLOCATE kgmon(8) profiling */
350 /* V2 API */
351 #define PMC_F_CALLCHAIN         0x00000080 /*OP ALLOCATE capture callchains */
352
353 /* internal flags */
354 #define PMC_F_ATTACHED_TO_OWNER 0x00010000 /*attached to owner*/
355 #define PMC_F_NEEDS_LOGFILE     0x00020000 /*needs log file */
356 #define PMC_F_ATTACH_DONE       0x00040000 /*attached at least once */
357
358 #define PMC_CALLCHAIN_DEPTH_MAX 128
359
360 #define PMC_CC_F_USERSPACE      0x01       /*userspace callchain*/
361
362 /*
363  * Cookies used to denote allocated PMCs, and the values of PMCs.
364  */
365
366 typedef uint32_t        pmc_id_t;
367 typedef uint64_t        pmc_value_t;
368
369 #define PMC_ID_INVALID          (~ (pmc_id_t) 0)
370
371 /*
372  * PMC IDs have the following format:
373  *
374  * +--------+----------+-----------+-----------+
375  * |   CPU  | PMC MODE | PMC CLASS | ROW INDEX |
376  * +--------+----------+-----------+-----------+
377  *
378  * where each field is 8 bits wide.  Field 'CPU' is set to the
379  * requested CPU for system-wide PMCs or PMC_CPU_ANY for process-mode
380  * PMCs.  Field 'PMC MODE' is the allocated PMC mode.  Field 'PMC
381  * CLASS' is the class of the PMC.  Field 'ROW INDEX' is the row index
382  * for the PMC.
383  *
384  * The 'ROW INDEX' ranges over 0..NWPMCS where NHWPMCS is the total
385  * number of hardware PMCs on this cpu.
386  */
387
388
389 #define PMC_ID_TO_ROWINDEX(ID)  ((ID) & 0xFF)
390 #define PMC_ID_TO_CLASS(ID)     (((ID) & 0xFF00) >> 8)
391 #define PMC_ID_TO_MODE(ID)      (((ID) & 0xFF0000) >> 16)
392 #define PMC_ID_TO_CPU(ID)       (((ID) & 0xFF000000) >> 24)
393 #define PMC_ID_MAKE_ID(CPU,MODE,CLASS,ROWINDEX)                 \
394         ((((CPU) & 0xFF) << 24) | (((MODE) & 0xFF) << 16) |     \
395         (((CLASS) & 0xFF) << 8) | ((ROWINDEX) & 0xFF))
396
397 /*
398  * Data structures for system calls supported by the pmc driver.
399  */
400
401 /*
402  * OP PMCALLOCATE
403  *
404  * Allocate a PMC on the named CPU.
405  */
406
407 #define PMC_CPU_ANY     ~0
408
409 struct pmc_op_pmcallocate {
410         uint32_t        pm_caps;        /* PMC_CAP_* */
411         uint32_t        pm_cpu;         /* CPU number or PMC_CPU_ANY */
412         enum pmc_class  pm_class;       /* class of PMC desired */
413         enum pmc_event  pm_ev;          /* [enum pmc_event] desired */
414         uint32_t        pm_flags;       /* additional modifiers PMC_F_* */
415         enum pmc_mode   pm_mode;        /* desired mode */
416         pmc_id_t        pm_pmcid;       /* [return] process pmc id */
417
418         union pmc_md_op_pmcallocate pm_md; /* MD layer extensions */
419 };
420
421 /*
422  * OP PMCADMIN
423  *
424  * Set the administrative state (i.e., whether enabled or disabled) of
425  * a PMC 'pm_pmc' on CPU 'pm_cpu'.  Note that 'pm_pmc' specifies an
426  * absolute PMC number and need not have been first allocated by the
427  * calling process.
428  */
429
430 struct pmc_op_pmcadmin {
431         int             pm_cpu;         /* CPU# */
432         uint32_t        pm_flags;       /* flags */
433         int             pm_pmc;         /* PMC# */
434         enum pmc_state  pm_state;       /* desired state */
435 };
436
437 /*
438  * OP PMCATTACH / OP PMCDETACH
439  *
440  * Attach/detach a PMC and a process.
441  */
442
443 struct pmc_op_pmcattach {
444         pmc_id_t        pm_pmc;         /* PMC to attach to */
445         pid_t           pm_pid;         /* target process */
446 };
447
448 /*
449  * OP PMCSETCOUNT
450  *
451  * Set the sampling rate (i.e., the reload count) for statistical counters.
452  * 'pm_pmcid' need to have been previously allocated using PMCALLOCATE.
453  */
454
455 struct pmc_op_pmcsetcount {
456         pmc_value_t     pm_count;       /* initial/sample count */
457         pmc_id_t        pm_pmcid;       /* PMC id to set */
458 };
459
460
461 /*
462  * OP PMCRW
463  *
464  * Read the value of a PMC named by 'pm_pmcid'.  'pm_pmcid' needs
465  * to have been previously allocated using PMCALLOCATE.
466  */
467
468
469 struct pmc_op_pmcrw {
470         uint32_t        pm_flags;       /* PMC_F_{OLD,NEW}VALUE*/
471         pmc_id_t        pm_pmcid;       /* pmc id */
472         pmc_value_t     pm_value;       /* new&returned value */
473 };
474
475
476 /*
477  * OP GETPMCINFO
478  *
479  * retrieve PMC state for a named CPU.  The caller is expected to
480  * allocate 'npmc' * 'struct pmc_info' bytes of space for the return
481  * values.
482  */
483
484 struct pmc_info {
485         char            pm_name[PMC_NAME_MAX]; /* pmc name */
486         enum pmc_class  pm_class;       /* enum pmc_class */
487         int             pm_enabled;     /* whether enabled */
488         enum pmc_disp   pm_rowdisp;     /* FREE, THREAD or STANDLONE */
489         pid_t           pm_ownerpid;    /* owner, or -1 */
490         enum pmc_mode   pm_mode;        /* current mode [enum pmc_mode] */
491         enum pmc_event  pm_event;       /* current event */
492         uint32_t        pm_flags;       /* current flags */
493         pmc_value_t     pm_reloadcount; /* sampling counters only */
494 };
495
496 struct pmc_op_getpmcinfo {
497         int32_t         pm_cpu;         /* 0 <= cpu < mp_maxid */
498         struct pmc_info pm_pmcs[];      /* space for 'npmc' structures */
499 };
500
501
502 /*
503  * OP GETCPUINFO
504  *
505  * Retrieve system CPU information.
506  */
507
508
509 struct pmc_classinfo {
510         enum pmc_class  pm_class;       /* class id */
511         uint32_t        pm_caps;        /* counter capabilities */
512         uint32_t        pm_width;       /* width of the PMC */
513         uint32_t        pm_num;         /* number of PMCs in class */
514 };
515
516 struct pmc_op_getcpuinfo {
517         enum pmc_cputype pm_cputype; /* what kind of CPU */
518         uint32_t        pm_ncpu;    /* max CPU number */
519         uint32_t        pm_npmc;    /* #PMCs per CPU */
520         uint32_t        pm_nclass;  /* #classes of PMCs */
521         struct pmc_classinfo  pm_classes[PMC_CLASS_MAX];
522 };
523
524 /*
525  * OP CONFIGURELOG
526  *
527  * Configure a log file for writing system-wide statistics to.
528  */
529
530 struct pmc_op_configurelog {
531         int             pm_flags;
532         int             pm_logfd;   /* logfile fd (or -1) */
533 };
534
535 /*
536  * OP GETDRIVERSTATS
537  *
538  * Retrieve pmc(4) driver-wide statistics.
539  */
540
541 struct pmc_op_getdriverstats {
542         int     pm_intr_ignored;        /* #interrupts ignored */
543         int     pm_intr_processed;      /* #interrupts processed */
544         int     pm_intr_bufferfull;     /* #interrupts with ENOSPC */
545         int     pm_syscalls;            /* #syscalls */
546         int     pm_syscall_errors;      /* #syscalls with errors */
547         int     pm_buffer_requests;     /* #buffer requests */
548         int     pm_buffer_requests_failed; /* #failed buffer requests */
549         int     pm_log_sweeps;          /* #sample buffer processing passes */
550 };
551
552 /*
553  * OP RELEASE / OP START / OP STOP
554  *
555  * Simple operations on a PMC id.
556  */
557
558 struct pmc_op_simple {
559         pmc_id_t        pm_pmcid;
560 };
561
562 /*
563  * OP WRITELOG
564  *
565  * Flush the current log buffer and write 4 bytes of user data to it.
566  */
567
568 struct pmc_op_writelog {
569         uint32_t        pm_userdata;
570 };
571
572 /*
573  * OP GETMSR
574  *
575  * Retrieve the machine specific address assoicated with the allocated
576  * PMC.  This number can be used subsequently with a read-performance-counter
577  * instruction.
578  */
579
580 struct pmc_op_getmsr {
581         uint32_t        pm_msr;         /* machine specific address */
582         pmc_id_t        pm_pmcid;       /* allocated pmc id */
583 };
584
585 /*
586  * OP GETDYNEVENTINFO
587  *
588  * Retrieve a PMC dynamic class events list.
589  */
590
591 struct pmc_dyn_event_descr {
592         char            pm_ev_name[PMC_NAME_MAX];
593         enum pmc_event  pm_ev_code;
594 };
595
596 struct pmc_op_getdyneventinfo {
597         enum pmc_class                  pm_class;
598         unsigned int                    pm_nevent;
599         struct pmc_dyn_event_descr      pm_events[PMC_EV_DYN_COUNT];
600 };
601
602 #ifdef _KERNEL
603
604 #include <sys/malloc.h>
605 #include <sys/sysctl.h>
606
607 #include <machine/frame.h>
608
609 #define PMC_HASH_SIZE                           1024
610 #define PMC_MTXPOOL_SIZE                        2048
611 #define PMC_LOG_BUFFER_SIZE                     4
612 #define PMC_NLOGBUFFERS                         1024
613 #define PMC_NSAMPLES                            1024
614 #define PMC_CALLCHAIN_DEPTH                     32
615
616 #define PMC_SYSCTL_NAME_PREFIX "kern." PMC_MODULE_NAME "."
617
618 /*
619  * Locking keys
620  *
621  * (b) - pmc_bufferlist_mtx (spin lock)
622  * (k) - pmc_kthread_mtx (sleep lock)
623  * (o) - po->po_mtx (spin lock)
624  */
625
626 /*
627  * PMC commands
628  */
629
630 struct pmc_syscall_args {
631         register_t      pmop_code;      /* one of PMC_OP_* */
632         void            *pmop_data;     /* syscall parameter */
633 };
634
635 /*
636  * Interface to processor specific s1tuff
637  */
638
639 /*
640  * struct pmc_descr
641  *
642  * Machine independent (i.e., the common parts) of a human readable
643  * PMC description.
644  */
645
646 struct pmc_descr {
647         char            pd_name[PMC_NAME_MAX]; /* name */
648         uint32_t        pd_caps;        /* capabilities */
649         enum pmc_class  pd_class;       /* class of the PMC */
650         uint32_t        pd_width;       /* width in bits */
651 };
652
653 /*
654  * struct pmc_target
655  *
656  * This structure records all the target processes associated with a
657  * PMC.
658  */
659
660 struct pmc_target {
661         LIST_ENTRY(pmc_target)  pt_next;
662         struct pmc_process      *pt_process; /* target descriptor */
663 };
664
665 /*
666  * struct pmc
667  *
668  * Describes each allocated PMC.
669  *
670  * Each PMC has precisely one owner, namely the process that allocated
671  * the PMC.
672  *
673  * A PMC may be attached to multiple target processes.  The
674  * 'pm_targets' field links all the target processes being monitored
675  * by this PMC.
676  *
677  * The 'pm_savedvalue' field is protected by a mutex.
678  *
679  * On a multi-cpu machine, multiple target threads associated with a
680  * process-virtual PMC could be concurrently executing on different
681  * CPUs.  The 'pm_runcount' field is atomically incremented every time
682  * the PMC gets scheduled on a CPU and atomically decremented when it
683  * get descheduled.  Deletion of a PMC is only permitted when this
684  * field is '0'.
685  *
686  */
687
688 struct pmc {
689         LIST_HEAD(,pmc_target)  pm_targets;     /* list of target processes */
690         LIST_ENTRY(pmc)         pm_next;        /* owner's list */
691
692         /*
693          * System-wide PMCs are allocated on a CPU and are not moved
694          * around.  For system-wide PMCs we record the CPU the PMC was
695          * allocated on in the 'CPU' field of the pmc ID.
696          *
697          * Virtual PMCs run on whichever CPU is currently executing
698          * their targets' threads.  For these PMCs we need to save
699          * their current PMC counter values when they are taken off
700          * CPU.
701          */
702
703         union {
704                 pmc_value_t     pm_savedvalue;  /* Virtual PMCS */
705         } pm_gv;
706
707         /*
708          * For sampling mode PMCs, we keep track of the PMC's "reload
709          * count", which is the counter value to be loaded in when
710          * arming the PMC for the next counting session.  For counting
711          * modes on PMCs that are read-only (e.g., the x86 TSC), we
712          * keep track of the initial value at the start of
713          * counting-mode operation.
714          */
715
716         union {
717                 pmc_value_t     pm_reloadcount; /* sampling PMC modes */
718                 pmc_value_t     pm_initial;     /* counting PMC modes */
719         } pm_sc;
720
721         uint32_t        pm_stalled;     /* marks stalled sampling PMCs */
722         uint32_t        pm_caps;        /* PMC capabilities */
723         enum pmc_event  pm_event;       /* event being measured */
724         uint32_t        pm_flags;       /* additional flags PMC_F_... */
725         struct pmc_owner *pm_owner;     /* owner thread state */
726         int             pm_runcount;    /* #cpus currently on */
727         enum pmc_state  pm_state;       /* current PMC state */
728
729         /*
730          * The PMC ID field encodes the row-index for the PMC, its
731          * mode, class and the CPU# associated with the PMC.
732          */
733
734         pmc_id_t        pm_id;          /* allocated PMC id */
735
736         /* md extensions */
737         union pmc_md_pmc        pm_md;
738 };
739
740 /*
741  * Accessor macros for 'struct pmc'
742  */
743
744 #define PMC_TO_MODE(P)          PMC_ID_TO_MODE((P)->pm_id)
745 #define PMC_TO_CLASS(P)         PMC_ID_TO_CLASS((P)->pm_id)
746 #define PMC_TO_ROWINDEX(P)      PMC_ID_TO_ROWINDEX((P)->pm_id)
747 #define PMC_TO_CPU(P)           PMC_ID_TO_CPU((P)->pm_id)
748
749
750 /*
751  * struct pmc_process
752  *
753  * Record a 'target' process being profiled.
754  *
755  * The target process being profiled could be different from the owner
756  * process which allocated the PMCs.  Each target process descriptor
757  * is associated with NHWPMC 'struct pmc *' pointers.  Each PMC at a
758  * given hardware row-index 'n' will use slot 'n' of the 'pp_pmcs[]'
759  * array.  The size of this structure is thus PMC architecture
760  * dependent.
761  *
762  */
763
764 struct pmc_targetstate {
765         struct pmc      *pp_pmc;   /* target PMC */
766         pmc_value_t     pp_pmcval; /* per-process value */
767 };
768
769 struct pmc_process {
770         LIST_ENTRY(pmc_process) pp_next;        /* hash chain */
771         int             pp_refcnt;              /* reference count */
772         uint32_t        pp_flags;               /* flags PMC_PP_* */
773         struct proc     *pp_proc;               /* target thread */
774         struct pmc_targetstate pp_pmcs[];       /* NHWPMCs */
775 };
776
777 #define PMC_PP_ENABLE_MSR_ACCESS        0x00000001
778
779 /*
780  * struct pmc_owner
781  *
782  * We associate a PMC with an 'owner' process.
783  *
784  * A process can be associated with 0..NCPUS*NHWPMC PMCs during its
785  * lifetime, where NCPUS is the numbers of CPUS in the system and
786  * NHWPMC is the number of hardware PMCs per CPU.  These are
787  * maintained in the list headed by the 'po_pmcs' to save on space.
788  *
789  */
790
791 struct pmc_owner  {
792         LIST_ENTRY(pmc_owner)   po_next;        /* hash chain */
793         LIST_ENTRY(pmc_owner)   po_ssnext;      /* list of SS PMC owners */
794         LIST_HEAD(, pmc)        po_pmcs;        /* owned PMC list */
795         TAILQ_HEAD(, pmclog_buffer) po_logbuffers; /* (o) logbuffer list */
796         struct mtx              po_mtx;         /* spin lock for (o) */
797         struct proc             *po_owner;      /* owner proc */
798         uint32_t                po_flags;       /* (k) flags PMC_PO_* */
799         struct proc             *po_kthread;    /* (k) helper kthread */
800         struct pmclog_buffer    *po_curbuf;     /* current log buffer */
801         struct file             *po_file;       /* file reference */
802         int                     po_error;       /* recorded error */
803         short                   po_sscount;     /* # SS PMCs owned */
804         short                   po_logprocmaps; /* global mappings done */
805 };
806
807 #define PMC_PO_OWNS_LOGFILE             0x00000001 /* has a log file */
808 #define PMC_PO_SHUTDOWN                 0x00000010 /* in the process of shutdown */
809 #define PMC_PO_INITIAL_MAPPINGS_DONE    0x00000020
810
811 /*
812  * struct pmc_hw -- describe the state of the PMC hardware
813  *
814  * When in use, a HW PMC is associated with one allocated 'struct pmc'
815  * pointed to by field 'phw_pmc'.  When inactive, this field is NULL.
816  *
817  * On an SMP box, one or more HW PMC's in process virtual mode with
818  * the same 'phw_pmc' could be executing on different CPUs.  In order
819  * to handle this case correctly, we need to ensure that only
820  * incremental counts get added to the saved value in the associated
821  * 'struct pmc'.  The 'phw_save' field is used to keep the saved PMC
822  * value at the time the hardware is started during this context
823  * switch (i.e., the difference between the new (hardware) count and
824  * the saved count is atomically added to the count field in 'struct
825  * pmc' at context switch time).
826  *
827  */
828
829 struct pmc_hw {
830         uint32_t        phw_state;      /* see PHW_* macros below */
831         struct pmc      *phw_pmc;       /* current thread PMC */
832 };
833
834 #define PMC_PHW_RI_MASK         0x000000FF
835 #define PMC_PHW_CPU_SHIFT       8
836 #define PMC_PHW_CPU_MASK        0x0000FF00
837 #define PMC_PHW_FLAGS_SHIFT     16
838 #define PMC_PHW_FLAGS_MASK      0xFFFF0000
839
840 #define PMC_PHW_INDEX_TO_STATE(ri)      ((ri) & PMC_PHW_RI_MASK)
841 #define PMC_PHW_STATE_TO_INDEX(state)   ((state) & PMC_PHW_RI_MASK)
842 #define PMC_PHW_CPU_TO_STATE(cpu)       (((cpu) << PMC_PHW_CPU_SHIFT) & \
843         PMC_PHW_CPU_MASK)
844 #define PMC_PHW_STATE_TO_CPU(state)     (((state) & PMC_PHW_CPU_MASK) >> \
845         PMC_PHW_CPU_SHIFT)
846 #define PMC_PHW_FLAGS_TO_STATE(flags)   (((flags) << PMC_PHW_FLAGS_SHIFT) & \
847         PMC_PHW_FLAGS_MASK)
848 #define PMC_PHW_STATE_TO_FLAGS(state)   (((state) & PMC_PHW_FLAGS_MASK) >> \
849         PMC_PHW_FLAGS_SHIFT)
850 #define PMC_PHW_FLAG_IS_ENABLED         (PMC_PHW_FLAGS_TO_STATE(0x01))
851 #define PMC_PHW_FLAG_IS_SHAREABLE       (PMC_PHW_FLAGS_TO_STATE(0x02))
852
853 /*
854  * struct pmc_sample
855  *
856  * Space for N (tunable) PC samples and associated control data.
857  */
858
859 struct pmc_sample {
860         uint16_t                ps_nsamples;    /* callchain depth */
861         uint8_t                 ps_cpu;         /* cpu number */
862         uint8_t                 ps_flags;       /* other flags */
863         pid_t                   ps_pid;         /* process PID or -1 */
864         struct thread           *ps_td;         /* which thread */
865         struct pmc              *ps_pmc;        /* interrupting PMC */
866         uintptr_t               *ps_pc;         /* (const) callchain start */
867 };
868
869 #define         PMC_SAMPLE_FREE         ((uint16_t) 0)
870 #define         PMC_SAMPLE_INUSE        ((uint16_t) 0xFFFF)
871
872 struct pmc_samplebuffer {
873         struct pmc_sample * volatile ps_read;   /* read pointer */
874         struct pmc_sample * volatile ps_write;  /* write pointer */
875         uintptr_t               *ps_callchains; /* all saved call chains */
876         struct pmc_sample       *ps_fence;      /* one beyond ps_samples[] */
877         struct pmc_sample       ps_samples[];   /* array of sample entries */
878 };
879
880
881 /*
882  * struct pmc_cpustate
883  *
884  * A CPU is modelled as a collection of HW PMCs with space for additional
885  * flags.
886  */
887
888 struct pmc_cpu {
889         uint32_t        pc_state;       /* physical cpu number + flags */
890         struct pmc_samplebuffer *pc_sb[2]; /* space for samples */
891         struct pmc_hw   *pc_hwpmcs[];   /* 'npmc' pointers */
892 };
893
894 #define PMC_PCPU_CPU_MASK               0x000000FF
895 #define PMC_PCPU_FLAGS_MASK             0xFFFFFF00
896 #define PMC_PCPU_FLAGS_SHIFT            8
897 #define PMC_PCPU_STATE_TO_CPU(S)        ((S) & PMC_PCPU_CPU_MASK)
898 #define PMC_PCPU_STATE_TO_FLAGS(S)      (((S) & PMC_PCPU_FLAGS_MASK) >> PMC_PCPU_FLAGS_SHIFT)
899 #define PMC_PCPU_FLAGS_TO_STATE(F)      (((F) << PMC_PCPU_FLAGS_SHIFT) & PMC_PCPU_FLAGS_MASK)
900 #define PMC_PCPU_CPU_TO_STATE(C)        ((C) & PMC_PCPU_CPU_MASK)
901 #define PMC_PCPU_FLAG_HTT               (PMC_PCPU_FLAGS_TO_STATE(0x1))
902
903 /*
904  * struct pmc_binding
905  *
906  * CPU binding information.
907  */
908
909 struct pmc_binding {
910         int     pb_bound;       /* is bound? */
911         int     pb_cpu;         /* if so, to which CPU */
912 };
913
914
915 struct pmc_mdep;
916
917 /*
918  * struct pmc_classdep
919  *
920  * PMC class-dependent operations.
921  */
922 struct pmc_classdep {
923         uint32_t        pcd_caps;       /* class capabilities */
924         enum pmc_class  pcd_class;      /* class id */
925         int             pcd_num;        /* number of PMCs */
926         int             pcd_ri;         /* row index of the first PMC in class */
927         int             pcd_width;      /* width of the PMC */
928
929         /* configuring/reading/writing the hardware PMCs */
930         int (*pcd_config_pmc)(int _cpu, int _ri, struct pmc *_pm);
931         int (*pcd_get_config)(int _cpu, int _ri, struct pmc **_ppm);
932         int (*pcd_read_pmc)(int _cpu, int _ri, pmc_value_t *_value);
933         int (*pcd_write_pmc)(int _cpu, int _ri, pmc_value_t _value);
934
935         /* pmc allocation/release */
936         int (*pcd_allocate_pmc)(int _cpu, int _ri, struct pmc *_t,
937                 const struct pmc_op_pmcallocate *_a);
938         int (*pcd_release_pmc)(int _cpu, int _ri, struct pmc *_pm);
939
940         /* starting and stopping PMCs */
941         int (*pcd_start_pmc)(int _cpu, int _ri);
942         int (*pcd_stop_pmc)(int _cpu, int _ri);
943
944         /* description */
945         int (*pcd_describe)(int _cpu, int _ri, struct pmc_info *_pi,
946                 struct pmc **_ppmc);
947
948         /* class-dependent initialization & finalization */
949         int (*pcd_pcpu_init)(struct pmc_mdep *_md, int _cpu);
950         int (*pcd_pcpu_fini)(struct pmc_mdep *_md, int _cpu);
951
952         /* machine-specific interface */
953         int (*pcd_get_msr)(int _ri, uint32_t *_msr);
954 };
955
956 /*
957  * struct pmc_mdep
958  *
959  * Machine dependent bits needed per CPU type.
960  */
961
962 struct pmc_mdep  {
963         uint32_t        pmd_cputype;    /* from enum pmc_cputype */
964         uint32_t        pmd_npmc;       /* number of PMCs per CPU */
965         uint32_t        pmd_nclass;     /* number of PMC classes present */
966
967         /*
968          * Machine dependent methods.
969          */
970
971         /* per-cpu initialization and finalization */
972         int (*pmd_pcpu_init)(struct pmc_mdep *_md, int _cpu);
973         int (*pmd_pcpu_fini)(struct pmc_mdep *_md, int _cpu);
974
975         /* thread context switch in/out */
976         int (*pmd_switch_in)(struct pmc_cpu *_p, struct pmc_process *_pp);
977         int (*pmd_switch_out)(struct pmc_cpu *_p, struct pmc_process *_pp);
978
979         /* handle a PMC interrupt */
980         int (*pmd_intr)(int _cpu, struct trapframe *_tf);
981
982         /*
983          * PMC class dependent information.
984          */
985         struct pmc_classdep pmd_classdep[];
986 };
987
988 /*
989  * Per-CPU state.  This is an array of 'mp_ncpu' pointers
990  * to struct pmc_cpu descriptors.
991  */
992
993 extern struct pmc_cpu **pmc_pcpu;
994
995 /* driver statistics */
996 extern struct pmc_op_getdriverstats pmc_stats;
997
998 #if     defined(DEBUG)
999
1000 /* debug flags, major flag groups */
1001 struct pmc_debugflags {
1002         int     pdb_CPU;
1003         int     pdb_CSW;
1004         int     pdb_LOG;
1005         int     pdb_MDP;
1006         int     pdb_MOD;
1007         int     pdb_OWN;
1008         int     pdb_PMC;
1009         int     pdb_PRC;
1010         int     pdb_SAM;
1011 };
1012
1013 extern struct pmc_debugflags pmc_debugflags;
1014
1015 #define PMC_DEBUG_STRSIZE               128
1016 #define PMC_DEBUG_DEFAULT_FLAGS         { 0, 0, 0, 0, 0, 0, 0, 0 }
1017
1018 #define PMCDBG(M,N,L,F,...) do {                                        \
1019         if (pmc_debugflags.pdb_ ## M & (1 << PMC_DEBUG_MIN_ ## N))      \
1020                 printf(#M ":" #N ":" #L  ": " F "\n", __VA_ARGS__);     \
1021 } while (0)
1022
1023 /* Major numbers */
1024 #define PMC_DEBUG_MAJ_CPU               0 /* cpu switches */
1025 #define PMC_DEBUG_MAJ_CSW               1 /* context switches */
1026 #define PMC_DEBUG_MAJ_LOG               2 /* logging */
1027 #define PMC_DEBUG_MAJ_MDP               3 /* machine dependent */
1028 #define PMC_DEBUG_MAJ_MOD               4 /* misc module infrastructure */
1029 #define PMC_DEBUG_MAJ_OWN               5 /* owner */
1030 #define PMC_DEBUG_MAJ_PMC               6 /* pmc management */
1031 #define PMC_DEBUG_MAJ_PRC               7 /* processes */
1032 #define PMC_DEBUG_MAJ_SAM               8 /* sampling */
1033
1034 /* Minor numbers */
1035
1036 /* Common (8 bits) */
1037 #define PMC_DEBUG_MIN_ALL               0 /* allocation */
1038 #define PMC_DEBUG_MIN_REL               1 /* release */
1039 #define PMC_DEBUG_MIN_OPS               2 /* ops: start, stop, ... */
1040 #define PMC_DEBUG_MIN_INI               3 /* init */
1041 #define PMC_DEBUG_MIN_FND               4 /* find */
1042
1043 /* MODULE */
1044 #define PMC_DEBUG_MIN_PMH              14 /* pmc_hook */
1045 #define PMC_DEBUG_MIN_PMS              15 /* pmc_syscall */
1046
1047 /* OWN */
1048 #define PMC_DEBUG_MIN_ORM               8 /* owner remove */
1049 #define PMC_DEBUG_MIN_OMR               9 /* owner maybe remove */
1050
1051 /* PROCESSES */
1052 #define PMC_DEBUG_MIN_TLK               8 /* link target */
1053 #define PMC_DEBUG_MIN_TUL               9 /* unlink target */
1054 #define PMC_DEBUG_MIN_EXT              10 /* process exit */
1055 #define PMC_DEBUG_MIN_EXC              11 /* process exec */
1056 #define PMC_DEBUG_MIN_FRK              12 /* process fork */
1057 #define PMC_DEBUG_MIN_ATT              13 /* attach/detach */
1058 #define PMC_DEBUG_MIN_SIG              14 /* signalling */
1059
1060 /* CONTEXT SWITCHES */
1061 #define PMC_DEBUG_MIN_SWI               8 /* switch in */
1062 #define PMC_DEBUG_MIN_SWO               9 /* switch out */
1063
1064 /* PMC */
1065 #define PMC_DEBUG_MIN_REG               8 /* pmc register */
1066 #define PMC_DEBUG_MIN_ALR               9 /* allocate row */
1067
1068 /* MACHINE DEPENDENT LAYER */
1069 #define PMC_DEBUG_MIN_REA               8 /* read */
1070 #define PMC_DEBUG_MIN_WRI               9 /* write */
1071 #define PMC_DEBUG_MIN_CFG              10 /* config */
1072 #define PMC_DEBUG_MIN_STA              11 /* start */
1073 #define PMC_DEBUG_MIN_STO              12 /* stop */
1074 #define PMC_DEBUG_MIN_INT              13 /* interrupts */
1075
1076 /* CPU */
1077 #define PMC_DEBUG_MIN_BND               8 /* bind */
1078 #define PMC_DEBUG_MIN_SEL               9 /* select */
1079
1080 /* LOG */
1081 #define PMC_DEBUG_MIN_GTB               8 /* get buf */
1082 #define PMC_DEBUG_MIN_SIO               9 /* schedule i/o */
1083 #define PMC_DEBUG_MIN_FLS              10 /* flush */
1084 #define PMC_DEBUG_MIN_SAM              11 /* sample */
1085 #define PMC_DEBUG_MIN_CLO              12 /* close */
1086
1087 #else
1088 #define PMCDBG(M,N,L,F,...)             /* nothing */
1089 #endif
1090
1091 /* declare a dedicated memory pool */
1092 MALLOC_DECLARE(M_PMC);
1093
1094 /*
1095  * Functions
1096  */
1097
1098 struct pmc_mdep *pmc_md_initialize(void);       /* MD init function */
1099 void    pmc_md_finalize(struct pmc_mdep *_md);  /* MD fini function */
1100 int     pmc_getrowdisp(int _ri);
1101 int     pmc_process_interrupt(int _cpu, int _soft, struct pmc *_pm,
1102     struct trapframe *_tf, int _inuserspace);
1103 int     pmc_save_kernel_callchain(uintptr_t *_cc, int _maxsamples,
1104     struct trapframe *_tf);
1105 int     pmc_save_user_callchain(uintptr_t *_cc, int _maxsamples,
1106     struct trapframe *_tf);
1107 struct pmc_mdep *pmc_mdep_alloc(int nclasses);
1108 void pmc_mdep_free(struct pmc_mdep *md);
1109 #endif /* _KERNEL */
1110 #endif /* _SYS_PMC_H_ */