1da4e1e31SAleksandr Rybalko.\" Copyright (c) 2021 ARM Ltd. All rights reserved. 2da4e1e31SAleksandr Rybalko.\" 3da4e1e31SAleksandr Rybalko.\" Redistribution and use in source and binary forms, with or without 4da4e1e31SAleksandr Rybalko.\" modification, are permitted provided that the following conditions 5da4e1e31SAleksandr Rybalko.\" are met: 6da4e1e31SAleksandr Rybalko.\" 1. Redistributions of source code must retain the above copyright 7da4e1e31SAleksandr Rybalko.\" notice, this list of conditions and the following disclaimer. 8da4e1e31SAleksandr Rybalko.\" 2. Redistributions in binary form must reproduce the above copyright 9da4e1e31SAleksandr Rybalko.\" notice, this list of conditions and the following disclaimer in the 10da4e1e31SAleksandr Rybalko.\" documentation and/or other materials provided with the distribution. 11da4e1e31SAleksandr Rybalko.\" 12da4e1e31SAleksandr Rybalko.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 13da4e1e31SAleksandr Rybalko.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14da4e1e31SAleksandr Rybalko.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 15da4e1e31SAleksandr Rybalko.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 16da4e1e31SAleksandr Rybalko.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 17da4e1e31SAleksandr Rybalko.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 18da4e1e31SAleksandr Rybalko.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 19da4e1e31SAleksandr Rybalko.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 20da4e1e31SAleksandr Rybalko.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 21da4e1e31SAleksandr Rybalko.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 22da4e1e31SAleksandr Rybalko.\" SUCH DAMAGE. 23da4e1e31SAleksandr Rybalko.\" 24da4e1e31SAleksandr Rybalko.Dd December 19, 2021 25da4e1e31SAleksandr Rybalko.Dt PMC.CMN-600 3 26da4e1e31SAleksandr Rybalko.Os 27da4e1e31SAleksandr Rybalko.Sh NAME 28da4e1e31SAleksandr Rybalko.Nm pmc.cmn-600 29da4e1e31SAleksandr Rybalko.Nd Library for accessing the Arm CoreLink CMN-600 Coherent Mesh Network 30da4e1e31SAleksandr RybalkoController performance counter events 31da4e1e31SAleksandr Rybalko.Sh LIBRARY 32da4e1e31SAleksandr Rybalko.Lb libpmc 33da4e1e31SAleksandr Rybalko.Sh SYNOPSIS 34da4e1e31SAleksandr Rybalko.In pmc.h 35da4e1e31SAleksandr Rybalko.Sh DESCRIPTION 36da4e1e31SAleksandr RybalkoCMN-600 PMU counters may be configured to count any one of a defined set of 37da4e1e31SAleksandr Rybalkohardware events. 38da4e1e31SAleksandr RybalkoUnlike other performance counters, counters for the CMN-600 require the 39da4e1e31SAleksandr Rybalkonode ID to set up. 40da4e1e31SAleksandr Rybalko.Pp 41da4e1e31SAleksandr RybalkoNode ID information currently can be obtained one of two ways. 42da4e1e31SAleksandr RybalkoUsing bootverbose, for example set sysctl debug.bootverbose=1 and then load the 43da4e1e31SAleksandr Rybalko.Xr hwpmc 4 44da4e1e31SAleksandr RybalkoKLD module. 45da4e1e31SAleksandr RybalkoThe cmn600 module will be loaded automatically as a dependency: 46da4e1e31SAleksandr Rybalko.Dl $ sysctl debug.bootverbose=1 47da4e1e31SAleksandr Rybalko.Dl $ kldload hwpmc 48da4e1e31SAleksandr RybalkoAnother way is to use sysctl to trigger 49da4e1e31SAleksandr Rybalkodump of nodes tree to system console: 50da4e1e31SAleksandr Rybalko.Dl $ sysctl dev.cmn600.0.dump_nodes=1 51da4e1e31SAleksandr Rybalko.Pp 52da4e1e31SAleksandr RybalkoSome BIOS versions of dual-socket machines have no NUMA domain information in 53da4e1e31SAleksandr RybalkoACPI. 54da4e1e31SAleksandr RybalkoIn such cases, to get more accurate events statistics, set the kernel 55da4e1e31SAleksandr Rybalkoenvironment variable hint.cmn600.{unit}.domain={value}. 56da4e1e31SAleksandr RybalkoWhere {unit} is a cmn600 device unit number and {value} is the NUMA domain of 57da4e1e31SAleksandr Rybalkothe CPU package containing that CMN-600 controller. 58da4e1e31SAleksandr RybalkoExample: 59da4e1e31SAleksandr Rybalko.Dl $ kenv hint.cmn600.0.domain=0 60da4e1e31SAleksandr Rybalko.Dl $ kenv hint.cmn600.1.domain=1 61da4e1e31SAleksandr Rybalko.Dl $ kldunload hwpmc cmn600 62da4e1e31SAleksandr Rybalko.Dl $ kldload hwpmc 63da4e1e31SAleksandr Rybalko.Pp 64da4e1e31SAleksandr RybalkoArm CoreLink CMN-600 Coherent Mesh Network Controller performance counters are 65da4e1e31SAleksandr Rybalkodocumented in 66da4e1e31SAleksandr Rybalko.Rs 67da4e1e31SAleksandr Rybalko.%B "Arm CoreLink CMN-600 Coherent Mesh Network Technical Reference Manual" 68da4e1e31SAleksandr Rybalko.%T "Revision: r3p2" 69da4e1e31SAleksandr Rybalko.%D 2020 70da4e1e31SAleksandr Rybalko.%Q "ARM Limited" 71da4e1e31SAleksandr Rybalko.Re 72da4e1e31SAleksandr Rybalko.Ss PMC Capabilities 73da4e1e31SAleksandr RybalkoCMN-600 PMU counters support the following capabilities: 74da4e1e31SAleksandr Rybalko.Bl -column "PMC_CAP_INTERRUPT" "Support" 75da4e1e31SAleksandr Rybalko.It Sy Capability Ta Em Support 76da4e1e31SAleksandr Rybalko.It PMC_CAP_CASCADE Ta \&No 77da4e1e31SAleksandr Rybalko.It PMC_CAP_EDGE Ta \&No 78da4e1e31SAleksandr Rybalko.It PMC_CAP_INTERRUPT Ta Yes 79da4e1e31SAleksandr Rybalko.It PMC_CAP_INVERT Ta \&No 80da4e1e31SAleksandr Rybalko.It PMC_CAP_READ Ta Yes 81da4e1e31SAleksandr Rybalko.It PMC_CAP_PRECISE Ta \&No 82da4e1e31SAleksandr Rybalko.It PMC_CAP_SYSTEM Ta Yes 83da4e1e31SAleksandr Rybalko.It PMC_CAP_TAGGING Ta \&No 84da4e1e31SAleksandr Rybalko.It PMC_CAP_THRESHOLD Ta Yes 85da4e1e31SAleksandr Rybalko.It PMC_CAP_USER Ta \&No 86da4e1e31SAleksandr Rybalko.It PMC_CAP_WRITE Ta Yes 87da4e1e31SAleksandr Rybalko.El 88da4e1e31SAleksandr Rybalko.Ss Event Qualifiers 89da4e1e31SAleksandr RybalkoEvent specifiers for these PMCs support the following common 90da4e1e31SAleksandr Rybalkoqualifiers: 91da4e1e31SAleksandr Rybalko.Bl -tag -width indent 92da4e1e31SAleksandr Rybalko.It Li nodeid= Ns Ar nodeid 93da4e1e31SAleksandr RybalkoRequest counting for specific event at node 94da4e1e31SAleksandr Rybalko.Ar nodeid . 95da4e1e31SAleksandr Rybalko.It Li occupancy= Ns Ar value 96da4e1e31SAleksandr RybalkoFiltering by occupancy type. 97da4e1e31SAleksandr Rybalko.It Li xpport= Ns Ar port 98da4e1e31SAleksandr RybalkoCount only events matched by 99da4e1e31SAleksandr Rybalko.Ar port . 100da4e1e31SAleksandr Rybalko(East, West, North, South, devport0, devport1 or numeric 0 to 5) 101da4e1e31SAleksandr Rybalko.It Li xpchannel= Ns Ar channel 102da4e1e31SAleksandr RybalkoFilter events by XP node channel. 103da4e1e31SAleksandr Rybalko(REQ, RSP, SNP, DAT or 0, 1, 2, 3) 104da4e1e31SAleksandr Rybalko.El 105da4e1e31SAleksandr Rybalko.Ss Class Name Prefix 106da4e1e31SAleksandr RybalkoThese PMCs are named using a class name prefix of 107da4e1e31SAleksandr Rybalko.Dq Li CMN600_PMU_ . 108da4e1e31SAleksandr Rybalko.Ss Event Specifiers 109da4e1e31SAleksandr RybalkoThe following list of PMC events are available: 110da4e1e31SAleksandr Rybalko.Ss DVM node events 111da4e1e31SAleksandr Rybalko.Bl -tag -width indent 112da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_dvmop 113da4e1e31SAleksandr RybalkoNumber of DVMOP requests received. 114da4e1e31SAleksandr RybalkoThis includes all the sub-types include TLB invalidate, Branch predictor 115da4e1e31SAleksandr Rybalkoinvalidate, instruction cache (physical and virtual) invalidate. 116da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_dvmsync 117da4e1e31SAleksandr RybalkoNumber of DVM Sync requests received. 118da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_dvmop_vmid_filtered 119da4e1e31SAleksandr RybalkoNumber of incoming DVMOP requests that are subject to VMID based filtering. 120da4e1e31SAleksandr RybalkoThis is a measure of the effectiveness of VMID based filtering and potential 121da4e1e31SAleksandr Rybalkoreduction in DVM snoops. 122da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_retried 123da4e1e31SAleksandr RybalkoNumber of incoming requests that are retried. 124da4e1e31SAleksandr RybalkoThis is a measure of the retry rate. 125da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_trk_occupancy 126da4e1e31SAleksandr RybalkoCounts the tracker occupancy in DN. "occupancy": All, dvmop, dvmsync 127da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_tlbi_dvmop 128da4e1e31SAleksandr RybalkoNumber of DVMOP TLB invalidate requests received. 129da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_bpi_dvmop 130da4e1e31SAleksandr RybalkoNumber of DVMOP Branch predictor invalidate requests received. 131da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_pici_dvmop 132da4e1e31SAleksandr RybalkoNumber of DVMOP physical instruction cache invalidate requests received. 133da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_vivi_dvmop 134da4e1e31SAleksandr RybalkoNumber of DVMOP virtual instruction cache invalidate requests received. 135da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_dvmop_other_filtered 136da4e1e31SAleksandr RybalkoNumber of DVM op requests to RNDs, BPI or PICI/VICI, that were filtered 137da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_snp_sent 138da4e1e31SAleksandr RybalkoNumber of SNPs sent to RNs 139da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_snp_stalled 140da4e1e31SAleksandr RybalkoNumber of SNPs stalled to RNs due to lack of Crds 141da4e1e31SAleksandr Rybalko.It Sy dn_rxreq_trk_full 142da4e1e31SAleksandr RybalkoDVM tracker full counter 143da4e1e31SAleksandr Rybalko.El 144da4e1e31SAleksandr Rybalko.Ss HN-F node events 145da4e1e31SAleksandr Rybalko.Bl -tag -width indent 146da4e1e31SAleksandr Rybalko.It Sy hnf_cache_miss 147da4e1e31SAleksandr RybalkoCounts total cache misses in first lookup result (high priority) 148da4e1e31SAleksandr Rybalko.It Sy hnf_slc_sf_cache_access 149da4e1e31SAleksandr RybalkoCounts number of cache accesses in first access (high priority) 150da4e1e31SAleksandr Rybalko.It Sy hnf_cache_fill 151da4e1e31SAleksandr RybalkoCounts total allocations in HN SLC (all cache line allocations to SLC) 152da4e1e31SAleksandr Rybalko.It Sy hnf_pocq_retry 153da4e1e31SAleksandr RybalkoCounts number of retried requests 154da4e1e31SAleksandr Rybalko.It Sy hnf_pocq_reqs_recvd 155da4e1e31SAleksandr RybalkoCounts number of requests received by HN 156da4e1e31SAleksandr Rybalko.It Sy hnf_sf_hit 157da4e1e31SAleksandr RybalkoCounts number of SF hits 158da4e1e31SAleksandr Rybalko.It Sy hnf_sf_evictions 159da4e1e31SAleksandr RybalkoCounts number of SF eviction cache invalidations initiated 160da4e1e31SAleksandr Rybalko.It Sy hnf_dir_snoops_sent 161da4e1e31SAleksandr RybalkoCounts number of directed snoops sent (not including SF back invalidation) 162da4e1e31SAleksandr Rybalko.It Sy hnf_brd_snoops_sent 163da4e1e31SAleksandr RybalkoCounts number of multicast snoops sent (not including SF back invalidation) 164da4e1e31SAleksandr Rybalko.It Sy hnf_slc_eviction 165da4e1e31SAleksandr RybalkoCounts number of SLC evictions (dirty only) 166da4e1e31SAleksandr Rybalko.It Sy hnf_slc_fill_invalid_way 167da4e1e31SAleksandr RybalkoCounts number of SLC fills to an invalid way 168da4e1e31SAleksandr Rybalko.It Sy hnf_mc_retries 169da4e1e31SAleksandr RybalkoCounts number of retried transactions by the MC 170da4e1e31SAleksandr Rybalko.It Sy hnf_mc_reqs 171da4e1e31SAleksandr RybalkoCounts number of requests sent to MC 172da4e1e31SAleksandr Rybalko.It Sy hnf_qos_hh_retry 173da4e1e31SAleksandr RybalkoCounts number of times a HighHigh priority request is protocol-retried at the 174da4e1e31SAleksandr RybalkoHN-F 175da4e1e31SAleksandr Rybalko.It Sy hnf_qos_pocq 176da4e1e31SAleksandr RybalkoCounts the POCQ occupancy in HN-F. 177da4e1e31SAleksandr RybalkoSupport argument "occupancy". Accept: All, Read, Write, Atomic, Stash. 178da4e1e31SAleksandr RybalkoDefault: All. 179da4e1e31SAleksandr Rybalko.It Sy hnf_pocq_addrhaz 180da4e1e31SAleksandr RybalkoCounts number of POCQ address hazards upon allocation 181da4e1e31SAleksandr Rybalko.It Sy hnf_pocq_atomic_addrhaz 182da4e1e31SAleksandr RybalkoCounts number of POCQ address hazards upon allocation for atomic operations 183da4e1e31SAleksandr Rybalko.It Sy hnf_ld_st_swp_adq_full 184da4e1e31SAleksandr RybalkoCounts number of times ADQ is full for Ld/St/SWP type atomic operations while 185da4e1e31SAleksandr RybalkoPOCQ has pending operations 186da4e1e31SAleksandr Rybalko.It Sy hnf_cmp_adq_full 187da4e1e31SAleksandr RybalkoCounts number of times ADQ is full for CMP type atomic operations while POCQ 188da4e1e31SAleksandr Rybalkohas pending operations 189da4e1e31SAleksandr Rybalko.It Sy hnf_txdat_stall 190da4e1e31SAleksandr RybalkoCounts number of times HN-F has a pending TXDAT flit but no credits to upload 191da4e1e31SAleksandr Rybalko.It Sy hnf_txrsp_stall 192da4e1e31SAleksandr RybalkoCounts number of times HN-F has a pending TXRSP flit but no credits to upload 193da4e1e31SAleksandr Rybalko.It Sy hnf_seq_full 194da4e1e31SAleksandr RybalkoCounts number of times requests are replayed in SLC pipe due to SEQ being full 195da4e1e31SAleksandr Rybalko.It Sy hnf_seq_hit 196da4e1e31SAleksandr RybalkoCounts number of times a request in SLC hit a pending SF eviction in SEQ 197da4e1e31SAleksandr Rybalko.It Sy hnf_snp_sent 198da4e1e31SAleksandr RybalkoCounts number of snoops sent including directed, multicast, and SF back 199da4e1e31SAleksandr Rybalkoinvalidation 200da4e1e31SAleksandr Rybalko.It Sy hnf_sfbi_dir_snp_sent 201da4e1e31SAleksandr RybalkoCounts number of times directed snoops were sent due to SF back invalidation 202da4e1e31SAleksandr Rybalko.It Sy hnf_sfbi_brd_snp_sent 203da4e1e31SAleksandr RybalkoCounts number of times multicast snoops were sent due to SF back invalidation 204da4e1e31SAleksandr Rybalko.It Sy hnf_snp_sent_untrk 205da4e1e31SAleksandr RybalkoCounts number of times snooped were sent due to untracked RNF's 206da4e1e31SAleksandr Rybalko.It Sy hnf_intv_dirty 207da4e1e31SAleksandr RybalkoCounts number of times SF back invalidation resulted in dirty line intervention 208da4e1e31SAleksandr Rybalkofrom the RN 209da4e1e31SAleksandr Rybalko.It Sy hnf_stash_snp_sent 210da4e1e31SAleksandr RybalkoCounts number of times stash snoops were sent 211da4e1e31SAleksandr Rybalko.It Sy hnf_stash_data_pull 212da4e1e31SAleksandr RybalkoCounts number of times stash snoops resulted in data pull from the RN 213da4e1e31SAleksandr Rybalko.It Sy hnf_snp_fwded 214da4e1e31SAleksandr RybalkoCounts number of times data forward snoops were sent 215da4e1e31SAleksandr Rybalko.El 216da4e1e31SAleksandr Rybalko.Ss HN-I node events 217da4e1e31SAleksandr Rybalko.Bl -tag -width indent 218da4e1e31SAleksandr Rybalko.It Sy hni_rrt_rd_occ_cnt_ovfl 219da4e1e31SAleksandr RybalkoRRT read occupancy count overflow 220da4e1e31SAleksandr Rybalko.It Sy hni_rrt_wr_occ_cnt_ovfl 221da4e1e31SAleksandr RybalkoRRT write occupancy count overflow 222da4e1e31SAleksandr Rybalko.It Sy hni_rdt_rd_occ_cnt_ovfl 223da4e1e31SAleksandr RybalkoRDT read occupancy count overflow 224da4e1e31SAleksandr Rybalko.It Sy hni_rdt_wr_occ_cnt_ovfl 225da4e1e31SAleksandr RybalkoRDT write occupancy count overflow 226da4e1e31SAleksandr Rybalko.It Sy hni_wdb_occ_cnt_ovfl 227da4e1e31SAleksandr RybalkoWDB occupancy count overflow 228da4e1e31SAleksandr Rybalko.It Sy hni_rrt_rd_alloc 229da4e1e31SAleksandr RybalkoRRT read allocation 230da4e1e31SAleksandr Rybalko.It Sy hni_rrt_wr_alloc 231da4e1e31SAleksandr RybalkoRRT write allocation 232da4e1e31SAleksandr Rybalko.It Sy hni_rdt_rd_alloc 233da4e1e31SAleksandr RybalkoRDT read allocation 234da4e1e31SAleksandr Rybalko.It Sy hni_rdt_wr_alloc 235da4e1e31SAleksandr RybalkoRDT write allocation 236da4e1e31SAleksandr Rybalko.It Sy hni_wdb_alloc 237da4e1e31SAleksandr RybalkoWDB allocation 238da4e1e31SAleksandr Rybalko.It Sy hni_txrsp_retryack 239da4e1e31SAleksandr RybalkoRETRYACK TXRSP flit sent 240da4e1e31SAleksandr Rybalko.It Sy hni_arvalid_no_arready 241da4e1e31SAleksandr RybalkoARVALID set without ARREADY event 242da4e1e31SAleksandr Rybalko.It Sy hni_arready_no_arvalid 243da4e1e31SAleksandr RybalkoARREADY set without ARVALID event 244da4e1e31SAleksandr Rybalko.It Sy hni_awvalid_no_awready 245da4e1e31SAleksandr RybalkoAWVALID set without AWREADY event 246da4e1e31SAleksandr Rybalko.It Sy hni_awready_no_awvalid 247da4e1e31SAleksandr RybalkoAWREADY set without AWVALID event 248da4e1e31SAleksandr Rybalko.It Sy hni_wvalid_no_wready 249da4e1e31SAleksandr RybalkoWVALID set without WREADY event 250da4e1e31SAleksandr Rybalko.It Sy hni_txdat_stall 251da4e1e31SAleksandr RybalkoTXDAT stall (TXDAT valid but no link credit available) 252da4e1e31SAleksandr Rybalko.It Sy hni_nonpcie_serialization 253da4e1e31SAleksandr RybalkoNon-PCIe serialization event 254da4e1e31SAleksandr Rybalko.It Sy hni_pcie_serialization 255da4e1e31SAleksandr RybalkoPCIe serialization event 256da4e1e31SAleksandr Rybalko.El 257da4e1e31SAleksandr Rybalko.Ss XP node events 258da4e1e31SAleksandr Rybalko.Bl -tag -width indent 259da4e1e31SAleksandr Rybalko.It Sy xp_txflit_valid 260da4e1e31SAleksandr RybalkoNumber of flits transmitted on a specified port and CHI channel. 261da4e1e31SAleksandr RybalkoThis is a measure of the flit transfer bandwidth from an XP. 262da4e1e31SAleksandr RybalkoNote: On device ports, this event also includes link flit transfers. 263da4e1e31SAleksandr Rybalko.It Sy xp_txflit_stall 264da4e1e31SAleksandr RybalkoNumber of cycles when a flit is stalled at an XP waiting for link credits at a 265da4e1e31SAleksandr Rybalkospecified port and CHI channel. 266da4e1e31SAleksandr RybalkoThis is a measure of the flit traffic congestion on the mesh and at the flit 267da4e1e31SAleksandr Rybalkodownload ports. 268da4e1e31SAleksandr Rybalko.It Sy xp_partial_dat_flit 269da4e1e31SAleksandr RybalkoNumber of times when a partial DAT flit is uploaded onto the mesh from a 270da4e1e31SAleksandr RybalkoRN-F_CHIA port. 271da4e1e31SAleksandr RybalkoPartial DAT flit transmission occurs when XP is not able to combine two 128b 272da4e1e31SAleksandr RybalkoDAT flits and send them over the 256b DAT channel. 273da4e1e31SAleksandr RybalkoThis can happen under 2 circumstances: 274da4e1e31SAleksandr Rybalko1. Only one 128b DAT flit is received within a transmission time window. 275da4e1e31SAleksandr Rybalko2. Two 128b DAT flits are received but they are not two halves of a 276da4e1e31SAleksandr Rybalko single 256b word. 277da4e1e31SAleksandr Rybalko.El 278da4e1e31SAleksandr Rybalko.Ss SBSX node events 279da4e1e31SAleksandr Rybalko.Bl -tag -width indent 280da4e1e31SAleksandr Rybalko.It Sy sbsx_rd_req 281da4e1e31SAleksandr RybalkoRead request 282da4e1e31SAleksandr Rybalko.It Sy sbsx_wr_req 283da4e1e31SAleksandr RybalkoWrite request 284da4e1e31SAleksandr Rybalko.It Sy sbsx_cmo_req 285da4e1e31SAleksandr RybalkoCMO request 286da4e1e31SAleksandr Rybalko.It Sy sbsx_txrsp_retryack 287da4e1e31SAleksandr RybalkoRETRYACK TXRSP flit sent 288da4e1e31SAleksandr Rybalko.It Sy sbsx_txdat_flitv 289da4e1e31SAleksandr RybalkoTXDAT flit seen 290da4e1e31SAleksandr Rybalko.It Sy sbsx_txrsp_flitv 291da4e1e31SAleksandr RybalkoTXRSP flit seen 292da4e1e31SAleksandr Rybalko.It Sy sbsx_rd_req_trkr_occ_cnt_ovfl 293da4e1e31SAleksandr RybalkoRead request tracker occupancy count overflow 294da4e1e31SAleksandr Rybalko.It Sy sbsx_wr_req_trkr_occ_cnt_ovfl 295da4e1e31SAleksandr RybalkoWrite request tracker occupancy count overflow 296da4e1e31SAleksandr Rybalko.It Sy sbsx_cmo_req_trkr_occ_cnt_ovfl 297da4e1e31SAleksandr RybalkoCMO request tracker occupancy count overflow 298da4e1e31SAleksandr Rybalko.It Sy sbsx_wdb_occ_cnt_ovfl 299da4e1e31SAleksandr RybalkoWDB occupancy count overflow 300da4e1e31SAleksandr Rybalko.It Sy sbsx_rd_axi_trkr_occ_cnt_ovfl 301da4e1e31SAleksandr RybalkoRead AXI pending tracker occupancy count overflow 302da4e1e31SAleksandr Rybalko.It Sy sbsx_cmo_axi_trkr_occ_cnt_ovfl 303da4e1e31SAleksandr RybalkoCMO AXI pending tracker occupancy count overflow 304da4e1e31SAleksandr Rybalko.It Sy sbsx_arvalid_no_arready 305da4e1e31SAleksandr RybalkoARVALID set without ARREADY 306da4e1e31SAleksandr Rybalko.It Sy sbsx_awvalid_no_awready 307da4e1e31SAleksandr RybalkoAWVALID set without AWREADY 308da4e1e31SAleksandr Rybalko.It Sy sbsx_wvalid_no_wready 309da4e1e31SAleksandr RybalkoWVALID set without WREADY 310da4e1e31SAleksandr Rybalko.It Sy sbsx_txdat_stall 311da4e1e31SAleksandr RybalkoTXDAT stall (TXDAT valid but no link credit available) 312da4e1e31SAleksandr Rybalko.It Sy sbsx_txrsp_stall 313da4e1e31SAleksandr RybalkoTXRSP stall (TXRSP valid but no link credit available) 314da4e1e31SAleksandr Rybalko.El 315da4e1e31SAleksandr Rybalko.Ss RN-D node events 316da4e1e31SAleksandr Rybalko.Bl -tag -width indent 317da4e1e31SAleksandr Rybalko.It Sy rnd_s0_rdata_beats 318da4e1e31SAleksandr RybalkoNumber of RData beats, RVALID and RREADY, dispatched on port 0. 319da4e1e31SAleksandr RybalkoThis is a measure of the read bandwidth, including CMO responses. 320da4e1e31SAleksandr Rybalko.It Sy rnd_s1_rdata_beats 321da4e1e31SAleksandr RybalkoNumber of RData beats, RVALID and RREADY, dispatched on port 1. 322da4e1e31SAleksandr RybalkoThis is a measure of the read bandwidth, including CMO responses. 323da4e1e31SAleksandr Rybalko.It Sy rnd_s2_rdata_beats 324da4e1e31SAleksandr RybalkoNumber of RData beats, RVALID and RREADY, dispatched on port 2. 325da4e1e31SAleksandr RybalkoThis is a measure of the read bandwidth, including CMO responses. 326da4e1e31SAleksandr Rybalko.It Sy rnd_rxdat_flits 327da4e1e31SAleksandr RybalkoNumber of RXDAT flits received. 328da4e1e31SAleksandr RybalkoThis is a measure of the true read data bandwidth, excluding CMOs. 329da4e1e31SAleksandr Rybalko.It Sy rnd_txdat_flits 330da4e1e31SAleksandr RybalkoNumber of TXDAT flits dispatched. 331da4e1e31SAleksandr RybalkoThis is a measure of the write bandwidth. 332da4e1e31SAleksandr Rybalko.It Sy rnd_txreq_flits_total 333da4e1e31SAleksandr RybalkoNumber of TXREQ flits dispatched. 334da4e1e31SAleksandr RybalkoThis is a measure of the total request 335da4e1e31SAleksandr Rybalkobandwidth. 336da4e1e31SAleksandr Rybalko.It Sy rnd_txreq_flits_retried 337da4e1e31SAleksandr RybalkoNumber of retried TXREQ flits dispatched. 338da4e1e31SAleksandr RybalkoThis is a measure of the retry rate. 339da4e1e31SAleksandr Rybalko.It Sy rnd_rrt_occ_ovfl 340da4e1e31SAleksandr RybalkoAll entries in the read request tracker are occupied. 341da4e1e31SAleksandr RybalkoThis is a measure of oversubscription in the read request tracker. 342da4e1e31SAleksandr Rybalko.It Sy rnd_wrt_occ_ovfl 343da4e1e31SAleksandr RybalkoAll entries in the write request tracker are occupied. 344da4e1e31SAleksandr RybalkoThis is a measure of oversubscription in the write request tracker. 345da4e1e31SAleksandr Rybalko.It Sy rnd_txreq_flits_replayed 346da4e1e31SAleksandr RybalkoNumber of replayed TXREQ flits. 347da4e1e31SAleksandr RybalkoThis is the measure of replay rate. 348da4e1e31SAleksandr Rybalko.It Sy rnd_wrcancel_sent 349da4e1e31SAleksandr RybalkoNumber of write data cancels sent. 350da4e1e31SAleksandr RybalkoThis is the measure of write cancel rate. 351da4e1e31SAleksandr Rybalko.It Sy rnd_s0_wdata_beats 352da4e1e31SAleksandr RybalkoNumber of WData beats, WVALID and WREADY, dispatched on port 0. 353da4e1e31SAleksandr RybalkoThis is a measure of write bandwidth on AXI port 0. 354da4e1e31SAleksandr Rybalko.It Sy rnd_s1_wdata_beats 355da4e1e31SAleksandr RybalkoNumber of WData beats, WVALID and WREADY, dispatched on port 1. 356da4e1e31SAleksandr RybalkoThis is a measure of write bandwidth on AXI port 1. 357da4e1e31SAleksandr Rybalko.It Sy rnd_s2_wdata_beats 358da4e1e31SAleksandr RybalkoNumber of WData beats, WVALID and WREADY, dispatched on port 2. 359da4e1e31SAleksandr RybalkoThis is a measure of write bandwidth on AXI port 2. 360da4e1e31SAleksandr Rybalko.It Sy rnd_rrt_alloc 361da4e1e31SAleksandr RybalkoNumber of allocations in the read request tracker. 362da4e1e31SAleksandr RybalkoThis is a measure of read transaction count. 363da4e1e31SAleksandr Rybalko.It Sy rnd_wrt_alloc 364da4e1e31SAleksandr RybalkoNumber of allocations in the write request tracker. 365da4e1e31SAleksandr RybalkoThis is a measure of write transaction count. 366da4e1e31SAleksandr Rybalko.It Sy rnd_rdb_unord 367da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in Unordered Mode. 368da4e1e31SAleksandr Rybalko.It Sy rnd_rdb_replay 369da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in Replay mode 370da4e1e31SAleksandr Rybalko.It Sy rnd_rdb_hybrid 371da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in hybrid mode. 372da4e1e31SAleksandr RybalkoHybrid mode is where there is mix of ordered/unordered traffic. 373da4e1e31SAleksandr Rybalko.It Sy rnd_rdb_ord 374da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in ordered Mode. 375da4e1e31SAleksandr Rybalko.El 376da4e1e31SAleksandr Rybalko.Ss RN-I node events 377da4e1e31SAleksandr Rybalko.Bl -tag -width indent 378da4e1e31SAleksandr Rybalko.It Sy rni_s0_rdata_beats 379da4e1e31SAleksandr RybalkoNumber of RData beats, RVALID and RREADY, dispatched on port 0. 380da4e1e31SAleksandr RybalkoThis is a measure of the read bandwidth, including CMO responses. 381da4e1e31SAleksandr Rybalko.It Sy rni_s1_rdata_beats 382da4e1e31SAleksandr RybalkoNumber of RData beats, RVALID and RREADY, dispatched on port 1. 383da4e1e31SAleksandr RybalkoThis is a measure of the read bandwidth, including CMO responses. 384da4e1e31SAleksandr Rybalko.It Sy rni_s2_rdata_beats 385da4e1e31SAleksandr RybalkoNumber of RData beats, RVALID and RREADY, dispatched on port 2. 386da4e1e31SAleksandr RybalkoThis is a measure of the read bandwidth, including CMO responses. 387da4e1e31SAleksandr Rybalko.It Sy rni_rxdat_flits 388da4e1e31SAleksandr RybalkoNumber of RXDAT flits received. 389da4e1e31SAleksandr RybalkoThis is a measure of the true read data bandwidth, excluding CMOs. 390da4e1e31SAleksandr Rybalko.It Sy rni_txdat_flits 391da4e1e31SAleksandr RybalkoNumber of TXDAT flits dispatched. 392da4e1e31SAleksandr RybalkoThis is a measure of the write bandwidth. 393da4e1e31SAleksandr Rybalko.It Sy rni_txreq_flits_total 394da4e1e31SAleksandr RybalkoNumber of TXREQ flits dispatched. 395da4e1e31SAleksandr RybalkoThis is a measure of the total request bandwidth. 396da4e1e31SAleksandr Rybalko.It Sy rni_txreq_flits_retried 397da4e1e31SAleksandr RybalkoNumber of retried TXREQ flits dispatched. 398da4e1e31SAleksandr RybalkoThis is a measure of the retry rate. 399da4e1e31SAleksandr Rybalko.It Sy rni_rrt_occ_ovfl 400da4e1e31SAleksandr RybalkoAll entries in the read request tracker are occupied. 401da4e1e31SAleksandr RybalkoThis is a measure of oversubscription in the read request tracker. 402da4e1e31SAleksandr Rybalko.It Sy rni_wrt_occ_ovfl 403da4e1e31SAleksandr RybalkoAll entries in the write request tracker are occupied. 404da4e1e31SAleksandr RybalkoThis is a measure of oversubscription in the write request tracker. 405da4e1e31SAleksandr Rybalko.It Sy rni_txreq_flits_replayed 406da4e1e31SAleksandr RybalkoNumber of replayed TXREQ flits. 407da4e1e31SAleksandr RybalkoThis is the measure of replay rate. 408da4e1e31SAleksandr Rybalko.It Sy rni_wrcancel_sent 409da4e1e31SAleksandr RybalkoNumber of write data cancels sent. 410da4e1e31SAleksandr RybalkoThis is the measure of write cancel rate 411da4e1e31SAleksandr Rybalko.It Sy rni_s0_wdata_beats 412da4e1e31SAleksandr RybalkoNumber of WData beats, WVALID and WREADY, dispatched on port 0. 413da4e1e31SAleksandr RybalkoThis is a measure of write bandwidth on AXI port 0. 414da4e1e31SAleksandr Rybalko.It Sy rni_s1_wdata_beats 415da4e1e31SAleksandr RybalkoNumber of WData beats, WVALID and WREADY, dispatched on port 1. 416da4e1e31SAleksandr RybalkoThis is a measure of write bandwidth on AXI port 1. 417da4e1e31SAleksandr Rybalko.It Sy rni_s2_wdata_beats 418da4e1e31SAleksandr RybalkoNumber of WData beats, WVALID and WREADY, dispatched on port 2. 419da4e1e31SAleksandr RybalkoThis is a measure of write bandwidth on AXI port 2. 420da4e1e31SAleksandr Rybalko.It Sy rni_rrt_alloc 421da4e1e31SAleksandr RybalkoNumber of allocations in the read request tracker. 422da4e1e31SAleksandr RybalkoThis is a measure of read transaction count. 423da4e1e31SAleksandr Rybalko.It Sy rni_wrt_alloc 424da4e1e31SAleksandr RybalkoNumber of allocations in the write request tracker. 425da4e1e31SAleksandr RybalkoThis is a measure of write transaction count 426da4e1e31SAleksandr Rybalko.It Sy rni_rdb_unord 427da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in Unordered Mode. 428da4e1e31SAleksandr Rybalko.It Sy rni_rdb_replay 429da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in Replay mode 430da4e1e31SAleksandr Rybalko.It Sy rni_rdb_hybrid 431da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in hybrid mode. 432da4e1e31SAleksandr RybalkoHybrid mode is where there is mix of ordered/unordered traffic. 433da4e1e31SAleksandr Rybalko.It Sy rni_rdb_ord 434da4e1e31SAleksandr RybalkoNumber of cycles for which Read Data Buffer state machine is in ordered Mode. 435da4e1e31SAleksandr Rybalko.El 436da4e1e31SAleksandr Rybalko.Ss CXHA node events 437da4e1e31SAleksandr Rybalko.Pq Note: CXHA events descriptions are guessed 438da4e1e31SAleksandr Rybalko.Bl -tag -width indent 439da4e1e31SAleksandr Rybalko.It Sy cxha_rddatbyp 440da4e1e31SAleksandr RybalkoNumber of Read DAT Bypass 441da4e1e31SAleksandr Rybalko.It Sy cxha_chirsp_up_stall 442da4e1e31SAleksandr RybalkoNumber of CHI RSP up Stall 443da4e1e31SAleksandr Rybalko.It Sy cxha_chidat_up_stall 444da4e1e31SAleksandr RybalkoNumber of CHI DAT up Stall 445da4e1e31SAleksandr Rybalko.It Sy cxha_snppcrd_lnk0_stall 446da4e1e31SAleksandr RybalkoNumber of Snoop Pcrd Stall on Link 0 447da4e1e31SAleksandr Rybalko.It Sy cxha_snppcrd_lnk1_stall 448da4e1e31SAleksandr RybalkoNumber of Snoop Pcrd Stall on Link 1 449da4e1e31SAleksandr Rybalko.It Sy cxha_snppcrd_lnk2_stall 450da4e1e31SAleksandr RybalkoNumber of Snoop Pcrd Stall on Link 2 451da4e1e31SAleksandr Rybalko.It Sy cxha_reqtrk_occ 452da4e1e31SAleksandr RybalkoRequest Tracker Occupancy 453da4e1e31SAleksandr Rybalko.It Sy cxha_rdb_occ 454da4e1e31SAleksandr RybalkoRead Data Buffer Occupancy 455da4e1e31SAleksandr Rybalko.It Sy cxha_rdbbyp_occ 456da4e1e31SAleksandr RybalkoRead Data Buffer Bypass Occupancy 457da4e1e31SAleksandr Rybalko.It Sy cxha_wdb_occ 458da4e1e31SAleksandr RybalkoWrite Data Buffer Occupancy 459da4e1e31SAleksandr Rybalko.It Sy cxha_snptrk_occ 460da4e1e31SAleksandr RybalkoSnoop Tracker Occupancy 461da4e1e31SAleksandr Rybalko.It Sy cxha_sdb_occ 462da4e1e31SAleksandr RybalkoSDB Occupancy 463da4e1e31SAleksandr Rybalko.It Sy cxha_snphaz_occ 464da4e1e31SAleksandr RybalkoSnoop Hazard Occupancy 465da4e1e31SAleksandr Rybalko.El 466da4e1e31SAleksandr Rybalko.Ss CXRA node events 467da4e1e31SAleksandr Rybalko.Bl -tag -width indent 468da4e1e31SAleksandr Rybalko.It Sy cxra_req_trk_occ 469da4e1e31SAleksandr RybalkoRequest tracker occupancy 470da4e1e31SAleksandr Rybalko.It Sy cxra_snp_trk_occ 471da4e1e31SAleksandr RybalkoSnoop tracker occupancy 472da4e1e31SAleksandr Rybalko.It Sy cxra_rd_dat_buf_occ 473da4e1e31SAleksandr RybalkoRead data buffer occupancy 474da4e1e31SAleksandr Rybalko.It Sy cxra_wr_dat_buf_occ 475da4e1e31SAleksandr RybalkoWrite data buffer occupancy 476da4e1e31SAleksandr Rybalko.It Sy cxra_snp_sink_buf_occ 477da4e1e31SAleksandr RybalkoSnoop sink buffer occupancy 478da4e1e31SAleksandr Rybalko.It Sy cxra_snp_bcasts 479da4e1e31SAleksandr RybalkoSnoop broadcasts 480da4e1e31SAleksandr Rybalko.It Sy cxra_req_chains 481da4e1e31SAleksandr RybalkoNumber of request chains formed larger than one 482da4e1e31SAleksandr Rybalko.It Sy cxra_req_chain_avg_len 483da4e1e31SAleksandr RybalkoAverage size of request chains, only for chain sizes larger than one 484da4e1e31SAleksandr Rybalko.It Sy cxra_chi_rsp_upload_stalls 485da4e1e31SAleksandr RybalkoLocal RA upload stalls to CHI because of contention with HA 486da4e1e31SAleksandr Rybalko.It Sy cxra_chi_dat_upload_stalls 487da4e1e31SAleksandr RybalkoLocal RA upload stalls to CHI because of contention with HA 488da4e1e31SAleksandr Rybalko.It Sy cxra_dat_pcrd_stalls_lnk0 489da4e1e31SAleksandr RybalkoMemory Data Request available, but no DAT Pcrd to send over CCIX per LinkEnd 0 490da4e1e31SAleksandr Rybalko.It Sy cxra_dat_pcrd_stalls_lnk1 491da4e1e31SAleksandr RybalkoMemory Data Request available, but no DAT Pcrd to send over CCIX per LinkEnd 1 492da4e1e31SAleksandr Rybalko.It Sy cxra_dat_pcrd_stalls_lnk2 493da4e1e31SAleksandr RybalkoMemory Data Request available, but no DAT Pcrd to send over CCIX per LinkEnd 2 494da4e1e31SAleksandr Rybalko.It Sy cxra_req_pcrd_stalls_lnk0 495da4e1e31SAleksandr RybalkoMemory Data Request available but no Req Pcrd to send over CCIX per LinkEnd 0 496da4e1e31SAleksandr Rybalko.It Sy cxra_req_pcrd_stalls_lnk1 497da4e1e31SAleksandr RybalkoMemory Data Request available but no Req Pcrd to send over CCIX per LinkEnd 1 498da4e1e31SAleksandr Rybalko.It Sy cxra_req_pcrd_stalls_lnk2 499da4e1e31SAleksandr RybalkoMemory Data Request available but no Req Pcrd to send over CCIX per LinkEnd 2 500da4e1e31SAleksandr Rybalko.It Sy cxra_ext_rsp_stall 501da4e1e31SAleksandr RybalkoCHI external RSP stall 502da4e1e31SAleksandr Rybalko.It Sy cxra_ext_dat_stall 503da4e1e31SAleksandr RybalkoCHI external DAT stall 504da4e1e31SAleksandr Rybalko.El 505da4e1e31SAleksandr Rybalko.Ss CXLA node events 506da4e1e31SAleksandr Rybalko.Bl -tag -width indent 507da4e1e31SAleksandr Rybalko.It Sy cxla_rx_tlp_link0 508da4e1e31SAleksandr RybalkoRX TLP for Link 0 509da4e1e31SAleksandr Rybalko.It Sy cxla_rx_tlp_link1 510da4e1e31SAleksandr RybalkoRX TLP for Link 1 511da4e1e31SAleksandr Rybalko.It Sy cxla_rx_tlp_link2 512da4e1e31SAleksandr RybalkoRX TLP for Link 2 513da4e1e31SAleksandr Rybalko.It Sy cxla_tx_tlp_link0 514da4e1e31SAleksandr RybalkoTX TLP for Link 0 515da4e1e31SAleksandr Rybalko.It Sy cxla_tx_tlp_link1 516da4e1e31SAleksandr RybalkoTX TLP for Link 1 517da4e1e31SAleksandr Rybalko.It Sy cxla_tx_tlp_link2 518da4e1e31SAleksandr RybalkoTX TLP for Link 2 519da4e1e31SAleksandr Rybalko.It Sy cxla_rx_cxs_link0 520da4e1e31SAleksandr RybalkoRX CXS for Link 0 521da4e1e31SAleksandr Rybalko.It Sy cxla_rx_cxs_link1 522da4e1e31SAleksandr RybalkoRX CXS for Link 1 523da4e1e31SAleksandr Rybalko.It Sy cxla_rx_cxs_link2 524da4e1e31SAleksandr RybalkoRX CXS for Link 2 525da4e1e31SAleksandr Rybalko.It Sy cxla_tx_cxs_link0 526da4e1e31SAleksandr RybalkoTX CXS for Link 0 527da4e1e31SAleksandr Rybalko.It Sy cxla_tx_cxs_link1 528da4e1e31SAleksandr RybalkoTX CXS for Link 1 529da4e1e31SAleksandr Rybalko.It Sy cxla_tx_cxs_link2 530da4e1e31SAleksandr RybalkoTX CXS for Link 2 531da4e1e31SAleksandr Rybalko.It Sy cxla_avg_rx_tlp_sz_dws 532da4e1e31SAleksandr RybalkoAverage RX TLP size in DWs 533da4e1e31SAleksandr Rybalko.It Sy cxla_avg_tx_tlp_sz_dws 534da4e1e31SAleksandr RybalkoAverage TX TLP size in DWs 535da4e1e31SAleksandr Rybalko.It Sy cxla_avg_rx_tlp_sz_ccix_msg 536da4e1e31SAleksandr RybalkoAverage RX TLP size in CCIX messages 537da4e1e31SAleksandr Rybalko.It Sy cxla_avg_tx_tlp_sz_ccix_msg 538da4e1e31SAleksandr RybalkoAverage TX TLP size in CCIX messages 539da4e1e31SAleksandr Rybalko.It Sy cxla_avg_sz_rx_cxs_dw_beat 540da4e1e31SAleksandr RybalkoAverage size of RX CXS in DWs within a beat 541da4e1e31SAleksandr Rybalko.It Sy cxla_avg_sz_tx_cxs_dw_beat 542da4e1e31SAleksandr RybalkoAverage size of TX CXS in DWs within a beat 543da4e1e31SAleksandr Rybalko.It Sy cxla_tx_cxs_link_credit_backpressure 544da4e1e31SAleksandr RybalkoTX CXS link credit backpressure 545da4e1e31SAleksandr Rybalko.It Sy cxla_rx_tlp_buffer_full 546da4e1e31SAleksandr RybalkoRX TLP buffer full and backpressured 547da4e1e31SAleksandr Rybalko.It Sy cxla_tx_tlp_buffer_full 548da4e1e31SAleksandr RybalkoTX TLP buffer full and backpressured 549da4e1e31SAleksandr Rybalko.It Sy cxla_avg_latency_process_rx_tlp 550da4e1e31SAleksandr RybalkoAverage latency to process an RX TLP 551da4e1e31SAleksandr Rybalko.It Sy cxla_avg_latency_form_tx_tlp 552da4e1e31SAleksandr RybalkoAverage latency to form a TX TLP 553da4e1e31SAleksandr Rybalko.El 554da4e1e31SAleksandr Rybalko.Sh SEE ALSO 555da4e1e31SAleksandr Rybalko.Xr pmc 3 , 556*b2934971SMitchell Horne.Xr pmc.amd 3 , 557da4e1e31SAleksandr Rybalko.Xr pmc.atom 3 , 558da4e1e31SAleksandr Rybalko.Xr pmc.core 3 , 559da4e1e31SAleksandr Rybalko.Xr pmc.core2 3 , 560da4e1e31SAleksandr Rybalko.Xr pmc.corei7 3 , 561da4e1e31SAleksandr Rybalko.Xr pmc.corei7uc 3 , 562da4e1e31SAleksandr Rybalko.Xr pmc.iaf 3 , 563da4e1e31SAleksandr Rybalko.Xr pmc.soft 3 , 564da4e1e31SAleksandr Rybalko.Xr pmc.tsc 3 , 565da4e1e31SAleksandr Rybalko.Xr pmc.westmere 3 , 566da4e1e31SAleksandr Rybalko.Xr pmc.westmereuc 3 , 567da4e1e31SAleksandr Rybalko.Xr pmc_cpuinfo 3 , 568da4e1e31SAleksandr Rybalko.Xr pmclog 3 , 569da4e1e31SAleksandr Rybalko.Xr hwpmc 4 570da4e1e31SAleksandr Rybalko.Sh HISTORY 571da4e1e31SAleksandr RybalkoThe 572da4e1e31SAleksandr Rybalko.Nm pmc 573da4e1e31SAleksandr Rybalkolibrary first appeared in 574da4e1e31SAleksandr Rybalko.Fx 6.0 . 575da4e1e31SAleksandr Rybalko.br 576da4e1e31SAleksandr RybalkoThe 577da4e1e31SAleksandr Rybalko.Nm pmc.cmn-600 578da4e1e31SAleksandr Rybalkodriver was added in 579da4e1e31SAleksandr Rybalko.Fx 14.0 . 580da4e1e31SAleksandr Rybalko.Sh AUTHORS 581da4e1e31SAleksandr Rybalko.An -nosplit 582da4e1e31SAleksandr RybalkoThe 583da4e1e31SAleksandr Rybalko.Lb libpmc 584da4e1e31SAleksandr Rybalkolibrary was written by 585da4e1e31SAleksandr Rybalko.An Joseph Koshy Aq Mt jkoshy@FreeBSD.org , 586da4e1e31SAleksandr Rybalko.An Oleksandr Rybalko Aq Mt ray@FreeBSD.org . 587da4e1e31SAleksandr Rybalko.br 588da4e1e31SAleksandr RybalkoThe CMN-600 PMU driver was sponsored by ARM Ltd. 589da4e1e31SAleksandr RybalkoThis manual page was written by 590da4e1e31SAleksandr Rybalko.An Oleksandr Rybalko Aq Mt ray@FreeBSD.org . 591