Re: [PATCH] perf vendor events arm64: Add Cortex-A72 events

From: John Garry
Date: Thu Apr 11 2019 - 09:01:27 EST


On 07/04/2019 22:34, Florian Fainelli wrote:
The Cortex-A72 supports all ARMv8 recommended events up to the
RC_ST_SPEC (0x91) event, create an appropriate JSON file for mapping
those events and update the mapfile.csv for matching the Cortex-A72 MIDR
to that file.

Signed-off-by: Florian Fainelli <f.fainelli@xxxxxxxxx>
---
.../arm64/arm/cortex-a72/core-imp-def.json | 206 ++++++++++++++++++
tools/perf/pmu-events/arch/arm64/mapfile.csv | 1 +
2 files changed, 207 insertions(+)
create mode 100644 tools/perf/pmu-events/arch/arm64/arm/cortex-a72/core-imp-def.json

diff --git a/tools/perf/pmu-events/arch/arm64/arm/cortex-a72/core-imp-def.json b/tools/perf/pmu-events/arch/arm64/arm/cortex-a72/core-imp-def.json
new file mode 100644
index 000000000000..eb82fc8529c6
--- /dev/null
+++ b/tools/perf/pmu-events/arch/arm64/arm/cortex-a72/core-imp-def.json
@@ -0,0 +1,206 @@
+[
+ {
+ "ArchStdEvent": "L1D_CACHE_RD",
+ },
+ {
+ "ArchStdEvent": "L1D_CACHE_WR",
+ },
+ {
+ "ArchStdEvent": "L1D_CACHE_REFILL_RD",
+ },
+ {
+ "ArchStdEvent": "L1D_CACHE_REFILL_WR",
+ },
+ {
+ "ArchStdEvent": "L1D_CACHE_REFILL_INNER",

I'm just checking the A72 TRM, and this does not seem to be included, that being event number 0x44.

+ },
+ {
+ "ArchStdEvent": "L1D_CACHE_REFILL_OUTER",
+ },

Or this.

+ {
+ "ArchStdEvent": "L1D_CACHE_WB_VICTIM",
+ },
+ {

Please check this.

Thanks,
John