From 7618984cf5b683d25614ae12d03f71e899abf3b3 Mon Sep 17 00:00:00 2001 From: Lukas Zapolskas Date: Fri, 13 Dec 2024 17:09:41 +0000 Subject: [PATCH] panfrost/perf: Add Gx10 perfcounters Add manually created Mali-Gx10 counter definitions. v2: - Added the architecture major field. v3: - Swap the order of the shader core and memsys blocks. v4: - G710 -> Gx10, to indicate that all GPUs in this generation are supported Signed-off-by: Lukas Zapolskas Co-developed-by: Lars-Ivar Hesselberg Simonsen --- src/panfrost/perf/Gx10.xml | 175 ++++++++++++++++++++++++++++++++++ src/panfrost/perf/meson.build | 2 +- 2 files changed, 176 insertions(+), 1 deletion(-) create mode 100644 src/panfrost/perf/Gx10.xml diff --git a/src/panfrost/perf/Gx10.xml b/src/panfrost/perf/Gx10.xml new file mode 100644 index 00000000000..ddf009b8f81 --- /dev/null +++ b/src/panfrost/perf/Gx10.xml @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/panfrost/perf/meson.build b/src/panfrost/perf/meson.build index 2f8257f1875..acfa0040135 100644 --- a/src/panfrost/perf/meson.build +++ b/src/panfrost/perf/meson.build @@ -4,7 +4,7 @@ pan_hw_metrics = [ 'G31', 'G51', 'G52', 'G57', 'G68', 'G71', 'G72', 'G76', 'G77', - 'G78', 'T72x', 'T76x', 'T82x', 'T83x', 'T86x', 'T88x', + 'Gx10', 'G78', 'T72x', 'T76x', 'T82x', 'T83x', 'T86x', 'T88x', ] pan_hw_metrics_xml_files = []