* [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases
@ 2025-06-17 2:09 Matt Roper
2025-06-17 2:09 ` [PATCH v2 1/5] drm/xe: Export xe_step_name for kunit tests Matt Roper
` (8 more replies)
0 siblings, 9 replies; 13+ messages in thread
From: Matt Roper @ 2025-06-17 2:09 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
Today all of our platforms fall into one of three cases:
* Single tile platforms with a single (primary) GT
* Single tile platforms with two GTs (primary + media)
* Two-tile platforms with a single GT (primary) in each
Our numbering of GTs has been a bit inconsistent between platforms
(e.g., GT1 is the media GT on some platforms, but the second tile's
primary GT on others). In the future we'll likely have platforms that
are both multi-tile and multi-GT, which will make the situation more
confusing. We could also wind up with more than just two types of GTs
at some point in the future.
Going forward we should standardize the way we assign uapi GT IDs to
internal GT structures. Let's declare that for userspace GT ID n,
GT[n]'s tile = n / (max gt per tile)
GT[n]'s slot within tile = n % (max gt per tile)
If we allow 'max gt per tile' to vary by platform, we can support any
possible future tile/GT combinations (even if new types of GTs show up)
without changing any behavior of our existing platforms.
v2:
- Rebase on top of the latest xe_pci test updates from Michal. Convert
the kunit test into a parameterized test that will run against each
PCI ID supported by the driver.
Matt Roper (5):
drm/xe: Export xe_step_name for kunit tests
drm/xe: Track maximum GTs per tile on a per-platform basis
drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count
drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
drm/xe: Don't compare GT ID to GT count when determining valid GTs
drivers/gpu/drm/xe/tests/xe_pci.c | 31 ++++++++++++
drivers/gpu/drm/xe/tests/xe_pci_test.c | 12 +++++
drivers/gpu/drm/xe/tests/xe_pci_test.h | 1 +
drivers/gpu/drm/xe/xe_device.h | 47 ++++++++----------
drivers/gpu/drm/xe/xe_device_types.h | 2 +
drivers/gpu/drm/xe/xe_eu_stall.c | 6 ++-
drivers/gpu/drm/xe/xe_exec_queue.c | 2 +-
drivers/gpu/drm/xe/xe_hw_engine.c | 3 +-
drivers/gpu/drm/xe/xe_mmio.c | 8 ---
drivers/gpu/drm/xe/xe_pci.c | 68 ++++++++------------------
drivers/gpu/drm/xe/xe_pci_types.h | 40 +++++++++++++++
drivers/gpu/drm/xe/xe_pmu.c | 4 +-
drivers/gpu/drm/xe/xe_query.c | 2 +-
drivers/gpu/drm/xe/xe_step.c | 2 +
14 files changed, 140 insertions(+), 88 deletions(-)
--
2.49.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v2 1/5] drm/xe: Export xe_step_name for kunit tests
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
@ 2025-06-17 2:09 ` Matt Roper
2025-06-17 2:09 ` [PATCH v2 2/5] drm/xe: Track maximum GTs per tile on a per-platform basis Matt Roper
` (7 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Matt Roper @ 2025-06-17 2:09 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Michal Wajdeczko
xe_step_name() is used by xe_assert(), so adding assertions to functions
like xe_device_get_gt() will result in
ERROR: modpost: "xe_step_name" [drivers/gpu/drm/xe/tests/xe_test.ko] undefined!
while building the kunit tests. Export xe_step_name to avoid these
build failures when adding assertions.
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_step.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_step.c b/drivers/gpu/drm/xe/xe_step.c
index c77b5c317fa0..10e88f2c9615 100644
--- a/drivers/gpu/drm/xe/xe_step.c
+++ b/drivers/gpu/drm/xe/xe_step.c
@@ -5,6 +5,7 @@
#include "xe_step.h"
+#include <kunit/visibility.h>
#include <linux/bitfield.h>
#include "xe_device.h"
@@ -255,3 +256,4 @@ const char *xe_step_name(enum xe_step step)
return "**";
}
}
+EXPORT_SYMBOL_IF_KUNIT(xe_step_name);
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 2/5] drm/xe: Track maximum GTs per tile on a per-platform basis
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
2025-06-17 2:09 ` [PATCH v2 1/5] drm/xe: Export xe_step_name for kunit tests Matt Roper
@ 2025-06-17 2:09 ` Matt Roper
2025-06-17 2:09 ` [PATCH v2 3/5] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count Matt Roper
` (6 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Matt Roper @ 2025-06-17 2:09 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Lucas De Marchi
Today all of our platforms fall into one of three cases:
* Single tile platforms with a single (primary) GT
* Single tile platforms with two GTs (primary + media)
* Two-tile platforms with a single GT (primary) in each
Our numbering of GTs has been a bit inconsistent between platforms
(e.g., GT1 is the media GT on some platforms, but the second tile's
primary GT on others). In the future we'll likely have platforms that
are both multi-tile and multi-GT, which will make the situation more
confusing. We could also wind up with more than just two types of GTs
at some point in the future.
Going forward we should standardize the way we assign uapi GT IDs to
internal GT structures. Let's declare that for userspace GT ID n,
GT[n]'s tile = n / (max gt per tile)
GT[n]'s slot within tile = n % (max gt per tile)
We don't want the GT numbering to change for any of our current
platforms since the current IDs are part of our ABI contract with
userspace so this means we should track the 'max gt per tile' value on a
per-platform basis rather than just using a single value across the
driver. Encode this into device descriptors in xe_pci.c and use the
per-platform number for various checks in the code. Constant
XE_MAX_GT_PER_TILE will remain just as the maximum across all platforms
for easy of sizing array allocations.
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_device.h | 41 +++++++++++++---------------
drivers/gpu/drm/xe/xe_device_types.h | 2 ++
drivers/gpu/drm/xe/xe_pci.c | 18 ++++++++++++
drivers/gpu/drm/xe/xe_pmu.c | 4 ++-
drivers/gpu/drm/xe/xe_query.c | 2 +-
5 files changed, 43 insertions(+), 24 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index e4da797a984b..4e719d398c88 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -60,35 +60,32 @@ static inline struct xe_tile *xe_device_get_root_tile(struct xe_device *xe)
return &xe->tiles[0];
}
+/*
+ * Highest GT/tile count for any platform. Used only for memory allocation
+ * sizing. Any logic looping over GTs or mapping userspace GT IDs into GT
+ * structures should use the per-platform xe->info.max_gt_per_tile instead.
+ */
#define XE_MAX_GT_PER_TILE 2
-static inline struct xe_gt *xe_tile_get_gt(struct xe_tile *tile, u8 gt_id)
-{
- if (drm_WARN_ON(&tile_to_xe(tile)->drm, gt_id >= XE_MAX_GT_PER_TILE))
- gt_id = 0;
-
- return gt_id ? tile->media_gt : tile->primary_gt;
-}
-
static inline struct xe_gt *xe_device_get_gt(struct xe_device *xe, u8 gt_id)
{
- struct xe_tile *root_tile = xe_device_get_root_tile(xe);
+ struct xe_tile *tile;
struct xe_gt *gt;
- /*
- * FIXME: This only works for now because multi-tile and standalone
- * media are mutually exclusive on the platforms we have today.
- *
- * id => GT mapping may change once we settle on how we want to handle
- * our UAPI.
- */
- if (MEDIA_VER(xe) >= 13) {
- gt = xe_tile_get_gt(root_tile, gt_id);
- } else {
- if (drm_WARN_ON(&xe->drm, gt_id >= XE_MAX_TILES_PER_DEVICE))
- gt_id = 0;
+ if (gt_id >= xe->info.tile_count * xe->info.max_gt_per_tile)
+ return NULL;
- gt = xe->tiles[gt_id].primary_gt;
+ tile = &xe->tiles[gt_id / xe->info.max_gt_per_tile];
+ switch (gt_id % xe->info.max_gt_per_tile) {
+ default:
+ xe_assert(xe, false);
+ fallthrough;
+ case 0:
+ gt = tile->primary_gt;
+ break;
+ case 1:
+ gt = tile->media_gt;
+ break;
}
if (!gt)
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 003afb279a5e..96ef1faba743 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -293,6 +293,8 @@ struct xe_device {
u8 vram_flags;
/** @info.tile_count: Number of tiles */
u8 tile_count;
+ /** @info.max_gt_per_tile: Number of GT IDs allocated to each tile */
+ u8 max_gt_per_tile;
/** @info.gt_count: Total number of GTs for entire device */
u8 gt_count;
/** @info.vm_max_level: Max VM level */
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 5d24cc320d72..3b997c941bbc 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -57,6 +57,7 @@ struct xe_device_desc {
u8 dma_mask_size;
u8 max_remote_tiles:2;
+ u8 max_gt_per_tile:2;
u8 require_force_probe:1;
u8 is_dgfx:1;
@@ -205,6 +206,7 @@ static const struct xe_device_desc tgl_desc = {
.dma_mask_size = 39,
.has_display = true,
.has_llc = true,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -215,6 +217,7 @@ static const struct xe_device_desc rkl_desc = {
.dma_mask_size = 39,
.has_display = true,
.has_llc = true,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -228,6 +231,7 @@ static const struct xe_device_desc adl_s_desc = {
.has_display = true,
.has_llc = true,
.has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
+ .max_gt_per_tile = 1,
.require_force_probe = true,
.subplatforms = (const struct xe_subplatform_desc[]) {
{ XE_SUBPLATFORM_ALDERLAKE_S_RPLS, "RPLS", adls_rpls_ids },
@@ -245,6 +249,7 @@ static const struct xe_device_desc adl_p_desc = {
.has_display = true,
.has_llc = true,
.has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
+ .max_gt_per_tile = 1,
.require_force_probe = true,
.subplatforms = (const struct xe_subplatform_desc[]) {
{ XE_SUBPLATFORM_ALDERLAKE_P_RPLU, "RPLU", adlp_rplu_ids },
@@ -260,6 +265,7 @@ static const struct xe_device_desc adl_n_desc = {
.has_display = true,
.has_llc = true,
.has_sriov = IS_ENABLED(CONFIG_DRM_XE_DEBUG),
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -274,6 +280,7 @@ static const struct xe_device_desc dg1_desc = {
.dma_mask_size = 39,
.has_display = true,
.has_heci_gscfi = 1,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
};
@@ -296,6 +303,7 @@ static const struct xe_device_desc ats_m_desc = {
.pre_gmdid_graphics_ip = &graphics_ip_xehpg,
.pre_gmdid_media_ip = &media_ip_xehpm,
.dma_mask_size = 46,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
DG2_FEATURES,
@@ -307,6 +315,7 @@ static const struct xe_device_desc dg2_desc = {
.pre_gmdid_graphics_ip = &graphics_ip_xehpg,
.pre_gmdid_media_ip = &media_ip_xehpm,
.dma_mask_size = 46,
+ .max_gt_per_tile = 1,
.require_force_probe = true,
DG2_FEATURES,
@@ -322,6 +331,7 @@ static const __maybe_unused struct xe_device_desc pvc_desc = {
.dma_mask_size = 52,
.has_display = false,
.has_heci_gscfi = 1,
+ .max_gt_per_tile = 1,
.max_remote_tiles = 1,
.require_force_probe = true,
.has_mbx_power_limits = false,
@@ -334,6 +344,7 @@ static const struct xe_device_desc mtl_desc = {
.dma_mask_size = 46,
.has_display = true,
.has_pxp = true,
+ .max_gt_per_tile = 2,
};
static const struct xe_device_desc lnl_desc = {
@@ -341,6 +352,7 @@ static const struct xe_device_desc lnl_desc = {
.dma_mask_size = 46,
.has_display = true,
.has_pxp = true,
+ .max_gt_per_tile = 2,
.needs_scratch = true,
};
@@ -352,6 +364,7 @@ static const struct xe_device_desc bmg_desc = {
.has_fan_control = true,
.has_mbx_power_limits = true,
.has_heci_cscfi = 1,
+ .max_gt_per_tile = 2,
.needs_scratch = true,
};
@@ -360,6 +373,7 @@ static const struct xe_device_desc ptl_desc = {
.dma_mask_size = 46,
.has_display = true,
.has_sriov = true,
+ .max_gt_per_tile = 2,
.require_force_probe = true,
.needs_scratch = true,
};
@@ -608,6 +622,10 @@ static int xe_info_init_early(struct xe_device *xe,
xe->info.probe_display = IS_ENABLED(CONFIG_DRM_XE_DISPLAY) &&
xe_modparam.probe_display &&
desc->has_display;
+
+ xe_assert(xe, desc->max_gt_per_tile > 0);
+ xe_assert(xe, desc->max_gt_per_tile <= XE_MAX_GT_PER_TILE);
+ xe->info.max_gt_per_tile = desc->max_gt_per_tile;
xe->info.tile_count = 1 + desc->max_remote_tiles;
err = xe_tile_init_early(xe_device_get_root_tile(xe), xe, 0);
diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
index 69df0e3520a5..94a8e1db71e4 100644
--- a/drivers/gpu/drm/xe/xe_pmu.c
+++ b/drivers/gpu/drm/xe/xe_pmu.c
@@ -160,7 +160,9 @@ static bool event_gt_forcewake(struct perf_event *event)
static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
unsigned int id)
{
- if (gt >= XE_MAX_GT_PER_TILE)
+ struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
+
+ if (gt >= xe->info.max_gt_per_tile)
return false;
return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
index 2dbf4066d86f..6220a5a36b83 100644
--- a/drivers/gpu/drm/xe/xe_query.c
+++ b/drivers/gpu/drm/xe/xe_query.c
@@ -141,7 +141,7 @@ query_engine_cycles(struct xe_device *xe,
return -EINVAL;
eci = &resp.eci;
- if (eci->gt_id >= XE_MAX_GT_PER_TILE)
+ if (eci->gt_id >= xe->info.max_gt_per_tile)
return -EINVAL;
gt = xe_device_get_gt(xe, eci->gt_id);
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 3/5] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
2025-06-17 2:09 ` [PATCH v2 1/5] drm/xe: Export xe_step_name for kunit tests Matt Roper
2025-06-17 2:09 ` [PATCH v2 2/5] drm/xe: Track maximum GTs per tile on a per-platform basis Matt Roper
@ 2025-06-17 2:09 ` Matt Roper
2025-06-25 11:31 ` Vodapalli, Ravi Kumar
2025-06-17 2:09 ` [PATCH v2 4/5] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms Matt Roper
` (5 subsequent siblings)
8 siblings, 1 reply; 13+ messages in thread
From: Matt Roper @ 2025-06-17 2:09 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper, Michal Wajdeczko
Add a simple kunit test to ensure each platform's GT per tile count is
non-zero and does not exceed the global XE_MAX_GT_PER_TILE definition.
We need to move 'struct xe_subplatform_desc' from the .c file to the
types header to ensure it is accessible from the kunit test.
v2:
- Rebase on latest xe_pci test rework from Michal and convert to
a parameterized test that runs on each PCI ID supported by the
driver.
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/tests/xe_pci.c | 31 ++++++++++++++++++++
drivers/gpu/drm/xe/tests/xe_pci_test.c | 12 ++++++++
drivers/gpu/drm/xe/tests/xe_pci_test.h | 1 +
drivers/gpu/drm/xe/xe_pci.c | 38 ------------------------
drivers/gpu/drm/xe/xe_pci_types.h | 40 ++++++++++++++++++++++++++
5 files changed, 84 insertions(+), 38 deletions(-)
diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
index baccb657bd05..9c715e59f030 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci.c
+++ b/drivers/gpu/drm/xe/tests/xe_pci.c
@@ -21,6 +21,18 @@ static void xe_ip_kunit_desc(const struct xe_ip *param, char *desc)
KUNIT_ARRAY_PARAM(graphics_ip, graphics_ips, xe_ip_kunit_desc);
KUNIT_ARRAY_PARAM(media_ip, media_ips, xe_ip_kunit_desc);
+static void xe_pci_id_kunit_desc(const struct pci_device_id *param, char *desc)
+{
+ const struct xe_device_desc *dev_desc =
+ (const struct xe_device_desc *)param->driver_data;
+
+ if (dev_desc)
+ snprintf(desc, KUNIT_PARAM_DESC_SIZE, "0x%X (%s)",
+ param->device, dev_desc->platform_name);
+}
+
+KUNIT_ARRAY_PARAM(pci_id, pciidlist, xe_pci_id_kunit_desc);
+
/**
* xe_pci_graphics_ip_gen_param - Generate graphics struct xe_ip parameters
* @prev: the pointer to the previous parameter to iterate from or NULL
@@ -55,6 +67,25 @@ const void *xe_pci_media_ip_gen_param(const void *prev, char *desc)
}
EXPORT_SYMBOL_IF_KUNIT(xe_pci_media_ip_gen_param);
+/**
+ * xe_pci_id_gen_param - Generate struct pci_device_id parameters
+ * @prev: the pointer to the previous parameter to iterate from or NULL
+ * @desc: output buffer with minimum size of KUNIT_PARAM_DESC_SIZE
+ *
+ * This function prepares struct pci_device_id parameter.
+ *
+ * To be used only as a parameter generator function in &KUNIT_CASE_PARAM.
+ *
+ * Return: pointer to the next parameter or NULL if no more parameters
+ */
+const void *xe_pci_id_gen_param(const void *prev, char *desc)
+{
+ const struct pci_device_id *pci = pci_id_gen_params(prev, desc);
+
+ return pci->driver_data ? pci : NULL;
+}
+EXPORT_SYMBOL_IF_KUNIT(xe_pci_id_gen_param);
+
static void fake_read_gmdid(struct xe_device *xe, enum xe_gmdid_type type,
u32 *ver, u32 *revid)
{
diff --git a/drivers/gpu/drm/xe/tests/xe_pci_test.c b/drivers/gpu/drm/xe/tests/xe_pci_test.c
index 95fed41f7ff2..37b344df2dc3 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci_test.c
+++ b/drivers/gpu/drm/xe/tests/xe_pci_test.c
@@ -44,9 +44,21 @@ static void check_media_ip(struct kunit *test)
KUNIT_ASSERT_EQ(test, mask, 0);
}
+static void check_platform_gt_count(struct kunit *test)
+{
+ const struct pci_device_id *pci = test->param_value;
+ const struct xe_device_desc *desc =
+ (const struct xe_device_desc *)pci->driver_data;
+ int max_gt = desc->max_gt_per_tile;
+
+ KUNIT_ASSERT_GT(test, max_gt, 0);
+ KUNIT_ASSERT_LE(test, max_gt, XE_MAX_GT_PER_TILE);
+}
+
static struct kunit_case xe_pci_tests[] = {
KUNIT_CASE_PARAM(check_graphics_ip, xe_pci_graphics_ip_gen_param),
KUNIT_CASE_PARAM(check_media_ip, xe_pci_media_ip_gen_param),
+ KUNIT_CASE_PARAM(check_platform_gt_count, xe_pci_id_gen_param),
{}
};
diff --git a/drivers/gpu/drm/xe/tests/xe_pci_test.h b/drivers/gpu/drm/xe/tests/xe_pci_test.h
index 3a1df7a5e291..ce4d2b86b778 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci_test.h
+++ b/drivers/gpu/drm/xe/tests/xe_pci_test.h
@@ -27,6 +27,7 @@ int xe_pci_fake_device_init(struct xe_device *xe);
const void *xe_pci_graphics_ip_gen_param(const void *prev, char *desc);
const void *xe_pci_media_ip_gen_param(const void *prev, char *desc);
+const void *xe_pci_id_gen_param(const void *prev, char *desc);
const void *xe_pci_live_device_gen_param(const void *prev, char *desc);
#endif
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 3b997c941bbc..a4885f64c2c4 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -38,44 +38,6 @@ enum toggle_d3cold {
D3COLD_ENABLE,
};
-struct xe_subplatform_desc {
- enum xe_subplatform subplatform;
- const char *name;
- const u16 *pciidlist;
-};
-
-struct xe_device_desc {
- /* Should only ever be set for platforms without GMD_ID */
- const struct xe_ip *pre_gmdid_graphics_ip;
- /* Should only ever be set for platforms without GMD_ID */
- const struct xe_ip *pre_gmdid_media_ip;
-
- const char *platform_name;
- const struct xe_subplatform_desc *subplatforms;
-
- enum xe_platform platform;
-
- u8 dma_mask_size;
- u8 max_remote_tiles:2;
- u8 max_gt_per_tile:2;
-
- u8 require_force_probe:1;
- u8 is_dgfx:1;
-
- u8 has_display:1;
- u8 has_fan_control:1;
- u8 has_heci_gscfi:1;
- u8 has_heci_cscfi:1;
- u8 has_llc:1;
- u8 has_mbx_power_limits:1;
- u8 has_pxp:1;
- u8 has_sriov:1;
- u8 needs_scratch:1;
- u8 skip_guc_pc:1;
- u8 skip_mtcfg:1;
- u8 skip_pcode:1;
-};
-
__diag_push();
__diag_ignore_all("-Woverride-init", "Allow field overrides in table");
diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
index ca6b10d35573..e4bfbafa6809 100644
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@ -8,6 +8,46 @@
#include <linux/types.h>
+#include "xe_platform_types.h"
+
+struct xe_subplatform_desc {
+ enum xe_subplatform subplatform;
+ const char *name;
+ const u16 *pciidlist;
+};
+
+struct xe_device_desc {
+ /* Should only ever be set for platforms without GMD_ID */
+ const struct xe_ip *pre_gmdid_graphics_ip;
+ /* Should only ever be set for platforms without GMD_ID */
+ const struct xe_ip *pre_gmdid_media_ip;
+
+ const char *platform_name;
+ const struct xe_subplatform_desc *subplatforms;
+
+ enum xe_platform platform;
+
+ u8 dma_mask_size;
+ u8 max_remote_tiles:2;
+ u8 max_gt_per_tile:2;
+
+ u8 require_force_probe:1;
+ u8 is_dgfx:1;
+
+ u8 has_display:1;
+ u8 has_fan_control:1;
+ u8 has_heci_gscfi:1;
+ u8 has_heci_cscfi:1;
+ u8 has_llc:1;
+ u8 has_mbx_power_limits:1;
+ u8 has_pxp:1;
+ u8 has_sriov:1;
+ u8 needs_scratch:1;
+ u8 skip_guc_pc:1;
+ u8 skip_mtcfg:1;
+ u8 skip_pcode:1;
+};
+
struct xe_graphics_desc {
u8 va_bits;
u8 vm_max_level;
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 4/5] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
` (2 preceding siblings ...)
2025-06-17 2:09 ` [PATCH v2 3/5] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count Matt Roper
@ 2025-06-17 2:09 ` Matt Roper
2025-06-25 11:41 ` Vodapalli, Ravi Kumar
2025-06-17 2:09 ` [PATCH v2 5/5] drm/xe: Don't compare GT ID to GT count when determining valid GTs Matt Roper
` (4 subsequent siblings)
8 siblings, 1 reply; 13+ messages in thread
From: Matt Roper @ 2025-06-17 2:09 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
Although "multi-tile" and "multiple GTs per tile" are mutually-exclusive
characteristics on all of our platforms today, this may not always be
true. Assign GT IDs according to xe->info.max_gt_per_tile in a way that
should work even if future platforms have different configurations.
This patch should not change the behavior of current platforms; it only
future-proofs for potential future designs.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_mmio.c | 8 --------
drivers/gpu/drm/xe/xe_pci.c | 14 ++++----------
2 files changed, 4 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
index 7357458bc0d2..b65d888ee8e4 100644
--- a/drivers/gpu/drm/xe/xe_mmio.c
+++ b/drivers/gpu/drm/xe/xe_mmio.c
@@ -82,14 +82,6 @@ static void mmio_multi_tile_setup(struct xe_device *xe, size_t tile_mmio_size)
drm_info(&xe->drm, "tile_count: %d, reduced_tile_count %d\n",
xe->info.tile_count, tile_count);
xe->info.tile_count = tile_count;
-
- /*
- * FIXME: Needs some work for standalone media, but
- * should be impossible with multi-tile for now:
- * multi-tile platform with standalone media doesn't
- * exist
- */
- xe->info.gt_count = xe->info.tile_count;
}
}
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index a4885f64c2c4..b29252abbf3e 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -687,10 +687,11 @@ static int xe_info_init(struct xe_device *xe,
*/
for_each_tile(tile, xe, id) {
gt = tile->primary_gt;
- gt->info.id = xe->info.gt_count++;
gt->info.type = XE_GT_TYPE_MAIN;
+ gt->info.id = tile->id * xe->info.max_gt_per_tile;
gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
gt->info.engine_mask = graphics_desc->hw_engine_mask;
+ xe->info.gt_count++;
if (MEDIA_VER(xe) < 13 && media_desc)
gt->info.engine_mask |= media_desc->hw_engine_mask;
@@ -708,17 +709,10 @@ static int xe_info_init(struct xe_device *xe,
gt = tile->media_gt;
gt->info.type = XE_GT_TYPE_MEDIA;
+ gt->info.id = tile->id * xe->info.max_gt_per_tile + 1;
gt->info.has_indirect_ring_state = media_desc->has_indirect_ring_state;
gt->info.engine_mask = media_desc->hw_engine_mask;
-
- /*
- * FIXME: At the moment multi-tile and standalone media are
- * mutually exclusive on current platforms. We'll need to
- * come up with a better way to number GTs if we ever wind
- * up with platforms that support both together.
- */
- drm_WARN_ON(&xe->drm, id != 0);
- gt->info.id = xe->info.gt_count++;
+ xe->info.gt_count++;
}
return 0;
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 5/5] drm/xe: Don't compare GT ID to GT count when determining valid GTs
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
` (3 preceding siblings ...)
2025-06-17 2:09 ` [PATCH v2 4/5] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms Matt Roper
@ 2025-06-17 2:09 ` Matt Roper
2025-06-17 2:16 ` ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev2) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Matt Roper @ 2025-06-17 2:09 UTC (permalink / raw)
To: intel-xe; +Cc: matthew.d.roper
On current platforms with multiple GTs, all of the GT IDs are
consecutive; as a result we know that the GT IDs range from 0 to
gt_count-1 and can determine if a GT ID is valid by comparing against
the count. The consecutive nature of GT IDs may not hold true on future
platforms if/when we have platforms that are both multi-tile and have
multiple GTs within each tile. Once such platforms exist, it's quite
possible that we could wind up with something like a GT list composed of
IDs 0, 2, and 3 with no GT 1 (which would be a 2-tile platform with
media only on the second tile).
To future-proof the code we should stop comparing against the GT count
to determine whether a GT ID is valid or not. Instead we should do an
actual lookup of the ID to determine whether the GT exists. This also
means that our GT loop macro should not end at the GT count, but should
rather examine the entire space up to (# of tiles) * (max GT per tile)
to ensure it doesn't stop prematurely.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_device.h | 6 +-----
drivers/gpu/drm/xe/xe_eu_stall.c | 6 ++++--
drivers/gpu/drm/xe/xe_exec_queue.c | 2 +-
drivers/gpu/drm/xe/xe_hw_engine.c | 3 ++-
4 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index 4e719d398c88..f0eb8150f185 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -127,12 +127,8 @@ static inline bool xe_device_uc_enabled(struct xe_device *xe)
for ((id__) = 1; (id__) < (xe__)->info.tile_count; (id__)++) \
for_each_if((tile__) = &(xe__)->tiles[(id__)])
-/*
- * FIXME: This only works for now since multi-tile and standalone media
- * happen to be mutually exclusive. Future platforms may change this...
- */
#define for_each_gt(gt__, xe__, id__) \
- for ((id__) = 0; (id__) < (xe__)->info.gt_count; (id__)++) \
+ for ((id__) = 0; (id__) < (xe__)->info.tile_count * (xe__)->info.max_gt_per_tile; (id__)++) \
for_each_if((gt__) = xe_device_get_gt((xe__), (id__)))
static inline struct xe_force_wake *gt_to_fw(struct xe_gt *gt)
diff --git a/drivers/gpu/drm/xe/xe_eu_stall.c b/drivers/gpu/drm/xe/xe_eu_stall.c
index 96732613b4b7..af7916315ac6 100644
--- a/drivers/gpu/drm/xe/xe_eu_stall.c
+++ b/drivers/gpu/drm/xe/xe_eu_stall.c
@@ -258,11 +258,13 @@ static int set_prop_eu_stall_wait_num_reports(struct xe_device *xe, u64 value,
static int set_prop_eu_stall_gt_id(struct xe_device *xe, u64 value,
struct eu_stall_open_properties *props)
{
- if (value >= xe->info.gt_count) {
+ struct xe_gt *gt = xe_device_get_gt(xe, value);
+
+ if (!gt) {
drm_dbg(&xe->drm, "Invalid GT ID %llu for EU stall sampling\n", value);
return -EINVAL;
}
- props->gt = xe_device_get_gt(xe, value);
+ props->gt = gt;
return 0;
}
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index fee22358cc09..8991b4aed440 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -610,7 +610,7 @@ int xe_exec_queue_create_ioctl(struct drm_device *dev, void *data,
if (XE_IOCTL_DBG(xe, err))
return -EFAULT;
- if (XE_IOCTL_DBG(xe, eci[0].gt_id >= xe->info.gt_count))
+ if (XE_IOCTL_DBG(xe, !xe_device_get_gt(xe, eci[0].gt_id)))
return -EINVAL;
if (args->flags & DRM_XE_EXEC_QUEUE_LOW_LATENCY_HINT)
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index 3439c8522d01..796ba8c34a16 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -1059,12 +1059,13 @@ struct xe_hw_engine *
xe_hw_engine_lookup(struct xe_device *xe,
struct drm_xe_engine_class_instance eci)
{
+ struct xe_gt *gt = xe_device_get_gt(xe, eci.gt_id);
unsigned int idx;
if (eci.engine_class >= ARRAY_SIZE(user_to_xe_engine_class))
return NULL;
- if (eci.gt_id >= xe->info.gt_count)
+ if (!gt)
return NULL;
idx = array_index_nospec(eci.engine_class,
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev2)
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
` (4 preceding siblings ...)
2025-06-17 2:09 ` [PATCH v2 5/5] drm/xe: Don't compare GT ID to GT count when determining valid GTs Matt Roper
@ 2025-06-17 2:16 ` Patchwork
2025-06-17 2:17 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-17 2:16 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev2)
URL : https://patchwork.freedesktop.org/series/150192/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit e22f9ec125d19353d6479a2f0fda97e0ef6a3c25
Author: Matt Roper <matthew.d.roper@intel.com>
Date: Mon Jun 16 19:09:12 2025 -0700
drm/xe: Don't compare GT ID to GT count when determining valid GTs
On current platforms with multiple GTs, all of the GT IDs are
consecutive; as a result we know that the GT IDs range from 0 to
gt_count-1 and can determine if a GT ID is valid by comparing against
the count. The consecutive nature of GT IDs may not hold true on future
platforms if/when we have platforms that are both multi-tile and have
multiple GTs within each tile. Once such platforms exist, it's quite
possible that we could wind up with something like a GT list composed of
IDs 0, 2, and 3 with no GT 1 (which would be a 2-tile platform with
media only on the second tile).
To future-proof the code we should stop comparing against the GT count
to determine whether a GT ID is valid or not. Instead we should do an
actual lookup of the ID to determine whether the GT exists. This also
means that our GT loop macro should not end at the GT count, but should
rather examine the entire space up to (# of tiles) * (max GT per tile)
to ensure it doesn't stop prematurely.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
+ /mt/dim checkpatch 6f72990d9e0fe084afe257621edd730444a8bc52 drm-intel
fca05c6071bd drm/xe: Export xe_step_name for kunit tests
-:9: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#9:
ERROR: modpost: "xe_step_name" [drivers/gpu/drm/xe/tests/xe_test.ko] undefined!
total: 0 errors, 1 warnings, 0 checks, 11 lines checked
93e18324e827 drm/xe: Track maximum GTs per tile on a per-platform basis
00dc331e4da6 drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count
4d65e1df3957 drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
e22f9ec125d1 drm/xe: Don't compare GT ID to GT count when determining valid GTs
-:40: WARNING:LONG_LINE: line length of 101 exceeds 100 columns
#40: FILE: drivers/gpu/drm/xe/xe_device.h:131:
+ for ((id__) = 0; (id__) < (xe__)->info.tile_count * (xe__)->info.max_gt_per_tile; (id__)++) \
total: 0 errors, 1 warnings, 0 checks, 50 lines checked
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for Future-proof for multi-tile + multi-GT cases (rev2)
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
` (5 preceding siblings ...)
2025-06-17 2:16 ` ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev2) Patchwork
@ 2025-06-17 2:17 ` Patchwork
2025-06-17 2:57 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-06-17 12:44 ` ✗ Xe.CI.Full: " Patchwork
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-17 2:17 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev2)
URL : https://patchwork.freedesktop.org/series/150192/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[02:16:09] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:16:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[02:16:40] Starting KUnit Kernel (1/1)...
[02:16:40] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:16:41] ================== guc_buf (11 subtests) ===================
[02:16:41] [PASSED] test_smallest
[02:16:41] [PASSED] test_largest
[02:16:41] [PASSED] test_granular
[02:16:41] [PASSED] test_unique
[02:16:41] [PASSED] test_overlap
[02:16:41] [PASSED] test_reusable
[02:16:41] [PASSED] test_too_big
[02:16:41] [PASSED] test_flush
[02:16:41] [PASSED] test_lookup
[02:16:41] [PASSED] test_data
[02:16:41] [PASSED] test_class
[02:16:41] ===================== [PASSED] guc_buf =====================
[02:16:41] =================== guc_dbm (7 subtests) ===================
[02:16:41] [PASSED] test_empty
[02:16:41] [PASSED] test_default
[02:16:41] ======================== test_size ========================
[02:16:41] [PASSED] 4
[02:16:41] [PASSED] 8
[02:16:41] [PASSED] 32
[02:16:41] [PASSED] 256
[02:16:41] ==================== [PASSED] test_size ====================
[02:16:41] ======================= test_reuse ========================
[02:16:41] [PASSED] 4
[02:16:41] [PASSED] 8
[02:16:41] [PASSED] 32
[02:16:41] [PASSED] 256
[02:16:41] =================== [PASSED] test_reuse ====================
[02:16:41] =================== test_range_overlap ====================
[02:16:41] [PASSED] 4
[02:16:41] [PASSED] 8
[02:16:41] [PASSED] 32
[02:16:41] [PASSED] 256
[02:16:41] =============== [PASSED] test_range_overlap ================
[02:16:41] =================== test_range_compact ====================
[02:16:41] [PASSED] 4
[02:16:41] [PASSED] 8
[02:16:41] [PASSED] 32
[02:16:41] [PASSED] 256
[02:16:41] =============== [PASSED] test_range_compact ================
[02:16:41] ==================== test_range_spare =====================
[02:16:41] [PASSED] 4
[02:16:41] [PASSED] 8
[02:16:41] [PASSED] 32
[02:16:41] [PASSED] 256
[02:16:41] ================ [PASSED] test_range_spare =================
[02:16:41] ===================== [PASSED] guc_dbm =====================
[02:16:41] =================== guc_idm (6 subtests) ===================
[02:16:41] [PASSED] bad_init
[02:16:41] [PASSED] no_init
[02:16:41] [PASSED] init_fini
[02:16:41] [PASSED] check_used
[02:16:41] [PASSED] check_quota
[02:16:41] [PASSED] check_all
[02:16:41] ===================== [PASSED] guc_idm =====================
[02:16:41] ================== no_relay (3 subtests) ===================
[02:16:41] [PASSED] xe_drops_guc2pf_if_not_ready
[02:16:41] [PASSED] xe_drops_guc2vf_if_not_ready
[02:16:41] [PASSED] xe_rejects_send_if_not_ready
[02:16:41] ==================== [PASSED] no_relay =====================
[02:16:41] ================== pf_relay (14 subtests) ==================
[02:16:41] [PASSED] pf_rejects_guc2pf_too_short
[02:16:41] [PASSED] pf_rejects_guc2pf_too_long
[02:16:41] [PASSED] pf_rejects_guc2pf_no_payload
[02:16:41] [PASSED] pf_fails_no_payload
[02:16:41] [PASSED] pf_fails_bad_origin
[02:16:41] [PASSED] pf_fails_bad_type
[02:16:41] [PASSED] pf_txn_reports_error
[02:16:41] [PASSED] pf_txn_sends_pf2guc
[02:16:41] [PASSED] pf_sends_pf2guc
[02:16:41] [SKIPPED] pf_loopback_nop
[02:16:41] [SKIPPED] pf_loopback_echo
[02:16:41] [SKIPPED] pf_loopback_fail
[02:16:41] [SKIPPED] pf_loopback_busy
[02:16:41] [SKIPPED] pf_loopback_retry
[02:16:41] ==================== [PASSED] pf_relay =====================
[02:16:41] ================== vf_relay (3 subtests) ===================
[02:16:41] [PASSED] vf_rejects_guc2vf_too_short
[02:16:41] [PASSED] vf_rejects_guc2vf_too_long
[02:16:41] [PASSED] vf_rejects_guc2vf_no_payload
[02:16:41] ==================== [PASSED] vf_relay =====================
[02:16:41] ================= pf_service (11 subtests) =================
[02:16:41] [PASSED] pf_negotiate_any
[02:16:41] [PASSED] pf_negotiate_base_match
[02:16:41] [PASSED] pf_negotiate_base_newer
[02:16:41] [PASSED] pf_negotiate_base_next
[02:16:41] [SKIPPED] pf_negotiate_base_older
[02:16:41] [PASSED] pf_negotiate_base_prev
[02:16:41] [PASSED] pf_negotiate_latest_match
[02:16:41] [PASSED] pf_negotiate_latest_newer
[02:16:41] [PASSED] pf_negotiate_latest_next
[02:16:41] [SKIPPED] pf_negotiate_latest_older
[02:16:41] [SKIPPED] pf_negotiate_latest_prev
[02:16:41] =================== [PASSED] pf_service ====================
[02:16:41] ===================== lmtt (1 subtest) =====================
[02:16:41] ======================== test_ops =========================
[02:16:41] [PASSED] 2-level
[02:16:41] [PASSED] multi-level
[02:16:41] ==================== [PASSED] test_ops =====================
[02:16:41] ====================== [PASSED] lmtt =======================
[02:16:41] =================== xe_mocs (2 subtests) ===================
[02:16:41] ================ xe_live_mocs_kernel_kunit ================
[02:16:41] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[02:16:41] ================ xe_live_mocs_reset_kunit =================
[02:16:41] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[02:16:41] ==================== [SKIPPED] xe_mocs =====================
[02:16:41] ================= xe_migrate (2 subtests) ==================
[02:16:41] ================= xe_migrate_sanity_kunit =================
[02:16:41] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[02:16:41] ================== xe_validate_ccs_kunit ==================
[02:16:41] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[02:16:41] =================== [SKIPPED] xe_migrate ===================
[02:16:41] ================== xe_dma_buf (1 subtest) ==================
[02:16:41] ==================== xe_dma_buf_kunit =====================
[02:16:41] ================ [SKIPPED] xe_dma_buf_kunit ================
[02:16:41] =================== [SKIPPED] xe_dma_buf ===================
[02:16:41] ================= xe_bo_shrink (1 subtest) =================
[02:16:41] =================== xe_bo_shrink_kunit ====================
[02:16:41] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[02:16:41] ================== [SKIPPED] xe_bo_shrink ==================
[02:16:41] ==================== xe_bo (2 subtests) ====================
[02:16:41] ================== xe_ccs_migrate_kunit ===================
[02:16:41] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[02:16:41] ==================== xe_bo_evict_kunit ====================
[02:16:41] =============== [SKIPPED] xe_bo_evict_kunit ================
[02:16:41] ===================== [SKIPPED] xe_bo ======================
[02:16:41] ==================== args (11 subtests) ====================
[02:16:41] [PASSED] count_args_test
[02:16:41] [PASSED] call_args_example
[02:16:41] [PASSED] call_args_test
[02:16:41] [PASSED] drop_first_arg_example
[02:16:41] [PASSED] drop_first_arg_test
[02:16:41] [PASSED] first_arg_example
[02:16:41] [PASSED] first_arg_test
[02:16:41] [PASSED] last_arg_example
[02:16:41] [PASSED] last_arg_test
[02:16:41] [PASSED] pick_arg_example
[02:16:41] [PASSED] sep_comma_example
[02:16:41] ====================== [PASSED] args =======================
[02:16:41] =================== xe_pci (3 subtests) ====================
[02:16:41] ==================== check_graphics_ip ====================
[02:16:41] [PASSED] 12.70 Xe_LPG
[02:16:41] [PASSED] 12.71 Xe_LPG
[02:16:41] [PASSED] 12.74 Xe_LPG+
[02:16:41] [PASSED] 20.01 Xe2_HPG
[02:16:41] [PASSED] 20.02 Xe2_HPG
[02:16:41] [PASSED] 20.04 Xe2_LPG
[02:16:41] [PASSED] 30.00 Xe3_LPG
[02:16:41] [PASSED] 30.01 Xe3_LPG
[02:16:41] ================ [PASSED] check_graphics_ip ================
[02:16:41] ===================== check_media_ip ======================
[02:16:41] [PASSED] 13.00 Xe_LPM+
[02:16:41] [PASSED] 13.01 Xe2_HPM
[02:16:41] [PASSED] 20.00 Xe2_LPM
[02:16:41] [PASSED] 30.00 Xe3_LPM
[02:16:41] ================= [PASSED] check_media_ip ==================
[02:16:41] ================= check_platform_gt_count =================
[02:16:41] [PASSED] 0x9A60 (TIGERLAKE)
[02:16:41] [PASSED] 0x9A68 (TIGERLAKE)
[02:16:41] [PASSED] 0x9A70 (TIGERLAKE)
[02:16:41] [PASSED] 0x9A40 (TIGERLAKE)
[02:16:41] [PASSED] 0x9A49 (TIGERLAKE)
[02:16:41] [PASSED] 0x9A59 (TIGERLAKE)
[02:16:41] [PASSED] 0x9A78 (TIGERLAKE)
[02:16:41] [PASSED] 0x9AC0 (TIGERLAKE)
[02:16:41] [PASSED] 0x9AC9 (TIGERLAKE)
[02:16:41] [PASSED] 0x9AD9 (TIGERLAKE)
[02:16:41] [PASSED] 0x9AF8 (TIGERLAKE)
[02:16:41] [PASSED] 0x4C80 (ROCKETLAKE)
[02:16:41] [PASSED] 0x4C8A (ROCKETLAKE)
[02:16:41] [PASSED] 0x4C8B (ROCKETLAKE)
[02:16:41] [PASSED] 0x4C8C (ROCKETLAKE)
[02:16:41] [PASSED] 0x4C90 (ROCKETLAKE)
[02:16:41] [PASSED] 0x4C9A (ROCKETLAKE)
[02:16:41] [PASSED] 0x4680 (ALDERLAKE_S)
[02:16:41] [PASSED] 0x4682 (ALDERLAKE_S)
[02:16:41] [PASSED] 0x4688 (ALDERLAKE_S)
[02:16:41] [PASSED] 0x468A (ALDERLAKE_S)
[02:16:41] [PASSED] 0x468B (ALDERLAKE_S)
[02:16:41] [PASSED] 0x4690 (ALDERLAKE_S)
[02:16:41] [PASSED] 0x4692 (ALDERLAKE_S)
[02:16:41] [PASSED] 0x4693 (ALDERLAKE_S)
[02:16:41] [PASSED] 0x46A0 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46A1 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46A2 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46A3 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46A6 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46A8 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46AA (ALDERLAKE_P)
[02:16:41] [PASSED] 0x462A (ALDERLAKE_P)
[02:16:41] [PASSED] 0x4626 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x4628 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46B0 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46B1 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46B2 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46B3 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46C0 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46C1 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46C2 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46C3 (ALDERLAKE_P)
[02:16:41] [PASSED] 0x46D0 (ALDERLAKE_N)
[02:16:41] [PASSED] 0x46D1 (ALDERLAKE_N)
[02:16:41] [PASSED] 0x46D2 (ALDERLAKE_N)
[02:16:41] [PASSED] 0x46D3 (ALDERLAKE_N)
[02:16:41] [PASSED] 0x46D4 (ALDERLAKE_N)
[02:16:41] [PASSED] 0xA721 (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7A1 (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7A9 (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7AC (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7AD (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA720 (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7A0 (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7A8 (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7AA (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA7AB (ALDERLAKE_P)
[02:16:41] [PASSED] 0xA780 (ALDERLAKE_S)
[02:16:41] [PASSED] 0xA781 (ALDERLAKE_S)
[02:16:41] [PASSED] 0xA782 (ALDERLAKE_S)
[02:16:41] [PASSED] 0xA783 (ALDERLAKE_S)
[02:16:41] [PASSED] 0xA788 (ALDERLAKE_S)
[02:16:41] [PASSED] 0xA789 (ALDERLAKE_S)
[02:16:41] [PASSED] 0xA78A (ALDERLAKE_S)
[02:16:41] [PASSED] 0xA78B (ALDERLAKE_S)
[02:16:41] [PASSED] 0x4905 (DG1)
[02:16:41] [PASSED] 0x4906 (DG1)
[02:16:41] [PASSED] 0x4907 (DG1)
[02:16:41] [PASSED] 0x4908 (DG1)
[02:16:41] [PASSED] 0x4909 (DG1)
[02:16:41] [PASSED] 0x56C0 (DG2)
[02:16:41] [PASSED] 0x56C2 (DG2)
[02:16:41] [PASSED] 0x56C1 (DG2)
[02:16:41] [PASSED] 0x7D51 (METEORLAKE)
[02:16:41] [PASSED] 0x7DD1 (METEORLAKE)
[02:16:41] [PASSED] 0x7D41 (METEORLAKE)
[02:16:41] [PASSED] 0x7D67 (METEORLAKE)
[02:16:41] [PASSED] 0xB640 (METEORLAKE)
[02:16:41] [PASSED] 0x56A0 (DG2)
[02:16:41] [PASSED] 0x56A1 (DG2)
[02:16:41] [PASSED] 0x56A2 (DG2)
[02:16:41] [PASSED] 0x56BE (DG2)
[02:16:41] [PASSED] 0x56BF (DG2)
[02:16:41] [PASSED] 0x5690 (DG2)
[02:16:41] [PASSED] 0x5691 (DG2)
[02:16:41] [PASSED] 0x5692 (DG2)
[02:16:41] [PASSED] 0x56A5 (DG2)
[02:16:41] [PASSED] 0x56A6 (DG2)
[02:16:41] [PASSED] 0x56B0 (DG2)
[02:16:41] [PASSED] 0x56B1 (DG2)
[02:16:41] [PASSED] 0x56BA (DG2)
[02:16:41] [PASSED] 0x56BB (DG2)
[02:16:41] [PASSED] 0x56BC (DG2)
[02:16:41] [PASSED] 0x56BD (DG2)
[02:16:41] [PASSED] 0x5693 (DG2)
[02:16:41] [PASSED] 0x5694 (DG2)
[02:16:41] [PASSED] 0x5695 (DG2)
[02:16:41] [PASSED] 0x56A3 (DG2)
[02:16:41] [PASSED] 0x56A4 (DG2)
[02:16:41] [PASSED] 0x56B2 (DG2)
[02:16:41] [PASSED] 0x56B3 (DG2)
[02:16:41] [PASSED] 0x5696 (DG2)
[02:16:41] [PASSED] 0x5697 (DG2)
[02:16:41] [PASSED] 0xB69 (PVC)
[02:16:41] [PASSED] 0xB6E (PVC)
[02:16:41] [PASSED] 0xBD4 (PVC)
[02:16:41] [PASSED] 0xBD5 (PVC)
[02:16:41] [PASSED] 0xBD6 (PVC)
[02:16:41] [PASSED] 0xBD7 (PVC)
[02:16:41] [PASSED] 0xBD8 (PVC)
[02:16:41] [PASSED] 0xBD9 (PVC)
[02:16:41] [PASSED] 0xBDA (PVC)
[02:16:41] [PASSED] 0xBDB (PVC)
[02:16:41] [PASSED] 0xBE0 (PVC)
[02:16:41] [PASSED] 0xBE1 (PVC)
[02:16:41] [PASSED] 0xBE5 (PVC)
[02:16:41] [PASSED] 0x7D40 (METEORLAKE)
[02:16:41] [PASSED] 0x7D45 (METEORLAKE)
[02:16:41] [PASSED] 0x7D55 (METEORLAKE)
[02:16:41] [PASSED] 0x7D60 (METEORLAKE)
[02:16:41] [PASSED] 0x7DD5 (METEORLAKE)
[02:16:41] [PASSED] 0x6420 (LUNARLAKE)
[02:16:41] [PASSED] 0x64A0 (LUNARLAKE)
[02:16:41] [PASSED] 0x64B0 (LUNARLAKE)
[02:16:41] [PASSED] 0xE202 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE20B (BATTLEMAGE)
[02:16:41] [PASSED] 0xE20C (BATTLEMAGE)
[02:16:41] [PASSED] 0xE20D (BATTLEMAGE)
[02:16:41] [PASSED] 0xE210 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE211 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE212 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE216 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE220 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE221 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE222 (BATTLEMAGE)
[02:16:41] [PASSED] 0xE223 (BATTLEMAGE)
[02:16:41] [PASSED] 0xB080 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB081 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB082 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB083 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB084 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB085 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB086 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB087 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB08F (PANTHERLAKE)
[02:16:41] [PASSED] 0xB090 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB0A0 (PANTHERLAKE)
[02:16:41] [PASSED] 0xB0B0 (PANTHERLAKE)
[02:16:41] ============= [PASSED] check_platform_gt_count =============
[02:16:41] ===================== [PASSED] xe_pci ======================
[02:16:41] =================== xe_rtp (2 subtests) ====================
[02:16:41] =============== xe_rtp_process_to_sr_tests ================
[02:16:41] [PASSED] coalesce-same-reg
[02:16:41] [PASSED] no-match-no-add
[02:16:41] [PASSED] match-or
[02:16:41] [PASSED] match-or-xfail
[02:16:41] [PASSED] no-match-no-add-multiple-rules
[02:16:41] [PASSED] two-regs-two-entries
[02:16:41] [PASSED] clr-one-set-other
[02:16:41] [PASSED] set-field
[02:16:41] [PASSED] conflict-duplicate
[02:16:41] [PASSED] conflict-not-disjoint
[02:16:41] [PASSED] conflict-reg-type
[02:16:41] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[02:16:41] ================== xe_rtp_process_tests ===================
[02:16:41] [PASSED] active1
[02:16:41] [PASSED] active2
[02:16:41] [PASSED] active-inactive
[02:16:41] [PASSED] inactive-active
[02:16:41] [PASSED] inactive-1st_or_active-inactive
[02:16:41] [PASSED] inactive-2nd_or_active-inactive
[02:16:41] [PASSED] inactive-last_or_active-inactive
[02:16:41] [PASSED] inactive-no_or_active-inactive
[02:16:41] ============== [PASSED] xe_rtp_process_tests ===============
[02:16:41] ===================== [PASSED] xe_rtp ======================
[02:16:41] ==================== xe_wa (1 subtest) =====================
[02:16:41] ======================== xe_wa_gt =========================
[02:16:41] [PASSED] TIGERLAKE (B0)
[02:16:41] [PASSED] DG1 (A0)
[02:16:41] [PASSED] DG1 (B0)
[02:16:41] [PASSED] ALDERLAKE_S (A0)
[02:16:41] [PASSED] ALDERLAKE_S (B0)
[02:16:41] [PASSED] ALDERLAKE_S (C0)
[02:16:41] [PASSED] ALDERLAKE_S (D0)
[02:16:41] [PASSED] ALDERLAKE_P (A0)
[02:16:41] [PASSED] ALDERLAKE_P (B0)
[02:16:41] [PASSED] ALDERLAKE_P (C0)
[02:16:41] [PASSED] ALDERLAKE_S_RPLS (D0)
[02:16:41] [PASSED] ALDERLAKE_P_RPLU (E0)
[02:16:41] [PASSED] DG2_G10 (C0)
[02:16:41] [PASSED] DG2_G11 (B1)
[02:16:41] [PASSED] DG2_G12 (A1)
[02:16:41] [PASSED] METEORLAKE (g:A0, m:A0)
[02:16:41] [PASSED] METEORLAKE (g:A0, m:A0)
[02:16:41] [PASSED] METEORLAKE (g:A0, m:A0)
[02:16:41] [PASSED] LUNARLAKE (g:A0, m:A0)
[02:16:41] [PASSED] LUNARLAKE (g:B0, m:A0)
[02:16:41] [PASSED] BATTLEMAGE (g:A0, m:A1)
[02:16:41] ==================== [PASSED] xe_wa_gt =====================
[02:16:41] ====================== [PASSED] xe_wa ======================
stty: 'standard input': Inappropriate ioctl for device
[02:16:41] ============================================================
[02:16:41] Testing complete. Ran 292 tests: passed: 276, skipped: 16
[02:16:41] Elapsed time: 31.370s total, 4.206s configuring, 26.847s building, 0.305s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[02:16:41] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:16:43] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[02:17:04] Starting KUnit Kernel (1/1)...
[02:17:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:17:04] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[02:17:04] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[02:17:04] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[02:17:04] =========== drm_validate_clone_mode (2 subtests) ===========
[02:17:04] ============== drm_test_check_in_clone_mode ===============
[02:17:04] [PASSED] in_clone_mode
[02:17:04] [PASSED] not_in_clone_mode
[02:17:04] ========== [PASSED] drm_test_check_in_clone_mode ===========
[02:17:04] =============== drm_test_check_valid_clones ===============
[02:17:04] [PASSED] not_in_clone_mode
[02:17:04] [PASSED] valid_clone
[02:17:04] [PASSED] invalid_clone
[02:17:04] =========== [PASSED] drm_test_check_valid_clones ===========
[02:17:04] ============= [PASSED] drm_validate_clone_mode =============
[02:17:04] ============= drm_validate_modeset (1 subtest) =============
[02:17:04] [PASSED] drm_test_check_connector_changed_modeset
[02:17:04] ============== [PASSED] drm_validate_modeset ===============
[02:17:04] ====== drm_test_bridge_get_current_state (2 subtests) ======
[02:17:04] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[02:17:04] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[02:17:04] ======== [PASSED] drm_test_bridge_get_current_state ========
[02:17:04] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[02:17:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[02:17:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[02:17:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[02:17:04] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[02:17:04] ============== drm_bridge_alloc (2 subtests) ===============
[02:17:04] [PASSED] drm_test_drm_bridge_alloc_basic
[02:17:04] [PASSED] drm_test_drm_bridge_alloc_get_put
[02:17:04] ================ [PASSED] drm_bridge_alloc =================
[02:17:04] ================== drm_buddy (7 subtests) ==================
[02:17:04] [PASSED] drm_test_buddy_alloc_limit
[02:17:04] [PASSED] drm_test_buddy_alloc_optimistic
[02:17:04] [PASSED] drm_test_buddy_alloc_pessimistic
[02:17:04] [PASSED] drm_test_buddy_alloc_pathological
[02:17:04] [PASSED] drm_test_buddy_alloc_contiguous
[02:17:04] [PASSED] drm_test_buddy_alloc_clear
[02:17:04] [PASSED] drm_test_buddy_alloc_range_bias
[02:17:04] ==================== [PASSED] drm_buddy ====================
[02:17:04] ============= drm_cmdline_parser (40 subtests) =============
[02:17:04] [PASSED] drm_test_cmdline_force_d_only
[02:17:04] [PASSED] drm_test_cmdline_force_D_only_dvi
[02:17:04] [PASSED] drm_test_cmdline_force_D_only_hdmi
[02:17:04] [PASSED] drm_test_cmdline_force_D_only_not_digital
[02:17:04] [PASSED] drm_test_cmdline_force_e_only
[02:17:04] [PASSED] drm_test_cmdline_res
[02:17:04] [PASSED] drm_test_cmdline_res_vesa
[02:17:04] [PASSED] drm_test_cmdline_res_vesa_rblank
[02:17:04] [PASSED] drm_test_cmdline_res_rblank
[02:17:04] [PASSED] drm_test_cmdline_res_bpp
[02:17:04] [PASSED] drm_test_cmdline_res_refresh
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[02:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[02:17:04] [PASSED] drm_test_cmdline_res_margins_force_on
[02:17:04] [PASSED] drm_test_cmdline_res_vesa_margins
[02:17:04] [PASSED] drm_test_cmdline_name
[02:17:04] [PASSED] drm_test_cmdline_name_bpp
[02:17:04] [PASSED] drm_test_cmdline_name_option
[02:17:04] [PASSED] drm_test_cmdline_name_bpp_option
[02:17:04] [PASSED] drm_test_cmdline_rotate_0
[02:17:04] [PASSED] drm_test_cmdline_rotate_90
[02:17:04] [PASSED] drm_test_cmdline_rotate_180
[02:17:04] [PASSED] drm_test_cmdline_rotate_270
[02:17:04] [PASSED] drm_test_cmdline_hmirror
[02:17:04] [PASSED] drm_test_cmdline_vmirror
[02:17:04] [PASSED] drm_test_cmdline_margin_options
[02:17:04] [PASSED] drm_test_cmdline_multiple_options
[02:17:04] [PASSED] drm_test_cmdline_bpp_extra_and_option
[02:17:04] [PASSED] drm_test_cmdline_extra_and_option
[02:17:04] [PASSED] drm_test_cmdline_freestanding_options
[02:17:04] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[02:17:04] [PASSED] drm_test_cmdline_panel_orientation
[02:17:04] ================ drm_test_cmdline_invalid =================
[02:17:04] [PASSED] margin_only
[02:17:04] [PASSED] interlace_only
[02:17:04] [PASSED] res_missing_x
[02:17:04] [PASSED] res_missing_y
[02:17:04] [PASSED] res_bad_y
[02:17:04] [PASSED] res_missing_y_bpp
[02:17:04] [PASSED] res_bad_bpp
[02:17:04] [PASSED] res_bad_refresh
[02:17:04] [PASSED] res_bpp_refresh_force_on_off
[02:17:04] [PASSED] res_invalid_mode
[02:17:04] [PASSED] res_bpp_wrong_place_mode
[02:17:04] [PASSED] name_bpp_refresh
[02:17:04] [PASSED] name_refresh
[02:17:04] [PASSED] name_refresh_wrong_mode
[02:17:04] [PASSED] name_refresh_invalid_mode
[02:17:04] [PASSED] rotate_multiple
[02:17:04] [PASSED] rotate_invalid_val
[02:17:04] [PASSED] rotate_truncated
[02:17:04] [PASSED] invalid_option
[02:17:04] [PASSED] invalid_tv_option
[02:17:04] [PASSED] truncated_tv_option
[02:17:04] ============ [PASSED] drm_test_cmdline_invalid =============
[02:17:04] =============== drm_test_cmdline_tv_options ===============
[02:17:04] [PASSED] NTSC
[02:17:04] [PASSED] NTSC_443
[02:17:04] [PASSED] NTSC_J
[02:17:04] [PASSED] PAL
[02:17:04] [PASSED] PAL_M
[02:17:04] [PASSED] PAL_N
[02:17:04] [PASSED] SECAM
[02:17:04] [PASSED] MONO_525
[02:17:04] [PASSED] MONO_625
[02:17:04] =========== [PASSED] drm_test_cmdline_tv_options ===========
[02:17:04] =============== [PASSED] drm_cmdline_parser ================
[02:17:04] ========== drmm_connector_hdmi_init (20 subtests) ==========
[02:17:04] [PASSED] drm_test_connector_hdmi_init_valid
[02:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_8
[02:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_10
[02:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_12
[02:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[02:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_null
[02:17:04] [PASSED] drm_test_connector_hdmi_init_formats_empty
[02:17:04] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[02:17:04] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[02:17:04] [PASSED] supported_formats=0x9 yuv420_allowed=1
[02:17:04] [PASSED] supported_formats=0x9 yuv420_allowed=0
[02:17:04] [PASSED] supported_formats=0x3 yuv420_allowed=1
[02:17:04] [PASSED] supported_formats=0x3 yuv420_allowed=0
[02:17:04] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[02:17:04] [PASSED] drm_test_connector_hdmi_init_null_ddc
[02:17:04] [PASSED] drm_test_connector_hdmi_init_null_product
[02:17:04] [PASSED] drm_test_connector_hdmi_init_null_vendor
[02:17:04] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[02:17:04] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[02:17:04] [PASSED] drm_test_connector_hdmi_init_product_valid
[02:17:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[02:17:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[02:17:04] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[02:17:04] ========= drm_test_connector_hdmi_init_type_valid =========
[02:17:04] [PASSED] HDMI-A
[02:17:04] [PASSED] HDMI-B
[02:17:04] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[02:17:04] ======== drm_test_connector_hdmi_init_type_invalid ========
[02:17:04] [PASSED] Unknown
[02:17:04] [PASSED] VGA
[02:17:04] [PASSED] DVI-I
[02:17:04] [PASSED] DVI-D
[02:17:04] [PASSED] DVI-A
[02:17:04] [PASSED] Composite
[02:17:04] [PASSED] SVIDEO
[02:17:04] [PASSED] LVDS
[02:17:04] [PASSED] Component
[02:17:04] [PASSED] DIN
[02:17:04] [PASSED] DP
[02:17:04] [PASSED] TV
[02:17:04] [PASSED] eDP
[02:17:04] [PASSED] Virtual
[02:17:04] [PASSED] DSI
[02:17:04] [PASSED] DPI
[02:17:04] [PASSED] Writeback
[02:17:04] [PASSED] SPI
[02:17:04] [PASSED] USB
[02:17:04] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[02:17:04] ============ [PASSED] drmm_connector_hdmi_init =============
[02:17:04] ============= drmm_connector_init (3 subtests) =============
[02:17:04] [PASSED] drm_test_drmm_connector_init
[02:17:04] [PASSED] drm_test_drmm_connector_init_null_ddc
[02:17:04] ========= drm_test_drmm_connector_init_type_valid =========
[02:17:04] [PASSED] Unknown
[02:17:04] [PASSED] VGA
[02:17:04] [PASSED] DVI-I
[02:17:04] [PASSED] DVI-D
[02:17:04] [PASSED] DVI-A
[02:17:04] [PASSED] Composite
[02:17:04] [PASSED] SVIDEO
[02:17:04] [PASSED] LVDS
[02:17:04] [PASSED] Component
[02:17:04] [PASSED] DIN
[02:17:04] [PASSED] DP
[02:17:04] [PASSED] HDMI-A
[02:17:04] [PASSED] HDMI-B
[02:17:04] [PASSED] TV
[02:17:04] [PASSED] eDP
[02:17:04] [PASSED] Virtual
[02:17:04] [PASSED] DSI
[02:17:04] [PASSED] DPI
[02:17:04] [PASSED] Writeback
[02:17:04] [PASSED] SPI
[02:17:04] [PASSED] USB
[02:17:04] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[02:17:04] =============== [PASSED] drmm_connector_init ===============
[02:17:04] ========= drm_connector_dynamic_init (6 subtests) ==========
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_init
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_init_properties
[02:17:04] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[02:17:04] [PASSED] Unknown
[02:17:04] [PASSED] VGA
[02:17:04] [PASSED] DVI-I
[02:17:04] [PASSED] DVI-D
[02:17:04] [PASSED] DVI-A
[02:17:04] [PASSED] Composite
[02:17:04] [PASSED] SVIDEO
[02:17:04] [PASSED] LVDS
[02:17:04] [PASSED] Component
[02:17:04] [PASSED] DIN
[02:17:04] [PASSED] DP
[02:17:04] [PASSED] HDMI-A
[02:17:04] [PASSED] HDMI-B
[02:17:04] [PASSED] TV
[02:17:04] [PASSED] eDP
[02:17:04] [PASSED] Virtual
[02:17:04] [PASSED] DSI
[02:17:04] [PASSED] DPI
[02:17:04] [PASSED] Writeback
[02:17:04] [PASSED] SPI
[02:17:04] [PASSED] USB
[02:17:04] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[02:17:04] ======== drm_test_drm_connector_dynamic_init_name =========
[02:17:04] [PASSED] Unknown
[02:17:04] [PASSED] VGA
[02:17:04] [PASSED] DVI-I
[02:17:04] [PASSED] DVI-D
[02:17:04] [PASSED] DVI-A
[02:17:04] [PASSED] Composite
[02:17:04] [PASSED] SVIDEO
[02:17:04] [PASSED] LVDS
[02:17:04] [PASSED] Component
[02:17:04] [PASSED] DIN
[02:17:04] [PASSED] DP
[02:17:04] [PASSED] HDMI-A
[02:17:04] [PASSED] HDMI-B
[02:17:04] [PASSED] TV
[02:17:04] [PASSED] eDP
[02:17:04] [PASSED] Virtual
[02:17:04] [PASSED] DSI
[02:17:04] [PASSED] DPI
[02:17:04] [PASSED] Writeback
[02:17:04] [PASSED] SPI
[02:17:04] [PASSED] USB
[02:17:04] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[02:17:04] =========== [PASSED] drm_connector_dynamic_init ============
[02:17:04] ==== drm_connector_dynamic_register_early (4 subtests) =====
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[02:17:04] ====== [PASSED] drm_connector_dynamic_register_early =======
[02:17:04] ======= drm_connector_dynamic_register (7 subtests) ========
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[02:17:04] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[02:17:04] ========= [PASSED] drm_connector_dynamic_register ==========
[02:17:04] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[02:17:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[02:17:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[02:17:04] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[02:17:04] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[02:17:04] ========== drm_test_get_tv_mode_from_name_valid ===========
[02:17:04] [PASSED] NTSC
[02:17:04] [PASSED] NTSC-443
[02:17:04] [PASSED] NTSC-J
[02:17:04] [PASSED] PAL
[02:17:04] [PASSED] PAL-M
[02:17:04] [PASSED] PAL-N
[02:17:04] [PASSED] SECAM
[02:17:04] [PASSED] Mono
[02:17:04] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[02:17:04] [PASSED] drm_test_get_tv_mode_from_name_truncated
[02:17:04] ============ [PASSED] drm_get_tv_mode_from_name ============
[02:17:04] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[02:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[02:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[02:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[02:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[02:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[02:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[02:17:04] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[02:17:04] [PASSED] VIC 96
[02:17:04] [PASSED] VIC 97
[02:17:04] [PASSED] VIC 101
[02:17:04] [PASSED] VIC 102
[02:17:04] [PASSED] VIC 106
[02:17:04] [PASSED] VIC 107
[02:17:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[02:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[02:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[02:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[02:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[02:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[02:17:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[02:17:04] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[02:17:04] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[02:17:04] [PASSED] Automatic
[02:17:04] [PASSED] Full
[02:17:04] [PASSED] Limited 16:235
[02:17:04] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[02:17:04] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[02:17:04] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[02:17:04] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[02:17:04] === drm_test_drm_hdmi_connector_get_output_format_name ====
[02:17:04] [PASSED] RGB
[02:17:04] [PASSED] YUV 4:2:0
[02:17:04] [PASSED] YUV 4:2:2
[02:17:04] [PASSED] YUV 4:4:4
[02:17:04] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[02:17:04] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[02:17:04] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[02:17:04] ============= drm_damage_helper (21 subtests) ==============
[02:17:04] [PASSED] drm_test_damage_iter_no_damage
[02:17:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[02:17:04] [PASSED] drm_test_damage_iter_no_damage_src_moved
[02:17:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[02:17:04] [PASSED] drm_test_damage_iter_no_damage_not_visible
[02:17:04] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[02:17:04] [PASSED] drm_test_damage_iter_no_damage_no_fb
[02:17:04] [PASSED] drm_test_damage_iter_simple_damage
[02:17:04] [PASSED] drm_test_damage_iter_single_damage
[02:17:04] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[02:17:04] [PASSED] drm_test_damage_iter_single_damage_outside_src
[02:17:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[02:17:04] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[02:17:04] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[02:17:04] [PASSED] drm_test_damage_iter_single_damage_src_moved
[02:17:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[02:17:04] [PASSED] drm_test_damage_iter_damage
[02:17:04] [PASSED] drm_test_damage_iter_damage_one_intersect
[02:17:04] [PASSED] drm_test_damage_iter_damage_one_outside
[02:17:04] [PASSED] drm_test_damage_iter_damage_src_moved
[02:17:04] [PASSED] drm_test_damage_iter_damage_not_visible
[02:17:04] ================ [PASSED] drm_damage_helper ================
[02:17:04] ============== drm_dp_mst_helper (3 subtests) ==============
[02:17:04] ============== drm_test_dp_mst_calc_pbn_mode ==============
[02:17:04] [PASSED] Clock 154000 BPP 30 DSC disabled
[02:17:04] [PASSED] Clock 234000 BPP 30 DSC disabled
[02:17:04] [PASSED] Clock 297000 BPP 24 DSC disabled
[02:17:04] [PASSED] Clock 332880 BPP 24 DSC enabled
[02:17:04] [PASSED] Clock 324540 BPP 24 DSC enabled
[02:17:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[02:17:04] ============== drm_test_dp_mst_calc_pbn_div ===============
[02:17:04] [PASSED] Link rate 2000000 lane count 4
[02:17:04] [PASSED] Link rate 2000000 lane count 2
[02:17:04] [PASSED] Link rate 2000000 lane count 1
[02:17:04] [PASSED] Link rate 1350000 lane count 4
[02:17:04] [PASSED] Link rate 1350000 lane count 2
[02:17:04] [PASSED] Link rate 1350000 lane count 1
[02:17:04] [PASSED] Link rate 1000000 lane count 4
[02:17:04] [PASSED] Link rate 1000000 lane count 2
[02:17:04] [PASSED] Link rate 1000000 lane count 1
[02:17:04] [PASSED] Link rate 810000 lane count 4
[02:17:04] [PASSED] Link rate 810000 lane count 2
[02:17:04] [PASSED] Link rate 810000 lane count 1
[02:17:04] [PASSED] Link rate 540000 lane count 4
[02:17:04] [PASSED] Link rate 540000 lane count 2
[02:17:04] [PASSED] Link rate 540000 lane count 1
[02:17:04] [PASSED] Link rate 270000 lane count 4
[02:17:04] [PASSED] Link rate 270000 lane count 2
[02:17:04] [PASSED] Link rate 270000 lane count 1
[02:17:04] [PASSED] Link rate 162000 lane count 4
[02:17:04] [PASSED] Link rate 162000 lane count 2
[02:17:04] [PASSED] Link rate 162000 lane count 1
[02:17:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[02:17:04] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[02:17:04] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[02:17:04] [PASSED] DP_POWER_UP_PHY with port number
[02:17:04] [PASSED] DP_POWER_DOWN_PHY with port number
[02:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[02:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[02:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[02:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[02:17:04] [PASSED] DP_QUERY_PAYLOAD with port number
[02:17:04] [PASSED] DP_QUERY_PAYLOAD with VCPI
[02:17:04] [PASSED] DP_REMOTE_DPCD_READ with port number
[02:17:04] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[02:17:04] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[02:17:04] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[02:17:04] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[02:17:04] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[02:17:04] [PASSED] DP_REMOTE_I2C_READ with port number
[02:17:04] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[02:17:04] [PASSED] DP_REMOTE_I2C_READ with transactions array
[02:17:04] [PASSED] DP_REMOTE_I2C_WRITE with port number
[02:17:04] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[02:17:04] [PASSED] DP_REMOTE_I2C_WRITE with data array
[02:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[02:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[02:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[02:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[02:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[02:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[02:17:04] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[02:17:04] ================ [PASSED] drm_dp_mst_helper ================
[02:17:04] ================== drm_exec (7 subtests) ===================
[02:17:04] [PASSED] sanitycheck
[02:17:04] [PASSED] test_lock
[02:17:04] [PASSED] test_lock_unlock
[02:17:04] [PASSED] test_duplicates
[02:17:04] [PASSED] test_prepare
[02:17:04] [PASSED] test_prepare_array
[02:17:04] [PASSED] test_multiple_loops
[02:17:04] ==================== [PASSED] drm_exec =====================
[02:17:04] =========== drm_format_helper_test (18 subtests) ===========
[02:17:04] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[02:17:04] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[02:17:04] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[02:17:04] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[02:17:04] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[02:17:04] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[02:17:04] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[02:17:04] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[02:17:04] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[02:17:04] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[02:17:04] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[02:17:04] ============== drm_test_fb_xrgb8888_to_mono ===============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[02:17:04] ==================== drm_test_fb_swab =====================
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ================ [PASSED] drm_test_fb_swab =================
[02:17:04] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[02:17:04] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[02:17:04] [PASSED] single_pixel_source_buffer
[02:17:04] [PASSED] single_pixel_clip_rectangle
[02:17:04] [PASSED] well_known_colors
[02:17:04] [PASSED] destination_pitch
[02:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[02:17:04] ================= drm_test_fb_clip_offset =================
[02:17:04] [PASSED] pass through
[02:17:04] [PASSED] horizontal offset
[02:17:04] [PASSED] vertical offset
[02:17:04] [PASSED] horizontal and vertical offset
[02:17:04] [PASSED] horizontal offset (custom pitch)
[02:17:04] [PASSED] vertical offset (custom pitch)
[02:17:04] [PASSED] horizontal and vertical offset (custom pitch)
[02:17:04] ============= [PASSED] drm_test_fb_clip_offset =============
[02:17:04] ============== drm_test_fb_build_fourcc_list ==============
[02:17:04] [PASSED] no native formats
[02:17:04] [PASSED] XRGB8888 as native format
[02:17:04] [PASSED] remove duplicates
[02:17:04] [PASSED] convert alpha formats
[02:17:04] [PASSED] random formats
[02:17:04] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[02:17:04] =================== drm_test_fb_memcpy ====================
[02:17:04] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[02:17:04] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[02:17:04] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[02:17:04] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[02:17:04] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[02:17:04] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[02:17:04] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[02:17:04] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[02:17:04] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[02:17:04] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[02:17:04] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[02:17:04] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[02:17:04] =============== [PASSED] drm_test_fb_memcpy ================
[02:17:04] ============= [PASSED] drm_format_helper_test ==============
[02:17:04] ================= drm_format (18 subtests) =================
[02:17:04] [PASSED] drm_test_format_block_width_invalid
[02:17:04] [PASSED] drm_test_format_block_width_one_plane
[02:17:04] [PASSED] drm_test_format_block_width_two_plane
[02:17:04] [PASSED] drm_test_format_block_width_three_plane
[02:17:04] [PASSED] drm_test_format_block_width_tiled
[02:17:04] [PASSED] drm_test_format_block_height_invalid
[02:17:04] [PASSED] drm_test_format_block_height_one_plane
[02:17:04] [PASSED] drm_test_format_block_height_two_plane
[02:17:04] [PASSED] drm_test_format_block_height_three_plane
[02:17:04] [PASSED] drm_test_format_block_height_tiled
[02:17:04] [PASSED] drm_test_format_min_pitch_invalid
[02:17:04] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[02:17:04] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[02:17:04] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[02:17:04] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[02:17:04] [PASSED] drm_test_format_min_pitch_two_plane
[02:17:04] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[02:17:04] [PASSED] drm_test_format_min_pitch_tiled
[02:17:04] =================== [PASSED] drm_format ====================
[02:17:04] ============== drm_framebuffer (10 subtests) ===============
[02:17:04] ========== drm_test_framebuffer_check_src_coords ==========
[02:17:04] [PASSED] Success: source fits into fb
[02:17:04] [PASSED] Fail: overflowing fb with x-axis coordinate
[02:17:04] [PASSED] Fail: overflowing fb with y-axis coordinate
[02:17:04] [PASSED] Fail: overflowing fb with source width
[02:17:04] [PASSED] Fail: overflowing fb with source height
[02:17:04] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[02:17:04] [PASSED] drm_test_framebuffer_cleanup
[02:17:04] =============== drm_test_framebuffer_create ===============
[02:17:04] [PASSED] ABGR8888 normal sizes
[02:17:04] [PASSED] ABGR8888 max sizes
[02:17:04] [PASSED] ABGR8888 pitch greater than min required
[02:17:04] [PASSED] ABGR8888 pitch less than min required
[02:17:04] [PASSED] ABGR8888 Invalid width
[02:17:04] [PASSED] ABGR8888 Invalid buffer handle
[02:17:04] [PASSED] No pixel format
[02:17:04] [PASSED] ABGR8888 Width 0
[02:17:04] [PASSED] ABGR8888 Height 0
[02:17:04] [PASSED] ABGR8888 Out of bound height * pitch combination
[02:17:04] [PASSED] ABGR8888 Large buffer offset
[02:17:04] [PASSED] ABGR8888 Buffer offset for inexistent plane
[02:17:04] [PASSED] ABGR8888 Invalid flag
[02:17:04] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[02:17:04] [PASSED] ABGR8888 Valid buffer modifier
[02:17:04] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[02:17:04] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[02:17:04] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[02:17:04] [PASSED] NV12 Normal sizes
[02:17:04] [PASSED] NV12 Max sizes
[02:17:04] [PASSED] NV12 Invalid pitch
[02:17:04] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[02:17:04] [PASSED] NV12 different modifier per-plane
[02:17:04] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[02:17:04] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[02:17:04] [PASSED] NV12 Modifier for inexistent plane
[02:17:04] [PASSED] NV12 Handle for inexistent plane
[02:17:04] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[02:17:04] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[02:17:04] [PASSED] YVU420 Normal sizes
[02:17:04] [PASSED] YVU420 Max sizes
[02:17:04] [PASSED] YVU420 Invalid pitch
[02:17:04] [PASSED] YVU420 Different pitches
[02:17:04] [PASSED] YVU420 Different buffer offsets/pitches
[02:17:04] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[02:17:04] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[02:17:04] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[02:17:04] [PASSED] YVU420 Valid modifier
[02:17:04] [PASSED] YVU420 Different modifiers per plane
[02:17:04] [PASSED] YVU420 Modifier for inexistent plane
[02:17:04] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[02:17:04] [PASSED] X0L2 Normal sizes
[02:17:04] [PASSED] X0L2 Max sizes
[02:17:04] [PASSED] X0L2 Invalid pitch
[02:17:04] [PASSED] X0L2 Pitch greater than minimum required
[02:17:04] [PASSED] X0L2 Handle for inexistent plane
[02:17:04] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[02:17:04] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[02:17:04] [PASSED] X0L2 Valid modifier
[02:17:04] [PASSED] X0L2 Modifier for inexistent plane
[02:17:04] =========== [PASSED] drm_test_framebuffer_create ===========
[02:17:04] [PASSED] drm_test_framebuffer_free
[02:17:04] [PASSED] drm_test_framebuffer_init
[02:17:04] [PASSED] drm_test_framebuffer_init_bad_format
[02:17:04] [PASSED] drm_test_framebuffer_init_dev_mismatch
[02:17:04] [PASSED] drm_test_framebuffer_lookup
[02:17:04] [PASSED] drm_test_framebuffer_lookup_inexistent
[02:17:04] [PASSED] drm_test_framebuffer_modifiers_not_supported
[02:17:04] ================= [PASSED] drm_framebuffer =================
[02:17:04] ================ drm_gem_shmem (8 subtests) ================
[02:17:04] [PASSED] drm_gem_shmem_test_obj_create
[02:17:04] [PASSED] drm_gem_shmem_test_obj_create_private
[02:17:04] [PASSED] drm_gem_shmem_test_pin_pages
[02:17:04] [PASSED] drm_gem_shmem_test_vmap
[02:17:04] [PASSED] drm_gem_shmem_test_get_pages_sgt
[02:17:04] [PASSED] drm_gem_shmem_test_get_sg_table
[02:17:04] [PASSED] drm_gem_shmem_test_madvise
[02:17:04] [PASSED] drm_gem_shmem_test_purge
[02:17:04] ================== [PASSED] drm_gem_shmem ==================
[02:17:04] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[02:17:04] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[02:17:04] [PASSED] Automatic
[02:17:04] [PASSED] Full
[02:17:04] [PASSED] Limited 16:235
[02:17:04] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[02:17:04] [PASSED] drm_test_check_disable_connector
[02:17:04] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[02:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[02:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[02:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[02:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[02:17:04] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[02:17:04] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[02:17:04] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[02:17:04] [PASSED] drm_test_check_output_bpc_dvi
[02:17:04] [PASSED] drm_test_check_output_bpc_format_vic_1
[02:17:04] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[02:17:04] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[02:17:04] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[02:17:04] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[02:17:04] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[02:17:04] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[02:17:04] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[02:17:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[02:17:04] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[02:17:04] [PASSED] drm_test_check_broadcast_rgb_value
[02:17:04] [PASSED] drm_test_check_bpc_8_value
[02:17:04] [PASSED] drm_test_check_bpc_10_value
[02:17:04] [PASSED] drm_test_check_bpc_12_value
[02:17:04] [PASSED] drm_test_check_format_value
[02:17:04] [PASSED] drm_test_check_tmds_char_value
[02:17:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[02:17:04] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[02:17:04] [PASSED] drm_test_check_mode_valid
[02:17:04] [PASSED] drm_test_check_mode_valid_reject
[02:17:04] [PASSED] drm_test_check_mode_valid_reject_rate
[02:17:04] [PASSED] drm_test_check_mode_valid_reject_max_clock
[02:17:04] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[02:17:04] ================= drm_managed (2 subtests) =================
[02:17:04] [PASSED] drm_test_managed_release_action
[02:17:04] [PASSED] drm_test_managed_run_action
[02:17:04] =================== [PASSED] drm_managed ===================
[02:17:04] =================== drm_mm (6 subtests) ====================
[02:17:04] [PASSED] drm_test_mm_init
[02:17:04] [PASSED] drm_test_mm_debug
[02:17:04] [PASSED] drm_test_mm_align32
[02:17:04] [PASSED] drm_test_mm_align64
[02:17:04] [PASSED] drm_test_mm_lowest
[02:17:04] [PASSED] drm_test_mm_highest
[02:17:04] ===================== [PASSED] drm_mm ======================
[02:17:04] ============= drm_modes_analog_tv (5 subtests) =============
[02:17:04] [PASSED] drm_test_modes_analog_tv_mono_576i
[02:17:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[02:17:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[02:17:04] [PASSED] drm_test_modes_analog_tv_pal_576i
[02:17:04] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[02:17:04] =============== [PASSED] drm_modes_analog_tv ===============
[02:17:04] ============== drm_plane_helper (2 subtests) ===============
[02:17:04] =============== drm_test_check_plane_state ================
[02:17:04] [PASSED] clipping_simple
[02:17:04] [PASSED] clipping_rotate_reflect
[02:17:04] [PASSED] positioning_simple
[02:17:04] [PASSED] upscaling
[02:17:04] [PASSED] downscaling
[02:17:04] [PASSED] rounding1
[02:17:04] [PASSED] rounding2
[02:17:04] [PASSED] rounding3
[02:17:04] [PASSED] rounding4
[02:17:04] =========== [PASSED] drm_test_check_plane_state ============
[02:17:04] =========== drm_test_check_invalid_plane_state ============
[02:17:04] [PASSED] positioning_invalid
[02:17:04] [PASSED] upscaling_invalid
[02:17:04] [PASSED] downscaling_invalid
[02:17:04] ======= [PASSED] drm_test_check_invalid_plane_state ========
[02:17:04] ================ [PASSED] drm_plane_helper =================
[02:17:04] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[02:17:04] ====== drm_test_connector_helper_tv_get_modes_check =======
[02:17:04] [PASSED] None
[02:17:04] [PASSED] PAL
[02:17:04] [PASSED] NTSC
[02:17:04] [PASSED] Both, NTSC Default
[02:17:04] [PASSED] Both, PAL Default
[02:17:04] [PASSED] Both, NTSC Default, with PAL on command-line
[02:17:04] [PASSED] Both, PAL Default, with NTSC on command-line
[02:17:04] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[02:17:04] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[02:17:04] ================== drm_rect (9 subtests) ===================
[02:17:04] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[02:17:04] [PASSED] drm_test_rect_clip_scaled_not_clipped
[02:17:04] [PASSED] drm_test_rect_clip_scaled_clipped
[02:17:04] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[02:17:04] ================= drm_test_rect_intersect =================
[02:17:04] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[02:17:04] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[02:17:04] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[02:17:04] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[02:17:04] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[02:17:04] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[02:17:04] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[02:17:04] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[02:17:04] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[02:17:04] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[02:17:04] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[02:17:04] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[02:17:04] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[02:17:04] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[02:17:04] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[02:17:04] ============= [PASSED] drm_test_rect_intersect =============
[02:17:04] ================ drm_test_rect_calc_hscale ================
[02:17:04] [PASSED] normal use
[02:17:04] [PASSED] out of max range
[02:17:04] [PASSED] out of min range
[02:17:04] [PASSED] zero dst
[02:17:04] [PASSED] negative src
[02:17:04] [PASSED] negative dst
[02:17:04] ============ [PASSED] drm_test_rect_calc_hscale ============
[02:17:04] ================ drm_test_rect_calc_vscale ================
[02:17:04] [PASSED] normal use
[02:17:04] [PASSED] out of max range
[02:17:04] [PASSED] out of min range
[02:17:04] [PASSED] zero dst
[02:17:04] [PASSED] negative src
[02:17:04] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[02:17:04] ============ [PASSED] drm_test_rect_calc_vscale ============
[02:17:04] ================== drm_test_rect_rotate ===================
[02:17:04] [PASSED] reflect-x
[02:17:04] [PASSED] reflect-y
[02:17:04] [PASSED] rotate-0
[02:17:04] [PASSED] rotate-90
[02:17:04] [PASSED] rotate-180
[02:17:04] [PASSED] rotate-270
[02:17:04] ============== [PASSED] drm_test_rect_rotate ===============
[02:17:04] ================ drm_test_rect_rotate_inv =================
[02:17:04] [PASSED] reflect-x
[02:17:04] [PASSED] reflect-y
[02:17:04] [PASSED] rotate-0
[02:17:04] [PASSED] rotate-90
[02:17:04] [PASSED] rotate-180
[02:17:04] [PASSED] rotate-270
[02:17:04] ============ [PASSED] drm_test_rect_rotate_inv =============
[02:17:04] ==================== [PASSED] drm_rect =====================
[02:17:04] ============================================================
[02:17:04] Testing complete. Ran 616 tests: passed: 616
[02:17:04] Elapsed time: 23.032s total, 1.707s configuring, 21.155s building, 0.139s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[02:17:04] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:17:06] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[02:17:14] Starting KUnit Kernel (1/1)...
[02:17:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:17:14] ================= ttm_device (5 subtests) ==================
[02:17:14] [PASSED] ttm_device_init_basic
[02:17:14] [PASSED] ttm_device_init_multiple
[02:17:14] [PASSED] ttm_device_fini_basic
[02:17:14] [PASSED] ttm_device_init_no_vma_man
[02:17:14] ================== ttm_device_init_pools ==================
[02:17:14] [PASSED] No DMA allocations, no DMA32 required
[02:17:14] [PASSED] DMA allocations, DMA32 required
[02:17:14] [PASSED] No DMA allocations, DMA32 required
[02:17:14] [PASSED] DMA allocations, no DMA32 required
[02:17:14] ============== [PASSED] ttm_device_init_pools ==============
[02:17:14] =================== [PASSED] ttm_device ====================
[02:17:14] ================== ttm_pool (8 subtests) ===================
[02:17:14] ================== ttm_pool_alloc_basic ===================
[02:17:14] [PASSED] One page
[02:17:14] [PASSED] More than one page
[02:17:14] [PASSED] Above the allocation limit
[02:17:14] [PASSED] One page, with coherent DMA mappings enabled
[02:17:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[02:17:14] ============== [PASSED] ttm_pool_alloc_basic ===============
[02:17:14] ============== ttm_pool_alloc_basic_dma_addr ==============
[02:17:14] [PASSED] One page
[02:17:14] [PASSED] More than one page
[02:17:14] [PASSED] Above the allocation limit
[02:17:14] [PASSED] One page, with coherent DMA mappings enabled
[02:17:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[02:17:14] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[02:17:14] [PASSED] ttm_pool_alloc_order_caching_match
[02:17:14] [PASSED] ttm_pool_alloc_caching_mismatch
[02:17:14] [PASSED] ttm_pool_alloc_order_mismatch
[02:17:14] [PASSED] ttm_pool_free_dma_alloc
[02:17:14] [PASSED] ttm_pool_free_no_dma_alloc
[02:17:14] [PASSED] ttm_pool_fini_basic
[02:17:14] ==================== [PASSED] ttm_pool =====================
[02:17:14] ================ ttm_resource (8 subtests) =================
[02:17:14] ================= ttm_resource_init_basic =================
[02:17:14] [PASSED] Init resource in TTM_PL_SYSTEM
[02:17:14] [PASSED] Init resource in TTM_PL_VRAM
[02:17:14] [PASSED] Init resource in a private placement
[02:17:14] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[02:17:14] ============= [PASSED] ttm_resource_init_basic =============
[02:17:14] [PASSED] ttm_resource_init_pinned
[02:17:14] [PASSED] ttm_resource_fini_basic
[02:17:14] [PASSED] ttm_resource_manager_init_basic
[02:17:14] [PASSED] ttm_resource_manager_usage_basic
[02:17:14] [PASSED] ttm_resource_manager_set_used_basic
[02:17:14] [PASSED] ttm_sys_man_alloc_basic
[02:17:14] [PASSED] ttm_sys_man_free_basic
[02:17:14] ================== [PASSED] ttm_resource ===================
[02:17:14] =================== ttm_tt (15 subtests) ===================
[02:17:14] ==================== ttm_tt_init_basic ====================
[02:17:14] [PASSED] Page-aligned size
[02:17:14] [PASSED] Extra pages requested
[02:17:14] ================ [PASSED] ttm_tt_init_basic ================
[02:17:14] [PASSED] ttm_tt_init_misaligned
[02:17:14] [PASSED] ttm_tt_fini_basic
[02:17:14] [PASSED] ttm_tt_fini_sg
[02:17:14] [PASSED] ttm_tt_fini_shmem
[02:17:14] [PASSED] ttm_tt_create_basic
[02:17:14] [PASSED] ttm_tt_create_invalid_bo_type
[02:17:14] [PASSED] ttm_tt_create_ttm_exists
[02:17:14] [PASSED] ttm_tt_create_failed
[02:17:14] [PASSED] ttm_tt_destroy_basic
[02:17:14] [PASSED] ttm_tt_populate_null_ttm
[02:17:14] [PASSED] ttm_tt_populate_populated_ttm
[02:17:14] [PASSED] ttm_tt_unpopulate_basic
[02:17:14] [PASSED] ttm_tt_unpopulate_empty_ttm
[02:17:14] [PASSED] ttm_tt_swapin_basic
[02:17:14] ===================== [PASSED] ttm_tt ======================
[02:17:14] =================== ttm_bo (14 subtests) ===================
[02:17:14] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[02:17:14] [PASSED] Cannot be interrupted and sleeps
[02:17:14] [PASSED] Cannot be interrupted, locks straight away
[02:17:14] [PASSED] Can be interrupted, sleeps
[02:17:14] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[02:17:14] [PASSED] ttm_bo_reserve_locked_no_sleep
[02:17:14] [PASSED] ttm_bo_reserve_no_wait_ticket
[02:17:14] [PASSED] ttm_bo_reserve_double_resv
[02:17:14] [PASSED] ttm_bo_reserve_interrupted
[02:17:14] [PASSED] ttm_bo_reserve_deadlock
[02:17:14] [PASSED] ttm_bo_unreserve_basic
[02:17:14] [PASSED] ttm_bo_unreserve_pinned
[02:17:14] [PASSED] ttm_bo_unreserve_bulk
[02:17:14] [PASSED] ttm_bo_put_basic
[02:17:14] [PASSED] ttm_bo_put_shared_resv
[02:17:14] [PASSED] ttm_bo_pin_basic
[02:17:14] [PASSED] ttm_bo_pin_unpin_resource
[02:17:14] [PASSED] ttm_bo_multiple_pin_one_unpin
[02:17:14] ===================== [PASSED] ttm_bo ======================
[02:17:14] ============== ttm_bo_validate (22 subtests) ===============
[02:17:14] ============== ttm_bo_init_reserved_sys_man ===============
[02:17:14] [PASSED] Buffer object for userspace
[02:17:14] [PASSED] Kernel buffer object
[02:17:14] [PASSED] Shared buffer object
[02:17:14] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[02:17:14] ============== ttm_bo_init_reserved_mock_man ==============
[02:17:14] [PASSED] Buffer object for userspace
[02:17:14] [PASSED] Kernel buffer object
[02:17:14] [PASSED] Shared buffer object
[02:17:14] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[02:17:14] [PASSED] ttm_bo_init_reserved_resv
[02:17:14] ================== ttm_bo_validate_basic ==================
[02:17:14] [PASSED] Buffer object for userspace
[02:17:14] [PASSED] Kernel buffer object
[02:17:14] [PASSED] Shared buffer object
[02:17:14] ============== [PASSED] ttm_bo_validate_basic ==============
[02:17:14] [PASSED] ttm_bo_validate_invalid_placement
[02:17:14] ============= ttm_bo_validate_same_placement ==============
[02:17:14] [PASSED] System manager
[02:17:14] [PASSED] VRAM manager
[02:17:14] ========= [PASSED] ttm_bo_validate_same_placement ==========
[02:17:14] [PASSED] ttm_bo_validate_failed_alloc
[02:17:14] [PASSED] ttm_bo_validate_pinned
[02:17:14] [PASSED] ttm_bo_validate_busy_placement
[02:17:14] ================ ttm_bo_validate_multihop =================
[02:17:14] [PASSED] Buffer object for userspace
[02:17:14] [PASSED] Kernel buffer object
[02:17:14] [PASSED] Shared buffer object
[02:17:14] ============ [PASSED] ttm_bo_validate_multihop =============
[02:17:14] ========== ttm_bo_validate_no_placement_signaled ==========
[02:17:14] [PASSED] Buffer object in system domain, no page vector
[02:17:14] [PASSED] Buffer object in system domain with an existing page vector
[02:17:14] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[02:17:14] ======== ttm_bo_validate_no_placement_not_signaled ========
[02:17:14] [PASSED] Buffer object for userspace
[02:17:14] [PASSED] Kernel buffer object
[02:17:14] [PASSED] Shared buffer object
[02:17:14] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[02:17:14] [PASSED] ttm_bo_validate_move_fence_signaled
[02:17:14] ========= ttm_bo_validate_move_fence_not_signaled =========
[02:17:14] [PASSED] Waits for GPU
[02:17:14] [PASSED] Tries to lock straight away
[02:17:14] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[02:17:14] [PASSED] ttm_bo_validate_swapout
[02:17:14] [PASSED] ttm_bo_validate_happy_evict
[02:17:14] [PASSED] ttm_bo_validate_all_pinned_evict
[02:17:14] [PASSED] ttm_bo_validate_allowed_only_evict
[02:17:14] [PASSED] ttm_bo_validate_deleted_evict
[02:17:14] [PASSED] ttm_bo_validate_busy_domain_evict
[02:17:14] [PASSED] ttm_bo_validate_evict_gutting
[02:17:14] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[02:17:14] ================= [PASSED] ttm_bo_validate =================
[02:17:14] ============================================================
[02:17:14] Testing complete. Ran 102 tests: passed: 102
[02:17:14] Elapsed time: 10.091s total, 1.701s configuring, 7.773s building, 0.525s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for Future-proof for multi-tile + multi-GT cases (rev2)
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
` (6 preceding siblings ...)
2025-06-17 2:17 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-17 2:57 ` Patchwork
2025-06-17 12:44 ` ✗ Xe.CI.Full: " Patchwork
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-17 2:57 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 9623 bytes --]
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev2)
URL : https://patchwork.freedesktop.org/series/150192/
State : failure
== Summary ==
CI Bug Log - changes from xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52_BAT -> xe-pw-150192v2_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150192v2_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150192v2_BAT, 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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150192v2_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_intel_bb@intel-bb-blit-y:
- bat-pvc-2: [PASS][1] -> [FAIL][2] +182 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_intel_bb@intel-bb-blit-y.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_intel_bb@intel-bb-blit-y.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-pvc-2: [SKIP][3] ([i915#6077]) -> [FAIL][4] +30 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-pvc-2: [SKIP][5] ([Intel XE#1024] / [Intel XE#782]) -> [FAIL][6] +5 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_dsc@dsc-basic:
- bat-pvc-2: [SKIP][7] ([Intel XE#1024] / [Intel XE#784]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_dsc@dsc-basic.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-pvc-2: [SKIP][9] ([Intel XE#1024] / [Intel XE#947]) -> [FAIL][10] +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-pvc-2: [SKIP][11] ([Intel XE#540]) -> [FAIL][12] +3 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@basic:
- bat-pvc-2: [SKIP][13] ([Intel XE#1024] / [Intel XE#783]) -> [FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-pvc-2: [SKIP][15] ([Intel XE#829]) -> [FAIL][16] +6 other tests fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-pvc-2: [SKIP][17] ([Intel XE#780]) -> [FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_prop_blob@basic.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-pvc-2: [SKIP][19] ([Intel XE#1024]) -> [FAIL][20] +2 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-pvc-2: [SKIP][21] ([Intel XE#2849]) -> [FAIL][22] +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_gt_freq@freq_fixed_idle:
- bat-pvc-2: [SKIP][23] ([Intel XE#1021]) -> [FAIL][24] +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_huc_copy@huc_copy:
- bat-pvc-2: [SKIP][25] ([Intel XE#255]) -> [FAIL][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_intel_bb@render:
- bat-pvc-2: [SKIP][27] ([Intel XE#532]) -> [FAIL][28]
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_intel_bb@render.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_intel_bb@render.html
* igt@xe_pat@pat-index-xe2:
- bat-pvc-2: [SKIP][29] ([Intel XE#977]) -> [FAIL][30] +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_pat@pat-index-xe2.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- bat-pvc-2: [SKIP][31] ([Intel XE#979]) -> [FAIL][32]
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-pvc-2: [SKIP][33] ([Intel XE#531]) -> [FAIL][34]
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-pvc-2: [SKIP][35] ([Intel XE#3342]) -> [FAIL][36]
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
[Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52 -> xe-pw-150192v2
IGT_8412: 8412
xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52: 6f72990d9e0fe084afe257621edd730444a8bc52
xe-pw-150192v2: 150192v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/index.html
[-- Attachment #2: Type: text/html, Size: 10877 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for Future-proof for multi-tile + multi-GT cases (rev2)
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
` (7 preceding siblings ...)
2025-06-17 2:57 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-06-17 12:44 ` Patchwork
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-17 12:44 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 69151 bytes --]
== Series Details ==
Series: Future-proof for multi-tile + multi-GT cases (rev2)
URL : https://patchwork.freedesktop.org/series/150192/
State : failure
== Summary ==
CI Bug Log - changes from xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52_FULL -> xe-pw-150192v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150192v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150192v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150192v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-mlock-nomemset:
- shard-lnl: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-7/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-mlock-nomemset.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-8/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset:
- shard-lnl: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
Known issues
------------
Here are the changes found in xe-pw-150192v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#3157])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3157])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#827]) +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [DMESG-FAIL][13] ([Intel XE#4543])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#316]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-9/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-436/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#607])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1477])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2314] / [Intel XE#2894])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1512])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#2191])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#367])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#787]) +17 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-9/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-9/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#3442])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2907])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][40] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#787]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2325])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#373]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#373]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1178])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#3304])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#5176])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#309]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2286])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#1340])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#3009])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_dp_aux_dev.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4354])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#4294])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#455]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2244])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#4422])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@chamelium:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#701])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#301]) +5 other tests fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#310]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#2882]) +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check@bc-dp2-hdmi-a3.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][78] -> [FAIL][79] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [PASS][80] -> [DMESG-WARN][81] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][84] ([Intel XE#2049] / [Intel XE#2597])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401] / [Intel XE#1745])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#455]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2293]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2311]) +9 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#651]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#651]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4141]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#656]) +16 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#651]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#653]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2313]) +11 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#653]) +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#656]) +12 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4090])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_cursor@overlay:
- shard-dg2-set2: NOTRUN -> [FAIL][101] ([Intel XE#616])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-434/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][102] -> [SKIP][103] ([Intel XE#4596]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-adlp: NOTRUN -> [SKIP][104] ([Intel XE#4596])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_plane_multiple@2x-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#4596])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][106] ([Intel XE#4658]) +3 other tests fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2392])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#2007])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#836])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1439] / [Intel XE#3141])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2893] / [Intel XE#4608])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#4608]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2893])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1489]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#1489]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-basic:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1406]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-basic@edp-1:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#4609]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@kms_psr@fbc-psr2-basic@edp-1.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_vrr@cmrr:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#2168])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@kms_vrr@cmrr.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1499])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#1091] / [Intel XE#2849])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#1123])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-4/igt@xe_copy_basic@mem-copy-linear-0xfd.html
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1123])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#4497])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#4837]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#4837]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@xe_eudebug@discovery-empty.html
* igt@xe_eudebug_online@set-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4837]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@xe_eudebug_online@set-breakpoint.html
* igt@xe_eudebug_online@stopped-thread:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#4837]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-beng-small-cm:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#261] / [Intel XE#688])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#688]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-adlp: NOTRUN -> [SKIP][137] ([Intel XE#1392]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1392]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2322]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
- shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#288]) +9 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_fault_mode@once-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#288]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-434/igt@xe_exec_fault_mode@once-rebind.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#3876])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-7/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@once-large-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#4943]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@xe_exec_system_allocator@once-large-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#4943]) +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#4915]) +51 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_exec_system_allocator@twice-mmap-shared-remap-dontunmap-eocheck:
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#4915]) +90 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-9/igt@xe_exec_system_allocator@twice-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2229])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@small-bar:
- shard-adlp: NOTRUN -> [SKIP][149] ([Intel XE#512])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_mmap@small-bar.html
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#512])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#1008])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-4/igt@xe_mmap@vram.html
* igt@xe_oa@oa-formats:
- shard-adlp: NOTRUN -> [SKIP][152] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_oa@oa-formats.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html
- shard-adlp: NOTRUN -> [SKIP][154] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-4/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#977])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read:
- shard-adlp: NOTRUN -> [SKIP][156] ([Intel XE#1061])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2427])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@xe_peer2peer@write.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][158] -> [ABORT][159] ([Intel XE#1794])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-5/igt@xe_pm@s4-basic.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-mocs:
- shard-adlp: NOTRUN -> [ABORT][160] ([Intel XE#1794])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-9/igt@xe_pm@s4-mocs.html
* igt@xe_pmu@gt-frequency:
- shard-adlp: NOTRUN -> [ABORT][161] ([Intel XE#5214]) +3 other tests abort
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-4/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#4733])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#944]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#944]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#944])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#944])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#4130])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-3/igt@xe_sriov_auto_provisioning@fair-allocation.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][168] ([Intel XE#3908]) -> [PASS][169] +1 other test pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: [DMESG-FAIL][170] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][172] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][176] ([Intel XE#2291]) -> [PASS][177] +5 other tests pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][178] ([Intel XE#4302]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][180] ([Intel XE#2316]) -> [PASS][181] +4 other tests pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [FAIL][182] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][184] ([Intel XE#886]) -> [PASS][185] +2 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
- shard-dg2-set2: [FAIL][186] ([Intel XE#301]) -> [PASS][187] +3 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][188] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][189] +2 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3:
- shard-bmg: [FAIL][190] ([Intel XE#2882]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-7/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-dg2-set2: [INCOMPLETE][192] ([Intel XE#2049]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-433/igt@kms_flip_tiling@flip-change-tiling.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-6-4-mc-ccs-to-4-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][194] -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-433/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-6-4-mc-ccs-to-4-mc-ccs.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-466/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-6-4-mc-ccs-to-4-mc-ccs.html
* igt@kms_lease@setcrtc-implicit-plane:
- shard-adlp: [DMESG-WARN][196] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][197] +3 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-6/igt@kms_lease@setcrtc-implicit-plane.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-8/igt@kms_lease@setcrtc-implicit-plane.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][198] ([Intel XE#2571]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][200] ([Intel XE#1435]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_exec_balancer@many-cm-virtual-rebind:
- shard-bmg: [FAIL][202] -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@xe_exec_balancer@many-cm-virtual-rebind.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-5/igt@xe_exec_balancer@many-cm-virtual-rebind.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [ABORT][204] ([Intel XE#1794]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-2/igt@xe_pm@s4-exec-after.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-lnl-3/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-adlp: [ABORT][206] ([Intel XE#1794]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-9/igt@xe_pm@s4-vm-bind-prefetch.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode0:
- shard-adlp: [FAIL][208] ([Intel XE#5263]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-4/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode0.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-3/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode0.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][210] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [INCOMPLETE][211] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][212] ([Intel XE#1178]) -> [SKIP][213] ([Intel XE#2341])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-bmg: [FAIL][214] ([Intel XE#2882]) -> [FAIL][215] ([Intel XE#2882] / [Intel XE#3098])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-plain-flip-ts-check@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][216] ([Intel XE#2882]) -> [FAIL][217] ([Intel XE#3098])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check@ac-dp2-hdmi-a3.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check@ac-dp2-hdmi-a3.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][218] ([Intel XE#2311]) -> [SKIP][219] ([Intel XE#2312]) +12 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][220] ([Intel XE#2312]) -> [SKIP][221] ([Intel XE#2311]) +16 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][222] ([Intel XE#4141]) -> [SKIP][223] ([Intel XE#2312]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][224] ([Intel XE#2312]) -> [SKIP][225] ([Intel XE#4141]) +10 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][226] ([Intel XE#2312]) -> [SKIP][227] ([Intel XE#2313]) +14 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][228] ([Intel XE#2313]) -> [SKIP][229] ([Intel XE#2312]) +11 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][230] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][231] ([Intel XE#3544])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][232] ([Intel XE#4596]) -> [SKIP][233] ([Intel XE#5021])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@xe_pmu@engine-activity-all-load-idle:
- shard-adlp: [ABORT][234] ([Intel XE#5214]) -> [DMESG-WARN][235] ([Intel XE#5214]) +2 other tests dmesg-warn
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-4/igt@xe_pmu@engine-activity-all-load-idle.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/shard-adlp-6/igt@xe_pmu@engine-activity-all-load-idle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[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#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[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#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[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#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
[Intel XE#5263]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5263
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* Linux: xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52 -> xe-pw-150192v2
IGT_8412: 8412
xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52: 6f72990d9e0fe084afe257621edd730444a8bc52
xe-pw-150192v2: 150192v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150192v2/index.html
[-- Attachment #2: Type: text/html, Size: 81255 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 3/5] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count
2025-06-17 2:09 ` [PATCH v2 3/5] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count Matt Roper
@ 2025-06-25 11:31 ` Vodapalli, Ravi Kumar
0 siblings, 0 replies; 13+ messages in thread
From: Vodapalli, Ravi Kumar @ 2025-06-25 11:31 UTC (permalink / raw)
To: intel-xe
On 6/17/2025 7:39 AM, Matt Roper wrote:
> Add a simple kunit test to ensure each platform's GT per tile count is
> non-zero and does not exceed the global XE_MAX_GT_PER_TILE definition.
>
> We need to move 'struct xe_subplatform_desc' from the .c file to the
> types header to ensure it is accessible from the kunit test.
>
> v2:
> - Rebase on latest xe_pci test rework from Michal and convert to
> a parameterized test that runs on each PCI ID supported by the
> driver.
>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/tests/xe_pci.c | 31 ++++++++++++++++++++
> drivers/gpu/drm/xe/tests/xe_pci_test.c | 12 ++++++++
> drivers/gpu/drm/xe/tests/xe_pci_test.h | 1 +
> drivers/gpu/drm/xe/xe_pci.c | 38 ------------------------
> drivers/gpu/drm/xe/xe_pci_types.h | 40 ++++++++++++++++++++++++++
> 5 files changed, 84 insertions(+), 38 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
> index baccb657bd05..9c715e59f030 100644
> --- a/drivers/gpu/drm/xe/tests/xe_pci.c
> +++ b/drivers/gpu/drm/xe/tests/xe_pci.c
> @@ -21,6 +21,18 @@ static void xe_ip_kunit_desc(const struct xe_ip *param, char *desc)
> KUNIT_ARRAY_PARAM(graphics_ip, graphics_ips, xe_ip_kunit_desc);
> KUNIT_ARRAY_PARAM(media_ip, media_ips, xe_ip_kunit_desc);
>
> +static void xe_pci_id_kunit_desc(const struct pci_device_id *param, char *desc)
> +{
> + const struct xe_device_desc *dev_desc =
> + (const struct xe_device_desc *)param->driver_data;
> +
> + if (dev_desc)
> + snprintf(desc, KUNIT_PARAM_DESC_SIZE, "0x%X (%s)",
> + param->device, dev_desc->platform_name);
> +}
> +
> +KUNIT_ARRAY_PARAM(pci_id, pciidlist, xe_pci_id_kunit_desc);
> +
> /**
> * xe_pci_graphics_ip_gen_param - Generate graphics struct xe_ip parameters
> * @prev: the pointer to the previous parameter to iterate from or NULL
> @@ -55,6 +67,25 @@ const void *xe_pci_media_ip_gen_param(const void *prev, char *desc)
> }
> EXPORT_SYMBOL_IF_KUNIT(xe_pci_media_ip_gen_param);
>
> +/**
> + * xe_pci_id_gen_param - Generate struct pci_device_id parameters
> + * @prev: the pointer to the previous parameter to iterate from or NULL
> + * @desc: output buffer with minimum size of KUNIT_PARAM_DESC_SIZE
> + *
> + * This function prepares struct pci_device_id parameter.
> + *
> + * To be used only as a parameter generator function in &KUNIT_CASE_PARAM.
> + *
> + * Return: pointer to the next parameter or NULL if no more parameters
> + */
> +const void *xe_pci_id_gen_param(const void *prev, char *desc)
> +{
> + const struct pci_device_id *pci = pci_id_gen_params(prev, desc);
> +
> + return pci->driver_data ? pci : NULL;
> +}
> +EXPORT_SYMBOL_IF_KUNIT(xe_pci_id_gen_param);
> +
> static void fake_read_gmdid(struct xe_device *xe, enum xe_gmdid_type type,
> u32 *ver, u32 *revid)
> {
> diff --git a/drivers/gpu/drm/xe/tests/xe_pci_test.c b/drivers/gpu/drm/xe/tests/xe_pci_test.c
> index 95fed41f7ff2..37b344df2dc3 100644
> --- a/drivers/gpu/drm/xe/tests/xe_pci_test.c
> +++ b/drivers/gpu/drm/xe/tests/xe_pci_test.c
> @@ -44,9 +44,21 @@ static void check_media_ip(struct kunit *test)
> KUNIT_ASSERT_EQ(test, mask, 0);
> }
>
> +static void check_platform_gt_count(struct kunit *test)
> +{
> + const struct pci_device_id *pci = test->param_value;
> + const struct xe_device_desc *desc =
> + (const struct xe_device_desc *)pci->driver_data;
> + int max_gt = desc->max_gt_per_tile;
> +
> + KUNIT_ASSERT_GT(test, max_gt, 0);
> + KUNIT_ASSERT_LE(test, max_gt, XE_MAX_GT_PER_TILE);
> +}
> +
> static struct kunit_case xe_pci_tests[] = {
> KUNIT_CASE_PARAM(check_graphics_ip, xe_pci_graphics_ip_gen_param),
> KUNIT_CASE_PARAM(check_media_ip, xe_pci_media_ip_gen_param),
> + KUNIT_CASE_PARAM(check_platform_gt_count, xe_pci_id_gen_param),
> {}
> };
>
> diff --git a/drivers/gpu/drm/xe/tests/xe_pci_test.h b/drivers/gpu/drm/xe/tests/xe_pci_test.h
> index 3a1df7a5e291..ce4d2b86b778 100644
> --- a/drivers/gpu/drm/xe/tests/xe_pci_test.h
> +++ b/drivers/gpu/drm/xe/tests/xe_pci_test.h
> @@ -27,6 +27,7 @@ int xe_pci_fake_device_init(struct xe_device *xe);
>
> const void *xe_pci_graphics_ip_gen_param(const void *prev, char *desc);
> const void *xe_pci_media_ip_gen_param(const void *prev, char *desc);
> +const void *xe_pci_id_gen_param(const void *prev, char *desc);
> const void *xe_pci_live_device_gen_param(const void *prev, char *desc);
>
> #endif
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 3b997c941bbc..a4885f64c2c4 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -38,44 +38,6 @@ enum toggle_d3cold {
> D3COLD_ENABLE,
> };
>
> -struct xe_subplatform_desc {
> - enum xe_subplatform subplatform;
> - const char *name;
> - const u16 *pciidlist;
> -};
> -
> -struct xe_device_desc {
> - /* Should only ever be set for platforms without GMD_ID */
> - const struct xe_ip *pre_gmdid_graphics_ip;
> - /* Should only ever be set for platforms without GMD_ID */
> - const struct xe_ip *pre_gmdid_media_ip;
> -
> - const char *platform_name;
> - const struct xe_subplatform_desc *subplatforms;
> -
> - enum xe_platform platform;
> -
> - u8 dma_mask_size;
> - u8 max_remote_tiles:2;
> - u8 max_gt_per_tile:2;
> -
> - u8 require_force_probe:1;
> - u8 is_dgfx:1;
> -
> - u8 has_display:1;
> - u8 has_fan_control:1;
> - u8 has_heci_gscfi:1;
> - u8 has_heci_cscfi:1;
> - u8 has_llc:1;
> - u8 has_mbx_power_limits:1;
> - u8 has_pxp:1;
> - u8 has_sriov:1;
> - u8 needs_scratch:1;
> - u8 skip_guc_pc:1;
> - u8 skip_mtcfg:1;
> - u8 skip_pcode:1;
> -};
> -
> __diag_push();
> __diag_ignore_all("-Woverride-init", "Allow field overrides in table");
>
> diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
> index ca6b10d35573..e4bfbafa6809 100644
> --- a/drivers/gpu/drm/xe/xe_pci_types.h
> +++ b/drivers/gpu/drm/xe/xe_pci_types.h
> @@ -8,6 +8,46 @@
>
> #include <linux/types.h>
>
> +#include "xe_platform_types.h"
> +
> +struct xe_subplatform_desc {
> + enum xe_subplatform subplatform;
> + const char *name;
> + const u16 *pciidlist;
> +};
> +
> +struct xe_device_desc {
> + /* Should only ever be set for platforms without GMD_ID */
> + const struct xe_ip *pre_gmdid_graphics_ip;
> + /* Should only ever be set for platforms without GMD_ID */
> + const struct xe_ip *pre_gmdid_media_ip;
> +
> + const char *platform_name;
> + const struct xe_subplatform_desc *subplatforms;
> +
> + enum xe_platform platform;
> +
> + u8 dma_mask_size;
> + u8 max_remote_tiles:2;
> + u8 max_gt_per_tile:2;
> +
> + u8 require_force_probe:1;
> + u8 is_dgfx:1;
> +
> + u8 has_display:1;
> + u8 has_fan_control:1;
> + u8 has_heci_gscfi:1;
> + u8 has_heci_cscfi:1;
> + u8 has_llc:1;
> + u8 has_mbx_power_limits:1;
> + u8 has_pxp:1;
> + u8 has_sriov:1;
> + u8 needs_scratch:1;
> + u8 skip_guc_pc:1;
> + u8 skip_mtcfg:1;
> + u8 skip_pcode:1;
> +};
> +
> struct xe_graphics_desc {
> u8 va_bits;
> u8 vm_max_level;
Looks fine
Reviewed-by: Ravi Kumar Vodapalli<ravi.kumar.vodapalli@intel.com>
Thanks,
Ravi Kumar V
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 4/5] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
2025-06-17 2:09 ` [PATCH v2 4/5] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms Matt Roper
@ 2025-06-25 11:41 ` Vodapalli, Ravi Kumar
2025-06-30 16:48 ` Matt Roper
0 siblings, 1 reply; 13+ messages in thread
From: Vodapalli, Ravi Kumar @ 2025-06-25 11:41 UTC (permalink / raw)
To: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3057 bytes --]
On 6/17/2025 7:39 AM, Matt Roper wrote:
> Although "multi-tile" and "multiple GTs per tile" are mutually-exclusive
> characteristics on all of our platforms today, this may not always be
> true. Assign GT IDs according to xe->info.max_gt_per_tile in a way that
> should work even if future platforms have different configurations.
>
> This patch should not change the behavior of current platforms; it only
> future-proofs for potential future designs.
>
> Signed-off-by: Matt Roper<matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/xe_mmio.c | 8 --------
> drivers/gpu/drm/xe/xe_pci.c | 14 ++++----------
> 2 files changed, 4 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
> index 7357458bc0d2..b65d888ee8e4 100644
> --- a/drivers/gpu/drm/xe/xe_mmio.c
> +++ b/drivers/gpu/drm/xe/xe_mmio.c
> @@ -82,14 +82,6 @@ static void mmio_multi_tile_setup(struct xe_device *xe, size_t tile_mmio_size)
> drm_info(&xe->drm, "tile_count: %d, reduced_tile_count %d\n",
> xe->info.tile_count, tile_count);
> xe->info.tile_count = tile_count;
> -
> - /*
> - * FIXME: Needs some work for standalone media, but
> - * should be impossible with multi-tile for now:
> - * multi-tile platform with standalone media doesn't
> - * exist
> - */
> - xe->info.gt_count = xe->info.tile_count;
> }
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index a4885f64c2c4..b29252abbf3e 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -687,10 +687,11 @@ static int xe_info_init(struct xe_device *xe,
> */
> for_each_tile(tile, xe, id) {
> gt = tile->primary_gt;
> - gt->info.id = xe->info.gt_count++;
> gt->info.type = XE_GT_TYPE_MAIN;
> + gt->info.id = tile->id * xe->info.max_gt_per_tile;
why gt->info.id is equal to tile->id * xe->info.max_gt_per_tile then the
resultant number exceeds max_gt_per_tile , i dont know whether we can
assign gt->info.id as equal to tile->id
> gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
> gt->info.engine_mask = graphics_desc->hw_engine_mask;
> + xe->info.gt_count++;
>
> if (MEDIA_VER(xe) < 13 && media_desc)
> gt->info.engine_mask |= media_desc->hw_engine_mask;
> @@ -708,17 +709,10 @@ static int xe_info_init(struct xe_device *xe,
>
> gt = tile->media_gt;
> gt->info.type = XE_GT_TYPE_MEDIA;
> + gt->info.id = tile->id * xe->info.max_gt_per_tile + 1;
> gt->info.has_indirect_ring_state = media_desc->has_indirect_ring_state;
> gt->info.engine_mask = media_desc->hw_engine_mask;
> -
> - /*
> - * FIXME: At the moment multi-tile and standalone media are
> - * mutually exclusive on current platforms. We'll need to
> - * come up with a better way to number GTs if we ever wind
> - * up with platforms that support both together.
> - */
> - drm_WARN_ON(&xe->drm, id != 0);
> - gt->info.id = xe->info.gt_count++;
> + xe->info.gt_count++;
> }
>
> return 0;
[-- Attachment #2: Type: text/html, Size: 3865 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 4/5] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms
2025-06-25 11:41 ` Vodapalli, Ravi Kumar
@ 2025-06-30 16:48 ` Matt Roper
0 siblings, 0 replies; 13+ messages in thread
From: Matt Roper @ 2025-06-30 16:48 UTC (permalink / raw)
To: Vodapalli, Ravi Kumar; +Cc: intel-xe
On Wed, Jun 25, 2025 at 05:11:27PM +0530, Vodapalli, Ravi Kumar wrote:
>
>
> On 6/17/2025 7:39 AM, Matt Roper wrote:
> > Although "multi-tile" and "multiple GTs per tile" are mutually-exclusive
> > characteristics on all of our platforms today, this may not always be
> > true. Assign GT IDs according to xe->info.max_gt_per_tile in a way that
> > should work even if future platforms have different configurations.
> >
> > This patch should not change the behavior of current platforms; it only
> > future-proofs for potential future designs.
> >
> > Signed-off-by: Matt Roper<matthew.d.roper@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_mmio.c | 8 --------
> > drivers/gpu/drm/xe/xe_pci.c | 14 ++++----------
> > 2 files changed, 4 insertions(+), 18 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
> > index 7357458bc0d2..b65d888ee8e4 100644
> > --- a/drivers/gpu/drm/xe/xe_mmio.c
> > +++ b/drivers/gpu/drm/xe/xe_mmio.c
> > @@ -82,14 +82,6 @@ static void mmio_multi_tile_setup(struct xe_device *xe, size_t tile_mmio_size)
> > drm_info(&xe->drm, "tile_count: %d, reduced_tile_count %d\n",
> > xe->info.tile_count, tile_count);
> > xe->info.tile_count = tile_count;
> > -
> > - /*
> > - * FIXME: Needs some work for standalone media, but
> > - * should be impossible with multi-tile for now:
> > - * multi-tile platform with standalone media doesn't
> > - * exist
> > - */
> > - xe->info.gt_count = xe->info.tile_count;
> > }
> > }
> > diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> > index a4885f64c2c4..b29252abbf3e 100644
> > --- a/drivers/gpu/drm/xe/xe_pci.c
> > +++ b/drivers/gpu/drm/xe/xe_pci.c
> > @@ -687,10 +687,11 @@ static int xe_info_init(struct xe_device *xe,
> > */
> > for_each_tile(tile, xe, id) {
> > gt = tile->primary_gt;
> > - gt->info.id = xe->info.gt_count++;
> > gt->info.type = XE_GT_TYPE_MAIN;
> > + gt->info.id = tile->id * xe->info.max_gt_per_tile;
> why gt->info.id is equal to tile->id * xe->info.max_gt_per_tile then the
> resultant number exceeds max_gt_per_tile , i dont know whether we can assign
> gt->info.id as equal to tile->id
Yes, this is correct. Supposed a future platform has four types of GTs:
primary, media, foo, and bar. That platform would have max_gt_per_tile
set to 4. Also supposed that the same future platform has three tiles.
In this example, the overall possible GT IDs in the system would be
assigned as:
0: tile 0 primary
1: tile 0 media
2: tile 0 foo
3: tile 0 bar
4: tile 1 primary
5: tile 1 media
6: tile 1 foo
7: tile 1 bar
8: tile 2 primary
9: tile 2 media
10: tile 2 foo
11: tile 2 bar
So the GT ID for a specific tile's GTs are:
primary: tile ID * max_gt_per_tile + 0
media: tile ID * max_gt_per_tile + 1
foo: tile ID * max_gt_per_tile + 2
bar: tile ID * max_gt_per_tile + 3
Some of these GTs may or may not exist depending on fusing or other
platform details; userspace uses the GT query ioctl to discover the
available GTs. It might see something from the query interface like:
(GT0 primary, GT1 media, GT3 bar, GT4 primary, GT6 foo, GT8 primary)
meaning there are 6 usable GTs in the system, and the IDs "skip" some
numbers for cases where a GT does not exist.
Matt
> > gt->info.has_indirect_ring_state = graphics_desc->has_indirect_ring_state;
> > gt->info.engine_mask = graphics_desc->hw_engine_mask;
> > + xe->info.gt_count++;
> > if (MEDIA_VER(xe) < 13 && media_desc)
> > gt->info.engine_mask |= media_desc->hw_engine_mask;
> > @@ -708,17 +709,10 @@ static int xe_info_init(struct xe_device *xe,
> > gt = tile->media_gt;
> > gt->info.type = XE_GT_TYPE_MEDIA;
> > + gt->info.id = tile->id * xe->info.max_gt_per_tile + 1;
> > gt->info.has_indirect_ring_state = media_desc->has_indirect_ring_state;
> > gt->info.engine_mask = media_desc->hw_engine_mask;
> > -
> > - /*
> > - * FIXME: At the moment multi-tile and standalone media are
> > - * mutually exclusive on current platforms. We'll need to
> > - * come up with a better way to number GTs if we ever wind
> > - * up with platforms that support both together.
> > - */
> > - drm_WARN_ON(&xe->drm, id != 0);
> > - gt->info.id = xe->info.gt_count++;
> > + xe->info.gt_count++;
> > }
> > return 0;
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-06-30 16:48 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-17 2:09 [PATCH v2 0/5] Future-proof for multi-tile + multi-GT cases Matt Roper
2025-06-17 2:09 ` [PATCH v2 1/5] drm/xe: Export xe_step_name for kunit tests Matt Roper
2025-06-17 2:09 ` [PATCH v2 2/5] drm/xe: Track maximum GTs per tile on a per-platform basis Matt Roper
2025-06-17 2:09 ` [PATCH v2 3/5] drm/xe/tests/pci: Ensure all platforms have a valid GT/tile count Matt Roper
2025-06-25 11:31 ` Vodapalli, Ravi Kumar
2025-06-17 2:09 ` [PATCH v2 4/5] drm/xe: Assign GT IDs properly on multi-tile + multi-GT platforms Matt Roper
2025-06-25 11:41 ` Vodapalli, Ravi Kumar
2025-06-30 16:48 ` Matt Roper
2025-06-17 2:09 ` [PATCH v2 5/5] drm/xe: Don't compare GT ID to GT count when determining valid GTs Matt Roper
2025-06-17 2:16 ` ✗ CI.checkpatch: warning for Future-proof for multi-tile + multi-GT cases (rev2) Patchwork
2025-06-17 2:17 ` ✓ CI.KUnit: success " Patchwork
2025-06-17 2:57 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-06-17 12:44 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox