* [PATCH 0/3] Allow to filter-out some configfs attrs
@ 2025-09-02 13:17 Michal Wajdeczko
2025-09-02 13:17 ` [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini Michal Wajdeczko
` (8 more replies)
0 siblings, 9 replies; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-02 13:17 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
Begin with survivability_mode which is not always applicable.
Michal Wajdeczko (3):
drm/xe/configfs: Don't touch survivability_mode on fini
drm/xe/configfs: Prepare to filter-out configfs attributes
drm/xe/configfs: Don't expose survivability_mode if not applicable
drivers/gpu/drm/xe/xe_configfs.c | 42 ++++++++++++----------
drivers/gpu/drm/xe/xe_configfs.h | 2 --
drivers/gpu/drm/xe/xe_survivability_mode.c | 12 +------
3 files changed, 24 insertions(+), 32 deletions(-)
--
2.47.1
^ permalink raw reply [flat|nested] 24+ messages in thread
* [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
@ 2025-09-02 13:17 ` Michal Wajdeczko
2025-09-02 16:37 ` Summers, Stuart
` (2 more replies)
2025-09-02 13:17 ` [PATCH 2/3] drm/xe/configfs: Prepare to filter-out configfs attributes Michal Wajdeczko
` (7 subsequent siblings)
8 siblings, 3 replies; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-02 13:17 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Riana Tauro
This is a user controlled configfs attribute, we should not
modify that outside the configfs attr.store() implementation.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Riana Tauro <riana.tauro@intel.com>
---
drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
index 53c5af4b810c..79426ea46861 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
@@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
struct device *dev = &pdev->dev;
- xe_configfs_clear_survivability_mode(pdev);
sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
}
--
2.47.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 2/3] drm/xe/configfs: Prepare to filter-out configfs attributes
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
2025-09-02 13:17 ` [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini Michal Wajdeczko
@ 2025-09-02 13:17 ` Michal Wajdeczko
2025-09-02 13:17 ` [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable Michal Wajdeczko
` (6 subsequent siblings)
8 siblings, 0 replies; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-02 13:17 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi
Implement empty ops.is_visible hook to allow filtering-out any not
supported attributes, as not all of them are applicable on all xe
platforms.
Since during creation of each new configfs directory we are looking
for xe device descriptor to validate that xe driver supports given
PCI device, store reference to that descriptor to allow later use
while doing attribute filtering.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_configfs.c | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 1025d3979b06..43f000260752 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -134,6 +134,8 @@ struct xe_config_group_device {
/* protects attributes */
struct mutex lock;
+ /* matching descriptor */
+ const struct xe_device_desc *desc;
};
static const struct xe_config_device device_defaults = {
@@ -362,8 +364,21 @@ static struct configfs_item_operations xe_config_device_ops = {
.release = xe_config_device_release,
};
+static bool xe_config_device_is_visible(struct config_item *item,
+ struct configfs_attribute *attr, int n)
+{
+ struct xe_config_group_device *dev = to_xe_config_group_device(item);
+
+ return dev->desc; /* shall be always true */
+}
+
+static struct configfs_group_operations xe_config_device_group_ops = {
+ .is_visible = xe_config_device_is_visible,
+};
+
static const struct config_item_type xe_config_device_type = {
.ct_item_ops = &xe_config_device_ops,
+ .ct_group_ops = &xe_config_device_group_ops,
.ct_attrs = xe_config_device_attrs,
.ct_owner = THIS_MODULE,
};
@@ -442,6 +457,7 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
if (!dev)
return ERR_PTR(-ENOMEM);
+ dev->desc = match;
set_device_defaults(&dev->config);
config_group_init_type_name(&dev->group, name, &xe_config_device_type);
@@ -451,12 +467,12 @@ static struct config_group *xe_config_make_device_group(struct config_group *gro
return &dev->group;
}
-static struct configfs_group_operations xe_config_device_group_ops = {
+static struct configfs_group_operations xe_config_group_ops = {
.make_group = xe_config_make_device_group,
};
static const struct config_item_type xe_configfs_type = {
- .ct_group_ops = &xe_config_device_group_ops,
+ .ct_group_ops = &xe_config_group_ops,
.ct_owner = THIS_MODULE,
};
--
2.47.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
2025-09-02 13:17 ` [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini Michal Wajdeczko
2025-09-02 13:17 ` [PATCH 2/3] drm/xe/configfs: Prepare to filter-out configfs attributes Michal Wajdeczko
@ 2025-09-02 13:17 ` Michal Wajdeczko
2025-09-02 17:25 ` Summers, Stuart
2025-09-02 18:10 ` Lucas De Marchi
2025-09-02 15:19 ` ✓ CI.KUnit: success for Allow to filter-out some configfs attrs Patchwork
` (5 subsequent siblings)
8 siblings, 2 replies; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-02 13:17 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Riana Tauro
The survivability_mode attribute is applicable only for DGFX and
platforms newer than BATTLEMAGE. Use .is_visible() hook to hide
this attribute when above conditions are not met. Remove code that
was trying to fix such configuration during the runtime.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Riana Tauro <riana.tauro@intel.com>
---
drivers/gpu/drm/xe/xe_configfs.c | 24 ++++++----------------
drivers/gpu/drm/xe/xe_configfs.h | 2 --
drivers/gpu/drm/xe/xe_survivability_mode.c | 11 +---------
3 files changed, 7 insertions(+), 30 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
index 43f000260752..0337811864cd 100644
--- a/drivers/gpu/drm/xe/xe_configfs.c
+++ b/drivers/gpu/drm/xe/xe_configfs.c
@@ -369,7 +369,12 @@ static bool xe_config_device_is_visible(struct config_item *item,
{
struct xe_config_group_device *dev = to_xe_config_group_device(item);
- return dev->desc; /* shall be always true */
+ if (attr == &attr_survivability_mode) {
+ if (!dev->desc->is_dgfx || dev->desc->platform < XE_BATTLEMAGE)
+ return false;
+ }
+
+ return true;
}
static struct configfs_group_operations xe_config_device_group_ops = {
@@ -558,23 +563,6 @@ bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
return mode;
}
-/**
- * xe_configfs_clear_survivability_mode - clear configfs survivability mode
- * @pdev: pci device
- */
-void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
-{
- struct xe_config_group_device *dev = find_xe_config_group_device(pdev);
-
- if (!dev)
- return;
-
- guard(mutex)(&dev->lock);
- dev->config.survivability_mode = 0;
-
- config_group_put(&dev->group);
-}
-
/**
* xe_configfs_get_engines_allowed - get engine allowed mask from configfs
* @pdev: pci device
diff --git a/drivers/gpu/drm/xe/xe_configfs.h b/drivers/gpu/drm/xe/xe_configfs.h
index 58c8c3164000..1402e863b71c 100644
--- a/drivers/gpu/drm/xe/xe_configfs.h
+++ b/drivers/gpu/drm/xe/xe_configfs.h
@@ -15,7 +15,6 @@ int xe_configfs_init(void);
void xe_configfs_exit(void);
void xe_configfs_check_device(struct pci_dev *pdev);
bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
-void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev);
#else
@@ -23,7 +22,6 @@ static inline int xe_configfs_init(void) { return 0; }
static inline void xe_configfs_exit(void) { }
static inline void xe_configfs_check_device(struct pci_dev *pdev) { }
static inline bool xe_configfs_get_survivability_mode(struct pci_dev *pdev) { return false; }
-static inline void xe_configfs_clear_survivability_mode(struct pci_dev *pdev) { }
static inline u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev) { return U64_MAX; }
static inline bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev) { return false; }
#endif
diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
index 79426ea46861..19a1732e33d4 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
@@ -287,19 +287,10 @@ bool xe_survivability_mode_is_requested(struct xe_device *xe)
u32 data;
bool survivability_mode;
- if (!IS_DGFX(xe) || IS_SRIOV_VF(xe))
+ if (!IS_DGFX(xe) || IS_SRIOV_VF(xe) || xe->info.platform < XE_BATTLEMAGE)
return false;
survivability_mode = xe_configfs_get_survivability_mode(pdev);
-
- if (xe->info.platform < XE_BATTLEMAGE) {
- if (survivability_mode) {
- dev_err(&pdev->dev, "Survivability Mode is not supported on this card\n");
- xe_configfs_clear_survivability_mode(pdev);
- }
- return false;
- }
-
/* Enable survivability mode if set via configfs */
if (survivability_mode)
return true;
--
2.47.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* ✓ CI.KUnit: success for Allow to filter-out some configfs attrs
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
` (2 preceding siblings ...)
2025-09-02 13:17 ` [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable Michal Wajdeczko
@ 2025-09-02 15:19 ` Patchwork
2025-09-02 15:56 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-09-02 15:19 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow to filter-out some configfs attrs
URL : https://patchwork.freedesktop.org/series/153882/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:18:00] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:18:05] 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
[15:18:34] Starting KUnit Kernel (1/1)...
[15:18:34] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:18:34] ================== guc_buf (11 subtests) ===================
[15:18:34] [PASSED] test_smallest
[15:18:34] [PASSED] test_largest
[15:18:34] [PASSED] test_granular
[15:18:34] [PASSED] test_unique
[15:18:34] [PASSED] test_overlap
[15:18:34] [PASSED] test_reusable
[15:18:34] [PASSED] test_too_big
[15:18:34] [PASSED] test_flush
[15:18:34] [PASSED] test_lookup
[15:18:34] [PASSED] test_data
[15:18:34] [PASSED] test_class
[15:18:34] ===================== [PASSED] guc_buf =====================
[15:18:34] =================== guc_dbm (7 subtests) ===================
[15:18:34] [PASSED] test_empty
[15:18:34] [PASSED] test_default
[15:18:34] ======================== test_size ========================
[15:18:34] [PASSED] 4
[15:18:34] [PASSED] 8
[15:18:34] [PASSED] 32
[15:18:34] [PASSED] 256
[15:18:34] ==================== [PASSED] test_size ====================
[15:18:34] ======================= test_reuse ========================
[15:18:34] [PASSED] 4
[15:18:34] [PASSED] 8
[15:18:34] [PASSED] 32
[15:18:34] [PASSED] 256
[15:18:34] =================== [PASSED] test_reuse ====================
[15:18:34] =================== test_range_overlap ====================
[15:18:34] [PASSED] 4
[15:18:34] [PASSED] 8
[15:18:34] [PASSED] 32
[15:18:34] [PASSED] 256
[15:18:34] =============== [PASSED] test_range_overlap ================
[15:18:34] =================== test_range_compact ====================
[15:18:34] [PASSED] 4
[15:18:34] [PASSED] 8
[15:18:34] [PASSED] 32
[15:18:34] [PASSED] 256
[15:18:34] =============== [PASSED] test_range_compact ================
[15:18:34] ==================== test_range_spare =====================
[15:18:34] [PASSED] 4
[15:18:34] [PASSED] 8
[15:18:34] [PASSED] 32
[15:18:34] [PASSED] 256
[15:18:34] ================ [PASSED] test_range_spare =================
[15:18:34] ===================== [PASSED] guc_dbm =====================
[15:18:34] =================== guc_idm (6 subtests) ===================
[15:18:34] [PASSED] bad_init
[15:18:34] [PASSED] no_init
[15:18:34] [PASSED] init_fini
[15:18:34] [PASSED] check_used
[15:18:34] [PASSED] check_quota
[15:18:34] [PASSED] check_all
[15:18:34] ===================== [PASSED] guc_idm =====================
[15:18:34] ================== no_relay (3 subtests) ===================
[15:18:34] [PASSED] xe_drops_guc2pf_if_not_ready
[15:18:34] [PASSED] xe_drops_guc2vf_if_not_ready
[15:18:34] [PASSED] xe_rejects_send_if_not_ready
[15:18:34] ==================== [PASSED] no_relay =====================
[15:18:34] ================== pf_relay (14 subtests) ==================
[15:18:34] [PASSED] pf_rejects_guc2pf_too_short
[15:18:34] [PASSED] pf_rejects_guc2pf_too_long
[15:18:34] [PASSED] pf_rejects_guc2pf_no_payload
[15:18:34] [PASSED] pf_fails_no_payload
[15:18:34] [PASSED] pf_fails_bad_origin
[15:18:34] [PASSED] pf_fails_bad_type
[15:18:34] [PASSED] pf_txn_reports_error
[15:18:34] [PASSED] pf_txn_sends_pf2guc
[15:18:34] [PASSED] pf_sends_pf2guc
[15:18:34] [SKIPPED] pf_loopback_nop
[15:18:34] [SKIPPED] pf_loopback_echo
[15:18:34] [SKIPPED] pf_loopback_fail
[15:18:34] [SKIPPED] pf_loopback_busy
[15:18:34] [SKIPPED] pf_loopback_retry
[15:18:34] ==================== [PASSED] pf_relay =====================
[15:18:34] ================== vf_relay (3 subtests) ===================
[15:18:34] [PASSED] vf_rejects_guc2vf_too_short
[15:18:34] [PASSED] vf_rejects_guc2vf_too_long
[15:18:34] [PASSED] vf_rejects_guc2vf_no_payload
[15:18:34] ==================== [PASSED] vf_relay =====================
[15:18:34] ===================== lmtt (1 subtest) =====================
[15:18:34] ======================== test_ops =========================
[15:18:34] [PASSED] 2-level
[15:18:34] [PASSED] multi-level
[15:18:34] ==================== [PASSED] test_ops =====================
[15:18:34] ====================== [PASSED] lmtt =======================
[15:18:34] ================= pf_service (11 subtests) =================
[15:18:34] [PASSED] pf_negotiate_any
[15:18:34] [PASSED] pf_negotiate_base_match
[15:18:34] [PASSED] pf_negotiate_base_newer
[15:18:34] [PASSED] pf_negotiate_base_next
[15:18:34] [SKIPPED] pf_negotiate_base_older
[15:18:34] [PASSED] pf_negotiate_base_prev
[15:18:34] [PASSED] pf_negotiate_latest_match
[15:18:34] [PASSED] pf_negotiate_latest_newer
[15:18:34] [PASSED] pf_negotiate_latest_next
[15:18:34] [SKIPPED] pf_negotiate_latest_older
[15:18:34] [SKIPPED] pf_negotiate_latest_prev
[15:18:34] =================== [PASSED] pf_service ====================
[15:18:34] =================== xe_mocs (2 subtests) ===================
[15:18:34] ================ xe_live_mocs_kernel_kunit ================
[15:18:34] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:18:34] ================ xe_live_mocs_reset_kunit =================
[15:18:34] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:18:34] ==================== [SKIPPED] xe_mocs =====================
[15:18:34] ================= xe_migrate (2 subtests) ==================
[15:18:34] ================= xe_migrate_sanity_kunit =================
[15:18:34] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:18:34] ================== xe_validate_ccs_kunit ==================
[15:18:34] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:18:34] =================== [SKIPPED] xe_migrate ===================
[15:18:34] ================== xe_dma_buf (1 subtest) ==================
[15:18:34] ==================== xe_dma_buf_kunit =====================
[15:18:34] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:18:34] =================== [SKIPPED] xe_dma_buf ===================
[15:18:34] ================= xe_bo_shrink (1 subtest) =================
[15:18:34] =================== xe_bo_shrink_kunit ====================
[15:18:34] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:18:34] ================== [SKIPPED] xe_bo_shrink ==================
[15:18:34] ==================== xe_bo (2 subtests) ====================
[15:18:34] ================== xe_ccs_migrate_kunit ===================
[15:18:34] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:18:34] ==================== xe_bo_evict_kunit ====================
[15:18:34] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:18:34] ===================== [SKIPPED] xe_bo ======================
[15:18:34] ==================== args (11 subtests) ====================
[15:18:34] [PASSED] count_args_test
[15:18:34] [PASSED] call_args_example
[15:18:34] [PASSED] call_args_test
[15:18:34] [PASSED] drop_first_arg_example
[15:18:34] [PASSED] drop_first_arg_test
[15:18:34] [PASSED] first_arg_example
[15:18:34] [PASSED] first_arg_test
[15:18:34] [PASSED] last_arg_example
[15:18:34] [PASSED] last_arg_test
[15:18:34] [PASSED] pick_arg_example
[15:18:34] [PASSED] sep_comma_example
[15:18:34] ====================== [PASSED] args =======================
[15:18:34] =================== xe_pci (3 subtests) ====================
[15:18:34] ==================== check_graphics_ip ====================
[15:18:34] [PASSED] 12.70 Xe_LPG
[15:18:34] [PASSED] 12.71 Xe_LPG
[15:18:34] [PASSED] 12.74 Xe_LPG+
[15:18:34] [PASSED] 20.01 Xe2_HPG
[15:18:34] [PASSED] 20.02 Xe2_HPG
[15:18:34] [PASSED] 20.04 Xe2_LPG
[15:18:34] [PASSED] 30.00 Xe3_LPG
[15:18:34] [PASSED] 30.01 Xe3_LPG
[15:18:34] [PASSED] 30.03 Xe3_LPG
[15:18:34] ================ [PASSED] check_graphics_ip ================
[15:18:34] ===================== check_media_ip ======================
[15:18:34] [PASSED] 13.00 Xe_LPM+
[15:18:34] [PASSED] 13.01 Xe2_HPM
[15:18:34] [PASSED] 20.00 Xe2_LPM
[15:18:34] [PASSED] 30.00 Xe3_LPM
[15:18:34] [PASSED] 30.02 Xe3_LPM
[15:18:34] ================= [PASSED] check_media_ip ==================
[15:18:34] ================= check_platform_gt_count =================
[15:18:34] [PASSED] 0x9A60 (TIGERLAKE)
[15:18:34] [PASSED] 0x9A68 (TIGERLAKE)
[15:18:34] [PASSED] 0x9A70 (TIGERLAKE)
[15:18:34] [PASSED] 0x9A40 (TIGERLAKE)
[15:18:34] [PASSED] 0x9A49 (TIGERLAKE)
[15:18:34] [PASSED] 0x9A59 (TIGERLAKE)
[15:18:34] [PASSED] 0x9A78 (TIGERLAKE)
[15:18:34] [PASSED] 0x9AC0 (TIGERLAKE)
[15:18:34] [PASSED] 0x9AC9 (TIGERLAKE)
[15:18:34] [PASSED] 0x9AD9 (TIGERLAKE)
[15:18:34] [PASSED] 0x9AF8 (TIGERLAKE)
[15:18:34] [PASSED] 0x4C80 (ROCKETLAKE)
[15:18:34] [PASSED] 0x4C8A (ROCKETLAKE)
[15:18:34] [PASSED] 0x4C8B (ROCKETLAKE)
[15:18:34] [PASSED] 0x4C8C (ROCKETLAKE)
[15:18:34] [PASSED] 0x4C90 (ROCKETLAKE)
[15:18:34] [PASSED] 0x4C9A (ROCKETLAKE)
[15:18:34] [PASSED] 0x4680 (ALDERLAKE_S)
[15:18:34] [PASSED] 0x4682 (ALDERLAKE_S)
[15:18:34] [PASSED] 0x4688 (ALDERLAKE_S)
[15:18:34] [PASSED] 0x468A (ALDERLAKE_S)
[15:18:34] [PASSED] 0x468B (ALDERLAKE_S)
[15:18:34] [PASSED] 0x4690 (ALDERLAKE_S)
[15:18:34] [PASSED] 0x4692 (ALDERLAKE_S)
[15:18:34] [PASSED] 0x4693 (ALDERLAKE_S)
[15:18:34] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46AA (ALDERLAKE_P)
[15:18:34] [PASSED] 0x462A (ALDERLAKE_P)
[15:18:34] [PASSED] 0x4626 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x4628 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:18:34] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:18:34] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:18:34] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:18:34] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:18:34] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:18:34] [PASSED] 0xA721 (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA720 (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:18:34] [PASSED] 0xA780 (ALDERLAKE_S)
[15:18:34] [PASSED] 0xA781 (ALDERLAKE_S)
[15:18:34] [PASSED] 0xA782 (ALDERLAKE_S)
[15:18:34] [PASSED] 0xA783 (ALDERLAKE_S)
[15:18:34] [PASSED] 0xA788 (ALDERLAKE_S)
[15:18:34] [PASSED] 0xA789 (ALDERLAKE_S)
[15:18:34] [PASSED] 0xA78A (ALDERLAKE_S)
[15:18:34] [PASSED] 0xA78B (ALDERLAKE_S)
[15:18:34] [PASSED] 0x4905 (DG1)
[15:18:34] [PASSED] 0x4906 (DG1)
[15:18:34] [PASSED] 0x4907 (DG1)
[15:18:34] [PASSED] 0x4908 (DG1)
[15:18:34] [PASSED] 0x4909 (DG1)
[15:18:34] [PASSED] 0x56C0 (DG2)
[15:18:34] [PASSED] 0x56C2 (DG2)
[15:18:34] [PASSED] 0x56C1 (DG2)
[15:18:34] [PASSED] 0x7D51 (METEORLAKE)
[15:18:34] [PASSED] 0x7DD1 (METEORLAKE)
[15:18:34] [PASSED] 0x7D41 (METEORLAKE)
[15:18:34] [PASSED] 0x7D67 (METEORLAKE)
[15:18:34] [PASSED] 0xB640 (METEORLAKE)
[15:18:34] [PASSED] 0x56A0 (DG2)
[15:18:34] [PASSED] 0x56A1 (DG2)
[15:18:34] [PASSED] 0x56A2 (DG2)
[15:18:34] [PASSED] 0x56BE (DG2)
[15:18:34] [PASSED] 0x56BF (DG2)
[15:18:34] [PASSED] 0x5690 (DG2)
[15:18:34] [PASSED] 0x5691 (DG2)
[15:18:34] [PASSED] 0x5692 (DG2)
[15:18:34] [PASSED] 0x56A5 (DG2)
[15:18:34] [PASSED] 0x56A6 (DG2)
[15:18:34] [PASSED] 0x56B0 (DG2)
[15:18:34] [PASSED] 0x56B1 (DG2)
[15:18:34] [PASSED] 0x56BA (DG2)
[15:18:34] [PASSED] 0x56BB (DG2)
[15:18:34] [PASSED] 0x56BC (DG2)
[15:18:34] [PASSED] 0x56BD (DG2)
[15:18:34] [PASSED] 0x5693 (DG2)
[15:18:34] [PASSED] 0x5694 (DG2)
[15:18:34] [PASSED] 0x5695 (DG2)
[15:18:34] [PASSED] 0x56A3 (DG2)
[15:18:34] [PASSED] 0x56A4 (DG2)
[15:18:34] [PASSED] 0x56B2 (DG2)
[15:18:34] [PASSED] 0x56B3 (DG2)
[15:18:34] [PASSED] 0x5696 (DG2)
[15:18:34] [PASSED] 0x5697 (DG2)
[15:18:34] [PASSED] 0xB69 (PVC)
[15:18:34] [PASSED] 0xB6E (PVC)
[15:18:34] [PASSED] 0xBD4 (PVC)
[15:18:34] [PASSED] 0xBD5 (PVC)
[15:18:34] [PASSED] 0xBD6 (PVC)
[15:18:34] [PASSED] 0xBD7 (PVC)
[15:18:34] [PASSED] 0xBD8 (PVC)
[15:18:34] [PASSED] 0xBD9 (PVC)
[15:18:34] [PASSED] 0xBDA (PVC)
[15:18:34] [PASSED] 0xBDB (PVC)
[15:18:34] [PASSED] 0xBE0 (PVC)
[15:18:34] [PASSED] 0xBE1 (PVC)
[15:18:34] [PASSED] 0xBE5 (PVC)
[15:18:34] [PASSED] 0x7D40 (METEORLAKE)
[15:18:34] [PASSED] 0x7D45 (METEORLAKE)
[15:18:34] [PASSED] 0x7D55 (METEORLAKE)
[15:18:34] [PASSED] 0x7D60 (METEORLAKE)
[15:18:34] [PASSED] 0x7DD5 (METEORLAKE)
[15:18:34] [PASSED] 0x6420 (LUNARLAKE)
[15:18:34] [PASSED] 0x64A0 (LUNARLAKE)
[15:18:34] [PASSED] 0x64B0 (LUNARLAKE)
[15:18:34] [PASSED] 0xE202 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE209 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE20B (BATTLEMAGE)
[15:18:34] [PASSED] 0xE20C (BATTLEMAGE)
[15:18:34] [PASSED] 0xE20D (BATTLEMAGE)
[15:18:34] [PASSED] 0xE210 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE211 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE212 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE216 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE220 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE221 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE222 (BATTLEMAGE)
[15:18:34] [PASSED] 0xE223 (BATTLEMAGE)
[15:18:34] [PASSED] 0xB080 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB081 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB082 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB083 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB084 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB085 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB086 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB087 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB08F (PANTHERLAKE)
[15:18:34] [PASSED] 0xB090 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:18:34] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:18:34] [PASSED] 0xFD80 (PANTHERLAKE)
[15:18:34] [PASSED] 0xFD81 (PANTHERLAKE)
[15:18:34] ============= [PASSED] check_platform_gt_count =============
[15:18:34] ===================== [PASSED] xe_pci ======================
[15:18:34] =================== xe_rtp (2 subtests) ====================
[15:18:34] =============== xe_rtp_process_to_sr_tests ================
[15:18:34] [PASSED] coalesce-same-reg
[15:18:34] [PASSED] no-match-no-add
[15:18:34] [PASSED] match-or
[15:18:34] [PASSED] match-or-xfail
[15:18:34] [PASSED] no-match-no-add-multiple-rules
[15:18:34] [PASSED] two-regs-two-entries
[15:18:34] [PASSED] clr-one-set-other
[15:18:34] [PASSED] set-field
[15:18:34] [PASSED] conflict-duplicate
[15:18:34] [PASSED] conflict-not-disjoint
[15:18:34] [PASSED] conflict-reg-type
[15:18:34] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:18:34] ================== xe_rtp_process_tests ===================
[15:18:34] [PASSED] active1
[15:18:34] [PASSED] active2
[15:18:34] [PASSED] active-inactive
[15:18:34] [PASSED] inactive-active
[15:18:34] [PASSED] inactive-1st_or_active-inactive
[15:18:34] [PASSED] inactive-2nd_or_active-inactive
[15:18:34] [PASSED] inactive-last_or_active-inactive
[15:18:34] [PASSED] inactive-no_or_active-inactive
[15:18:34] ============== [PASSED] xe_rtp_process_tests ===============
[15:18:34] ===================== [PASSED] xe_rtp ======================
[15:18:34] ==================== xe_wa (1 subtest) =====================
[15:18:34] ======================== xe_wa_gt =========================
[15:18:34] [PASSED] TIGERLAKE (B0)
[15:18:34] [PASSED] DG1 (A0)
[15:18:34] [PASSED] DG1 (B0)
[15:18:34] [PASSED] ALDERLAKE_S (A0)
[15:18:34] [PASSED] ALDERLAKE_S (B0)
[15:18:34] [PASSED] ALDERLAKE_S (C0)
[15:18:34] [PASSED] ALDERLAKE_S (D0)
[15:18:34] [PASSED] ALDERLAKE_P (A0)
[15:18:34] [PASSED] ALDERLAKE_P (B0)
[15:18:34] [PASSED] ALDERLAKE_P (C0)
[15:18:34] [PASSED] ALDERLAKE_S_RPLS (D0)
[15:18:34] [PASSED] ALDERLAKE_P_RPLU (E0)
[15:18:34] [PASSED] DG2_G10 (C0)
[15:18:34] [PASSED] DG2_G11 (B1)
[15:18:34] [PASSED] DG2_G12 (A1)
[15:18:34] [PASSED] METEORLAKE (g:A0, m:A0)
[15:18:34] [PASSED] METEORLAKE (g:A0, m:A0)
[15:18:34] [PASSED] METEORLAKE (g:A0, m:A0)
[15:18:34] [PASSED] LUNARLAKE (g:A0, m:A0)
[15:18:34] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[15:18:34] [PASSED] BATTLEMAGE (g:A0, m:A1)
[15:18:34] [PASSED] PANTHERLAKE (g:A0, m:A0)
[15:18:34] ==================== [PASSED] xe_wa_gt =====================
[15:18:34] ====================== [PASSED] xe_wa ======================
[15:18:34] ============================================================
[15:18:34] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[15:18:34] Elapsed time: 33.523s total, 4.307s configuring, 28.849s building, 0.327s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:18:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:18:36] 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
[15:18:58] Starting KUnit Kernel (1/1)...
[15:18:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:18:58] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:18:58] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:18:58] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:18:58] =========== drm_validate_clone_mode (2 subtests) ===========
[15:18:58] ============== drm_test_check_in_clone_mode ===============
[15:18:58] [PASSED] in_clone_mode
[15:18:58] [PASSED] not_in_clone_mode
[15:18:58] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:18:58] =============== drm_test_check_valid_clones ===============
[15:18:58] [PASSED] not_in_clone_mode
[15:18:58] [PASSED] valid_clone
[15:18:58] [PASSED] invalid_clone
[15:18:58] =========== [PASSED] drm_test_check_valid_clones ===========
[15:18:58] ============= [PASSED] drm_validate_clone_mode =============
[15:18:58] ============= drm_validate_modeset (1 subtest) =============
[15:18:58] [PASSED] drm_test_check_connector_changed_modeset
[15:18:58] ============== [PASSED] drm_validate_modeset ===============
[15:18:58] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:18:58] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:18:58] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:18:58] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:18:58] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:18:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:18:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:18:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:18:58] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:18:58] ============== drm_bridge_alloc (2 subtests) ===============
[15:18:58] [PASSED] drm_test_drm_bridge_alloc_basic
[15:18:58] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:18:58] ================ [PASSED] drm_bridge_alloc =================
[15:18:58] ================== drm_buddy (7 subtests) ==================
[15:18:58] [PASSED] drm_test_buddy_alloc_limit
[15:18:58] [PASSED] drm_test_buddy_alloc_optimistic
[15:18:58] [PASSED] drm_test_buddy_alloc_pessimistic
[15:18:58] [PASSED] drm_test_buddy_alloc_pathological
[15:18:58] [PASSED] drm_test_buddy_alloc_contiguous
[15:18:58] [PASSED] drm_test_buddy_alloc_clear
[15:18:58] [PASSED] drm_test_buddy_alloc_range_bias
[15:18:58] ==================== [PASSED] drm_buddy ====================
[15:18:58] ============= drm_cmdline_parser (40 subtests) =============
[15:18:58] [PASSED] drm_test_cmdline_force_d_only
[15:18:58] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:18:58] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:18:58] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:18:58] [PASSED] drm_test_cmdline_force_e_only
[15:18:58] [PASSED] drm_test_cmdline_res
[15:18:58] [PASSED] drm_test_cmdline_res_vesa
[15:18:58] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:18:58] [PASSED] drm_test_cmdline_res_rblank
[15:18:58] [PASSED] drm_test_cmdline_res_bpp
[15:18:58] [PASSED] drm_test_cmdline_res_refresh
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:18:58] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:18:58] [PASSED] drm_test_cmdline_res_margins_force_on
[15:18:58] [PASSED] drm_test_cmdline_res_vesa_margins
[15:18:58] [PASSED] drm_test_cmdline_name
[15:18:58] [PASSED] drm_test_cmdline_name_bpp
[15:18:58] [PASSED] drm_test_cmdline_name_option
[15:18:58] [PASSED] drm_test_cmdline_name_bpp_option
[15:18:58] [PASSED] drm_test_cmdline_rotate_0
[15:18:58] [PASSED] drm_test_cmdline_rotate_90
[15:18:58] [PASSED] drm_test_cmdline_rotate_180
[15:18:58] [PASSED] drm_test_cmdline_rotate_270
[15:18:58] [PASSED] drm_test_cmdline_hmirror
[15:18:58] [PASSED] drm_test_cmdline_vmirror
[15:18:58] [PASSED] drm_test_cmdline_margin_options
[15:18:58] [PASSED] drm_test_cmdline_multiple_options
[15:18:58] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:18:58] [PASSED] drm_test_cmdline_extra_and_option
[15:18:58] [PASSED] drm_test_cmdline_freestanding_options
[15:18:58] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:18:58] [PASSED] drm_test_cmdline_panel_orientation
[15:18:58] ================ drm_test_cmdline_invalid =================
[15:18:58] [PASSED] margin_only
[15:18:58] [PASSED] interlace_only
[15:18:58] [PASSED] res_missing_x
[15:18:58] [PASSED] res_missing_y
[15:18:58] [PASSED] res_bad_y
[15:18:58] [PASSED] res_missing_y_bpp
[15:18:58] [PASSED] res_bad_bpp
[15:18:58] [PASSED] res_bad_refresh
[15:18:58] [PASSED] res_bpp_refresh_force_on_off
[15:18:58] [PASSED] res_invalid_mode
[15:18:58] [PASSED] res_bpp_wrong_place_mode
[15:18:58] [PASSED] name_bpp_refresh
[15:18:58] [PASSED] name_refresh
[15:18:58] [PASSED] name_refresh_wrong_mode
[15:18:58] [PASSED] name_refresh_invalid_mode
[15:18:58] [PASSED] rotate_multiple
[15:18:58] [PASSED] rotate_invalid_val
[15:18:58] [PASSED] rotate_truncated
[15:18:58] [PASSED] invalid_option
[15:18:58] [PASSED] invalid_tv_option
[15:18:58] [PASSED] truncated_tv_option
[15:18:58] ============ [PASSED] drm_test_cmdline_invalid =============
[15:18:58] =============== drm_test_cmdline_tv_options ===============
[15:18:58] [PASSED] NTSC
[15:18:58] [PASSED] NTSC_443
[15:18:58] [PASSED] NTSC_J
[15:18:58] [PASSED] PAL
[15:18:58] [PASSED] PAL_M
[15:18:58] [PASSED] PAL_N
[15:18:58] [PASSED] SECAM
[15:18:58] [PASSED] MONO_525
[15:18:58] [PASSED] MONO_625
[15:18:58] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:18:58] =============== [PASSED] drm_cmdline_parser ================
[15:18:58] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:18:58] [PASSED] drm_test_connector_hdmi_init_valid
[15:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:18:58] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:18:58] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:18:58] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:18:58] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:18:58] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:18:58] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:18:58] [PASSED] supported_formats=0x3 yuv420_allowed=1
[15:18:58] [PASSED] supported_formats=0x3 yuv420_allowed=0
[15:18:58] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:18:58] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:18:58] [PASSED] drm_test_connector_hdmi_init_null_product
[15:18:58] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:18:58] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:18:58] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:18:58] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:18:58] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:18:58] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:18:58] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:18:58] ========= drm_test_connector_hdmi_init_type_valid =========
[15:18:58] [PASSED] HDMI-A
[15:18:58] [PASSED] HDMI-B
[15:18:58] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:18:58] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:18:58] [PASSED] Unknown
[15:18:58] [PASSED] VGA
[15:18:58] [PASSED] DVI-I
[15:18:58] [PASSED] DVI-D
[15:18:58] [PASSED] DVI-A
[15:18:58] [PASSED] Composite
[15:18:58] [PASSED] SVIDEO
[15:18:58] [PASSED] LVDS
[15:18:58] [PASSED] Component
[15:18:58] [PASSED] DIN
[15:18:58] [PASSED] DP
[15:18:58] [PASSED] TV
[15:18:58] [PASSED] eDP
[15:18:58] [PASSED] Virtual
[15:18:58] [PASSED] DSI
[15:18:58] [PASSED] DPI
[15:18:58] [PASSED] Writeback
[15:18:58] [PASSED] SPI
[15:18:58] [PASSED] USB
[15:18:58] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:18:58] ============ [PASSED] drmm_connector_hdmi_init =============
[15:18:58] ============= drmm_connector_init (3 subtests) =============
[15:18:58] [PASSED] drm_test_drmm_connector_init
[15:18:58] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:18:58] ========= drm_test_drmm_connector_init_type_valid =========
[15:18:58] [PASSED] Unknown
[15:18:58] [PASSED] VGA
[15:18:58] [PASSED] DVI-I
[15:18:58] [PASSED] DVI-D
[15:18:58] [PASSED] DVI-A
[15:18:58] [PASSED] Composite
[15:18:58] [PASSED] SVIDEO
[15:18:58] [PASSED] LVDS
[15:18:58] [PASSED] Component
[15:18:58] [PASSED] DIN
[15:18:58] [PASSED] DP
[15:18:58] [PASSED] HDMI-A
[15:18:58] [PASSED] HDMI-B
[15:18:58] [PASSED] TV
[15:18:58] [PASSED] eDP
[15:18:58] [PASSED] Virtual
[15:18:58] [PASSED] DSI
[15:18:58] [PASSED] DPI
[15:18:58] [PASSED] Writeback
[15:18:58] [PASSED] SPI
[15:18:58] [PASSED] USB
[15:18:58] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:18:58] =============== [PASSED] drmm_connector_init ===============
[15:18:58] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_init
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:18:58] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:18:58] [PASSED] Unknown
[15:18:58] [PASSED] VGA
[15:18:58] [PASSED] DVI-I
[15:18:58] [PASSED] DVI-D
[15:18:58] [PASSED] DVI-A
[15:18:58] [PASSED] Composite
[15:18:58] [PASSED] SVIDEO
[15:18:58] [PASSED] LVDS
[15:18:58] [PASSED] Component
[15:18:58] [PASSED] DIN
[15:18:58] [PASSED] DP
[15:18:58] [PASSED] HDMI-A
[15:18:58] [PASSED] HDMI-B
[15:18:58] [PASSED] TV
[15:18:58] [PASSED] eDP
[15:18:58] [PASSED] Virtual
[15:18:58] [PASSED] DSI
[15:18:58] [PASSED] DPI
[15:18:58] [PASSED] Writeback
[15:18:58] [PASSED] SPI
[15:18:58] [PASSED] USB
[15:18:58] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:18:58] ======== drm_test_drm_connector_dynamic_init_name =========
[15:18:58] [PASSED] Unknown
[15:18:58] [PASSED] VGA
[15:18:58] [PASSED] DVI-I
[15:18:58] [PASSED] DVI-D
[15:18:58] [PASSED] DVI-A
[15:18:58] [PASSED] Composite
[15:18:58] [PASSED] SVIDEO
[15:18:58] [PASSED] LVDS
[15:18:58] [PASSED] Component
[15:18:58] [PASSED] DIN
[15:18:58] [PASSED] DP
[15:18:58] [PASSED] HDMI-A
[15:18:58] [PASSED] HDMI-B
[15:18:58] [PASSED] TV
[15:18:58] [PASSED] eDP
[15:18:58] [PASSED] Virtual
[15:18:58] [PASSED] DSI
[15:18:58] [PASSED] DPI
[15:18:58] [PASSED] Writeback
[15:18:58] [PASSED] SPI
[15:18:58] [PASSED] USB
[15:18:58] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:18:58] =========== [PASSED] drm_connector_dynamic_init ============
[15:18:58] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:18:58] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:18:58] ======= drm_connector_dynamic_register (7 subtests) ========
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:18:58] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:18:58] ========= [PASSED] drm_connector_dynamic_register ==========
[15:18:58] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:18:58] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:18:58] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:18:58] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:18:58] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:18:58] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:18:58] [PASSED] NTSC
[15:18:58] [PASSED] NTSC-443
[15:18:58] [PASSED] NTSC-J
[15:18:58] [PASSED] PAL
[15:18:58] [PASSED] PAL-M
[15:18:58] [PASSED] PAL-N
[15:18:58] [PASSED] SECAM
[15:18:58] [PASSED] Mono
[15:18:58] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:18:58] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:18:58] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:18:58] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:18:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:18:58] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:18:58] [PASSED] VIC 96
[15:18:58] [PASSED] VIC 97
[15:18:58] [PASSED] VIC 101
[15:18:58] [PASSED] VIC 102
[15:18:58] [PASSED] VIC 106
[15:18:58] [PASSED] VIC 107
[15:18:58] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:18:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:18:58] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:18:58] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:18:58] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:18:58] [PASSED] Automatic
[15:18:58] [PASSED] Full
[15:18:58] [PASSED] Limited 16:235
[15:18:58] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:18:58] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:18:58] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:18:58] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:18:58] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:18:58] [PASSED] RGB
[15:18:58] [PASSED] YUV 4:2:0
[15:18:58] [PASSED] YUV 4:2:2
[15:18:58] [PASSED] YUV 4:4:4
[15:18:58] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:18:58] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:18:58] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:18:58] ============= drm_damage_helper (21 subtests) ==============
[15:18:58] [PASSED] drm_test_damage_iter_no_damage
[15:18:58] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:18:58] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:18:58] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:18:58] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:18:58] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:18:58] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:18:58] [PASSED] drm_test_damage_iter_simple_damage
[15:18:58] [PASSED] drm_test_damage_iter_single_damage
[15:18:58] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:18:58] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:18:58] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:18:58] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:18:58] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:18:58] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:18:58] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:18:58] [PASSED] drm_test_damage_iter_damage
[15:18:58] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:18:58] [PASSED] drm_test_damage_iter_damage_one_outside
[15:18:58] [PASSED] drm_test_damage_iter_damage_src_moved
[15:18:58] [PASSED] drm_test_damage_iter_damage_not_visible
[15:18:58] ================ [PASSED] drm_damage_helper ================
[15:18:58] ============== drm_dp_mst_helper (3 subtests) ==============
[15:18:58] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:18:58] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:18:58] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:18:58] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:18:58] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:18:58] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:18:58] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:18:58] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:18:58] [PASSED] Link rate 2000000 lane count 4
[15:18:58] [PASSED] Link rate 2000000 lane count 2
[15:18:58] [PASSED] Link rate 2000000 lane count 1
[15:18:58] [PASSED] Link rate 1350000 lane count 4
[15:18:58] [PASSED] Link rate 1350000 lane count 2
[15:18:58] [PASSED] Link rate 1350000 lane count 1
[15:18:58] [PASSED] Link rate 1000000 lane count 4
[15:18:58] [PASSED] Link rate 1000000 lane count 2
[15:18:58] [PASSED] Link rate 1000000 lane count 1
[15:18:58] [PASSED] Link rate 810000 lane count 4
[15:18:58] [PASSED] Link rate 810000 lane count 2
[15:18:58] [PASSED] Link rate 810000 lane count 1
[15:18:58] [PASSED] Link rate 540000 lane count 4
[15:18:58] [PASSED] Link rate 540000 lane count 2
[15:18:58] [PASSED] Link rate 540000 lane count 1
[15:18:58] [PASSED] Link rate 270000 lane count 4
[15:18:58] [PASSED] Link rate 270000 lane count 2
[15:18:58] [PASSED] Link rate 270000 lane count 1
[15:18:58] [PASSED] Link rate 162000 lane count 4
[15:18:58] [PASSED] Link rate 162000 lane count 2
[15:18:58] [PASSED] Link rate 162000 lane count 1
[15:18:58] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:18:58] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:18:58] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:18:58] [PASSED] DP_POWER_UP_PHY with port number
[15:18:58] [PASSED] DP_POWER_DOWN_PHY with port number
[15:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:18:58] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:18:58] [PASSED] DP_QUERY_PAYLOAD with port number
[15:18:58] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:18:58] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:18:58] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:18:58] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:18:58] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:18:58] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:18:58] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:18:58] [PASSED] DP_REMOTE_I2C_READ with port number
[15:18:58] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:18:58] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:18:58] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:18:58] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:18:58] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:18:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:18:58] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:18:58] ================ [PASSED] drm_dp_mst_helper ================
[15:18:58] ================== drm_exec (7 subtests) ===================
[15:18:58] [PASSED] sanitycheck
[15:18:58] [PASSED] test_lock
[15:18:58] [PASSED] test_lock_unlock
[15:18:58] [PASSED] test_duplicates
[15:18:58] [PASSED] test_prepare
[15:18:58] [PASSED] test_prepare_array
[15:18:58] [PASSED] test_multiple_loops
[15:18:58] ==================== [PASSED] drm_exec =====================
[15:18:58] =========== drm_format_helper_test (17 subtests) ===========
[15:18:58] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:18:58] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:18:58] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:18:58] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:18:58] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:18:58] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:18:58] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:18:58] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:18:58] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:18:58] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:18:58] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:18:58] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:18:58] ==================== drm_test_fb_swab =====================
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ================ [PASSED] drm_test_fb_swab =================
[15:18:58] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:18:58] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:18:58] [PASSED] single_pixel_source_buffer
[15:18:58] [PASSED] single_pixel_clip_rectangle
[15:18:58] [PASSED] well_known_colors
[15:18:58] [PASSED] destination_pitch
[15:18:58] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:18:58] ================= drm_test_fb_clip_offset =================
[15:18:58] [PASSED] pass through
[15:18:58] [PASSED] horizontal offset
[15:18:58] [PASSED] vertical offset
[15:18:58] [PASSED] horizontal and vertical offset
[15:18:58] [PASSED] horizontal offset (custom pitch)
[15:18:58] [PASSED] vertical offset (custom pitch)
[15:18:58] [PASSED] horizontal and vertical offset (custom pitch)
[15:18:58] ============= [PASSED] drm_test_fb_clip_offset =============
[15:18:58] =================== drm_test_fb_memcpy ====================
[15:18:58] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:18:58] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:18:58] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:18:58] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:18:58] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:18:58] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:18:58] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:18:58] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:18:58] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:18:58] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:18:58] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:18:58] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:18:58] =============== [PASSED] drm_test_fb_memcpy ================
[15:18:58] ============= [PASSED] drm_format_helper_test ==============
[15:18:58] ================= drm_format (18 subtests) =================
[15:18:58] [PASSED] drm_test_format_block_width_invalid
[15:18:58] [PASSED] drm_test_format_block_width_one_plane
[15:18:58] [PASSED] drm_test_format_block_width_two_plane
[15:18:58] [PASSED] drm_test_format_block_width_three_plane
[15:18:58] [PASSED] drm_test_format_block_width_tiled
[15:18:58] [PASSED] drm_test_format_block_height_invalid
[15:18:58] [PASSED] drm_test_format_block_height_one_plane
[15:18:58] [PASSED] drm_test_format_block_height_two_plane
[15:18:58] [PASSED] drm_test_format_block_height_three_plane
[15:18:58] [PASSED] drm_test_format_block_height_tiled
[15:18:58] [PASSED] drm_test_format_min_pitch_invalid
[15:18:58] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:18:58] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:18:58] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:18:58] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:18:58] [PASSED] drm_test_format_min_pitch_two_plane
[15:18:58] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:18:58] [PASSED] drm_test_format_min_pitch_tiled
[15:18:58] =================== [PASSED] drm_format ====================
[15:18:58] ============== drm_framebuffer (10 subtests) ===============
[15:18:58] ========== drm_test_framebuffer_check_src_coords ==========
[15:18:58] [PASSED] Success: source fits into fb
[15:18:58] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:18:58] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:18:58] [PASSED] Fail: overflowing fb with source width
[15:18:58] [PASSED] Fail: overflowing fb with source height
[15:18:58] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:18:58] [PASSED] drm_test_framebuffer_cleanup
[15:18:58] =============== drm_test_framebuffer_create ===============
[15:18:58] [PASSED] ABGR8888 normal sizes
[15:18:58] [PASSED] ABGR8888 max sizes
[15:18:58] [PASSED] ABGR8888 pitch greater than min required
[15:18:58] [PASSED] ABGR8888 pitch less than min required
[15:18:58] [PASSED] ABGR8888 Invalid width
[15:18:58] [PASSED] ABGR8888 Invalid buffer handle
[15:18:58] [PASSED] No pixel format
[15:18:58] [PASSED] ABGR8888 Width 0
[15:18:58] [PASSED] ABGR8888 Height 0
[15:18:58] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:18:58] [PASSED] ABGR8888 Large buffer offset
[15:18:58] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:18:58] [PASSED] ABGR8888 Invalid flag
[15:18:58] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:18:58] [PASSED] ABGR8888 Valid buffer modifier
[15:18:58] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:18:58] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:18:58] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:18:58] [PASSED] NV12 Normal sizes
[15:18:58] [PASSED] NV12 Max sizes
[15:18:58] [PASSED] NV12 Invalid pitch
[15:18:58] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:18:58] [PASSED] NV12 different modifier per-plane
[15:18:58] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:18:58] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:18:58] [PASSED] NV12 Modifier for inexistent plane
[15:18:58] [PASSED] NV12 Handle for inexistent plane
[15:18:58] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:18:58] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:18:58] [PASSED] YVU420 Normal sizes
[15:18:58] [PASSED] YVU420 Max sizes
[15:18:58] [PASSED] YVU420 Invalid pitch
[15:18:58] [PASSED] YVU420 Different pitches
[15:18:58] [PASSED] YVU420 Different buffer offsets/pitches
[15:18:58] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:18:58] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:18:58] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:18:58] [PASSED] YVU420 Valid modifier
[15:18:58] [PASSED] YVU420 Different modifiers per plane
[15:18:58] [PASSED] YVU420 Modifier for inexistent plane
[15:18:58] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:18:58] [PASSED] X0L2 Normal sizes
[15:18:58] [PASSED] X0L2 Max sizes
[15:18:58] [PASSED] X0L2 Invalid pitch
[15:18:58] [PASSED] X0L2 Pitch greater than minimum required
[15:18:58] [PASSED] X0L2 Handle for inexistent plane
[15:18:58] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:18:58] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:18:58] [PASSED] X0L2 Valid modifier
[15:18:58] [PASSED] X0L2 Modifier for inexistent plane
[15:18:58] =========== [PASSED] drm_test_framebuffer_create ===========
[15:18:58] [PASSED] drm_test_framebuffer_free
[15:18:58] [PASSED] drm_test_framebuffer_init
[15:18:58] [PASSED] drm_test_framebuffer_init_bad_format
[15:18:58] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:18:58] [PASSED] drm_test_framebuffer_lookup
[15:18:58] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:18:58] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:18:58] ================= [PASSED] drm_framebuffer =================
[15:18:58] ================ drm_gem_shmem (8 subtests) ================
[15:18:58] [PASSED] drm_gem_shmem_test_obj_create
[15:18:58] [PASSED] drm_gem_shmem_test_obj_create_private
[15:18:58] [PASSED] drm_gem_shmem_test_pin_pages
[15:18:58] [PASSED] drm_gem_shmem_test_vmap
[15:18:58] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:18:58] [PASSED] drm_gem_shmem_test_get_sg_table
[15:18:58] [PASSED] drm_gem_shmem_test_madvise
[15:18:58] [PASSED] drm_gem_shmem_test_purge
[15:18:58] ================== [PASSED] drm_gem_shmem ==================
[15:18:58] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:18:58] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:18:58] [PASSED] Automatic
[15:18:58] [PASSED] Full
[15:18:58] [PASSED] Limited 16:235
[15:18:58] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:18:58] [PASSED] drm_test_check_disable_connector
[15:18:58] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:18:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:18:58] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:18:58] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:18:58] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:18:58] [PASSED] drm_test_check_output_bpc_dvi
[15:18:58] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:18:58] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:18:58] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:18:58] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:18:58] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:18:58] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:18:58] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:18:58] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:18:58] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:18:58] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:18:58] [PASSED] drm_test_check_broadcast_rgb_value
[15:18:58] [PASSED] drm_test_check_bpc_8_value
[15:18:58] [PASSED] drm_test_check_bpc_10_value
[15:18:58] [PASSED] drm_test_check_bpc_12_value
[15:18:58] [PASSED] drm_test_check_format_value
[15:18:58] [PASSED] drm_test_check_tmds_char_value
[15:18:58] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:18:58] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:18:58] [PASSED] drm_test_check_mode_valid
[15:18:58] [PASSED] drm_test_check_mode_valid_reject
[15:18:58] [PASSED] drm_test_check_mode_valid_reject_rate
[15:18:58] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:18:58] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:18:58] ================= drm_managed (2 subtests) =================
[15:18:58] [PASSED] drm_test_managed_release_action
[15:18:58] [PASSED] drm_test_managed_run_action
[15:18:58] =================== [PASSED] drm_managed ===================
[15:18:58] =================== drm_mm (6 subtests) ====================
[15:18:58] [PASSED] drm_test_mm_init
[15:18:58] [PASSED] drm_test_mm_debug
[15:18:58] [PASSED] drm_test_mm_align32
[15:18:58] [PASSED] drm_test_mm_align64
[15:18:58] [PASSED] drm_test_mm_lowest
[15:18:58] [PASSED] drm_test_mm_highest
[15:18:58] ===================== [PASSED] drm_mm ======================
[15:18:58] ============= drm_modes_analog_tv (5 subtests) =============
[15:18:58] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:18:58] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:18:58] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:18:58] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:18:58] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:18:58] =============== [PASSED] drm_modes_analog_tv ===============
[15:18:58] ============== drm_plane_helper (2 subtests) ===============
[15:18:58] =============== drm_test_check_plane_state ================
[15:18:58] [PASSED] clipping_simple
[15:18:58] [PASSED] clipping_rotate_reflect
[15:18:58] [PASSED] positioning_simple
[15:18:58] [PASSED] upscaling
[15:18:58] [PASSED] downscaling
[15:18:58] [PASSED] rounding1
[15:18:58] [PASSED] rounding2
[15:18:58] [PASSED] rounding3
[15:18:58] [PASSED] rounding4
[15:18:58] =========== [PASSED] drm_test_check_plane_state ============
[15:18:58] =========== drm_test_check_invalid_plane_state ============
[15:18:58] [PASSED] positioning_invalid
[15:18:58] [PASSED] upscaling_invalid
[15:18:58] [PASSED] downscaling_invalid
[15:18:58] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:18:58] ================ [PASSED] drm_plane_helper =================
[15:18:58] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:18:58] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:18:58] [PASSED] None
[15:18:58] [PASSED] PAL
[15:18:58] [PASSED] NTSC
[15:18:58] [PASSED] Both, NTSC Default
[15:18:58] [PASSED] Both, PAL Default
[15:18:58] [PASSED] Both, NTSC Default, with PAL on command-line
[15:18:58] [PASSED] Both, PAL Default, with NTSC on command-line
[15:18:58] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:18:58] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:18:58] ================== drm_rect (9 subtests) ===================
[15:18:58] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:18:58] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:18:58] [PASSED] drm_test_rect_clip_scaled_clipped
[15:18:58] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:18:58] ================= drm_test_rect_intersect =================
[15:18:58] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:18:58] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:18:58] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:18:58] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:18:58] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:18:58] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:18:58] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:18:58] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:18:58] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:18:58] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:18:58] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:18:58] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:18:58] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:18:58] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:18:58] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:18:58] ============= [PASSED] drm_test_rect_intersect =============
[15:18:58] ================ drm_test_rect_calc_hscale ================
[15:18:58] [PASSED] normal use
[15:18:58] [PASSED] out of max range
[15:18:58] [PASSED] out of min range
[15:18:58] [PASSED] zero dst
[15:18:58] [PASSED] negative src
[15:18:58] [PASSED] negative dst
[15:18:58] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:18:58] ================ drm_test_rect_calc_vscale ================
[15:18:58] [PASSED] normal use
[15:18:58] [PASSED] out of max range
[15:18:58] [PASSED] out of min range
[15:18:58] [PASSED] zero dst
[15:18:58] [PASSED] negative src
[15:18:58] [PASSED] negative dst
[15:18:58] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:18:58] ================== drm_test_rect_rotate ===================
[15:18:58] [PASSED] reflect-x
[15:18:58] [PASSED] reflect-y
[15:18:58] [PASSED] rotate-0
[15:18:58] [PASSED] rotate-90
[15:18:58] [PASSED] rotate-180
[15:18:58] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[15:18:58] ============== [PASSED] drm_test_rect_rotate ===============
[15:18:58] ================ drm_test_rect_rotate_inv =================
[15:18:58] [PASSED] reflect-x
[15:18:58] [PASSED] reflect-y
[15:18:58] [PASSED] rotate-0
[15:18:58] [PASSED] rotate-90
[15:18:58] [PASSED] rotate-180
[15:18:58] [PASSED] rotate-270
[15:18:58] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:18:58] ==================== [PASSED] drm_rect =====================
[15:18:58] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:18:58] ============ drm_test_sysfb_build_fourcc_list =============
[15:18:58] [PASSED] no native formats
[15:18:58] [PASSED] XRGB8888 as native format
[15:18:58] [PASSED] remove duplicates
[15:18:58] [PASSED] convert alpha formats
[15:18:58] [PASSED] random formats
[15:18:58] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:18:58] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:18:58] ============================================================
[15:18:58] Testing complete. Ran 616 tests: passed: 616
[15:18:58] Elapsed time: 24.482s total, 1.779s configuring, 22.533s building, 0.147s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:18:59] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:19:00] 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
[15:19:08] Starting KUnit Kernel (1/1)...
[15:19:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:19:08] ================= ttm_device (5 subtests) ==================
[15:19:08] [PASSED] ttm_device_init_basic
[15:19:08] [PASSED] ttm_device_init_multiple
[15:19:08] [PASSED] ttm_device_fini_basic
[15:19:08] [PASSED] ttm_device_init_no_vma_man
[15:19:08] ================== ttm_device_init_pools ==================
[15:19:08] [PASSED] No DMA allocations, no DMA32 required
[15:19:08] [PASSED] DMA allocations, DMA32 required
[15:19:08] [PASSED] No DMA allocations, DMA32 required
[15:19:08] [PASSED] DMA allocations, no DMA32 required
[15:19:08] ============== [PASSED] ttm_device_init_pools ==============
[15:19:08] =================== [PASSED] ttm_device ====================
[15:19:08] ================== ttm_pool (8 subtests) ===================
[15:19:08] ================== ttm_pool_alloc_basic ===================
[15:19:08] [PASSED] One page
[15:19:08] [PASSED] More than one page
[15:19:08] [PASSED] Above the allocation limit
[15:19:08] [PASSED] One page, with coherent DMA mappings enabled
[15:19:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:19:08] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:19:08] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:19:08] [PASSED] One page
[15:19:08] [PASSED] More than one page
[15:19:08] [PASSED] Above the allocation limit
[15:19:08] [PASSED] One page, with coherent DMA mappings enabled
[15:19:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:19:08] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:19:08] [PASSED] ttm_pool_alloc_order_caching_match
[15:19:08] [PASSED] ttm_pool_alloc_caching_mismatch
[15:19:08] [PASSED] ttm_pool_alloc_order_mismatch
[15:19:08] [PASSED] ttm_pool_free_dma_alloc
[15:19:08] [PASSED] ttm_pool_free_no_dma_alloc
[15:19:08] [PASSED] ttm_pool_fini_basic
[15:19:08] ==================== [PASSED] ttm_pool =====================
[15:19:08] ================ ttm_resource (8 subtests) =================
[15:19:08] ================= ttm_resource_init_basic =================
[15:19:08] [PASSED] Init resource in TTM_PL_SYSTEM
[15:19:08] [PASSED] Init resource in TTM_PL_VRAM
[15:19:08] [PASSED] Init resource in a private placement
[15:19:08] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:19:08] ============= [PASSED] ttm_resource_init_basic =============
[15:19:08] [PASSED] ttm_resource_init_pinned
[15:19:08] [PASSED] ttm_resource_fini_basic
[15:19:08] [PASSED] ttm_resource_manager_init_basic
[15:19:08] [PASSED] ttm_resource_manager_usage_basic
[15:19:08] [PASSED] ttm_resource_manager_set_used_basic
[15:19:08] [PASSED] ttm_sys_man_alloc_basic
[15:19:08] [PASSED] ttm_sys_man_free_basic
[15:19:08] ================== [PASSED] ttm_resource ===================
[15:19:08] =================== ttm_tt (15 subtests) ===================
[15:19:08] ==================== ttm_tt_init_basic ====================
[15:19:08] [PASSED] Page-aligned size
[15:19:08] [PASSED] Extra pages requested
[15:19:08] ================ [PASSED] ttm_tt_init_basic ================
[15:19:08] [PASSED] ttm_tt_init_misaligned
[15:19:08] [PASSED] ttm_tt_fini_basic
[15:19:08] [PASSED] ttm_tt_fini_sg
[15:19:08] [PASSED] ttm_tt_fini_shmem
[15:19:08] [PASSED] ttm_tt_create_basic
[15:19:08] [PASSED] ttm_tt_create_invalid_bo_type
[15:19:08] [PASSED] ttm_tt_create_ttm_exists
[15:19:08] [PASSED] ttm_tt_create_failed
[15:19:08] [PASSED] ttm_tt_destroy_basic
[15:19:08] [PASSED] ttm_tt_populate_null_ttm
[15:19:08] [PASSED] ttm_tt_populate_populated_ttm
[15:19:08] [PASSED] ttm_tt_unpopulate_basic
[15:19:08] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:19:08] [PASSED] ttm_tt_swapin_basic
[15:19:08] ===================== [PASSED] ttm_tt ======================
[15:19:08] =================== ttm_bo (14 subtests) ===================
[15:19:08] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:19:08] [PASSED] Cannot be interrupted and sleeps
[15:19:08] [PASSED] Cannot be interrupted, locks straight away
[15:19:08] [PASSED] Can be interrupted, sleeps
[15:19:08] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:19:08] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:19:08] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:19:08] [PASSED] ttm_bo_reserve_double_resv
[15:19:08] [PASSED] ttm_bo_reserve_interrupted
[15:19:08] [PASSED] ttm_bo_reserve_deadlock
[15:19:08] [PASSED] ttm_bo_unreserve_basic
[15:19:08] [PASSED] ttm_bo_unreserve_pinned
[15:19:08] [PASSED] ttm_bo_unreserve_bulk
[15:19:08] [PASSED] ttm_bo_put_basic
[15:19:08] [PASSED] ttm_bo_put_shared_resv
[15:19:08] [PASSED] ttm_bo_pin_basic
[15:19:08] [PASSED] ttm_bo_pin_unpin_resource
[15:19:08] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:19:08] ===================== [PASSED] ttm_bo ======================
[15:19:08] ============== ttm_bo_validate (21 subtests) ===============
[15:19:08] ============== ttm_bo_init_reserved_sys_man ===============
[15:19:08] [PASSED] Buffer object for userspace
[15:19:08] [PASSED] Kernel buffer object
[15:19:08] [PASSED] Shared buffer object
[15:19:08] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:19:08] ============== ttm_bo_init_reserved_mock_man ==============
[15:19:08] [PASSED] Buffer object for userspace
[15:19:08] [PASSED] Kernel buffer object
[15:19:08] [PASSED] Shared buffer object
[15:19:08] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:19:08] [PASSED] ttm_bo_init_reserved_resv
[15:19:08] ================== ttm_bo_validate_basic ==================
[15:19:08] [PASSED] Buffer object for userspace
[15:19:08] [PASSED] Kernel buffer object
[15:19:08] [PASSED] Shared buffer object
[15:19:08] ============== [PASSED] ttm_bo_validate_basic ==============
[15:19:08] [PASSED] ttm_bo_validate_invalid_placement
[15:19:08] ============= ttm_bo_validate_same_placement ==============
[15:19:08] [PASSED] System manager
[15:19:08] [PASSED] VRAM manager
[15:19:08] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:19:08] [PASSED] ttm_bo_validate_failed_alloc
[15:19:08] [PASSED] ttm_bo_validate_pinned
[15:19:08] [PASSED] ttm_bo_validate_busy_placement
[15:19:08] ================ ttm_bo_validate_multihop =================
[15:19:08] [PASSED] Buffer object for userspace
[15:19:08] [PASSED] Kernel buffer object
[15:19:08] [PASSED] Shared buffer object
[15:19:08] ============ [PASSED] ttm_bo_validate_multihop =============
[15:19:08] ========== ttm_bo_validate_no_placement_signaled ==========
[15:19:08] [PASSED] Buffer object in system domain, no page vector
[15:19:08] [PASSED] Buffer object in system domain with an existing page vector
[15:19:08] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:19:08] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:19:08] [PASSED] Buffer object for userspace
[15:19:08] [PASSED] Kernel buffer object
[15:19:08] [PASSED] Shared buffer object
[15:19:08] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:19:08] [PASSED] ttm_bo_validate_move_fence_signaled
[15:19:08] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:19:08] [PASSED] Waits for GPU
[15:19:08] [PASSED] Tries to lock straight away
[15:19:08] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:19:08] [PASSED] ttm_bo_validate_happy_evict
[15:19:08] [PASSED] ttm_bo_validate_all_pinned_evict
[15:19:08] [PASSED] ttm_bo_validate_allowed_only_evict
[15:19:08] [PASSED] ttm_bo_validate_deleted_evict
[15:19:08] [PASSED] ttm_bo_validate_busy_domain_evict
[15:19:08] [PASSED] ttm_bo_validate_evict_gutting
[15:19:08] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[15:19:08] ================= [PASSED] ttm_bo_validate =================
[15:19:08] ============================================================
[15:19:08] Testing complete. Ran 101 tests: passed: 101
[15:19:08] Elapsed time: 9.867s total, 1.719s configuring, 7.931s building, 0.183s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread
* ✓ Xe.CI.BAT: success for Allow to filter-out some configfs attrs
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
` (3 preceding siblings ...)
2025-09-02 15:19 ` ✓ CI.KUnit: success for Allow to filter-out some configfs attrs Patchwork
@ 2025-09-02 15:56 ` Patchwork
2025-09-02 20:41 ` ✗ Xe.CI.Full: failure " Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-09-02 15:56 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2104 bytes --]
== Series Details ==
Series: Allow to filter-out some configfs attrs
URL : https://patchwork.freedesktop.org/series/153882/
State : success
== Summary ==
CI Bug Log - changes from xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6_BAT -> xe-pw-153882v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-153882v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@a-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
#### Possible fixes ####
* igt@xe_vm@bind-execqueues-independent:
- {bat-ptl-vm}: [FAIL][3] ([Intel XE#5783]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* Linux: xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6 -> xe-pw-153882v1
IGT_8519: 8519
xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6: cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6
xe-pw-153882v1: 153882v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/index.html
[-- Attachment #2: Type: text/html, Size: 2701 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-02 13:17 ` [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini Michal Wajdeczko
@ 2025-09-02 16:37 ` Summers, Stuart
2025-09-02 18:04 ` Lucas De Marchi
2025-09-04 10:35 ` [PATCH v2 " Michal Wajdeczko
2 siblings, 0 replies; 24+ messages in thread
From: Summers, Stuart @ 2025-09-02 16:37 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Wajdeczko, Michal
Cc: Tauro, Riana, De Marchi, Lucas
On Tue, 2025-09-02 at 15:17 +0200, Michal Wajdeczko wrote:
> This is a user controlled configfs attribute, we should not
> modify that outside the configfs attr.store() implementation.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Riana Tauro <riana.tauro@intel.com>
Yeah I agree, makes sense.
Reviewed-by: Stuart Summers <stuart.summers@intel.com>
> ---
> drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c
> b/drivers/gpu/drm/xe/xe_survivability_mode.c
> index 53c5af4b810c..79426ea46861 100644
> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
> @@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
> struct device *dev = &pdev->dev;
>
> - xe_configfs_clear_survivability_mode(pdev);
> sysfs_remove_file(&dev->kobj,
> &dev_attr_survivability_mode.attr);
> }
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable
2025-09-02 13:17 ` [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable Michal Wajdeczko
@ 2025-09-02 17:25 ` Summers, Stuart
2025-09-02 18:16 ` Michal Wajdeczko
2025-09-02 18:10 ` Lucas De Marchi
1 sibling, 1 reply; 24+ messages in thread
From: Summers, Stuart @ 2025-09-02 17:25 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Wajdeczko, Michal
Cc: Tauro, Riana, De Marchi, Lucas
On Tue, 2025-09-02 at 15:17 +0200, Michal Wajdeczko wrote:
> The survivability_mode attribute is applicable only for DGFX and
> platforms newer than BATTLEMAGE. Use .is_visible() hook to hide
> this attribute when above conditions are not met. Remove code that
> was trying to fix such configuration during the runtime.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Riana Tauro <riana.tauro@intel.com>
> ---
> drivers/gpu/drm/xe/xe_configfs.c | 24 ++++++--------------
> --
> drivers/gpu/drm/xe/xe_configfs.h | 2 --
> drivers/gpu/drm/xe/xe_survivability_mode.c | 11 +---------
> 3 files changed, 7 insertions(+), 30 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_configfs.c
> b/drivers/gpu/drm/xe/xe_configfs.c
> index 43f000260752..0337811864cd 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.c
> +++ b/drivers/gpu/drm/xe/xe_configfs.c
> @@ -369,7 +369,12 @@ static bool xe_config_device_is_visible(struct
> config_item *item,
> {
> struct xe_config_group_device *dev =
> to_xe_config_group_device(item);
>
> - return dev->desc; /* shall be always true */
> + if (attr == &attr_survivability_mode) {
> + if (!dev->desc->is_dgfx || dev->desc->platform <
> XE_BATTLEMAGE)
> + return false;
> + }
> +
> + return true;
Why change the return here? Can we either leave this as dev->desc or
otherwise use return true for the initial implementation (previous
patch)?
Everything else in the series looks good to me. This does seem like a
better way to approach this.
Thanks,
Stuart
> }
>
> static struct configfs_group_operations xe_config_device_group_ops =
> {
> @@ -558,23 +563,6 @@ bool xe_configfs_get_survivability_mode(struct
> pci_dev *pdev)
> return mode;
> }
>
> -/**
> - * xe_configfs_clear_survivability_mode - clear configfs
> survivability mode
> - * @pdev: pci device
> - */
> -void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
> -{
> - struct xe_config_group_device *dev =
> find_xe_config_group_device(pdev);
> -
> - if (!dev)
> - return;
> -
> - guard(mutex)(&dev->lock);
> - dev->config.survivability_mode = 0;
> -
> - config_group_put(&dev->group);
> -}
> -
> /**
> * xe_configfs_get_engines_allowed - get engine allowed mask from
> configfs
> * @pdev: pci device
> diff --git a/drivers/gpu/drm/xe/xe_configfs.h
> b/drivers/gpu/drm/xe/xe_configfs.h
> index 58c8c3164000..1402e863b71c 100644
> --- a/drivers/gpu/drm/xe/xe_configfs.h
> +++ b/drivers/gpu/drm/xe/xe_configfs.h
> @@ -15,7 +15,6 @@ int xe_configfs_init(void);
> void xe_configfs_exit(void);
> void xe_configfs_check_device(struct pci_dev *pdev);
> bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
> -void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
> u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
> bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev);
> #else
> @@ -23,7 +22,6 @@ static inline int xe_configfs_init(void) { return
> 0; }
> static inline void xe_configfs_exit(void) { }
> static inline void xe_configfs_check_device(struct pci_dev *pdev) {
> }
> static inline bool xe_configfs_get_survivability_mode(struct pci_dev
> *pdev) { return false; }
> -static inline void xe_configfs_clear_survivability_mode(struct
> pci_dev *pdev) { }
> static inline u64 xe_configfs_get_engines_allowed(struct pci_dev
> *pdev) { return U64_MAX; }
> static inline bool xe_configfs_get_psmi_enabled(struct pci_dev
> *pdev) { return false; }
> #endif
> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c
> b/drivers/gpu/drm/xe/xe_survivability_mode.c
> index 79426ea46861..19a1732e33d4 100644
> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
> @@ -287,19 +287,10 @@ bool xe_survivability_mode_is_requested(struct
> xe_device *xe)
> u32 data;
> bool survivability_mode;
>
> - if (!IS_DGFX(xe) || IS_SRIOV_VF(xe))
> + if (!IS_DGFX(xe) || IS_SRIOV_VF(xe) || xe->info.platform <
> XE_BATTLEMAGE)
> return false;
>
> survivability_mode =
> xe_configfs_get_survivability_mode(pdev);
> -
> - if (xe->info.platform < XE_BATTLEMAGE) {
> - if (survivability_mode) {
> - dev_err(&pdev->dev, "Survivability Mode is
> not supported on this card\n");
> - xe_configfs_clear_survivability_mode(pdev);
> - }
> - return false;
> - }
> -
> /* Enable survivability mode if set via configfs */
> if (survivability_mode)
> return true;
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-02 13:17 ` [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini Michal Wajdeczko
2025-09-02 16:37 ` Summers, Stuart
@ 2025-09-02 18:04 ` Lucas De Marchi
2025-09-03 5:39 ` Riana Tauro
2025-09-04 10:35 ` [PATCH v2 " Michal Wajdeczko
2 siblings, 1 reply; 24+ messages in thread
From: Lucas De Marchi @ 2025-09-02 18:04 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Riana Tauro
On Tue, Sep 02, 2025 at 03:17:42PM +0200, Michal Wajdeczko wrote:
>This is a user controlled configfs attribute, we should not
>modify that outside the configfs attr.store() implementation.
agreed... this was the first user of configfs and I don't think it was
the right to do it. However for such a change we should propagate it to
stable too. Riana, any possible issue in userspace? With this change
userspace should do a rmdir() before proceeding so it drops the
configuration.
Lucas De Marchi
>
>Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Cc: Riana Tauro <riana.tauro@intel.com>
>---
> drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
> 1 file changed, 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
>index 53c5af4b810c..79426ea46861 100644
>--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>@@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
> struct device *dev = &pdev->dev;
>
>- xe_configfs_clear_survivability_mode(pdev);
> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
> }
>
>--
>2.47.1
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable
2025-09-02 13:17 ` [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable Michal Wajdeczko
2025-09-02 17:25 ` Summers, Stuart
@ 2025-09-02 18:10 ` Lucas De Marchi
1 sibling, 0 replies; 24+ messages in thread
From: Lucas De Marchi @ 2025-09-02 18:10 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Riana Tauro
On Tue, Sep 02, 2025 at 03:17:44PM +0200, Michal Wajdeczko wrote:
>The survivability_mode attribute is applicable only for DGFX and
>platforms newer than BATTLEMAGE. Use .is_visible() hook to hide
>this attribute when above conditions are not met. Remove code that
>was trying to fix such configuration during the runtime.
>
>Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Cc: Riana Tauro <riana.tauro@intel.com>
>---
> drivers/gpu/drm/xe/xe_configfs.c | 24 ++++++----------------
> drivers/gpu/drm/xe/xe_configfs.h | 2 --
> drivers/gpu/drm/xe/xe_survivability_mode.c | 11 +---------
> 3 files changed, 7 insertions(+), 30 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_configfs.c b/drivers/gpu/drm/xe/xe_configfs.c
>index 43f000260752..0337811864cd 100644
>--- a/drivers/gpu/drm/xe/xe_configfs.c
>+++ b/drivers/gpu/drm/xe/xe_configfs.c
>@@ -369,7 +369,12 @@ static bool xe_config_device_is_visible(struct config_item *item,
> {
> struct xe_config_group_device *dev = to_xe_config_group_device(item);
>
>- return dev->desc; /* shall be always true */
>+ if (attr == &attr_survivability_mode) {
>+ if (!dev->desc->is_dgfx || dev->desc->platform < XE_BATTLEMAGE)
>+ return false;
>+ }
>+
>+ return true;
maybe it could be a `return true;` in the previous patch so it's really
an empty implementation. Squashing the previous patch in this one would
be another possibility.
> }
>
> static struct configfs_group_operations xe_config_device_group_ops = {
>@@ -558,23 +563,6 @@ bool xe_configfs_get_survivability_mode(struct pci_dev *pdev)
> return mode;
> }
>
>-/**
>- * xe_configfs_clear_survivability_mode - clear configfs survivability mode
>- * @pdev: pci device
>- */
>-void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
>-{
>- struct xe_config_group_device *dev = find_xe_config_group_device(pdev);
>-
>- if (!dev)
>- return;
>-
>- guard(mutex)(&dev->lock);
>- dev->config.survivability_mode = 0;
>-
>- config_group_put(&dev->group);
>-}
>-
> /**
> * xe_configfs_get_engines_allowed - get engine allowed mask from configfs
> * @pdev: pci device
>diff --git a/drivers/gpu/drm/xe/xe_configfs.h b/drivers/gpu/drm/xe/xe_configfs.h
>index 58c8c3164000..1402e863b71c 100644
>--- a/drivers/gpu/drm/xe/xe_configfs.h
>+++ b/drivers/gpu/drm/xe/xe_configfs.h
>@@ -15,7 +15,6 @@ int xe_configfs_init(void);
> void xe_configfs_exit(void);
> void xe_configfs_check_device(struct pci_dev *pdev);
> bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
>-void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
> u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
> bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev);
> #else
>@@ -23,7 +22,6 @@ static inline int xe_configfs_init(void) { return 0; }
> static inline void xe_configfs_exit(void) { }
> static inline void xe_configfs_check_device(struct pci_dev *pdev) { }
> static inline bool xe_configfs_get_survivability_mode(struct pci_dev *pdev) { return false; }
>-static inline void xe_configfs_clear_survivability_mode(struct pci_dev *pdev) { }
> static inline u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev) { return U64_MAX; }
> static inline bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev) { return false; }
> #endif
>diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
>index 79426ea46861..19a1732e33d4 100644
>--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>@@ -287,19 +287,10 @@ bool xe_survivability_mode_is_requested(struct xe_device *xe)
> u32 data;
> bool survivability_mode;
>
>- if (!IS_DGFX(xe) || IS_SRIOV_VF(xe))
>+ if (!IS_DGFX(xe) || IS_SRIOV_VF(xe) || xe->info.platform < XE_BATTLEMAGE)
I don't like the < for platform, but it was already there, so let's keep
it for now.
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
> return false;
>
> survivability_mode = xe_configfs_get_survivability_mode(pdev);
>-
>- if (xe->info.platform < XE_BATTLEMAGE) {
>- if (survivability_mode) {
>- dev_err(&pdev->dev, "Survivability Mode is not supported on this card\n");
>- xe_configfs_clear_survivability_mode(pdev);
>- }
>- return false;
>- }
>-
> /* Enable survivability mode if set via configfs */
> if (survivability_mode)
> return true;
>--
>2.47.1
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable
2025-09-02 17:25 ` Summers, Stuart
@ 2025-09-02 18:16 ` Michal Wajdeczko
2025-09-02 18:19 ` Summers, Stuart
0 siblings, 1 reply; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-02 18:16 UTC (permalink / raw)
To: Summers, Stuart, intel-xe@lists.freedesktop.org
Cc: Tauro, Riana, De Marchi, Lucas
On 9/2/2025 7:25 PM, Summers, Stuart wrote:
> On Tue, 2025-09-02 at 15:17 +0200, Michal Wajdeczko wrote:
>> The survivability_mode attribute is applicable only for DGFX and
>> platforms newer than BATTLEMAGE. Use .is_visible() hook to hide
>> this attribute when above conditions are not met. Remove code that
>> was trying to fix such configuration during the runtime.
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>> Cc: Riana Tauro <riana.tauro@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_configfs.c | 24 ++++++--------------
>> --
>> drivers/gpu/drm/xe/xe_configfs.h | 2 --
>> drivers/gpu/drm/xe/xe_survivability_mode.c | 11 +---------
>> 3 files changed, 7 insertions(+), 30 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_configfs.c
>> b/drivers/gpu/drm/xe/xe_configfs.c
>> index 43f000260752..0337811864cd 100644
>> --- a/drivers/gpu/drm/xe/xe_configfs.c
>> +++ b/drivers/gpu/drm/xe/xe_configfs.c
>> @@ -369,7 +369,12 @@ static bool xe_config_device_is_visible(struct
>> config_item *item,
>> {
>> struct xe_config_group_device *dev =
>> to_xe_config_group_device(item);
>>
>> - return dev->desc; /* shall be always true */
>> + if (attr == &attr_survivability_mode) {
>> + if (!dev->desc->is_dgfx || dev->desc->platform <
>> XE_BATTLEMAGE)
>> + return false;
>> + }
>> +
>> + return true;
>
> Why change the return here? Can we either leave this as dev->desc or
> otherwise use return true for the initial implementation (previous
> patch)?
the reason is simple: in patch 2/3 I just wanted to show how to obtain
the device xe device desc here to make some decisions based on that.
with plain "return true" in 2/3 I would have to mark desc var as "maybe_unused"
and OTOH leaving "return desc" here in 3/3 is redundant since we already might have de-referenced the pointer
so this one extra line in diff was IMO minimal cost to have two separate patches
(as I didn't want to combine survivability_mode change with introduction of is_visible)
>
> Everything else in the series looks good to me. This does seem like a
> better way to approach this.
thanks,
>
> Thanks,
> Stuart
>
>> }
>>
>> static struct configfs_group_operations xe_config_device_group_ops =
>> {
>> @@ -558,23 +563,6 @@ bool xe_configfs_get_survivability_mode(struct
>> pci_dev *pdev)
>> return mode;
>> }
>>
>> -/**
>> - * xe_configfs_clear_survivability_mode - clear configfs
>> survivability mode
>> - * @pdev: pci device
>> - */
>> -void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
>> -{
>> - struct xe_config_group_device *dev =
>> find_xe_config_group_device(pdev);
>> -
>> - if (!dev)
>> - return;
>> -
>> - guard(mutex)(&dev->lock);
>> - dev->config.survivability_mode = 0;
>> -
>> - config_group_put(&dev->group);
>> -}
>> -
>> /**
>> * xe_configfs_get_engines_allowed - get engine allowed mask from
>> configfs
>> * @pdev: pci device
>> diff --git a/drivers/gpu/drm/xe/xe_configfs.h
>> b/drivers/gpu/drm/xe/xe_configfs.h
>> index 58c8c3164000..1402e863b71c 100644
>> --- a/drivers/gpu/drm/xe/xe_configfs.h
>> +++ b/drivers/gpu/drm/xe/xe_configfs.h
>> @@ -15,7 +15,6 @@ int xe_configfs_init(void);
>> void xe_configfs_exit(void);
>> void xe_configfs_check_device(struct pci_dev *pdev);
>> bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
>> -void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
>> u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
>> bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev);
>> #else
>> @@ -23,7 +22,6 @@ static inline int xe_configfs_init(void) { return
>> 0; }
>> static inline void xe_configfs_exit(void) { }
>> static inline void xe_configfs_check_device(struct pci_dev *pdev) {
>> }
>> static inline bool xe_configfs_get_survivability_mode(struct pci_dev
>> *pdev) { return false; }
>> -static inline void xe_configfs_clear_survivability_mode(struct
>> pci_dev *pdev) { }
>> static inline u64 xe_configfs_get_engines_allowed(struct pci_dev
>> *pdev) { return U64_MAX; }
>> static inline bool xe_configfs_get_psmi_enabled(struct pci_dev
>> *pdev) { return false; }
>> #endif
>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c
>> b/drivers/gpu/drm/xe/xe_survivability_mode.c
>> index 79426ea46861..19a1732e33d4 100644
>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>> @@ -287,19 +287,10 @@ bool xe_survivability_mode_is_requested(struct
>> xe_device *xe)
>> u32 data;
>> bool survivability_mode;
>>
>> - if (!IS_DGFX(xe) || IS_SRIOV_VF(xe))
>> + if (!IS_DGFX(xe) || IS_SRIOV_VF(xe) || xe->info.platform <
>> XE_BATTLEMAGE)
>> return false;
>>
>> survivability_mode =
>> xe_configfs_get_survivability_mode(pdev);
>> -
>> - if (xe->info.platform < XE_BATTLEMAGE) {
>> - if (survivability_mode) {
>> - dev_err(&pdev->dev, "Survivability Mode is
>> not supported on this card\n");
>> - xe_configfs_clear_survivability_mode(pdev);
>> - }
>> - return false;
>> - }
>> -
>> /* Enable survivability mode if set via configfs */
>> if (survivability_mode)
>> return true;
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable
2025-09-02 18:16 ` Michal Wajdeczko
@ 2025-09-02 18:19 ` Summers, Stuart
0 siblings, 0 replies; 24+ messages in thread
From: Summers, Stuart @ 2025-09-02 18:19 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Wajdeczko, Michal
Cc: Tauro, Riana, De Marchi, Lucas
On Tue, 2025-09-02 at 20:16 +0200, Michal Wajdeczko wrote:
>
>
> On 9/2/2025 7:25 PM, Summers, Stuart wrote:
> > On Tue, 2025-09-02 at 15:17 +0200, Michal Wajdeczko wrote:
> > > The survivability_mode attribute is applicable only for DGFX and
> > > platforms newer than BATTLEMAGE. Use .is_visible() hook to hide
> > > this attribute when above conditions are not met. Remove code
> > > that
> > > was trying to fix such configuration during the runtime.
> > >
> > > Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > > Cc: Riana Tauro <riana.tauro@intel.com>
> > > ---
> > > drivers/gpu/drm/xe/xe_configfs.c | 24 ++++++----------
> > > ----
> > > --
> > > drivers/gpu/drm/xe/xe_configfs.h | 2 --
> > > drivers/gpu/drm/xe/xe_survivability_mode.c | 11 +---------
> > > 3 files changed, 7 insertions(+), 30 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_configfs.c
> > > b/drivers/gpu/drm/xe/xe_configfs.c
> > > index 43f000260752..0337811864cd 100644
> > > --- a/drivers/gpu/drm/xe/xe_configfs.c
> > > +++ b/drivers/gpu/drm/xe/xe_configfs.c
> > > @@ -369,7 +369,12 @@ static bool
> > > xe_config_device_is_visible(struct
> > > config_item *item,
> > > {
> > > struct xe_config_group_device *dev =
> > > to_xe_config_group_device(item);
> > >
> > > - return dev->desc; /* shall be always true */
> > > + if (attr == &attr_survivability_mode) {
> > > + if (!dev->desc->is_dgfx || dev->desc->platform <
> > > XE_BATTLEMAGE)
> > > + return false;
> > > + }
> > > +
> > > + return true;
> >
> > Why change the return here? Can we either leave this as dev->desc
> > or
> > otherwise use return true for the initial implementation (previous
> > patch)?
>
> the reason is simple: in patch 2/3 I just wanted to show how to
> obtain
> the device xe device desc here to make some decisions based on that.
>
> with plain "return true" in 2/3 I would have to mark desc var as
> "maybe_unused"
>
> and OTOH leaving "return desc" here in 3/3 is redundant since we
> already might have de-referenced the pointer
>
> so this one extra line in diff was IMO minimal cost to have two
> separate patches
> (as I didn't want to combine survivability_mode change with
> introduction of is_visible)
Yeah it makes sense to me too. Let's go with what you have here.
For the series:
Reviewed-by: Stuart Summers <stuart.summers@intel.com>
I was briefly wondering if it makes sense to keep the print message we
had from before, but given we're using the standard interface for
configfs now to check the visibility, any error handling should be done
at the interface definition point and not in the driver like we had
before with the explicit check. So looks good to me what you have.
Thanks,
Stuart
>
> >
> > Everything else in the series looks good to me. This does seem like
> > a
> > better way to approach this.
>
> thanks,
>
> >
> > Thanks,
> > Stuart
> >
> > > }
> > >
> > > static struct configfs_group_operations
> > > xe_config_device_group_ops =
> > > {
> > > @@ -558,23 +563,6 @@ bool
> > > xe_configfs_get_survivability_mode(struct
> > > pci_dev *pdev)
> > > return mode;
> > > }
> > >
> > > -/**
> > > - * xe_configfs_clear_survivability_mode - clear configfs
> > > survivability mode
> > > - * @pdev: pci device
> > > - */
> > > -void xe_configfs_clear_survivability_mode(struct pci_dev *pdev)
> > > -{
> > > - struct xe_config_group_device *dev =
> > > find_xe_config_group_device(pdev);
> > > -
> > > - if (!dev)
> > > - return;
> > > -
> > > - guard(mutex)(&dev->lock);
> > > - dev->config.survivability_mode = 0;
> > > -
> > > - config_group_put(&dev->group);
> > > -}
> > > -
> > > /**
> > > * xe_configfs_get_engines_allowed - get engine allowed mask
> > > from
> > > configfs
> > > * @pdev: pci device
> > > diff --git a/drivers/gpu/drm/xe/xe_configfs.h
> > > b/drivers/gpu/drm/xe/xe_configfs.h
> > > index 58c8c3164000..1402e863b71c 100644
> > > --- a/drivers/gpu/drm/xe/xe_configfs.h
> > > +++ b/drivers/gpu/drm/xe/xe_configfs.h
> > > @@ -15,7 +15,6 @@ int xe_configfs_init(void);
> > > void xe_configfs_exit(void);
> > > void xe_configfs_check_device(struct pci_dev *pdev);
> > > bool xe_configfs_get_survivability_mode(struct pci_dev *pdev);
> > > -void xe_configfs_clear_survivability_mode(struct pci_dev *pdev);
> > > u64 xe_configfs_get_engines_allowed(struct pci_dev *pdev);
> > > bool xe_configfs_get_psmi_enabled(struct pci_dev *pdev);
> > > #else
> > > @@ -23,7 +22,6 @@ static inline int xe_configfs_init(void) {
> > > return
> > > 0; }
> > > static inline void xe_configfs_exit(void) { }
> > > static inline void xe_configfs_check_device(struct pci_dev
> > > *pdev) {
> > > }
> > > static inline bool xe_configfs_get_survivability_mode(struct
> > > pci_dev
> > > *pdev) { return false; }
> > > -static inline void xe_configfs_clear_survivability_mode(struct
> > > pci_dev *pdev) { }
> > > static inline u64 xe_configfs_get_engines_allowed(struct pci_dev
> > > *pdev) { return U64_MAX; }
> > > static inline bool xe_configfs_get_psmi_enabled(struct pci_dev
> > > *pdev) { return false; }
> > > #endif
> > > diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c
> > > b/drivers/gpu/drm/xe/xe_survivability_mode.c
> > > index 79426ea46861..19a1732e33d4 100644
> > > --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
> > > +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
> > > @@ -287,19 +287,10 @@ bool
> > > xe_survivability_mode_is_requested(struct
> > > xe_device *xe)
> > > u32 data;
> > > bool survivability_mode;
> > >
> > > - if (!IS_DGFX(xe) || IS_SRIOV_VF(xe))
> > > + if (!IS_DGFX(xe) || IS_SRIOV_VF(xe) || xe->info.platform
> > > <
> > > XE_BATTLEMAGE)
> > > return false;
> > >
> > > survivability_mode =
> > > xe_configfs_get_survivability_mode(pdev);
> > > -
> > > - if (xe->info.platform < XE_BATTLEMAGE) {
> > > - if (survivability_mode) {
> > > - dev_err(&pdev->dev, "Survivability Mode
> > > is
> > > not supported on this card\n");
> > > -
> > > xe_configfs_clear_survivability_mode(pdev);
> > > - }
> > > - return false;
> > > - }
> > > -
> > > /* Enable survivability mode if set via configfs */
> > > if (survivability_mode)
> > > return true;
> >
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* ✗ Xe.CI.Full: failure for Allow to filter-out some configfs attrs
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
` (4 preceding siblings ...)
2025-09-02 15:56 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-09-02 20:41 ` Patchwork
2025-09-04 10:54 ` ✓ CI.KUnit: success for Allow to filter-out some configfs attrs (rev2) Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-09-02 20:41 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 51204 bytes --]
== Series Details ==
Series: Allow to filter-out some configfs attrs
URL : https://patchwork.freedesktop.org/series/153882/
State : failure
== Summary ==
CI Bug Log - changes from xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6_FULL -> xe-pw-153882v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153882v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153882v1_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-153882v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_exec_system_allocator@process-many-large-malloc-prefetch}:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-3/igt@xe_exec_system_allocator@process-many-large-malloc-prefetch.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-malloc-prefetch.html
Known issues
------------
Here are the changes found in xe-pw-153882v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3718])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#316]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [PASS][9] -> [DMESG-FAIL][10] ([Intel XE#4543])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#610])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#610])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +5 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#367]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2907])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2669]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#787]) +209 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#787]) +5 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#306]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_chamelium_color@ctm-0-25.html
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#306])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#373])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1178]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-432/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#455])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2320]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#308])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2291]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#323])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#323])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#4494])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#4354])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#776])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][42] -> [FAIL][43] ([Intel XE#5338]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2316]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
- shard-adlp: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#4543]) +2 other tests dmesg-warn
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1401] / [Intel XE#1745])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1401])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#651])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#651]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#651]) +17 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#656]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#5390]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#656]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#653]) +17 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#653]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2313]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1470] / [Intel XE#2853])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#1503])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_crc_basic@bad-source:
- shard-adlp: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-1/igt@kms_pipe_crc_basic@bad-source.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_pipe_crc_basic@bad-source.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#616]) +2 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2571])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2763]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#870])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@pr-suspend:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@kms_psr@pr-suspend.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#3414])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2330])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#1435])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1091] / [Intel XE#2849])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1123]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1126])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#4837]) +7 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@xe_eudebug_online@resume-dss.html
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-adlp: NOTRUN -> [SKIP][89] ([Intel XE#4519])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_eudebug_sriov@deny-eudebug.html
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#5793])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-large:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#688])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@xe_evict@evict-beng-large.html
* igt@xe_evict@evict-beng-small:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: [PASS][94] -> [SKIP][95] ([Intel XE#1392]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#288] / [Intel XE#5561]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#288]) +15 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2360])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4943]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@many-new-nomemset:
- shard-bmg: [PASS][100] -> [DMESG-FAIL][101] ([Intel XE#5213])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-3/igt@xe_exec_system_allocator@many-new-nomemset.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_exec_system_allocator@many-new-nomemset.html
* igt@xe_exec_system_allocator@processes-evict-malloc:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#4915]) +22 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_exec_system_allocator@processes-evict-malloc.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#4915]) +141 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#4943]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2459] / [Intel XE#2596])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_media_fill@media-fill.html
* igt@xe_oa@invalid-create-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3573]) +7 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-433/igt@xe_oa@invalid-create-userspace-config.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#3573])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2284] / [Intel XE#366])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4650])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-7/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4650])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#4733]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#944])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@xe_query@multigpu-query-config.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#4814])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][115] ([Intel XE#3718]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [FAIL][117] -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][119] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][121] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][122] +1 other test pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-434/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-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][123] ([Intel XE#3124]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][125] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][127] ([Intel XE#2291]) -> [PASS][128] +2 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-bmg: [SKIP][129] ([Intel XE#2316]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][131] ([Intel XE#301]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [INCOMPLETE][133] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][134] +1 other test pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-dg2-463/igt@kms_flip@flip-vs-suspend@c-dp4.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][135] ([Intel XE#4543]) -> [PASS][136] +1 other test pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-8/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-6/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: [DMESG-WARN][137] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][138] +4 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind:
- shard-adlp: [DMESG-FAIL][139] ([Intel XE#3876]) -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-9/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [SKIP][141] ([Intel XE#1392]) -> [PASS][142] +8 other tests pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_compute_mode@many-userptr-invalidate-race:
- shard-adlp: [ABORT][143] -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-9/igt@xe_exec_compute_mode@many-userptr-invalidate-race.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_exec_compute_mode@many-userptr-invalidate-race.html
- shard-bmg: [ABORT][145] -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-3/igt@xe_exec_compute_mode@many-userptr-invalidate-race.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_exec_compute_mode@many-userptr-invalidate-race.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [DMESG-WARN][147] ([Intel XE#3876]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-9/igt@xe_exec_reset@parallel-gt-reset.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_threads@threads-hang-fd-basic:
- shard-bmg: [DMESG-FAIL][149] ([Intel XE#3876]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-3/igt@xe_exec_threads@threads-hang-fd-basic.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_exec_threads@threads-hang-fd-basic.html
* igt@xe_pm@s3-basic:
- shard-adlp: [DMESG-FAIL][151] ([Intel XE#5545]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-adlp-9/igt@xe_pm@s3-basic.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-adlp-4/igt@xe_pm@s3-basic.html
- shard-bmg: [DMESG-FAIL][153] ([Intel XE#5545]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-3/igt@xe_pm@s3-basic.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-2/igt@xe_pm@s3-basic.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][155] ([Intel XE#2311]) -> [SKIP][156] ([Intel XE#2312]) +11 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][157] ([Intel XE#5390]) -> [SKIP][158] ([Intel XE#2312]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][159] ([Intel XE#2312]) -> [SKIP][160] ([Intel XE#5390]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][161] ([Intel XE#2312]) -> [SKIP][162] ([Intel XE#2311]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][163] ([Intel XE#2312]) -> [SKIP][164] ([Intel XE#2313]) +7 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][165] ([Intel XE#2313]) -> [SKIP][166] ([Intel XE#2312]) +10 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][167] ([Intel XE#3544]) -> [SKIP][168] ([Intel XE#3374] / [Intel XE#3544])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][169] ([Intel XE#5021]) -> [SKIP][170] ([Intel XE#4596])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][171] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][172] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[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#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[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#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
[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#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[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#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6 -> xe-pw-153882v1
IGT_8519: 8519
xe-3663-cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6: cf13b093a6a30a31d9cd8a60109c25f40e0e9bb6
xe-pw-153882v1: 153882v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v1/index.html
[-- Attachment #2: Type: text/html, Size: 59275 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-02 18:04 ` Lucas De Marchi
@ 2025-09-03 5:39 ` Riana Tauro
2025-09-03 5:49 ` Michal Wajdeczko
0 siblings, 1 reply; 24+ messages in thread
From: Riana Tauro @ 2025-09-03 5:39 UTC (permalink / raw)
To: Lucas De Marchi, Michal Wajdeczko; +Cc: intel-xe
On 9/2/2025 11:34 PM, Lucas De Marchi wrote:
> On Tue, Sep 02, 2025 at 03:17:42PM +0200, Michal Wajdeczko wrote:
>> This is a user controlled configfs attribute, we should not
>> modify that outside the configfs attr.store() implementation.
>
> agreed... this was the first user of configfs and I don't think it was
> the right to do it. However for such a change we should propagate it to
> stable too. Riana, any possible issue in userspace? With this change
> userspace should do a rmdir() before proceeding so it drops the
> configuration.
Survivability mode is enabled in early probe and is used for firmware
flashing by admin. If this is not cleared while exiting the mode the
driver keeps entering survivability mode on every unbind/bind till admin
clears the mode in configfs.
rmdir is general and can affect other entries. For survivability mode,
it's better to retain this clear.
Thanks
Riana
>
> Lucas De Marchi
>
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>> Cc: Riana Tauro <riana.tauro@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
>> 1 file changed, 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/
>> drm/xe/xe_survivability_mode.c
>> index 53c5af4b810c..79426ea46861 100644
>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>> @@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
>> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>> struct device *dev = &pdev->dev;
>>
>> - xe_configfs_clear_survivability_mode(pdev);
>> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
>> }
>>
>> --
>> 2.47.1
>>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-03 5:39 ` Riana Tauro
@ 2025-09-03 5:49 ` Michal Wajdeczko
2025-09-03 17:50 ` Lucas De Marchi
0 siblings, 1 reply; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-03 5:49 UTC (permalink / raw)
To: Riana Tauro, Lucas De Marchi, Rodrigo Vivi; +Cc: intel-xe
On 9/3/2025 7:39 AM, Riana Tauro wrote:
>
>
> On 9/2/2025 11:34 PM, Lucas De Marchi wrote:
>> On Tue, Sep 02, 2025 at 03:17:42PM +0200, Michal Wajdeczko wrote:
>>> This is a user controlled configfs attribute, we should not
>>> modify that outside the configfs attr.store() implementation.
>>
>> agreed... this was the first user of configfs and I don't think it was
>> the right to do it. However for such a change we should propagate it to
>> stable too. Riana, any possible issue in userspace? With this change
>> userspace should do a rmdir() before proceeding so it drops the
>> configuration.
>
> Survivability mode is enabled in early probe and is used for firmware flashing by admin. If this is not cleared while exiting the mode the driver keeps entering survivability mode on every unbind/bind till admin clears the mode in configfs.
hmm, but shouldn't driver enter survivability_mode *only* when there were some issues?
>
> rmdir is general and can affect other entries. For survivability mode,
> it's better to retain this clear.
but it doesn't have to be rmdir
mode could be cleared in similar way like it was enabled:
# echo 0 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
and since this user controlled config entry, I would let the user decide when to turn it off
>
> Thanks
> Riana
>>
>> Lucas De Marchi
>>
>>>
>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>> Cc: Riana Tauro <riana.tauro@intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
>>> 1 file changed, 1 deletion(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/ drm/xe/xe_survivability_mode.c
>>> index 53c5af4b810c..79426ea46861 100644
>>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>>> @@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
>>> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>>> struct device *dev = &pdev->dev;
>>>
>>> - xe_configfs_clear_survivability_mode(pdev);
>>> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
>>> }
>>>
>>> --
>>> 2.47.1
>>>
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-03 5:49 ` Michal Wajdeczko
@ 2025-09-03 17:50 ` Lucas De Marchi
2025-09-03 19:47 ` Michal Wajdeczko
0 siblings, 1 reply; 24+ messages in thread
From: Lucas De Marchi @ 2025-09-03 17:50 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: Riana Tauro, Rodrigo Vivi, intel-xe
On Wed, Sep 03, 2025 at 07:49:39AM +0200, Michal Wajdeczko wrote:
>
>
>On 9/3/2025 7:39 AM, Riana Tauro wrote:
>>
>>
>> On 9/2/2025 11:34 PM, Lucas De Marchi wrote:
>>> On Tue, Sep 02, 2025 at 03:17:42PM +0200, Michal Wajdeczko wrote:
>>>> This is a user controlled configfs attribute, we should not
>>>> modify that outside the configfs attr.store() implementation.
>>>
>>> agreed... this was the first user of configfs and I don't think it was
>>> the right to do it. However for such a change we should propagate it to
>>> stable too. Riana, any possible issue in userspace? With this change
>>> userspace should do a rmdir() before proceeding so it drops the
>>> configuration.
>>
>> Survivability mode is enabled in early probe and is used for firmware flashing by admin. If this is not cleared while exiting the mode the driver keeps entering survivability mode on every unbind/bind till admin clears the mode in configfs.
>
>hmm, but shouldn't driver enter survivability_mode *only* when there were some issues?
entering survivability_mode via configfs was a user-initiated action. We
shouldn't clear it on unbind.
>
>>
>> rmdir is general and can affect other entries. For survivability mode,
>> it's better to retain this clear.
>
>but it doesn't have to be rmdir
>
>mode could be cleared in similar way like it was enabled:
>
># echo 0 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
>
>and since this user controlled config entry, I would let the user decide when to turn it off
correct. It's even worse if there are other configs needed for that
platform, because then the user will play whac-a-mole if he has to
unbind to set additional stuff example:
echo 1 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
bind 0000:03:00.0
# ... oops, forgot to set some additional things
unbind 0000:03:00.0
echo foobar > /sys/kernel/config/xe/0000:03:00.0/something_else
bind 0000:03:00.0
# ... oops, now it's not in survivability_mode anymore
Doing it the other way is very simple:
1) if all settings should be lost: rmdir
2) if just survivability_mode should be lost, echo 0
Lucas De Marchi
>
>>
>> Thanks
>> Riana
>>>
>>> Lucas De Marchi
>>>
>>>>
>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>>> Cc: Riana Tauro <riana.tauro@intel.com>
>>>> ---
>>>> drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
>>>> 1 file changed, 1 deletion(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/ drm/xe/xe_survivability_mode.c
>>>> index 53c5af4b810c..79426ea46861 100644
>>>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>>>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>>>> @@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
>>>> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>>>> struct device *dev = &pdev->dev;
>>>>
>>>> - xe_configfs_clear_survivability_mode(pdev);
>>>> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
>>>> }
>>>>
>>>> --
>>>> 2.47.1
>>>>
>>
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-03 17:50 ` Lucas De Marchi
@ 2025-09-03 19:47 ` Michal Wajdeczko
2025-09-04 4:36 ` Riana Tauro
0 siblings, 1 reply; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-03 19:47 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: Riana Tauro, Rodrigo Vivi, intel-xe
On 9/3/2025 7:50 PM, Lucas De Marchi wrote:
> On Wed, Sep 03, 2025 at 07:49:39AM +0200, Michal Wajdeczko wrote:
>>
>>
>> On 9/3/2025 7:39 AM, Riana Tauro wrote:
>>>
>>>
>>> On 9/2/2025 11:34 PM, Lucas De Marchi wrote:
>>>> On Tue, Sep 02, 2025 at 03:17:42PM +0200, Michal Wajdeczko wrote:
>>>>> This is a user controlled configfs attribute, we should not
>>>>> modify that outside the configfs attr.store() implementation.
>>>>
>>>> agreed... this was the first user of configfs and I don't think it was
>>>> the right to do it. However for such a change we should propagate it to
should I add then:
Fixes: bc417e54e24b ("drm/xe: Enable configfs support for survivability mode")
>>>> stable too. Riana, any possible issue in userspace? With this change
>>>> userspace should do a rmdir() before proceeding so it drops the
>>>> configuration.
>>>
>>> Survivability mode is enabled in early probe and is used for firmware flashing by admin. If this is not cleared while exiting the mode the driver keeps entering survivability mode on every unbind/bind till admin clears the mode in configfs.
>>
>> hmm, but shouldn't driver enter survivability_mode *only* when there were some issues?
>
> entering survivability_mode via configfs was a user-initiated action. We
> shouldn't clear it on unbind.
I get that as Acked-by, right?
>
>>
>>>
>>> rmdir is general and can affect other entries. For survivability mode,
>>> it's better to retain this clear.
>>
>> but it doesn't have to be rmdir
>>
>> mode could be cleared in similar way like it was enabled:
>>
>> # echo 0 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
>>
>> and since this user controlled config entry, I would let the user decide when to turn it off
>
> correct. It's even worse if there are other configs needed for that
> platform, because then the user will play whac-a-mole if he has to
> unbind to set additional stuff example:
>
> echo 1 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
> bind 0000:03:00.0
> # ... oops, forgot to set some additional things
> unbind 0000:03:00.0
> echo foobar > /sys/kernel/config/xe/0000:03:00.0/something_else
> bind 0000:03:00.0
> # ... oops, now it's not in survivability_mode anymore
>
> Doing it the other way is very simple:
> 1) if all settings should be lost: rmdir
> 2) if just survivability_mode should be lost, echo 0
>
> Lucas De Marchi
>
>>
>>>
>>> Thanks
>>> Riana
>>>>
>>>> Lucas De Marchi
>>>>
>>>>>
>>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>>>> Cc: Riana Tauro <riana.tauro@intel.com>
>>>>> ---
>>>>> drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
>>>>> 1 file changed, 1 deletion(-)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/ drm/xe/xe_survivability_mode.c
>>>>> index 53c5af4b810c..79426ea46861 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>>>>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>>>>> @@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
>>>>> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>>>>> struct device *dev = &pdev->dev;
>>>>>
>>>>> - xe_configfs_clear_survivability_mode(pdev);
>>>>> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
>>>>> }
>>>>>
>>>>> --
>>>>> 2.47.1
>>>>>
>>>
>>
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-03 19:47 ` Michal Wajdeczko
@ 2025-09-04 4:36 ` Riana Tauro
0 siblings, 0 replies; 24+ messages in thread
From: Riana Tauro @ 2025-09-04 4:36 UTC (permalink / raw)
To: Michal Wajdeczko, Lucas De Marchi, Scarbrough, Frank,
ashwin.kumar.kulkarni
Cc: Rodrigo Vivi, intel-xe
On 9/4/2025 1:17 AM, Michal Wajdeczko wrote:
>
>
> On 9/3/2025 7:50 PM, Lucas De Marchi wrote:
>> On Wed, Sep 03, 2025 at 07:49:39AM +0200, Michal Wajdeczko wrote:
>>>
>>>
>>> On 9/3/2025 7:39 AM, Riana Tauro wrote:
>>>>
>>>>
>>>> On 9/2/2025 11:34 PM, Lucas De Marchi wrote:
>>>>> On Tue, Sep 02, 2025 at 03:17:42PM +0200, Michal Wajdeczko wrote:
>>>>>> This is a user controlled configfs attribute, we should not
>>>>>> modify that outside the configfs attr.store() implementation.
>>>>>
>>>>> agreed... this was the first user of configfs and I don't think it was
>>>>> the right to do it. However for such a change we should propagate it to
>
> should I add then:
>
> Fixes: bc417e54e24b ("drm/xe: Enable configfs support for survivability mode")
>
>>>>> stable too. Riana, any possible issue in userspace? With this change
>>>>> userspace should do a rmdir() before proceeding so it drops the
>>>>> configuration.
>>>>
>>>> Survivability mode is enabled in early probe and is used for firmware flashing by admin. If this is not cleared while exiting the mode the driver keeps entering survivability mode on every unbind/bind till admin clears the mode in configfs.
>>>
>>> hmm, but shouldn't driver enter survivability_mode *only* when there were some issues?
>>
>> entering survivability_mode via configfs was a user-initiated action. We
>> shouldn't clear it on unbind.
>
> I get that as Acked-by, right?
>
>>
>>>
>>>>
>>>> rmdir is general and can affect other entries. For survivability mode,
>>>> it's better to retain this clear.
>>>
>>> but it doesn't have to be rmdir
>>>
>>> mode could be cleared in similar way like it was enabled:
>>>
>>> # echo 0 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
>>>
>>> and since this user controlled config entry, I would let the user decide when to turn it off
>>
>> correct. It's even worse if there are other configs needed for that
>> platform, because then the user will play whac-a-mole if he has to
>> unbind to set additional stuff example:
>>
>> echo 1 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
>> bind 0000:03:00.0
>> # ... oops, forgot to set some additional things
>> unbind 0000:03:00.0
>> echo foobar > /sys/kernel/config/xe/0000:03:00.0/something_else
>> bind 0000:03:00.0
>> # ... oops, now it's not in survivability_mode anymore
>>
>> Doing it the other way is very simple:
>> 1) if all settings should be lost: rmdir
>> 2) if just survivability_mode should be lost, echo 0
++
Hmm, then documentation needs a update in survivability mode along with
the patch.
"It is the responsibility of the user to clear the
mode once firmware flash is complete."
Currently do not think fwupd is explicitly creating configfs. They
only check survivability mode on pcode failure. This is an option for
admin incase pcode fails to detect or they need to manually enter the mode.
Thanks
Riana
>>
>> Lucas De Marchi
>>
>>>
>>>>
>>>> Thanks
>>>> Riana
>>>>>
>>>>> Lucas De Marchi
>>>>>
>>>>>>
>>>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>>>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>>>>>> Cc: Riana Tauro <riana.tauro@intel.com>
>>>>>> ---
>>>>>> drivers/gpu/drm/xe/xe_survivability_mode.c | 1 -
>>>>>> 1 file changed, 1 deletion(-)
>>>>>>
>>>>>> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/ drm/xe/xe_survivability_mode.c
>>>>>> index 53c5af4b810c..79426ea46861 100644
>>>>>> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>>>>>> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>>>>>> @@ -180,7 +180,6 @@ static void xe_survivability_mode_fini(void *arg)
>>>>>> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
>>>>>> struct device *dev = &pdev->dev;
>>>>>>
>>>>>> - xe_configfs_clear_survivability_mode(pdev);
>>>>>> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
>>>>>> }
>>>>>>
>>>>>> --
>>>>>> 2.47.1
>>>>>>
>>>>
>>>
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* [PATCH v2 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-02 13:17 ` [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini Michal Wajdeczko
2025-09-02 16:37 ` Summers, Stuart
2025-09-02 18:04 ` Lucas De Marchi
@ 2025-09-04 10:35 ` Michal Wajdeczko
2025-09-04 15:56 ` Lucas De Marchi
2025-09-09 5:16 ` Riana Tauro
2 siblings, 2 replies; 24+ messages in thread
From: Michal Wajdeczko @ 2025-09-04 10:35 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Lucas De Marchi, Riana Tauro, Stuart Summers
This is a user controlled configfs attribute, we should not
modify that outside the configfs attr.store() implementation.
Fixes: bc417e54e24b ("drm/xe: Enable configfs support for survivability mode")
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Stuart Summers <stuart.summers@intel.com>
---
v2: add Fixes tag (Lucas) and update the doc (Riana)
---
drivers/gpu/drm/xe/xe_survivability_mode.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
index 53c5af4b810c..7999cc5262a5 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
@@ -44,6 +44,8 @@
*
* # echo 1 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
*
+ * It is the responsibility of the user to clear the mode once firmware flash is complete.
+ *
* Refer :ref:`xe_configfs` for more details on how to use configfs
*
* Survivability mode is indicated by the below admin-only readable sysfs which provides additional
@@ -180,7 +182,6 @@ static void xe_survivability_mode_fini(void *arg)
struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
struct device *dev = &pdev->dev;
- xe_configfs_clear_survivability_mode(pdev);
sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
}
--
2.47.1
^ permalink raw reply related [flat|nested] 24+ messages in thread
* ✓ CI.KUnit: success for Allow to filter-out some configfs attrs (rev2)
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
` (5 preceding siblings ...)
2025-09-02 20:41 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-04 10:54 ` Patchwork
2025-09-04 11:30 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-04 23:14 ` ✗ Xe.CI.Full: failure " Patchwork
8 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-09-04 10:54 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow to filter-out some configfs attrs (rev2)
URL : https://patchwork.freedesktop.org/series/153882/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:53:02] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:53: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
[10:53:35] Starting KUnit Kernel (1/1)...
[10:53:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:53:35] ================== guc_buf (11 subtests) ===================
[10:53:35] [PASSED] test_smallest
[10:53:35] [PASSED] test_largest
[10:53:35] [PASSED] test_granular
[10:53:35] [PASSED] test_unique
[10:53:35] [PASSED] test_overlap
[10:53:35] [PASSED] test_reusable
[10:53:35] [PASSED] test_too_big
[10:53:35] [PASSED] test_flush
[10:53:35] [PASSED] test_lookup
[10:53:35] [PASSED] test_data
[10:53:35] [PASSED] test_class
[10:53:35] ===================== [PASSED] guc_buf =====================
[10:53:35] =================== guc_dbm (7 subtests) ===================
[10:53:35] [PASSED] test_empty
[10:53:35] [PASSED] test_default
[10:53:35] ======================== test_size ========================
[10:53:35] [PASSED] 4
[10:53:35] [PASSED] 8
[10:53:35] [PASSED] 32
[10:53:35] [PASSED] 256
[10:53:35] ==================== [PASSED] test_size ====================
[10:53:35] ======================= test_reuse ========================
[10:53:35] [PASSED] 4
[10:53:35] [PASSED] 8
[10:53:35] [PASSED] 32
[10:53:35] [PASSED] 256
[10:53:35] =================== [PASSED] test_reuse ====================
[10:53:35] =================== test_range_overlap ====================
[10:53:35] [PASSED] 4
[10:53:35] [PASSED] 8
[10:53:35] [PASSED] 32
[10:53:35] [PASSED] 256
[10:53:35] =============== [PASSED] test_range_overlap ================
[10:53:35] =================== test_range_compact ====================
[10:53:35] [PASSED] 4
[10:53:35] [PASSED] 8
[10:53:35] [PASSED] 32
[10:53:35] [PASSED] 256
[10:53:35] =============== [PASSED] test_range_compact ================
[10:53:35] ==================== test_range_spare =====================
[10:53:35] [PASSED] 4
[10:53:35] [PASSED] 8
[10:53:35] [PASSED] 32
[10:53:35] [PASSED] 256
[10:53:35] ================ [PASSED] test_range_spare =================
[10:53:35] ===================== [PASSED] guc_dbm =====================
[10:53:35] =================== guc_idm (6 subtests) ===================
[10:53:35] [PASSED] bad_init
[10:53:35] [PASSED] no_init
[10:53:35] [PASSED] init_fini
[10:53:35] [PASSED] check_used
[10:53:35] [PASSED] check_quota
[10:53:35] [PASSED] check_all
[10:53:35] ===================== [PASSED] guc_idm =====================
[10:53:35] ================== no_relay (3 subtests) ===================
[10:53:35] [PASSED] xe_drops_guc2pf_if_not_ready
[10:53:35] [PASSED] xe_drops_guc2vf_if_not_ready
[10:53:35] [PASSED] xe_rejects_send_if_not_ready
[10:53:35] ==================== [PASSED] no_relay =====================
[10:53:35] ================== pf_relay (14 subtests) ==================
[10:53:35] [PASSED] pf_rejects_guc2pf_too_short
[10:53:35] [PASSED] pf_rejects_guc2pf_too_long
[10:53:35] [PASSED] pf_rejects_guc2pf_no_payload
[10:53:35] [PASSED] pf_fails_no_payload
[10:53:35] [PASSED] pf_fails_bad_origin
[10:53:35] [PASSED] pf_fails_bad_type
[10:53:35] [PASSED] pf_txn_reports_error
[10:53:35] [PASSED] pf_txn_sends_pf2guc
[10:53:35] [PASSED] pf_sends_pf2guc
[10:53:35] [SKIPPED] pf_loopback_nop
[10:53:35] [SKIPPED] pf_loopback_echo
[10:53:35] [SKIPPED] pf_loopback_fail
[10:53:35] [SKIPPED] pf_loopback_busy
[10:53:35] [SKIPPED] pf_loopback_retry
[10:53:35] ==================== [PASSED] pf_relay =====================
[10:53:35] ================== vf_relay (3 subtests) ===================
[10:53:35] [PASSED] vf_rejects_guc2vf_too_short
[10:53:35] [PASSED] vf_rejects_guc2vf_too_long
[10:53:35] [PASSED] vf_rejects_guc2vf_no_payload
[10:53:35] ==================== [PASSED] vf_relay =====================
[10:53:35] ===================== lmtt (1 subtest) =====================
[10:53:35] ======================== test_ops =========================
[10:53:35] [PASSED] 2-level
[10:53:35] [PASSED] multi-level
[10:53:35] ==================== [PASSED] test_ops =====================
[10:53:35] ====================== [PASSED] lmtt =======================
[10:53:35] ================= pf_service (11 subtests) =================
[10:53:35] [PASSED] pf_negotiate_any
[10:53:35] [PASSED] pf_negotiate_base_match
[10:53:35] [PASSED] pf_negotiate_base_newer
[10:53:35] [PASSED] pf_negotiate_base_next
[10:53:35] [SKIPPED] pf_negotiate_base_older
[10:53:35] [PASSED] pf_negotiate_base_prev
[10:53:35] [PASSED] pf_negotiate_latest_match
[10:53:35] [PASSED] pf_negotiate_latest_newer
[10:53:35] [PASSED] pf_negotiate_latest_next
[10:53:35] [SKIPPED] pf_negotiate_latest_older
[10:53:35] [SKIPPED] pf_negotiate_latest_prev
[10:53:35] =================== [PASSED] pf_service ====================
[10:53:35] =================== xe_mocs (2 subtests) ===================
[10:53:35] ================ xe_live_mocs_kernel_kunit ================
[10:53:35] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:53:35] ================ xe_live_mocs_reset_kunit =================
[10:53:35] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:53:35] ==================== [SKIPPED] xe_mocs =====================
[10:53:35] ================= xe_migrate (2 subtests) ==================
[10:53:35] ================= xe_migrate_sanity_kunit =================
[10:53:35] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:53:35] ================== xe_validate_ccs_kunit ==================
[10:53:35] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:53:35] =================== [SKIPPED] xe_migrate ===================
[10:53:35] ================== xe_dma_buf (1 subtest) ==================
[10:53:35] ==================== xe_dma_buf_kunit =====================
[10:53:35] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:53:35] =================== [SKIPPED] xe_dma_buf ===================
[10:53:35] ================= xe_bo_shrink (1 subtest) =================
[10:53:35] =================== xe_bo_shrink_kunit ====================
[10:53:35] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:53:35] ================== [SKIPPED] xe_bo_shrink ==================
[10:53:35] ==================== xe_bo (2 subtests) ====================
[10:53:35] ================== xe_ccs_migrate_kunit ===================
[10:53:35] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:53:35] ==================== xe_bo_evict_kunit ====================
[10:53:35] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:53:35] ===================== [SKIPPED] xe_bo ======================
[10:53:35] ==================== args (11 subtests) ====================
[10:53:35] [PASSED] count_args_test
[10:53:35] [PASSED] call_args_example
[10:53:35] [PASSED] call_args_test
[10:53:35] [PASSED] drop_first_arg_example
[10:53:35] [PASSED] drop_first_arg_test
[10:53:35] [PASSED] first_arg_example
[10:53:35] [PASSED] first_arg_test
[10:53:35] [PASSED] last_arg_example
[10:53:35] [PASSED] last_arg_test
[10:53:35] [PASSED] pick_arg_example
[10:53:35] [PASSED] sep_comma_example
[10:53:35] ====================== [PASSED] args =======================
[10:53:35] =================== xe_pci (3 subtests) ====================
[10:53:35] ==================== check_graphics_ip ====================
[10:53:35] [PASSED] 12.70 Xe_LPG
[10:53:35] [PASSED] 12.71 Xe_LPG
[10:53:35] [PASSED] 12.74 Xe_LPG+
[10:53:35] [PASSED] 20.01 Xe2_HPG
[10:53:35] [PASSED] 20.02 Xe2_HPG
[10:53:35] [PASSED] 20.04 Xe2_LPG
[10:53:35] [PASSED] 30.00 Xe3_LPG
[10:53:35] [PASSED] 30.01 Xe3_LPG
[10:53:35] [PASSED] 30.03 Xe3_LPG
[10:53:35] ================ [PASSED] check_graphics_ip ================
[10:53:35] ===================== check_media_ip ======================
[10:53:35] [PASSED] 13.00 Xe_LPM+
[10:53:35] [PASSED] 13.01 Xe2_HPM
[10:53:35] [PASSED] 20.00 Xe2_LPM
[10:53:35] [PASSED] 30.00 Xe3_LPM
[10:53:35] [PASSED] 30.02 Xe3_LPM
[10:53:35] ================= [PASSED] check_media_ip ==================
[10:53:35] ================= check_platform_gt_count =================
[10:53:35] [PASSED] 0x9A60 (TIGERLAKE)
[10:53:35] [PASSED] 0x9A68 (TIGERLAKE)
[10:53:35] [PASSED] 0x9A70 (TIGERLAKE)
[10:53:35] [PASSED] 0x9A40 (TIGERLAKE)
[10:53:35] [PASSED] 0x9A49 (TIGERLAKE)
[10:53:35] [PASSED] 0x9A59 (TIGERLAKE)
[10:53:35] [PASSED] 0x9A78 (TIGERLAKE)
[10:53:35] [PASSED] 0x9AC0 (TIGERLAKE)
[10:53:35] [PASSED] 0x9AC9 (TIGERLAKE)
[10:53:35] [PASSED] 0x9AD9 (TIGERLAKE)
[10:53:35] [PASSED] 0x9AF8 (TIGERLAKE)
[10:53:35] [PASSED] 0x4C80 (ROCKETLAKE)
[10:53:35] [PASSED] 0x4C8A (ROCKETLAKE)
[10:53:35] [PASSED] 0x4C8B (ROCKETLAKE)
[10:53:35] [PASSED] 0x4C8C (ROCKETLAKE)
[10:53:35] [PASSED] 0x4C90 (ROCKETLAKE)
[10:53:35] [PASSED] 0x4C9A (ROCKETLAKE)
[10:53:35] [PASSED] 0x4680 (ALDERLAKE_S)
[10:53:35] [PASSED] 0x4682 (ALDERLAKE_S)
[10:53:35] [PASSED] 0x4688 (ALDERLAKE_S)
[10:53:35] [PASSED] 0x468A (ALDERLAKE_S)
[10:53:35] [PASSED] 0x468B (ALDERLAKE_S)
[10:53:35] [PASSED] 0x4690 (ALDERLAKE_S)
[10:53:35] [PASSED] 0x4692 (ALDERLAKE_S)
[10:53:35] [PASSED] 0x4693 (ALDERLAKE_S)
[10:53:35] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46AA (ALDERLAKE_P)
[10:53:35] [PASSED] 0x462A (ALDERLAKE_P)
[10:53:35] [PASSED] 0x4626 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x4628 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:53:35] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:53:35] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:53:35] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:53:35] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:53:35] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:53:35] [PASSED] 0xA721 (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA720 (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:53:35] [PASSED] 0xA780 (ALDERLAKE_S)
[10:53:35] [PASSED] 0xA781 (ALDERLAKE_S)
[10:53:35] [PASSED] 0xA782 (ALDERLAKE_S)
[10:53:35] [PASSED] 0xA783 (ALDERLAKE_S)
[10:53:35] [PASSED] 0xA788 (ALDERLAKE_S)
[10:53:35] [PASSED] 0xA789 (ALDERLAKE_S)
[10:53:35] [PASSED] 0xA78A (ALDERLAKE_S)
[10:53:35] [PASSED] 0xA78B (ALDERLAKE_S)
[10:53:35] [PASSED] 0x4905 (DG1)
[10:53:35] [PASSED] 0x4906 (DG1)
[10:53:35] [PASSED] 0x4907 (DG1)
[10:53:35] [PASSED] 0x4908 (DG1)
[10:53:35] [PASSED] 0x4909 (DG1)
[10:53:35] [PASSED] 0x56C0 (DG2)
[10:53:35] [PASSED] 0x56C2 (DG2)
[10:53:35] [PASSED] 0x56C1 (DG2)
[10:53:35] [PASSED] 0x7D51 (METEORLAKE)
[10:53:35] [PASSED] 0x7DD1 (METEORLAKE)
[10:53:35] [PASSED] 0x7D41 (METEORLAKE)
[10:53:35] [PASSED] 0x7D67 (METEORLAKE)
[10:53:35] [PASSED] 0xB640 (METEORLAKE)
[10:53:35] [PASSED] 0x56A0 (DG2)
[10:53:35] [PASSED] 0x56A1 (DG2)
[10:53:35] [PASSED] 0x56A2 (DG2)
[10:53:35] [PASSED] 0x56BE (DG2)
[10:53:35] [PASSED] 0x56BF (DG2)
[10:53:35] [PASSED] 0x5690 (DG2)
[10:53:35] [PASSED] 0x5691 (DG2)
[10:53:35] [PASSED] 0x5692 (DG2)
[10:53:35] [PASSED] 0x56A5 (DG2)
[10:53:35] [PASSED] 0x56A6 (DG2)
[10:53:35] [PASSED] 0x56B0 (DG2)
[10:53:35] [PASSED] 0x56B1 (DG2)
[10:53:35] [PASSED] 0x56BA (DG2)
[10:53:35] [PASSED] 0x56BB (DG2)
[10:53:35] [PASSED] 0x56BC (DG2)
[10:53:35] [PASSED] 0x56BD (DG2)
[10:53:35] [PASSED] 0x5693 (DG2)
[10:53:35] [PASSED] 0x5694 (DG2)
[10:53:35] [PASSED] 0x5695 (DG2)
[10:53:35] [PASSED] 0x56A3 (DG2)
[10:53:35] [PASSED] 0x56A4 (DG2)
[10:53:35] [PASSED] 0x56B2 (DG2)
[10:53:35] [PASSED] 0x56B3 (DG2)
[10:53:35] [PASSED] 0x5696 (DG2)
[10:53:35] [PASSED] 0x5697 (DG2)
[10:53:35] [PASSED] 0xB69 (PVC)
[10:53:35] [PASSED] 0xB6E (PVC)
[10:53:35] [PASSED] 0xBD4 (PVC)
[10:53:35] [PASSED] 0xBD5 (PVC)
[10:53:35] [PASSED] 0xBD6 (PVC)
[10:53:35] [PASSED] 0xBD7 (PVC)
[10:53:35] [PASSED] 0xBD8 (PVC)
[10:53:35] [PASSED] 0xBD9 (PVC)
[10:53:35] [PASSED] 0xBDA (PVC)
[10:53:35] [PASSED] 0xBDB (PVC)
[10:53:35] [PASSED] 0xBE0 (PVC)
[10:53:35] [PASSED] 0xBE1 (PVC)
[10:53:35] [PASSED] 0xBE5 (PVC)
[10:53:35] [PASSED] 0x7D40 (METEORLAKE)
[10:53:35] [PASSED] 0x7D45 (METEORLAKE)
[10:53:35] [PASSED] 0x7D55 (METEORLAKE)
[10:53:35] [PASSED] 0x7D60 (METEORLAKE)
[10:53:35] [PASSED] 0x7DD5 (METEORLAKE)
[10:53:35] [PASSED] 0x6420 (LUNARLAKE)
[10:53:35] [PASSED] 0x64A0 (LUNARLAKE)
[10:53:35] [PASSED] 0x64B0 (LUNARLAKE)
[10:53:35] [PASSED] 0xE202 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE209 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE20B (BATTLEMAGE)
[10:53:35] [PASSED] 0xE20C (BATTLEMAGE)
[10:53:35] [PASSED] 0xE20D (BATTLEMAGE)
[10:53:35] [PASSED] 0xE210 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE211 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE212 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE216 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE220 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE221 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE222 (BATTLEMAGE)
[10:53:35] [PASSED] 0xE223 (BATTLEMAGE)
[10:53:35] [PASSED] 0xB080 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB081 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB082 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB083 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB084 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB085 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB086 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB087 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB08F (PANTHERLAKE)
[10:53:35] [PASSED] 0xB090 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:53:35] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:53:35] [PASSED] 0xFD80 (PANTHERLAKE)
[10:53:35] [PASSED] 0xFD81 (PANTHERLAKE)
[10:53:35] ============= [PASSED] check_platform_gt_count =============
[10:53:35] ===================== [PASSED] xe_pci ======================
[10:53:35] =================== xe_rtp (2 subtests) ====================
[10:53:35] =============== xe_rtp_process_to_sr_tests ================
[10:53:35] [PASSED] coalesce-same-reg
[10:53:35] [PASSED] no-match-no-add
[10:53:35] [PASSED] match-or
[10:53:35] [PASSED] match-or-xfail
[10:53:35] [PASSED] no-match-no-add-multiple-rules
[10:53:35] [PASSED] two-regs-two-entries
[10:53:35] [PASSED] clr-one-set-other
[10:53:35] [PASSED] set-field
[10:53:35] [PASSED] conflict-duplicate
[10:53:35] [PASSED] conflict-not-disjoint
[10:53:35] [PASSED] conflict-reg-type
[10:53:35] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:53:35] ================== xe_rtp_process_tests ===================
[10:53:35] [PASSED] active1
[10:53:35] [PASSED] active2
[10:53:35] [PASSED] active-inactive
[10:53:35] [PASSED] inactive-active
[10:53:35] [PASSED] inactive-1st_or_active-inactive
[10:53:35] [PASSED] inactive-2nd_or_active-inactive
[10:53:35] [PASSED] inactive-last_or_active-inactive
[10:53:35] [PASSED] inactive-no_or_active-inactive
[10:53:35] ============== [PASSED] xe_rtp_process_tests ===============
[10:53:35] ===================== [PASSED] xe_rtp ======================
[10:53:35] ==================== xe_wa (1 subtest) =====================
[10:53:35] ======================== xe_wa_gt =========================
[10:53:35] [PASSED] TIGERLAKE (B0)
[10:53:35] [PASSED] DG1 (A0)
[10:53:35] [PASSED] DG1 (B0)
[10:53:35] [PASSED] ALDERLAKE_S (A0)
[10:53:35] [PASSED] ALDERLAKE_S (B0)
[10:53:35] [PASSED] ALDERLAKE_S (C0)
[10:53:35] [PASSED] ALDERLAKE_S (D0)
[10:53:35] [PASSED] ALDERLAKE_P (A0)
[10:53:35] [PASSED] ALDERLAKE_P (B0)
[10:53:35] [PASSED] ALDERLAKE_P (C0)
[10:53:35] [PASSED] ALDERLAKE_S_RPLS (D0)
[10:53:35] [PASSED] ALDERLAKE_P_RPLU (E0)
[10:53:35] [PASSED] DG2_G10 (C0)
[10:53:35] [PASSED] DG2_G11 (B1)
[10:53:35] [PASSED] DG2_G12 (A1)
[10:53:35] [PASSED] METEORLAKE (g:A0, m:A0)
[10:53:35] [PASSED] METEORLAKE (g:A0, m:A0)
[10:53:35] [PASSED] METEORLAKE (g:A0, m:A0)
[10:53:35] [PASSED] LUNARLAKE (g:A0, m:A0)
[10:53:35] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[10:53:35] [PASSED] BATTLEMAGE (g:A0, m:A1)
[10:53:35] [PASSED] PANTHERLAKE (g:A0, m:A0)
[10:53:35] ==================== [PASSED] xe_wa_gt =====================
[10:53:35] ====================== [PASSED] xe_wa ======================
[10:53:35] ============================================================
[10:53:35] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[10:53:35] Elapsed time: 33.246s total, 4.163s configuring, 28.716s building, 0.321s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:53:36] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:53:37] 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
[10:54:00] Starting KUnit Kernel (1/1)...
[10:54:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:54:00] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:54:00] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:54:00] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:54:00] =========== drm_validate_clone_mode (2 subtests) ===========
[10:54:00] ============== drm_test_check_in_clone_mode ===============
[10:54:00] [PASSED] in_clone_mode
[10:54:00] [PASSED] not_in_clone_mode
[10:54:00] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:54:00] =============== drm_test_check_valid_clones ===============
[10:54:00] [PASSED] not_in_clone_mode
[10:54:00] [PASSED] valid_clone
[10:54:00] [PASSED] invalid_clone
[10:54:00] =========== [PASSED] drm_test_check_valid_clones ===========
[10:54:00] ============= [PASSED] drm_validate_clone_mode =============
[10:54:00] ============= drm_validate_modeset (1 subtest) =============
[10:54:00] [PASSED] drm_test_check_connector_changed_modeset
[10:54:00] ============== [PASSED] drm_validate_modeset ===============
[10:54:00] ====== drm_test_bridge_get_current_state (2 subtests) ======
[10:54:00] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:54:00] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[10:54:00] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:54:00] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[10:54:00] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:54:00] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:54:00] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[10:54:00] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:54:00] ============== drm_bridge_alloc (2 subtests) ===============
[10:54:00] [PASSED] drm_test_drm_bridge_alloc_basic
[10:54:00] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:54:00] ================ [PASSED] drm_bridge_alloc =================
[10:54:00] ================== drm_buddy (7 subtests) ==================
[10:54:00] [PASSED] drm_test_buddy_alloc_limit
[10:54:00] [PASSED] drm_test_buddy_alloc_optimistic
[10:54:00] [PASSED] drm_test_buddy_alloc_pessimistic
[10:54:00] [PASSED] drm_test_buddy_alloc_pathological
[10:54:00] [PASSED] drm_test_buddy_alloc_contiguous
[10:54:00] [PASSED] drm_test_buddy_alloc_clear
[10:54:00] [PASSED] drm_test_buddy_alloc_range_bias
[10:54:00] ==================== [PASSED] drm_buddy ====================
[10:54:00] ============= drm_cmdline_parser (40 subtests) =============
[10:54:00] [PASSED] drm_test_cmdline_force_d_only
[10:54:00] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:54:00] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:54:00] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:54:00] [PASSED] drm_test_cmdline_force_e_only
[10:54:00] [PASSED] drm_test_cmdline_res
[10:54:00] [PASSED] drm_test_cmdline_res_vesa
[10:54:00] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:54:00] [PASSED] drm_test_cmdline_res_rblank
[10:54:00] [PASSED] drm_test_cmdline_res_bpp
[10:54:00] [PASSED] drm_test_cmdline_res_refresh
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:54:00] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:54:00] [PASSED] drm_test_cmdline_res_margins_force_on
[10:54:00] [PASSED] drm_test_cmdline_res_vesa_margins
[10:54:00] [PASSED] drm_test_cmdline_name
[10:54:00] [PASSED] drm_test_cmdline_name_bpp
[10:54:00] [PASSED] drm_test_cmdline_name_option
[10:54:00] [PASSED] drm_test_cmdline_name_bpp_option
[10:54:00] [PASSED] drm_test_cmdline_rotate_0
[10:54:00] [PASSED] drm_test_cmdline_rotate_90
[10:54:00] [PASSED] drm_test_cmdline_rotate_180
[10:54:00] [PASSED] drm_test_cmdline_rotate_270
[10:54:00] [PASSED] drm_test_cmdline_hmirror
[10:54:00] [PASSED] drm_test_cmdline_vmirror
[10:54:00] [PASSED] drm_test_cmdline_margin_options
[10:54:00] [PASSED] drm_test_cmdline_multiple_options
[10:54:00] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:54:00] [PASSED] drm_test_cmdline_extra_and_option
[10:54:00] [PASSED] drm_test_cmdline_freestanding_options
[10:54:00] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:54:00] [PASSED] drm_test_cmdline_panel_orientation
[10:54:00] ================ drm_test_cmdline_invalid =================
[10:54:00] [PASSED] margin_only
[10:54:00] [PASSED] interlace_only
[10:54:00] [PASSED] res_missing_x
[10:54:00] [PASSED] res_missing_y
[10:54:00] [PASSED] res_bad_y
[10:54:00] [PASSED] res_missing_y_bpp
[10:54:00] [PASSED] res_bad_bpp
[10:54:00] [PASSED] res_bad_refresh
[10:54:00] [PASSED] res_bpp_refresh_force_on_off
[10:54:00] [PASSED] res_invalid_mode
[10:54:00] [PASSED] res_bpp_wrong_place_mode
[10:54:00] [PASSED] name_bpp_refresh
[10:54:00] [PASSED] name_refresh
[10:54:00] [PASSED] name_refresh_wrong_mode
[10:54:00] [PASSED] name_refresh_invalid_mode
[10:54:00] [PASSED] rotate_multiple
[10:54:00] [PASSED] rotate_invalid_val
[10:54:00] [PASSED] rotate_truncated
[10:54:00] [PASSED] invalid_option
[10:54:00] [PASSED] invalid_tv_option
[10:54:00] [PASSED] truncated_tv_option
[10:54:00] ============ [PASSED] drm_test_cmdline_invalid =============
[10:54:00] =============== drm_test_cmdline_tv_options ===============
[10:54:00] [PASSED] NTSC
[10:54:00] [PASSED] NTSC_443
[10:54:00] [PASSED] NTSC_J
[10:54:00] [PASSED] PAL
[10:54:00] [PASSED] PAL_M
[10:54:00] [PASSED] PAL_N
[10:54:00] [PASSED] SECAM
[10:54:00] [PASSED] MONO_525
[10:54:00] [PASSED] MONO_625
[10:54:00] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:54:00] =============== [PASSED] drm_cmdline_parser ================
[10:54:00] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:54:00] [PASSED] drm_test_connector_hdmi_init_valid
[10:54:00] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:54:00] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:54:00] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:54:00] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:54:00] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:54:00] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:54:00] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:54:00] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:54:00] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:54:00] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:54:00] [PASSED] supported_formats=0x3 yuv420_allowed=1
[10:54:00] [PASSED] supported_formats=0x3 yuv420_allowed=0
[10:54:00] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:54:00] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:54:00] [PASSED] drm_test_connector_hdmi_init_null_product
[10:54:00] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:54:00] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:54:00] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:54:00] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:54:00] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:54:00] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:54:00] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:54:00] ========= drm_test_connector_hdmi_init_type_valid =========
[10:54:00] [PASSED] HDMI-A
[10:54:00] [PASSED] HDMI-B
[10:54:00] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:54:00] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:54:00] [PASSED] Unknown
[10:54:00] [PASSED] VGA
[10:54:00] [PASSED] DVI-I
[10:54:00] [PASSED] DVI-D
[10:54:00] [PASSED] DVI-A
[10:54:00] [PASSED] Composite
[10:54:00] [PASSED] SVIDEO
[10:54:00] [PASSED] LVDS
[10:54:00] [PASSED] Component
[10:54:00] [PASSED] DIN
[10:54:00] [PASSED] DP
[10:54:00] [PASSED] TV
[10:54:00] [PASSED] eDP
[10:54:00] [PASSED] Virtual
[10:54:00] [PASSED] DSI
[10:54:00] [PASSED] DPI
[10:54:00] [PASSED] Writeback
[10:54:00] [PASSED] SPI
[10:54:00] [PASSED] USB
[10:54:00] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:54:00] ============ [PASSED] drmm_connector_hdmi_init =============
[10:54:00] ============= drmm_connector_init (3 subtests) =============
[10:54:00] [PASSED] drm_test_drmm_connector_init
[10:54:00] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:54:00] ========= drm_test_drmm_connector_init_type_valid =========
[10:54:00] [PASSED] Unknown
[10:54:00] [PASSED] VGA
[10:54:00] [PASSED] DVI-I
[10:54:00] [PASSED] DVI-D
[10:54:00] [PASSED] DVI-A
[10:54:00] [PASSED] Composite
[10:54:00] [PASSED] SVIDEO
[10:54:00] [PASSED] LVDS
[10:54:00] [PASSED] Component
[10:54:00] [PASSED] DIN
[10:54:00] [PASSED] DP
[10:54:00] [PASSED] HDMI-A
[10:54:00] [PASSED] HDMI-B
[10:54:00] [PASSED] TV
[10:54:00] [PASSED] eDP
[10:54:00] [PASSED] Virtual
[10:54:00] [PASSED] DSI
[10:54:00] [PASSED] DPI
[10:54:00] [PASSED] Writeback
[10:54:00] [PASSED] SPI
[10:54:00] [PASSED] USB
[10:54:00] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:54:00] =============== [PASSED] drmm_connector_init ===============
[10:54:00] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_init
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:54:00] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:54:00] [PASSED] Unknown
[10:54:00] [PASSED] VGA
[10:54:00] [PASSED] DVI-I
[10:54:00] [PASSED] DVI-D
[10:54:00] [PASSED] DVI-A
[10:54:00] [PASSED] Composite
[10:54:00] [PASSED] SVIDEO
[10:54:00] [PASSED] LVDS
[10:54:00] [PASSED] Component
[10:54:00] [PASSED] DIN
[10:54:00] [PASSED] DP
[10:54:00] [PASSED] HDMI-A
[10:54:00] [PASSED] HDMI-B
[10:54:00] [PASSED] TV
[10:54:00] [PASSED] eDP
[10:54:00] [PASSED] Virtual
[10:54:00] [PASSED] DSI
[10:54:00] [PASSED] DPI
[10:54:00] [PASSED] Writeback
[10:54:00] [PASSED] SPI
[10:54:00] [PASSED] USB
[10:54:00] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:54:00] ======== drm_test_drm_connector_dynamic_init_name =========
[10:54:00] [PASSED] Unknown
[10:54:00] [PASSED] VGA
[10:54:00] [PASSED] DVI-I
[10:54:00] [PASSED] DVI-D
[10:54:00] [PASSED] DVI-A
[10:54:00] [PASSED] Composite
[10:54:00] [PASSED] SVIDEO
[10:54:00] [PASSED] LVDS
[10:54:00] [PASSED] Component
[10:54:00] [PASSED] DIN
[10:54:00] [PASSED] DP
[10:54:00] [PASSED] HDMI-A
[10:54:00] [PASSED] HDMI-B
[10:54:00] [PASSED] TV
[10:54:00] [PASSED] eDP
[10:54:00] [PASSED] Virtual
[10:54:00] [PASSED] DSI
[10:54:00] [PASSED] DPI
[10:54:00] [PASSED] Writeback
[10:54:00] [PASSED] SPI
[10:54:00] [PASSED] USB
[10:54:00] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:54:00] =========== [PASSED] drm_connector_dynamic_init ============
[10:54:00] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:54:00] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:54:00] ======= drm_connector_dynamic_register (7 subtests) ========
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:54:00] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:54:00] ========= [PASSED] drm_connector_dynamic_register ==========
[10:54:00] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:54:00] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:54:00] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:54:00] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:54:00] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:54:00] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:54:00] [PASSED] NTSC
[10:54:00] [PASSED] NTSC-443
[10:54:00] [PASSED] NTSC-J
[10:54:00] [PASSED] PAL
[10:54:00] [PASSED] PAL-M
[10:54:00] [PASSED] PAL-N
[10:54:00] [PASSED] SECAM
[10:54:00] [PASSED] Mono
[10:54:00] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:54:00] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:54:00] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:54:00] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:54:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:54:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:54:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:54:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:54:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:54:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:54:00] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:54:00] [PASSED] VIC 96
[10:54:00] [PASSED] VIC 97
[10:54:00] [PASSED] VIC 101
[10:54:00] [PASSED] VIC 102
[10:54:00] [PASSED] VIC 106
[10:54:00] [PASSED] VIC 107
[10:54:00] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:54:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:54:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:54:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:54:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:54:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:54:00] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:54:00] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:54:00] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:54:00] [PASSED] Automatic
[10:54:00] [PASSED] Full
[10:54:00] [PASSED] Limited 16:235
[10:54:00] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:54:00] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:54:00] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:54:00] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:54:00] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:54:00] [PASSED] RGB
[10:54:00] [PASSED] YUV 4:2:0
[10:54:00] [PASSED] YUV 4:2:2
[10:54:00] [PASSED] YUV 4:4:4
[10:54:00] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:54:00] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:54:00] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:54:00] ============= drm_damage_helper (21 subtests) ==============
[10:54:00] [PASSED] drm_test_damage_iter_no_damage
[10:54:00] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:54:00] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:54:00] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:54:00] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:54:00] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:54:00] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:54:00] [PASSED] drm_test_damage_iter_simple_damage
[10:54:00] [PASSED] drm_test_damage_iter_single_damage
[10:54:00] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:54:00] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:54:00] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:54:00] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:54:00] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:54:00] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:54:00] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:54:00] [PASSED] drm_test_damage_iter_damage
[10:54:00] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:54:00] [PASSED] drm_test_damage_iter_damage_one_outside
[10:54:00] [PASSED] drm_test_damage_iter_damage_src_moved
[10:54:00] [PASSED] drm_test_damage_iter_damage_not_visible
[10:54:00] ================ [PASSED] drm_damage_helper ================
[10:54:00] ============== drm_dp_mst_helper (3 subtests) ==============
[10:54:00] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:54:00] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:54:00] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:54:00] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:54:00] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:54:00] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:54:00] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:54:00] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:54:00] [PASSED] Link rate 2000000 lane count 4
[10:54:00] [PASSED] Link rate 2000000 lane count 2
[10:54:00] [PASSED] Link rate 2000000 lane count 1
[10:54:00] [PASSED] Link rate 1350000 lane count 4
[10:54:00] [PASSED] Link rate 1350000 lane count 2
[10:54:00] [PASSED] Link rate 1350000 lane count 1
[10:54:00] [PASSED] Link rate 1000000 lane count 4
[10:54:00] [PASSED] Link rate 1000000 lane count 2
[10:54:00] [PASSED] Link rate 1000000 lane count 1
[10:54:00] [PASSED] Link rate 810000 lane count 4
[10:54:00] [PASSED] Link rate 810000 lane count 2
[10:54:00] [PASSED] Link rate 810000 lane count 1
[10:54:00] [PASSED] Link rate 540000 lane count 4
[10:54:00] [PASSED] Link rate 540000 lane count 2
[10:54:00] [PASSED] Link rate 540000 lane count 1
[10:54:00] [PASSED] Link rate 270000 lane count 4
[10:54:00] [PASSED] Link rate 270000 lane count 2
[10:54:00] [PASSED] Link rate 270000 lane count 1
[10:54:00] [PASSED] Link rate 162000 lane count 4
[10:54:00] [PASSED] Link rate 162000 lane count 2
[10:54:00] [PASSED] Link rate 162000 lane count 1
[10:54:00] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:54:00] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:54:00] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:54:00] [PASSED] DP_POWER_UP_PHY with port number
[10:54:00] [PASSED] DP_POWER_DOWN_PHY with port number
[10:54:00] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:54:00] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:54:00] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:54:00] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:54:00] [PASSED] DP_QUERY_PAYLOAD with port number
[10:54:00] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:54:00] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:54:00] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:54:00] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:54:00] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:54:00] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:54:00] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:54:00] [PASSED] DP_REMOTE_I2C_READ with port number
[10:54:00] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:54:00] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:54:00] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:54:00] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:54:00] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:54:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:54:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:54:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:54:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:54:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:54:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:54:00] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:54:00] ================ [PASSED] drm_dp_mst_helper ================
[10:54:00] ================== drm_exec (7 subtests) ===================
[10:54:00] [PASSED] sanitycheck
[10:54:00] [PASSED] test_lock
[10:54:00] [PASSED] test_lock_unlock
[10:54:00] [PASSED] test_duplicates
[10:54:00] [PASSED] test_prepare
[10:54:00] [PASSED] test_prepare_array
[10:54:00] [PASSED] test_multiple_loops
[10:54:00] ==================== [PASSED] drm_exec =====================
[10:54:00] =========== drm_format_helper_test (17 subtests) ===========
[10:54:00] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:54:00] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:54:00] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:54:00] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:54:00] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:54:00] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:54:00] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:54:00] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:54:00] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:54:00] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:54:00] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:54:00] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:54:00] ==================== drm_test_fb_swab =====================
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ================ [PASSED] drm_test_fb_swab =================
[10:54:00] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:54:00] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:54:00] [PASSED] single_pixel_source_buffer
[10:54:00] [PASSED] single_pixel_clip_rectangle
[10:54:00] [PASSED] well_known_colors
[10:54:00] [PASSED] destination_pitch
[10:54:00] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:54:00] ================= drm_test_fb_clip_offset =================
[10:54:00] [PASSED] pass through
[10:54:00] [PASSED] horizontal offset
[10:54:00] [PASSED] vertical offset
[10:54:00] [PASSED] horizontal and vertical offset
[10:54:00] [PASSED] horizontal offset (custom pitch)
[10:54:00] [PASSED] vertical offset (custom pitch)
[10:54:00] [PASSED] horizontal and vertical offset (custom pitch)
[10:54:00] ============= [PASSED] drm_test_fb_clip_offset =============
[10:54:00] =================== drm_test_fb_memcpy ====================
[10:54:00] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:54:00] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:54:00] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:54:00] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:54:00] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:54:00] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:54:00] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:54:00] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:54:00] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:54:00] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:54:00] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:54:00] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:54:00] =============== [PASSED] drm_test_fb_memcpy ================
[10:54:00] ============= [PASSED] drm_format_helper_test ==============
[10:54:00] ================= drm_format (18 subtests) =================
[10:54:00] [PASSED] drm_test_format_block_width_invalid
[10:54:00] [PASSED] drm_test_format_block_width_one_plane
[10:54:00] [PASSED] drm_test_format_block_width_two_plane
[10:54:00] [PASSED] drm_test_format_block_width_three_plane
[10:54:00] [PASSED] drm_test_format_block_width_tiled
[10:54:00] [PASSED] drm_test_format_block_height_invalid
[10:54:00] [PASSED] drm_test_format_block_height_one_plane
[10:54:00] [PASSED] drm_test_format_block_height_two_plane
[10:54:00] [PASSED] drm_test_format_block_height_three_plane
[10:54:00] [PASSED] drm_test_format_block_height_tiled
[10:54:00] [PASSED] drm_test_format_min_pitch_invalid
[10:54:00] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:54:00] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:54:00] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:54:00] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:54:00] [PASSED] drm_test_format_min_pitch_two_plane
[10:54:00] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:54:00] [PASSED] drm_test_format_min_pitch_tiled
[10:54:00] =================== [PASSED] drm_format ====================
[10:54:00] ============== drm_framebuffer (10 subtests) ===============
[10:54:00] ========== drm_test_framebuffer_check_src_coords ==========
[10:54:00] [PASSED] Success: source fits into fb
[10:54:00] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:54:00] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:54:00] [PASSED] Fail: overflowing fb with source width
[10:54:00] [PASSED] Fail: overflowing fb with source height
[10:54:00] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:54:00] [PASSED] drm_test_framebuffer_cleanup
[10:54:00] =============== drm_test_framebuffer_create ===============
[10:54:00] [PASSED] ABGR8888 normal sizes
[10:54:00] [PASSED] ABGR8888 max sizes
[10:54:00] [PASSED] ABGR8888 pitch greater than min required
[10:54:00] [PASSED] ABGR8888 pitch less than min required
[10:54:00] [PASSED] ABGR8888 Invalid width
[10:54:00] [PASSED] ABGR8888 Invalid buffer handle
[10:54:00] [PASSED] No pixel format
[10:54:00] [PASSED] ABGR8888 Width 0
[10:54:00] [PASSED] ABGR8888 Height 0
[10:54:00] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:54:00] [PASSED] ABGR8888 Large buffer offset
[10:54:00] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:54:00] [PASSED] ABGR8888 Invalid flag
[10:54:00] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:54:00] [PASSED] ABGR8888 Valid buffer modifier
[10:54:00] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:54:00] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:54:00] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:54:00] [PASSED] NV12 Normal sizes
[10:54:00] [PASSED] NV12 Max sizes
[10:54:00] [PASSED] NV12 Invalid pitch
[10:54:00] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:54:00] [PASSED] NV12 different modifier per-plane
[10:54:00] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:54:00] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:54:00] [PASSED] NV12 Modifier for inexistent plane
[10:54:00] [PASSED] NV12 Handle for inexistent plane
[10:54:00] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:54:00] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:54:00] [PASSED] YVU420 Normal sizes
[10:54:00] [PASSED] YVU420 Max sizes
[10:54:00] [PASSED] YVU420 Invalid pitch
[10:54:00] [PASSED] YVU420 Different pitches
[10:54:00] [PASSED] YVU420 Different buffer offsets/pitches
[10:54:00] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:54:00] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:54:00] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:54:00] [PASSED] YVU420 Valid modifier
[10:54:00] [PASSED] YVU420 Different modifiers per plane
[10:54:00] [PASSED] YVU420 Modifier for inexistent plane
[10:54:00] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:54:00] [PASSED] X0L2 Normal sizes
[10:54:00] [PASSED] X0L2 Max sizes
[10:54:00] [PASSED] X0L2 Invalid pitch
[10:54:00] [PASSED] X0L2 Pitch greater than minimum required
[10:54:00] [PASSED] X0L2 Handle for inexistent plane
[10:54:00] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:54:00] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:54:00] [PASSED] X0L2 Valid modifier
[10:54:00] [PASSED] X0L2 Modifier for inexistent plane
[10:54:00] =========== [PASSED] drm_test_framebuffer_create ===========
[10:54:00] [PASSED] drm_test_framebuffer_free
[10:54:00] [PASSED] drm_test_framebuffer_init
[10:54:00] [PASSED] drm_test_framebuffer_init_bad_format
[10:54:00] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:54:00] [PASSED] drm_test_framebuffer_lookup
[10:54:00] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:54:00] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:54:00] ================= [PASSED] drm_framebuffer =================
[10:54:00] ================ drm_gem_shmem (8 subtests) ================
[10:54:00] [PASSED] drm_gem_shmem_test_obj_create
[10:54:00] [PASSED] drm_gem_shmem_test_obj_create_private
[10:54:00] [PASSED] drm_gem_shmem_test_pin_pages
[10:54:00] [PASSED] drm_gem_shmem_test_vmap
[10:54:00] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:54:00] [PASSED] drm_gem_shmem_test_get_sg_table
[10:54:00] [PASSED] drm_gem_shmem_test_madvise
[10:54:00] [PASSED] drm_gem_shmem_test_purge
[10:54:00] ================== [PASSED] drm_gem_shmem ==================
[10:54:00] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:54:00] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:54:00] [PASSED] Automatic
[10:54:00] [PASSED] Full
[10:54:00] [PASSED] Limited 16:235
[10:54:00] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:54:00] [PASSED] drm_test_check_disable_connector
[10:54:00] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:54:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:54:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:54:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:54:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:54:00] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:54:00] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:54:00] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:54:00] [PASSED] drm_test_check_output_bpc_dvi
[10:54:00] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:54:00] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:54:00] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:54:00] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:54:00] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:54:00] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:54:00] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:54:00] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:54:00] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:54:00] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:54:00] [PASSED] drm_test_check_broadcast_rgb_value
[10:54:00] [PASSED] drm_test_check_bpc_8_value
[10:54:00] [PASSED] drm_test_check_bpc_10_value
[10:54:00] [PASSED] drm_test_check_bpc_12_value
[10:54:00] [PASSED] drm_test_check_format_value
[10:54:00] [PASSED] drm_test_check_tmds_char_value
[10:54:00] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:54:00] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[10:54:00] [PASSED] drm_test_check_mode_valid
[10:54:00] [PASSED] drm_test_check_mode_valid_reject
[10:54:00] [PASSED] drm_test_check_mode_valid_reject_rate
[10:54:00] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:54:00] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:54:00] ================= drm_managed (2 subtests) =================
[10:54:00] [PASSED] drm_test_managed_release_action
[10:54:00] [PASSED] drm_test_managed_run_action
[10:54:00] =================== [PASSED] drm_managed ===================
[10:54:00] =================== drm_mm (6 subtests) ====================
[10:54:00] [PASSED] drm_test_mm_init
[10:54:00] [PASSED] drm_test_mm_debug
[10:54:00] [PASSED] drm_test_mm_align32
[10:54:00] [PASSED] drm_test_mm_align64
[10:54:00] [PASSED] drm_test_mm_lowest
[10:54:00] [PASSED] drm_test_mm_highest
[10:54:00] ===================== [PASSED] drm_mm ======================
[10:54:00] ============= drm_modes_analog_tv (5 subtests) =============
[10:54:00] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:54:00] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:54:00] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:54:00] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:54:00] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:54:00] =============== [PASSED] drm_modes_analog_tv ===============
[10:54:00] ============== drm_plane_helper (2 subtests) ===============
[10:54:00] =============== drm_test_check_plane_state ================
[10:54:00] [PASSED] clipping_simple
[10:54:00] [PASSED] clipping_rotate_reflect
[10:54:00] [PASSED] positioning_simple
[10:54:00] [PASSED] upscaling
[10:54:00] [PASSED] downscaling
[10:54:00] [PASSED] rounding1
[10:54:00] [PASSED] rounding2
[10:54:00] [PASSED] rounding3
[10:54:00] [PASSED] rounding4
[10:54:00] =========== [PASSED] drm_test_check_plane_state ============
[10:54:00] =========== drm_test_check_invalid_plane_state ============
[10:54:00] [PASSED] positioning_invalid
[10:54:00] [PASSED] upscaling_invalid
[10:54:00] [PASSED] downscaling_invalid
[10:54:00] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:54:00] ================ [PASSED] drm_plane_helper =================
[10:54:00] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:54:00] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:54:00] [PASSED] None
[10:54:00] [PASSED] PAL
[10:54:00] [PASSED] NTSC
[10:54:00] [PASSED] Both, NTSC Default
[10:54:00] [PASSED] Both, PAL Default
[10:54:00] [PASSED] Both, NTSC Default, with PAL on command-line
[10:54:00] [PASSED] Both, PAL Default, with NTSC on command-line
[10:54:00] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:54:00] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:54:00] ================== drm_rect (9 subtests) ===================
[10:54:00] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:54:00] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:54:00] [PASSED] drm_test_rect_clip_scaled_clipped
[10:54:00] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:54:00] ================= drm_test_rect_intersect =================
[10:54:00] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:54:00] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:54:00] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:54:00] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:54:00] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:54:00] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:54:00] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:54:00] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:54:00] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:54:00] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:54:00] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:54:00] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:54:00] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:54:00] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:54:00] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:54:00] ============= [PASSED] drm_test_rect_intersect =============
[10:54:00] ================ drm_test_rect_calc_hscale ================
[10:54:00] [PASSED] normal use
[10:54:00] [PASSED] out of max range
[10:54:00] [PASSED] out of min range
[10:54:00] [PASSED] zero dst
[10:54:00] [PASSED] negative src
[10:54:00] [PASSED] negative dst
[10:54:00] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:54:00] ================ drm_test_rect_calc_vscale ================
[10:54:00] [PASSED] normal use
[10:54:00] [PASSED] out of max range
[10:54:00] [PASSED] out of min range
[10:54:00] [PASSED] zero dst
[10:54:00] [PASSED] negative src
[10:54:00] [PASSED] negative dst
[10:54:00] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:54:00] ================== drm_test_rect_rotate ===================
[10:54:00] [PASSED] reflect-x
[10:54:00] [PASSED] reflect-y
[10:54:00] [PASSED] rotate-0
[10:54:00] [PASSED] rotate-90
[10:54:00] [PASSED] rotate-180
[10:54:00] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[10:54:00] ============== [PASSED] drm_test_rect_rotate ===============
[10:54:00] ================ drm_test_rect_rotate_inv =================
[10:54:00] [PASSED] reflect-x
[10:54:00] [PASSED] reflect-y
[10:54:00] [PASSED] rotate-0
[10:54:00] [PASSED] rotate-90
[10:54:00] [PASSED] rotate-180
[10:54:00] [PASSED] rotate-270
[10:54:00] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:54:00] ==================== [PASSED] drm_rect =====================
[10:54:00] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:54:00] ============ drm_test_sysfb_build_fourcc_list =============
[10:54:00] [PASSED] no native formats
[10:54:00] [PASSED] XRGB8888 as native format
[10:54:00] [PASSED] remove duplicates
[10:54:00] [PASSED] convert alpha formats
[10:54:00] [PASSED] random formats
[10:54:00] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:54:00] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:54:00] ============================================================
[10:54:00] Testing complete. Ran 616 tests: passed: 616
[10:54:00] Elapsed time: 24.517s total, 1.656s configuring, 22.694s building, 0.150s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:54:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:54:02] 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
[10:54:10] Starting KUnit Kernel (1/1)...
[10:54:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:54:10] ================= ttm_device (5 subtests) ==================
[10:54:10] [PASSED] ttm_device_init_basic
[10:54:10] [PASSED] ttm_device_init_multiple
[10:54:10] [PASSED] ttm_device_fini_basic
[10:54:10] [PASSED] ttm_device_init_no_vma_man
[10:54:10] ================== ttm_device_init_pools ==================
[10:54:10] [PASSED] No DMA allocations, no DMA32 required
[10:54:10] [PASSED] DMA allocations, DMA32 required
[10:54:10] [PASSED] No DMA allocations, DMA32 required
[10:54:10] [PASSED] DMA allocations, no DMA32 required
[10:54:10] ============== [PASSED] ttm_device_init_pools ==============
[10:54:10] =================== [PASSED] ttm_device ====================
[10:54:10] ================== ttm_pool (8 subtests) ===================
[10:54:10] ================== ttm_pool_alloc_basic ===================
[10:54:10] [PASSED] One page
[10:54:10] [PASSED] More than one page
[10:54:10] [PASSED] Above the allocation limit
[10:54:10] [PASSED] One page, with coherent DMA mappings enabled
[10:54:10] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:54:10] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:54:10] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:54:10] [PASSED] One page
[10:54:10] [PASSED] More than one page
[10:54:10] [PASSED] Above the allocation limit
[10:54:10] [PASSED] One page, with coherent DMA mappings enabled
[10:54:10] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:54:10] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:54:10] [PASSED] ttm_pool_alloc_order_caching_match
[10:54:10] [PASSED] ttm_pool_alloc_caching_mismatch
[10:54:10] [PASSED] ttm_pool_alloc_order_mismatch
[10:54:10] [PASSED] ttm_pool_free_dma_alloc
[10:54:10] [PASSED] ttm_pool_free_no_dma_alloc
[10:54:10] [PASSED] ttm_pool_fini_basic
[10:54:10] ==================== [PASSED] ttm_pool =====================
[10:54:10] ================ ttm_resource (8 subtests) =================
[10:54:10] ================= ttm_resource_init_basic =================
[10:54:10] [PASSED] Init resource in TTM_PL_SYSTEM
[10:54:10] [PASSED] Init resource in TTM_PL_VRAM
[10:54:10] [PASSED] Init resource in a private placement
[10:54:10] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:54:10] ============= [PASSED] ttm_resource_init_basic =============
[10:54:10] [PASSED] ttm_resource_init_pinned
[10:54:10] [PASSED] ttm_resource_fini_basic
[10:54:10] [PASSED] ttm_resource_manager_init_basic
[10:54:10] [PASSED] ttm_resource_manager_usage_basic
[10:54:10] [PASSED] ttm_resource_manager_set_used_basic
[10:54:10] [PASSED] ttm_sys_man_alloc_basic
[10:54:10] [PASSED] ttm_sys_man_free_basic
[10:54:10] ================== [PASSED] ttm_resource ===================
[10:54:10] =================== ttm_tt (15 subtests) ===================
[10:54:10] ==================== ttm_tt_init_basic ====================
[10:54:10] [PASSED] Page-aligned size
[10:54:10] [PASSED] Extra pages requested
[10:54:10] ================ [PASSED] ttm_tt_init_basic ================
[10:54:10] [PASSED] ttm_tt_init_misaligned
[10:54:10] [PASSED] ttm_tt_fini_basic
[10:54:10] [PASSED] ttm_tt_fini_sg
[10:54:10] [PASSED] ttm_tt_fini_shmem
[10:54:10] [PASSED] ttm_tt_create_basic
[10:54:10] [PASSED] ttm_tt_create_invalid_bo_type
[10:54:10] [PASSED] ttm_tt_create_ttm_exists
[10:54:10] [PASSED] ttm_tt_create_failed
[10:54:10] [PASSED] ttm_tt_destroy_basic
[10:54:10] [PASSED] ttm_tt_populate_null_ttm
[10:54:10] [PASSED] ttm_tt_populate_populated_ttm
[10:54:10] [PASSED] ttm_tt_unpopulate_basic
[10:54:10] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:54:10] [PASSED] ttm_tt_swapin_basic
[10:54:10] ===================== [PASSED] ttm_tt ======================
[10:54:10] =================== ttm_bo (14 subtests) ===================
[10:54:10] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:54:10] [PASSED] Cannot be interrupted and sleeps
[10:54:10] [PASSED] Cannot be interrupted, locks straight away
[10:54:10] [PASSED] Can be interrupted, sleeps
[10:54:10] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:54:10] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:54:10] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:54:10] [PASSED] ttm_bo_reserve_double_resv
[10:54:10] [PASSED] ttm_bo_reserve_interrupted
[10:54:10] [PASSED] ttm_bo_reserve_deadlock
[10:54:10] [PASSED] ttm_bo_unreserve_basic
[10:54:10] [PASSED] ttm_bo_unreserve_pinned
[10:54:10] [PASSED] ttm_bo_unreserve_bulk
[10:54:10] [PASSED] ttm_bo_put_basic
[10:54:10] [PASSED] ttm_bo_put_shared_resv
[10:54:10] [PASSED] ttm_bo_pin_basic
[10:54:10] [PASSED] ttm_bo_pin_unpin_resource
[10:54:10] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:54:10] ===================== [PASSED] ttm_bo ======================
[10:54:10] ============== ttm_bo_validate (21 subtests) ===============
[10:54:10] ============== ttm_bo_init_reserved_sys_man ===============
[10:54:10] [PASSED] Buffer object for userspace
[10:54:10] [PASSED] Kernel buffer object
[10:54:10] [PASSED] Shared buffer object
[10:54:10] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:54:10] ============== ttm_bo_init_reserved_mock_man ==============
[10:54:10] [PASSED] Buffer object for userspace
[10:54:10] [PASSED] Kernel buffer object
[10:54:10] [PASSED] Shared buffer object
[10:54:10] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:54:10] [PASSED] ttm_bo_init_reserved_resv
[10:54:10] ================== ttm_bo_validate_basic ==================
[10:54:10] [PASSED] Buffer object for userspace
[10:54:10] [PASSED] Kernel buffer object
[10:54:10] [PASSED] Shared buffer object
[10:54:10] ============== [PASSED] ttm_bo_validate_basic ==============
[10:54:10] [PASSED] ttm_bo_validate_invalid_placement
[10:54:10] ============= ttm_bo_validate_same_placement ==============
[10:54:10] [PASSED] System manager
[10:54:10] [PASSED] VRAM manager
[10:54:10] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:54:10] [PASSED] ttm_bo_validate_failed_alloc
[10:54:10] [PASSED] ttm_bo_validate_pinned
[10:54:10] [PASSED] ttm_bo_validate_busy_placement
[10:54:10] ================ ttm_bo_validate_multihop =================
[10:54:10] [PASSED] Buffer object for userspace
[10:54:10] [PASSED] Kernel buffer object
[10:54:10] [PASSED] Shared buffer object
[10:54:10] ============ [PASSED] ttm_bo_validate_multihop =============
[10:54:10] ========== ttm_bo_validate_no_placement_signaled ==========
[10:54:10] [PASSED] Buffer object in system domain, no page vector
[10:54:10] [PASSED] Buffer object in system domain with an existing page vector
[10:54:10] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:54:10] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:54:10] [PASSED] Buffer object for userspace
[10:54:10] [PASSED] Kernel buffer object
[10:54:10] [PASSED] Shared buffer object
[10:54:10] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:54:10] [PASSED] ttm_bo_validate_move_fence_signaled
[10:54:10] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:54:10] [PASSED] Waits for GPU
[10:54:10] [PASSED] Tries to lock straight away
[10:54:10] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:54:10] [PASSED] ttm_bo_validate_happy_evict
[10:54:10] [PASSED] ttm_bo_validate_all_pinned_evict
[10:54:10] [PASSED] ttm_bo_validate_allowed_only_evict
[10:54:10] [PASSED] ttm_bo_validate_deleted_evict
[10:54:10] [PASSED] ttm_bo_validate_busy_domain_evict
[10:54:10] [PASSED] ttm_bo_validate_evict_gutting
[10:54:10] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[10:54:10] ================= [PASSED] ttm_bo_validate =================
[10:54:10] ============================================================
[10:54:10] Testing complete. Ran 101 tests: passed: 101
[10:54:10] Elapsed time: 9.928s total, 1.732s configuring, 7.930s building, 0.214s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread
* ✓ Xe.CI.BAT: success for Allow to filter-out some configfs attrs (rev2)
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
` (6 preceding siblings ...)
2025-09-04 10:54 ` ✓ CI.KUnit: success for Allow to filter-out some configfs attrs (rev2) Patchwork
@ 2025-09-04 11:30 ` Patchwork
2025-09-04 23:14 ` ✗ Xe.CI.Full: failure " Patchwork
8 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-09-04 11:30 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2555 bytes --]
== Series Details ==
Series: Allow to filter-out some configfs attrs (rev2)
URL : https://patchwork.freedesktop.org/series/153882/
State : success
== Summary ==
CI Bug Log - changes from xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7_BAT -> xe-pw-153882v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 10)
------------------------------
Missing (1): bat-ptl-vm
Known issues
------------
Here are the changes found in xe-pw-153882v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_pat@pat-index-xe2@render:
- bat-bmg-1: [PASS][1] -> [FAIL][2] ([Intel XE#5507]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/bat-bmg-1/igt@xe_pat@pat-index-xe2@render.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/bat-bmg-1/igt@xe_pat@pat-index-xe2@render.html
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@a-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
* igt@xe_vm@bind-execqueues-independent:
- {bat-ptl-2}: [FAIL][5] ([Intel XE#5783]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/bat-ptl-2/igt@xe_vm@bind-execqueues-independent.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/bat-ptl-2/igt@xe_vm@bind-execqueues-independent.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#5507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5507
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* Linux: xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7 -> xe-pw-153882v2
IGT_8522: 8522
xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7: 76dbb37ec196e36c129b63b102b4884c90506bd7
xe-pw-153882v2: 153882v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/index.html
[-- Attachment #2: Type: text/html, Size: 3186 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH v2 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-04 10:35 ` [PATCH v2 " Michal Wajdeczko
@ 2025-09-04 15:56 ` Lucas De Marchi
2025-09-09 5:16 ` Riana Tauro
1 sibling, 0 replies; 24+ messages in thread
From: Lucas De Marchi @ 2025-09-04 15:56 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe, Riana Tauro, Stuart Summers
On Thu, Sep 04, 2025 at 12:35:21PM +0200, Michal Wajdeczko wrote:
>This is a user controlled configfs attribute, we should not
>modify that outside the configfs attr.store() implementation.
>
>Fixes: bc417e54e24b ("drm/xe: Enable configfs support for survivability mode")
>Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Cc: Riana Tauro <riana.tauro@intel.com>
>Reviewed-by: Stuart Summers <stuart.summers@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
thanks
Lucas De Marchi
>---
>v2: add Fixes tag (Lucas) and update the doc (Riana)
>---
> drivers/gpu/drm/xe/xe_survivability_mode.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
>index 53c5af4b810c..7999cc5262a5 100644
>--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
>+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
>@@ -44,6 +44,8 @@
> *
> * # echo 1 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
> *
>+ * It is the responsibility of the user to clear the mode once firmware flash is complete.
>+ *
> * Refer :ref:`xe_configfs` for more details on how to use configfs
> *
> * Survivability mode is indicated by the below admin-only readable sysfs which provides additional
>@@ -180,7 +182,6 @@ static void xe_survivability_mode_fini(void *arg)
> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
> struct device *dev = &pdev->dev;
>
>- xe_configfs_clear_survivability_mode(pdev);
> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
> }
>
>--
>2.47.1
>
^ permalink raw reply [flat|nested] 24+ messages in thread
* ✗ Xe.CI.Full: failure for Allow to filter-out some configfs attrs (rev2)
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
` (7 preceding siblings ...)
2025-09-04 11:30 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-09-04 23:14 ` Patchwork
8 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-09-04 23:14 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 40140 bytes --]
== Series Details ==
Series: Allow to filter-out some configfs attrs (rev2)
URL : https://patchwork.freedesktop.org/series/153882/
State : failure
== Summary ==
CI Bug Log - changes from xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7_FULL -> xe-pw-153882v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153882v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153882v2_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-153882v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-435/igt@xe_pm_residency@idle-residency-on-exec.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html
New tests
---------
New tests have been introduced between xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7_FULL and xe-pw-153882v2_FULL:
### New IGT tests (1) ###
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.51] s
Known issues
------------
Here are the changes found in xe-pw-153882v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#607])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#2191])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#367])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#787]) +111 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#2907])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][16] ([Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#4417]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#4416]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#306])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#373]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][21] ([Intel XE#1178]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-435/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][22] ([Intel XE#1178])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-5/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#307])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#308])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2291]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#4354])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-dg2-set2: [PASS][28] -> [FAIL][29] ([Intel XE#3098])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-432/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][30] ([Intel XE#3098])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2316]) +6 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a3:
- shard-bmg: [PASS][33] -> [FAIL][34] ([Intel XE#5338]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a3.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][35] -> [FAIL][36] ([Intel XE#301] / [Intel XE#3149])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#301])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#4543]) +4 other tests dmesg-warn
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#651]) +14 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#653]) +15 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#3012])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#4596])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-x.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#5021])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#5020])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#3414])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1127])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#2883]) +2 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#455]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#4837]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#1392]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#288]) +11 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#3876])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][66] ([Intel XE#3876])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#4915]) +122 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#5893])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_oa@polling:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#3573]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@xe_oa@polling.html
* igt@xe_pm@d3cold-i2c:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#5694])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-adlp: [PASS][72] -> [DMESG-WARN][73] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-prefetch.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#579])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@display-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#4733]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#944])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4130])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4351])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1:
- shard-lnl: [FAIL][79] ([Intel XE#5993]) -> [PASS][80] +1 other test pass
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][81] ([Intel XE#4543]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][83] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][85] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][87] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][89] ([Intel XE#2291]) -> [PASS][90] +1 other test pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][91] ([Intel XE#2316]) -> [PASS][92] +8 other tests pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][93] ([Intel XE#3098]) -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][95] ([Intel XE#4543]) -> [PASS][96] +4 other tests pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][97] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-1/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][99] ([Intel XE#1503]) -> [PASS][100] +2 other tests pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_hdr@static-swap.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-5/igt@kms_hdr@static-swap.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][101] ([Intel XE#4596]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- shard-adlp: [DMESG-WARN][103] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][104] +5 other tests pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][105] ([Intel XE#2883]) -> [PASS][106] +5 other tests pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-4/igt@kms_setmode@basic.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-8/igt@kms_setmode@basic.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][107] ([Intel XE#1499]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_vrr@negative-basic.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-8/igt@kms_vrr@negative-basic.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-dg2-set2: [SKIP][109] ([Intel XE#1392]) -> [PASS][110] +3 other tests pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-434/igt@xe_exec_basic@multigpu-once-null.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][111] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][112] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][113] ([Intel XE#2341]) -> [FAIL][114] ([Intel XE#1178])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_content_protection@atomic.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][115] ([Intel XE#1188]) -> [SKIP][116] ([Intel XE#2341])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-4/igt@kms_content_protection@uevent.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_flip@flip-vs-suspend:
- shard-adlp: [DMESG-WARN][117] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-WARN][118] ([Intel XE#4543])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-4/igt@kms_flip@flip-vs-suspend.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-interruptible:
- shard-adlp: [DMESG-WARN][119] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [DMESG-WARN][120] ([Intel XE#4543])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-adlp-1/igt@kms_flip@plain-flip-interruptible.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-adlp-3/igt@kms_flip@plain-flip-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][121] ([Intel XE#2312]) -> [SKIP][122] ([Intel XE#2311]) +15 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][123] ([Intel XE#2311]) -> [SKIP][124] ([Intel XE#2312]) +12 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][125] ([Intel XE#5390]) -> [SKIP][126] ([Intel XE#2312]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][127] ([Intel XE#2312]) -> [SKIP][128] ([Intel XE#5390]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][129] ([Intel XE#2313]) -> [SKIP][130] ([Intel XE#2312]) +12 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][131] ([Intel XE#2312]) -> [SKIP][132] ([Intel XE#2313]) +14 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][133] ([Intel XE#4596]) -> [SKIP][134] ([Intel XE#5021])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][135] ([Intel XE#2426]) -> [FAIL][136] ([Intel XE#1729])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [DMESG-WARN][137] ([Intel XE#3876]) -> [ABORT][138] ([Intel XE#3970])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7/shard-bmg-1/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[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#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[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#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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7 -> xe-pw-153882v2
IGT_8522: 8522
xe-3676-76dbb37ec196e36c129b63b102b4884c90506bd7: 76dbb37ec196e36c129b63b102b4884c90506bd7
xe-pw-153882v2: 153882v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153882v2/index.html
[-- Attachment #2: Type: text/html, Size: 47456 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [PATCH v2 1/3] drm/xe/configfs: Don't touch survivability_mode on fini
2025-09-04 10:35 ` [PATCH v2 " Michal Wajdeczko
2025-09-04 15:56 ` Lucas De Marchi
@ 2025-09-09 5:16 ` Riana Tauro
1 sibling, 0 replies; 24+ messages in thread
From: Riana Tauro @ 2025-09-09 5:16 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe; +Cc: Lucas De Marchi, Stuart Summers
On 9/4/2025 4:05 PM, Michal Wajdeczko wrote:
> This is a user controlled configfs attribute, we should not
> modify that outside the configfs attr.store() implementation.
>
> Fixes: bc417e54e24b ("drm/xe: Enable configfs support for survivability mode")
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Riana Tauro <riana.tauro@intel.com>
> Reviewed-by: Stuart Summers <stuart.summers@intel.com>
Looks good to me
Reviewed-by: Riana Tauro <riana.tauro@intel.com>> ---
> v2: add Fixes tag (Lucas) and update the doc (Riana)
> ---
> drivers/gpu/drm/xe/xe_survivability_mode.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
> index 53c5af4b810c..7999cc5262a5 100644
> --- a/drivers/gpu/drm/xe/xe_survivability_mode.c
> +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
> @@ -44,6 +44,8 @@
> *
> * # echo 1 > /sys/kernel/config/xe/0000:03:00.0/survivability_mode
> *
> + * It is the responsibility of the user to clear the mode once firmware flash is complete.
> + *
> * Refer :ref:`xe_configfs` for more details on how to use configfs
> *
> * Survivability mode is indicated by the below admin-only readable sysfs which provides additional
> @@ -180,7 +182,6 @@ static void xe_survivability_mode_fini(void *arg)
> struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
> struct device *dev = &pdev->dev;
>
> - xe_configfs_clear_survivability_mode(pdev);
> sysfs_remove_file(&dev->kobj, &dev_attr_survivability_mode.attr);
> }
>
^ permalink raw reply [flat|nested] 24+ messages in thread
end of thread, other threads:[~2025-09-09 5:16 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-02 13:17 [PATCH 0/3] Allow to filter-out some configfs attrs Michal Wajdeczko
2025-09-02 13:17 ` [PATCH 1/3] drm/xe/configfs: Don't touch survivability_mode on fini Michal Wajdeczko
2025-09-02 16:37 ` Summers, Stuart
2025-09-02 18:04 ` Lucas De Marchi
2025-09-03 5:39 ` Riana Tauro
2025-09-03 5:49 ` Michal Wajdeczko
2025-09-03 17:50 ` Lucas De Marchi
2025-09-03 19:47 ` Michal Wajdeczko
2025-09-04 4:36 ` Riana Tauro
2025-09-04 10:35 ` [PATCH v2 " Michal Wajdeczko
2025-09-04 15:56 ` Lucas De Marchi
2025-09-09 5:16 ` Riana Tauro
2025-09-02 13:17 ` [PATCH 2/3] drm/xe/configfs: Prepare to filter-out configfs attributes Michal Wajdeczko
2025-09-02 13:17 ` [PATCH 3/3] drm/xe/configfs: Don't expose survivability_mode if not applicable Michal Wajdeczko
2025-09-02 17:25 ` Summers, Stuart
2025-09-02 18:16 ` Michal Wajdeczko
2025-09-02 18:19 ` Summers, Stuart
2025-09-02 18:10 ` Lucas De Marchi
2025-09-02 15:19 ` ✓ CI.KUnit: success for Allow to filter-out some configfs attrs Patchwork
2025-09-02 15:56 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-02 20:41 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-04 10:54 ` ✓ CI.KUnit: success for Allow to filter-out some configfs attrs (rev2) Patchwork
2025-09-04 11:30 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-04 23:14 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox