147 lines
5.2 KiB
Diff
147 lines
5.2 KiB
Diff
From c97102a71dc15b73456f00c97e4848a8a72b758a Mon Sep 17 00:00:00 2001
|
|
From: Leo Yan <leo.yan@linaro.org>
|
|
Date: Fri, 31 Dec 2021 13:32:05 +0800
|
|
Subject: [PATCH 09/21] perf arm-spe: Refactor address packet handling
|
|
|
|
mainline inclusion
|
|
from mainline-v5.11-rc1
|
|
commit 09935ca7b64cfa379b6ebf2b8cdb3126e09bffab
|
|
category: feature
|
|
bugzilla: https://gitee.com/openeuler/kernel/issues/I4NGPV
|
|
CVE: NA
|
|
|
|
-------------------------------------------------
|
|
|
|
This patch is to refactor address packet handling, it defines macros for
|
|
address packet's header and payload, these macros are used by decoder
|
|
and the dump flow.
|
|
|
|
Signed-off-by: Leo Yan <leo.yan@linaro.org>
|
|
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
|
|
Acked-by: Will Deacon <will@kernel.org>
|
|
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
|
|
Cc: Al Grant <Al.Grant@arm.com>
|
|
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
|
|
Cc: Dave Martin <Dave.Martin@arm.com>
|
|
Cc: Ingo Molnar <mingo@redhat.com>
|
|
Cc: James Clark <james.clark@arm.com>
|
|
Cc: Jiri Olsa <jolsa@redhat.com>
|
|
Cc: John Garry <john.garry@huawei.com>
|
|
Cc: Mark Rutland <mark.rutland@arm.com>
|
|
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
|
|
Cc: Namhyung Kim <namhyung@kernel.org>
|
|
Cc: Peter Zijlstra <peterz@infradead.org>
|
|
Cc: Wei Li <liwei391@huawei.com>
|
|
Link: https://lore.kernel.org/r/20201119152441.6972-5-leo.yan@linaro.org
|
|
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
|
|
Signed-off-by: Wei Li <liwei391@huawei.com>
|
|
Reviewed-by: Yang Jihong <yangjihong1@huawei.com>
|
|
Signed-off-by: Zheng Zengkai <zhengzengkai@huawei.com>
|
|
Signed-off-by: hongrongxuan <hongrongxuan@huawei.com>
|
|
|
|
Conflicts:
|
|
tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c
|
|
tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h
|
|
---
|
|
.../arm-spe-decoder/arm-spe-pkt-decoder.c | 26 +++++++++----------
|
|
.../arm-spe-decoder/arm-spe-pkt-decoder.h | 23 ++++++++++++++++
|
|
2 files changed, 35 insertions(+), 14 deletions(-)
|
|
|
|
diff --git a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c
|
|
index b16d68b40bbd..d37c4008adbc 100644
|
|
--- a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c
|
|
+++ b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c
|
|
@@ -13,9 +13,6 @@
|
|
|
|
#include "arm-spe-pkt-decoder.h"
|
|
|
|
-#define NS_FLAG BIT_ULL(63)
|
|
-#define EL_FLAG (BIT_ULL(62) | BIT_ULL(61))
|
|
-
|
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
#define le16_to_cpu bswap_16
|
|
#define le32_to_cpu bswap_32
|
|
@@ -167,10 +164,11 @@ static int arm_spe_get_addr(const unsigned char *buf, size_t len,
|
|
const unsigned char ext_hdr, struct arm_spe_pkt *packet)
|
|
{
|
|
packet->type = ARM_SPE_ADDRESS;
|
|
+
|
|
if (ext_hdr)
|
|
- packet->index = ((buf[0] & 0x3) << 3) | (buf[1] & 0x7);
|
|
+ packet->index = SPE_HDR_EXTENDED_INDEX(buf[0], buf[1]);
|
|
else
|
|
- packet->index = buf[0] & 0x7;
|
|
+ packet->index = SPE_HDR_SHORT_INDEX(buf[0]);
|
|
|
|
return arm_spe_get_payload(buf, len, ext_hdr, packet);
|
|
}
|
|
@@ -296,22 +294,22 @@ static int arm_spe_pkt_desc_addr(const struct arm_spe_pkt *packet,
|
|
int err = 0;
|
|
|
|
switch (idx) {
|
|
- case 0:
|
|
- case 1:
|
|
- ns = !!(packet->payload & NS_FLAG);
|
|
- el = (packet->payload & EL_FLAG) >> 61;
|
|
- payload &= ~(0xffULL << 56);
|
|
+ case SPE_ADDR_PKT_HDR_INDEX_INS:
|
|
+ case SPE_ADDR_PKT_HDR_INDEX_BRANCH:
|
|
+ ns = !!SPE_ADDR_PKT_GET_NS(payload);
|
|
+ el = SPE_ADDR_PKT_GET_EL(payload);
|
|
+ payload = SPE_ADDR_PKT_ADDR_GET_BYTES_0_6(payload);
|
|
arm_spe_pkt_out_string(&err, &buf, &buf_len,
|
|
"%s 0x%llx el%d ns=%d",
|
|
(idx == 1) ? "TGT" : "PC", payload, el, ns);
|
|
break;
|
|
- case 2:
|
|
+ case SPE_ADDR_PKT_HDR_INDEX_DATA_VIRT:
|
|
arm_spe_pkt_out_string(&err, &buf, &buf_len,
|
|
"VA 0x%llx", payload);
|
|
break;
|
|
- case 3:
|
|
- ns = !!(packet->payload & NS_FLAG);
|
|
- payload &= ~(0xffULL << 56);
|
|
+ case SPE_ADDR_PKT_HDR_INDEX_DATA_PHYS:
|
|
+ ns = !!SPE_ADDR_PKT_GET_NS(payload);
|
|
+ payload = SPE_ADDR_PKT_ADDR_GET_BYTES_0_6(payload);
|
|
arm_spe_pkt_out_string(&err, &buf, &buf_len,
|
|
"PA 0x%llx ns=%d", payload, ns);
|
|
break;
|
|
diff --git a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h
|
|
index 66b99a1e3919..f97d6840be3a 100644
|
|
--- a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h
|
|
+++ b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h
|
|
@@ -56,6 +56,29 @@ struct arm_spe_pkt {
|
|
#define SPE_HEADER0_COUNTER 0x98
|
|
#define SPE_HEADER1_ALIGNMENT 0x0
|
|
|
|
+#define SPE_HDR_SHORT_INDEX(h) ((h) & GENMASK_ULL(2, 0))
|
|
+#define SPE_HDR_EXTENDED_INDEX(h0, h1) (((h0) & GENMASK_ULL(1, 0)) << 3 | \
|
|
+ SPE_HDR_SHORT_INDEX(h1))
|
|
+
|
|
+/* Address packet header */
|
|
+#define SPE_ADDR_PKT_HDR_INDEX_INS 0x0
|
|
+#define SPE_ADDR_PKT_HDR_INDEX_BRANCH 0x1
|
|
+#define SPE_ADDR_PKT_HDR_INDEX_DATA_VIRT 0x2
|
|
+#define SPE_ADDR_PKT_HDR_INDEX_DATA_PHYS 0x3
|
|
+
|
|
+/* Address packet payload */
|
|
+#define SPE_ADDR_PKT_ADDR_BYTE7_SHIFT 56
|
|
+#define SPE_ADDR_PKT_ADDR_GET_BYTES_0_6(v) ((v) & GENMASK_ULL(55, 0))
|
|
+#define SPE_ADDR_PKT_ADDR_GET_BYTE_6(v) (((v) & GENMASK_ULL(55, 48)) >> 48)
|
|
+
|
|
+#define SPE_ADDR_PKT_GET_NS(v) (((v) & BIT_ULL(63)) >> 63)
|
|
+#define SPE_ADDR_PKT_GET_EL(v) (((v) & GENMASK_ULL(62, 61)) >> 61)
|
|
+
|
|
+#define SPE_ADDR_PKT_EL0 0
|
|
+#define SPE_ADDR_PKT_EL1 1
|
|
+#define SPE_ADDR_PKT_EL2 2
|
|
+#define SPE_ADDR_PKT_EL3 3
|
|
+
|
|
const char *arm_spe_pkt_name(enum arm_spe_pkt_type);
|
|
|
|
int arm_spe_get_packet(const unsigned char *buf, size_t len,
|
|
--
|
|
2.27.0
|
|
|