* [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table
@ 2025-12-11 19:30 Xin Wang
2025-12-11 19:30 ` [PATCH v5 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Xin Wang @ 2025-12-11 19:30 UTC (permalink / raw)
To: igt-dev; +Cc: alex.zuo, Xin Wang
Xin Wang (2):
lib/intel_pat: read Xe PAT config from debugfs
tests/intel/xe_pat: sync with Xe PAT debugfs parser
lib/intel_pat.c | 121 +++++++++++++++++++++++++++++++++++--------
lib/intel_pat.h | 20 +++++++
lib/xe/xe_query.c | 4 ++
lib/xe/xe_query.h | 4 ++
tests/intel/xe_pat.c | 38 +++++++++++++-
5 files changed, 162 insertions(+), 25 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH v5 1/2] lib/intel_pat: read Xe PAT config from debugfs 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang @ 2025-12-11 19:30 ` Xin Wang 2025-12-17 7:02 ` Vodapalli, Ravi Kumar 2025-12-11 19:30 ` [PATCH v5 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang ` (6 subsequent siblings) 7 siblings, 1 reply; 10+ messages in thread From: Xin Wang @ 2025-12-11 19:30 UTC (permalink / raw) To: igt-dev Cc: alex.zuo, Xin Wang, Shuicheng Lin, Kamil Konieczny, Matt Roper, Matthew Auld Parse the PAT software configuration from gt0/pat_sw_config instead of relying on hard-coded indices. V2: (Kamil) - Show a detailed skip info when opening the debugfs file fails. V3: - Save the Xe PAT software configuration into the xe_dev structure to prevent scenarios where certain test cases drop root privileges after execution begins, which could block access to debugfs. V4: - Cache the parsed PAT table the first time we read pat_sw_config and reuse it for subsequent calls. This avoids repeated debugfs opens (and failures) in tests that drop root between steps, while still returning the correct PAT layout. CC: Shuicheng Lin <shuicheng.lin@intel.com> CC: Kamil Konieczny <kamil.konieczny@intel.com> CC: Matt Roper <matthew.d.roper@intel.com> CC: Matthew Auld <matthew.auld@intel.com> Signed-off-by: Xin Wang <x.wang@intel.com> --- lib/intel_pat.c | 121 +++++++++++++++++++++++++++++++++++++--------- lib/intel_pat.h | 20 ++++++++ lib/xe/xe_query.c | 4 ++ lib/xe/xe_query.h | 4 ++ 4 files changed, 126 insertions(+), 23 deletions(-) diff --git a/lib/intel_pat.c b/lib/intel_pat.c index e3588110a..6a16d34cc 100644 --- a/lib/intel_pat.c +++ b/lib/intel_pat.c @@ -3,37 +3,112 @@ * Copyright © 2023 Intel Corporation */ +#include "igt.h" #include "intel_pat.h" +#include "xe/xe_query.h" + +/** + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration + * from debugfs + * + * @drm_fd: DRM device fd to use with igt_debugfs_open + * @xe_pat_cache: Pointer to a struct that will receive the parsed PAT configuration + * + * Returns: The number of PAT entries successfully read on success, or a negative error + * code on failure (-ENOENT if debugfs is missing, -errno otherwise) + */ +int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache) +{ + char *line = NULL; + size_t line_len = 0; + ssize_t nread; + int32_t parsed = 0; + int dbgfs_fd; + FILE *dbgfs_file = NULL; + static __thread struct intel_pat_cache cached_pat; + + /* Return cached value if already read for this thread */ + if (cached_pat.max_index != 0) { + *xe_pat_cache = cached_pat; + return cached_pat.max_index + 1; + } -#include "igt.h" + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config", O_RDONLY); + if (dbgfs_fd < 0) + return -ENOENT; + dbgfs_file = fdopen(dbgfs_fd, "r"); + if (!dbgfs_file) { + close(dbgfs_fd); + return -errno; + } -struct intel_pat_cache { - uint8_t uc; /* UC + COH_NONE */ - uint8_t wt; /* WT + COH_NONE */ - uint8_t wb; /* WB + COH_AT_LEAST_1WAY */ - uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/ - uint8_t max_index; -}; + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache)); + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) { + uint32_t value = 0; + char *p = NULL; + + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */ + if (strncmp(line, "PAT[", 4) == 0) { + bool is_reserved; + p = strstr(line, "("); + if (p && sscanf(p, "(%x", &value) == 1) { + if (parsed < XE_PAT_MAX_ENTRIES) { + is_reserved = strchr(line, '*') != NULL; + xe_pat_cache->entries[parsed].pat = value; + xe_pat_cache->entries[parsed].rsvd = is_reserved; + xe_pat_cache->max_index = parsed; + parsed++; + + igt_debug("Parsed PAT entry %d: 0x%08x%s\n", + parsed - 1, value, + is_reserved ? " (reserved)" : ""); + } else { + igt_warn("Too many PAT entries, line ignored: %s\n", line); + } + } else { + igt_warn("Failed to parse PAT entry line: %s\n", line); + } + } else if (strncmp(line, "PAT_MODE", 8) == 0) { + p = strstr(line, "("); + if (p && sscanf(p, "(%x", &value) == 1) + xe_pat_cache->pat_mode = value; + } else if (strncmp(line, "PAT_ATS", 7) == 0) { + p = strstr(line, "("); + if (p && sscanf(p, "(%x", &value) == 1) + xe_pat_cache->pat_ats = value; + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) { + p = strstr(line, "="); + if (p && sscanf(p, "= %d", &value) == 1) + xe_pat_cache->uc = value; + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) { + p = strstr(line, "="); + if (p && sscanf(p, "= %d", &value) == 1) + xe_pat_cache->wt = value; + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) { + p = strstr(line, "="); + if (p && sscanf(p, "= %d", &value) == 1) + xe_pat_cache->wb = value; + } else if (strncmp(line, "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) { + p = strstr(line, "="); + if (p && sscanf(p, "= %d", &value) == 1) + xe_pat_cache->uc_comp = value; + } + } + + free(line); + fclose(dbgfs_file); + cached_pat = *xe_pat_cache; + + return parsed; +} static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) { uint16_t dev_id = intel_get_drm_devid(fd); - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) { - pat->uc = 3; - pat->wb = 2; - pat->max_index = 31; - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 || - intel_get_device_info(dev_id)->graphics_ver == 20) { - pat->uc = 3; - pat->wt = 15; /* Compressed + WB-transient */ - pat->wb = 2; - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */ - pat->max_index = 31; - - /* Wa_16023588340: CLOS3 entries at end of table are unusable */ - if (intel_graphics_ver(dev_id) == IP_VER(20, 1)) - pat->max_index -= 4; + if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) { + struct xe_device *xe_dev = xe_device_get(fd); + *pat = xe_dev->pat_sw_config; } else if (IS_METEORLAKE(dev_id)) { pat->uc = 2; pat->wt = 1; diff --git a/lib/intel_pat.h b/lib/intel_pat.h index eb48cbc65..e9ade2e2e 100644 --- a/lib/intel_pat.h +++ b/lib/intel_pat.h @@ -6,9 +6,27 @@ #ifndef INTEL_PAT_H #define INTEL_PAT_H +#include <stdbool.h> #include <stdint.h> #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */ +#define XE_PAT_MAX_ENTRIES 32 + +struct xe_pat_entry { + uint32_t pat; + bool rsvd; +}; + +struct intel_pat_cache { + uint8_t uc; /* UC + COH_NONE */ + uint8_t wt; /* WT + COH_NONE */ + uint8_t wb; /* WB + COH_AT_LEAST_1WAY */ + uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/ + uint8_t max_index; + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES]; + uint32_t pat_mode; + uint32_t pat_ats; +}; uint8_t intel_get_max_pat_index(int fd); @@ -18,4 +36,6 @@ uint8_t intel_get_pat_idx_wb(int fd); uint8_t intel_get_pat_idx_uc_comp(int fd); +int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache); + #endif /* INTEL_PAT_H */ diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c index 53af86a99..ba4ca8aac 100644 --- a/lib/xe/xe_query.c +++ b/lib/xe/xe_query.c @@ -408,6 +408,10 @@ struct xe_device *xe_device_get(int fd) xe_dev->default_alignment = __mem_default_alignment(xe_dev->mem_regions); xe_dev->has_vram = __mem_has_vram(xe_dev->mem_regions); + /* Populate PAT software configuration */ + igt_require_f(xe_get_pat_sw_config(fd, &xe_dev->pat_sw_config) > 0, + "Unable to open the pat_sw_config file in debugfs.\n"); + /* We may get here from multiple threads, use first cached xe_dev */ pthread_mutex_lock(&cache.cache_mutex); prev = find_in_cache_unlocked(fd); diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h index 6a97d384a..8cf947a52 100644 --- a/lib/xe/xe_query.h +++ b/lib/xe/xe_query.h @@ -12,6 +12,7 @@ #include <stdint.h> #include <xe_drm.h> +#include "intel_pat.h" #include "igt_aux.h" #include "igt_list.h" #include "igt_sizes.h" @@ -74,6 +75,9 @@ struct xe_device { /** @dev_id: Device id of xe device */ uint16_t dev_id; + + /** @pat_sw_config: Xe PAT software configuration */ + struct intel_pat_cache pat_sw_config; }; #define xe_for_each_engine(__fd, __hwe) \ -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v5 1/2] lib/intel_pat: read Xe PAT config from debugfs 2025-12-11 19:30 ` [PATCH v5 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang @ 2025-12-17 7:02 ` Vodapalli, Ravi Kumar 0 siblings, 0 replies; 10+ messages in thread From: Vodapalli, Ravi Kumar @ 2025-12-17 7:02 UTC (permalink / raw) To: igt-dev On 12/12/2025 1:00 AM, Xin Wang wrote: > Parse the PAT software configuration from gt0/pat_sw_config instead > of relying on hard-coded indices. > > V2: (Kamil) > - Show a detailed skip info when opening the debugfs file fails. > V3: > - Save the Xe PAT software configuration into the xe_dev structure > to prevent scenarios where certain test cases drop root privileges > after execution begins, which could block access to debugfs. > V4: > - Cache the parsed PAT table the first time we read pat_sw_config > and reuse it for subsequent calls. This avoids repeated debugfs > opens (and failures) in tests that drop root between steps, while > still returning the correct PAT layout. > > CC: Shuicheng Lin <shuicheng.lin@intel.com> > CC: Kamil Konieczny <kamil.konieczny@intel.com> > CC: Matt Roper <matthew.d.roper@intel.com> > CC: Matthew Auld <matthew.auld@intel.com> > Signed-off-by: Xin Wang <x.wang@intel.com> Reviewed-by: Ravi Kumar V <ravi.kumar.vodapalli@intel.com> Regards, Ravi Kumar V > --- > lib/intel_pat.c | 121 +++++++++++++++++++++++++++++++++++++--------- > lib/intel_pat.h | 20 ++++++++ > lib/xe/xe_query.c | 4 ++ > lib/xe/xe_query.h | 4 ++ > 4 files changed, 126 insertions(+), 23 deletions(-) > > diff --git a/lib/intel_pat.c b/lib/intel_pat.c > index e3588110a..6a16d34cc 100644 > --- a/lib/intel_pat.c > +++ b/lib/intel_pat.c > @@ -3,37 +3,112 @@ > * Copyright © 2023 Intel Corporation > */ > > +#include "igt.h" > #include "intel_pat.h" > +#include "xe/xe_query.h" > + > +/** > + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration > + * from debugfs > + * > + * @drm_fd: DRM device fd to use with igt_debugfs_open > + * @xe_pat_cache: Pointer to a struct that will receive the parsed PAT configuration > + * > + * Returns: The number of PAT entries successfully read on success, or a negative error > + * code on failure (-ENOENT if debugfs is missing, -errno otherwise) > + */ > +int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache) > +{ > + char *line = NULL; > + size_t line_len = 0; > + ssize_t nread; > + int32_t parsed = 0; > + int dbgfs_fd; > + FILE *dbgfs_file = NULL; > + static __thread struct intel_pat_cache cached_pat; > + > + /* Return cached value if already read for this thread */ > + if (cached_pat.max_index != 0) { > + *xe_pat_cache = cached_pat; > + return cached_pat.max_index + 1; > + } > > -#include "igt.h" > + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config", O_RDONLY); > + if (dbgfs_fd < 0) > + return -ENOENT; > + dbgfs_file = fdopen(dbgfs_fd, "r"); > + if (!dbgfs_file) { > + close(dbgfs_fd); > + return -errno; > + } > > -struct intel_pat_cache { > - uint8_t uc; /* UC + COH_NONE */ > - uint8_t wt; /* WT + COH_NONE */ > - uint8_t wb; /* WB + COH_AT_LEAST_1WAY */ > - uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/ > - uint8_t max_index; > -}; > + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache)); > + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) { > + uint32_t value = 0; > + char *p = NULL; > + > + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */ > + if (strncmp(line, "PAT[", 4) == 0) { > + bool is_reserved; > + p = strstr(line, "("); > + if (p && sscanf(p, "(%x", &value) == 1) { > + if (parsed < XE_PAT_MAX_ENTRIES) { > + is_reserved = strchr(line, '*') != NULL; > + xe_pat_cache->entries[parsed].pat = value; > + xe_pat_cache->entries[parsed].rsvd = is_reserved; > + xe_pat_cache->max_index = parsed; > + parsed++; > + > + igt_debug("Parsed PAT entry %d: 0x%08x%s\n", > + parsed - 1, value, > + is_reserved ? " (reserved)" : ""); > + } else { > + igt_warn("Too many PAT entries, line ignored: %s\n", line); > + } > + } else { > + igt_warn("Failed to parse PAT entry line: %s\n", line); > + } > + } else if (strncmp(line, "PAT_MODE", 8) == 0) { > + p = strstr(line, "("); > + if (p && sscanf(p, "(%x", &value) == 1) > + xe_pat_cache->pat_mode = value; > + } else if (strncmp(line, "PAT_ATS", 7) == 0) { > + p = strstr(line, "("); > + if (p && sscanf(p, "(%x", &value) == 1) > + xe_pat_cache->pat_ats = value; > + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) { > + p = strstr(line, "="); > + if (p && sscanf(p, "= %d", &value) == 1) > + xe_pat_cache->uc = value; > + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) { > + p = strstr(line, "="); > + if (p && sscanf(p, "= %d", &value) == 1) > + xe_pat_cache->wt = value; > + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) { > + p = strstr(line, "="); > + if (p && sscanf(p, "= %d", &value) == 1) > + xe_pat_cache->wb = value; > + } else if (strncmp(line, "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) { > + p = strstr(line, "="); > + if (p && sscanf(p, "= %d", &value) == 1) > + xe_pat_cache->uc_comp = value; > + } > + } > + > + free(line); > + fclose(dbgfs_file); > + cached_pat = *xe_pat_cache; > + > + return parsed; > +} > > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) > { > uint16_t dev_id = intel_get_drm_devid(fd); > > - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) { > - pat->uc = 3; > - pat->wb = 2; > - pat->max_index = 31; > - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 || > - intel_get_device_info(dev_id)->graphics_ver == 20) { > - pat->uc = 3; > - pat->wt = 15; /* Compressed + WB-transient */ > - pat->wb = 2; > - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */ > - pat->max_index = 31; > - > - /* Wa_16023588340: CLOS3 entries at end of table are unusable */ > - if (intel_graphics_ver(dev_id) == IP_VER(20, 1)) > - pat->max_index -= 4; > + if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) { > + struct xe_device *xe_dev = xe_device_get(fd); > + *pat = xe_dev->pat_sw_config; > } else if (IS_METEORLAKE(dev_id)) { > pat->uc = 2; > pat->wt = 1; > diff --git a/lib/intel_pat.h b/lib/intel_pat.h > index eb48cbc65..e9ade2e2e 100644 > --- a/lib/intel_pat.h > +++ b/lib/intel_pat.h > @@ -6,9 +6,27 @@ > #ifndef INTEL_PAT_H > #define INTEL_PAT_H > > +#include <stdbool.h> > #include <stdint.h> > > #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */ > +#define XE_PAT_MAX_ENTRIES 32 > + > +struct xe_pat_entry { > + uint32_t pat; > + bool rsvd; > +}; > + > +struct intel_pat_cache { > + uint8_t uc; /* UC + COH_NONE */ > + uint8_t wt; /* WT + COH_NONE */ > + uint8_t wb; /* WB + COH_AT_LEAST_1WAY */ > + uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/ > + uint8_t max_index; > + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES]; > + uint32_t pat_mode; > + uint32_t pat_ats; > +}; > > uint8_t intel_get_max_pat_index(int fd); > > @@ -18,4 +36,6 @@ uint8_t intel_get_pat_idx_wb(int fd); > > uint8_t intel_get_pat_idx_uc_comp(int fd); > > +int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache); > + > #endif /* INTEL_PAT_H */ > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index 53af86a99..ba4ca8aac 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -408,6 +408,10 @@ struct xe_device *xe_device_get(int fd) > xe_dev->default_alignment = __mem_default_alignment(xe_dev->mem_regions); > xe_dev->has_vram = __mem_has_vram(xe_dev->mem_regions); > > + /* Populate PAT software configuration */ > + igt_require_f(xe_get_pat_sw_config(fd, &xe_dev->pat_sw_config) > 0, > + "Unable to open the pat_sw_config file in debugfs.\n"); > + > /* We may get here from multiple threads, use first cached xe_dev */ > pthread_mutex_lock(&cache.cache_mutex); > prev = find_in_cache_unlocked(fd); > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index 6a97d384a..8cf947a52 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -12,6 +12,7 @@ > #include <stdint.h> > #include <xe_drm.h> > > +#include "intel_pat.h" > #include "igt_aux.h" > #include "igt_list.h" > #include "igt_sizes.h" > @@ -74,6 +75,9 @@ struct xe_device { > > /** @dev_id: Device id of xe device */ > uint16_t dev_id; > + > + /** @pat_sw_config: Xe PAT software configuration */ > + struct intel_pat_cache pat_sw_config; > }; > > #define xe_for_each_engine(__fd, __hwe) \ ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v5 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang 2025-12-11 19:30 ` [PATCH v5 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang @ 2025-12-11 19:30 ` Xin Wang 2025-12-11 20:39 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) Patchwork ` (5 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Xin Wang @ 2025-12-11 19:30 UTC (permalink / raw) To: igt-dev; +Cc: alex.zuo, Xin Wang, Matthew Auld Pull in the Xe PAT table parsed by lib/intel_pat so Xe2+ tests use the driver-provided entries instead of hard-coded reservations. CC: Matthew Auld <matthew.auld@intel.com> Signed-off-by: Xin Wang <x.wang@intel.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> --- tests/intel/xe_pat.c | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c index 59dfb6b11..ef517e5f4 100644 --- a/tests/intel/xe_pat.c +++ b/tests/intel/xe_pat.c @@ -77,6 +77,18 @@ static void userptr_coh_none(int fd) xe_vm_destroy(fd, vm); } +#define BITS_TO(n) (n >= sizeof(long) * 8 ? ~0 : (1UL << (n)) - 1) +#define BITMASK(high, low) (uint32_t)(BITS_TO(high+1) & ~BITS_TO(low)) +#define FIELD_GET(val, high, low) (((val) & (BITMASK(high, low))) >> (low)) +#define FIELD_GET_BIT(val, n) FIELD_GET(val, n, n) + +#define XE_NO_PROMOTE(val) FIELD_GET_BIT(val, 10) +#define XE_COMP_EN(val) FIELD_GET_BIT(val, 9) +#define XE_L3_CLOS(val) FIELD_GET(val, 7, 6) +#define XE_L3_POLICY(val) FIELD_GET(val, 5, 4) +#define XE_L4_POLICY(val) FIELD_GET(val, 3, 2) +#define XE_COH_MODE(val) FIELD_GET(val, 1, 0) + /** * SUBTEST: pat-index-all * Test category: functionality test @@ -86,6 +98,7 @@ static void pat_index_all(int fd) { uint16_t dev_id = intel_get_drm_devid(fd); size_t size = xe_get_default_alignment(fd); + struct xe_pat_entry *xe_pat_table; uint32_t vm, bo; uint8_t pat_index; @@ -114,10 +127,31 @@ static void pat_index_all(int fd) igt_assert(intel_get_max_pat_index(fd)); + if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) { + /* Get the Xe PAT software configuration from the cached xe_dev structure */ + struct xe_device *xe_dev = xe_device_get(fd); + xe_pat_table = xe_dev->pat_sw_config.entries; + for (int i = 0; i < xe_dev->pat_sw_config.max_index + 1; i++) { + uint32_t pat = xe_pat_table[i].pat; + igt_debug("PAT[%2d] = [ %u, %u, %u, %u, %u, %u] (%#8x)%s\n", i, + XE_NO_PROMOTE(pat), + XE_COMP_EN(pat), + XE_L3_CLOS(pat), + XE_L3_POLICY(pat), + XE_L4_POLICY(pat), + XE_COH_MODE(pat), + pat, + xe_pat_table[i].rsvd ? " *" : ""); + } + } + for (pat_index = 0; pat_index <= intel_get_max_pat_index(fd); pat_index++) { - if (intel_get_device_info(dev_id)->graphics_ver >= 20 && - pat_index >= 16 && pat_index <= 19) { /* hw reserved */ + + bool hw_reserved = intel_graphics_ver(dev_id) >= IP_VER(20, 0) ? + xe_pat_table[pat_index].rsvd : false; + + if (hw_reserved) { igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x40000, size, DRM_XE_VM_BIND_OP_MAP, 0, NULL, 0, 0, pat_index, 0), -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang 2025-12-11 19:30 ` [PATCH v5 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang 2025-12-11 19:30 ` [PATCH v5 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang @ 2025-12-11 20:39 ` Patchwork 2025-12-11 20:41 ` ✗ i915.CI.BAT: failure " Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-12-11 20:39 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2058 bytes --] == Series Details == Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev8) URL : https://patchwork.freedesktop.org/series/157481/ State : success == Summary == CI Bug Log - changes from XEIGT_8664_BAT -> XEIGTPW_14194_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14194_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_waitfence@engine: - bat-dg2-oem2: [FAIL][1] ([Intel XE#6519]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/bat-dg2-oem2/igt@xe_waitfence@engine.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/bat-dg2-oem2/igt@xe_waitfence@engine.html * igt@xe_waitfence@reltime: - bat-dg2-oem2: [FAIL][3] ([Intel XE#6520]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/bat-dg2-oem2/igt@xe_waitfence@reltime.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/bat-dg2-oem2/igt@xe_waitfence@reltime.html [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * IGT: IGT_8664 -> IGTPW_14194 * Linux: xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b -> xe-4226-d8f645c04dad21f981669f0b65191cac664735f9 IGTPW_14194: e04429863fe16c0181390d206fe8c9ca7a526e11 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b xe-4226-d8f645c04dad21f981669f0b65191cac664735f9: d8f645c04dad21f981669f0b65191cac664735f9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/index.html [-- Attachment #2: Type: text/html, Size: 2668 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang ` (2 preceding siblings ...) 2025-12-11 20:39 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) Patchwork @ 2025-12-11 20:41 ` Patchwork 2025-12-12 0:51 ` ✗ i915.CI.BAT: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-12-11 20:41 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3094 bytes --] == Series Details == Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev8) URL : https://patchwork.freedesktop.org/series/157481/ State : failure == Summary == CI Bug Log - changes from IGT_8664 -> IGTPW_14194 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14194 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14194, 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_14194/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-glk-j4005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14194: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@perf: - bat-dg1-7: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-dg1-7/igt@i915_selftest@live@perf.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14194/bat-dg1-7/igt@i915_selftest@live@perf.html Known issues ------------ Here are the changes found in IGTPW_14194 that come from known issues: ### IGT changes ### #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][3] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][4] ([i915#12061] / [i915#13929]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-atsm-1/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14194/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][5] ([i915#14204]) -> [DMESG-FAIL][6] ([i915#13929]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-atsm-1/igt@i915_selftest@live@mman.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14194/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8664 -> IGTPW_14194 * Linux: CI_DRM_17659 -> CI_DRM_17665 CI-20190529: 20190529 CI_DRM_17659: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_17665: d8f645c04dad21f981669f0b65191cac664735f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14194: e04429863fe16c0181390d206fe8c9ca7a526e11 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14194/index.html [-- Attachment #2: Type: text/html, Size: 3990 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang ` (3 preceding siblings ...) 2025-12-11 20:41 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-12-12 0:51 ` Patchwork 2025-12-12 1:14 ` ✓ Xe.CI.BAT: success " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-12-12 0:51 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3589 bytes --] == Series Details == Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev9) URL : https://patchwork.freedesktop.org/series/157481/ State : failure == Summary == CI Bug Log - changes from IGT_8664 -> IGTPW_14196 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14196 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14196, 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_14196/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-glk-j4005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14196: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@workarounds: - bat-twl-1: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-twl-1/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14196/bat-twl-1/igt@i915_selftest@live@workarounds.html * igt@kms_busy@basic@flip: - bat-arlh-3: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-arlh-3/igt@kms_busy@basic@flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14196/bat-arlh-3/igt@kms_busy@basic@flip.html Known issues ------------ Here are the changes found in IGTPW_14196 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14196/bat-mtlp-8/igt@i915_selftest@live.html - bat-twl-1: [PASS][7] -> [DMESG-WARN][8] ([i915#14872]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-twl-1/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14196/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8664/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14196/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#14872]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14872 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8664 -> IGTPW_14196 * Linux: CI_DRM_17659 -> CI_DRM_17665 CI-20190529: 20190529 CI_DRM_17659: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_17665: d8f645c04dad21f981669f0b65191cac664735f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14196: a9daa9c2e464b008e4342020b887628fb4ad3f79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14196/index.html [-- Attachment #2: Type: text/html, Size: 4388 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang ` (4 preceding siblings ...) 2025-12-12 0:51 ` ✗ i915.CI.BAT: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) Patchwork @ 2025-12-12 1:14 ` Patchwork 2025-12-12 11:30 ` ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) Patchwork 2025-12-12 15:30 ` ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-12-12 1:14 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1680 bytes --] == Series Details == Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev9) URL : https://patchwork.freedesktop.org/series/157481/ State : success == Summary == CI Bug Log - changes from XEIGT_8664_BAT -> XEIGTPW_14196_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14196_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_waitfence@reltime: - bat-dg2-oem2: [FAIL][1] ([Intel XE#6520]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/bat-dg2-oem2/igt@xe_waitfence@reltime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/bat-dg2-oem2/igt@xe_waitfence@reltime.html [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * IGT: IGT_8664 -> IGTPW_14196 * Linux: xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b -> xe-4226-d8f645c04dad21f981669f0b65191cac664735f9 IGTPW_14196: a9daa9c2e464b008e4342020b887628fb4ad3f79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b xe-4226-d8f645c04dad21f981669f0b65191cac664735f9: d8f645c04dad21f981669f0b65191cac664735f9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/index.html [-- Attachment #2: Type: text/html, Size: 2256 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang ` (5 preceding siblings ...) 2025-12-12 1:14 ` ✓ Xe.CI.BAT: success " Patchwork @ 2025-12-12 11:30 ` Patchwork 2025-12-12 15:30 ` ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-12-12 11:30 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 44357 bytes --] == Series Details == Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev8) URL : https://patchwork.freedesktop.org/series/157481/ State : failure == Summary == CI Bug Log - changes from XEIGT_8664_FULL -> XEIGTPW_14194_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14194_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14194_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14194_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@forked-bo@all-pipes: - shard-bmg: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-1/igt@kms_cursor_legacy@forked-bo@all-pipes.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@kms_cursor_legacy@forked-bo@all-pipes.html Known issues ------------ Here are the changes found in XEIGTPW_14194_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: NOTRUN -> [FAIL][3] ([Intel XE#5993] / [Intel XE#6676]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][4] ([Intel XE#6676]) +4 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][5] ([Intel XE#5993]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2370]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +7 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#607]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#610]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#367]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#367]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2669]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +16 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3432]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2325]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +14 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3278]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6743]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_content_protection@dp-mst-suspend-resume.html - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6692]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@kms_content_protection@dp-mst-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2341]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1424]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2321]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@forked-bo: - shard-bmg: [PASS][34] -> [ABORT][35] ([Intel XE#5545]) +1 other test abort [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-1/igt@kms_cursor_legacy@forked-bo.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@kms_cursor_legacy@forked-bo.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2286]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1508]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1508]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4422]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#4422]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2375]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2374]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1421]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race@ad-dp2-hdmi-a3: - shard-bmg: [PASS][44] -> [FAIL][45] ([Intel XE#3650]) +3 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race@ad-dp2-hdmi-a3.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-modeset-vs-vblank-race@cd-dp2-hdmi-a3: - shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#3149] / [Intel XE#3650]) +1 other test fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race@cd-dp2-hdmi-a3.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race@cd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#301]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2293]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2380]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1401]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2311]) +36 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#4141]) +19 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#651]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2352]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#656]) +14 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2313]) +41 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2: - shard-bmg: [PASS][61] -> [ABORT][62] ([Intel XE#6740]) +1 other test abort [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [ABORT][63] ([Intel XE#6740]) +1 other test abort [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2501]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#5624]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#5020]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#5825]) +9 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#718]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2499]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1439] / [Intel XE#3141]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#1489]) +12 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#4609]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#2414]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1127]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2330]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1435]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@filter-formats: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#6503]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_sharpness_filter@filter-formats.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2426]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-dpms: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#1499]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#2142]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1091] / [Intel XE#2849]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_eudebug@connect-user: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-4/igt@xe_eudebug@connect-user.html * igt@xe_eudebug@discovery-race-sigint: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4837]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_eudebug_online@pagefault-write-stress: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#6665] / [Intel XE#6681]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@xe_eudebug_online@pagefault-write-stress.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@xe_eudebug_online@single-step.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#688]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2322]) +9 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1392]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_system_allocator@many-64k-malloc-prefetch-madvise: - shard-lnl: NOTRUN -> [WARN][97] ([Intel XE#5786]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@xe_exec_system_allocator@many-64k-malloc-prefetch-madvise.html * igt@xe_exec_system_allocator@many-64k-mmap-new-huge: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#5007]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html * igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4943]) +25 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4943]) +10 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6281]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2229]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#5100]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@xe_mmap@pci-membarrier.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2457]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@xe_module_load@force-load.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#1420]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2245]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2236]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2427]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@xe_peer2peer@write.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2284] / [Intel XE#366]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-3/igt@xe_pm@s4-d3cold-basic-exec.html - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2284]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#579]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-4/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pmu@all-fn-engine-activity-load: - shard-bmg: [PASS][112] -> [FAIL][113] ([Intel XE#5937]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-5/igt@xe_pmu@all-fn-engine-activity-load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@xe_pmu@all-fn-engine-activity-load.html * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0: - shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#6251]) +3 other tests fail [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html * igt@xe_pxp@pxp-optout: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#4733]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-2/igt@xe_pxp@pxp-optout.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#944]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4130]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-2/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][119] -> [FAIL][120] ([Intel XE#6569]) +1 other test fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html #### Possible fixes #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2: - shard-bmg: [FAIL][121] ([Intel XE#6173]) -> [PASS][122] +4 other tests pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][123] ([Intel XE#6715]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][125] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][126] +1 other test pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-bmg: [INCOMPLETE][127] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][128] +1 other test pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-3/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_hdr@bpc-switch@pipe-a-dp-2: - shard-bmg: [ABORT][129] ([Intel XE#6740]) -> [PASS][130] +3 other tests pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-5/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][131] ([Intel XE#718]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][133] ([Intel XE#4459]) -> [PASS][134] +1 other test pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][135] ([Intel XE#4227]) -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-4/igt@kms_vrr@flipline.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-1/igt@kms_vrr@flipline.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute: - shard-bmg: [ABORT][137] ([Intel XE#3970]) -> [PASS][138] +1 other test pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-5/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0: - shard-lnl: [FAIL][139] ([Intel XE#6251]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html #### Warnings #### * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][141] ([Intel XE#4633]) -> [FAIL][142] ([Intel XE#5299]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [FAIL][143] -> [SKIP][144] ([Intel XE#4141]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [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#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#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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [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#3650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3650 [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [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#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6173 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676 [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#6692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6692 [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715 [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740 [Intel XE#6743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6743 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8664 -> IGTPW_14194 * Linux: xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b -> xe-4226-d8f645c04dad21f981669f0b65191cac664735f9 IGTPW_14194: e04429863fe16c0181390d206fe8c9ca7a526e11 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b xe-4226-d8f645c04dad21f981669f0b65191cac664735f9: d8f645c04dad21f981669f0b65191cac664735f9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14194/index.html [-- Attachment #2: Type: text/html, Size: 49751 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang ` (6 preceding siblings ...) 2025-12-12 11:30 ` ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) Patchwork @ 2025-12-12 15:30 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-12-12 15:30 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 45387 bytes --] == Series Details == Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev9) URL : https://patchwork.freedesktop.org/series/157481/ State : failure == Summary == CI Bug Log - changes from XEIGT_8664_FULL -> XEIGTPW_14196_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14196_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14196_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14196_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_color@ctm-red-to-blue@pipe-b-dp-2: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-4/igt@kms_color@ctm-red-to-blue@pipe-b-dp-2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_color@ctm-red-to-blue@pipe-b-dp-2.html Known issues ------------ Here are the changes found in XEIGTPW_14196_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: NOTRUN -> [FAIL][3] ([Intel XE#5993] / [Intel XE#6676]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][4] ([Intel XE#6676]) +4 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][5] ([Intel XE#5993]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] ([Intel XE#6766] / [Intel XE#6819]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2370]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-2: - shard-bmg: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#6766]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-2.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-2.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#607]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#610]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#367]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#367]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2669]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +13 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3432]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2325]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#306]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2252]) +13 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color@ctm-red-to-blue@pipe-c-dp-2: - shard-bmg: [PASS][28] -> [FAIL][29] ([Intel XE#4445]) +2 other tests fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-4/igt@kms_color@ctm-red-to-blue@pipe-c-dp-2.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_color@ctm-red-to-blue@pipe-c-dp-2.html * igt@kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3278]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6743]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_content_protection@dp-mst-suspend-resume.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#6692]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@kms_content_protection@dp-mst-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2341]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2321]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#309]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [PASS][38] -> [FAIL][39] ([Intel XE#5299]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1508]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1508]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_fb_coherency@memset-crc: - shard-bmg: NOTRUN -> [CRASH][43] ([Intel XE#6706]) +1 other test crash [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-1/igt@kms_fb_coherency@memset-crc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#4422]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2375]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2374]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1421]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#301]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip@nonexisting-fb: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#3650]) +3 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_flip@nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2293]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2380]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1401]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +16 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2311]) +32 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4141]) +16 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#651]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2352]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2313]) +37 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2: - shard-bmg: [PASS][62] -> [ABORT][63] ([Intel XE#6740]) +1 other test abort [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [ABORT][64] ([Intel XE#6740]) +1 other test abort [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2501]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#5624]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#5624]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2393]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-x@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][69] ([Intel XE#4658]) +3 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@kms_plane_multiple@tiling-x@pipe-c-edp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#5020]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#5825]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2499]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1439] / [Intel XE#3141]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#4609]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2414]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1127]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2330]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1435]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#6503]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_vrr@flip-dpms: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1499]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#2142]) +1 other test fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1091] / [Intel XE#2849]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_eudebug@connect-user: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4837]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@xe_eudebug@connect-user.html * igt@xe_eudebug@discovery-race-sigint: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_eudebug_online@pagefault-write-stress: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#6665] / [Intel XE#6681]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@xe_eudebug_online@pagefault-write-stress.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@xe_eudebug_online@single-step.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html * igt@xe_evict@evict-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#688]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@xe_evict@evict-mixed-threads-large-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2322]) +8 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1392]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_system_allocator@many-64k-malloc-prefetch-madvise: - shard-lnl: NOTRUN -> [WARN][98] ([Intel XE#5786]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@xe_exec_system_allocator@many-64k-malloc-prefetch-madvise.html * igt@xe_exec_system_allocator@many-64k-mmap-new-huge: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#5007]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html * igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4943]) +24 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-free-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#4943]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6281]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2229]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2459] / [Intel XE#2596]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@xe_media_fill@media-fill.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#5100]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-1/igt@xe_mmap@pci-membarrier.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2457]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-2/igt@xe_module_load@force-load.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#1420]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2245]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2427]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@xe_peer2peer@write.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2284] / [Intel XE#366]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@xe_pm@s4-d3cold-basic-exec.html - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2284]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0: - shard-lnl: [PASS][112] -> [FAIL][113] ([Intel XE#6251]) +1 other test fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html * igt@xe_pxp@pxp-stale-bo-exec-post-rpm: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#4733]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#944]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#4130]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@xe_sriov_auto_provisioning@fair-allocation.html #### Possible fixes #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2: - shard-bmg: [FAIL][117] ([Intel XE#6173]) -> [PASS][118] +4 other tests pass [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][119] ([Intel XE#6715]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][121] ([Intel XE#4633]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][123] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-bmg: [INCOMPLETE][125] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][126] +1 other test pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-3/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][127] ([Intel XE#4459]) -> [PASS][128] +1 other test pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][129] ([Intel XE#4227]) -> [PASS][130] +1 other test pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-4/igt@kms_vrr@flipline.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_vrr@flipline.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute: - shard-bmg: [ABORT][131] ([Intel XE#3970]) -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-5/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-5/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][133] ([Intel XE#6321]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0: - shard-lnl: [FAIL][135] ([Intel XE#6251]) -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html #### Warnings #### * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: [SKIP][137] ([Intel XE#4354]) -> [FAIL][138] ([Intel XE#6793]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-5/igt@kms_dp_link_training@uhbr-sst.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][139] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][140] ([Intel XE#301]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [FAIL][141] -> [SKIP][142] ([Intel XE#4141]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][143] ([Intel XE#2426]) -> [SKIP][144] ([Intel XE#2509]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8664/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [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#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#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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [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#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [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#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [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#3650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3650 [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [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#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4445 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6173 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676 [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#6692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6692 [Intel XE#6706]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6706 [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715 [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740 [Intel XE#6743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6743 [Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766 [Intel XE#6793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6793 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8664 -> IGTPW_14196 * Linux: xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b -> xe-4226-d8f645c04dad21f981669f0b65191cac664735f9 IGTPW_14196: a9daa9c2e464b008e4342020b887628fb4ad3f79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b xe-4226-d8f645c04dad21f981669f0b65191cac664735f9: d8f645c04dad21f981669f0b65191cac664735f9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14196/index.html [-- Attachment #2: Type: text/html, Size: 50698 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-12-17 7:02 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-12-11 19:30 [PATCH v5 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang 2025-12-11 19:30 ` [PATCH v5 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang 2025-12-17 7:02 ` Vodapalli, Ravi Kumar 2025-12-11 19:30 ` [PATCH v5 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang 2025-12-11 20:39 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) Patchwork 2025-12-11 20:41 ` ✗ i915.CI.BAT: failure " Patchwork 2025-12-12 0:51 ` ✗ i915.CI.BAT: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) Patchwork 2025-12-12 1:14 ` ✓ Xe.CI.BAT: success " Patchwork 2025-12-12 11:30 ` ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev8) Patchwork 2025-12-12 15:30 ` ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev9) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).