* [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP
@ 2025-03-13 6:21 Soham Purkait
2025-03-13 6:21 ` [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver Soham Purkait
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Soham Purkait @ 2025-03-13 6:21 UTC (permalink / raw)
To: igt-dev, riana.tauro, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait,
jonathan.ming.jun.lui
Add single engine busyness support in GPUTOP.
This uses the PMU interface to display the busyness
of each engine instances.
This patch refactors GPUTOP to be vendor-agnostic,
laying the groundwork for future support of multiple
GPU vendors.
Currently, GPUTOP supports GPUs with Xe driver only
and can monitor the engine busyness of multiple GPU
devices simultaneously through abstracting vendor
specific code into a common interface and implementing
vendor-neutral APIs for monitoring.
DRIVER: xe || BDF: 0000:00:02.0
ENGINES BUSY
Render/3D/0 | 96.5% ███████████████████████████████████████ |
Blitter/0 | 91.6% █████████████████████████████████████ |
Video/0 | 56.2% ███████████████████████████ |
VideoEnhance/0| 97.7% ████████████████████████████████████████|
Compute/0 | 48.5% ███████████████████████ |
Soham Purkait (4):
lib/igt_device_scan: Enable finding all IGT devices for a specific
driver
tools/gputop/utils: Add gputop utility functions common to all drivers
tools/gputop/xe_gputop: Add gputop support for xe specific devices
tools/gputop/gputop: Enable support for multiple GPUs and instances
lib/igt_device_scan.c | 58 ++++++
lib/igt_device_scan.h | 3 +
tools/{ => gputop}/gputop.c | 211 ++++++++++++++++----
tools/gputop/meson.build | 6 +
tools/gputop/utils.c | 51 +++++
tools/gputop/utils.h | 55 ++++++
tools/gputop/xe_gputop.c | 372 ++++++++++++++++++++++++++++++++++++
tools/gputop/xe_gputop.h | 73 +++++++
tools/meson.build | 6 +-
9 files changed, 789 insertions(+), 46 deletions(-)
rename tools/{ => gputop}/gputop.c (69%)
create mode 100644 tools/gputop/meson.build
create mode 100644 tools/gputop/utils.c
create mode 100644 tools/gputop/utils.h
create mode 100644 tools/gputop/xe_gputop.c
create mode 100644 tools/gputop/xe_gputop.h
--
2.34.1
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
@ 2025-03-13 6:21 ` Soham Purkait
2025-03-13 8:13 ` Krzysztof Karas
2025-03-13 11:51 ` Zbigniew Kempczyński
2025-03-13 6:21 ` [PATCH <i-g-t> v4 2/4] tools/gputop/utils: Add gputop utility functions common to all drivers Soham Purkait
` (6 subsequent siblings)
7 siblings, 2 replies; 14+ messages in thread
From: Soham Purkait @ 2025-03-13 6:21 UTC (permalink / raw)
To: igt-dev, riana.tauro, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait,
jonathan.ming.jun.lui
Add function to find all the available GPU
cards by driver name and card type.
Add driver field to igt_device_card structure
for storing driver names.
v2 : fix for refactoring GPUTOP into a
vendor-agnostic tool (Lucas)
v3 : Separate commit for lib (Kamil)
v4 : Refactor to use composition strategy
for driver and device type filtering
Refactor code to improve memory
allocation and error handling (Lucas)
Signed-off-by: Soham Purkait <soham.purkait@intel.com>
---
lib/igt_device_scan.c | 58 +++++++++++++++++++++++++++++++++++++++++++
lib/igt_device_scan.h | 3 +++
2 files changed, 61 insertions(+)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index 711bedc5c..4d243126e 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -774,6 +774,10 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card)
safe_strncpy(card->render, dev->drm_render,
sizeof(card->render));
+ if (dev->driver != NULL)
+ safe_strncpy(card->driver, dev->driver,
+ sizeof(card->driver));
+
if (dev->pci_slot_name != NULL)
safe_strncpy(card->pci_slot_name, dev->pci_slot_name,
sizeof(card->pci_slot_name));
@@ -820,6 +824,60 @@ static bool __find_first_intel_card_by_driver_name(struct igt_device_card *card,
return false;
}
+/**
+ * Iterate over all igt_devices array and find all discrete/integrated cards.
+ * @card: double pointer to igt_device_card structure, containing
+ * an array of igt_device_card structures upon successful return.
+ * @card_type: flag to indicate whether to find discrete, integrated, or
+ * both types of cards. Use 0 for integrated, 1 for discrete, and 2 for both.
+ * @drv_name: name of the driver to match.
+ *
+ * Returns the number of cards found, or -1 on error.
+ */
+int find_all_intel_card_by_driver_name(struct igt_device_card **card,
+ uint8_t card_type, const char *drv_name)
+{
+ int count = 0;
+ struct igt_device *dev;
+ int is_integrated;
+ struct igt_device_card *tmp;
+ struct igt_device_card *crd = NULL;
+
+ igt_assert(drv_name);
+ *card = NULL;
+
+ igt_list_for_each_entry(dev, &igt_devs.all, link) {
+ if (!is_pci_subsystem(dev) || strcmp(dev->driver, drv_name))
+ continue;
+
+ is_integrated = !strncmp(dev->pci_slot_name, INTEGRATED_I915_GPU_PCI_ID,
+ PCI_SLOT_NAME_SIZE);
+
+ if ((card_type == 1 && !is_integrated) ||
+ (card_type == 0 && is_integrated) ||
+ card_type == 2) {
+ tmp = realloc(crd, sizeof(struct igt_device_card) * (count + 1));
+ if (!tmp) {
+ free(crd);
+ return -1;
+ }
+
+ crd = tmp;
+ __copy_dev_to_card(dev, &crd[count]);
+ count++;
+ }
+ }
+
+ if (!count) {
+ if (!crd)
+ free(crd);
+ return 0;
+ }
+
+ *card = crd;
+ return count;
+}
+
bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card)
{
igt_assert(card);
diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
index 92741fe3c..4fbb11193 100644
--- a/lib/igt_device_scan.h
+++ b/lib/igt_device_scan.h
@@ -59,6 +59,7 @@ struct igt_device_card {
char subsystem[NAME_MAX];
char card[NAME_MAX];
char render[NAME_MAX];
+ char driver[NAME_MAX];
char pci_slot_name[PCI_SLOT_NAME_SIZE+1];
uint16_t pci_vendor, pci_device;
};
@@ -92,6 +93,8 @@ bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card);
bool igt_device_find_integrated_card(struct igt_device_card *card);
bool igt_device_find_first_xe_discrete_card(struct igt_device_card *card);
bool igt_device_find_xe_integrated_card(struct igt_device_card *card);
+int find_all_intel_card_by_driver_name(struct igt_device_card **card,
+ uint8_t want_discrete, const char *drv_name);
char *igt_device_get_pretty_name(struct igt_device_card *card, bool numeric);
int igt_open_card(struct igt_device_card *card);
int igt_open_render(struct igt_device_card *card);
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH <i-g-t> v4 2/4] tools/gputop/utils: Add gputop utility functions common to all drivers
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
2025-03-13 6:21 ` [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver Soham Purkait
@ 2025-03-13 6:21 ` Soham Purkait
2025-03-13 6:21 ` [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices Soham Purkait
` (5 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Soham Purkait @ 2025-03-13 6:21 UTC (permalink / raw)
To: igt-dev, riana.tauro, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait,
jonathan.ming.jun.lui
Implement utility functions in gputop for common
operations and data handling across different drivers.
v2 : fix for refactoring GPUTOP into a
vendor-agnostic tool (Lucas)
v3 : Headers in alphabetical order (Kamil, Riana)
v4 : fix source file naming and remove driver
specific codes (Riana)
Signed-off-by: Soham Purkait <soham.purkait@intel.com>
---
tools/gputop/utils.c | 51 ++++++++++++++++++++++++++++++++++++++++
tools/gputop/utils.h | 55 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 106 insertions(+)
create mode 100644 tools/gputop/utils.c
create mode 100644 tools/gputop/utils.h
diff --git a/tools/gputop/utils.c b/tools/gputop/utils.c
new file mode 100644
index 000000000..78dca415f
--- /dev/null
+++ b/tools/gputop/utils.c
@@ -0,0 +1,51 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+#include <assert.h>
+
+#include "utils.h"
+
+static const char * const bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
+
+void n_spaces(const unsigned int n)
+{
+ unsigned int i;
+
+ for (i = 0; i < n; i++)
+ putchar(' ');
+}
+
+void print_percentage_bar(double percent, int max_len)
+{
+ int bar_len, i, len = max_len - 1;
+ const int w = 8;
+
+ len -= printf("|%5.1f%% ", percent);
+
+ /* no space left for bars, do what we can */
+ if (len < 0)
+ len = 0;
+
+ bar_len = ceil(w * percent * len / 100.0);
+ if (bar_len > w * len)
+ bar_len = w * len;
+
+ for (i = bar_len; i >= w; i -= w)
+ printf("%s", bars[w]);
+ if (i)
+ printf("%s", bars[i]);
+
+ len -= (bar_len + (w - 1)) / w;
+ n_spaces(len);
+
+ putchar('|');
+}
+
+int print_engines_footer(int lines, int con_w, int con_h)
+{
+ if (lines++ < con_h)
+ printf("\n");
+
+ return lines;
+}
diff --git a/tools/gputop/utils.h b/tools/gputop/utils.h
new file mode 100644
index 000000000..7030f04bd
--- /dev/null
+++ b/tools/gputop/utils.h
@@ -0,0 +1,55 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef COMMON_GPUTOP_H
+#define COMMON_GPUTOP_H
+
+#include <math.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "igt_device_scan.h"
+
+#define ANSI_HEADER "\033[7m"
+#define ANSI_RESET "\033[0m"
+
+/**
+ * struct gputop_device
+ *
+ * @driver_present: It is set if at least a
+ * single device found of the respective driver
+ * @len: Number of total device discovered
+ * of the respective driver
+ * @instances: pointer to the array of
+ * discovered instances of the devices
+ * of the same driver
+ */
+struct gputop_device {
+ bool driver_present;
+ int len;
+ void *instances;
+};
+
+/**
+ * struct device_operations - Structure to hold function
+ * pointers for device specific operations for each individual driver.
+ * @discover_engines: Function to discover engines.
+ * @pmu_init: Function to initialize the PMU (Performance Monitoring Unit).
+ * @pmu_sample: Function to sample PMU data.
+ * @print_engines: Function to print engine business.
+ */
+struct device_operations {
+ void *(*discover_engines)(const void *obj);
+ int (*pmu_init)(const void *obj);
+ void (*pmu_sample)(const void *obj);
+ int (*print_engines)(const void *obj, int lines, int w, int h);
+};
+
+void print_percentage_bar(double percent, int max_len);
+int print_engines_footer(int lines, int con_w, int con_h);
+void n_spaces(const unsigned int n);
+
+#endif /* COMMON_GPUTOP_H */
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
2025-03-13 6:21 ` [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver Soham Purkait
2025-03-13 6:21 ` [PATCH <i-g-t> v4 2/4] tools/gputop/utils: Add gputop utility functions common to all drivers Soham Purkait
@ 2025-03-13 6:21 ` Soham Purkait
2025-03-14 4:57 ` Riana Tauro
2025-03-13 6:21 ` [PATCH <i-g-t> v4 4/4] tools/gputop/gputop: Enable support for multiple GPUs and instances Soham Purkait
` (4 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Soham Purkait @ 2025-03-13 6:21 UTC (permalink / raw)
To: igt-dev, riana.tauro, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait,
jonathan.ming.jun.lui
Add gputop support for xe-specific devices. Separate
driver-specific code into respective source files.
v2 : fix for refactoring GPUTOP into a
vendor-agnostic tool (Lucas)
v3 : Separate commit (Kamil)
v4 : Headers in alphabetical order
Engines memory allocation at
the beginning all at once
Removed PMU normalization (Riana)
Signed-off-by: Soham Purkait <soham.purkait@intel.com>
---
tools/gputop/xe_gputop.c | 372 +++++++++++++++++++++++++++++++++++++++
tools/gputop/xe_gputop.h | 73 ++++++++
2 files changed, 445 insertions(+)
create mode 100644 tools/gputop/xe_gputop.c
create mode 100644 tools/gputop/xe_gputop.h
diff --git a/tools/gputop/xe_gputop.c b/tools/gputop/xe_gputop.c
new file mode 100644
index 000000000..4137bb771
--- /dev/null
+++ b/tools/gputop/xe_gputop.c
@@ -0,0 +1,372 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include "xe_gputop.h"
+
+#define engine_ptr(engines, n) (&(engines)->engine + (n))
+
+static void __update_sample(struct xe_pmu_counter *counter, uint64_t val)
+{
+ counter->val.prev = counter->val.cur;
+ counter->val.cur = val;
+}
+
+static void update_sample(struct xe_pmu_counter *counter, uint64_t *val)
+{
+ if (counter->present)
+ __update_sample(counter, val[counter->idx]);
+}
+
+static const char *class_display_name(unsigned int class)
+{
+ switch (class) {
+ case DRM_XE_ENGINE_CLASS_RENDER:
+ return "Render/3D";
+ case DRM_XE_ENGINE_CLASS_COPY:
+ return "Blitter";
+ case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
+ return "Video";
+ case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
+ return "VideoEnhance";
+ case DRM_XE_ENGINE_CLASS_COMPUTE:
+ return "Compute";
+ default:
+ return "[unknown]";
+ }
+}
+
+static inline void *clean_up(void *engines)
+{
+ if (engines)
+ free(engines);
+
+ return NULL;
+}
+
+static char *pmu_name(struct igt_device_card *card)
+{
+ int card_fd;
+ char device[30];
+ char *path;
+
+ if (strlen(card->card))
+ card_fd = igt_open_card(card);
+ else if (strlen(card->render))
+ card_fd = igt_open_render(card);
+
+ if (card_fd == -1)
+ return NULL;
+
+ xe_perf_device(card_fd, device, sizeof(device));
+ path = strdup(device);
+ close(card_fd);
+ return path;
+}
+
+static int _open_pmu(uint64_t type, unsigned int *cnt, struct xe_pmu_counter *pmu, int *fd)
+{
+ int fd__ = igt_perf_open_group(type, pmu->config, *fd);
+
+ if (fd__ >= 0) {
+ if (*fd == -1)
+ *fd = fd__;
+ pmu->present = true;
+ pmu->idx = (*cnt)++;
+ }
+
+ return fd__;
+}
+
+void xe_gputop_init(struct xe_gputop *obj,
+ struct igt_device_card *card)
+{
+ obj->pmu_device = pmu_name(card);
+ if (!obj->pmu_device) {
+ fprintf(stderr, "%s : pmu_device path returned NULL", card->pci_slot_name);
+ exit(EXIT_FAILURE);
+ }
+ obj->card = card;
+}
+
+static int pmu_format_shift(int xe, const char *name)
+{
+ uint32_t start;
+ int format;
+ char device[80];
+
+ format = perf_event_format(xe_perf_device(xe, device, sizeof(device)),
+ name, &start);
+ if (format)
+ return 0;
+
+ return start;
+}
+
+static int engine_cmp(const void *__a, const void *__b)
+{
+ const struct xe_engine *a = (struct xe_engine *)__a;
+ const struct xe_engine *b = (struct xe_engine *)__b;
+
+ if (a->drm_xe_engine.engine_class != b->drm_xe_engine.engine_class)
+ return a->drm_xe_engine.engine_class - b->drm_xe_engine.engine_class;
+ else
+ return a->drm_xe_engine.engine_instance - b->drm_xe_engine.engine_instance;
+}
+
+void *xe_discover_engines(const void *obj)
+{
+ struct igt_device_card *card = ((struct xe_gputop *)obj)->card;
+ struct xe_engines *engines;
+ int ret = 0;
+ char device[30];
+ struct drm_xe_engine_class_instance *hwe;
+ int card_fd;
+
+ if (!card || !strlen(card->card) || !strlen(card->render))
+ return NULL;
+
+ if (strlen(card->card)) {
+ card_fd = igt_open_card(card);
+ } else if (strlen(card->render)) {
+ card_fd = igt_open_render(card);
+ } else {
+ fprintf(stderr, "Failed to detect device!\n");
+ return clean_up(engines);
+ }
+ xe_device_get(card_fd);
+ engines = malloc(sizeof(struct xe_engines) +
+ xe_number_engines(card_fd) * sizeof(struct xe_engine));
+ if (!engines)
+ return NULL;
+
+ memset(engines, 0, sizeof(struct xe_engines) +
+ xe_number_engines(card_fd) * sizeof(struct xe_engine));
+
+ engines->num_engines = 0;
+ engines->device = ((struct xe_gputop *)obj)->pmu_device;
+ xe_for_each_engine(card_fd, hwe) {
+ uint64_t engine_class, engine_instance, gt_shift, param_config;
+ struct xe_engine *engine;
+
+ engine = engine_ptr(engines, engines->num_engines);
+ gt_shift = pmu_format_shift(card_fd, "gt");
+ engine_class = pmu_format_shift(card_fd, "engine_class");
+ engine_instance = pmu_format_shift(card_fd, "engine_instance");
+ param_config = (uint64_t)hwe->gt_id << gt_shift | hwe->engine_class << engine_class
+ | hwe->engine_instance << engine_instance;
+
+ engine->drm_xe_engine = *hwe;
+
+ ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)),
+ "engine-active-ticks", &engine->busy_ticks.config);
+ if (ret < 0)
+ break;
+
+ engine->busy_ticks.config |= param_config;
+
+ ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)),
+ "engine-total-ticks", &engine->total_ticks.config);
+ if (ret < 0)
+ break;
+
+ engine->total_ticks.config |= param_config;
+
+ if (engine->busy_ticks.config == -1 || engine->total_ticks.config == -1) {
+ ret = ENOENT;
+ break;
+ }
+
+ ret = asprintf(&engine->display_name, "%s/%u",
+ class_display_name(engine->drm_xe_engine.engine_class),
+ engine->drm_xe_engine.engine_instance);
+
+ if (ret <= 0) {
+ ret = errno;
+ break;
+ }
+ ret = asprintf(&engine->short_name, "%s/%u",
+ xe_engine_class_short_string(engine->drm_xe_engine.engine_class),
+ engine->drm_xe_engine.engine_instance);
+
+ if (ret <= 0) {
+ ret = errno;
+ break;
+ }
+
+ engines->num_engines++;
+ }
+
+ if (!ret) {
+ errno = ret;
+ return clean_up(engines);
+ }
+
+ qsort(engine_ptr(engines, 0), engines->num_engines,
+ sizeof(struct xe_engine), engine_cmp);
+
+ ((struct xe_gputop *)obj)->eng_obj = engines;
+
+ return engines;
+}
+
+static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
+{
+ uint64_t buf[2 + num];
+ unsigned int i;
+ ssize_t len;
+
+ memset(buf, 0, sizeof(buf));
+
+ len = read(fd, buf, sizeof(buf));
+ assert(len == sizeof(buf));
+
+ for (i = 0; i < num; i++)
+ val[i] = buf[2 + i];
+
+ return buf[1];
+}
+
+void xe_pmu_sample(const void *obj)
+{
+ struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
+ const int num_val = engines->num_counters;
+ uint64_t val[2 + num_val];
+ unsigned int i;
+
+ engines->ts.prev = engines->ts.cur;
+ engines->ts.cur = pmu_read_multi(engines->fd, num_val, val);
+
+ for (i = 0; i < engines->num_engines; i++) {
+ struct xe_engine *engine = engine_ptr(engines, i);
+
+ update_sample(&engine->busy_ticks, val);
+ update_sample(&engine->total_ticks, val);
+ }
+}
+
+int xe_pmu_init(const void *obj)
+{
+ struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
+ unsigned int i;
+ int fd;
+ struct xe_engine *engine;
+ uint64_t type = igt_perf_type_id(engines->device);
+
+ engines->fd = -1;
+ engines->num_counters = 0;
+
+ engine = engine_ptr(engines, 0);
+ fd = _open_pmu(type, &engines->num_counters, &engine->busy_ticks, &engines->fd);
+ if (fd < 0)
+ return -1;
+ fd = _open_pmu(type, &engines->num_counters, &engine->total_ticks, &engines->fd);
+ if (fd < 0)
+ return -1;
+
+ for (i = 1; i < engines->num_engines; i++) {
+ engine = engine_ptr(engines, i);
+ fd = _open_pmu(type, &engines->num_counters, &engine->busy_ticks, &engines->fd);
+ if (fd < 0)
+ return -1;
+ fd = _open_pmu(type, &engines->num_counters, &engine->total_ticks, &engines->fd);
+ if (fd < 0)
+ return -1;
+ }
+ return 0;
+}
+
+static double pmu_calc_total(struct xe_pmu_pair *p)
+{
+ double v;
+
+ v = p->cur - p->prev;
+ return v;
+}
+
+static double pmu_calc(struct xe_pmu_pair *p, double total_tick)
+{
+ double bz = p->cur - p->prev;
+ double total;
+
+ total = (bz * 100) / total_tick;
+ return total;
+}
+
+static int
+print_device_description(const void *obj, int lines, int w, int h)
+{
+ char *desc;
+ int len;
+
+ len = asprintf(&desc, "DRIVER: %s || BDF: %s",
+ ((struct xe_gputop *)obj)->card->driver,
+ ((struct xe_gputop *)obj)->card->pci_slot_name);
+
+ printf("\033[7m%s%*s\033[0m\n",
+ desc,
+ (int)(w - len), " ");
+ lines++;
+ free(desc);
+ return lines;
+}
+
+static int
+print_engines_header(struct xe_engines *engines,
+ int lines, int con_w, int con_h)
+{
+ const char *a;
+
+ for (unsigned int i = 0;
+ i < engines->num_engines && lines < con_h;
+ i++) {
+ struct xe_engine *engine = engine_ptr(engines, i);
+
+ if (!engine->num_counters)
+ continue;
+
+ a = " ENGINES BUSY ";
+
+ printf("\033[7m%s%*s\033[0m\n",
+ a,
+ (int)(con_w - strlen(a)), " ");
+ lines++;
+
+ break;
+ }
+
+ return lines;
+}
+
+static int
+print_engine(struct xe_engines *engines, unsigned int i,
+ int lines, int con_w, int con_h)
+{
+ struct xe_engine *engine = engine_ptr(engines, i);
+ double total_tick = pmu_calc_total(&engine->total_ticks.val);
+ double percentage = pmu_calc(&engine->busy_ticks.val, total_tick);
+
+ printf("%*s", (int)(strlen(" ENGINES")), engine->display_name);
+ print_percentage_bar(percentage, con_w - strlen(" ENGINES"));
+ printf("\n");
+
+ return ++lines;
+}
+
+int xe_print_engines(const void *obj, int lines, int w, int h)
+{
+ struct xe_engines *show = ((struct xe_gputop *)obj)->eng_obj;
+
+ lines = print_device_description(obj, lines, w, h);
+
+ lines = print_engines_header(show, lines, w, h);
+
+ for (unsigned int i = 0; i < show->num_engines && lines < h; i++)
+ lines = print_engine(show, i, lines, w, h);
+
+ lines = print_engines_footer(lines, w, h);
+
+ return lines;
+}
+
diff --git a/tools/gputop/xe_gputop.h b/tools/gputop/xe_gputop.h
new file mode 100644
index 000000000..1f23b2ed0
--- /dev/null
+++ b/tools/gputop/xe_gputop.h
@@ -0,0 +1,73 @@
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef __XE_GPUTOP_H__
+#define __XE_GPUTOP_H__
+
+#include <dirent.h>
+
+#include "igt_device_scan.h"
+#include "igt_perf.h"
+#include "utils.h"
+#include "xe/xe_query.h"
+
+struct xe_pmu_pair {
+ uint64_t cur;
+ uint64_t prev;
+};
+
+struct xe_pmu_counter {
+ uint64_t type;
+ uint64_t config;
+ unsigned int idx;
+ struct xe_pmu_pair val;
+ bool present;
+};
+
+struct xe_engine {
+ const char *name;
+ char *display_name;
+ char *short_name;
+ struct drm_xe_engine_class_instance drm_xe_engine;
+ unsigned int num_counters;
+ struct xe_pmu_counter busy_ticks;
+ struct xe_pmu_counter total_ticks;
+};
+
+struct xe_engines {
+ unsigned int num_engines;
+ unsigned int num_classes;
+ unsigned int num_counters;
+ DIR *root;
+ int fd;
+ struct xe_pmu_pair ts;
+ bool discrete;
+ char *device;
+ int num_gts;
+
+ /* Do not edit below this line.
+ * This structure is reallocated every time a new engine is
+ * found and size is increased by sizeof (engine).
+ */
+ struct xe_engine engine;
+
+};
+
+struct xe_gputop {
+ char *pmu_device;
+ struct igt_device_card *card;
+ struct xe_engines *eng_obj;
+};
+
+void xe_gputop_init(struct xe_gputop *obj,
+ struct igt_device_card *card);
+
+void xe_populate_device_instances(struct gputop_device *dv);
+void *xe_discover_engines(const void *obj);
+void xe_pmu_sample(const void *obj);
+int xe_pmu_init(const void *obj);
+int xe_print_engines(const void *obj, int lines, int w, int h);
+
+#endif /* __XE_GPUTOP_H__ */
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH <i-g-t> v4 4/4] tools/gputop/gputop: Enable support for multiple GPUs and instances
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
` (2 preceding siblings ...)
2025-03-13 6:21 ` [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices Soham Purkait
@ 2025-03-13 6:21 ` Soham Purkait
2025-03-13 7:58 ` ✓ Xe.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev5) Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Soham Purkait @ 2025-03-13 6:21 UTC (permalink / raw)
To: igt-dev, riana.tauro, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait,
jonathan.ming.jun.lui
Introduce vendor-agnostic support for handling multiple GPUs and
instances in gputop. Improve the tool's adaptability to various GPU
configurations.
v2 : fix for refactoring GPUTOP into a
vendor-agnostic tool (Lucas)
v3 : New year included in copyright (Kamil, Riana)
Removed caps in function name (Riana)
Struct for driver specific operations (Riana)
Headers in alphabetical order (Kamil, Riana)
v4 : Commit description and
signed-off included
Signed-off-by: Soham Purkait <soham.purkait@intel.com>
---
tools/{ => gputop}/gputop.c | 211 +++++++++++++++++++++++++++++-------
tools/gputop/meson.build | 6 +
tools/meson.build | 6 +-
3 files changed, 177 insertions(+), 46 deletions(-)
rename tools/{ => gputop}/gputop.c (69%)
create mode 100644 tools/gputop/meson.build
diff --git a/tools/gputop.c b/tools/gputop/gputop.c
similarity index 69%
rename from tools/gputop.c
rename to tools/gputop/gputop.c
index 43b01f566..732c885e2 100644
--- a/tools/gputop.c
+++ b/tools/gputop/gputop.c
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT
/*
- * Copyright © 2023 Intel Corporation
+ * Copyright © 2023-2025 Intel Corporation
*/
#include <assert.h>
@@ -14,66 +14,110 @@
#include <math.h>
#include <poll.h>
#include <signal.h>
+#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/sysmacros.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
-#include <unistd.h>
#include <termios.h>
-#include <sys/sysmacros.h>
-#include <stdbool.h>
+#include <unistd.h>
+#include "drmtest.h"
#include "igt_core.h"
#include "igt_drm_clients.h"
#include "igt_drm_fdinfo.h"
+#include "igt_perf.h"
#include "igt_profiling.h"
-#include "drmtest.h"
+#include "xe_gputop.h"
+#include "xe/xe_query.h"
+
+/**
+ * Supported Drivers
+ *
+ * Adhere to the following requirements
+ * when implementing support for the
+ * new driver:
+ * @drivers: Update drivers[] with
+ * driver string.
+ * @total_count: Update NUM_DRIVER with
+ * the total number of supported drivers.
+ * @operations: Update the respective
+ * operations of the new driver:
+ * discover_engines,
+ * pmu_init,
+ * pmu_sample,
+ * print_engines
+ * @devices: Update devices[] array
+ * of type "struct gputop_device" with
+ * the initial values.
+ */
+static const char * const drivers[] = {
+ "xe",
+ /*Keep the last one as NULL*/
+ NULL
+};
+
+/**
+ * Number of supported drivers needs to be adjusted
+ * as per the letgth of the drivers[] array.
+ */
+#define NUM_DRIVER 1
+
+/**
+ * Supported operations on driver instances.
+ * Update the oprs[] array for
+ * each individual driver specific function.
+ * Maintain the sequence as per drivers[] array.
+ */
+struct device_operations oprs[NUM_DRIVER] = {
+ {
+ xe_discover_engines,
+ xe_pmu_init,
+ xe_pmu_sample,
+ xe_print_engines
+ }
+};
+
+/*
+ * devices[] array of type
+ * struct gputop_device
+ */
+struct gputop_device devices[] = {
+ {false, 0, NULL}
+};
enum utilization_type {
UTILIZATION_TYPE_ENGINE_TIME,
UTILIZATION_TYPE_TOTAL_CYCLES,
};
-static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
-
-#define ANSI_HEADER "\033[7m"
-#define ANSI_RESET "\033[0m"
-
-static void n_spaces(const unsigned int n)
+static void populate_device_instances(struct gputop_device *dev, const char *driver)
{
- unsigned int i;
-
- for (i = 0; i < n; i++)
- putchar(' ');
+ struct igt_device_card *cards = NULL;
+ int count;
+#define ALL_CARD_TYPES 2
+ count = find_all_intel_card_by_driver_name(&cards, ALL_CARD_TYPES, driver);
+ dev->driver_present = true;
+ dev->len = count;
+ dev->instances = calloc(dev->len, sizeof(struct xe_gputop));
+ for (int i = 0; i < count; i++) {
+ xe_gputop_init((struct xe_gputop *)dev->instances + i,
+ cards + i
+ );
+ }
}
-static void print_percentage_bar(double percent, int max_len)
+static int find_driver(struct igt_device_card *card)
{
- int bar_len, i, len = max_len - 1;
- const int w = 8;
-
- len -= printf("|%5.1f%% ", percent);
-
- /* no space left for bars, do what we can */
- if (len < 0)
- len = 0;
-
- bar_len = ceil(w * percent * len / 100.0);
- if (bar_len > w * len)
- bar_len = w * len;
-
- for (i = bar_len; i >= w; i -= w)
- printf("%s", bars[w]);
- if (i)
- printf("%s", bars[i]);
-
- len -= (bar_len + (w - 1)) / w;
- n_spaces(len);
-
- putchar('|');
+ for (int i = 0; drivers[i]; i++) {
+ if (strcmp(drivers[i], card->driver) == 0)
+ return i;
+ }
+ return -1;
}
static int
@@ -333,6 +377,7 @@ static void clrscr(void)
struct gputop_args {
long n_iter;
unsigned long delay_usec;
+ char *device;
};
static void help(void)
@@ -343,16 +388,18 @@ static void help(void)
"\t-h, --help show this help\n"
"\t-d, --delay =SEC[.TENTHS] iterative delay as SECS [.TENTHS]\n"
"\t-n, --iterations =NUMBER number of executions\n"
+ "\t-D, --device Device filter"
, program_invocation_short_name);
}
static int parse_args(int argc, char * const argv[], struct gputop_args *args)
{
- static const char cmdopts_s[] = "hn:d:";
+ static const char cmdopts_s[] = "hn:d:D:";
static const struct option cmdopts[] = {
{"help", no_argument, 0, 'h'},
{"delay", required_argument, 0, 'd'},
{"iterations", required_argument, 0, 'n'},
+ {"device", required_argument, 0, 'D'},
{ }
};
@@ -360,6 +407,7 @@ static int parse_args(int argc, char * const argv[], struct gputop_args *args)
memset(args, 0, sizeof(*args));
args->n_iter = -1;
args->delay_usec = 2 * USEC_PER_SEC;
+ args->device = NULL;
for (;;) {
int c, idx = 0;
@@ -383,6 +431,9 @@ static int parse_args(int argc, char * const argv[], struct gputop_args *args)
return -1;
}
break;
+ case 'D':
+ args->device = optarg;
+ break;
case 'h':
help();
return 0;
@@ -422,6 +473,76 @@ int main(int argc, char **argv)
n = args.n_iter;
period_us = args.delay_usec;
+ igt_devices_scan();
+
+ if (args.device) {
+ struct igt_device_card *card = calloc(1, sizeof(struct igt_device_card));
+
+ if (!igt_device_card_match(args.device, card)) {
+ printf("No device found for the filter\n"
+ "Showing for all devices\n");
+ free(card);
+ } else {
+ int driver_no = find_driver(card);
+
+ if (driver_no < 0) {
+ fprintf(stderr, "The driver %s could not be found.", card->driver);
+ exit(EXIT_FAILURE);
+ }
+
+ devices[driver_no].driver_present = true;
+ devices[driver_no].len = 1;
+ devices[driver_no].instances =
+ calloc(1, sizeof(struct xe_gputop));
+ xe_gputop_init(devices[driver_no].instances,
+ card
+ );
+ goto explore_devices;
+ }
+ }
+
+ for (int i = 0; drivers[i]; i++)
+ populate_device_instances(devices + i, drivers[i]);
+
+explore_devices:
+
+ for (int i = 0; drivers[i]; i++) {
+ if (devices[i].driver_present) {
+ for (int j = 0; j < devices[i].len; j++) {
+ if (!oprs[i].discover_engines(devices[i].instances + j)) {
+ fprintf(stderr,
+ "Failed to discover engines! (%s)\n",
+ strerror(errno));
+ return EXIT_FAILURE;
+ }
+ ret = oprs[i].pmu_init(devices[i].instances + j);
+
+ if (ret) {
+ fprintf(stderr,
+ "Failed to initialize PMU! (%s)\n",
+ strerror(errno));
+ if (errno == EACCES && geteuid())
+ fprintf(stderr,
+ "\n"
+ "When running as a normal user CAP_PERFMON is required to access performance\n"
+ "monitoring. See \"man 7 capabilities\", \"man 8 setcap\", or contact your\n"
+ "distribution vendor for assistance.\n"
+ "\n"
+ "More information can be found at 'Perf events and tool security' document:\n"
+ "https://www.kernel.org/doc/html/latest/admin-guide/perf-security.html\n");
+
+ igt_devices_free();
+ return EXIT_FAILURE;
+ }
+ }
+ }
+ }
+
+ for (int i = 0; drivers[i]; i++) {
+ for (int j = 0; devices[i].driver_present && j < devices[i].len; j++)
+ oprs[i].pmu_sample(devices[i].instances + j);
+ }
+
clients = igt_drm_clients_init(NULL);
if (!clients)
exit(1);
@@ -442,7 +563,7 @@ int main(int argc, char **argv)
while ((n != 0) && !stop_top) {
struct igt_drm_client *c, *prevc = NULL;
- int i, engine_w = 0, lines = 0;
+ int k, engine_w = 0, lines = 0;
igt_drm_clients_scan(clients, NULL, NULL, 0, NULL, 0);
igt_drm_clients_sort(clients, client_cmp);
@@ -450,6 +571,14 @@ int main(int argc, char **argv)
update_console_size(&con_w, &con_h);
clrscr();
+ for (int i = 0; drivers[i]; i++) {
+ for (int j = 0; devices[i].driver_present && j < devices[i].len; j++) {
+ oprs[i].pmu_sample(devices[i].instances + j);
+ lines = oprs[i].print_engines(devices[i].instances + j,
+ lines, con_w, con_h);
+ }
+ }
+
if (!clients->num_clients) {
const char *msg = " (No GPU clients yet. Start workload to see stats)";
@@ -457,7 +586,7 @@ int main(int argc, char **argv)
(int)(con_w - strlen(msg) - 1), msg);
}
- igt_for_each_drm_client(clients, c, i) {
+ igt_for_each_drm_client(clients, c, k) {
assert(c->status != IGT_DRM_CLIENT_PROBE);
if (c->status != IGT_DRM_CLIENT_ALIVE)
break; /* Active clients are first in the array. */
diff --git a/tools/gputop/meson.build b/tools/gputop/meson.build
new file mode 100644
index 000000000..4766d8496
--- /dev/null
+++ b/tools/gputop/meson.build
@@ -0,0 +1,6 @@
+gputop_src = [ 'gputop.c', 'utils.c', 'xe_gputop.c']
+executable('gputop', sources : gputop_src,
+ install : true,
+ install_rpath : bindir_rpathdir,
+ dependencies : [igt_deps,lib_igt_perf,lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math],
+ install: true)
diff --git a/tools/meson.build b/tools/meson.build
index 1dfe1f839..44c127c01 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -68,11 +68,6 @@ if libudev.found()
install : true)
endif
-executable('gputop', 'gputop.c',
- install : true,
- install_rpath : bindir_rpathdir,
- dependencies : [lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math])
-
intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ]
executable('intel_l3_parity', sources : intel_l3_parity_src,
dependencies : tool_deps,
@@ -121,3 +116,4 @@ endif
subdir('i915-perf')
subdir('xe-perf')
subdir('null_state_gen')
+subdir('gputop')
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev5)
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
` (3 preceding siblings ...)
2025-03-13 6:21 ` [PATCH <i-g-t> v4 4/4] tools/gputop/gputop: Enable support for multiple GPUs and instances Soham Purkait
@ 2025-03-13 7:58 ` Patchwork
2025-03-13 8:16 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-03-13 7:58 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1073 bytes --]
== Series Details ==
Series: Add single engine busyness stats in GPUTOP (rev5)
URL : https://patchwork.freedesktop.org/series/143086/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8273_BAT -> XEIGTPW_12764_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8273 -> IGTPW_12764
* Linux: xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e -> xe-2809-4e643702e9d1dbb19e2b4cf9883900e3878f4a28
IGTPW_12764: 12764
IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e: e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e
xe-2809-4e643702e9d1dbb19e2b4cf9883900e3878f4a28: 4e643702e9d1dbb19e2b4cf9883900e3878f4a28
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/index.html
[-- Attachment #2: Type: text/html, Size: 1632 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver
2025-03-13 6:21 ` [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver Soham Purkait
@ 2025-03-13 8:13 ` Krzysztof Karas
2025-03-13 11:51 ` Zbigniew Kempczyński
1 sibling, 0 replies; 14+ messages in thread
From: Krzysztof Karas @ 2025-03-13 8:13 UTC (permalink / raw)
To: Soham Purkait
Cc: igt-dev, riana.tauro, vinay.belgaumkar, anshuman.gupta,
lucas.demarchi, rodrigo.vivi, jonathan.ming.jun.lui
Hi Soham,
[...]
> +/**
> + * Iterate over all igt_devices array and find all discrete/integrated cards.
> + * @card: double pointer to igt_device_card structure, containing
> + * an array of igt_device_card structures upon successful return.
You could rename this parameter to "cards" and write something
like "an array of cards to be filled". The fact that this is
a double pointer of igt_device struct is apparent upon first
glance at the function signature.
> + * @card_type: flag to indicate whether to find discrete, integrated, or
> + * both types of cards. Use 0 for integrated, 1 for discrete, and 2 for both.
Instead of explaining what certain values mean here, you could
use "dev_type" enum defined earlier in this file. That would
prevent the code from using magic numbers.
> + * @drv_name: name of the driver to match.
> + *
> + * Returns the number of cards found, or -1 on error.
> + */
> +int find_all_intel_card_by_driver_name(struct igt_device_card **card,
> + uint8_t card_type, const char *drv_name)
In this file there are already a few functions that begin with
"igt_device_find" - you could keep that convention here and
rename this function to something like
"igt_device_find_all_by_driver".
> +{
> + int count = 0;
> + struct igt_device *dev;
> + int is_integrated;
> + struct igt_device_card *tmp;
> + struct igt_device_card *crd = NULL;
> +
> + igt_assert(drv_name);
> + *card = NULL;
> +
> + igt_list_for_each_entry(dev, &igt_devs.all, link) {
> + if (!is_pci_subsystem(dev) || strcmp(dev->driver, drv_name))
> + continue;
> +
> + is_integrated = !strncmp(dev->pci_slot_name, INTEGRATED_I915_GPU_PCI_ID,
> + PCI_SLOT_NAME_SIZE);
> +
> + if ((card_type == 1 && !is_integrated) ||
> + (card_type == 0 && is_integrated) ||
> + card_type == 2) {
It would be more readable to see named values from earlier
mentioned enum: DEVTYPE_ALL, DEVTYPE_INTEGRATED,
DEVTYPE_DISCRETE.
> + tmp = realloc(crd, sizeof(struct igt_device_card) * (count + 1));
> + if (!tmp) {
> + free(crd);
> + return -1;
> + }
> +
> + crd = tmp;
> + __copy_dev_to_card(dev, &crd[count]);
> + count++;
> + }
> + }
> +
> + if (!count) {
> + if (!crd)
> + free(crd);
If the "count" is equal to 0 at this point then "crd" will be
NULL, so this call to free() here seems unnecessary (unless I
missed something).
Best Regards,
Krzysztof
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev5)
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
` (4 preceding siblings ...)
2025-03-13 7:58 ` ✓ Xe.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev5) Patchwork
@ 2025-03-13 8:16 ` Patchwork
2025-03-13 10:28 ` ✗ i915.CI.Full: failure " Patchwork
2025-03-14 13:14 ` ✗ Xe.CI.Full: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-03-13 8:16 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7895 bytes --]
== Series Details ==
Series: Add single engine busyness stats in GPUTOP (rev5)
URL : https://patchwork.freedesktop.org/series/143086/
State : success
== Summary ==
CI Bug Log - changes from IGT_8273 -> IGTPW_12764
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/index.html
Participating hosts (43 -> 43)
------------------------------
Additional (1): bat-arlh-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12764 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#11346] / [i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11345] / [i915#11346]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#11346] / [i915#1849])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11343] / [i915#11346])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#11346] / [i915#12637]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10206] / [i915#11346] / [i915#11724])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#10209] / [i915#11346] / [i915#11681])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][10] -> [DMESG-FAIL][11] ([i915#12061]) +1 other test dmesg-fail
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8273/bat-arls-5/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-rplp-1: [PASS][12] -> [INCOMPLETE][13] ([i915#12445] / [i915#9413]) +1 other test incomplete
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8273/bat-rplp-1/igt@i915_selftest@live@workarounds.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-rplp-1/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][14] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][15] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_psr@psr-primary-page-flip:
- bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#11346]) +32 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#10208] / [i915#11346] / [i915#8809])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][18] ([i915#10212] / [i915#11346] / [i915#11726])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][19] ([i915#10214] / [i915#11346] / [i915#11726])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#10216] / [i915#11346] / [i915#11723])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/bat-arlh-2/igt@prime_vgem@basic-write.html
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8273 -> IGTPW_12764
* Linux: CI_DRM_16274 -> CI_DRM_16277
CI-20190529: 20190529
CI_DRM_16274: e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16277: 4e643702e9d1dbb19e2b4cf9883900e3878f4a28 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12764: 12764
IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/index.html
[-- Attachment #2: Type: text/html, Size: 10220 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ i915.CI.Full: failure for Add single engine busyness stats in GPUTOP (rev5)
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
` (5 preceding siblings ...)
2025-03-13 8:16 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-03-13 10:28 ` Patchwork
2025-03-14 13:14 ` ✗ Xe.CI.Full: " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-03-13 10:28 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 140058 bytes --]
== Series Details ==
Series: Add single engine busyness stats in GPUTOP (rev5)
URL : https://patchwork.freedesktop.org/series/143086/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16277_full -> IGTPW_12764_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12764_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12764_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12764_full:
### IGT changes ###
#### Possible regressions ####
* igt@dumb_buffer@create-clear:
- shard-dg1: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-16/igt@dumb_buffer@create-clear.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@dumb_buffer@create-clear.html
* igt@kms_flip@plain-flip-ts-check:
- shard-tglu: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-tglu-4/igt@kms_flip@plain-flip-ts-check.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@kms_flip@plain-flip-ts-check.html
Known issues
------------
Here are the changes found in IGTPW_12764_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#9318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-2/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg2-9: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-rkl: [PASS][9] -> [ABORT][10] ([i915#5507])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-4/igt@device_reset@unbind-reset-rebind.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@device_reset@unbind-reset-rebind.html
- shard-tglu: [PASS][11] -> [ABORT][12] ([i915#12817] / [i915#5507])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-tglu-5/igt@device_reset@unbind-reset-rebind.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-8/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +16 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2-9: NOTRUN -> [SKIP][16] ([i915#8414]) +7 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@drm_fdinfo@busy@rcs0.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3281]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-8/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#13008])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-2/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2-9: NOTRUN -> [SKIP][22] ([i915#7697])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_compute@compute-square:
- shard-dg2: NOTRUN -> [FAIL][24] ([i915#13665])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-6/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#6335])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [PASS][26] -> [INCOMPLETE][27] ([i915#12353])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-glk8/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][30] ([i915#1099])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@context-create:
- shard-mtlp: [PASS][33] -> [ABORT][34] ([i915#13193]) +3 other tests abort
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-mtlp-5/igt@gem_eio@context-create.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-7/igt@gem_eio@context-create.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@hog:
- shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4036])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4036])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4036])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][43] ([i915#11713])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2-9: NOTRUN -> [SKIP][44] ([i915#6334]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#6344])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][46] ([i915#11965]) +4 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#5107])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#5107])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +12 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +10 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#3281]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-glk: NOTRUN -> [ABORT][60] ([i915#13661]) +2 other tests abort
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk2/igt@gem_exec_suspend@basic-s4-devices.html
- shard-dg2-9: NOTRUN -> [ABORT][61] ([i915#7975]) +1 other test abort
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_fence_thrash@bo-copy.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4860])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][65] ([i915#2190])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][68] ([i915#4613]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#284])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#4077]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4077]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4077]) +12 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-7/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-7/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@coherency:
- shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#4083]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4083]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4083])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-7/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#3282]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-3/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][83] ([i915#2658])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][84] ([i915#2658])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb4/igt@gem_pread@exhaustion.html
- shard-glk: NOTRUN -> [WARN][85] ([i915#2658])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk1/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3282]) +7 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@gem_pwrite@basic-exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3282]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#4270]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [TIMEOUT][89] ([i915#12964])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4270]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4270]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [TIMEOUT][92] ([i915#12917] / [i915#12964]) +2 other tests timeout
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: [PASS][93] -> [TIMEOUT][94] ([i915#12917] / [i915#12964]) +2 other tests timeout
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][95] ([i915#5190] / [i915#8428]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#5190] / [i915#8428]) +11 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-2/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8428]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][98] ([i915#4079])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#8411]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#4079])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4079]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-1/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#13809])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk7/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [PASS][103] -> [FAIL][104] ([i915#12941])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-8/igt@gem_tiled_swapping@non-threaded.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3297]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#3297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg2-9: NOTRUN -> [SKIP][107] ([i915#3297])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][108] ([i915#3323])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#3297] / [i915#4958])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3297]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3297]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap.html
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#3297]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3297]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#2856]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@gen9_exec_parse@allowed-all.html
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#2527]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#2527] / [i915#2856]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#2527]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@gen9_exec_parse@bb-large.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#2856])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#2527] / [i915#2856]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-3/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#2856]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#6412])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#8399])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][124] -> [INCOMPLETE][125] ([i915#12455] / [i915#13820]) +1 other test incomplete
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6590]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#12797])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk5/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#11681] / [i915#6621]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-16/igt@i915_pm_rps@basic-api.html
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#11681] / [i915#6621])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-7/igt@i915_pm_rps@basic-api.html
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#11681] / [i915#6621])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds:
- shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#11681])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#11681])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#5723])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][134] ([i915#9311]) +1 other test dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@i915_selftest@mock.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: [PASS][135] -> [INCOMPLETE][136] ([i915#4817]) +1 other test incomplete
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][137] -> [DMESG-FAIL][138] ([i915#12964]) +1 other test dmesg-fail
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-1/igt@i915_suspend@forcewake.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#7707])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4212])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4215] / [i915#5190])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4212])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#12454] / [i915#12712])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#12454] / [i915#12712])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#12454] / [i915#12712])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4212])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][147] ([i915#10991] / [i915#13335]) +1 other test fail
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#8709]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#8709]) +15 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#8709]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#8709]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9531])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#9531])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#9531])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#9531])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#1769] / [i915#3555])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#5286]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#5286]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#4538] / [i915#5286]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#5286]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][162] -> [FAIL][163] ([i915#5138])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-addfb:
- shard-dg1: [PASS][164] -> [DMESG-WARN][165] ([i915#4391] / [i915#4423])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-18/igt@kms_big_fb@linear-addfb.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@kms_big_fb@linear-addfb.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][166] +11 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3638])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3638]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][169] +7 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][170] ([i915#4538] / [i915#5190]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#4538] / [i915#5190]) +10 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#4538]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#5190]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#12313])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#6095]) +110 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#6095]) +44 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#12313])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#10307] / [i915#6095]) +188 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#6095]) +24 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#12805])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#6095]) +9 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#6095]) +9 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-dp-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#6095]) +74 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6095]) +19 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-2/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#12313])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#12313])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#12313])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#6095]) +84 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][190] +427 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#3742])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3742])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3742])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#13784])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#13784])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#13781]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +9 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][198] +12 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#11151] / [i915#7828]) +7 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +9 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#9979])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][206] ([i915#7173])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#6944] / [i915#9424])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3299]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#3299])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3116]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3116] / [i915#3299])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#7118] / [i915#9424])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-9: NOTRUN -> [SKIP][213] ([i915#9424])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_content_protection@lic-type-0.html
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#6944] / [i915#9424])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9424])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#7118])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8814]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][219] -> [FAIL][220] ([i915#13566]) +1 other test fail
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8814])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#13049])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: NOTRUN -> [FAIL][224] ([i915#13566]) +1 other test fail
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#13049]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][226] ([i915#12358] / [i915#7882])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#12358])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#9809]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#13046] / [i915#5354]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][230] +25 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#13046] / [i915#5354]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9067])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#9067])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#4213])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#4103] / [i915#4213])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#4103])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#4103] / [i915#4213])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
- shard-dg1: [PASS][238] -> [DMESG-WARN][239] ([i915#4423]) +1 other test dmesg-warn
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-13/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#9723])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#13691])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#3804])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#3804])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#13749])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#13748])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#8812])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#3840])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#3840])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2-9: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#3840])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#3840] / [i915#9053])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#2575]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#13798]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#13798])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-17/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#13798])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#9878])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3955])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#3469])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-12/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#1839])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#1839])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#1839])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#1839])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-17/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#1839])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#658])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-9: NOTRUN -> [SKIP][265] ([i915#658])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#658])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#4881])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-3/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][268] ([i915#9934]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#9934]) +6 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#3637]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#9934]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#8381])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#3637]) +8 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#9934]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-16/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][275] ([i915#12745] / [i915#4839])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][276] ([i915#4839])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-snb: [PASS][277] -> [FAIL][278] ([i915#11832] / [i915#13734])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][279] -> [FAIL][280] ([i915#11832])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][281] -> [FAIL][282] ([i915#13734]) +3 other tests fail
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-glk7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#3637]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
- shard-dg2-9: NOTRUN -> [FAIL][284] ([i915#13027]) +1 other test fail
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#12745] / [i915#4839] / [i915#6113])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][286] ([i915#12314] / [i915#12745] / [i915#4839])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][287] ([i915#12314] / [i915#12745])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
- shard-rkl: NOTRUN -> [DMESG-FAIL][288] ([i915#12964])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][289] ([i915#12745] / [i915#6113])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#2587] / [i915#2672]) +3 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#2672]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#2672] / [i915#3555]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#2672] / [i915#3555]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#2672]) +3 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#2587] / [i915#2672]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#2672] / [i915#3555]) +4 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#2672] / [i915#8813]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][299] ([i915#2672]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#2672] / [i915#3555] / [i915#5190])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#2587] / [i915#2672] / [i915#3555])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#2587] / [i915#2672]) +5 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#3555]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#3555]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][305] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-snb: [PASS][306] -> [SKIP][307] +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8708]) +5 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#1825]) +21 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#10055])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#8708]) +17 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][312] +47 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#5354]) +38 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][314] +33 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#8708]) +9 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#3023]) +25 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-dg2-9: NOTRUN -> [SKIP][317] ([i915#3458]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#5439])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#10055]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#3458]) +15 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#8708]) +23 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][322] ([i915#5354]) +14 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#1825]) +50 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#3458]) +7 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#6118])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#3555] / [i915#8228])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#3555] / [i915#8228])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2-9: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8228]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_hdr@static-toggle.html
- shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#3555] / [i915#8228]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#10656])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [PASS][331] -> [SKIP][332] ([i915#12388])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-7/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#12339])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#10656])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-2/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#10656])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#12388])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#12388])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#4816])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#6301])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][340] ([i915#13409] / [i915#13476])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][341] ([i915#10647] / [i915#12169]) +1 other test fail
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][342] ([i915#10647]) +3 other tests fail
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#3555]) +6 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#12247] / [i915#9423]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#12247]) +4 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#12247] / [i915#6953]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-9: NOTRUN -> [SKIP][347] ([i915#12247] / [i915#9423])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-dg2-9: NOTRUN -> [SKIP][348] ([i915#12247]) +3 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#12247]) +8 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#12247]) +4 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#12247]) +12 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#12247] / [i915#6953])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#12247] / [i915#3555] / [i915#9423])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#12247]) +11 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#12343])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#12343])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#12343])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-8/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#12343])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#5354])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@kms_pm_backlight@fade-with-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][360] ([i915#9812])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#9685]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_pm_dc@dc5-psr.html
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#9685])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-10/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#3828])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#3828])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-16/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#8430])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#8430])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#8430])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#8430])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][369] ([i915#9519])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#9519])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#9519])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#9519])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][373] -> [SKIP][374] ([i915#9519])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#9519])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@pm-caching:
- shard-rkl: [PASS][376] -> [SKIP][377] ([i915#12916])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-1/igt@kms_pm_rpm@pm-caching.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#6524])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-glk: NOTRUN -> [SKIP][379] ([i915#11520]) +12 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#11520]) +8 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#12316]) +5 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#11520]) +4 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][383] ([i915#11520]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#9808])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#11520]) +8 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][386] ([i915#11520]) +4 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][387] ([i915#11520]) +10 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-9: NOTRUN -> [SKIP][388] ([i915#11520]) +3 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#9683])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#9683])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#4348]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2-9: NOTRUN -> [SKIP][392] ([i915#9683])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#9683]) +1 other test skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][394] ([i915#9683]) +2 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][395] ([i915#9683])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#1072] / [i915#9732]) +23 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][397] ([i915#9732]) +20 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#9732]) +16 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][399] ([i915#9688]) +12 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-4/igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][400] ([i915#1072] / [i915#9732]) +9 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#9732]) +14 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][402] ([i915#1072] / [i915#9732]) +24 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-snb: NOTRUN -> [SKIP][403] +102 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][404] ([i915#5289])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#5289])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][406] ([i915#12755]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#12755])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-1/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#5190]) +2 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-9: NOTRUN -> [SKIP][409] ([i915#12755] / [i915#5190])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][410] ([i915#5289])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-9: NOTRUN -> [SKIP][411] ([i915#12755])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][412] ([i915#3555]) +8 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][413] ([i915#13179]) +1 other test abort
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][414] ([i915#13179]) +1 other test abort
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk2/igt@kms_selftest@drm_framebuffer.html
* igt@kms_sequence@queue-busy@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][415] ([i915#12964]) +13 other tests dmesg-warn
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@kms_sequence@queue-busy@pipe-a-hdmi-a-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][416] ([i915#3555]) +4 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2-9: NOTRUN -> [SKIP][417] ([i915#3555]) +3 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][418] ([i915#10959])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-9: NOTRUN -> [SKIP][419] ([i915#8623])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][420] ([i915#8623])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [PASS][421] -> [INCOMPLETE][422] ([i915#12276])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-glk9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][423] ([i915#3555] / [i915#8808])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][424] ([i915#9906])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@kms_vrr@max-min.html
- shard-tglu: NOTRUN -> [SKIP][425] ([i915#9906])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_vrr@max-min.html
- shard-dg2: NOTRUN -> [SKIP][426] ([i915#9906])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-7/igt@kms_vrr@max-min.html
- shard-rkl: NOTRUN -> [SKIP][427] ([i915#9906])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2-9: NOTRUN -> [SKIP][428] ([i915#9906])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][429] ([i915#2437])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][430] ([i915#2437]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][431] ([i915#2437] / [i915#9412])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][432] ([i915#2437] / [i915#9412]) +1 other test skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][433] ([i915#2437])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][434] ([i915#7387])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][435] ([i915#7387])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2-9: NOTRUN -> [SKIP][436] ([i915#2434])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][437] ([i915#2434])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-rkl: [PASS][438] -> [DMESG-WARN][439] ([i915#12964]) +34 other tests dmesg-warn
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-3/igt@perf_pmu@busy-double-start@vecs0.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@invalid-init:
- shard-glk: NOTRUN -> [FAIL][440] ([i915#13663])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk7/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [INCOMPLETE][441] ([i915#13520])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: [PASS][442] -> [FAIL][443] ([i915#11943]) +1 other test fail
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-mtlp-6/igt@perf_pmu@most-busy-check-all@vcs0.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-6/igt@perf_pmu@most-busy-check-all@vcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][444] ([i915#8516])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][445] ([i915#3291] / [i915#3708])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2-9: NOTRUN -> [SKIP][446] ([i915#3291] / [i915#3708])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][447] ([i915#3291] / [i915#3708])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][448] ([i915#3708]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-12/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][449] ([i915#10216] / [i915#3708])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][450] +81 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-5/igt@prime_vgem@fence-write-hang.html
- shard-mtlp: NOTRUN -> [SKIP][451] ([i915#3708])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-5/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][452] ([i915#3708])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][453] ([i915#3708])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][454] ([i915#9917]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][455] ([i915#9917])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][456] ([i915#12910]) +19 other tests fail
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-7/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][457] ([i915#12910]) +9 other tests fail
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-4/igt@sriov_basic@bind-unbind-vf@vf-5.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-9: NOTRUN -> [SKIP][458] ([i915#9917])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [FAIL][459] ([i915#12910]) +8 other tests fail
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence_chain:
- shard-rkl: [DMESG-WARN][460] ([i915#12964]) -> [PASS][461] +15 other tests pass
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-4/igt@dmabuf@all-tests@dma_fence_chain.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][462] ([i915#13356]) -> [PASS][463] +1 other test pass
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-7/igt@gem_ccs@suspend-resume.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@gem_ccs@suspend-resume.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][464] ([i915#5784]) -> [PASS][465]
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-14/igt@gem_eio@kms.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][466] ([i915#12543] / [i915#5784]) -> [PASS][467]
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-15/igt@gem_eio@reset-stress.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@gem_eio@reset-stress.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][468] ([i915#11441] / [i915#13304]) -> [PASS][469] +1 other test pass
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: [TIMEOUT][470] ([i915#12917] / [i915#12964]) -> [PASS][471]
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][472] ([i915#12942]) -> [PASS][473] +1 other test pass
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_selftest@live:
- shard-rkl: [DMESG-FAIL][474] ([i915#13550]) -> [PASS][475] +1 other test pass
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-1/igt@i915_selftest@live.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-1/igt@i915_selftest@live.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg1: [DMESG-WARN][476] ([i915#4391] / [i915#4423]) -> [PASS][477]
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-19/igt@i915_suspend@basic-s3-without-i915.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-15/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_atomic@plane-immutable-zpos:
- shard-dg1: [DMESG-WARN][478] ([i915#4423]) -> [PASS][479] +7 other tests pass
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-19/igt@kms_atomic@plane-immutable-zpos.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-12/igt@kms_atomic@plane-immutable-zpos.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][480] ([i915#5138]) -> [PASS][481]
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-snb: [INCOMPLETE][482] -> [PASS][483]
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: [FAIL][484] ([i915#13566]) -> [PASS][485] +1 other test pass
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][486] ([i915#13566]) -> [PASS][487] +1 other test pass
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-9/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-snb: [SKIP][488] -> [PASS][489]
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][490] ([i915#11832]) -> [PASS][491] +2 other tests pass
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-snb: [FAIL][492] ([i915#11832] / [i915#13734]) -> [PASS][493]
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-mtlp: [FAIL][494] ([i915#10826]) -> [PASS][495]
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-mtlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-3/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-rkl: [FAIL][496] ([i915#11832]) -> [PASS][497]
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-6/igt@kms_flip@plain-flip-fb-recreate.html
- shard-tglu: [FAIL][498] -> [PASS][499] +2 other tests pass
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][500] -> [PASS][501] +2 other tests pass
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2:
- shard-rkl: [FAIL][502] -> [PASS][503] +1 other test pass
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-6/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][504] ([i915#12756]) -> [PASS][505]
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][506] ([i915#4281]) -> [PASS][507]
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][508] ([i915#9519]) -> [PASS][509]
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-mtlp: [FAIL][510] ([i915#13509]) -> [PASS][511] +1 other test pass
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-cpu.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-mtlp-1/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-dg1: [FAIL][512] ([i915#4349]) -> [PASS][513] +2 other tests pass
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-15/igt@perf_pmu@busy-double-start@vecs0.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@module-unload:
- shard-snb: [ABORT][514] ([i915#11703]) -> [PASS][515]
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb7/igt@perf_pmu@module-unload.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb2/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][516] ([i915#4349]) -> [PASS][517] +3 other tests pass
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [ABORT][518] ([i915#11814] / [i915#11815] / [i915#9413]) -> [INCOMPLETE][519] ([i915#11814])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: [SKIP][520] ([i915#4270]) -> [TIMEOUT][521] ([i915#12917] / [i915#12964]) +1 other test timeout
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-3/igt@gem_pxp@display-protected-crc.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [TIMEOUT][522] ([i915#12917] / [i915#12964]) -> [SKIP][523] ([i915#13717])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg1: [SKIP][524] ([i915#6095]) -> [SKIP][525] ([i915#4423] / [i915#6095]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][526] ([i915#7118] / [i915#9424]) -> [FAIL][527] ([i915#7173])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic-type-1:
- shard-snb: [SKIP][528] -> [INCOMPLETE][529] ([i915#8816])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-snb4/igt@kms_content_protection@lic-type-1.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-snb4/igt@kms_content_protection@lic-type-1.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][530] ([i915#3458]) -> [SKIP][531] ([i915#10433] / [i915#3458])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][532] ([i915#10433] / [i915#3458]) -> [SKIP][533] ([i915#3458]) +2 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: [SKIP][534] ([i915#4077] / [i915#4423]) -> [SKIP][535] ([i915#4077])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-19/igt@kms_pm_rpm@cursor.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-13/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][536] ([i915#9519]) -> [DMESG-WARN][537] ([i915#12964])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_psr@pr-suspend:
- shard-dg1: [SKIP][538] ([i915#1072] / [i915#9732]) -> [SKIP][539] ([i915#1072] / [i915#4423] / [i915#9732])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16277/shard-dg1-13/igt@kms_psr@pr-suspend.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/shard-dg1-19/igt@kms_psr@pr-suspend.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13335
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13509]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13509
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13661]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13661
[i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663
[i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8273 -> IGTPW_12764
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16277: 4e643702e9d1dbb19e2b4cf9883900e3878f4a28 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12764: 12764
IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12764/index.html
[-- Attachment #2: Type: text/html, Size: 178197 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver
2025-03-13 6:21 ` [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver Soham Purkait
2025-03-13 8:13 ` Krzysztof Karas
@ 2025-03-13 11:51 ` Zbigniew Kempczyński
1 sibling, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2025-03-13 11:51 UTC (permalink / raw)
To: Soham Purkait
Cc: igt-dev, riana.tauro, vinay.belgaumkar, anshuman.gupta,
lucas.demarchi, rodrigo.vivi, jonathan.ming.jun.lui
On Thu, Mar 13, 2025 at 11:51:51AM +0530, Soham Purkait wrote:
> Add function to find all the available GPU
> cards by driver name and card type.
> Add driver field to igt_device_card structure
> for storing driver names.
>
> v2 : fix for refactoring GPUTOP into a
> vendor-agnostic tool (Lucas)
>
> v3 : Separate commit for lib (Kamil)
>
> v4 : Refactor to use composition strategy
> for driver and device type filtering
> Refactor code to improve memory
> allocation and error handling (Lucas)
>
> Signed-off-by: Soham Purkait <soham.purkait@intel.com>
> ---
> lib/igt_device_scan.c | 58 +++++++++++++++++++++++++++++++++++++++++++
> lib/igt_device_scan.h | 3 +++
> 2 files changed, 61 insertions(+)
>
> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> index 711bedc5c..4d243126e 100644
> --- a/lib/igt_device_scan.c
> +++ b/lib/igt_device_scan.c
> @@ -774,6 +774,10 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card)
> safe_strncpy(card->render, dev->drm_render,
> sizeof(card->render));
>
> + if (dev->driver != NULL)
> + safe_strncpy(card->driver, dev->driver,
> + sizeof(card->driver));
> +
> if (dev->pci_slot_name != NULL)
> safe_strncpy(card->pci_slot_name, dev->pci_slot_name,
> sizeof(card->pci_slot_name));
> @@ -820,6 +824,60 @@ static bool __find_first_intel_card_by_driver_name(struct igt_device_card *card,
> return false;
> }
>
> +/**
> + * Iterate over all igt_devices array and find all discrete/integrated cards.
> + * @card: double pointer to igt_device_card structure, containing
> + * an array of igt_device_card structures upon successful return.
> + * @card_type: flag to indicate whether to find discrete, integrated, or
> + * both types of cards. Use 0 for integrated, 1 for discrete, and 2 for both.
> + * @drv_name: name of the driver to match.
> + *
> + * Returns the number of cards found, or -1 on error.
> + */
> +int find_all_intel_card_by_driver_name(struct igt_device_card **card,
> + uint8_t card_type, const char *drv_name)
> +{
> + int count = 0;
> + struct igt_device *dev;
> + int is_integrated;
> + struct igt_device_card *tmp;
> + struct igt_device_card *crd = NULL;
> +
> + igt_assert(drv_name);
> + *card = NULL;
> +
> + igt_list_for_each_entry(dev, &igt_devs.all, link) {
> + if (!is_pci_subsystem(dev) || strcmp(dev->driver, drv_name))
> + continue;
> +
> + is_integrated = !strncmp(dev->pci_slot_name, INTEGRATED_I915_GPU_PCI_ID,
> + PCI_SLOT_NAME_SIZE);
> +
> + if ((card_type == 1 && !is_integrated) ||
> + (card_type == 0 && is_integrated) ||
> + card_type == 2) {
This if doesn't look well, you should use enum for better readability.
Anyway, haven't you thought to provide new filter instead of function
which returns collection of matching devices? Lets say:
device:driver=xe,card=0
device:driver=xe,card=...
--
Zbigniew
> + tmp = realloc(crd, sizeof(struct igt_device_card) * (count + 1));
> + if (!tmp) {
> + free(crd);
> + return -1;
> + }
> +
> + crd = tmp;
> + __copy_dev_to_card(dev, &crd[count]);
> + count++;
> + }
> + }
> +
> + if (!count) {
> + if (!crd)
> + free(crd);
> + return 0;
> + }
> +
> + *card = crd;
> + return count;
> +}
> +
> bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card)
> {
> igt_assert(card);
> diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
> index 92741fe3c..4fbb11193 100644
> --- a/lib/igt_device_scan.h
> +++ b/lib/igt_device_scan.h
> @@ -59,6 +59,7 @@ struct igt_device_card {
> char subsystem[NAME_MAX];
> char card[NAME_MAX];
> char render[NAME_MAX];
> + char driver[NAME_MAX];
> char pci_slot_name[PCI_SLOT_NAME_SIZE+1];
> uint16_t pci_vendor, pci_device;
> };
> @@ -92,6 +93,8 @@ bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card);
> bool igt_device_find_integrated_card(struct igt_device_card *card);
> bool igt_device_find_first_xe_discrete_card(struct igt_device_card *card);
> bool igt_device_find_xe_integrated_card(struct igt_device_card *card);
> +int find_all_intel_card_by_driver_name(struct igt_device_card **card,
> + uint8_t want_discrete, const char *drv_name);
> char *igt_device_get_pretty_name(struct igt_device_card *card, bool numeric);
> int igt_open_card(struct igt_device_card *card);
> int igt_open_render(struct igt_device_card *card);
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices
2025-03-13 6:21 ` [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices Soham Purkait
@ 2025-03-14 4:57 ` Riana Tauro
2025-03-21 3:26 ` Purkait, Soham
0 siblings, 1 reply; 14+ messages in thread
From: Riana Tauro @ 2025-03-14 4:57 UTC (permalink / raw)
To: Soham Purkait, igt-dev, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi,
jonathan.ming.jun.lui
Hi Soham
Replace busy-ticks with engine-active-ticks and total-ticks with
engine-total-ticks to keep it consistent.
Replace all occurences of busy with active in the series.
On 3/13/2025 11:51 AM, Soham Purkait wrote:
> Add gputop support for xe-specific devices. Separate
> driver-specific code into respective source files.
>
> v2 : fix for refactoring GPUTOP into a
> vendor-agnostic tool (Lucas)
>
> v3 : Separate commit (Kamil)
>
> v4 : Headers in alphabetical order
> Engines memory allocation at
> the beginning all at once
> Removed PMU normalization (Riana)
>
> Signed-off-by: Soham Purkait <soham.purkait@intel.com>
> ---
> tools/gputop/xe_gputop.c | 372 +++++++++++++++++++++++++++++++++++++++
> tools/gputop/xe_gputop.h | 73 ++++++++
> 2 files changed, 445 insertions(+)
> create mode 100644 tools/gputop/xe_gputop.c
> create mode 100644 tools/gputop/xe_gputop.h
>
> diff --git a/tools/gputop/xe_gputop.c b/tools/gputop/xe_gputop.c
> new file mode 100644
> index 000000000..4137bb771
> --- /dev/null
> +++ b/tools/gputop/xe_gputop.c
> @@ -0,0 +1,372 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#include "xe_gputop.h"
> +
> +#define engine_ptr(engines, n) (&(engines)->engine + (n))
> +
> +static void __update_sample(struct xe_pmu_counter *counter, uint64_t val)
> +{
> + counter->val.prev = counter->val.cur;
> + counter->val.cur = val;
> +}
> +
> +static void update_sample(struct xe_pmu_counter *counter, uint64_t *val)
> +{
> + if (counter->present)
presence of fd should be enough. present is not required.
The __update contents can be moved to same function
> + __update_sample(counter, val[counter->idx]);
> +}
> +
> +static const char *class_display_name(unsigned int class)
> +{
> + switch (class) {
> + case DRM_XE_ENGINE_CLASS_RENDER:
> + return "Render/3D";
> + case DRM_XE_ENGINE_CLASS_COPY:
> + return "Blitter";
> + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
> + return "Video";
> + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
> + return "VideoEnhance";
> + case DRM_XE_ENGINE_CLASS_COMPUTE:
> + return "Compute";
> + default:
> + return "[unknown]";
> + }
> +}
> +
> +static inline void *clean_up(void *engines)
> +{
> + if (engines)
> + free(engines);
> +
> + return NULL;
> +}
> +
> +static char *pmu_name(struct igt_device_card *card)
> +{
> + int card_fd;
> + char device[30];
> + char *path;
> +
> + if (strlen(card->card))
> + card_fd = igt_open_card(card);
> + else if (strlen(card->render))
> + card_fd = igt_open_render(card);
> +
> + if (card_fd == -1)
> + return NULL;
> +
> + xe_perf_device(card_fd, device, sizeof(device));
> + path = strdup(device);
needs a free while cleanup
> + close(card_fd);
> + return path;
> +}
> +
> +static int _open_pmu(uint64_t type, unsigned int *cnt, struct xe_pmu_counter *pmu, int *fd)
> +{
> + int fd__ = igt_perf_open_group(type, pmu->config, *fd);
> +
> + if (fd__ >= 0) {
> + if (*fd == -1)
> + *fd = fd__;
> + pmu->present = true;
> + pmu->idx = (*cnt)++;
> + }
> +
> + return fd__;
> +}
> +
> +void xe_gputop_init(struct xe_gputop *obj,
> + struct igt_device_card *card)
> +{
> + obj->pmu_device = pmu_name(card);
> + if (!obj->pmu_device) {
> + fprintf(stderr, "%s : pmu_device path returned NULL", card->pci_slot_name);
> + exit(EXIT_FAILURE);
> + }
> + obj->card = card;
> +}
> +
> +static int pmu_format_shift(int xe, const char *name)
> +{
> + uint32_t start;
> + int format;
> + char device[80];
> +
> + format = perf_event_format(xe_perf_device(xe, device, sizeof(device)),
> + name, &start);
> + if (format)
> + return 0;
> +
> + return start;
> +}
> +
> +static int engine_cmp(const void *__a, const void *__b)
> +{
> + const struct xe_engine *a = (struct xe_engine *)__a;
> + const struct xe_engine *b = (struct xe_engine *)__b;
> +
> + if (a->drm_xe_engine.engine_class != b->drm_xe_engine.engine_class)
> + return a->drm_xe_engine.engine_class - b->drm_xe_engine.engine_class;
> + else
> + return a->drm_xe_engine.engine_instance - b->drm_xe_engine.engine_instance;
> +}
> +
> +void *xe_discover_engines(const void *obj)
> +{
> + struct igt_device_card *card = ((struct xe_gputop *)obj)->card;
> + struct xe_engines *engines;
> + int ret = 0;
> + char device[30];
> + struct drm_xe_engine_class_instance *hwe;
> + int card_fd;
> +
> + if (!card || !strlen(card->card) || !strlen(card->render))
> + return NULL;
> +
> + if (strlen(card->card)) {
> + card_fd = igt_open_card(card);
> + } else if (strlen(card->render)) {
> + card_fd = igt_open_render(card);
> + } else {
> + fprintf(stderr, "Failed to detect device!\n");
> + return clean_up(engines);
> + }
> + xe_device_get(card_fd);
> + engines = malloc(sizeof(struct xe_engines) +
> + xe_number_engines(card_fd) * sizeof(struct xe_engine));
why additional?
> + if (!engines)
> + return NULL;
> +
> + memset(engines, 0, sizeof(struct xe_engines) +
> + xe_number_engines(card_fd) * sizeof(struct xe_engine));
> +
> + engines->num_engines = 0;
> + engines->device = ((struct xe_gputop *)obj)->pmu_device;
> + xe_for_each_engine(card_fd, hwe) {
> + uint64_t engine_class, engine_instance, gt_shift, param_config;
> + struct xe_engine *engine;
> +
> + engine = engine_ptr(engines, engines->num_engines);
> + gt_shift = pmu_format_shift(card_fd, "gt");
> + engine_class = pmu_format_shift(card_fd, "engine_class");
> + engine_instance = pmu_format_shift(card_fd, "engine_instance");
> + param_config = (uint64_t)hwe->gt_id << gt_shift | hwe->engine_class << engine_class
> + | hwe->engine_instance << engine_instance;
This function does pmu specific initialization too. discover_engines is
not the right name.
you could move pmu specific initialization to pmu_init or rename this
function
> +
> + engine->drm_xe_engine = *hwe;
> +
> + ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)),
> + "engine-active-ticks", &engine->busy_ticks.config);
> + if (ret < 0)
> + break;
> +
> + engine->busy_ticks.config |= param_config;
> +
> + ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)),
> + "engine-total-ticks", &engine->total_ticks.config);
> + if (ret < 0)
> + break;
> +
> + engine->total_ticks.config |= param_config;
> +
> + if (engine->busy_ticks.config == -1 || engine->total_ticks.config == -1) {
> + ret = ENOENT;
> + break;
> + }
> +
> + ret = asprintf(&engine->display_name, "%s/%u",
> + class_display_name(engine->drm_xe_engine.engine_class),
> + engine->drm_xe_engine.engine_instance);
> +
> + if (ret <= 0) {
> + ret = errno;
> + break;
> + }
> + ret = asprintf(&engine->short_name, "%s/%u",
> + xe_engine_class_short_string(engine->drm_xe_engine.engine_class),
> + engine->drm_xe_engine.engine_instance);
> +
> + if (ret <= 0) {
> + ret = errno;
> + break;
> + }
> +
> + engines->num_engines++;
> + }
> +
> + if (!ret) {
> + errno = ret;
> + return clean_up(engines);
> + }
> +
> + qsort(engine_ptr(engines, 0), engines->num_engines,
> + sizeof(struct xe_engine), engine_cmp);
> +
> + ((struct xe_gputop *)obj)->eng_obj = engines;
> +
> + return engines;
> +}
> +
> +static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
> +{
> + uint64_t buf[2 + num];
> + unsigned int i;
> + ssize_t len;
> +
> + memset(buf, 0, sizeof(buf));
> +
> + len = read(fd, buf, sizeof(buf));
> + assert(len == sizeof(buf));
> +
> + for (i = 0; i < num; i++)
> + val[i] = buf[2 + i];
> +
> + return buf[1];
> +}
> +
> +void xe_pmu_sample(const void *obj)
> +{
> + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
> + const int num_val = engines->num_counters;
this can be num_engines * 2.
can remove this
> + uint64_t val[2 + num_val];
> + unsigned int i;
> +
> + engines->ts.prev = engines->ts.cur;
> + engines->ts.cur = pmu_read_multi(engines->fd, num_val, val);
This is unnecessary
> +
> + for (i = 0; i < engines->num_engines; i++) {
> + struct xe_engine *engine = engine_ptr(engines, i);
> +
> + update_sample(&engine->busy_ticks, val);
> + update_sample(&engine->total_ticks, val);
> + }
> +}
> +
> +int xe_pmu_init(const void *obj)
> +{
> + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
> + unsigned int i;
> + int fd;
> + struct xe_engine *engine;
> + uint64_t type = igt_perf_type_id(engines->device);
> +
> + engines->fd = -1;
> + engines->num_counters = 0;
you can use a local variable here
> +
why is 0 outside, Can't it be moved in the for loop
> + engine = engine_ptr(engines, 0);
> + fd = _open_pmu(type, &engines->num_counters, &engine->busy_ticks, &engines->fd);
> + if (fd < 0)
> + return -1;
> + fd = _open_pmu(type, &engines->num_counters, &engine->total_ticks, &engines->fd);
> + if (fd < 0)
> + return -1;
> +
> + for (i = 1; i < engines->num_engines; i++) {
> + engine = engine_ptr(engines, i);
> + fd = _open_pmu(type, &engines->num_counters, &engine->busy_ticks, &engines->fd);
> + if (fd < 0)
> + return -1;
> + fd = _open_pmu(type, &engines->num_counters, &engine->total_ticks, &engines->fd);
> + if (fd < 0)
> + return -1;
> + }
> + return 0;
> +}
> +
> +static double pmu_calc_total(struct xe_pmu_pair *p)
%s/pmu_calc_total/pmu_total_ticks
or calc_total_ticks
> +{
> + double v;
> +
> + v = p->cur - p->prev;
> + return v;
> +}
> +
> +static double pmu_calc(struct xe_pmu_pair *p, double total_tick)
%s/total tick/total ticks
> +{
> + double bz = p->cur - p->prev;
use friendly names
active ticks
I think you can move total ticks also here. pass two pairs and calculate
in same function
> + double total;
> +
> + total = (bz * 100) / total_tick;
> + return total;
> +}
> +
> +static int
> +print_device_description(const void *obj, int lines, int w, int h)
> +{
> + char *desc;
> + int len;
> +
> + len = asprintf(&desc, "DRIVER: %s || BDF: %s",
> + ((struct xe_gputop *)obj)->card->driver,
> + ((struct xe_gputop *)obj)->card->pci_slot_name);
> +
> + printf("\033[7m%s%*s\033[0m\n",
> + desc,
> + (int)(w - len), " ");
> + lines++;
> + free(desc);
> + return lines;
> +}
> +
> +static int
> +print_engines_header(struct xe_engines *engines,
> + int lines, int con_w, int con_h)
> +{
> + const char *a;
> +
> + for (unsigned int i = 0;
> + i < engines->num_engines && lines < con_h;
> + i++) {
> + struct xe_engine *engine = engine_ptr(engines, i);
> +
> + if (!engine->num_counters)
> + continue;
> +
> + a = " ENGINES BUSY ";
> +
> + printf("\033[7m%s%*s\033[0m\n",
> + a,
> + (int)(con_w - strlen(a)), " ");
> + lines++;
> +
> + break;
> + }
> +
> + return lines;
> +}
> +
> +static int
> +print_engine(struct xe_engines *engines, unsigned int i,
> + int lines, int con_w, int con_h)
> +{
> + struct xe_engine *engine = engine_ptr(engines, i);
> + double total_tick = pmu_calc_total(&engine->total_ticks.val);
> + double percentage = pmu_calc(&engine->busy_ticks.val, total_tick);
> +
> + printf("%*s", (int)(strlen(" ENGINES")), engine->display_name);
> + print_percentage_bar(percentage, con_w - strlen(" ENGINES"));
> + printf("\n");
> +
> + return ++lines;
> +}
> +
> +int xe_print_engines(const void *obj, int lines, int w, int h)
> +{
> + struct xe_engines *show = ((struct xe_gputop *)obj)->eng_obj;
> +
> + lines = print_device_description(obj, lines, w, h);
> +
> + lines = print_engines_header(show, lines, w, h);
> +
> + for (unsigned int i = 0; i < show->num_engines && lines < h; i++)
> + lines = print_engine(show, i, lines, w, h);
> +
> + lines = print_engines_footer(lines, w, h);
> +
> + return lines;
> +}
> +
> diff --git a/tools/gputop/xe_gputop.h b/tools/gputop/xe_gputop.h
> new file mode 100644
> index 000000000..1f23b2ed0
> --- /dev/null
> +++ b/tools/gputop/xe_gputop.h
> @@ -0,0 +1,73 @@
> +/* SPDX-License-Identifier: MIT
> + *
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef __XE_GPUTOP_H__
> +#define __XE_GPUTOP_H__
> +
> +#include <dirent.h>
> +
> +#include "igt_device_scan.h"
> +#include "igt_perf.h"
> +#include "utils.h"
> +#include "xe/xe_query.h"
> +
> +struct xe_pmu_pair {
> + uint64_t cur;
> + uint64_t prev;
> +};
> +
> +struct xe_pmu_counter {
> + uint64_t type;
> + uint64_t config;
> + unsigned int idx;
> + struct xe_pmu_pair val;
> + bool present;
> +};
> +
> +struct xe_engine {
> + const char *name;
> + char *display_name;
> + char *short_name;
> + struct drm_xe_engine_class_instance drm_xe_engine;
> + unsigned int num_counters;
didn't find initialization. needed?
> + struct xe_pmu_counter busy_ticks;
> + struct xe_pmu_counter total_ticks;
> +};
> +
> +struct xe_engines {
> + unsigned int num_engines;
> + unsigned int num_classes;
not used
> + unsigned int num_counters;
> + DIR *root;
> + int fd;
> + struct xe_pmu_pair ts;
can be removed
> + bool discrete;
not used
> + char *device;
> + int num_gts;
not used
> +
> + /* Do not edit below this line.
> + * This structure is reallocated every time a new engine is
> + * found and size is increased by sizeof (engine).
> + */
This comment can be removed
Thanks
Riana
> + struct xe_engine engine;
> +
> +};
> +
> +struct xe_gputop {
> + char *pmu_device;
> + struct igt_device_card *card;
> + struct xe_engines *eng_obj;
> +};
> +
> +void xe_gputop_init(struct xe_gputop *obj,
> + struct igt_device_card *card);
> +
> +void xe_populate_device_instances(struct gputop_device *dv);
> +void *xe_discover_engines(const void *obj);
> +void xe_pmu_sample(const void *obj);
> +int xe_pmu_init(const void *obj);
> +int xe_print_engines(const void *obj, int lines, int w, int h);
> +
> +#endif /* __XE_GPUTOP_H__ */
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.Full: failure for Add single engine busyness stats in GPUTOP (rev5)
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
` (6 preceding siblings ...)
2025-03-13 10:28 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-03-14 13:14 ` Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-03-14 13:14 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 98615 bytes --]
== Series Details ==
Series: Add single engine busyness stats in GPUTOP (rev5)
URL : https://patchwork.freedesktop.org/series/143086/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8273_full -> XEIGTPW_12764_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12764_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12764_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12764_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create_bind:
- shard-lnl: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create_bind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create_bind.html
Known issues
------------
Here are the changes found in XEIGTPW_12764_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1125])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#3157])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#3719] / [Intel XE#911]) +2 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#873])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_async_flips@invalid-async-flip.html
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#873])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#873])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3279]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2370])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2327]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#3658])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1407]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +21 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2328])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +13 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +12 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1467])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#607])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#607])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1477])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2191])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2191])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#367]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +209 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +20 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +24 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3432]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +50 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#2907]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2652] / [Intel XE#787]) +22 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252]) +14 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +11 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#373]) +12 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#307])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2390]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2321]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#323])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#323])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2286])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2291]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#309])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#309]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4210])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4302])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4302])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([i915#3804])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4354])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#4356])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4354])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2244])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4422])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4156])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2372])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2373])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2375])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1137])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2-set2: [PASS][76] -> [SKIP][77] ([Intel XE#310]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_flip@2x-absolute-wf_vblank.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1421]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2316])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#2316]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][82] ([Intel XE#3321]) +2 other tests fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#310])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][84] -> [FAIL][85] ([Intel XE#3321]) +3 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][86] -> [FAIL][87] ([Intel XE#301]) +4 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][88] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1401]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2293]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#352])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#651]) +20 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +42 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +32 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [PASS][99] -> [INCOMPLETE][100] ([Intel XE#2050])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#656]) +8 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [PASS][102] -> [SKIP][103] ([Intel XE#656])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4141]) +19 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#658])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1469]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2312]) +26 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#656]) +51 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2313]) +38 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2352]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#653]) +26 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2502])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1503])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#346])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2927])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2927])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2927])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2501])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1:
- shard-lnl: [PASS][119] -> [DMESG-WARN][120] ([Intel XE#2932]) +1 other test dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#4329])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#4359])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4329])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-64:
- shard-dg2-set2: NOTRUN -> [FAIL][124] ([Intel XE#616])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-64.html
* igt@kms_plane_lowres@tiling-4:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#599]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2493])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2763] / [Intel XE#455]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2763]) +23 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2763]) +11 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2763]) +24 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2938])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#870]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_pm_backlight@fade.html
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#870]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][134] ([Intel XE#1430])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2392])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#1439] / [Intel XE#836])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#836])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1439] / [Intel XE#3141])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1489]) +11 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1489]) +9 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2893]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1128]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2387]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1122]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2234] / [Intel XE#2850]) +26 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2414])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2939])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2330]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1127]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1127]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#3414])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#3414] / [Intel XE#3904])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2413]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-none.html
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#2413] / [Intel XE#374])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#374]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][159] -> [SKIP][160] ([Intel XE#1435])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#1435])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1435])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#330])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#330])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2450])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#455]) +11 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1499]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#1499])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#756]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#756]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#756]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#1447])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#1123]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#1126])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_create@multigpu-create-massive-size:
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#944]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@unprivileged-access:
- shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#4497])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_eu_stall@unprivileged-access.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#2905]) +13 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug@discovery-race-sigint:
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#2905] / [Intel XE#4259])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_eudebug@discovery-race-sigint.html
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2905] / [Intel XE#4259])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_eudebug@discovery-race-sigint.html
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#2905] / [Intel XE#4259])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@xe_eudebug@discovery-race-sigint.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#2905]) +11 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2905]) +15 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_eudebug_online@single-step.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#688]) +9 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2322]) +12 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-dg2-set2: [PASS][188] -> [SKIP][189] ([Intel XE#1392]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1392]) +9 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#288]) +34 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#2229])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][193] ([Intel XE#1999]) +2 other tests fail
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#2459] / [Intel XE#2596])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_media_fill@media-fill.html
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#560])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_media_fill@media-fill.html
- shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#560])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#4045]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#586])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#512])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@xe_mmap@small-bar.html
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#512])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@xe_mmap@small-bar.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_oa@mi-rpc.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2427])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#2284]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2284] / [Intel XE#366])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#584]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-multiple-execs:
- shard-bmg: NOTRUN -> [ABORT][207] ([Intel XE#4268])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_pm@s4-multiple-execs.html
- shard-dg2-set2: NOTRUN -> [ABORT][208] ([Intel XE#4268]) +1 other test abort
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@xe_pm@s4-multiple-execs.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][209] ([Intel XE#944]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#944]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#4130]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#4273])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#4273])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#4351])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#4351])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-bmg: NOTRUN -> [SKIP][216] ([Intel XE#4351]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][217] ([Intel XE#911]) -> [PASS][218] +3 other tests pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][219] ([Intel XE#2191]) -> [PASS][220] +1 other test pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][221] ([Intel XE#3862]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-set2: [SKIP][223] ([Intel XE#309]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [SKIP][225] ([Intel XE#2291]) -> [PASS][226] +2 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][227] ([Intel XE#877]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][229] ([Intel XE#1340]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][231] ([Intel XE#3009]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_dp_aux_dev.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_dp_aux_dev.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2-set2: [SKIP][233] ([Intel XE#702]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_feature_discovery@display-2x.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg2-set2: [SKIP][235] ([Intel XE#310]) -> [PASS][236] +1 other test pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][237] ([Intel XE#3321]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [SKIP][239] ([Intel XE#2316]) -> [PASS][240] +4 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-bmg: [FAIL][241] ([Intel XE#2882] / [Intel XE#3098]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
- shard-dg2-set2: [FAIL][243] ([Intel XE#3098]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@kms_flip@basic-flip-vs-wf_vblank.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2:
- shard-bmg: [FAIL][245] ([Intel XE#3098]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html
* igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2:
- shard-bmg: [FAIL][247] ([Intel XE#2882]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [FAIL][249] ([Intel XE#301]) -> [PASS][250] +3 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][251] ([Intel XE#656]) -> [PASS][252] +5 other tests pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][253] ([Intel XE#1503]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [FAIL][255] -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2-set2: [SKIP][257] ([Intel XE#455]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][259] ([Intel XE#1435]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-dg2-set2: [SKIP][261] ([Intel XE#1392]) -> [PASS][262] +3 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [SKIP][285], [PASS][286], [PASS][287], [PASS][288]) ([Intel XE#378]) -> ([PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-5/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-1/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-8/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-7/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-7/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-6/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-1/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-1/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-8/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-8/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-7/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-5/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-3/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-2/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-2/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-5/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-2/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-2/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-2/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-4/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-8/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-8/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-8/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-1/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-5/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-6/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [SKIP][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334]) ([Intel XE#2457]) -> ([PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-8/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [SKIP][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380]) ([Intel XE#378]) -> ([PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-466/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-433/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-463/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-463/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-433/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@xe_module_load@load.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@xe_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@xe_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@xe_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@xe_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-463/igt@xe_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-436/igt@xe_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@xe_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@xe_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@xe_module_load@load.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [ABORT][406] ([Intel XE#3084]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-lnl-4/igt@xe_wedged@wedged-mode-toggle.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][408] ([Intel XE#787]) -> [SKIP][409] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-435/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][410] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][411] ([Intel XE#787]) +5 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][412] ([Intel XE#2341]) -> [FAIL][413] ([Intel XE#1178])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][414] ([Intel XE#2312]) -> [SKIP][415] ([Intel XE#2311]) +9 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][416] ([Intel XE#651]) -> [SKIP][417] ([Intel XE#656]) +8 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][418] ([Intel XE#4141]) -> [SKIP][419] ([Intel XE#2312]) +2 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][420] ([Intel XE#2312]) -> [SKIP][421] ([Intel XE#4141]) +8 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][422] ([Intel XE#2311]) -> [SKIP][423] ([Intel XE#2312]) +7 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][424] ([Intel XE#656]) -> [SKIP][425] ([Intel XE#651]) +5 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][426] ([Intel XE#656]) -> [SKIP][427] ([Intel XE#653]) +7 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][428] ([Intel XE#2312]) -> [SKIP][429] ([Intel XE#2313]) +12 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][430] ([Intel XE#2313]) -> [SKIP][431] ([Intel XE#2312]) +6 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][432] ([Intel XE#653]) -> [SKIP][433] ([Intel XE#656]) +3 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][434] ([Intel XE#1729]) -> [SKIP][435] ([Intel XE#362])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][436] ([Intel XE#1173]) -> [SKIP][437] ([Intel XE#1061])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8273/shard-dg2-463/igt@xe_peer2peer@write.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/shard-dg2-432/igt@xe_peer2peer@write.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8273 -> IGTPW_12764
* Linux: xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e -> xe-2809-4e643702e9d1dbb19e2b4cf9883900e3878f4a28
IGTPW_12764: 12764
IGT_8273: 5d806121f1cfb38fe7cc4d528d81feb1c11274b1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2806-e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e: e2e6ad67ea058d5b08490a2b3dab2152fcfcc24e
xe-2809-4e643702e9d1dbb19e2b4cf9883900e3878f4a28: 4e643702e9d1dbb19e2b4cf9883900e3878f4a28
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12764/index.html
[-- Attachment #2: Type: text/html, Size: 112668 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices
2025-03-14 4:57 ` Riana Tauro
@ 2025-03-21 3:26 ` Purkait, Soham
2025-03-21 6:20 ` Riana Tauro
0 siblings, 1 reply; 14+ messages in thread
From: Purkait, Soham @ 2025-03-21 3:26 UTC (permalink / raw)
To: Riana Tauro, igt-dev, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi,
jonathan.ming.jun.lui
Hi Riana,
On 14-03-2025 10:27, Riana Tauro wrote:
> Hi Soham
>
> Replace busy-ticks with engine-active-ticks and total-ticks with
> engine-total-ticks to keep it consistent.
>
> Replace all occurences of busy with active in the series.
>
> On 3/13/2025 11:51 AM, Soham Purkait wrote:
>> Add gputop support for xe-specific devices. Separate
>> driver-specific code into respective source files.
>>
>> v2 : fix for refactoring GPUTOP into a
>> vendor-agnostic tool (Lucas)
>>
>> v3 : Separate commit (Kamil)
>>
>> v4 : Headers in alphabetical order
>> Engines memory allocation at
>> the beginning all at once
>> Removed PMU normalization (Riana)
>>
>> Signed-off-by: Soham Purkait <soham.purkait@intel.com>
>> ---
>> tools/gputop/xe_gputop.c | 372 +++++++++++++++++++++++++++++++++++++++
>> tools/gputop/xe_gputop.h | 73 ++++++++
>> 2 files changed, 445 insertions(+)
>> create mode 100644 tools/gputop/xe_gputop.c
>> create mode 100644 tools/gputop/xe_gputop.h
>>
>> diff --git a/tools/gputop/xe_gputop.c b/tools/gputop/xe_gputop.c
>> new file mode 100644
>> index 000000000..4137bb771
>> --- /dev/null
>> +++ b/tools/gputop/xe_gputop.c
>> @@ -0,0 +1,372 @@
>> +/* SPDX-License-Identifier: MIT */
>> +/*
>> + * Copyright © 2025 Intel Corporation
>> + */
>> +
>> +#include "xe_gputop.h"
>> +
>> +#define engine_ptr(engines, n) (&(engines)->engine + (n))
>> +
>> +static void __update_sample(struct xe_pmu_counter *counter, uint64_t
>> val)
>> +{
>> + counter->val.prev = counter->val.cur;
>> + counter->val.cur = val;
>> +}
>> +
>> +static void update_sample(struct xe_pmu_counter *counter, uint64_t
>> *val)
>> +{
>> + if (counter->present)
> presence of fd should be enough. present is not required.
> The __update contents can be moved to same function
In order to maintain the sanctity, I believe this approach is more
aligned with the IGT implementation.
>> + __update_sample(counter, val[counter->idx]);
>> +}
>> +
>> +static const char *class_display_name(unsigned int class)
>> +{
>> + switch (class) {
>> + case DRM_XE_ENGINE_CLASS_RENDER:
>> + return "Render/3D";
>> + case DRM_XE_ENGINE_CLASS_COPY:
>> + return "Blitter";
>> + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
>> + return "Video";
>> + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
>> + return "VideoEnhance";
>> + case DRM_XE_ENGINE_CLASS_COMPUTE:
>> + return "Compute";
>> + default:
>> + return "[unknown]";
>> + }
>> +}
>> +
>> +static inline void *clean_up(void *engines)
>> +{
>> + if (engines)
>> + free(engines);
>> +
>> + return NULL;
>> +}
>> +
>> +static char *pmu_name(struct igt_device_card *card)
>> +{
>> + int card_fd;
>> + char device[30];
>> + char *path;
>> +
>> + if (strlen(card->card))
>> + card_fd = igt_open_card(card);
>> + else if (strlen(card->render))
>> + card_fd = igt_open_render(card);
>> +
>> + if (card_fd == -1)
>> + return NULL;
>> +
>> + xe_perf_device(card_fd, device, sizeof(device));
>> + path = strdup(device);
> needs a free while cleanup
>> + close(card_fd);
>> + return path;
>> +}
>> +
>> +static int _open_pmu(uint64_t type, unsigned int *cnt, struct
>> xe_pmu_counter *pmu, int *fd)
>> +{
>> + int fd__ = igt_perf_open_group(type, pmu->config, *fd);
>> +
>> + if (fd__ >= 0) {
>> + if (*fd == -1)
>> + *fd = fd__;
>> + pmu->present = true;
>> + pmu->idx = (*cnt)++;
>> + }
>> +
>> + return fd__;
>> +}
>> +
>> +void xe_gputop_init(struct xe_gputop *obj,
>> + struct igt_device_card *card)
>> +{
>> + obj->pmu_device = pmu_name(card);
>> + if (!obj->pmu_device) {
>> + fprintf(stderr, "%s : pmu_device path returned NULL",
>> card->pci_slot_name);
>> + exit(EXIT_FAILURE);
>> + }
>> + obj->card = card;
>> +}
>> +
>> +static int pmu_format_shift(int xe, const char *name)
>> +{
>> + uint32_t start;
>> + int format;
>> + char device[80];
>> +
>> + format = perf_event_format(xe_perf_device(xe, device,
>> sizeof(device)),
>> + name, &start);
>> + if (format)
>> + return 0;
>> +
>> + return start;
>> +}
>> +
>> +static int engine_cmp(const void *__a, const void *__b)
>> +{
>> + const struct xe_engine *a = (struct xe_engine *)__a;
>> + const struct xe_engine *b = (struct xe_engine *)__b;
>> +
>> + if (a->drm_xe_engine.engine_class != b->drm_xe_engine.engine_class)
>> + return a->drm_xe_engine.engine_class -
>> b->drm_xe_engine.engine_class;
>> + else
>> + return a->drm_xe_engine.engine_instance -
>> b->drm_xe_engine.engine_instance;
>> +}
>> +
>> +void *xe_discover_engines(const void *obj)
>> +{
>> + struct igt_device_card *card = ((struct xe_gputop *)obj)->card;
>> + struct xe_engines *engines;
>> + int ret = 0;
>> + char device[30];
>> + struct drm_xe_engine_class_instance *hwe;
>> + int card_fd;
>> +
>> + if (!card || !strlen(card->card) || !strlen(card->render))
>> + return NULL;
>> +
>> + if (strlen(card->card)) {
>> + card_fd = igt_open_card(card);
>> + } else if (strlen(card->render)) {
>> + card_fd = igt_open_render(card);
>> + } else {
>> + fprintf(stderr, "Failed to detect device!\n");
>> + return clean_up(engines);
>> + }
>> + xe_device_get(card_fd);
>> + engines = malloc(sizeof(struct xe_engines) +
>> + xe_number_engines(card_fd) * sizeof(struct xe_engine));
> why additional?
While allocating xe_engines, xe_engine space also needs to get allocated.
>
>> + if (!engines)
>> + return NULL;
>> +
>> + memset(engines, 0, sizeof(struct xe_engines) +
>> + xe_number_engines(card_fd) * sizeof(struct xe_engine));
>> +
>> + engines->num_engines = 0;
>> + engines->device = ((struct xe_gputop *)obj)->pmu_device;
>> + xe_for_each_engine(card_fd, hwe) {
>> + uint64_t engine_class, engine_instance, gt_shift, param_config;
>> + struct xe_engine *engine;
>> +
>> + engine = engine_ptr(engines, engines->num_engines);
>> + gt_shift = pmu_format_shift(card_fd, "gt");
>> + engine_class = pmu_format_shift(card_fd, "engine_class");
>> + engine_instance = pmu_format_shift(card_fd, "engine_instance");
>> + param_config = (uint64_t)hwe->gt_id << gt_shift |
>> hwe->engine_class << engine_class
>> + | hwe->engine_instance << engine_instance;
> This function does pmu specific initialization too. discover_engines
> is not the right name.
> you could move pmu specific initialization to pmu_init or rename this
> function
Here engine specific discoveries is being performed so the name, while
strictly maintaining PMU specific initialization is not possible
due to the underline implementation But It could encourage other driver
to maintain the same structure, while keeping
it vendor agnostic.
>> +
>> + engine->drm_xe_engine = *hwe;
>> +
>> + ret = perf_event_config(xe_perf_device(card_fd, device,
>> sizeof(device)),
>> + "engine-active-ticks", &engine->busy_ticks.config);
>> + if (ret < 0)
>> + break;
>> +
>> + engine->busy_ticks.config |= param_config;
>> +
>> + ret = perf_event_config(xe_perf_device(card_fd, device,
>> sizeof(device)),
>> + "engine-total-ticks", &engine->total_ticks.config);
>> + if (ret < 0)
>> + break;
>> +
>> + engine->total_ticks.config |= param_config;
>> +
>> + if (engine->busy_ticks.config == -1 ||
>> engine->total_ticks.config == -1) {
>> + ret = ENOENT;
>> + break;
>> + }
>> +
>> + ret = asprintf(&engine->display_name, "%s/%u",
>> + class_display_name(engine->drm_xe_engine.engine_class),
>> + engine->drm_xe_engine.engine_instance);
>> +
>> + if (ret <= 0) {
>> + ret = errno;
>> + break;
>> + }
>> + ret = asprintf(&engine->short_name, "%s/%u",
>> + xe_engine_class_short_string(engine->drm_xe_engine.engine_class),
>> + engine->drm_xe_engine.engine_instance);
>> +
>> + if (ret <= 0) {
>> + ret = errno;
>> + break;
>> + }
>> +
>> + engines->num_engines++;
>> + }
>> +
>> + if (!ret) {
>> + errno = ret;
>> + return clean_up(engines);
>> + }
>> +
>> + qsort(engine_ptr(engines, 0), engines->num_engines,
>> + sizeof(struct xe_engine), engine_cmp);
>> +
>> + ((struct xe_gputop *)obj)->eng_obj = engines;
>> +
>> + return engines;
>> +}
>> +
>> +static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
>> +{
>> + uint64_t buf[2 + num];
>> + unsigned int i;
>> + ssize_t len;
>> +
>> + memset(buf, 0, sizeof(buf));
>> +
>> + len = read(fd, buf, sizeof(buf));
>> + assert(len == sizeof(buf));
>> +
>> + for (i = 0; i < num; i++)
>> + val[i] = buf[2 + i];
>> +
>> + return buf[1];
>> +}
>> +
>> +void xe_pmu_sample(const void *obj)
>> +{
>> + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
>> + const int num_val = engines->num_counters;
> this can be num_engines * 2.
> can remove this
>> + uint64_t val[2 + num_val];
>> + unsigned int i;
>> +
>> + engines->ts.prev = engines->ts.cur;
>> + engines->ts.cur = pmu_read_multi(engines->fd, num_val, val);
> This is unnecessary
>> +
>> + for (i = 0; i < engines->num_engines; i++) {
>> + struct xe_engine *engine = engine_ptr(engines, i);
>> +
>> + update_sample(&engine->busy_ticks, val);
>> + update_sample(&engine->total_ticks, val);
>> + }
>> +}
>> +
>> +int xe_pmu_init(const void *obj)
>> +{
>> + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
>> + unsigned int i;
>> + int fd;
>> + struct xe_engine *engine;
>> + uint64_t type = igt_perf_type_id(engines->device);
>> +
>> + engines->fd = -1;
>> + engines->num_counters = 0;
> you can use a local variable here
It is being used in xe_pmu_sample as well.
Thanks,
Soham
>> +
> why is 0 outside, Can't it be moved in the for loop
>> + engine = engine_ptr(engines, 0);
>> + fd = _open_pmu(type, &engines->num_counters,
>> &engine->busy_ticks, &engines->fd);
>> + if (fd < 0)
>> + return -1;
>> + fd = _open_pmu(type, &engines->num_counters,
>> &engine->total_ticks, &engines->fd);
>> + if (fd < 0)
>> + return -1;
>> +
>> + for (i = 1; i < engines->num_engines; i++) {
>> + engine = engine_ptr(engines, i);
>> + fd = _open_pmu(type, &engines->num_counters,
>> &engine->busy_ticks, &engines->fd);
>> + if (fd < 0)
>> + return -1;
>> + fd = _open_pmu(type, &engines->num_counters,
>> &engine->total_ticks, &engines->fd);
>> + if (fd < 0)
>> + return -1;
>> + }
>> + return 0;
>> +}
>> +
>> +static double pmu_calc_total(struct xe_pmu_pair *p)
> %s/pmu_calc_total/pmu_total_ticks
> or calc_total_ticks
>> +{
>> + double v;
>> +
>> + v = p->cur - p->prev;
>> + return v;
>> +}
>> +
>> +static double pmu_calc(struct xe_pmu_pair *p, double total_tick)
> %s/total tick/total ticks
>> +{
>> + double bz = p->cur - p->prev;
> use friendly names
> active ticks
>
> I think you can move total ticks also here. pass two pairs and
> calculate in same function
>> + double total;
>> +
>> + total = (bz * 100) / total_tick;
>> + return total;
>> +}
>> +
>> +static int
>> +print_device_description(const void *obj, int lines, int w, int h)
>> +{
>> + char *desc;
>> + int len;
>> +
>> + len = asprintf(&desc, "DRIVER: %s || BDF: %s",
>> + ((struct xe_gputop *)obj)->card->driver,
>> + ((struct xe_gputop *)obj)->card->pci_slot_name);
>> +
>> + printf("\033[7m%s%*s\033[0m\n",
>> + desc,
>> + (int)(w - len), " ");
>> + lines++;
>> + free(desc);
>> + return lines;
>> +}
>> +
>> +static int
>> +print_engines_header(struct xe_engines *engines,
>> + int lines, int con_w, int con_h)
>> +{
>> + const char *a;
>> +
>> + for (unsigned int i = 0;
>> + i < engines->num_engines && lines < con_h;
>> + i++) {
>> + struct xe_engine *engine = engine_ptr(engines, i);
>> +
>> + if (!engine->num_counters)
>> + continue;
>> +
>> + a = " ENGINES BUSY ";
>> +
>> + printf("\033[7m%s%*s\033[0m\n",
>> + a,
>> + (int)(con_w - strlen(a)), " ");
>> + lines++;
>> +
>> + break;
>> + }
>> +
>> + return lines;
>> +}
>> +
>> +static int
>> +print_engine(struct xe_engines *engines, unsigned int i,
>> + int lines, int con_w, int con_h)
>> +{
>> + struct xe_engine *engine = engine_ptr(engines, i);
>> + double total_tick = pmu_calc_total(&engine->total_ticks.val);
>> + double percentage = pmu_calc(&engine->busy_ticks.val, total_tick);
>> +
>> + printf("%*s", (int)(strlen(" ENGINES")),
>> engine->display_name);
>> + print_percentage_bar(percentage, con_w - strlen("
>> ENGINES"));
>> + printf("\n");
>> +
>> + return ++lines;
>> +}
>> +
>> +int xe_print_engines(const void *obj, int lines, int w, int h)
>> +{
>> + struct xe_engines *show = ((struct xe_gputop *)obj)->eng_obj;
>> +
>> + lines = print_device_description(obj, lines, w, h);
>> +
>> + lines = print_engines_header(show, lines, w, h);
>> +
>> + for (unsigned int i = 0; i < show->num_engines && lines < h; i++)
>> + lines = print_engine(show, i, lines, w, h);
>> +
>> + lines = print_engines_footer(lines, w, h);
>> +
>> + return lines;
>> +}
>> +
>> diff --git a/tools/gputop/xe_gputop.h b/tools/gputop/xe_gputop.h
>> new file mode 100644
>> index 000000000..1f23b2ed0
>> --- /dev/null
>> +++ b/tools/gputop/xe_gputop.h
>> @@ -0,0 +1,73 @@
>> +/* SPDX-License-Identifier: MIT
>> + *
>> + * Copyright © 2025 Intel Corporation
>> + */
>> +
>> +#ifndef __XE_GPUTOP_H__
>> +#define __XE_GPUTOP_H__
>> +
>> +#include <dirent.h>
>> +
>> +#include "igt_device_scan.h"
>> +#include "igt_perf.h"
>> +#include "utils.h"
>> +#include "xe/xe_query.h"
>> +
>> +struct xe_pmu_pair {
>> + uint64_t cur;
>> + uint64_t prev;
>> +};
>> +
>> +struct xe_pmu_counter {
>> + uint64_t type;
>> + uint64_t config;
>> + unsigned int idx;
>> + struct xe_pmu_pair val;
>> + bool present;
>> +};
>> +
>> +struct xe_engine {
>> + const char *name;
>> + char *display_name;
>> + char *short_name;
>> + struct drm_xe_engine_class_instance drm_xe_engine;
>> + unsigned int num_counters;
> didn't find initialization. needed?
>> + struct xe_pmu_counter busy_ticks;
>> + struct xe_pmu_counter total_ticks;
>> +};
>> +
>> +struct xe_engines {
>> + unsigned int num_engines;
>> + unsigned int num_classes;
> not used
>> + unsigned int num_counters;
>> + DIR *root;
>> + int fd;
>> + struct xe_pmu_pair ts;
> can be removed
>> + bool discrete;
> not used
>> + char *device;
>> + int num_gts;
> not used
>> +
>> + /* Do not edit below this line.
>> + * This structure is reallocated every time a new engine is
>> + * found and size is increased by sizeof (engine).
>> + */
> This comment can be removed
>
> Thanks
> Riana
>> + struct xe_engine engine;
>> +
>> +};
>> +
>> +struct xe_gputop {
>> + char *pmu_device;
>> + struct igt_device_card *card;
>> + struct xe_engines *eng_obj;
>> +};
>> +
>> +void xe_gputop_init(struct xe_gputop *obj,
>> + struct igt_device_card *card);
>> +
>> +void xe_populate_device_instances(struct gputop_device *dv);
>> +void *xe_discover_engines(const void *obj);
>> +void xe_pmu_sample(const void *obj);
>> +int xe_pmu_init(const void *obj);
>> +int xe_print_engines(const void *obj, int lines, int w, int h);
>> +
>> +#endif /* __XE_GPUTOP_H__ */
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices
2025-03-21 3:26 ` Purkait, Soham
@ 2025-03-21 6:20 ` Riana Tauro
0 siblings, 0 replies; 14+ messages in thread
From: Riana Tauro @ 2025-03-21 6:20 UTC (permalink / raw)
To: Purkait, Soham, igt-dev, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi,
jonathan.ming.jun.lui
Hi Soham
On 3/21/2025 8:56 AM, Purkait, Soham wrote:
> Hi Riana,
>
> On 14-03-2025 10:27, Riana Tauro wrote:
>> Hi Soham
>>
>> Replace busy-ticks with engine-active-ticks and total-ticks with
>> engine-total-ticks to keep it consistent.
>>
>> Replace all occurences of busy with active in the series.
>>
>> On 3/13/2025 11:51 AM, Soham Purkait wrote:
>>> Add gputop support for xe-specific devices. Separate
>>> driver-specific code into respective source files.
>>>
>>> v2 : fix for refactoring GPUTOP into a
>>> vendor-agnostic tool (Lucas)
>>>
>>> v3 : Separate commit (Kamil)
>>>
>>> v4 : Headers in alphabetical order
>>> Engines memory allocation at
>>> the beginning all at once
>>> Removed PMU normalization (Riana)
>>>
>>> Signed-off-by: Soham Purkait <soham.purkait@intel.com>
>>> ---
>>> tools/gputop/xe_gputop.c | 372 +++++++++++++++++++++++++++++++++++++++
>>> tools/gputop/xe_gputop.h | 73 ++++++++
>>> 2 files changed, 445 insertions(+)
>>> create mode 100644 tools/gputop/xe_gputop.c
>>> create mode 100644 tools/gputop/xe_gputop.h
>>>
>>> diff --git a/tools/gputop/xe_gputop.c b/tools/gputop/xe_gputop.c
>>> new file mode 100644
>>> index 000000000..4137bb771
>>> --- /dev/null
>>> +++ b/tools/gputop/xe_gputop.c
>>> @@ -0,0 +1,372 @@
>>> +/* SPDX-License-Identifier: MIT */
>>> +/*
>>> + * Copyright © 2025 Intel Corporation
>>> + */
>>> +
>>> +#include "xe_gputop.h"
>>> +
>>> +#define engine_ptr(engines, n) (&(engines)->engine + (n))
>>> +
>>> +static void __update_sample(struct xe_pmu_counter *counter, uint64_t
>>> val)
>>> +{
>>> + counter->val.prev = counter->val.cur;
>>> + counter->val.cur = val;
>>> +}
>>> +
>>> +static void update_sample(struct xe_pmu_counter *counter, uint64_t
>>> *val)
>>> +{
>>> + if (counter->present)
>> presence of fd should be enough. present is not required.
>> The __update contents can be moved to same function
> In order to maintain the sanctity, I believe this approach is more
> aligned with the IGT implementation.
Don't think igt is doing this. do you mean xe pmu igt? >>> +
__update_sample(counter, val[counter->idx]);
>>> +}
>>> +
>>> +static const char *class_display_name(unsigned int class)
>>> +{
>>> + switch (class) {
>>> + case DRM_XE_ENGINE_CLASS_RENDER:
>>> + return "Render/3D";
>>> + case DRM_XE_ENGINE_CLASS_COPY:
>>> + return "Blitter";
>>> + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
>>> + return "Video";
>>> + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
>>> + return "VideoEnhance";
>>> + case DRM_XE_ENGINE_CLASS_COMPUTE:
>>> + return "Compute";
>>> + default:
>>> + return "[unknown]";
>>> + }
>>> +}
>>> +
>>> +static inline void *clean_up(void *engines)
>>> +{
>>> + if (engines)
>>> + free(engines);
>>> +
>>> + return NULL;
>>> +}
>>> +
>>> +static char *pmu_name(struct igt_device_card *card)
>>> +{
>>> + int card_fd;
>>> + char device[30];
>>> + char *path;
>>> +
>>> + if (strlen(card->card))
>>> + card_fd = igt_open_card(card);
>>> + else if (strlen(card->render))
>>> + card_fd = igt_open_render(card);
>>> +
>>> + if (card_fd == -1)
>>> + return NULL;
>>> +
>>> + xe_perf_device(card_fd, device, sizeof(device));
>>> + path = strdup(device);
>> needs a free while cleanup
>>> + close(card_fd);
>>> + return path;
>>> +}
>>> +
>>> +static int _open_pmu(uint64_t type, unsigned int *cnt, struct
>>> xe_pmu_counter *pmu, int *fd)
>>> +{
>>> + int fd__ = igt_perf_open_group(type, pmu->config, *fd);
>>> +
>>> + if (fd__ >= 0) {
>>> + if (*fd == -1)
>>> + *fd = fd__;
>>> + pmu->present = true;
>>> + pmu->idx = (*cnt)++;
>>> + }
>>> +
>>> + return fd__;
>>> +}
>>> +
>>> +void xe_gputop_init(struct xe_gputop *obj,
>>> + struct igt_device_card *card)
>>> +{
>>> + obj->pmu_device = pmu_name(card);
>>> + if (!obj->pmu_device) {
>>> + fprintf(stderr, "%s : pmu_device path returned NULL", card-
>>> >pci_slot_name);
>>> + exit(EXIT_FAILURE);
>>> + }
>>> + obj->card = card;
>>> +}
>>> +
>>> +static int pmu_format_shift(int xe, const char *name)
>>> +{
>>> + uint32_t start;
>>> + int format;
>>> + char device[80];
>>> +
>>> + format = perf_event_format(xe_perf_device(xe, device,
>>> sizeof(device)),
>>> + name, &start);
>>> + if (format)
>>> + return 0;
>>> +
>>> + return start;
>>> +}
>>> +
>>> +static int engine_cmp(const void *__a, const void *__b)
>>> +{
>>> + const struct xe_engine *a = (struct xe_engine *)__a;
>>> + const struct xe_engine *b = (struct xe_engine *)__b;
>>> +
>>> + if (a->drm_xe_engine.engine_class != b->drm_xe_engine.engine_class)
>>> + return a->drm_xe_engine.engine_class - b-
>>> >drm_xe_engine.engine_class;
>>> + else
>>> + return a->drm_xe_engine.engine_instance - b-
>>> >drm_xe_engine.engine_instance;
>>> +}
>>> +
>>> +void *xe_discover_engines(const void *obj)
>>> +{
>>> + struct igt_device_card *card = ((struct xe_gputop *)obj)->card;
>>> + struct xe_engines *engines;
>>> + int ret = 0;
>>> + char device[30];
>>> + struct drm_xe_engine_class_instance *hwe;
>>> + int card_fd;
>>> +
>>> + if (!card || !strlen(card->card) || !strlen(card->render))
>>> + return NULL;
>>> +
>>> + if (strlen(card->card)) {
>>> + card_fd = igt_open_card(card);
>>> + } else if (strlen(card->render)) {
>>> + card_fd = igt_open_render(card);
>>> + } else {
>>> + fprintf(stderr, "Failed to detect device!\n");
>>> + return clean_up(engines);
>>> + }
>>> + xe_device_get(card_fd);
>>> + engines = malloc(sizeof(struct xe_engines) +
>>> + xe_number_engines(card_fd) * sizeof(struct xe_engine));
>> why additional?
> While allocating xe_engines, xe_engine space also needs to get allocated.
my bad. got confused because of naming>>
>>> + if (!engines)
>>> + return NULL;
>>> +
>>> + memset(engines, 0, sizeof(struct xe_engines) +
>>> + xe_number_engines(card_fd) * sizeof(struct xe_engine));
>>> +
>>> + engines->num_engines = 0;
>>> + engines->device = ((struct xe_gputop *)obj)->pmu_device;
>>> + xe_for_each_engine(card_fd, hwe) {
>>> + uint64_t engine_class, engine_instance, gt_shift, param_config;
>>> + struct xe_engine *engine;
>>> +
>>> + engine = engine_ptr(engines, engines->num_engines);
>>> + gt_shift = pmu_format_shift(card_fd, "gt");
>>> + engine_class = pmu_format_shift(card_fd, "engine_class");
>>> + engine_instance = pmu_format_shift(card_fd, "engine_instance");
>>> + param_config = (uint64_t)hwe->gt_id << gt_shift | hwe-
>>> >engine_class << engine_class
>>> + | hwe->engine_instance << engine_instance;
>> This function does pmu specific initialization too. discover_engines
>> is not the right name.
>> you could move pmu specific initialization to pmu_init or rename this
>> function
> Here engine specific discoveries is being performed so the name,
This is mostly populating the engine pmu configs. querying engines is
done in xe_query.c while
> strictly maintaining PMU specific initialization is not possible
From your implementation i see pmu init is done just after this,
Why can't it be a single function?> due to the underline implementation
But It could encourage other driver
> to maintain the same structure, while keeping
> it vendor agnostic.>>> +
>>> + engine->drm_xe_engine = *hwe;
>>> +
>>> + ret = perf_event_config(xe_perf_device(card_fd, device,
>>> sizeof(device)),
>>> + "engine-active-ticks", &engine->busy_ticks.config);
>>> + if (ret < 0)
>>> + break;
>>> +
>>> + engine->busy_ticks.config |= param_config;
>>> +
>>> + ret = perf_event_config(xe_perf_device(card_fd, device,
>>> sizeof(device)),
>>> + "engine-total-ticks", &engine->total_ticks.config);
>>> + if (ret < 0)
>>> + break;
>>> +
>>> + engine->total_ticks.config |= param_config;
>>> +
>>> + if (engine->busy_ticks.config == -1 || engine-
>>> >total_ticks.config == -1) {
>>> + ret = ENOENT;
>>> + break;
>>> + }
>>> +
>>> + ret = asprintf(&engine->display_name, "%s/%u",
>>> + class_display_name(engine->drm_xe_engine.engine_class),
>>> + engine->drm_xe_engine.engine_instance);
>>> +
>>> + if (ret <= 0) {
>>> + ret = errno;
>>> + break;
>>> + }
>>> + ret = asprintf(&engine->short_name, "%s/%u",
>>> + xe_engine_class_short_string(engine->drm_xe_engine.engine_class),
>>> + engine->drm_xe_engine.engine_instance);
>>> +
>>> + if (ret <= 0) {
>>> + ret = errno;
>>> + break;
>>> + }
>>> +
>>> + engines->num_engines++;
>>> + }
>>> +
>>> + if (!ret) {
>>> + errno = ret;
>>> + return clean_up(engines);
>>> + }
>>> +
>>> + qsort(engine_ptr(engines, 0), engines->num_engines,
>>> + sizeof(struct xe_engine), engine_cmp);
>>> +
>>> + ((struct xe_gputop *)obj)->eng_obj = engines;
>>> +
>>> + return engines;
>>> +}
>>> +
>>> +static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
>>> +{
>>> + uint64_t buf[2 + num];
>>> + unsigned int i;
>>> + ssize_t len;
>>> +
>>> + memset(buf, 0, sizeof(buf));
>>> +
>>> + len = read(fd, buf, sizeof(buf));
>>> + assert(len == sizeof(buf));
>>> +
>>> + for (i = 0; i < num; i++)
>>> + val[i] = buf[2 + i];
>>> +
>>> + return buf[1];
>>> +}
>>> +
>>> +void xe_pmu_sample(const void *obj)
>>> +{
>>> + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
>>> + const int num_val = engines->num_counters;
>> this can be num_engines * 2.
>> can remove this
>>> + uint64_t val[2 + num_val];
>>> + unsigned int i;
>>> +
>>> + engines->ts.prev = engines->ts.cur;
>>> + engines->ts.cur = pmu_read_multi(engines->fd, num_val, val);
>> This is unnecessary
>>> +
>>> + for (i = 0; i < engines->num_engines; i++) {
>>> + struct xe_engine *engine = engine_ptr(engines, i);
>>> +
>>> + update_sample(&engine->busy_ticks, val);
>>> + update_sample(&engine->total_ticks, val);
>>> + }
>>> +}
>>> +
>>> +int xe_pmu_init(const void *obj)
>>> +{
>>> + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj;
>>> + unsigned int i;
>>> + int fd;
>>> + struct xe_engine *engine;
>>> + uint64_t type = igt_perf_type_id(engines->device);
>>> +
>>> + engines->fd = -1;
>>> + engines->num_counters = 0;
>> you can use a local variable here
> It is being used in xe_pmu_sample as well.>
see my comment in xe_pmu_sample
Thanks
Riana>
> Thanks,
> Soham
>
>>> +
>> why is 0 outside, Can't it be moved in the for loop
>>> + engine = engine_ptr(engines, 0);
>>> + fd = _open_pmu(type, &engines->num_counters, &engine-
>>> >busy_ticks, &engines->fd);
>>> + if (fd < 0)
>>> + return -1;
>>> + fd = _open_pmu(type, &engines->num_counters, &engine-
>>> >total_ticks, &engines->fd);
>>> + if (fd < 0)
>>> + return -1;
>>> +
>>> + for (i = 1; i < engines->num_engines; i++) {
>>> + engine = engine_ptr(engines, i);
>>> + fd = _open_pmu(type, &engines->num_counters, &engine-
>>> >busy_ticks, &engines->fd);
>>> + if (fd < 0)
>>> + return -1;
>>> + fd = _open_pmu(type, &engines->num_counters, &engine-
>>> >total_ticks, &engines->fd);
>>> + if (fd < 0)
>>> + return -1;
>>> + }
>>> + return 0;
>>> +}
>>> +
>>> +static double pmu_calc_total(struct xe_pmu_pair *p)
>> %s/pmu_calc_total/pmu_total_ticks
>> or calc_total_ticks
>>> +{
>>> + double v;
>>> +
>>> + v = p->cur - p->prev;
>>> + return v;
>>> +}
>>> +
>>> +static double pmu_calc(struct xe_pmu_pair *p, double total_tick)
>> %s/total tick/total ticks
>>> +{
>>> + double bz = p->cur - p->prev;
>> use friendly names
>> active ticks
>>
>> I think you can move total ticks also here. pass two pairs and
>> calculate in same function
>>> + double total;
>>> +
>>> + total = (bz * 100) / total_tick;
>>> + return total;
>>> +}
>>> +
>>> +static int
>>> +print_device_description(const void *obj, int lines, int w, int h)
>>> +{
>>> + char *desc;
>>> + int len;
>>> +
>>> + len = asprintf(&desc, "DRIVER: %s || BDF: %s",
>>> + ((struct xe_gputop *)obj)->card->driver,
>>> + ((struct xe_gputop *)obj)->card->pci_slot_name);
>>> +
>>> + printf("\033[7m%s%*s\033[0m\n",
>>> + desc,
>>> + (int)(w - len), " ");
>>> + lines++;
>>> + free(desc);
>>> + return lines;
>>> +}
>>> +
>>> +static int
>>> +print_engines_header(struct xe_engines *engines,
>>> + int lines, int con_w, int con_h)
>>> +{
>>> + const char *a;
>>> +
>>> + for (unsigned int i = 0;
>>> + i < engines->num_engines && lines < con_h;
>>> + i++) {
>>> + struct xe_engine *engine = engine_ptr(engines, i);
>>> +
>>> + if (!engine->num_counters)
>>> + continue;
>>> +
>>> + a = " ENGINES BUSY ";
>>> +
>>> + printf("\033[7m%s%*s\033[0m\n",
>>> + a,
>>> + (int)(con_w - strlen(a)), " ");
>>> + lines++;
>>> +
>>> + break;
>>> + }
>>> +
>>> + return lines;
>>> +}
>>> +
>>> +static int
>>> +print_engine(struct xe_engines *engines, unsigned int i,
>>> + int lines, int con_w, int con_h)
>>> +{
>>> + struct xe_engine *engine = engine_ptr(engines, i);
>>> + double total_tick = pmu_calc_total(&engine->total_ticks.val);
>>> + double percentage = pmu_calc(&engine->busy_ticks.val, total_tick);
>>> +
>>> + printf("%*s", (int)(strlen(" ENGINES")), engine-
>>> >display_name);
>>> + print_percentage_bar(percentage, con_w - strlen(" ENGINES"));
>>> + printf("\n");
>>> +
>>> + return ++lines;
>>> +}
>>> +
>>> +int xe_print_engines(const void *obj, int lines, int w, int h)
>>> +{
>>> + struct xe_engines *show = ((struct xe_gputop *)obj)->eng_obj;
>>> +
>>> + lines = print_device_description(obj, lines, w, h);
>>> +
>>> + lines = print_engines_header(show, lines, w, h);
>>> +
>>> + for (unsigned int i = 0; i < show->num_engines && lines < h; i++)
>>> + lines = print_engine(show, i, lines, w, h);
>>> +
>>> + lines = print_engines_footer(lines, w, h);
>>> +
>>> + return lines;
>>> +}
>>> +
>>> diff --git a/tools/gputop/xe_gputop.h b/tools/gputop/xe_gputop.h
>>> new file mode 100644
>>> index 000000000..1f23b2ed0
>>> --- /dev/null
>>> +++ b/tools/gputop/xe_gputop.h
>>> @@ -0,0 +1,73 @@
>>> +/* SPDX-License-Identifier: MIT
>>> + *
>>> + * Copyright © 2025 Intel Corporation
>>> + */
>>> +
>>> +#ifndef __XE_GPUTOP_H__
>>> +#define __XE_GPUTOP_H__
>>> +
>>> +#include <dirent.h>
>>> +
>>> +#include "igt_device_scan.h"
>>> +#include "igt_perf.h"
>>> +#include "utils.h"
>>> +#include "xe/xe_query.h"
>>> +
>>> +struct xe_pmu_pair {
>>> + uint64_t cur;
>>> + uint64_t prev;
>>> +};
>>> +
>>> +struct xe_pmu_counter {
>>> + uint64_t type;
>>> + uint64_t config;
>>> + unsigned int idx;
>>> + struct xe_pmu_pair val;
>>> + bool present;
>>> +};
>>> +
>>> +struct xe_engine {
>>> + const char *name;
>>> + char *display_name;
>>> + char *short_name;
>>> + struct drm_xe_engine_class_instance drm_xe_engine;
>>> + unsigned int num_counters;
>> didn't find initialization. needed?
>>> + struct xe_pmu_counter busy_ticks;
>>> + struct xe_pmu_counter total_ticks;
>>> +};
>>> +
>>> +struct xe_engines {
>>> + unsigned int num_engines;
>>> + unsigned int num_classes;
>> not used
>>> + unsigned int num_counters;
>>> + DIR *root;
>>> + int fd;
>>> + struct xe_pmu_pair ts;
>> can be removed
>>> + bool discrete;
>> not used
>>> + char *device;
>>> + int num_gts;
>> not used
>>> +
>>> + /* Do not edit below this line.
>>> + * This structure is reallocated every time a new engine is
>>> + * found and size is increased by sizeof (engine).
>>> + */
>> This comment can be removed
>>
>> Thanks
>> Riana
>>> + struct xe_engine engine;
>>> +
>>> +};
>>> +
>>> +struct xe_gputop {
>>> + char *pmu_device;
>>> + struct igt_device_card *card;
>>> + struct xe_engines *eng_obj;
>>> +};
>>> +
>>> +void xe_gputop_init(struct xe_gputop *obj,
>>> + struct igt_device_card *card);
>>> +
>>> +void xe_populate_device_instances(struct gputop_device *dv);
>>> +void *xe_discover_engines(const void *obj);
>>> +void xe_pmu_sample(const void *obj);
>>> +int xe_pmu_init(const void *obj);
>>> +int xe_print_engines(const void *obj, int lines, int w, int h);
>>> +
>>> +#endif /* __XE_GPUTOP_H__ */
>>
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-03-21 6:20 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-13 6:21 [PATCH <i-g-t> v4 0/4] Add single engine busyness stats in GPUTOP Soham Purkait
2025-03-13 6:21 ` [PATCH <i-g-t> v4 1/4] lib/igt_device_scan: Enable finding all IGT devices for a specific driver Soham Purkait
2025-03-13 8:13 ` Krzysztof Karas
2025-03-13 11:51 ` Zbigniew Kempczyński
2025-03-13 6:21 ` [PATCH <i-g-t> v4 2/4] tools/gputop/utils: Add gputop utility functions common to all drivers Soham Purkait
2025-03-13 6:21 ` [PATCH <i-g-t> v4 3/4] tools/gputop/xe_gputop: Add gputop support for xe specific devices Soham Purkait
2025-03-14 4:57 ` Riana Tauro
2025-03-21 3:26 ` Purkait, Soham
2025-03-21 6:20 ` Riana Tauro
2025-03-13 6:21 ` [PATCH <i-g-t> v4 4/4] tools/gputop/gputop: Enable support for multiple GPUs and instances Soham Purkait
2025-03-13 7:58 ` ✓ Xe.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev5) Patchwork
2025-03-13 8:16 ` ✓ i915.CI.BAT: " Patchwork
2025-03-13 10:28 ` ✗ i915.CI.Full: failure " Patchwork
2025-03-14 13:14 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox