]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
perf/x86/intel: Add support for PEBS memory auxiliary info field in NVL
authorDapeng Mi <dapeng1.mi@linux.intel.com>
Wed, 14 Jan 2026 01:17:47 +0000 (09:17 +0800)
committerPeter Zijlstra <peterz@infradead.org>
Thu, 15 Jan 2026 09:04:27 +0000 (10:04 +0100)
Similar to DMR (Panther Cove uarch), both P-core (Coyote Cove uarch) and
E-core (Arctic Wolf uarch) of NVL adopt the new PEBS memory auxiliary
info layout.

Coyote Cove microarchitecture shares the same PMU capabilities, including
the memory auxiliary info layout, with Panther Cove. Arctic Wolf
microarchitecture has a similar layout to Panther Cove, with the only
difference being specific data source encoding for L2 hit cases (up to
the L2 cache level). The OMR encoding remains the same as in Panther Cove.

For detailed information on the memory auxiliary info encoding, please
refer to section 16.2 "PEBS LOAD LATENCY AND STORE LATENCY FACILITY" in
the latest ISE documentation.

This patch defines Arctic Wolf specific data source encoding and then
supports PEBS memory auxiliary info field for NVL.

Signed-off-by: Dapeng Mi <dapeng1.mi@linux.intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://patch.msgid.link/20260114011750.350569-5-dapeng1.mi@linux.intel.com
arch/x86/events/intel/ds.c
arch/x86/events/perf_event.h

index 06e42ac337498719eb337e7e4cd532af47ac8765..a47f173d411bda5c40cc294f17779d2ddd7e2b8a 100644 (file)
@@ -96,6 +96,18 @@ union intel_x86_pebs_dse {
                unsigned int pnc_fb_full:1;
                unsigned int ld_reserved8:16;
        };
+       struct {
+               unsigned int arw_dse:8;
+               unsigned int arw_l2_miss:1;
+               unsigned int arw_xq_promotion:1;
+               unsigned int arw_reissue:1;
+               unsigned int arw_stlb_miss:1;
+               unsigned int arw_locked:1;
+               unsigned int arw_data_blk:1;
+               unsigned int arw_addr_blk:1;
+               unsigned int arw_fb_full:1;
+               unsigned int ld_reserved9:16;
+       };
 };
 
 
@@ -274,6 +286,29 @@ static u64 pnc_pebs_l2_hit_data_source[PNC_PEBS_DATA_SOURCE_MAX] = {
        OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE),       /* 0x0f: uncached */
 };
 
+/* Version for Arctic Wolf and later */
+
+/* L2 hit */
+#define ARW_PEBS_DATA_SOURCE_MAX       16
+static u64 arw_pebs_l2_hit_data_source[ARW_PEBS_DATA_SOURCE_MAX] = {
+       P(OP, LOAD) | P(LVL, NA) | LEVEL(NA) | P(SNOOP, NA),    /* 0x00: non-cache access */
+       OP_LH | P(LVL, L1)  | LEVEL(L1) | P(SNOOP, NONE),       /* 0x01: L1 hit */
+       OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE),      /* 0x02: WCB Hit */
+       OP_LH | P(LVL, L2)  | LEVEL(L2) | P(SNOOP, NONE),       /* 0x03: L2 Hit Clean */
+       OP_LH | P(LVL, L2)  | LEVEL(L2) | P(SNOOP, HIT),        /* 0x04: L2 Hit Snoop HIT */
+       OP_LH | P(LVL, L2)  | LEVEL(L2) | P(SNOOP, HITM),       /* 0x05: L2 Hit Snoop Hit Modified */
+       OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE),       /* 0x06: uncached */
+       0,                                                      /* 0x07: Reserved */
+       0,                                                      /* 0x08: Reserved */
+       0,                                                      /* 0x09: Reserved */
+       0,                                                      /* 0x0a: Reserved */
+       0,                                                      /* 0x0b: Reserved */
+       0,                                                      /* 0x0c: Reserved */
+       0,                                                      /* 0x0d: Reserved */
+       0,                                                      /* 0x0e: Reserved */
+       0,                                                      /* 0x0f: Reserved */
+};
+
 /* L2 miss */
 #define OMR_DATA_SOURCE_MAX            16
 static u64 omr_data_source[OMR_DATA_SOURCE_MAX] = {
@@ -458,6 +493,44 @@ u64 cmt_latency_data(struct perf_event *event, u64 status)
                                  dse.mtl_fwd_blk);
 }
 
+static u64 arw_latency_data(struct perf_event *event, u64 status)
+{
+       union intel_x86_pebs_dse dse;
+       union perf_mem_data_src src;
+       u64 val;
+
+       dse.val = status;
+
+       if (!dse.arw_l2_miss)
+               val = arw_pebs_l2_hit_data_source[dse.arw_dse & 0xf];
+       else
+               val = parse_omr_data_source(dse.arw_dse);
+
+       if (!val)
+               val = P(OP, LOAD) | LEVEL(NA) | P(SNOOP, NA);
+
+       if (dse.arw_stlb_miss)
+               val |= P(TLB, MISS) | P(TLB, L2);
+       else
+               val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2);
+
+       if (dse.arw_locked)
+               val |= P(LOCK, LOCKED);
+
+       if (dse.arw_data_blk)
+               val |= P(BLK, DATA);
+       if (dse.arw_addr_blk)
+               val |= P(BLK, ADDR);
+       if (!dse.arw_data_blk && !dse.arw_addr_blk)
+               val |= P(BLK, NA);
+
+       src.val = val;
+       if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW)
+               src.mem_op = P(OP, STORE);
+
+       return src.val;
+}
+
 static u64 lnc_latency_data(struct perf_event *event, u64 status)
 {
        union intel_x86_pebs_dse dse;
@@ -551,6 +624,16 @@ u64 pnc_latency_data(struct perf_event *event, u64 status)
        return src.val;
 }
 
+u64 nvl_latency_data(struct perf_event *event, u64 status)
+{
+       struct x86_hybrid_pmu *pmu = hybrid_pmu(event->pmu);
+
+       if (pmu->pmu_type == hybrid_small)
+               return arw_latency_data(event, status);
+
+       return pnc_latency_data(event, status);
+}
+
 static u64 load_latency_data(struct perf_event *event, u64 status)
 {
        union intel_x86_pebs_dse dse;
index cbca1888e8f77d50c84bf58f1e69b8377a5ba662..aedc1a7762c2b9ea30e781601513c0b856de6a58 100644 (file)
@@ -1666,6 +1666,8 @@ u64 arl_h_latency_data(struct perf_event *event, u64 status);
 
 u64 pnc_latency_data(struct perf_event *event, u64 status);
 
+u64 nvl_latency_data(struct perf_event *event, u64 status);
+
 extern struct event_constraint intel_core2_pebs_event_constraints[];
 
 extern struct event_constraint intel_atom_pebs_event_constraints[];