summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/intel_gpu_top.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index 1984c10d..26986a82 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -2389,6 +2389,23 @@ static void process_stdin(unsigned int timeout_us)
process_normal_stdin();
}
+static bool has_drm_fdinfo(const struct igt_device_card *card)
+{
+ struct drm_client_fdinfo info;
+ unsigned int cnt;
+ int fd;
+
+ fd = open(card->render, O_RDWR);
+ if (fd < 0)
+ return false;
+
+ cnt = igt_parse_drm_fdinfo(fd, &info);
+
+ close(fd);
+
+ return cnt > 0;
+}
+
static void show_help_screen(void)
{
printf(
@@ -2545,8 +2562,9 @@ int main(int argc, char **argv)
ret = EXIT_SUCCESS;
- clients = init_clients(card.pci_slot_name[0] ?
- card.pci_slot_name : IGPU_PCI);
+ if (has_drm_fdinfo(&card))
+ clients = init_clients(card.pci_slot_name[0] ?
+ card.pci_slot_name : IGPU_PCI);
init_engine_classes(engines);
if (clients) {
clients->num_classes = engines->num_classes;