intel/perf: report whether the platform supported
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>
Fri, 6 Sep 2019 08:37:00 +0000 (11:37 +0300)
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>
Wed, 20 May 2020 11:02:27 +0000 (14:02 +0300)
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/2775>

src/intel/perf/gen_perf.c
src/intel/perf/gen_perf.h

index 8c24344ed04a989f119748920a8bd97535fa03d8..2dc63c5226f38638a146ae309a6c4f0149dcdeb7 100644 (file)
@@ -662,6 +662,8 @@ load_oa_metrics(struct gen_perf_config *perf, int fd,
       }
    }
 
+   perf->platform_supported = oa_register != NULL;
+
    if (!i915_perf_oa_available ||
        !oa_register ||
        !get_sysfs_dev_dir(perf, fd) ||
index 3c6b9010bd7d256fb9b7b8fa187fa80317494137..c9c8a3042a8fdc1ac56db6d066c487e61907e555 100644 (file)
@@ -25,6 +25,7 @@
 #define GEN_PERF_H
 
 #include <stdio.h>
+#include <stdbool.h>
 #include <stdint.h>
 #include <string.h>
 
@@ -267,6 +268,12 @@ struct gen_perf_config {
     */
    struct hash_table *oa_metrics_table;
 
+   /* Whether we have support for this platform. If true && n_queries == 0,
+    * this means we will not be able to use i915-perf because of it is in
+    * paranoid mode.
+    */
+   bool platform_supported;
+
    /* Location of the device's sysfs entry. */
    char sysfs_dev_dir[256];