* [PATCH v11 1/2] drm/xe/pf: Restrict device query responses in admin-only PF mode
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
@ 2026-04-09 15:44 ` Satyanarayana K V P
2026-04-13 8:57 ` Michal Wajdeczko
2026-04-09 15:44 ` [PATCH v11 2/2] drm/xe/pf: Derive admin-only PF mode from xe_device state Satyanarayana K V P
` (7 subsequent siblings)
8 siblings, 1 reply; 14+ messages in thread
From: Satyanarayana K V P @ 2026-04-09 15:44 UTC (permalink / raw)
To: intel-xe
Cc: Satyanarayana K V P, Michal Wajdeczko, Rodrigo Vivi,
Piotr Piórkowski, Matthew Brost, Thomas Hellström,
Michał Winiarski, Dunajski Bartosz, Ashutosh Dixit,
dri-devel
When a PF is configured in admin-only mode, it is intended for management
only and must not expose workload-facing capabilities to userspace.
Limit the exposed ioctl set in admin-only PF mode to XE_DEVICE_QUERY and
XE_OBSERVATION, and suppress capability-bearing query payloads so that
the userspace cannot discover execution-related device details in this
mode.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
Cc: Dunajski Bartosz <bartosz.dunajski@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: dri-devel@lists.freedesktop.org
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
V10 -> V11:
- Moved xe_device_is_admin_only() definition for !CONFIG_PCI_IOV option
as per review comments (Michal).
- Fixed some more generic review comments (Michal).
V9 -> V10:
- Moved some parts of admin_only_pf mode under CONFIG_PCI_IOV config
option (Michal).
- Updated commit message.
V8 -> V9:
- Memory regions are skipped in case of admin_only_pf mode (Michal)
- removed .dumb_create, .dumb_map_offset and .show_fdinfo device specific
operations in admin-only mode (Michal).
V7 -> V8:
- Fixed issues reported by CI.Hooks
- Updated commit message (Ashutosh)
- Removed gem_prime_import from admin_only_driver structure (Michal)
V6 -> V7:
- Allowed xe_observation_ioctl as well with admin-only PF (Ashutosh,
Michal).
- Updated commit message with steps to enable admin-only mode (Rodrigo).
V5 -> V6:
- Updated commit message.
- Return number of engines and memory regions as zero instead of
returning query size as zero (Michal Wajdeczko).
- Allow all other query IOCTLs excepts query_engines and
query_mem_regions (Michal Wajdeczko).
V4 -> V5:
- Updated commit message (Matt B).
- Introduced new driver_admin_only_pf structure (Michal Wajdeczko).
- Updated all query configs (Michal Wajdeczko).
- Renamed xe_device_is_admin_only() to xe_device_is_admin_only_pf()
- Fixed other review comments (Michal Wajdeczko).
V3 -> V4:
- Suppressed device capabilities in admin-only PF mode. (Wajdeczko)
V2 -> V3:
- Introduced new helper function xe_debugfs_create_files() to create
debugfs entries based on admin_only_pf mode or normal mode.
V1 -> V2:
- Rebased to latest drm-tip.
- Update update_minor_dev() to debugfs_minor_dev().
---
drivers/gpu/drm/xe/xe_device.c | 57 ++++++++++++++++++++++++++++---
drivers/gpu/drm/xe/xe_device.h | 9 +++++
drivers/gpu/drm/xe/xe_hw_engine.c | 3 ++
drivers/gpu/drm/xe/xe_query.c | 7 ++++
4 files changed, 72 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index cbce1d0ffe48..ceddda10f78f 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -25,6 +25,7 @@
#include "regs/xe_regs.h"
#include "xe_bo.h"
#include "xe_bo_evict.h"
+#include "xe_configfs.h"
#include "xe_debugfs.h"
#include "xe_defaults.h"
#include "xe_devcoredump.h"
@@ -390,7 +391,7 @@ bool xe_is_xe_file(const struct file *file)
return file->f_op == &xe_driver_fops;
}
-static struct drm_driver driver = {
+static struct drm_driver regular_driver = {
.driver_features =
DRIVER_GEM |
DRIVER_RENDER | DRIVER_SYNCOBJ |
@@ -415,6 +416,39 @@ static struct drm_driver driver = {
.patchlevel = DRIVER_PATCHLEVEL,
};
+#ifdef CONFIG_PCI_IOV
+static const struct drm_ioctl_desc xe_ioctls_admin_only[] = {
+ DRM_IOCTL_DEF_DRV(XE_DEVICE_QUERY, xe_query_ioctl, DRM_RENDER_ALLOW),
+ DRM_IOCTL_DEF_DRV(XE_OBSERVATION, xe_observation_ioctl, DRM_RENDER_ALLOW),
+};
+
+static struct drm_driver admin_only_driver = {
+ .driver_features =
+ DRIVER_GEM | DRIVER_RENDER | DRIVER_GEM_GPUVA,
+ .open = xe_file_open,
+ .postclose = xe_file_close,
+ .ioctls = xe_ioctls_admin_only,
+ .num_ioctls = ARRAY_SIZE(xe_ioctls_admin_only),
+ .fops = &xe_driver_fops,
+ .name = DRIVER_NAME,
+ .desc = DRIVER_DESC,
+ .major = DRIVER_MAJOR,
+ .minor = DRIVER_MINOR,
+ .patchlevel = DRIVER_PATCHLEVEL,
+};
+
+/**
+ * xe_device_is_admin_only() - Check whether device is admin only or not.
+ * @xe: the &xe_device to check
+ *
+ * Return: true if the device is admin only, false otherwise.
+ */
+bool xe_device_is_admin_only(const struct xe_device *xe)
+{
+ return xe->drm.driver == &admin_only_driver;
+}
+#endif
+
static void xe_device_destroy(struct drm_device *dev, void *dummy)
{
struct xe_device *xe = to_xe_device(dev);
@@ -439,16 +473,26 @@ static void xe_device_destroy(struct drm_device *dev, void *dummy)
struct xe_device *xe_device_create(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
+ struct drm_driver *driver = ®ular_driver;
struct xe_device *xe;
int err;
- xe_display_driver_set_hooks(&driver);
+#ifdef CONFIG_PCI_IOV
+ /*
+ * Since XE device is not initialized yet, read from configfs
+ * directly to decide whether we are in admin-only PF mode or not.
+ */
+ if (xe_configfs_admin_only_pf(pdev))
+ driver = &admin_only_driver;
+#endif
+
+ xe_display_driver_set_hooks(driver);
- err = aperture_remove_conflicting_pci_devices(pdev, driver.name);
+ err = aperture_remove_conflicting_pci_devices(pdev, driver->name);
if (err)
return ERR_PTR(err);
- xe = devm_drm_dev_alloc(&pdev->dev, &driver, struct xe_device, drm);
+ xe = devm_drm_dev_alloc(&pdev->dev, driver, struct xe_device, drm);
if (IS_ERR(xe))
return xe;
@@ -708,6 +752,11 @@ int xe_device_probe_early(struct xe_device *xe)
xe_sriov_probe_early(xe);
+ if (xe_device_is_admin_only(xe) && !IS_SRIOV_PF(xe)) {
+ xe_err(xe, "Can't run Admin-only mode without SR-IOV PF mode!\n");
+ return -ENODEV;
+ }
+
if (IS_SRIOV_VF(xe))
vf_update_device_info(xe);
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index e4b9de8d8e95..555c191f7510 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -211,6 +211,15 @@ bool xe_is_xe_file(const struct file *file);
struct xe_vm *xe_device_asid_to_vm(struct xe_device *xe, u32 asid);
+#ifdef CONFIG_PCI_IOV
+bool xe_device_is_admin_only(const struct xe_device *xe);
+#else
+static inline bool xe_device_is_admin_only(const struct xe_device *xe)
+{
+ return false;
+}
+#endif
+
/*
* Occasionally it is seen that the G2H worker starts running after a delay of more than
* a second even after being queued and activated by the Linux workqueue subsystem. This
diff --git a/drivers/gpu/drm/xe/xe_hw_engine.c b/drivers/gpu/drm/xe/xe_hw_engine.c
index 6dd05fac6595..2f9c1c063f16 100644
--- a/drivers/gpu/drm/xe/xe_hw_engine.c
+++ b/drivers/gpu/drm/xe/xe_hw_engine.c
@@ -1026,6 +1026,9 @@ bool xe_hw_engine_is_reserved(struct xe_hw_engine *hwe)
struct xe_gt *gt = hwe->gt;
struct xe_device *xe = gt_to_xe(gt);
+ if (xe_device_is_admin_only(xe))
+ return true;
+
if (hwe->class == XE_ENGINE_CLASS_OTHER)
return true;
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
index d84d6a422c45..8c7d54498f38 100644
--- a/drivers/gpu/drm/xe/xe_query.c
+++ b/drivers/gpu/drm/xe/xe_query.c
@@ -231,6 +231,9 @@ static size_t calc_mem_regions_size(struct xe_device *xe)
u32 num_managers = 1;
int i;
+ if (xe_device_is_admin_only(xe))
+ return sizeof(struct drm_xe_query_mem_regions);
+
for (i = XE_PL_VRAM0; i <= XE_PL_VRAM1; ++i)
if (ttm_manager_type(&xe->ttm, i))
num_managers++;
@@ -259,6 +262,9 @@ static int query_mem_regions(struct xe_device *xe,
if (XE_IOCTL_DBG(xe, !mem_regions))
return -ENOMEM;
+ if (xe_device_is_admin_only(xe))
+ goto user_copy;
+
man = ttm_manager_type(&xe->ttm, XE_PL_TT);
mem_regions->mem_regions[0].mem_class = DRM_XE_MEM_REGION_CLASS_SYSMEM;
/*
@@ -297,6 +303,7 @@ static int query_mem_regions(struct xe_device *xe,
}
}
+user_copy:
if (!copy_to_user(query_ptr, mem_regions, size))
ret = 0;
else
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH v11 1/2] drm/xe/pf: Restrict device query responses in admin-only PF mode
2026-04-09 15:44 ` [PATCH v11 1/2] drm/xe/pf: Restrict device query responses in admin-only PF mode Satyanarayana K V P
@ 2026-04-13 8:57 ` Michal Wajdeczko
0 siblings, 0 replies; 14+ messages in thread
From: Michal Wajdeczko @ 2026-04-13 8:57 UTC (permalink / raw)
To: Satyanarayana K V P, intel-xe
Cc: Rodrigo Vivi, Piotr Piórkowski, Matthew Brost,
Thomas Hellström, Michał Winiarski, Dunajski Bartosz,
Ashutosh Dixit, dri-devel
On 4/9/2026 5:44 PM, Satyanarayana K V P wrote:
> When a PF is configured in admin-only mode, it is intended for management
> only and must not expose workload-facing capabilities to userspace.
>
> Limit the exposed ioctl set in admin-only PF mode to XE_DEVICE_QUERY and
> XE_OBSERVATION, and suppress capability-bearing query payloads so that
> the userspace cannot discover execution-related device details in this
> mode.
>
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Cc: Michał Winiarski <michal.winiarski@intel.com>
> Cc: Dunajski Bartosz <bartosz.dunajski@intel.com>
> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Cc: dri-devel@lists.freedesktop.org
> Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Acked-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>
> ---
> V10 -> V11:
> - Moved xe_device_is_admin_only() definition for !CONFIG_PCI_IOV option
> as per review comments (Michal).
> - Fixed some more generic review comments (Michal).
>
> V9 -> V10:
> - Moved some parts of admin_only_pf mode under CONFIG_PCI_IOV config
> option (Michal).
> - Updated commit message.
>
> V8 -> V9:
> - Memory regions are skipped in case of admin_only_pf mode (Michal)
> - removed .dumb_create, .dumb_map_offset and .show_fdinfo device specific
> operations in admin-only mode (Michal).
>
> V7 -> V8:
> - Fixed issues reported by CI.Hooks
> - Updated commit message (Ashutosh)
> - Removed gem_prime_import from admin_only_driver structure (Michal)
>
> V6 -> V7:
> - Allowed xe_observation_ioctl as well with admin-only PF (Ashutosh,
> Michal).
> - Updated commit message with steps to enable admin-only mode (Rodrigo).
>
> V5 -> V6:
> - Updated commit message.
> - Return number of engines and memory regions as zero instead of
> returning query size as zero (Michal Wajdeczko).
> - Allow all other query IOCTLs excepts query_engines and
> query_mem_regions (Michal Wajdeczko).
>
> V4 -> V5:
> - Updated commit message (Matt B).
> - Introduced new driver_admin_only_pf structure (Michal Wajdeczko).
> - Updated all query configs (Michal Wajdeczko).
> - Renamed xe_device_is_admin_only() to xe_device_is_admin_only_pf()
> - Fixed other review comments (Michal Wajdeczko).
>
> V3 -> V4:
> - Suppressed device capabilities in admin-only PF mode. (Wajdeczko)
>
> V2 -> V3:
> - Introduced new helper function xe_debugfs_create_files() to create
> debugfs entries based on admin_only_pf mode or normal mode.
>
> V1 -> V2:
> - Rebased to latest drm-tip.
> - Update update_minor_dev() to debugfs_minor_dev().
> ---
> drivers/gpu/drm/xe/xe_device.c | 57 ++++++++++++++++++++++++++++---
> drivers/gpu/drm/xe/xe_device.h | 9 +++++
> drivers/gpu/drm/xe/xe_hw_engine.c | 3 ++
> drivers/gpu/drm/xe/xe_query.c | 7 ++++
> 4 files changed, 72 insertions(+), 4 deletions(-)
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v11 2/2] drm/xe/pf: Derive admin-only PF mode from xe_device state
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
2026-04-09 15:44 ` [PATCH v11 1/2] drm/xe/pf: Restrict device query responses in admin-only PF mode Satyanarayana K V P
@ 2026-04-09 15:44 ` Satyanarayana K V P
2026-04-13 9:06 ` Michal Wajdeczko
2026-04-13 9:56 ` [PATCH v12] " Satyanarayana K V P
2026-04-09 15:51 ` ✗ CI.KUnit: failure for Do not create drm device for PF only admin mode (rev10) Patchwork
` (6 subsequent siblings)
8 siblings, 2 replies; 14+ messages in thread
From: Satyanarayana K V P @ 2026-04-09 15:44 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Stop tracking admin-only PF mode in a separate `xe->sriov.pf.admin_only`
field and use `xe_device_is_admin_only(xe)` as the single source of
admin mode.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V10 -> V11:
- Squashed kunit commit into the current one.
- Cleandup pf_set_admin_mode() as per review comments (Michal).
V9 -> V10:
- None.
V8 -> V9:
- New commit.
---
.../xe/tests/xe_gt_sriov_pf_config_kunit.c | 21 +++++++++++++++++--
drivers/gpu/drm/xe/xe_device.c | 2 ++
drivers/gpu/drm/xe/xe_sriov_pf.c | 6 ------
drivers/gpu/drm/xe/xe_sriov_pf_helpers.h | 3 ++-
drivers/gpu/drm/xe/xe_sriov_pf_types.h | 3 ---
5 files changed, 23 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
index efa8963ec248..524b9f5d2624 100644
--- a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
@@ -7,16 +7,33 @@
#include <kunit/test.h>
#include <kunit/test-bug.h>
+#include "xe_device.h"
#include "xe_kunit_helpers.h"
#include "xe_pci_test.h"
#define TEST_MAX_VFS 63
#define TEST_VRAM 0x7a800000ull /* random size that works on 32-bit */
+static bool xe_device_is_admin_only_stub_enable(const struct xe_device *xe)
+{
+ return true;
+}
+
+static bool xe_device_is_admin_only_stub_disable(const struct xe_device *xe)
+{
+ return false;
+}
+
static void pf_set_admin_mode(struct xe_device *xe, bool enable)
{
- /* should match logic of xe_sriov_pf_admin_only() */
- xe->sriov.pf.admin_only = enable;
+ typeof(xe_device_is_admin_only) *stub = enable ?
+ xe_device_is_admin_only_stub_enable :
+ xe_device_is_admin_only_stub_disable;
+
+ kunit_activate_static_stub(kunit_get_current_test(),
+ xe_device_is_admin_only,
+ *stub);
+
KUNIT_EXPECT_EQ(kunit_get_current_test(), enable, xe_sriov_pf_admin_only(xe));
}
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index ceddda10f78f..4b45b617a039 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -17,6 +17,7 @@
#include <drm/drm_managed.h>
#include <drm/drm_pagemap_util.h>
#include <drm/drm_print.h>
+#include <kunit/static_stub.h>
#include <uapi/drm/xe_drm.h>
#include "display/xe_display.h"
@@ -445,6 +446,7 @@ static struct drm_driver admin_only_driver = {
*/
bool xe_device_is_admin_only(const struct xe_device *xe)
{
+ KUNIT_STATIC_STUB_REDIRECT(xe_device_is_admin_only, xe);
return xe->drm.driver == &admin_only_driver;
}
#endif
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf.c b/drivers/gpu/drm/xe/xe_sriov_pf.c
index 47a6e0fd66e0..33bd754d138f 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_pf.c
@@ -20,11 +20,6 @@
#include "xe_sriov_pf_sysfs.h"
#include "xe_sriov_printk.h"
-static bool wanted_admin_only(struct xe_device *xe)
-{
- return xe_configfs_admin_only_pf(to_pci_dev(xe->drm.dev));
-}
-
static unsigned int wanted_max_vfs(struct xe_device *xe)
{
return xe_configfs_get_max_vfs(to_pci_dev(xe->drm.dev));
@@ -79,7 +74,6 @@ bool xe_sriov_pf_readiness(struct xe_device *xe)
pf_reduce_totalvfs(xe, newlimit);
- xe->sriov.pf.admin_only = wanted_admin_only(xe);
xe->sriov.pf.device_total_vfs = totalvfs;
xe->sriov.pf.driver_max_vfs = newlimit;
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
index 0fcc6cec4afc..19f6f8331c8d 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
+++ b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
@@ -7,6 +7,7 @@
#define _XE_SRIOV_PF_HELPERS_H_
#include "xe_assert.h"
+#include "xe_device.h"
#include "xe_device_types.h"
#include "xe_sriov.h"
#include "xe_sriov_types.h"
@@ -57,7 +58,7 @@ static inline unsigned int xe_sriov_pf_num_vfs(const struct xe_device *xe)
static inline bool xe_sriov_pf_admin_only(const struct xe_device *xe)
{
xe_assert(xe, IS_SRIOV_PF(xe));
- return xe->sriov.pf.admin_only;
+ return xe_device_is_admin_only(xe);
}
static inline struct mutex *xe_sriov_pf_master_mutex(struct xe_device *xe)
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_types.h b/drivers/gpu/drm/xe/xe_sriov_pf_types.h
index 080cf10512f4..b0253e1ae5da 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf_types.h
+++ b/drivers/gpu/drm/xe/xe_sriov_pf_types.h
@@ -36,9 +36,6 @@ struct xe_sriov_metadata {
* @XE_SRIOV_MODE_PF mode.
*/
struct xe_device_pf {
- /** @admin_only: PF functionality focused on VFs management only. */
- bool admin_only;
-
/** @device_total_vfs: Maximum number of VFs supported by the device. */
u16 device_total_vfs;
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH v11 2/2] drm/xe/pf: Derive admin-only PF mode from xe_device state
2026-04-09 15:44 ` [PATCH v11 2/2] drm/xe/pf: Derive admin-only PF mode from xe_device state Satyanarayana K V P
@ 2026-04-13 9:06 ` Michal Wajdeczko
2026-04-13 9:56 ` [PATCH v12] " Satyanarayana K V P
1 sibling, 0 replies; 14+ messages in thread
From: Michal Wajdeczko @ 2026-04-13 9:06 UTC (permalink / raw)
To: Satyanarayana K V P, intel-xe
On 4/9/2026 5:44 PM, Satyanarayana K V P wrote:
> Stop tracking admin-only PF mode in a separate `xe->sriov.pf.admin_only`
> field and use `xe_device_is_admin_only(xe)` as the single source of
> admin mode.
>
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
small nits below
>
> ---
> V10 -> V11:
> - Squashed kunit commit into the current one.
> - Cleandup pf_set_admin_mode() as per review comments (Michal).
>
> V9 -> V10:
> - None.
>
> V8 -> V9:
> - New commit.
> ---
> .../xe/tests/xe_gt_sriov_pf_config_kunit.c | 21 +++++++++++++++++--
> drivers/gpu/drm/xe/xe_device.c | 2 ++
> drivers/gpu/drm/xe/xe_sriov_pf.c | 6 ------
> drivers/gpu/drm/xe/xe_sriov_pf_helpers.h | 3 ++-
> drivers/gpu/drm/xe/xe_sriov_pf_types.h | 3 ---
> 5 files changed, 23 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
> index efa8963ec248..524b9f5d2624 100644
> --- a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
> +++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
> @@ -7,16 +7,33 @@
> #include <kunit/test.h>
> #include <kunit/test-bug.h>
>
> +#include "xe_device.h"
nit: not needed as this .h is already included by the parent .c file
> #include "xe_kunit_helpers.h"
> #include "xe_pci_test.h"
>
> #define TEST_MAX_VFS 63
> #define TEST_VRAM 0x7a800000ull /* random size that works on 32-bit */
>
> +static bool xe_device_is_admin_only_stub_enable(const struct xe_device *xe)
> +{
> + return true;
> +}
> +
> +static bool xe_device_is_admin_only_stub_disable(const struct xe_device *xe)
> +{
> + return false;
> +}
> +
> static void pf_set_admin_mode(struct xe_device *xe, bool enable)
> {
> - /* should match logic of xe_sriov_pf_admin_only() */
> - xe->sriov.pf.admin_only = enable;
> + typeof(xe_device_is_admin_only) *stub = enable ?
> + xe_device_is_admin_only_stub_enable :
> + xe_device_is_admin_only_stub_disable;
> +
> + kunit_activate_static_stub(kunit_get_current_test(),
> + xe_device_is_admin_only,
> + *stub);
> +
nit: maybe in addition to below check of xe_sriov_pf_admin_only() we should
also add EXPECT_EQ for xe_device_is_admin_only() that we've just replaced?
> KUNIT_EXPECT_EQ(kunit_get_current_test(), enable, xe_sriov_pf_admin_only(xe));
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index ceddda10f78f..4b45b617a039 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -17,6 +17,7 @@
> #include <drm/drm_managed.h>
> #include <drm/drm_pagemap_util.h>
> #include <drm/drm_print.h>
> +#include <kunit/static_stub.h>
> #include <uapi/drm/xe_drm.h>
>
> #include "display/xe_display.h"
> @@ -445,6 +446,7 @@ static struct drm_driver admin_only_driver = {
> */
> bool xe_device_is_admin_only(const struct xe_device *xe)
> {
> + KUNIT_STATIC_STUB_REDIRECT(xe_device_is_admin_only, xe);
> return xe->drm.driver == &admin_only_driver;
> }
> #endif
> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf.c b/drivers/gpu/drm/xe/xe_sriov_pf.c
> index 47a6e0fd66e0..33bd754d138f 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_pf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_pf.c
> @@ -20,11 +20,6 @@
> #include "xe_sriov_pf_sysfs.h"
> #include "xe_sriov_printk.h"
>
> -static bool wanted_admin_only(struct xe_device *xe)
> -{
> - return xe_configfs_admin_only_pf(to_pci_dev(xe->drm.dev));
> -}
> -
> static unsigned int wanted_max_vfs(struct xe_device *xe)
> {
> return xe_configfs_get_max_vfs(to_pci_dev(xe->drm.dev));
> @@ -79,7 +74,6 @@ bool xe_sriov_pf_readiness(struct xe_device *xe)
>
> pf_reduce_totalvfs(xe, newlimit);
>
> - xe->sriov.pf.admin_only = wanted_admin_only(xe);
> xe->sriov.pf.device_total_vfs = totalvfs;
> xe->sriov.pf.driver_max_vfs = newlimit;
>
> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
> index 0fcc6cec4afc..19f6f8331c8d 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
> +++ b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
> @@ -7,6 +7,7 @@
> #define _XE_SRIOV_PF_HELPERS_H_
>
> #include "xe_assert.h"
> +#include "xe_device.h"
> #include "xe_device_types.h"
> #include "xe_sriov.h"
> #include "xe_sriov_types.h"
> @@ -57,7 +58,7 @@ static inline unsigned int xe_sriov_pf_num_vfs(const struct xe_device *xe)
> static inline bool xe_sriov_pf_admin_only(const struct xe_device *xe)
> {
> xe_assert(xe, IS_SRIOV_PF(xe));
> - return xe->sriov.pf.admin_only;
> + return xe_device_is_admin_only(xe);
> }
>
> static inline struct mutex *xe_sriov_pf_master_mutex(struct xe_device *xe)
> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_types.h b/drivers/gpu/drm/xe/xe_sriov_pf_types.h
> index 080cf10512f4..b0253e1ae5da 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_pf_types.h
> +++ b/drivers/gpu/drm/xe/xe_sriov_pf_types.h
> @@ -36,9 +36,6 @@ struct xe_sriov_metadata {
> * @XE_SRIOV_MODE_PF mode.
> */
> struct xe_device_pf {
> - /** @admin_only: PF functionality focused on VFs management only. */
> - bool admin_only;
> -
> /** @device_total_vfs: Maximum number of VFs supported by the device. */
> u16 device_total_vfs;
>
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH v12] drm/xe/pf: Derive admin-only PF mode from xe_device state
2026-04-09 15:44 ` [PATCH v11 2/2] drm/xe/pf: Derive admin-only PF mode from xe_device state Satyanarayana K V P
2026-04-13 9:06 ` Michal Wajdeczko
@ 2026-04-13 9:56 ` Satyanarayana K V P
1 sibling, 0 replies; 14+ messages in thread
From: Satyanarayana K V P @ 2026-04-13 9:56 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko
Stop tracking admin-only PF mode in a separate `xe->sriov.pf.admin_only`
field and use `xe_device_is_admin_only(xe)` as the single source of
admin mode.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
V11 -> V12:
- Fixed nits.
V10 -> V11:
- Squashed kunit commit into the current one.
- Cleandup pf_set_admin_mode() as per review comments (Michal).
V9 -> V10:
- None.
V8 -> V9:
- New commit.
---
.../xe/tests/xe_gt_sriov_pf_config_kunit.c | 21 +++++++++++++++++--
drivers/gpu/drm/xe/xe_device.c | 2 ++
drivers/gpu/drm/xe/xe_sriov_pf.c | 6 ------
drivers/gpu/drm/xe/xe_sriov_pf_helpers.h | 3 ++-
drivers/gpu/drm/xe/xe_sriov_pf_types.h | 3 ---
5 files changed, 23 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
index efa8963ec248..e6eaa94d4d30 100644
--- a/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
+++ b/drivers/gpu/drm/xe/tests/xe_gt_sriov_pf_config_kunit.c
@@ -13,11 +13,28 @@
#define TEST_MAX_VFS 63
#define TEST_VRAM 0x7a800000ull /* random size that works on 32-bit */
+static bool xe_device_is_admin_only_stub_enable(const struct xe_device *xe)
+{
+ return true;
+}
+
+static bool xe_device_is_admin_only_stub_disable(const struct xe_device *xe)
+{
+ return false;
+}
+
static void pf_set_admin_mode(struct xe_device *xe, bool enable)
{
- /* should match logic of xe_sriov_pf_admin_only() */
- xe->sriov.pf.admin_only = enable;
+ typeof(xe_device_is_admin_only) *stub = enable ?
+ xe_device_is_admin_only_stub_enable :
+ xe_device_is_admin_only_stub_disable;
+
+ kunit_activate_static_stub(kunit_get_current_test(),
+ xe_device_is_admin_only,
+ *stub);
+
KUNIT_EXPECT_EQ(kunit_get_current_test(), enable, xe_sriov_pf_admin_only(xe));
+ KUNIT_EXPECT_EQ(kunit_get_current_test(), enable, xe_device_is_admin_only(xe));
}
static void pf_set_usable_vram(struct xe_device *xe, u64 usable)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index ceddda10f78f..4b45b617a039 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -17,6 +17,7 @@
#include <drm/drm_managed.h>
#include <drm/drm_pagemap_util.h>
#include <drm/drm_print.h>
+#include <kunit/static_stub.h>
#include <uapi/drm/xe_drm.h>
#include "display/xe_display.h"
@@ -445,6 +446,7 @@ static struct drm_driver admin_only_driver = {
*/
bool xe_device_is_admin_only(const struct xe_device *xe)
{
+ KUNIT_STATIC_STUB_REDIRECT(xe_device_is_admin_only, xe);
return xe->drm.driver == &admin_only_driver;
}
#endif
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf.c b/drivers/gpu/drm/xe/xe_sriov_pf.c
index 47a6e0fd66e0..33bd754d138f 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_pf.c
@@ -20,11 +20,6 @@
#include "xe_sriov_pf_sysfs.h"
#include "xe_sriov_printk.h"
-static bool wanted_admin_only(struct xe_device *xe)
-{
- return xe_configfs_admin_only_pf(to_pci_dev(xe->drm.dev));
-}
-
static unsigned int wanted_max_vfs(struct xe_device *xe)
{
return xe_configfs_get_max_vfs(to_pci_dev(xe->drm.dev));
@@ -79,7 +74,6 @@ bool xe_sriov_pf_readiness(struct xe_device *xe)
pf_reduce_totalvfs(xe, newlimit);
- xe->sriov.pf.admin_only = wanted_admin_only(xe);
xe->sriov.pf.device_total_vfs = totalvfs;
xe->sriov.pf.driver_max_vfs = newlimit;
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
index 0fcc6cec4afc..19f6f8331c8d 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
+++ b/drivers/gpu/drm/xe/xe_sriov_pf_helpers.h
@@ -7,6 +7,7 @@
#define _XE_SRIOV_PF_HELPERS_H_
#include "xe_assert.h"
+#include "xe_device.h"
#include "xe_device_types.h"
#include "xe_sriov.h"
#include "xe_sriov_types.h"
@@ -57,7 +58,7 @@ static inline unsigned int xe_sriov_pf_num_vfs(const struct xe_device *xe)
static inline bool xe_sriov_pf_admin_only(const struct xe_device *xe)
{
xe_assert(xe, IS_SRIOV_PF(xe));
- return xe->sriov.pf.admin_only;
+ return xe_device_is_admin_only(xe);
}
static inline struct mutex *xe_sriov_pf_master_mutex(struct xe_device *xe)
diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_types.h b/drivers/gpu/drm/xe/xe_sriov_pf_types.h
index 080cf10512f4..b0253e1ae5da 100644
--- a/drivers/gpu/drm/xe/xe_sriov_pf_types.h
+++ b/drivers/gpu/drm/xe/xe_sriov_pf_types.h
@@ -36,9 +36,6 @@ struct xe_sriov_metadata {
* @XE_SRIOV_MODE_PF mode.
*/
struct xe_device_pf {
- /** @admin_only: PF functionality focused on VFs management only. */
- bool admin_only;
-
/** @device_total_vfs: Maximum number of VFs supported by the device. */
u16 device_total_vfs;
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ CI.KUnit: failure for Do not create drm device for PF only admin mode (rev10)
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
2026-04-09 15:44 ` [PATCH v11 1/2] drm/xe/pf: Restrict device query responses in admin-only PF mode Satyanarayana K V P
2026-04-09 15:44 ` [PATCH v11 2/2] drm/xe/pf: Derive admin-only PF mode from xe_device state Satyanarayana K V P
@ 2026-04-09 15:51 ` Patchwork
2026-04-10 4:34 ` ✓ CI.KUnit: success for Do not create drm device for PF only admin mode (rev11) Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-09 15:51 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
== Series Details ==
Series: Do not create drm device for PF only admin mode (rev10)
URL : https://patchwork.freedesktop.org/series/160349/
State : failure
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:50:20] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:50:24] 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:50:56] Starting KUnit Kernel (1/1)...
[15:50:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:50:56] ================== guc_buf (11 subtests) ===================
[15:50:56] [PASSED] test_smallest
[15:50:56] [PASSED] test_largest
[15:50:56] [PASSED] test_granular
[15:50:56] [PASSED] test_unique
[15:50:56] [PASSED] test_overlap
[15:50:56] [PASSED] test_reusable
[15:50:56] [PASSED] test_too_big
[15:50:56] [PASSED] test_flush
[15:50:56] [PASSED] test_lookup
[15:50:56] [PASSED] test_data
[15:50:56] [PASSED] test_class
[15:50:56] ===================== [PASSED] guc_buf =====================
[15:50:56] =================== guc_dbm (7 subtests) ===================
[15:50:56] [PASSED] test_empty
[15:50:56] [PASSED] test_default
[15:50:56] ======================== test_size ========================
[15:50:56] [PASSED] 4
[15:50:56] [PASSED] 8
[15:50:56] [PASSED] 32
[15:50:56] [PASSED] 256
[15:50:56] ==================== [PASSED] test_size ====================
[15:50:56] ======================= test_reuse ========================
[15:50:56] [PASSED] 4
[15:50:56] [PASSED] 8
[15:50:56] [PASSED] 32
[15:50:56] [PASSED] 256
[15:50:56] =================== [PASSED] test_reuse ====================
[15:50:56] =================== test_range_overlap ====================
[15:50:56] [PASSED] 4
[15:50:56] [PASSED] 8
[15:50:56] [PASSED] 32
[15:50:56] [PASSED] 256
[15:50:56] =============== [PASSED] test_range_overlap ================
[15:50:56] =================== test_range_compact ====================
[15:50:56] [PASSED] 4
[15:50:56] [PASSED] 8
[15:50:56] [PASSED] 32
[15:50:56] [PASSED] 256
[15:50:56] =============== [PASSED] test_range_compact ================
[15:50:56] ==================== test_range_spare =====================
[15:50:56] [PASSED] 4
[15:50:56] [PASSED] 8
[15:50:56] [PASSED] 32
[15:50:56] [PASSED] 256
[15:50:56] ================ [PASSED] test_range_spare =================
[15:50:56] ===================== [PASSED] guc_dbm =====================
[15:50:56] =================== guc_idm (6 subtests) ===================
[15:50:56] [PASSED] bad_init
[15:50:56] [PASSED] no_init
[15:50:56] [PASSED] init_fini
[15:50:56] [PASSED] check_used
[15:50:56] [PASSED] check_quota
[15:50:56] [PASSED] check_all
[15:50:56] ===================== [PASSED] guc_idm =====================
[15:50:56] ================== no_relay (3 subtests) ===================
[15:50:56] [PASSED] xe_drops_guc2pf_if_not_ready
[15:50:56] [PASSED] xe_drops_guc2vf_if_not_ready
[15:50:56] [PASSED] xe_rejects_send_if_not_ready
[15:50:56] ==================== [PASSED] no_relay =====================
[15:50:56] ================== pf_relay (14 subtests) ==================
[15:50:56] [PASSED] pf_rejects_guc2pf_too_short
[15:50:56] [PASSED] pf_rejects_guc2pf_too_long
[15:50:56] [PASSED] pf_rejects_guc2pf_no_payload
[15:50:56] [PASSED] pf_fails_no_payload
[15:50:56] [PASSED] pf_fails_bad_origin
[15:50:56] [PASSED] pf_fails_bad_type
[15:50:56] [PASSED] pf_txn_reports_error
[15:50:56] [PASSED] pf_txn_sends_pf2guc
[15:50:56] [PASSED] pf_sends_pf2guc
[15:50:56] [SKIPPED] pf_loopback_nop
[15:50:56] [SKIPPED] pf_loopback_echo
[15:50:56] [SKIPPED] pf_loopback_fail
[15:50:56] [SKIPPED] pf_loopback_busy
[15:50:56] [SKIPPED] pf_loopback_retry
[15:50:56] ==================== [PASSED] pf_relay =====================
[15:50:56] ================== vf_relay (3 subtests) ===================
[15:50:56] [PASSED] vf_rejects_guc2vf_too_short
[15:50:56] [PASSED] vf_rejects_guc2vf_too_long
[15:50:56] [PASSED] vf_rejects_guc2vf_no_payload
[15:50:56] ==================== [PASSED] vf_relay =====================
[15:50:56] ================ pf_gt_config (9 subtests) =================
[15:50:56] [PASSED] fair_contexts_1vf
[15:50:56] [PASSED] fair_doorbells_1vf
[15:50:56] [PASSED] fair_ggtt_1vf
[15:50:56] ====================== fair_vram_1vf ======================
[15:50:56] [PASSED] 3.50 GiB
[15:50:56] [PASSED] 11.5 GiB
[15:50:56] [PASSED] 15.5 GiB
[15:50:56] [PASSED] 31.5 GiB
[15:50:56] [PASSED] 63.5 GiB
[15:50:56] [PASSED] 1.91 GiB
[15:50:56] ================== [PASSED] fair_vram_1vf ==================
[15:50:56] ================ fair_vram_1vf_admin_only =================
[15:50:56] [PASSED] 3.50 GiB
[15:50:56] [PASSED] 11.5 GiB
[15:50:56] [PASSED] 15.5 GiB
[15:50:56] [PASSED] 31.5 GiB
[15:50:56] [PASSED] 63.5 GiB
[15:50:56] [PASSED] 1.91 GiB
[15:50:56] ============ [PASSED] fair_vram_1vf_admin_only =============
[15:50:56] ====================== fair_contexts ======================
[15:50:56] [PASSED] 1 VF
[15:50:56] [PASSED] 2 VFs
[15:50:56] [PASSED] 3 VFs
[15:50:56] [PASSED] 4 VFs
[15:50:56] [PASSED] 5 VFs
[15:50:56] [PASSED] 6 VFs
[15:50:56] [PASSED] 7 VFs
[15:50:56] [PASSED] 8 VFs
[15:50:56] [PASSED] 9 VFs
[15:50:56] [PASSED] 10 VFs
[15:50:56] [PASSED] 11 VFs
[15:50:56] [PASSED] 12 VFs
[15:50:56] [PASSED] 13 VFs
[15:50:56] [PASSED] 14 VFs
[15:50:56] [PASSED] 15 VFs
[15:50:56] [PASSED] 16 VFs
[15:50:56] [PASSED] 17 VFs
[15:50:56] [PASSED] 18 VFs
[15:50:56] [PASSED] 19 VFs
[15:50:56] [PASSED] 20 VFs
[15:50:56] [PASSED] 21 VFs
[15:50:56] [PASSED] 22 VFs
[15:50:56] [PASSED] 23 VFs
[15:50:56] [PASSED] 24 VFs
[15:50:56] [PASSED] 25 VFs
[15:50:56] [PASSED] 26 VFs
[15:50:56] [PASSED] 27 VFs
[15:50:56] [PASSED] 28 VFs
[15:50:56] [PASSED] 29 VFs
[15:50:56] [PASSED] 30 VFs
[15:50:56] [PASSED] 31 VFs
[15:50:56] [PASSED] 32 VFs
[15:50:56] [PASSED] 33 VFs
[15:50:56] [PASSED] 34 VFs
[15:50:56] [PASSED] 35 VFs
[15:50:56] [PASSED] 36 VFs
[15:50:56] [PASSED] 37 VFs
[15:50:56] [PASSED] 38 VFs
[15:50:56] [PASSED] 39 VFs
[15:50:56] [PASSED] 40 VFs
[15:50:56] [PASSED] 41 VFs
[15:50:56] [PASSED] 42 VFs
[15:50:56] [PASSED] 43 VFs
[15:50:56] [PASSED] 44 VFs
[15:50:56] [PASSED] 45 VFs
[15:50:56] [PASSED] 46 VFs
[15:50:56] [PASSED] 47 VFs
[15:50:56] [PASSED] 48 VFs
[15:50:56] [PASSED] 49 VFs
[15:50:56] [PASSED] 50 VFs
[15:50:56] [PASSED] 51 VFs
[15:50:56] [PASSED] 52 VFs
[15:50:56] [PASSED] 53 VFs
[15:50:56] [PASSED] 54 VFs
[15:50:56] [PASSED] 55 VFs
[15:50:56] [PASSED] 56 VFs
[15:50:56] [PASSED] 57 VFs
[15:50:56] [PASSED] 58 VFs
[15:50:56] [PASSED] 59 VFs
[15:50:56] [PASSED] 60 VFs
[15:50:56] [PASSED] 61 VFs
[15:50:56] [PASSED] 62 VFs
[15:50:56] [PASSED] 63 VFs
[15:50:56] ================== [PASSED] fair_contexts ==================
[15:50:56] ===================== fair_doorbells ======================
[15:50:56] [PASSED] 1 VF
[15:50:56] [PASSED] 2 VFs
[15:50:56] [PASSED] 3 VFs
[15:50:56] [PASSED] 4 VFs
[15:50:56] [PASSED] 5 VFs
[15:50:56] [PASSED] 6 VFs
[15:50:56] [PASSED] 7 VFs
[15:50:56] [PASSED] 8 VFs
[15:50:56] [PASSED] 9 VFs
[15:50:56] [PASSED] 10 VFs
[15:50:56] [PASSED] 11 VFs
[15:50:56] [PASSED] 12 VFs
[15:50:56] [PASSED] 13 VFs
[15:50:56] [PASSED] 14 VFs
[15:50:56] [PASSED] 15 VFs
[15:50:56] [PASSED] 16 VFs
[15:50:56] [PASSED] 17 VFs
[15:50:56] [PASSED] 18 VFs
[15:50:56] [PASSED] 19 VFs
[15:50:56] [PASSED] 20 VFs
[15:50:56] [PASSED] 21 VFs
[15:50:56] [PASSED] 22 VFs
[15:50:56] [PASSED] 23 VFs
[15:50:56] [PASSED] 24 VFs
[15:50:56] [PASSED] 25 VFs
[15:50:56] [PASSED] 26 VFs
[15:50:56] [PASSED] 27 VFs
[15:50:56] [PASSED] 28 VFs
[15:50:56] [PASSED] 29 VFs
[15:50:56] [PASSED] 30 VFs
[15:50:56] [PASSED] 31 VFs
[15:50:56] [PASSED] 32 VFs
[15:50:56] [PASSED] 33 VFs
[15:50:56] [PASSED] 34 VFs
[15:50:56] [PASSED] 35 VFs
[15:50:56] [PASSED] 36 VFs
[15:50:56] [PASSED] 37 VFs
[15:50:56] [PASSED] 38 VFs
[15:50:56] [PASSED] 39 VFs
[15:50:56] [PASSED] 40 VFs
[15:50:56] [PASSED] 41 VFs
[15:50:56] [PASSED] 42 VFs
[15:50:56] [PASSED] 43 VFs
[15:50:56] [PASSED] 44 VFs
[15:50:56] [PASSED] 45 VFs
[15:50:56] [PASSED] 46 VFs
[15:50:56] [PASSED] 47 VFs
[15:50:56] [PASSED] 48 VFs
[15:50:56] [PASSED] 49 VFs
[15:50:56] [PASSED] 50 VFs
[15:50:56] [PASSED] 51 VFs
[15:50:56] [PASSED] 52 VFs
[15:50:56] [PASSED] 53 VFs
[15:50:56] [PASSED] 54 VFs
[15:50:56] [PASSED] 55 VFs
[15:50:56] [PASSED] 56 VFs
[15:50:56] [PASSED] 57 VFs
[15:50:56] [PASSED] 58 VFs
[15:50:56] [PASSED] 59 VFs
[15:50:56] [PASSED] 60 VFs
[15:50:56] [PASSED] 61 VFs
[15:50:56] [PASSED] 62 VFs
[15:50:56] [PASSED] 63 VFs
[15:50:56] ================= [PASSED] fair_doorbells ==================
[15:50:56] ======================== fair_ggtt ========================
[15:50:56] [PASSED] 1 VF
[15:50:56] [PASSED] 2 VFs
[15:50:56] [PASSED] 3 VFs
[15:50:56] [PASSED] 4 VFs
[15:50:56] [PASSED] 5 VFs
[15:50:56] [PASSED] 6 VFs
[15:50:56] [PASSED] 7 VFs
[15:50:56] [PASSED] 8 VFs
[15:50:56] [PASSED] 9 VFs
[15:50:56] [PASSED] 10 VFs
[15:50:56] [PASSED] 11 VFs
[15:50:56] [PASSED] 12 VFs
[15:50:56] [PASSED] 13 VFs
[15:50:56] [PASSED] 14 VFs
[15:50:56] [PASSED] 15 VFs
[15:50:56] [PASSED] 16 VFs
[15:50:56] [PASSED] 17 VFs
[15:50:56] [PASSED] 18 VFs
[15:50:56] [PASSED] 19 VFs
[15:50:56] [PASSED] 20 VFs
[15:50:56] [PASSED] 21 VFs
[15:50:56] [PASSED] 22 VFs
[15:50:56] [PASSED] 23 VFs
[15:50:56] [PASSED] 24 VFs
[15:50:56] [PASSED] 25 VFs
[15:50:56] [PASSED] 26 VFs
[15:50:56] [PASSED] 27 VFs
[15:50:56] [PASSED] 28 VFs
[15:50:56] [PASSED] 29 VFs
[15:50:56] [PASSED] 30 VFs
[15:50:56] [PASSED] 31 VFs
[15:50:56] [PASSED] 32 VFs
[15:50:56] [PASSED] 33 VFs
[15:50:56] [PASSED] 34 VFs
[15:50:56] [PASSED] 35 VFs
[15:50:56] [PASSED] 36 VFs
[15:50:56] [PASSED] 37 VFs
[15:50:56] [PASSED] 38 VFs
[15:50:56] [PASSED] 39 VFs
[15:50:56] [PASSED] 40 VFs
[15:50:56] [PASSED] 41 VFs
[15:50:56] [PASSED] 42 VFs
[15:50:56] [PASSED] 43 VFs
[15:50:56] [PASSED] 44 VFs
[15:50:56] [PASSED] 45 VFs
[15:50:56] [PASSED] 46 VFs
[15:50:56] [PASSED] 47 VFs
[15:50:56] [PASSED] 48 VFs
[15:50:56] [PASSED] 49 VFs
[15:50:56] [PASSED] 50 VFs
[15:50:56] [PASSED] 51 VFs
[15:50:56] [PASSED] 52 VFs
[15:50:56] [PASSED] 53 VFs
[15:50:56] [PASSED] 54 VFs
[15:50:56] [PASSED] 55 VFs
[15:50:56] [PASSED] 56 VFs
[15:50:56] [PASSED] 57 VFs
[15:50:56] [PASSED] 58 VFs
[15:50:56] [PASSED] 59 VFs
[15:50:56] [PASSED] 60 VFs
[15:50:56] [PASSED] 61 VFs
[15:50:56] [PASSED] 62 VFs
[15:50:56] [PASSED] 63 VFs
[15:50:56] ==================== [PASSED] fair_ggtt ====================
[15:50:56] ======================== fair_vram ========================
[15:50:56] [PASSED] 1 VF
[15:50:56] [PASSED] 2 VFs
[15:50:56] [PASSED] 3 VFs
[15:50:56] [PASSED] 4 VFs
[15:50:56] [PASSED] 5 VFs
[15:50:56] [PASSED] 6 VFs
[15:50:56] [PASSED] 7 VFs
[15:50:56] [PASSED] 8 VFs
[15:50:56] [PASSED] 9 VFs
[15:50:56] [PASSED] 10 VFs
[15:50:56] [PASSED] 11 VFs
[15:50:56] [PASSED] 12 VFs
[15:50:56] [PASSED] 13 VFs
[15:50:56] [PASSED] 14 VFs
[15:50:56] [PASSED] 15 VFs
[15:50:56] [PASSED] 16 VFs
[15:50:56] [PASSED] 17 VFs
[15:50:56] [PASSED] 18 VFs
[15:50:56] [PASSED] 19 VFs
[15:50:56] [PASSED] 20 VFs
[15:50:56] [PASSED] 21 VFs
[15:50:56] [PASSED] 22 VFs
[15:50:56] [PASSED] 23 VFs
[15:50:56] [PASSED] 24 VFs
[15:50:56] [PASSED] 25 VFs
[15:50:56] [PASSED] 26 VFs
[15:50:56] [PASSED] 27 VFs
[15:50:56] [PASSED] 28 VFs
[15:50:56] [PASSED] 29 VFs
[15:50:56] [PASSED] 30 VFs
[15:50:56] [PASSED] 31 VFs
[15:50:56] [PASSED] 32 VFs
[15:50:56] [PASSED] 33 VFs
[15:50:56] [PASSED] 34 VFs
[15:50:56] [PASSED] 35 VFs
[15:50:56] [PASSED] 36 VFs
[15:50:56] [PASSED] 37 VFs
[15:50:56] [PASSED] 38 VFs
[15:50:56] [PASSED] 39 VFs
[15:50:56] [PASSED] 40 VFs
[15:50:56] [PASSED] 41 VFs
[15:50:56] [PASSED] 42 VFs
[15:50:56] [PASSED] 43 VFs
[15:50:56] [PASSED] 44 VFs
[15:50:56] [PASSED] 45 VFs
[15:50:56] [PASSED] 46 VFs
[15:50:56] [PASSED] 47 VFs
[15:50:56] [PASSED] 48 VFs
[15:50:56] [PASSED] 49 VFs
[15:50:56] [PASSED] 50 VFs
[15:50:56] [PASSED] 51 VFs
[15:50:56] [PASSED] 52 VFs
[15:50:56] [PASSED] 53 VFs
[15:50:56] [PASSED] 54 VFs
[15:50:56] [PASSED] 55 VFs
[15:50:56] [PASSED] 56 VFs
[15:50:56] [PASSED] 57 VFs
[15:50:56] [PASSED] 58 VFs
[15:50:56] [PASSED] 59 VFs
[15:50:56] [PASSED] 60 VFs
[15:50:56] [PASSED] 61 VFs
[15:50:56] [PASSED] 62 VFs
[15:50:56] [PASSED] 63 VFs
[15:50:56] ==================== [PASSED] fair_vram ====================
[15:50:56] ================== [PASSED] pf_gt_config ===================
[15:50:56] ===================== lmtt (1 subtest) =====================
[15:50:56] ======================== test_ops =========================
[15:50:56] [PASSED] 2-level
[15:50:56] [PASSED] multi-level
[15:50:56] ==================== [PASSED] test_ops =====================
[15:50:56] ====================== [PASSED] lmtt =======================
[15:50:56] ================= pf_service (11 subtests) =================
[15:50:56] [PASSED] pf_negotiate_any
[15:50:56] [PASSED] pf_negotiate_base_match
[15:50:56] [PASSED] pf_negotiate_base_newer
[15:50:56] [PASSED] pf_negotiate_base_next
[15:50:56] [SKIPPED] pf_negotiate_base_older
[15:50:56] [PASSED] pf_negotiate_base_prev
[15:50:56] [PASSED] pf_negotiate_latest_match
[15:50:56] [PASSED] pf_negotiate_latest_newer
[15:50:56] [PASSED] pf_negotiate_latest_next
[15:50:56] [SKIPPED] pf_negotiate_latest_older
[15:50:56] [SKIPPED] pf_negotiate_latest_prev
[15:50:56] =================== [PASSED] pf_service ====================
[15:50:56] ================= xe_guc_g2g (2 subtests) ==================
[15:50:56] ============== xe_live_guc_g2g_kunit_default ==============
[15:50:56] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[15:50:56] ============== xe_live_guc_g2g_kunit_allmem ===============
[15:50:56] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[15:50:56] =================== [SKIPPED] xe_guc_g2g ===================
[15:50:56] =================== xe_mocs (2 subtests) ===================
[15:50:56] ================ xe_live_mocs_kernel_kunit ================
[15:50:56] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:50:56] ================ xe_live_mocs_reset_kunit =================
[15:50:56] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:50:56] ==================== [SKIPPED] xe_mocs =====================
[15:50:56] ================= xe_migrate (2 subtests) ==================
[15:50:56] ================= xe_migrate_sanity_kunit =================
[15:50:56] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:50:56] ================== xe_validate_ccs_kunit ==================
[15:50:56] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:50:56] =================== [SKIPPED] xe_migrate ===================
[15:50:56] ================== xe_dma_buf (1 subtest) ==================
[15:50:56] ==================== xe_dma_buf_kunit =====================
[15:50:56] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:50:56] =================== [SKIPPED] xe_dma_buf ===================
[15:50:56] ================= xe_bo_shrink (1 subtest) =================
[15:50:56] =================== xe_bo_shrink_kunit ====================
[15:50:56] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:50:56] ================== [SKIPPED] xe_bo_shrink ==================
[15:50:56] ==================== xe_bo (2 subtests) ====================
[15:50:56] ================== xe_ccs_migrate_kunit ===================
[15:50:56] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:50:56] ==================== xe_bo_evict_kunit ====================
[15:50:56] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:50:56] ===================== [SKIPPED] xe_bo ======================
[15:50:56] ==================== args (13 subtests) ====================
[15:50:56] [PASSED] count_args_test
[15:50:56] [PASSED] call_args_example
[15:50:56] [PASSED] call_args_test
[15:50:56] [PASSED] drop_first_arg_example
[15:50:56] [PASSED] drop_first_arg_test
[15:50:56] [PASSED] first_arg_example
[15:50:56] [PASSED] first_arg_test
[15:50:56] [PASSED] last_arg_example
[15:50:56] [PASSED] last_arg_test
[15:50:56] [PASSED] pick_arg_example
[15:50:56] [PASSED] if_args_example
[15:50:56] [PASSED] if_args_test
[15:50:56] [PASSED] sep_comma_example
[15:50:56] ====================== [PASSED] args =======================
[15:50:56] =================== xe_pci (3 subtests) ====================
[15:50:56] ==================== check_graphics_ip ====================
[15:50:56] [PASSED] 12.00 Xe_LP
[15:50:56] [PASSED] 12.10 Xe_LP+
[15:50:56] [PASSED] 12.55 Xe_HPG
[15:50:56] [PASSED] 12.60 Xe_HPC
[15:50:56] [PASSED] 12.70 Xe_LPG
[15:50:56] [PASSED] 12.71 Xe_LPG
[15:50:56] [PASSED] 12.74 Xe_LPG+
[15:50:56] [PASSED] 20.01 Xe2_HPG
[15:50:56] [PASSED] 20.02 Xe2_HPG
[15:50:56] [PASSED] 20.04 Xe2_LPG
[15:50:56] [PASSED] 30.00 Xe3_LPG
[15:50:56] [PASSED] 30.01 Xe3_LPG
[15:50:56] [PASSED] 30.03 Xe3_LPG
[15:50:56] [PASSED] 30.04 Xe3_LPG
[15:50:56] [PASSED] 30.05 Xe3_LPG
[15:50:56] [PASSED] 35.10 Xe3p_LPG
[15:50:56] [PASSED] 35.11 Xe3p_XPC
[15:50:56] ================ [PASSED] check_graphics_ip ================
[15:50:56] ===================== check_media_ip ======================
[15:50:56] [PASSED] 12.00 Xe_M
[15:50:56] [PASSED] 12.55 Xe_HPM
[15:50:56] [PASSED] 13.00 Xe_LPM+
[15:50:56] [PASSED] 13.01 Xe2_HPM
[15:50:56] [PASSED] 20.00 Xe2_LPM
[15:50:56] [PASSED] 30.00 Xe3_LPM
[15:50:56] [PASSED] 30.02 Xe3_LPM
[15:50:56] [PASSED] 35.00 Xe3p_LPM
[15:50:56] [PASSED] 35.03 Xe3p_HPM
[15:50:56] ================= [PASSED] check_media_ip ==================
[15:50:56] =================== check_platform_desc ===================
[15:50:56] [PASSED] 0x9A60 (TIGERLAKE)
[15:50:56] [PASSED] 0x9A68 (TIGERLAKE)
[15:50:56] [PASSED] 0x9A70 (TIGERLAKE)
[15:50:56] [PASSED] 0x9A40 (TIGERLAKE)
[15:50:56] [PASSED] 0x9A49 (TIGERLAKE)
[15:50:56] [PASSED] 0x9A59 (TIGERLAKE)
[15:50:56] [PASSED] 0x9A78 (TIGERLAKE)
[15:50:56] [PASSED] 0x9AC0 (TIGERLAKE)
[15:50:56] [PASSED] 0x9AC9 (TIGERLAKE)
[15:50:56] [PASSED] 0x9AD9 (TIGERLAKE)
[15:50:56] [PASSED] 0x9AF8 (TIGERLAKE)
[15:50:56] [PASSED] 0x4C80 (ROCKETLAKE)
[15:50:56] [PASSED] 0x4C8A (ROCKETLAKE)
[15:50:56] [PASSED] 0x4C8B (ROCKETLAKE)
[15:50:56] [PASSED] 0x4C8C (ROCKETLAKE)
[15:50:56] [PASSED] 0x4C90 (ROCKETLAKE)
[15:50:56] [PASSED] 0x4C9A (ROCKETLAKE)
[15:50:56] [PASSED] 0x4680 (ALDERLAKE_S)
[15:50:56] [PASSED] 0x4682 (ALDERLAKE_S)
[15:50:56] [PASSED] 0x4688 (ALDERLAKE_S)
[15:50:56] [PASSED] 0x468A (ALDERLAKE_S)
[15:50:56] [PASSED] 0x468B (ALDERLAKE_S)
[15:50:56] [PASSED] 0x4690 (ALDERLAKE_S)
[15:50:56] [PASSED] 0x4692 (ALDERLAKE_S)
[15:50:56] [PASSED] 0x4693 (ALDERLAKE_S)
[15:50:56] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46AA (ALDERLAKE_P)
[15:50:56] [PASSED] 0x462A (ALDERLAKE_P)
[15:50:56] [PASSED] 0x4626 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x4628 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:50:56] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:50:56] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:50:56] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:50:56] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:50:56] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:50:56] [PASSED] 0xA721 (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA720 (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:50:56] [PASSED] 0xA780 (ALDERLAKE_S)
[15:50:56] [PASSED] 0xA781 (ALDERLAKE_S)
[15:50:56] [PASSED] 0xA782 (ALDERLAKE_S)
[15:50:56] [PASSED] 0xA783 (ALDERLAKE_S)
[15:50:56] [PASSED] 0xA788 (ALDERLAKE_S)
[15:50:56] [PASSED] 0xA789 (ALDERLAKE_S)
[15:50:56] [PASSED] 0xA78A (ALDERLAKE_S)
[15:50:56] [PASSED] 0xA78B (ALDERLAKE_S)
[15:50:56] [PASSED] 0x4905 (DG1)
[15:50:56] [PASSED] 0x4906 (DG1)
[15:50:56] [PASSED] 0x4907 (DG1)
[15:50:56] [PASSED] 0x4908 (DG1)
[15:50:56] [PASSED] 0x4909 (DG1)
[15:50:56] [PASSED] 0x56C0 (DG2)
[15:50:56] [PASSED] 0x56C2 (DG2)
[15:50:56] [PASSED] 0x56C1 (DG2)
[15:50:56] [PASSED] 0x7D51 (METEORLAKE)
[15:50:56] [PASSED] 0x7DD1 (METEORLAKE)
[15:50:56] [PASSED] 0x7D41 (METEORLAKE)
[15:50:56] [PASSED] 0x7D67 (METEORLAKE)
[15:50:56] [PASSED] 0xB640 (METEORLAKE)
[15:50:56] [PASSED] 0x56A0 (DG2)
[15:50:56] [PASSED] 0x56A1 (DG2)
[15:50:56] [PASSED] 0x56A2 (DG2)
[15:50:56] [PASSED] 0x56BE (DG2)
[15:50:56] [PASSED] 0x56BF (DG2)
[15:50:56] [PASSED] 0x5690 (DG2)
[15:50:56] [PASSED] 0x5691 (DG2)
[15:50:56] [PASSED] 0x5692 (DG2)
[15:50:56] [PASSED] 0x56A5 (DG2)
[15:50:56] [PASSED] 0x56A6 (DG2)
[15:50:56] [PASSED] 0x56B0 (DG2)
[15:50:56] [PASSED] 0x56B1 (DG2)
[15:50:56] [PASSED] 0x56BA (DG2)
[15:50:56] [PASSED] 0x56BB (DG2)
[15:50:56] [PASSED] 0x56BC (DG2)
[15:50:56] [PASSED] 0x56BD (DG2)
[15:50:56] [PASSED] 0x5693 (DG2)
[15:50:56] [PASSED] 0x5694 (DG2)
[15:50:56] [PASSED] 0x5695 (DG2)
[15:50:56] [PASSED] 0x56A3 (DG2)
[15:50:56] [PASSED] 0x56A4 (DG2)
[15:50:56] [PASSED] 0x56B2 (DG2)
[15:50:56] [PASSED] 0x56B3 (DG2)
[15:50:56] [PASSED] 0x5696 (DG2)
[15:50:56] [PASSED] 0x5697 (DG2)
[15:50:56] [PASSED] 0xB69 (PVC)
[15:50:56] [PASSED] 0xB6E (PVC)
[15:50:56] [PASSED] 0xBD4 (PVC)
[15:50:56] [PASSED] 0xBD5 (PVC)
[15:50:56] [PASSED] 0xBD6 (PVC)
[15:50:56] [PASSED] 0xBD7 (PVC)
[15:50:56] [PASSED] 0xBD8 (PVC)
[15:50:56] [PASSED] 0xBD9 (PVC)
[15:50:56] [PASSED] 0xBDA (PVC)
[15:50:56] [PASSED] 0xBDB (PVC)
[15:50:56] [PASSED] 0xBE0 (PVC)
[15:50:56] [PASSED] 0xBE1 (PVC)
[15:50:56] [PASSED] 0xBE5 (PVC)
[15:50:56] [PASSED] 0x7D40 (METEORLAKE)
[15:50:56] [PASSED] 0x7D45 (METEORLAKE)
[15:50:56] [PASSED] 0x7D55 (METEORLAKE)
[15:50:56] [PASSED] 0x7D60 (METEORLAKE)
[15:50:56] [PASSED] 0x7DD5 (METEORLAKE)
[15:50:56] [PASSED] 0x6420 (LUNARLAKE)
[15:50:56] [PASSED] 0x64A0 (LUNARLAKE)
[15:50:56] [PASSED] 0x64B0 (LUNARLAKE)
[15:50:56] [PASSED] 0xE202 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE209 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE20B (BATTLEMAGE)
[15:50:56] [PASSED] 0xE20C (BATTLEMAGE)
[15:50:56] [PASSED] 0xE20D (BATTLEMAGE)
[15:50:56] [PASSED] 0xE210 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE211 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE212 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE216 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE220 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE221 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE222 (BATTLEMAGE)
[15:50:56] [PASSED] 0xE223 (BATTLEMAGE)
[15:50:56] [PASSED] 0xB080 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB081 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB082 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB083 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB084 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB085 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB086 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB087 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB08F (PANTHERLAKE)
[15:50:56] [PASSED] 0xB090 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:50:56] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:50:56] [PASSED] 0xFD80 (PANTHERLAKE)
[15:50:56] [PASSED] 0xFD81 (PANTHERLAKE)
[15:50:56] [PASSED] 0xD740 (NOVALAKE_S)
[15:50:56] [PASSED] 0xD741 (NOVALAKE_S)
[15:50:56] [PASSED] 0xD742 (NOVALAKE_S)
[15:50:56] [PASSED] 0xD743 (NOVALAKE_S)
[15:50:56] [PASSED] 0xD744 (NOVALAKE_S)
[15:50:56] [PASSED] 0xD745 (NOVALAKE_S)
[15:50:56] [PASSED] 0x674C (CRESCENTISLAND)
[15:50:56] [PASSED] 0xD750 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD751 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD752 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD753 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD754 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD755 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD756 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD757 (NOVALAKE_P)
[15:50:56] [PASSED] 0xD75F (NOVALAKE_P)
[15:50:56] =============== [PASSED] check_platform_desc ===============
[15:50:56] ===================== [PASSED] xe_pci ======================
[15:50:56] =================== xe_rtp (2 subtests) ====================
[15:50:56] =============== xe_rtp_process_to_sr_tests ================
[15:50:56] [PASSED] coalesce-same-reg
[15:50:56] [PASSED] no-match-no-add
[15:50:56] [PASSED] match-or
[15:50:56] [PASSED] match-or-xfail
[15:50:56] [PASSED] no-match-no-add-multiple-rules
[15:50:56] [PASSED] two-regs-two-entries
[15:50:56] [PASSED] clr-one-set-other
[15:50:56] [PASSED] set-field
[15:50:56] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[15:50:56] [PASSED] conflict-not-disjoint
[15:50:56] [PASSED] conflict-reg-type
[15:50:56] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:50:56] ================== xe_rtp_process_tests ===================
[15:50:56] [PASSED] active1
[15:50:56] [PASSED] active2
[15:50:56] [PASSED] active-inactive
[15:50:56] [PASSED] inactive-active
[15:50:56] [PASSED] inactive-1st_or_active-inactive
[15:50:56] [PASSED] inactive-2nd_or_active-inactive
[15:50:56] [PASSED] inactive-last_or_active-inactive
[15:50:56] [PASSED] inactive-no_or_active-inactive
[15:50:56] ============== [PASSED] xe_rtp_process_tests ===============
[15:50:56] ===================== [PASSED] xe_rtp ======================
[15:50:56] ==================== xe_wa (1 subtest) =====================
[15:50:56] ======================== xe_wa_gt =========================
[15:50:56] [PASSED] TIGERLAKE B0
[15:50:56] [PASSED] DG1 A0
[15:50:56] [PASSED] DG1 B0
[15:50:56] [PASSED] ALDERLAKE_S A0
[15:50:56] [PASSED] ALDERLAKE_S B0
[15:50:56] [PASSED] ALDERLAKE_S C0
[15:50:56] [PASSED] ALDERLAKE_S D0
[15:50:56] [PASSED] ALDERLAKE_P A0
[15:50:56] [PASSED] ALDERLAKE_P B0
[15:50:56] [PASSED] ALDERLAKE_P C0
[15:50:56] [PASSED] ALDERLAKE_S RPLS D0
[15:50:56] [PASSED] ALDERLAKE_P RPLU E0
[15:50:56] [PASSED] DG2 G10 C0
[15:50:56] [PASSED] DG2 G11 B1
[15:50:56] [PASSED] DG2 G12 A1
[15:50:56] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:50:56] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:50:56] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[15:50:56] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[15:50:56] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[15:50:56] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[15:50:56] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[15:50:56] ==================== [PASSED] xe_wa_gt =====================
[15:50:56] ====================== [PASSED] xe_wa ======================
[15:50:56] ============================================================
[15:50:56] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[15:50:56] Elapsed time: 36.281s total, 4.238s configuring, 31.376s building, 0.619s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:50:56] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:50:58] 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:51:23] Starting KUnit Kernel (1/1)...
[15:51:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:51:23] ============ drm_test_pick_cmdline (2 subtests) ============
[15:51:23] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[15:51:23] =============== drm_test_pick_cmdline_named ===============
[15:51:23] [PASSED] NTSC
[15:51:23] [PASSED] NTSC-J
[15:51:23] [PASSED] PAL
[15:51:23] [PASSED] PAL-M
[15:51:23] =========== [PASSED] drm_test_pick_cmdline_named ===========
[15:51:23] ============== [PASSED] drm_test_pick_cmdline ==============
[15:51:23] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:51:23] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:51:23] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:51:23] =========== drm_validate_clone_mode (2 subtests) ===========
[15:51:23] ============== drm_test_check_in_clone_mode ===============
[15:51:23] [PASSED] in_clone_mode
[15:51:23] [PASSED] not_in_clone_mode
[15:51:23] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:51:23] =============== drm_test_check_valid_clones ===============
[15:51:23] [PASSED] not_in_clone_mode
[15:51:23] [PASSED] valid_clone
[15:51:23] [PASSED] invalid_clone
[15:51:23] =========== [PASSED] drm_test_check_valid_clones ===========
[15:51:23] ============= [PASSED] drm_validate_clone_mode =============
[15:51:23] ============= drm_validate_modeset (1 subtest) =============
[15:51:23] [PASSED] drm_test_check_connector_changed_modeset
[15:51:23] ============== [PASSED] drm_validate_modeset ===============
[15:51:23] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:51:23] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:51:23] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:51:23] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:51:23] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:51:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:51:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:51:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:51:23] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:51:23] ============== drm_bridge_alloc (2 subtests) ===============
[15:51:23] [PASSED] drm_test_drm_bridge_alloc_basic
[15:51:23] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:51:23] ================ [PASSED] drm_bridge_alloc =================
[15:51:23] ============= drm_cmdline_parser (40 subtests) =============
[15:51:23] [PASSED] drm_test_cmdline_force_d_only
[15:51:23] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:51:23] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:51:23] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:51:23] [PASSED] drm_test_cmdline_force_e_only
[15:51:23] [PASSED] drm_test_cmdline_res
[15:51:23] [PASSED] drm_test_cmdline_res_vesa
[15:51:23] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:51:23] [PASSED] drm_test_cmdline_res_rblank
[15:51:23] [PASSED] drm_test_cmdline_res_bpp
[15:51:23] [PASSED] drm_test_cmdline_res_refresh
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:51:23] [PASSED] drm_test_cmdline_res_margins_force_on
[15:51:23] [PASSED] drm_test_cmdline_res_vesa_margins
[15:51:23] [PASSED] drm_test_cmdline_name
[15:51:23] [PASSED] drm_test_cmdline_name_bpp
[15:51:23] [PASSED] drm_test_cmdline_name_option
[15:51:23] [PASSED] drm_test_cmdline_name_bpp_option
[15:51:23] [PASSED] drm_test_cmdline_rotate_0
[15:51:23] [PASSED] drm_test_cmdline_rotate_90
[15:51:23] [PASSED] drm_test_cmdline_rotate_180
[15:51:23] [PASSED] drm_test_cmdline_rotate_270
[15:51:23] [PASSED] drm_test_cmdline_hmirror
[15:51:23] [PASSED] drm_test_cmdline_vmirror
[15:51:23] [PASSED] drm_test_cmdline_margin_options
[15:51:23] [PASSED] drm_test_cmdline_multiple_options
[15:51:23] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:51:23] [PASSED] drm_test_cmdline_extra_and_option
[15:51:23] [PASSED] drm_test_cmdline_freestanding_options
[15:51:23] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:51:23] [PASSED] drm_test_cmdline_panel_orientation
[15:51:23] ================ drm_test_cmdline_invalid =================
[15:51:23] [PASSED] margin_only
[15:51:23] [PASSED] interlace_only
[15:51:23] [PASSED] res_missing_x
[15:51:23] [PASSED] res_missing_y
[15:51:23] [PASSED] res_bad_y
[15:51:23] [PASSED] res_missing_y_bpp
[15:51:23] [PASSED] res_bad_bpp
[15:51:23] [PASSED] res_bad_refresh
[15:51:23] [PASSED] res_bpp_refresh_force_on_off
[15:51:23] [PASSED] res_invalid_mode
[15:51:23] [PASSED] res_bpp_wrong_place_mode
[15:51:23] [PASSED] name_bpp_refresh
[15:51:23] [PASSED] name_refresh
[15:51:23] [PASSED] name_refresh_wrong_mode
[15:51:23] [PASSED] name_refresh_invalid_mode
[15:51:23] [PASSED] rotate_multiple
[15:51:23] [PASSED] rotate_invalid_val
[15:51:23] [PASSED] rotate_truncated
[15:51:23] [PASSED] invalid_option
[15:51:23] [PASSED] invalid_tv_option
[15:51:23] [PASSED] truncated_tv_option
[15:51:23] ============ [PASSED] drm_test_cmdline_invalid =============
[15:51:23] =============== drm_test_cmdline_tv_options ===============
[15:51:23] [PASSED] NTSC
[15:51:23] [PASSED] NTSC_443
[15:51:23] [PASSED] NTSC_J
[15:51:23] [PASSED] PAL
[15:51:23] [PASSED] PAL_M
[15:51:23] [PASSED] PAL_N
[15:51:23] [PASSED] SECAM
[15:51:23] [PASSED] MONO_525
[15:51:23] [PASSED] MONO_625
[15:51:23] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:51:23] =============== [PASSED] drm_cmdline_parser ================
[15:51:23] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:51:23] [PASSED] drm_test_connector_hdmi_init_valid
[15:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:51:23] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:51:23] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:51:23] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:51:23] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:51:23] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:51:23] [PASSED] supported_formats=0x5 yuv420_allowed=1
[15:51:23] [PASSED] supported_formats=0x5 yuv420_allowed=0
[15:51:23] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:51:23] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:51:23] [PASSED] drm_test_connector_hdmi_init_null_product
[15:51:23] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:51:23] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:51:23] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:51:23] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:51:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:51:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:51:23] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:51:23] ========= drm_test_connector_hdmi_init_type_valid =========
[15:51:23] [PASSED] HDMI-A
[15:51:23] [PASSED] HDMI-B
[15:51:23] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:51:23] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:51:23] [PASSED] Unknown
[15:51:23] [PASSED] VGA
[15:51:23] [PASSED] DVI-I
[15:51:23] [PASSED] DVI-D
[15:51:23] [PASSED] DVI-A
[15:51:23] [PASSED] Composite
[15:51:23] [PASSED] SVIDEO
[15:51:23] [PASSED] LVDS
[15:51:23] [PASSED] Component
[15:51:23] [PASSED] DIN
[15:51:23] [PASSED] DP
[15:51:23] [PASSED] TV
[15:51:23] [PASSED] eDP
[15:51:23] [PASSED] Virtual
[15:51:23] [PASSED] DSI
[15:51:23] [PASSED] DPI
[15:51:23] [PASSED] Writeback
[15:51:23] [PASSED] SPI
[15:51:23] [PASSED] USB
[15:51:23] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:51:23] ============ [PASSED] drmm_connector_hdmi_init =============
[15:51:23] ============= drmm_connector_init (3 subtests) =============
[15:51:23] [PASSED] drm_test_drmm_connector_init
[15:51:23] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:51:23] ========= drm_test_drmm_connector_init_type_valid =========
[15:51:23] [PASSED] Unknown
[15:51:23] [PASSED] VGA
[15:51:23] [PASSED] DVI-I
[15:51:23] [PASSED] DVI-D
[15:51:23] [PASSED] DVI-A
[15:51:23] [PASSED] Composite
[15:51:23] [PASSED] SVIDEO
[15:51:23] [PASSED] LVDS
[15:51:23] [PASSED] Component
[15:51:23] [PASSED] DIN
[15:51:23] [PASSED] DP
[15:51:23] [PASSED] HDMI-A
[15:51:23] [PASSED] HDMI-B
[15:51:23] [PASSED] TV
[15:51:23] [PASSED] eDP
[15:51:23] [PASSED] Virtual
[15:51:23] [PASSED] DSI
[15:51:23] [PASSED] DPI
[15:51:23] [PASSED] Writeback
[15:51:23] [PASSED] SPI
[15:51:23] [PASSED] USB
[15:51:23] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:51:23] =============== [PASSED] drmm_connector_init ===============
[15:51:23] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_init
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:51:23] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:51:23] [PASSED] Unknown
[15:51:23] [PASSED] VGA
[15:51:23] [PASSED] DVI-I
[15:51:23] [PASSED] DVI-D
[15:51:23] [PASSED] DVI-A
[15:51:23] [PASSED] Composite
[15:51:23] [PASSED] SVIDEO
[15:51:23] [PASSED] LVDS
[15:51:23] [PASSED] Component
[15:51:23] [PASSED] DIN
[15:51:23] [PASSED] DP
[15:51:23] [PASSED] HDMI-A
[15:51:23] [PASSED] HDMI-B
[15:51:23] [PASSED] TV
[15:51:23] [PASSED] eDP
[15:51:23] [PASSED] Virtual
[15:51:23] [PASSED] DSI
[15:51:23] [PASSED] DPI
[15:51:23] [PASSED] Writeback
[15:51:23] [PASSED] SPI
[15:51:23] [PASSED] USB
[15:51:23] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:51:23] ======== drm_test_drm_connector_dynamic_init_name =========
[15:51:23] [PASSED] Unknown
[15:51:23] [PASSED] VGA
[15:51:23] [PASSED] DVI-I
[15:51:23] [PASSED] DVI-D
[15:51:23] [PASSED] DVI-A
[15:51:23] [PASSED] Composite
[15:51:23] [PASSED] SVIDEO
[15:51:23] [PASSED] LVDS
[15:51:23] [PASSED] Component
[15:51:23] [PASSED] DIN
[15:51:23] [PASSED] DP
[15:51:23] [PASSED] HDMI-A
[15:51:23] [PASSED] HDMI-B
[15:51:23] [PASSED] TV
[15:51:23] [PASSED] eDP
[15:51:23] [PASSED] Virtual
[15:51:23] [PASSED] DSI
[15:51:23] [PASSED] DPI
[15:51:23] [PASSED] Writeback
[15:51:23] [PASSED] SPI
[15:51:23] [PASSED] USB
[15:51:23] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:51:23] =========== [PASSED] drm_connector_dynamic_init ============
[15:51:23] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:51:23] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:51:23] ======= drm_connector_dynamic_register (7 subtests) ========
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:51:23] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:51:23] ========= [PASSED] drm_connector_dynamic_register ==========
[15:51:23] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:51:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:51:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:51:23] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:51:23] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:51:23] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:51:23] [PASSED] NTSC
[15:51:23] [PASSED] NTSC-443
[15:51:23] [PASSED] NTSC-J
[15:51:23] [PASSED] PAL
[15:51:23] [PASSED] PAL-M
[15:51:23] [PASSED] PAL-N
[15:51:23] [PASSED] SECAM
[15:51:23] [PASSED] Mono
[15:51:23] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:51:23] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:51:23] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:51:23] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:51:23] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:51:23] [PASSED] VIC 96
[15:51:23] [PASSED] VIC 97
[15:51:23] [PASSED] VIC 101
[15:51:23] [PASSED] VIC 102
[15:51:23] [PASSED] VIC 106
[15:51:23] [PASSED] VIC 107
[15:51:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:51:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:51:23] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:51:23] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:51:23] [PASSED] Automatic
[15:51:23] [PASSED] Full
[15:51:23] [PASSED] Limited 16:235
[15:51:23] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:51:23] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:51:23] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:51:23] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:51:23] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:51:23] [PASSED] RGB
[15:51:23] [PASSED] YUV 4:2:0
[15:51:23] [PASSED] YUV 4:2:2
[15:51:23] [PASSED] YUV 4:4:4
[15:51:23] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:51:23] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:51:23] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:51:23] ============= drm_damage_helper (21 subtests) ==============
[15:51:23] [PASSED] drm_test_damage_iter_no_damage
[15:51:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:51:23] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:51:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:51:23] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:51:23] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:51:23] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:51:23] [PASSED] drm_test_damage_iter_simple_damage
[15:51:23] [PASSED] drm_test_damage_iter_single_damage
[15:51:23] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:51:23] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:51:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:51:23] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:51:23] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:51:23] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:51:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:51:23] [PASSED] drm_test_damage_iter_damage
[15:51:23] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:51:23] [PASSED] drm_test_damage_iter_damage_one_outside
[15:51:23] [PASSED] drm_test_damage_iter_damage_src_moved
[15:51:23] [PASSED] drm_test_damage_iter_damage_not_visible
[15:51:23] ================ [PASSED] drm_damage_helper ================
[15:51:23] ============== drm_dp_mst_helper (3 subtests) ==============
[15:51:23] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:51:23] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:51:23] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:51:23] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:51:23] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:51:23] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:51:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:51:23] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:51:23] [PASSED] Link rate 2000000 lane count 4
[15:51:23] [PASSED] Link rate 2000000 lane count 2
[15:51:23] [PASSED] Link rate 2000000 lane count 1
[15:51:23] [PASSED] Link rate 1350000 lane count 4
[15:51:23] [PASSED] Link rate 1350000 lane count 2
[15:51:23] [PASSED] Link rate 1350000 lane count 1
[15:51:23] [PASSED] Link rate 1000000 lane count 4
[15:51:23] [PASSED] Link rate 1000000 lane count 2
[15:51:23] [PASSED] Link rate 1000000 lane count 1
[15:51:23] [PASSED] Link rate 810000 lane count 4
[15:51:23] [PASSED] Link rate 810000 lane count 2
[15:51:23] [PASSED] Link rate 810000 lane count 1
[15:51:23] [PASSED] Link rate 540000 lane count 4
[15:51:23] [PASSED] Link rate 540000 lane count 2
[15:51:23] [PASSED] Link rate 540000 lane count 1
[15:51:23] [PASSED] Link rate 270000 lane count 4
[15:51:23] [PASSED] Link rate 270000 lane count 2
[15:51:23] [PASSED] Link rate 270000 lane count 1
[15:51:23] [PASSED] Link rate 162000 lane count 4
[15:51:23] [PASSED] Link rate 162000 lane count 2
[15:51:23] [PASSED] Link rate 162000 lane count 1
[15:51:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:51:23] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:51:23] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:51:23] [PASSED] DP_POWER_UP_PHY with port number
[15:51:23] [PASSED] DP_POWER_DOWN_PHY with port number
[15:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:51:23] [PASSED] DP_QUERY_PAYLOAD with port number
[15:51:23] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:51:23] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:51:23] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:51:23] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:51:23] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:51:23] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:51:23] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:51:23] [PASSED] DP_REMOTE_I2C_READ with port number
[15:51:23] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:51:23] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:51:23] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:51:23] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:51:23] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:51:23] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:51:23] ================ [PASSED] drm_dp_mst_helper ================
[15:51:23] ================== drm_exec (7 subtests) ===================
[15:51:23] [PASSED] sanitycheck
[15:51:23] [PASSED] test_lock
[15:51:23] [PASSED] test_lock_unlock
[15:51:23] [PASSED] test_duplicates
[15:51:23] [PASSED] test_prepare
[15:51:23] [PASSED] test_prepare_array
[15:51:23] [PASSED] test_multiple_loops
[15:51:23] ==================== [PASSED] drm_exec =====================
[15:51:23] =========== drm_format_helper_test (17 subtests) ===========
[15:51:23] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:51:23] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:51:23] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:51:23] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:51:23] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:51:23] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:51:23] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:51:23] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:51:23] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:51:23] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:51:23] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:51:23] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:51:23] ==================== drm_test_fb_swab =====================
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ================ [PASSED] drm_test_fb_swab =================
[15:51:23] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:51:23] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:51:23] [PASSED] single_pixel_source_buffer
[15:51:23] [PASSED] single_pixel_clip_rectangle
[15:51:23] [PASSED] well_known_colors
[15:51:23] [PASSED] destination_pitch
[15:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:51:23] ================= drm_test_fb_clip_offset =================
[15:51:23] [PASSED] pass through
[15:51:23] [PASSED] horizontal offset
[15:51:23] [PASSED] vertical offset
[15:51:23] [PASSED] horizontal and vertical offset
[15:51:23] [PASSED] horizontal offset (custom pitch)
[15:51:23] [PASSED] vertical offset (custom pitch)
[15:51:23] [PASSED] horizontal and vertical offset (custom pitch)
[15:51:23] ============= [PASSED] drm_test_fb_clip_offset =============
[15:51:23] =================== drm_test_fb_memcpy ====================
[15:51:23] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:51:23] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:51:23] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:51:23] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:51:23] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:51:23] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:51:23] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:51:23] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:51:23] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:51:23] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:51:23] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:51:23] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:51:23] =============== [PASSED] drm_test_fb_memcpy ================
[15:51:23] ============= [PASSED] drm_format_helper_test ==============
[15:51:23] ================= drm_format (18 subtests) =================
[15:51:23] [PASSED] drm_test_format_block_width_invalid
[15:51:23] [PASSED] drm_test_format_block_width_one_plane
[15:51:23] [PASSED] drm_test_format_block_width_two_plane
[15:51:23] [PASSED] drm_test_format_block_width_three_plane
[15:51:23] [PASSED] drm_test_format_block_width_tiled
[15:51:23] [PASSED] drm_test_format_block_height_invalid
[15:51:23] [PASSED] drm_test_format_block_height_one_plane
[15:51:23] [PASSED] drm_test_format_block_height_two_plane
[15:51:23] [PASSED] drm_test_format_block_height_three_plane
[15:51:23] [PASSED] drm_test_format_block_height_tiled
[15:51:23] [PASSED] drm_test_format_min_pitch_invalid
[15:51:23] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:51:23] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:51:23] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:51:23] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:51:23] [PASSED] drm_test_format_min_pitch_two_plane
[15:51:23] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:51:23] [PASSED] drm_test_format_min_pitch_tiled
[15:51:23] =================== [PASSED] drm_format ====================
[15:51:23] ============== drm_framebuffer (10 subtests) ===============
[15:51:23] ========== drm_test_framebuffer_check_src_coords ==========
[15:51:23] [PASSED] Success: source fits into fb
[15:51:23] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:51:23] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:51:23] [PASSED] Fail: overflowing fb with source width
[15:51:23] [PASSED] Fail: overflowing fb with source height
[15:51:23] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:51:23] [PASSED] drm_test_framebuffer_cleanup
[15:51:23] =============== drm_test_framebuffer_create ===============
[15:51:23] [PASSED] ABGR8888 normal sizes
[15:51:23] [PASSED] ABGR8888 max sizes
[15:51:23] [PASSED] ABGR8888 pitch greater than min required
[15:51:23] [PASSED] ABGR8888 pitch less than min required
[15:51:23] [PASSED] ABGR8888 Invalid width
[15:51:23] [PASSED] ABGR8888 Invalid buffer handle
[15:51:23] [PASSED] No pixel format
[15:51:23] [PASSED] ABGR8888 Width 0
[15:51:23] [PASSED] ABGR8888 Height 0
[15:51:23] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:51:23] [PASSED] ABGR8888 Large buffer offset
[15:51:23] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:51:23] [PASSED] ABGR8888 Invalid flag
[15:51:23] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:51:23] [PASSED] ABGR8888 Valid buffer modifier
[15:51:23] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:51:23] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:51:23] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:51:23] [PASSED] NV12 Normal sizes
[15:51:23] [PASSED] NV12 Max sizes
[15:51:23] [PASSED] NV12 Invalid pitch
[15:51:23] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:51:23] [PASSED] NV12 different modifier per-plane
[15:51:23] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:51:23] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:51:23] [PASSED] NV12 Modifier for inexistent plane
[15:51:23] [PASSED] NV12 Handle for inexistent plane
[15:51:23] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:51:23] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:51:23] [PASSED] YVU420 Normal sizes
[15:51:23] [PASSED] YVU420 Max sizes
[15:51:23] [PASSED] YVU420 Invalid pitch
[15:51:23] [PASSED] YVU420 Different pitches
[15:51:23] [PASSED] YVU420 Different buffer offsets/pitches
[15:51:23] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:51:23] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:51:23] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:51:23] [PASSED] YVU420 Valid modifier
[15:51:23] [PASSED] YVU420 Different modifiers per plane
[15:51:23] [PASSED] YVU420 Modifier for inexistent plane
[15:51:23] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:51:23] [PASSED] X0L2 Normal sizes
[15:51:23] [PASSED] X0L2 Max sizes
[15:51:23] [PASSED] X0L2 Invalid pitch
[15:51:23] [PASSED] X0L2 Pitch greater than minimum required
[15:51:23] [PASSED] X0L2 Handle for inexistent plane
[15:51:23] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:51:23] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:51:23] [PASSED] X0L2 Valid modifier
[15:51:23] [PASSED] X0L2 Modifier for inexistent plane
[15:51:23] =========== [PASSED] drm_test_framebuffer_create ===========
[15:51:23] [PASSED] drm_test_framebuffer_free
[15:51:23] [PASSED] drm_test_framebuffer_init
[15:51:23] [PASSED] drm_test_framebuffer_init_bad_format
[15:51:23] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:51:23] [PASSED] drm_test_framebuffer_lookup
[15:51:23] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:51:23] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:51:23] ================= [PASSED] drm_framebuffer =================
[15:51:23] ================ drm_gem_shmem (8 subtests) ================
[15:51:23] [PASSED] drm_gem_shmem_test_obj_create
[15:51:23] [PASSED] drm_gem_shmem_test_obj_create_private
[15:51:23] [PASSED] drm_gem_shmem_test_pin_pages
[15:51:23] [PASSED] drm_gem_shmem_test_vmap
[15:51:23] [PASSED] drm_gem_shmem_test_get_sg_table
[15:51:23] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:51:23] [PASSED] drm_gem_shmem_test_madvise
[15:51:23] [PASSED] drm_gem_shmem_test_purge
[15:51:23] ================== [PASSED] drm_gem_shmem ==================
[15:51:23] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:51:23] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:51:23] [PASSED] Automatic
[15:51:23] [PASSED] Full
[15:51:23] [PASSED] Limited 16:235
[15:51:23] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:51:23] [PASSED] drm_test_check_disable_connector
[15:51:23] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:51:23] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:51:23] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:51:23] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:51:23] [PASSED] drm_test_check_output_bpc_dvi
[15:51:23] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:51:23] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:51:23] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:51:23] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:51:23] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:51:23] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:51:23] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:51:23] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:51:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:51:23] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:51:23] [PASSED] drm_test_check_broadcast_rgb_value
[15:51:23] [PASSED] drm_test_check_bpc_8_value
[15:51:23] [PASSED] drm_test_check_bpc_10_value
[15:51:23] [PASSED] drm_test_check_bpc_12_value
[15:51:23] [PASSED] drm_test_check_format_value
[15:51:23] [PASSED] drm_test_check_tmds_char_value
[15:51:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:51:23] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:51:23] [PASSED] drm_test_check_mode_valid
[15:51:23] [PASSED] drm_test_check_mode_valid_reject
[15:51:23] [PASSED] drm_test_check_mode_valid_reject_rate
[15:51:23] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:51:23] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:51:23] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[15:51:23] [PASSED] drm_test_check_infoframes
[15:51:23] [PASSED] drm_test_check_reject_avi_infoframe
[15:51:23] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[15:51:23] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[15:51:23] [PASSED] drm_test_check_reject_audio_infoframe
[15:51:23] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[15:51:23] ================= drm_managed (2 subtests) =================
[15:51:23] [PASSED] drm_test_managed_release_action
[15:51:23] [PASSED] drm_test_managed_run_action
[15:51:23] =================== [PASSED] drm_managed ===================
[15:51:23] =================== drm_mm (6 subtests) ====================
[15:51:23] [PASSED] drm_test_mm_init
[15:51:23] [PASSED] drm_test_mm_debug
[15:51:23] [PASSED] drm_test_mm_align32
[15:51:23] [PASSED] drm_test_mm_align64
[15:51:23] [PASSED] drm_test_mm_lowest
[15:51:23] [PASSED] drm_test_mm_highest
[15:51:23] ===================== [PASSED] drm_mm ======================
[15:51:23] ============= drm_modes_analog_tv (5 subtests) =============
[15:51:23] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:51:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:51:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:51:23] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:51:23] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:51:23] =============== [PASSED] drm_modes_analog_tv ===============
[15:51:23] ============== drm_plane_helper (2 subtests) ===============
[15:51:23] =============== drm_test_check_plane_state ================
[15:51:23] [PASSED] clipping_simple
[15:51:23] [PASSED] clipping_rotate_reflect
[15:51:23] [PASSED] positioning_simple
[15:51:23] [PASSED] upscaling
[15:51:23] [PASSED] downscaling
[15:51:23] [PASSED] rounding1
[15:51:23] [PASSED] rounding2
[15:51:23] [PASSED] rounding3
[15:51:23] [PASSED] rounding4
[15:51:23] =========== [PASSED] drm_test_check_plane_state ============
[15:51:23] =========== drm_test_check_invalid_plane_state ============
[15:51:23] [PASSED] positioning_invalid
[15:51:23] [PASSED] upscaling_invalid
[15:51:23] [PASSED] downscaling_invalid
[15:51:23] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:51:23] ================ [PASSED] drm_plane_helper =================
[15:51:23] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:51:23] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:51:23] [PASSED] None
[15:51:23] [PASSED] PAL
[15:51:23] [PASSED] NTSC
[15:51:23] [PASSED] Both, NTSC Default
[15:51:23] [PASSED] Both, PAL Default
[15:51:23] [PASSED] Both, NTSC Default, with PAL on command-line
[15:51:23] [PASSED] Both, PAL Default, with NTSC on command-line
[15:51:23] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:51:23] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:51:23] ================== drm_rect (9 subtests) ===================
[15:51:23] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:51:23] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:51:23] [PASSED] drm_test_rect_clip_scaled_clipped
[15:51:23] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:51:23] ================= drm_test_rect_intersect =================
[15:51:23] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:51:23] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:51:23] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:51:23] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:51:23] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:51:23] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:51:23] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:51:23] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:51:23] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:51:23] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:51:23] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:51:23] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:51:23] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:51:23] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:51:23] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:51:23] ============= [PASSED] drm_test_rect_intersect =============
[15:51:23] ================ drm_test_rect_calc_hscale ================
[15:51:23] [PASSED] normal use
[15:51:23] [PASSED] out of max range
[15:51:23] [PASSED] out of min range
[15:51:23] [PASSED] zero dst
[15:51:23] [PASSED] negative src
[15:51:23] [PASSED] negative dst
[15:51:23] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:51:23] ================ drm_test_rect_calc_vscale ================
[15:51:23] [PASSED] normal use
[15:51:23] [PASSED] out of max range
[15:51:23] [PASSED] out of min range
[15:51:23] [PASSED] zero dst
[15:51:23] [PASSED] negative src
[15:51:23] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[15:51:23] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:51:23] ================== drm_test_rect_rotate ===================
[15:51:23] [PASSED] reflect-x
[15:51:23] [PASSED] reflect-y
[15:51:23] [PASSED] rotate-0
[15:51:23] [PASSED] rotate-90
[15:51:23] [PASSED] rotate-180
[15:51:23] [PASSED] rotate-270
[15:51:23] ============== [PASSED] drm_test_rect_rotate ===============
[15:51:23] ================ drm_test_rect_rotate_inv =================
[15:51:23] [PASSED] reflect-x
[15:51:23] [PASSED] reflect-y
[15:51:23] [PASSED] rotate-0
[15:51:23] [PASSED] rotate-90
[15:51:23] [PASSED] rotate-180
[15:51:23] [PASSED] rotate-270
[15:51:23] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:51:23] ==================== [PASSED] drm_rect =====================
[15:51:23] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:51:23] ============ drm_test_sysfb_build_fourcc_list =============
[15:51:23] [PASSED] no native formats
[15:51:23] [PASSED] XRGB8888 as native format
[15:51:23] [PASSED] remove duplicates
[15:51:23] [PASSED] convert alpha formats
[15:51:23] [PASSED] random formats
[15:51:23] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:51:23] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:51:23] ================== drm_fixp (2 subtests) ===================
[15:51:23] [PASSED] drm_test_int2fixp
[15:51:23] [PASSED] drm_test_sm2fixp
[15:51:23] ==================== [PASSED] drm_fixp =====================
[15:51:23] ============================================================
[15:51:23] Testing complete. Ran 621 tests: passed: 621
[15:51:23] Elapsed time: 26.367s total, 1.751s configuring, 24.484s building, 0.130s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
stty: 'standard input': Inappropriate ioctl for device
[15:51:23] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:51:25] 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:51:34] Starting KUnit Kernel (1/1)...
[15:51:34] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:51:34] ================= ttm_device (5 subtests) ==================
[15:51:34] [PASSED] ttm_device_init_basic
[15:51:34] [PASSED] ttm_device_init_multiple
[15:51:34] [PASSED] ttm_device_fini_basic
[15:51:34] [PASSED] ttm_device_init_no_vma_man
[15:51:34] ================== ttm_device_init_pools ==================
[15:51:34] [PASSED] No DMA allocations, no DMA32 required
[15:51:34] # ttm_device_init_pools: ASSERTION FAILED at drivers/gpu/drm/ttm/tests/ttm_device_test.c:178
[15:51:34] Expected !list_lru_count(&pt.pages) to be false, but is true
[15:51:34] [FAILED] DMA allocations, DMA32 required
[15:51:34] [PASSED] No DMA allocations, DMA32 required
[15:51:34] # ttm_device_init_pools: ASSERTION FAILED at drivers/gpu/drm/ttm/tests/ttm_device_test.c:178
[15:51:34] Expected !list_lru_count(&pt.pages) to be false, but is true
[15:51:34] ------------[ cut here ]------------
[15:51:34] WARNING: lib/refcount.c:28 at devres_release_all+0xaa/0x100, CPU#0: kunit_try_catch/46
[15:51:34] refcount_t: underflow; use-after-free.
[15:51:34] CPU: 0 UID: 0 PID: 46 Comm: kunit_try_catch Tainted: G W N 7.0.0-rc7-ga2a9341fa521 #3 VOLUNTARY
[15:51:34] Tainted: [W]=WARN, [N]=TEST
[15:51:34] Stack:
[15:51:34] 6044ed8b 00000000 00000000 00000001
[15:51:34] ffffff00 6044ed8b 6032367a 00000009
[15:51:34] 0000001c 60043e88 6002381c bb0cbd40
[15:51:34] Call Trace:
[15:51:34] [<6032367a>] ? devres_release_all+0xaa/0x100
[15:51:34] [<60043e88>] ? dump_stack_lvl+0x5e/0x7a
[15:51:34] [<6002381c>] ? _printk+0x0/0x65
[15:51:34] [<6001f09f>] ? __warn.cold+0x79/0x11f
[15:51:34] [<6001f1d9>] ? warn_slowpath_fmt+0x94/0xa1
[15:51:34] [<601ef1a0>] ? kernfs_free_rcu+0x0/0x70
[15:51:34] [<60052e36>] ? um_set_signals+0x36/0x60
[15:51:34] [<600c5a42>] ? call_rcu+0x52/0x90
[15:51:34] [<6001f145>] ? warn_slowpath_fmt+0x0/0xa1
[15:51:34] [<60147f50>] ? kfree+0x0/0x250
[15:51:34] [<6032367a>] ? devres_release_all+0xaa/0x100
[15:51:34] [<60396bb0>] ? mutex_unlock+0x0/0x30
[15:51:34] [<6031c3c0>] ? bus_notify+0x0/0x60
[15:51:34] [<60396bb0>] ? mutex_unlock+0x0/0x30
[15:51:34] [<60398620>] ? mutex_lock+0x0/0x40
[15:51:34] [<6031ca24>] ? device_unbind_cleanup+0x14/0xb0
[15:51:34] [<6031e1f6>] ? device_release_driver_internal+0x256/0x2b0
[15:51:34] [<60372210>] ? kobject_put+0x0/0x150
[15:51:34] [<601f3d40>] ? sysfs_remove_file_ns+0x0/0x20
[15:51:34] [<6031c00f>] ? bus_remove_device+0x10f/0x1a0
[15:51:34] [<601f3d40>] ? sysfs_remove_file_ns+0x0/0x20
[15:51:34] [<601f17b8>] ? kernfs_remove_by_name_ns+0x98/0x130
[15:51:34] [<60315a8c>] ? device_del+0x1bc/0x600
[15:51:34] [<60052e00>] ? um_set_signals+0x0/0x60
[15:51:34] [<6025b2a0>] ? device_unregister_wrapper+0x0/0x10
[15:51:34] [<60052e00>] ? um_set_signals+0x0/0x60
[15:51:34] [<60315ee4>] ? device_unregister+0x14/0x40
[15:51:34] [<60257e66>] ? kunit_release_action+0xf6/0x170
[15:51:34] [<60257d70>] ? kunit_release_action+0x0/0x170
[15:51:34] [<6025b2e2>] ? kunit_device_unregister+0x32/0x80
[15:51:34] [<60259890>] ? kunit_generic_run_threadfn_adapter+0x0/0x30
[15:51:34] [<6025748e>] ? kunit_try_run_case_cleanup+0x2e/0x40
[15:51:34] [<602598a6>] ? kunit_generic_run_threadfn_adapter+0x16/0x30
[15:51:34] [<60081e36>] ? kthread+0xe6/0x150
[15:51:34] [<60046435>] ? new_thread_handler+0x45/0x60
[15:51:34] ---[ end trace 0000000000000000 ]---
[15:51:34] [FAILED] DMA allocations, no DMA32 required
[15:51:34] # ttm_device_init_pools: pass:2 fail:2 skip:0 total:4
[15:51:34] ============== [FAILED] ttm_device_init_pools ==============
[15:51:34] # module: ttm_device_test
[15:51:34] # ttm_device: pass:4 fail:1 skip:0 total:5
[15:51:34] # Totals: pass:6 fail:2 skip:0 total:8
[15:51:34] =================== [FAILED] ttm_device ====================
[15:51:34] ================== ttm_pool (8 subtests) ===================
[15:51:34] ================== ttm_pool_alloc_basic ===================
[15:51:34] [PASSED] One page
[15:51:34] [PASSED] More than one page
[15:51:34] [PASSED] Above the allocation limit
[15:51:34] [PASSED] One page, with coherent DMA mappings enabled
[15:51:34] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:51:34] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:51:34] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:51:34] [PASSED] One page
[15:51:34] [PASSED] More than one page
[15:51:34] [PASSED] Above the allocation limit
[15:51:34] [PASSED] One page, with coherent DMA mappings enabled
[15:51:34] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:51:34] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:51:34] [PASSED] ttm_pool_alloc_order_caching_match
[15:51:34] [PASSED] ttm_pool_alloc_caching_mismatch
[15:51:34] [PASSED] ttm_pool_alloc_order_mismatch
[15:51:34] [PASSED] ttm_pool_free_dma_alloc
[15:51:34] [ERROR] Test: ttm_pool: missing expected subtest!
[15:51:34]
[15:51:34] Pid: 75, comm: kunit_try_catch Tainted: G W N 7.0.0-rc7-ga2a9341fa521
[15:51:34] RIP: 0033:list_lru_count_node+0xe/0x20
[15:51:34] RSP: 00000000bb0cbed8 EFLAGS: 00010246
[15:51:34] RAX: 0000000000000000 RBX: 00000000bb003c90 RCX: 000000007b64c7d8
[15:51:34] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 000000007b486880
[15:51:34] RBP: 000000007b486800 R08: 00000000b9f1cc28 R09: 000000007b450c80
[15:51:34] R10: 0000000000000000 R11: 0000000000000000 R12: 000000007b450c80
[15:51:34] R13: 0000000060440770 R14: 000000006010eb50 R15: 000000007b486880
[15:51:34] Kernel panic - not syncing: Segfault with no mm
[15:51:34] [CRASHED]
[15:51:34] [ERROR] Test: ttm_pool: missing expected subtest!
[15:51:34] [CRASHED]
[15:51:34] [ERROR] Test: ttm_pool: missing subtest result line!
[15:51:34] # module: ttm_pool_test
[15:51:34] ==================== [CRASHED] ttm_pool ====================
[15:51:34] [ERROR] Test: main: missing expected subtest!
[15:51:34] [CRASHED]
[15:51:34] [ERROR] Test: main: missing expected subtest!
[15:51:34] [CRASHED]
[15:51:34] [ERROR] Test: main: missing expected subtest!
[15:51:34] [CRASHED]
[15:51:34] [ERROR] Test: main: missing expected subtest!
[15:51:34] [CRASHED]
[15:51:34] ============================================================
[15:51:34] Testing complete. Ran 28 tests: passed: 20, failed: 2, crashed: 6, errors: 7
The kernel seems to have crashed; you can decode the stack traces with:
$ scripts/decode_stacktrace.sh .kunit/vmlinux .kunit < .kunit/test.log | tee .kunit/decoded.log | /kernel/tools/testing/kunit/kunit.py parse
[15:51:34] Elapsed time: 11.279s total, 1.717s configuring, 9.296s building, 0.266s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ CI.KUnit: success for Do not create drm device for PF only admin mode (rev11)
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
` (2 preceding siblings ...)
2026-04-09 15:51 ` ✗ CI.KUnit: failure for Do not create drm device for PF only admin mode (rev10) Patchwork
@ 2026-04-10 4:34 ` Patchwork
2026-04-10 5:29 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-10 4:34 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
== Series Details ==
Series: Do not create drm device for PF only admin mode (rev11)
URL : https://patchwork.freedesktop.org/series/160349/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:32:54] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:32:59] 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
[04:33:30] Starting KUnit Kernel (1/1)...
[04:33:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:33:30] ================== guc_buf (11 subtests) ===================
[04:33:30] [PASSED] test_smallest
[04:33:30] [PASSED] test_largest
[04:33:30] [PASSED] test_granular
[04:33:30] [PASSED] test_unique
[04:33:30] [PASSED] test_overlap
[04:33:30] [PASSED] test_reusable
[04:33:30] [PASSED] test_too_big
[04:33:30] [PASSED] test_flush
[04:33:30] [PASSED] test_lookup
[04:33:30] [PASSED] test_data
[04:33:30] [PASSED] test_class
[04:33:30] ===================== [PASSED] guc_buf =====================
[04:33:30] =================== guc_dbm (7 subtests) ===================
[04:33:30] [PASSED] test_empty
[04:33:30] [PASSED] test_default
[04:33:30] ======================== test_size ========================
[04:33:30] [PASSED] 4
[04:33:30] [PASSED] 8
[04:33:30] [PASSED] 32
[04:33:30] [PASSED] 256
[04:33:30] ==================== [PASSED] test_size ====================
[04:33:30] ======================= test_reuse ========================
[04:33:30] [PASSED] 4
[04:33:30] [PASSED] 8
[04:33:30] [PASSED] 32
[04:33:30] [PASSED] 256
[04:33:30] =================== [PASSED] test_reuse ====================
[04:33:30] =================== test_range_overlap ====================
[04:33:30] [PASSED] 4
[04:33:30] [PASSED] 8
[04:33:30] [PASSED] 32
[04:33:30] [PASSED] 256
[04:33:30] =============== [PASSED] test_range_overlap ================
[04:33:30] =================== test_range_compact ====================
[04:33:30] [PASSED] 4
[04:33:30] [PASSED] 8
[04:33:30] [PASSED] 32
[04:33:30] [PASSED] 256
[04:33:30] =============== [PASSED] test_range_compact ================
[04:33:30] ==================== test_range_spare =====================
[04:33:30] [PASSED] 4
[04:33:30] [PASSED] 8
[04:33:30] [PASSED] 32
[04:33:30] [PASSED] 256
[04:33:30] ================ [PASSED] test_range_spare =================
[04:33:30] ===================== [PASSED] guc_dbm =====================
[04:33:30] =================== guc_idm (6 subtests) ===================
[04:33:30] [PASSED] bad_init
[04:33:30] [PASSED] no_init
[04:33:30] [PASSED] init_fini
[04:33:30] [PASSED] check_used
[04:33:30] [PASSED] check_quota
[04:33:30] [PASSED] check_all
[04:33:30] ===================== [PASSED] guc_idm =====================
[04:33:30] ================== no_relay (3 subtests) ===================
[04:33:30] [PASSED] xe_drops_guc2pf_if_not_ready
[04:33:30] [PASSED] xe_drops_guc2vf_if_not_ready
[04:33:30] [PASSED] xe_rejects_send_if_not_ready
[04:33:30] ==================== [PASSED] no_relay =====================
[04:33:30] ================== pf_relay (14 subtests) ==================
[04:33:30] [PASSED] pf_rejects_guc2pf_too_short
[04:33:30] [PASSED] pf_rejects_guc2pf_too_long
[04:33:30] [PASSED] pf_rejects_guc2pf_no_payload
[04:33:30] [PASSED] pf_fails_no_payload
[04:33:30] [PASSED] pf_fails_bad_origin
[04:33:30] [PASSED] pf_fails_bad_type
[04:33:30] [PASSED] pf_txn_reports_error
[04:33:30] [PASSED] pf_txn_sends_pf2guc
[04:33:30] [PASSED] pf_sends_pf2guc
[04:33:30] [SKIPPED] pf_loopback_nop
[04:33:30] [SKIPPED] pf_loopback_echo
[04:33:30] [SKIPPED] pf_loopback_fail
[04:33:30] [SKIPPED] pf_loopback_busy
[04:33:30] [SKIPPED] pf_loopback_retry
[04:33:30] ==================== [PASSED] pf_relay =====================
[04:33:30] ================== vf_relay (3 subtests) ===================
[04:33:30] [PASSED] vf_rejects_guc2vf_too_short
[04:33:30] [PASSED] vf_rejects_guc2vf_too_long
[04:33:30] [PASSED] vf_rejects_guc2vf_no_payload
[04:33:30] ==================== [PASSED] vf_relay =====================
[04:33:30] ================ pf_gt_config (9 subtests) =================
[04:33:30] [PASSED] fair_contexts_1vf
[04:33:30] [PASSED] fair_doorbells_1vf
[04:33:30] [PASSED] fair_ggtt_1vf
[04:33:30] ====================== fair_vram_1vf ======================
[04:33:30] [PASSED] 3.50 GiB
[04:33:30] [PASSED] 11.5 GiB
[04:33:30] [PASSED] 15.5 GiB
[04:33:30] [PASSED] 31.5 GiB
[04:33:30] [PASSED] 63.5 GiB
[04:33:30] [PASSED] 1.91 GiB
[04:33:30] ================== [PASSED] fair_vram_1vf ==================
[04:33:30] ================ fair_vram_1vf_admin_only =================
[04:33:30] [PASSED] 3.50 GiB
[04:33:30] [PASSED] 11.5 GiB
[04:33:30] [PASSED] 15.5 GiB
[04:33:30] [PASSED] 31.5 GiB
[04:33:30] [PASSED] 63.5 GiB
[04:33:30] [PASSED] 1.91 GiB
[04:33:30] ============ [PASSED] fair_vram_1vf_admin_only =============
[04:33:30] ====================== fair_contexts ======================
[04:33:30] [PASSED] 1 VF
[04:33:30] [PASSED] 2 VFs
[04:33:30] [PASSED] 3 VFs
[04:33:30] [PASSED] 4 VFs
[04:33:30] [PASSED] 5 VFs
[04:33:30] [PASSED] 6 VFs
[04:33:30] [PASSED] 7 VFs
[04:33:30] [PASSED] 8 VFs
[04:33:30] [PASSED] 9 VFs
[04:33:30] [PASSED] 10 VFs
[04:33:30] [PASSED] 11 VFs
[04:33:30] [PASSED] 12 VFs
[04:33:30] [PASSED] 13 VFs
[04:33:30] [PASSED] 14 VFs
[04:33:30] [PASSED] 15 VFs
[04:33:30] [PASSED] 16 VFs
[04:33:30] [PASSED] 17 VFs
[04:33:30] [PASSED] 18 VFs
[04:33:30] [PASSED] 19 VFs
[04:33:30] [PASSED] 20 VFs
[04:33:30] [PASSED] 21 VFs
[04:33:30] [PASSED] 22 VFs
[04:33:30] [PASSED] 23 VFs
[04:33:30] [PASSED] 24 VFs
[04:33:30] [PASSED] 25 VFs
[04:33:30] [PASSED] 26 VFs
[04:33:30] [PASSED] 27 VFs
[04:33:31] [PASSED] 28 VFs
[04:33:31] [PASSED] 29 VFs
[04:33:31] [PASSED] 30 VFs
[04:33:31] [PASSED] 31 VFs
[04:33:31] [PASSED] 32 VFs
[04:33:31] [PASSED] 33 VFs
[04:33:31] [PASSED] 34 VFs
[04:33:31] [PASSED] 35 VFs
[04:33:31] [PASSED] 36 VFs
[04:33:31] [PASSED] 37 VFs
[04:33:31] [PASSED] 38 VFs
[04:33:31] [PASSED] 39 VFs
[04:33:31] [PASSED] 40 VFs
[04:33:31] [PASSED] 41 VFs
[04:33:31] [PASSED] 42 VFs
[04:33:31] [PASSED] 43 VFs
[04:33:31] [PASSED] 44 VFs
[04:33:31] [PASSED] 45 VFs
[04:33:31] [PASSED] 46 VFs
[04:33:31] [PASSED] 47 VFs
[04:33:31] [PASSED] 48 VFs
[04:33:31] [PASSED] 49 VFs
[04:33:31] [PASSED] 50 VFs
[04:33:31] [PASSED] 51 VFs
[04:33:31] [PASSED] 52 VFs
[04:33:31] [PASSED] 53 VFs
[04:33:31] [PASSED] 54 VFs
[04:33:31] [PASSED] 55 VFs
[04:33:31] [PASSED] 56 VFs
[04:33:31] [PASSED] 57 VFs
[04:33:31] [PASSED] 58 VFs
[04:33:31] [PASSED] 59 VFs
[04:33:31] [PASSED] 60 VFs
[04:33:31] [PASSED] 61 VFs
[04:33:31] [PASSED] 62 VFs
[04:33:31] [PASSED] 63 VFs
[04:33:31] ================== [PASSED] fair_contexts ==================
[04:33:31] ===================== fair_doorbells ======================
[04:33:31] [PASSED] 1 VF
[04:33:31] [PASSED] 2 VFs
[04:33:31] [PASSED] 3 VFs
[04:33:31] [PASSED] 4 VFs
[04:33:31] [PASSED] 5 VFs
[04:33:31] [PASSED] 6 VFs
[04:33:31] [PASSED] 7 VFs
[04:33:31] [PASSED] 8 VFs
[04:33:31] [PASSED] 9 VFs
[04:33:31] [PASSED] 10 VFs
[04:33:31] [PASSED] 11 VFs
[04:33:31] [PASSED] 12 VFs
[04:33:31] [PASSED] 13 VFs
[04:33:31] [PASSED] 14 VFs
[04:33:31] [PASSED] 15 VFs
[04:33:31] [PASSED] 16 VFs
[04:33:31] [PASSED] 17 VFs
[04:33:31] [PASSED] 18 VFs
[04:33:31] [PASSED] 19 VFs
[04:33:31] [PASSED] 20 VFs
[04:33:31] [PASSED] 21 VFs
[04:33:31] [PASSED] 22 VFs
[04:33:31] [PASSED] 23 VFs
[04:33:31] [PASSED] 24 VFs
[04:33:31] [PASSED] 25 VFs
[04:33:31] [PASSED] 26 VFs
[04:33:31] [PASSED] 27 VFs
[04:33:31] [PASSED] 28 VFs
[04:33:31] [PASSED] 29 VFs
[04:33:31] [PASSED] 30 VFs
[04:33:31] [PASSED] 31 VFs
[04:33:31] [PASSED] 32 VFs
[04:33:31] [PASSED] 33 VFs
[04:33:31] [PASSED] 34 VFs
[04:33:31] [PASSED] 35 VFs
[04:33:31] [PASSED] 36 VFs
[04:33:31] [PASSED] 37 VFs
[04:33:31] [PASSED] 38 VFs
[04:33:31] [PASSED] 39 VFs
[04:33:31] [PASSED] 40 VFs
[04:33:31] [PASSED] 41 VFs
[04:33:31] [PASSED] 42 VFs
[04:33:31] [PASSED] 43 VFs
[04:33:31] [PASSED] 44 VFs
[04:33:31] [PASSED] 45 VFs
[04:33:31] [PASSED] 46 VFs
[04:33:31] [PASSED] 47 VFs
[04:33:31] [PASSED] 48 VFs
[04:33:31] [PASSED] 49 VFs
[04:33:31] [PASSED] 50 VFs
[04:33:31] [PASSED] 51 VFs
[04:33:31] [PASSED] 52 VFs
[04:33:31] [PASSED] 53 VFs
[04:33:31] [PASSED] 54 VFs
[04:33:31] [PASSED] 55 VFs
[04:33:31] [PASSED] 56 VFs
[04:33:31] [PASSED] 57 VFs
[04:33:31] [PASSED] 58 VFs
[04:33:31] [PASSED] 59 VFs
[04:33:31] [PASSED] 60 VFs
[04:33:31] [PASSED] 61 VFs
[04:33:31] [PASSED] 62 VFs
[04:33:31] [PASSED] 63 VFs
[04:33:31] ================= [PASSED] fair_doorbells ==================
[04:33:31] ======================== fair_ggtt ========================
[04:33:31] [PASSED] 1 VF
[04:33:31] [PASSED] 2 VFs
[04:33:31] [PASSED] 3 VFs
[04:33:31] [PASSED] 4 VFs
[04:33:31] [PASSED] 5 VFs
[04:33:31] [PASSED] 6 VFs
[04:33:31] [PASSED] 7 VFs
[04:33:31] [PASSED] 8 VFs
[04:33:31] [PASSED] 9 VFs
[04:33:31] [PASSED] 10 VFs
[04:33:31] [PASSED] 11 VFs
[04:33:31] [PASSED] 12 VFs
[04:33:31] [PASSED] 13 VFs
[04:33:31] [PASSED] 14 VFs
[04:33:31] [PASSED] 15 VFs
[04:33:31] [PASSED] 16 VFs
[04:33:31] [PASSED] 17 VFs
[04:33:31] [PASSED] 18 VFs
[04:33:31] [PASSED] 19 VFs
[04:33:31] [PASSED] 20 VFs
[04:33:31] [PASSED] 21 VFs
[04:33:31] [PASSED] 22 VFs
[04:33:31] [PASSED] 23 VFs
[04:33:31] [PASSED] 24 VFs
[04:33:31] [PASSED] 25 VFs
[04:33:31] [PASSED] 26 VFs
[04:33:31] [PASSED] 27 VFs
[04:33:31] [PASSED] 28 VFs
[04:33:31] [PASSED] 29 VFs
[04:33:31] [PASSED] 30 VFs
[04:33:31] [PASSED] 31 VFs
[04:33:31] [PASSED] 32 VFs
[04:33:31] [PASSED] 33 VFs
[04:33:31] [PASSED] 34 VFs
[04:33:31] [PASSED] 35 VFs
[04:33:31] [PASSED] 36 VFs
[04:33:31] [PASSED] 37 VFs
[04:33:31] [PASSED] 38 VFs
[04:33:31] [PASSED] 39 VFs
[04:33:31] [PASSED] 40 VFs
[04:33:31] [PASSED] 41 VFs
[04:33:31] [PASSED] 42 VFs
[04:33:31] [PASSED] 43 VFs
[04:33:31] [PASSED] 44 VFs
[04:33:31] [PASSED] 45 VFs
[04:33:31] [PASSED] 46 VFs
[04:33:31] [PASSED] 47 VFs
[04:33:31] [PASSED] 48 VFs
[04:33:31] [PASSED] 49 VFs
[04:33:31] [PASSED] 50 VFs
[04:33:31] [PASSED] 51 VFs
[04:33:31] [PASSED] 52 VFs
[04:33:31] [PASSED] 53 VFs
[04:33:31] [PASSED] 54 VFs
[04:33:31] [PASSED] 55 VFs
[04:33:31] [PASSED] 56 VFs
[04:33:31] [PASSED] 57 VFs
[04:33:31] [PASSED] 58 VFs
[04:33:31] [PASSED] 59 VFs
[04:33:31] [PASSED] 60 VFs
[04:33:31] [PASSED] 61 VFs
[04:33:31] [PASSED] 62 VFs
[04:33:31] [PASSED] 63 VFs
[04:33:31] ==================== [PASSED] fair_ggtt ====================
[04:33:31] ======================== fair_vram ========================
[04:33:31] [PASSED] 1 VF
[04:33:31] [PASSED] 2 VFs
[04:33:31] [PASSED] 3 VFs
[04:33:31] [PASSED] 4 VFs
[04:33:31] [PASSED] 5 VFs
[04:33:31] [PASSED] 6 VFs
[04:33:31] [PASSED] 7 VFs
[04:33:31] [PASSED] 8 VFs
[04:33:31] [PASSED] 9 VFs
[04:33:31] [PASSED] 10 VFs
[04:33:31] [PASSED] 11 VFs
[04:33:31] [PASSED] 12 VFs
[04:33:31] [PASSED] 13 VFs
[04:33:31] [PASSED] 14 VFs
[04:33:31] [PASSED] 15 VFs
[04:33:31] [PASSED] 16 VFs
[04:33:31] [PASSED] 17 VFs
[04:33:31] [PASSED] 18 VFs
[04:33:31] [PASSED] 19 VFs
[04:33:31] [PASSED] 20 VFs
[04:33:31] [PASSED] 21 VFs
[04:33:31] [PASSED] 22 VFs
[04:33:31] [PASSED] 23 VFs
[04:33:31] [PASSED] 24 VFs
[04:33:31] [PASSED] 25 VFs
[04:33:31] [PASSED] 26 VFs
[04:33:31] [PASSED] 27 VFs
[04:33:31] [PASSED] 28 VFs
[04:33:31] [PASSED] 29 VFs
[04:33:31] [PASSED] 30 VFs
[04:33:31] [PASSED] 31 VFs
[04:33:31] [PASSED] 32 VFs
[04:33:31] [PASSED] 33 VFs
[04:33:31] [PASSED] 34 VFs
[04:33:31] [PASSED] 35 VFs
[04:33:31] [PASSED] 36 VFs
[04:33:31] [PASSED] 37 VFs
[04:33:31] [PASSED] 38 VFs
[04:33:31] [PASSED] 39 VFs
[04:33:31] [PASSED] 40 VFs
[04:33:31] [PASSED] 41 VFs
[04:33:31] [PASSED] 42 VFs
[04:33:31] [PASSED] 43 VFs
[04:33:31] [PASSED] 44 VFs
[04:33:31] [PASSED] 45 VFs
[04:33:31] [PASSED] 46 VFs
[04:33:31] [PASSED] 47 VFs
[04:33:31] [PASSED] 48 VFs
[04:33:31] [PASSED] 49 VFs
[04:33:31] [PASSED] 50 VFs
[04:33:31] [PASSED] 51 VFs
[04:33:31] [PASSED] 52 VFs
[04:33:31] [PASSED] 53 VFs
[04:33:31] [PASSED] 54 VFs
[04:33:31] [PASSED] 55 VFs
[04:33:31] [PASSED] 56 VFs
[04:33:31] [PASSED] 57 VFs
[04:33:31] [PASSED] 58 VFs
[04:33:31] [PASSED] 59 VFs
[04:33:31] [PASSED] 60 VFs
[04:33:31] [PASSED] 61 VFs
[04:33:31] [PASSED] 62 VFs
[04:33:31] [PASSED] 63 VFs
[04:33:31] ==================== [PASSED] fair_vram ====================
[04:33:31] ================== [PASSED] pf_gt_config ===================
[04:33:31] ===================== lmtt (1 subtest) =====================
[04:33:31] ======================== test_ops =========================
[04:33:31] [PASSED] 2-level
[04:33:31] [PASSED] multi-level
[04:33:31] ==================== [PASSED] test_ops =====================
[04:33:31] ====================== [PASSED] lmtt =======================
[04:33:31] ================= pf_service (11 subtests) =================
[04:33:31] [PASSED] pf_negotiate_any
[04:33:31] [PASSED] pf_negotiate_base_match
[04:33:31] [PASSED] pf_negotiate_base_newer
[04:33:31] [PASSED] pf_negotiate_base_next
[04:33:31] [SKIPPED] pf_negotiate_base_older
[04:33:31] [PASSED] pf_negotiate_base_prev
[04:33:31] [PASSED] pf_negotiate_latest_match
[04:33:31] [PASSED] pf_negotiate_latest_newer
[04:33:31] [PASSED] pf_negotiate_latest_next
[04:33:31] [SKIPPED] pf_negotiate_latest_older
[04:33:31] [SKIPPED] pf_negotiate_latest_prev
[04:33:31] =================== [PASSED] pf_service ====================
[04:33:31] ================= xe_guc_g2g (2 subtests) ==================
[04:33:31] ============== xe_live_guc_g2g_kunit_default ==============
[04:33:31] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[04:33:31] ============== xe_live_guc_g2g_kunit_allmem ===============
[04:33:31] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[04:33:31] =================== [SKIPPED] xe_guc_g2g ===================
[04:33:31] =================== xe_mocs (2 subtests) ===================
[04:33:31] ================ xe_live_mocs_kernel_kunit ================
[04:33:31] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:33:31] ================ xe_live_mocs_reset_kunit =================
[04:33:31] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:33:31] ==================== [SKIPPED] xe_mocs =====================
[04:33:31] ================= xe_migrate (2 subtests) ==================
[04:33:31] ================= xe_migrate_sanity_kunit =================
[04:33:31] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:33:31] ================== xe_validate_ccs_kunit ==================
[04:33:31] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:33:31] =================== [SKIPPED] xe_migrate ===================
[04:33:31] ================== xe_dma_buf (1 subtest) ==================
[04:33:31] ==================== xe_dma_buf_kunit =====================
[04:33:31] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:33:31] =================== [SKIPPED] xe_dma_buf ===================
[04:33:31] ================= xe_bo_shrink (1 subtest) =================
[04:33:31] =================== xe_bo_shrink_kunit ====================
[04:33:31] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:33:31] ================== [SKIPPED] xe_bo_shrink ==================
[04:33:31] ==================== xe_bo (2 subtests) ====================
[04:33:31] ================== xe_ccs_migrate_kunit ===================
[04:33:31] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:33:31] ==================== xe_bo_evict_kunit ====================
[04:33:31] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:33:31] ===================== [SKIPPED] xe_bo ======================
[04:33:31] ==================== args (13 subtests) ====================
[04:33:31] [PASSED] count_args_test
[04:33:31] [PASSED] call_args_example
[04:33:31] [PASSED] call_args_test
[04:33:31] [PASSED] drop_first_arg_example
[04:33:31] [PASSED] drop_first_arg_test
[04:33:31] [PASSED] first_arg_example
[04:33:31] [PASSED] first_arg_test
[04:33:31] [PASSED] last_arg_example
[04:33:31] [PASSED] last_arg_test
[04:33:31] [PASSED] pick_arg_example
[04:33:31] [PASSED] if_args_example
[04:33:31] [PASSED] if_args_test
[04:33:31] [PASSED] sep_comma_example
[04:33:31] ====================== [PASSED] args =======================
[04:33:31] =================== xe_pci (3 subtests) ====================
[04:33:31] ==================== check_graphics_ip ====================
[04:33:31] [PASSED] 12.00 Xe_LP
[04:33:31] [PASSED] 12.10 Xe_LP+
[04:33:31] [PASSED] 12.55 Xe_HPG
[04:33:31] [PASSED] 12.60 Xe_HPC
[04:33:31] [PASSED] 12.70 Xe_LPG
[04:33:31] [PASSED] 12.71 Xe_LPG
[04:33:31] [PASSED] 12.74 Xe_LPG+
[04:33:31] [PASSED] 20.01 Xe2_HPG
[04:33:31] [PASSED] 20.02 Xe2_HPG
[04:33:31] [PASSED] 20.04 Xe2_LPG
[04:33:31] [PASSED] 30.00 Xe3_LPG
[04:33:31] [PASSED] 30.01 Xe3_LPG
[04:33:31] [PASSED] 30.03 Xe3_LPG
[04:33:31] [PASSED] 30.04 Xe3_LPG
[04:33:31] [PASSED] 30.05 Xe3_LPG
[04:33:31] [PASSED] 35.10 Xe3p_LPG
[04:33:31] [PASSED] 35.11 Xe3p_XPC
[04:33:31] ================ [PASSED] check_graphics_ip ================
[04:33:31] ===================== check_media_ip ======================
[04:33:31] [PASSED] 12.00 Xe_M
[04:33:31] [PASSED] 12.55 Xe_HPM
[04:33:31] [PASSED] 13.00 Xe_LPM+
[04:33:31] [PASSED] 13.01 Xe2_HPM
[04:33:31] [PASSED] 20.00 Xe2_LPM
[04:33:31] [PASSED] 30.00 Xe3_LPM
[04:33:31] [PASSED] 30.02 Xe3_LPM
[04:33:31] [PASSED] 35.00 Xe3p_LPM
[04:33:31] [PASSED] 35.03 Xe3p_HPM
[04:33:31] ================= [PASSED] check_media_ip ==================
[04:33:31] =================== check_platform_desc ===================
[04:33:31] [PASSED] 0x9A60 (TIGERLAKE)
[04:33:31] [PASSED] 0x9A68 (TIGERLAKE)
[04:33:31] [PASSED] 0x9A70 (TIGERLAKE)
[04:33:31] [PASSED] 0x9A40 (TIGERLAKE)
[04:33:31] [PASSED] 0x9A49 (TIGERLAKE)
[04:33:31] [PASSED] 0x9A59 (TIGERLAKE)
[04:33:31] [PASSED] 0x9A78 (TIGERLAKE)
[04:33:31] [PASSED] 0x9AC0 (TIGERLAKE)
[04:33:31] [PASSED] 0x9AC9 (TIGERLAKE)
[04:33:31] [PASSED] 0x9AD9 (TIGERLAKE)
[04:33:31] [PASSED] 0x9AF8 (TIGERLAKE)
[04:33:31] [PASSED] 0x4C80 (ROCKETLAKE)
[04:33:31] [PASSED] 0x4C8A (ROCKETLAKE)
[04:33:31] [PASSED] 0x4C8B (ROCKETLAKE)
[04:33:31] [PASSED] 0x4C8C (ROCKETLAKE)
[04:33:31] [PASSED] 0x4C90 (ROCKETLAKE)
[04:33:31] [PASSED] 0x4C9A (ROCKETLAKE)
[04:33:31] [PASSED] 0x4680 (ALDERLAKE_S)
[04:33:31] [PASSED] 0x4682 (ALDERLAKE_S)
[04:33:31] [PASSED] 0x4688 (ALDERLAKE_S)
[04:33:31] [PASSED] 0x468A (ALDERLAKE_S)
[04:33:31] [PASSED] 0x468B (ALDERLAKE_S)
[04:33:31] [PASSED] 0x4690 (ALDERLAKE_S)
[04:33:31] [PASSED] 0x4692 (ALDERLAKE_S)
[04:33:31] [PASSED] 0x4693 (ALDERLAKE_S)
[04:33:31] [PASSED] 0x46A0 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46A1 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46A2 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46A3 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46A6 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46A8 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46AA (ALDERLAKE_P)
[04:33:31] [PASSED] 0x462A (ALDERLAKE_P)
[04:33:31] [PASSED] 0x4626 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x4628 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46B0 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46B1 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46B2 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46B3 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46C0 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46C1 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46C2 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46C3 (ALDERLAKE_P)
[04:33:31] [PASSED] 0x46D0 (ALDERLAKE_N)
[04:33:31] [PASSED] 0x46D1 (ALDERLAKE_N)
[04:33:31] [PASSED] 0x46D2 (ALDERLAKE_N)
[04:33:31] [PASSED] 0x46D3 (ALDERLAKE_N)
[04:33:31] [PASSED] 0x46D4 (ALDERLAKE_N)
[04:33:31] [PASSED] 0xA721 (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7A1 (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7A9 (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7AC (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7AD (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA720 (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7A0 (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7A8 (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7AA (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA7AB (ALDERLAKE_P)
[04:33:31] [PASSED] 0xA780 (ALDERLAKE_S)
[04:33:31] [PASSED] 0xA781 (ALDERLAKE_S)
[04:33:31] [PASSED] 0xA782 (ALDERLAKE_S)
[04:33:31] [PASSED] 0xA783 (ALDERLAKE_S)
[04:33:31] [PASSED] 0xA788 (ALDERLAKE_S)
[04:33:31] [PASSED] 0xA789 (ALDERLAKE_S)
[04:33:31] [PASSED] 0xA78A (ALDERLAKE_S)
[04:33:31] [PASSED] 0xA78B (ALDERLAKE_S)
[04:33:31] [PASSED] 0x4905 (DG1)
[04:33:31] [PASSED] 0x4906 (DG1)
[04:33:31] [PASSED] 0x4907 (DG1)
[04:33:31] [PASSED] 0x4908 (DG1)
[04:33:31] [PASSED] 0x4909 (DG1)
[04:33:31] [PASSED] 0x56C0 (DG2)
[04:33:31] [PASSED] 0x56C2 (DG2)
[04:33:31] [PASSED] 0x56C1 (DG2)
[04:33:31] [PASSED] 0x7D51 (METEORLAKE)
[04:33:31] [PASSED] 0x7DD1 (METEORLAKE)
[04:33:31] [PASSED] 0x7D41 (METEORLAKE)
[04:33:31] [PASSED] 0x7D67 (METEORLAKE)
[04:33:31] [PASSED] 0xB640 (METEORLAKE)
[04:33:31] [PASSED] 0x56A0 (DG2)
[04:33:31] [PASSED] 0x56A1 (DG2)
[04:33:31] [PASSED] 0x56A2 (DG2)
[04:33:31] [PASSED] 0x56BE (DG2)
[04:33:31] [PASSED] 0x56BF (DG2)
[04:33:31] [PASSED] 0x5690 (DG2)
[04:33:31] [PASSED] 0x5691 (DG2)
[04:33:31] [PASSED] 0x5692 (DG2)
[04:33:31] [PASSED] 0x56A5 (DG2)
[04:33:31] [PASSED] 0x56A6 (DG2)
[04:33:31] [PASSED] 0x56B0 (DG2)
[04:33:31] [PASSED] 0x56B1 (DG2)
[04:33:31] [PASSED] 0x56BA (DG2)
[04:33:31] [PASSED] 0x56BB (DG2)
[04:33:31] [PASSED] 0x56BC (DG2)
[04:33:31] [PASSED] 0x56BD (DG2)
[04:33:31] [PASSED] 0x5693 (DG2)
[04:33:31] [PASSED] 0x5694 (DG2)
[04:33:31] [PASSED] 0x5695 (DG2)
[04:33:31] [PASSED] 0x56A3 (DG2)
[04:33:31] [PASSED] 0x56A4 (DG2)
[04:33:31] [PASSED] 0x56B2 (DG2)
[04:33:31] [PASSED] 0x56B3 (DG2)
[04:33:31] [PASSED] 0x5696 (DG2)
[04:33:31] [PASSED] 0x5697 (DG2)
[04:33:31] [PASSED] 0xB69 (PVC)
[04:33:31] [PASSED] 0xB6E (PVC)
[04:33:31] [PASSED] 0xBD4 (PVC)
[04:33:31] [PASSED] 0xBD5 (PVC)
[04:33:31] [PASSED] 0xBD6 (PVC)
[04:33:31] [PASSED] 0xBD7 (PVC)
[04:33:31] [PASSED] 0xBD8 (PVC)
[04:33:31] [PASSED] 0xBD9 (PVC)
[04:33:31] [PASSED] 0xBDA (PVC)
[04:33:31] [PASSED] 0xBDB (PVC)
[04:33:31] [PASSED] 0xBE0 (PVC)
[04:33:31] [PASSED] 0xBE1 (PVC)
[04:33:31] [PASSED] 0xBE5 (PVC)
[04:33:31] [PASSED] 0x7D40 (METEORLAKE)
[04:33:31] [PASSED] 0x7D45 (METEORLAKE)
[04:33:31] [PASSED] 0x7D55 (METEORLAKE)
[04:33:31] [PASSED] 0x7D60 (METEORLAKE)
[04:33:31] [PASSED] 0x7DD5 (METEORLAKE)
[04:33:31] [PASSED] 0x6420 (LUNARLAKE)
[04:33:31] [PASSED] 0x64A0 (LUNARLAKE)
[04:33:31] [PASSED] 0x64B0 (LUNARLAKE)
[04:33:31] [PASSED] 0xE202 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE209 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE20B (BATTLEMAGE)
[04:33:31] [PASSED] 0xE20C (BATTLEMAGE)
[04:33:31] [PASSED] 0xE20D (BATTLEMAGE)
[04:33:31] [PASSED] 0xE210 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE211 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE212 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE216 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE220 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE221 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE222 (BATTLEMAGE)
[04:33:31] [PASSED] 0xE223 (BATTLEMAGE)
[04:33:31] [PASSED] 0xB080 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB081 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB082 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB083 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB084 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB085 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB086 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB087 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB08F (PANTHERLAKE)
[04:33:31] [PASSED] 0xB090 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB0A0 (PANTHERLAKE)
[04:33:31] [PASSED] 0xB0B0 (PANTHERLAKE)
[04:33:31] [PASSED] 0xFD80 (PANTHERLAKE)
[04:33:31] [PASSED] 0xFD81 (PANTHERLAKE)
[04:33:31] [PASSED] 0xD740 (NOVALAKE_S)
[04:33:31] [PASSED] 0xD741 (NOVALAKE_S)
[04:33:31] [PASSED] 0xD742 (NOVALAKE_S)
[04:33:31] [PASSED] 0xD743 (NOVALAKE_S)
[04:33:31] [PASSED] 0xD744 (NOVALAKE_S)
[04:33:31] [PASSED] 0xD745 (NOVALAKE_S)
[04:33:31] [PASSED] 0x674C (CRESCENTISLAND)
[04:33:31] [PASSED] 0xD750 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD751 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD752 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD753 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD754 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD755 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD756 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD757 (NOVALAKE_P)
[04:33:31] [PASSED] 0xD75F (NOVALAKE_P)
[04:33:31] =============== [PASSED] check_platform_desc ===============
[04:33:31] ===================== [PASSED] xe_pci ======================
[04:33:31] =================== xe_rtp (2 subtests) ====================
[04:33:31] =============== xe_rtp_process_to_sr_tests ================
[04:33:31] [PASSED] coalesce-same-reg
[04:33:31] [PASSED] no-match-no-add
[04:33:31] [PASSED] match-or
[04:33:31] [PASSED] match-or-xfail
[04:33:31] [PASSED] no-match-no-add-multiple-rules
[04:33:31] [PASSED] two-regs-two-entries
[04:33:31] [PASSED] clr-one-set-other
[04:33:31] [PASSED] set-field
[04:33:31] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[04:33:31] [PASSED] conflict-not-disjoint
[04:33:31] [PASSED] conflict-reg-type
[04:33:31] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:33:31] ================== xe_rtp_process_tests ===================
[04:33:31] [PASSED] active1
[04:33:31] [PASSED] active2
[04:33:31] [PASSED] active-inactive
[04:33:31] [PASSED] inactive-active
[04:33:31] [PASSED] inactive-1st_or_active-inactive
[04:33:31] [PASSED] inactive-2nd_or_active-inactive
[04:33:31] [PASSED] inactive-last_or_active-inactive
[04:33:31] [PASSED] inactive-no_or_active-inactive
[04:33:31] ============== [PASSED] xe_rtp_process_tests ===============
[04:33:31] ===================== [PASSED] xe_rtp ======================
[04:33:31] ==================== xe_wa (1 subtest) =====================
[04:33:31] ======================== xe_wa_gt =========================
[04:33:31] [PASSED] TIGERLAKE B0
[04:33:31] [PASSED] DG1 A0
[04:33:31] [PASSED] DG1 B0
[04:33:31] [PASSED] ALDERLAKE_S A0
[04:33:31] [PASSED] ALDERLAKE_S B0
[04:33:31] [PASSED] ALDERLAKE_S C0
[04:33:31] [PASSED] ALDERLAKE_S D0
[04:33:31] [PASSED] ALDERLAKE_P A0
[04:33:31] [PASSED] ALDERLAKE_P B0
[04:33:31] [PASSED] ALDERLAKE_P C0
[04:33:31] [PASSED] ALDERLAKE_S RPLS D0
[04:33:31] [PASSED] ALDERLAKE_P RPLU E0
[04:33:31] [PASSED] DG2 G10 C0
[04:33:31] [PASSED] DG2 G11 B1
[04:33:31] [PASSED] DG2 G12 A1
[04:33:31] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:33:31] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:33:31] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[04:33:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[04:33:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[04:33:31] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[04:33:31] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[04:33:31] ==================== [PASSED] xe_wa_gt =====================
[04:33:31] ====================== [PASSED] xe_wa ======================
[04:33:31] ============================================================
[04:33:31] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[04:33:31] Elapsed time: 36.490s total, 4.254s configuring, 31.619s building, 0.606s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[04:33:31] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:33:33] 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
[04:33:57] Starting KUnit Kernel (1/1)...
[04:33:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:33:57] ============ drm_test_pick_cmdline (2 subtests) ============
[04:33:57] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[04:33:57] =============== drm_test_pick_cmdline_named ===============
[04:33:57] [PASSED] NTSC
[04:33:57] [PASSED] NTSC-J
[04:33:57] [PASSED] PAL
[04:33:57] [PASSED] PAL-M
[04:33:57] =========== [PASSED] drm_test_pick_cmdline_named ===========
[04:33:57] ============== [PASSED] drm_test_pick_cmdline ==============
[04:33:57] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[04:33:57] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[04:33:57] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[04:33:57] =========== drm_validate_clone_mode (2 subtests) ===========
[04:33:57] ============== drm_test_check_in_clone_mode ===============
[04:33:57] [PASSED] in_clone_mode
[04:33:57] [PASSED] not_in_clone_mode
[04:33:57] ========== [PASSED] drm_test_check_in_clone_mode ===========
[04:33:57] =============== drm_test_check_valid_clones ===============
[04:33:57] [PASSED] not_in_clone_mode
[04:33:57] [PASSED] valid_clone
[04:33:57] [PASSED] invalid_clone
[04:33:57] =========== [PASSED] drm_test_check_valid_clones ===========
[04:33:57] ============= [PASSED] drm_validate_clone_mode =============
[04:33:57] ============= drm_validate_modeset (1 subtest) =============
[04:33:57] [PASSED] drm_test_check_connector_changed_modeset
[04:33:57] ============== [PASSED] drm_validate_modeset ===============
[04:33:57] ====== drm_test_bridge_get_current_state (2 subtests) ======
[04:33:57] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[04:33:57] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[04:33:57] ======== [PASSED] drm_test_bridge_get_current_state ========
[04:33:57] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[04:33:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[04:33:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[04:33:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[04:33:57] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[04:33:57] ============== drm_bridge_alloc (2 subtests) ===============
[04:33:57] [PASSED] drm_test_drm_bridge_alloc_basic
[04:33:57] [PASSED] drm_test_drm_bridge_alloc_get_put
[04:33:57] ================ [PASSED] drm_bridge_alloc =================
[04:33:57] ============= drm_cmdline_parser (40 subtests) =============
[04:33:57] [PASSED] drm_test_cmdline_force_d_only
[04:33:57] [PASSED] drm_test_cmdline_force_D_only_dvi
[04:33:57] [PASSED] drm_test_cmdline_force_D_only_hdmi
[04:33:57] [PASSED] drm_test_cmdline_force_D_only_not_digital
[04:33:57] [PASSED] drm_test_cmdline_force_e_only
[04:33:57] [PASSED] drm_test_cmdline_res
[04:33:57] [PASSED] drm_test_cmdline_res_vesa
[04:33:57] [PASSED] drm_test_cmdline_res_vesa_rblank
[04:33:57] [PASSED] drm_test_cmdline_res_rblank
[04:33:57] [PASSED] drm_test_cmdline_res_bpp
[04:33:57] [PASSED] drm_test_cmdline_res_refresh
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[04:33:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[04:33:57] [PASSED] drm_test_cmdline_res_margins_force_on
[04:33:57] [PASSED] drm_test_cmdline_res_vesa_margins
[04:33:57] [PASSED] drm_test_cmdline_name
[04:33:57] [PASSED] drm_test_cmdline_name_bpp
[04:33:57] [PASSED] drm_test_cmdline_name_option
[04:33:57] [PASSED] drm_test_cmdline_name_bpp_option
[04:33:57] [PASSED] drm_test_cmdline_rotate_0
[04:33:57] [PASSED] drm_test_cmdline_rotate_90
[04:33:57] [PASSED] drm_test_cmdline_rotate_180
[04:33:57] [PASSED] drm_test_cmdline_rotate_270
[04:33:57] [PASSED] drm_test_cmdline_hmirror
[04:33:57] [PASSED] drm_test_cmdline_vmirror
[04:33:57] [PASSED] drm_test_cmdline_margin_options
[04:33:57] [PASSED] drm_test_cmdline_multiple_options
[04:33:57] [PASSED] drm_test_cmdline_bpp_extra_and_option
[04:33:57] [PASSED] drm_test_cmdline_extra_and_option
[04:33:57] [PASSED] drm_test_cmdline_freestanding_options
[04:33:57] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[04:33:57] [PASSED] drm_test_cmdline_panel_orientation
[04:33:57] ================ drm_test_cmdline_invalid =================
[04:33:57] [PASSED] margin_only
[04:33:57] [PASSED] interlace_only
[04:33:57] [PASSED] res_missing_x
[04:33:57] [PASSED] res_missing_y
[04:33:57] [PASSED] res_bad_y
[04:33:57] [PASSED] res_missing_y_bpp
[04:33:57] [PASSED] res_bad_bpp
[04:33:57] [PASSED] res_bad_refresh
[04:33:57] [PASSED] res_bpp_refresh_force_on_off
[04:33:57] [PASSED] res_invalid_mode
[04:33:57] [PASSED] res_bpp_wrong_place_mode
[04:33:57] [PASSED] name_bpp_refresh
[04:33:57] [PASSED] name_refresh
[04:33:57] [PASSED] name_refresh_wrong_mode
[04:33:57] [PASSED] name_refresh_invalid_mode
[04:33:57] [PASSED] rotate_multiple
[04:33:57] [PASSED] rotate_invalid_val
[04:33:57] [PASSED] rotate_truncated
[04:33:57] [PASSED] invalid_option
[04:33:57] [PASSED] invalid_tv_option
[04:33:57] [PASSED] truncated_tv_option
[04:33:57] ============ [PASSED] drm_test_cmdline_invalid =============
[04:33:57] =============== drm_test_cmdline_tv_options ===============
[04:33:57] [PASSED] NTSC
[04:33:57] [PASSED] NTSC_443
[04:33:57] [PASSED] NTSC_J
[04:33:57] [PASSED] PAL
[04:33:57] [PASSED] PAL_M
[04:33:57] [PASSED] PAL_N
[04:33:57] [PASSED] SECAM
[04:33:57] [PASSED] MONO_525
[04:33:57] [PASSED] MONO_625
[04:33:57] =========== [PASSED] drm_test_cmdline_tv_options ===========
[04:33:57] =============== [PASSED] drm_cmdline_parser ================
[04:33:57] ========== drmm_connector_hdmi_init (20 subtests) ==========
[04:33:57] [PASSED] drm_test_connector_hdmi_init_valid
[04:33:57] [PASSED] drm_test_connector_hdmi_init_bpc_8
[04:33:57] [PASSED] drm_test_connector_hdmi_init_bpc_10
[04:33:57] [PASSED] drm_test_connector_hdmi_init_bpc_12
[04:33:57] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[04:33:57] [PASSED] drm_test_connector_hdmi_init_bpc_null
[04:33:57] [PASSED] drm_test_connector_hdmi_init_formats_empty
[04:33:57] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[04:33:57] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:33:57] [PASSED] supported_formats=0x9 yuv420_allowed=1
[04:33:57] [PASSED] supported_formats=0x9 yuv420_allowed=0
[04:33:57] [PASSED] supported_formats=0x5 yuv420_allowed=1
[04:33:57] [PASSED] supported_formats=0x5 yuv420_allowed=0
[04:33:57] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:33:57] [PASSED] drm_test_connector_hdmi_init_null_ddc
[04:33:57] [PASSED] drm_test_connector_hdmi_init_null_product
[04:33:57] [PASSED] drm_test_connector_hdmi_init_null_vendor
[04:33:57] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[04:33:57] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[04:33:57] [PASSED] drm_test_connector_hdmi_init_product_valid
[04:33:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[04:33:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[04:33:57] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[04:33:57] ========= drm_test_connector_hdmi_init_type_valid =========
[04:33:57] [PASSED] HDMI-A
[04:33:57] [PASSED] HDMI-B
[04:33:57] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[04:33:57] ======== drm_test_connector_hdmi_init_type_invalid ========
[04:33:57] [PASSED] Unknown
[04:33:57] [PASSED] VGA
[04:33:57] [PASSED] DVI-I
[04:33:57] [PASSED] DVI-D
[04:33:57] [PASSED] DVI-A
[04:33:57] [PASSED] Composite
[04:33:57] [PASSED] SVIDEO
[04:33:57] [PASSED] LVDS
[04:33:57] [PASSED] Component
[04:33:57] [PASSED] DIN
[04:33:57] [PASSED] DP
[04:33:57] [PASSED] TV
[04:33:57] [PASSED] eDP
[04:33:57] [PASSED] Virtual
[04:33:57] [PASSED] DSI
[04:33:57] [PASSED] DPI
[04:33:57] [PASSED] Writeback
[04:33:57] [PASSED] SPI
[04:33:57] [PASSED] USB
[04:33:57] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[04:33:57] ============ [PASSED] drmm_connector_hdmi_init =============
[04:33:57] ============= drmm_connector_init (3 subtests) =============
[04:33:57] [PASSED] drm_test_drmm_connector_init
[04:33:57] [PASSED] drm_test_drmm_connector_init_null_ddc
[04:33:57] ========= drm_test_drmm_connector_init_type_valid =========
[04:33:57] [PASSED] Unknown
[04:33:57] [PASSED] VGA
[04:33:57] [PASSED] DVI-I
[04:33:57] [PASSED] DVI-D
[04:33:57] [PASSED] DVI-A
[04:33:57] [PASSED] Composite
[04:33:57] [PASSED] SVIDEO
[04:33:57] [PASSED] LVDS
[04:33:57] [PASSED] Component
[04:33:57] [PASSED] DIN
[04:33:57] [PASSED] DP
[04:33:57] [PASSED] HDMI-A
[04:33:57] [PASSED] HDMI-B
[04:33:57] [PASSED] TV
[04:33:57] [PASSED] eDP
[04:33:57] [PASSED] Virtual
[04:33:57] [PASSED] DSI
[04:33:57] [PASSED] DPI
[04:33:57] [PASSED] Writeback
[04:33:57] [PASSED] SPI
[04:33:57] [PASSED] USB
[04:33:57] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[04:33:57] =============== [PASSED] drmm_connector_init ===============
[04:33:57] ========= drm_connector_dynamic_init (6 subtests) ==========
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_init
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_init_properties
[04:33:57] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[04:33:57] [PASSED] Unknown
[04:33:57] [PASSED] VGA
[04:33:57] [PASSED] DVI-I
[04:33:57] [PASSED] DVI-D
[04:33:57] [PASSED] DVI-A
[04:33:57] [PASSED] Composite
[04:33:57] [PASSED] SVIDEO
[04:33:57] [PASSED] LVDS
[04:33:57] [PASSED] Component
[04:33:57] [PASSED] DIN
[04:33:57] [PASSED] DP
[04:33:57] [PASSED] HDMI-A
[04:33:57] [PASSED] HDMI-B
[04:33:57] [PASSED] TV
[04:33:57] [PASSED] eDP
[04:33:57] [PASSED] Virtual
[04:33:57] [PASSED] DSI
[04:33:57] [PASSED] DPI
[04:33:57] [PASSED] Writeback
[04:33:57] [PASSED] SPI
[04:33:57] [PASSED] USB
[04:33:57] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[04:33:57] ======== drm_test_drm_connector_dynamic_init_name =========
[04:33:57] [PASSED] Unknown
[04:33:57] [PASSED] VGA
[04:33:57] [PASSED] DVI-I
[04:33:57] [PASSED] DVI-D
[04:33:57] [PASSED] DVI-A
[04:33:57] [PASSED] Composite
[04:33:57] [PASSED] SVIDEO
[04:33:57] [PASSED] LVDS
[04:33:57] [PASSED] Component
[04:33:57] [PASSED] DIN
[04:33:57] [PASSED] DP
[04:33:57] [PASSED] HDMI-A
[04:33:57] [PASSED] HDMI-B
[04:33:57] [PASSED] TV
[04:33:57] [PASSED] eDP
[04:33:57] [PASSED] Virtual
[04:33:57] [PASSED] DSI
[04:33:57] [PASSED] DPI
[04:33:57] [PASSED] Writeback
[04:33:57] [PASSED] SPI
[04:33:57] [PASSED] USB
[04:33:57] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[04:33:57] =========== [PASSED] drm_connector_dynamic_init ============
[04:33:57] ==== drm_connector_dynamic_register_early (4 subtests) =====
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[04:33:57] ====== [PASSED] drm_connector_dynamic_register_early =======
[04:33:57] ======= drm_connector_dynamic_register (7 subtests) ========
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[04:33:57] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[04:33:57] ========= [PASSED] drm_connector_dynamic_register ==========
[04:33:57] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[04:33:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[04:33:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[04:33:57] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[04:33:57] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[04:33:57] ========== drm_test_get_tv_mode_from_name_valid ===========
[04:33:57] [PASSED] NTSC
[04:33:57] [PASSED] NTSC-443
[04:33:57] [PASSED] NTSC-J
[04:33:57] [PASSED] PAL
[04:33:57] [PASSED] PAL-M
[04:33:57] [PASSED] PAL-N
[04:33:57] [PASSED] SECAM
[04:33:57] [PASSED] Mono
[04:33:57] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[04:33:57] [PASSED] drm_test_get_tv_mode_from_name_truncated
[04:33:57] ============ [PASSED] drm_get_tv_mode_from_name ============
[04:33:57] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[04:33:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[04:33:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[04:33:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[04:33:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[04:33:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[04:33:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[04:33:57] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[04:33:57] [PASSED] VIC 96
[04:33:57] [PASSED] VIC 97
[04:33:57] [PASSED] VIC 101
[04:33:57] [PASSED] VIC 102
[04:33:57] [PASSED] VIC 106
[04:33:57] [PASSED] VIC 107
[04:33:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[04:33:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[04:33:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[04:33:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[04:33:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[04:33:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[04:33:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[04:33:57] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[04:33:57] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[04:33:57] [PASSED] Automatic
[04:33:57] [PASSED] Full
[04:33:57] [PASSED] Limited 16:235
[04:33:57] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[04:33:57] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[04:33:57] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[04:33:57] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[04:33:57] === drm_test_drm_hdmi_connector_get_output_format_name ====
[04:33:57] [PASSED] RGB
[04:33:57] [PASSED] YUV 4:2:0
[04:33:57] [PASSED] YUV 4:2:2
[04:33:57] [PASSED] YUV 4:4:4
[04:33:57] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[04:33:57] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[04:33:57] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[04:33:57] ============= drm_damage_helper (21 subtests) ==============
[04:33:57] [PASSED] drm_test_damage_iter_no_damage
[04:33:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[04:33:57] [PASSED] drm_test_damage_iter_no_damage_src_moved
[04:33:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[04:33:57] [PASSED] drm_test_damage_iter_no_damage_not_visible
[04:33:57] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[04:33:57] [PASSED] drm_test_damage_iter_no_damage_no_fb
[04:33:57] [PASSED] drm_test_damage_iter_simple_damage
[04:33:57] [PASSED] drm_test_damage_iter_single_damage
[04:33:57] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[04:33:57] [PASSED] drm_test_damage_iter_single_damage_outside_src
[04:33:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[04:33:57] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[04:33:57] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[04:33:57] [PASSED] drm_test_damage_iter_single_damage_src_moved
[04:33:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[04:33:57] [PASSED] drm_test_damage_iter_damage
[04:33:57] [PASSED] drm_test_damage_iter_damage_one_intersect
[04:33:57] [PASSED] drm_test_damage_iter_damage_one_outside
[04:33:57] [PASSED] drm_test_damage_iter_damage_src_moved
[04:33:57] [PASSED] drm_test_damage_iter_damage_not_visible
[04:33:57] ================ [PASSED] drm_damage_helper ================
[04:33:57] ============== drm_dp_mst_helper (3 subtests) ==============
[04:33:57] ============== drm_test_dp_mst_calc_pbn_mode ==============
[04:33:57] [PASSED] Clock 154000 BPP 30 DSC disabled
[04:33:57] [PASSED] Clock 234000 BPP 30 DSC disabled
[04:33:57] [PASSED] Clock 297000 BPP 24 DSC disabled
[04:33:57] [PASSED] Clock 332880 BPP 24 DSC enabled
[04:33:57] [PASSED] Clock 324540 BPP 24 DSC enabled
[04:33:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[04:33:57] ============== drm_test_dp_mst_calc_pbn_div ===============
[04:33:57] [PASSED] Link rate 2000000 lane count 4
[04:33:57] [PASSED] Link rate 2000000 lane count 2
[04:33:57] [PASSED] Link rate 2000000 lane count 1
[04:33:57] [PASSED] Link rate 1350000 lane count 4
[04:33:57] [PASSED] Link rate 1350000 lane count 2
[04:33:57] [PASSED] Link rate 1350000 lane count 1
[04:33:57] [PASSED] Link rate 1000000 lane count 4
[04:33:57] [PASSED] Link rate 1000000 lane count 2
[04:33:57] [PASSED] Link rate 1000000 lane count 1
[04:33:57] [PASSED] Link rate 810000 lane count 4
[04:33:57] [PASSED] Link rate 810000 lane count 2
[04:33:57] [PASSED] Link rate 810000 lane count 1
[04:33:57] [PASSED] Link rate 540000 lane count 4
[04:33:57] [PASSED] Link rate 540000 lane count 2
[04:33:57] [PASSED] Link rate 540000 lane count 1
[04:33:57] [PASSED] Link rate 270000 lane count 4
[04:33:57] [PASSED] Link rate 270000 lane count 2
[04:33:57] [PASSED] Link rate 270000 lane count 1
[04:33:57] [PASSED] Link rate 162000 lane count 4
[04:33:57] [PASSED] Link rate 162000 lane count 2
[04:33:57] [PASSED] Link rate 162000 lane count 1
[04:33:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[04:33:57] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[04:33:57] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[04:33:57] [PASSED] DP_POWER_UP_PHY with port number
[04:33:57] [PASSED] DP_POWER_DOWN_PHY with port number
[04:33:57] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[04:33:57] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[04:33:57] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[04:33:57] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[04:33:57] [PASSED] DP_QUERY_PAYLOAD with port number
[04:33:57] [PASSED] DP_QUERY_PAYLOAD with VCPI
[04:33:57] [PASSED] DP_REMOTE_DPCD_READ with port number
[04:33:57] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[04:33:57] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[04:33:57] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[04:33:57] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[04:33:57] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[04:33:57] [PASSED] DP_REMOTE_I2C_READ with port number
[04:33:57] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[04:33:57] [PASSED] DP_REMOTE_I2C_READ with transactions array
[04:33:57] [PASSED] DP_REMOTE_I2C_WRITE with port number
[04:33:57] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[04:33:57] [PASSED] DP_REMOTE_I2C_WRITE with data array
[04:33:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[04:33:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[04:33:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[04:33:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[04:33:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[04:33:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[04:33:57] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[04:33:57] ================ [PASSED] drm_dp_mst_helper ================
[04:33:57] ================== drm_exec (7 subtests) ===================
[04:33:57] [PASSED] sanitycheck
[04:33:57] [PASSED] test_lock
[04:33:57] [PASSED] test_lock_unlock
[04:33:57] [PASSED] test_duplicates
[04:33:57] [PASSED] test_prepare
[04:33:57] [PASSED] test_prepare_array
[04:33:57] [PASSED] test_multiple_loops
[04:33:57] ==================== [PASSED] drm_exec =====================
[04:33:57] =========== drm_format_helper_test (17 subtests) ===========
[04:33:57] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[04:33:57] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[04:33:57] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[04:33:57] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[04:33:57] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[04:33:57] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[04:33:57] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[04:33:57] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[04:33:57] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[04:33:57] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[04:33:57] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[04:33:57] ============== drm_test_fb_xrgb8888_to_mono ===============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[04:33:57] ==================== drm_test_fb_swab =====================
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ================ [PASSED] drm_test_fb_swab =================
[04:33:57] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[04:33:57] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[04:33:57] [PASSED] single_pixel_source_buffer
[04:33:57] [PASSED] single_pixel_clip_rectangle
[04:33:57] [PASSED] well_known_colors
[04:33:57] [PASSED] destination_pitch
[04:33:57] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[04:33:57] ================= drm_test_fb_clip_offset =================
[04:33:57] [PASSED] pass through
[04:33:57] [PASSED] horizontal offset
[04:33:57] [PASSED] vertical offset
[04:33:57] [PASSED] horizontal and vertical offset
[04:33:57] [PASSED] horizontal offset (custom pitch)
[04:33:57] [PASSED] vertical offset (custom pitch)
[04:33:57] [PASSED] horizontal and vertical offset (custom pitch)
[04:33:57] ============= [PASSED] drm_test_fb_clip_offset =============
[04:33:57] =================== drm_test_fb_memcpy ====================
[04:33:57] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[04:33:57] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[04:33:57] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[04:33:57] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[04:33:57] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[04:33:57] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[04:33:57] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[04:33:57] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[04:33:57] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[04:33:57] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[04:33:57] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[04:33:57] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[04:33:57] =============== [PASSED] drm_test_fb_memcpy ================
[04:33:57] ============= [PASSED] drm_format_helper_test ==============
[04:33:57] ================= drm_format (18 subtests) =================
[04:33:57] [PASSED] drm_test_format_block_width_invalid
[04:33:57] [PASSED] drm_test_format_block_width_one_plane
[04:33:57] [PASSED] drm_test_format_block_width_two_plane
[04:33:57] [PASSED] drm_test_format_block_width_three_plane
[04:33:57] [PASSED] drm_test_format_block_width_tiled
[04:33:57] [PASSED] drm_test_format_block_height_invalid
[04:33:57] [PASSED] drm_test_format_block_height_one_plane
[04:33:57] [PASSED] drm_test_format_block_height_two_plane
[04:33:57] [PASSED] drm_test_format_block_height_three_plane
[04:33:57] [PASSED] drm_test_format_block_height_tiled
[04:33:57] [PASSED] drm_test_format_min_pitch_invalid
[04:33:57] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[04:33:57] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[04:33:57] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[04:33:57] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[04:33:57] [PASSED] drm_test_format_min_pitch_two_plane
[04:33:57] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[04:33:57] [PASSED] drm_test_format_min_pitch_tiled
[04:33:57] =================== [PASSED] drm_format ====================
[04:33:57] ============== drm_framebuffer (10 subtests) ===============
[04:33:57] ========== drm_test_framebuffer_check_src_coords ==========
[04:33:57] [PASSED] Success: source fits into fb
[04:33:57] [PASSED] Fail: overflowing fb with x-axis coordinate
[04:33:57] [PASSED] Fail: overflowing fb with y-axis coordinate
[04:33:57] [PASSED] Fail: overflowing fb with source width
[04:33:57] [PASSED] Fail: overflowing fb with source height
[04:33:57] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[04:33:57] [PASSED] drm_test_framebuffer_cleanup
[04:33:57] =============== drm_test_framebuffer_create ===============
[04:33:57] [PASSED] ABGR8888 normal sizes
[04:33:57] [PASSED] ABGR8888 max sizes
[04:33:57] [PASSED] ABGR8888 pitch greater than min required
[04:33:57] [PASSED] ABGR8888 pitch less than min required
[04:33:57] [PASSED] ABGR8888 Invalid width
[04:33:57] [PASSED] ABGR8888 Invalid buffer handle
[04:33:57] [PASSED] No pixel format
[04:33:57] [PASSED] ABGR8888 Width 0
[04:33:57] [PASSED] ABGR8888 Height 0
[04:33:57] [PASSED] ABGR8888 Out of bound height * pitch combination
[04:33:57] [PASSED] ABGR8888 Large buffer offset
[04:33:57] [PASSED] ABGR8888 Buffer offset for inexistent plane
[04:33:57] [PASSED] ABGR8888 Invalid flag
[04:33:57] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[04:33:57] [PASSED] ABGR8888 Valid buffer modifier
[04:33:57] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[04:33:57] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[04:33:57] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[04:33:57] [PASSED] NV12 Normal sizes
[04:33:57] [PASSED] NV12 Max sizes
[04:33:57] [PASSED] NV12 Invalid pitch
[04:33:57] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[04:33:57] [PASSED] NV12 different modifier per-plane
[04:33:57] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[04:33:57] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[04:33:57] [PASSED] NV12 Modifier for inexistent plane
[04:33:57] [PASSED] NV12 Handle for inexistent plane
[04:33:57] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[04:33:57] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[04:33:57] [PASSED] YVU420 Normal sizes
[04:33:57] [PASSED] YVU420 Max sizes
[04:33:57] [PASSED] YVU420 Invalid pitch
[04:33:57] [PASSED] YVU420 Different pitches
[04:33:57] [PASSED] YVU420 Different buffer offsets/pitches
[04:33:57] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[04:33:57] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[04:33:57] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[04:33:57] [PASSED] YVU420 Valid modifier
[04:33:57] [PASSED] YVU420 Different modifiers per plane
[04:33:57] [PASSED] YVU420 Modifier for inexistent plane
[04:33:57] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[04:33:57] [PASSED] X0L2 Normal sizes
[04:33:57] [PASSED] X0L2 Max sizes
[04:33:57] [PASSED] X0L2 Invalid pitch
[04:33:57] [PASSED] X0L2 Pitch greater than minimum required
[04:33:57] [PASSED] X0L2 Handle for inexistent plane
[04:33:57] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[04:33:57] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[04:33:57] [PASSED] X0L2 Valid modifier
[04:33:57] [PASSED] X0L2 Modifier for inexistent plane
[04:33:57] =========== [PASSED] drm_test_framebuffer_create ===========
[04:33:57] [PASSED] drm_test_framebuffer_free
[04:33:57] [PASSED] drm_test_framebuffer_init
[04:33:57] [PASSED] drm_test_framebuffer_init_bad_format
[04:33:57] [PASSED] drm_test_framebuffer_init_dev_mismatch
[04:33:57] [PASSED] drm_test_framebuffer_lookup
[04:33:57] [PASSED] drm_test_framebuffer_lookup_inexistent
[04:33:57] [PASSED] drm_test_framebuffer_modifiers_not_supported
[04:33:57] ================= [PASSED] drm_framebuffer =================
[04:33:57] ================ drm_gem_shmem (8 subtests) ================
[04:33:57] [PASSED] drm_gem_shmem_test_obj_create
[04:33:57] [PASSED] drm_gem_shmem_test_obj_create_private
[04:33:57] [PASSED] drm_gem_shmem_test_pin_pages
[04:33:57] [PASSED] drm_gem_shmem_test_vmap
[04:33:57] [PASSED] drm_gem_shmem_test_get_sg_table
[04:33:57] [PASSED] drm_gem_shmem_test_get_pages_sgt
[04:33:57] [PASSED] drm_gem_shmem_test_madvise
[04:33:57] [PASSED] drm_gem_shmem_test_purge
[04:33:57] ================== [PASSED] drm_gem_shmem ==================
[04:33:57] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[04:33:57] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[04:33:57] [PASSED] Automatic
[04:33:57] [PASSED] Full
[04:33:57] [PASSED] Limited 16:235
[04:33:57] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[04:33:57] [PASSED] drm_test_check_disable_connector
[04:33:57] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[04:33:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[04:33:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[04:33:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[04:33:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[04:33:57] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[04:33:57] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[04:33:57] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[04:33:57] [PASSED] drm_test_check_output_bpc_dvi
[04:33:57] [PASSED] drm_test_check_output_bpc_format_vic_1
[04:33:57] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[04:33:57] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[04:33:57] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[04:33:57] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[04:33:57] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[04:33:57] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[04:33:57] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[04:33:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[04:33:57] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[04:33:57] [PASSED] drm_test_check_broadcast_rgb_value
[04:33:57] [PASSED] drm_test_check_bpc_8_value
[04:33:57] [PASSED] drm_test_check_bpc_10_value
[04:33:57] [PASSED] drm_test_check_bpc_12_value
[04:33:57] [PASSED] drm_test_check_format_value
[04:33:57] [PASSED] drm_test_check_tmds_char_value
[04:33:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[04:33:57] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[04:33:57] [PASSED] drm_test_check_mode_valid
[04:33:57] [PASSED] drm_test_check_mode_valid_reject
[04:33:57] [PASSED] drm_test_check_mode_valid_reject_rate
[04:33:57] [PASSED] drm_test_check_mode_valid_reject_max_clock
[04:33:57] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[04:33:57] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[04:33:57] [PASSED] drm_test_check_infoframes
[04:33:57] [PASSED] drm_test_check_reject_avi_infoframe
[04:33:57] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[04:33:57] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[04:33:57] [PASSED] drm_test_check_reject_audio_infoframe
[04:33:57] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[04:33:57] ================= drm_managed (2 subtests) =================
[04:33:57] [PASSED] drm_test_managed_release_action
[04:33:57] [PASSED] drm_test_managed_run_action
[04:33:57] =================== [PASSED] drm_managed ===================
[04:33:57] =================== drm_mm (6 subtests) ====================
[04:33:57] [PASSED] drm_test_mm_init
[04:33:57] [PASSED] drm_test_mm_debug
[04:33:57] [PASSED] drm_test_mm_align32
[04:33:57] [PASSED] drm_test_mm_align64
[04:33:57] [PASSED] drm_test_mm_lowest
[04:33:57] [PASSED] drm_test_mm_highest
[04:33:57] ===================== [PASSED] drm_mm ======================
[04:33:57] ============= drm_modes_analog_tv (5 subtests) =============
[04:33:57] [PASSED] drm_test_modes_analog_tv_mono_576i
[04:33:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[04:33:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[04:33:57] [PASSED] drm_test_modes_analog_tv_pal_576i
[04:33:57] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[04:33:57] =============== [PASSED] drm_modes_analog_tv ===============
[04:33:57] ============== drm_plane_helper (2 subtests) ===============
[04:33:57] =============== drm_test_check_plane_state ================
[04:33:57] [PASSED] clipping_simple
[04:33:57] [PASSED] clipping_rotate_reflect
[04:33:57] [PASSED] positioning_simple
[04:33:57] [PASSED] upscaling
[04:33:57] [PASSED] downscaling
[04:33:57] [PASSED] rounding1
[04:33:57] [PASSED] rounding2
[04:33:57] [PASSED] rounding3
[04:33:57] [PASSED] rounding4
[04:33:57] =========== [PASSED] drm_test_check_plane_state ============
[04:33:57] =========== drm_test_check_invalid_plane_state ============
[04:33:57] [PASSED] positioning_invalid
[04:33:57] [PASSED] upscaling_invalid
[04:33:57] [PASSED] downscaling_invalid
[04:33:57] ======= [PASSED] drm_test_check_invalid_plane_state ========
[04:33:57] ================ [PASSED] drm_plane_helper =================
[04:33:57] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[04:33:57] ====== drm_test_connector_helper_tv_get_modes_check =======
[04:33:57] [PASSED] None
[04:33:57] [PASSED] PAL
[04:33:57] [PASSED] NTSC
[04:33:57] [PASSED] Both, NTSC Default
[04:33:57] [PASSED] Both, PAL Default
[04:33:57] [PASSED] Both, NTSC Default, with PAL on command-line
[04:33:57] [PASSED] Both, PAL Default, with NTSC on command-line
[04:33:57] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[04:33:57] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[04:33:57] ================== drm_rect (9 subtests) ===================
[04:33:57] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[04:33:57] [PASSED] drm_test_rect_clip_scaled_not_clipped
[04:33:57] [PASSED] drm_test_rect_clip_scaled_clipped
[04:33:57] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[04:33:57] ================= drm_test_rect_intersect =================
[04:33:57] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[04:33:57] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[04:33:57] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[04:33:57] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[04:33:57] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[04:33:57] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[04:33:57] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[04:33:57] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[04:33:57] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[04:33:57] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[04:33:57] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[04:33:57] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[04:33:57] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[04:33:57] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[04:33:57] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[04:33:57] ============= [PASSED] drm_test_rect_intersect =============
[04:33:57] ================ drm_test_rect_calc_hscale ================
[04:33:57] [PASSED] normal use
[04:33:57] [PASSED] out of max range
[04:33:57] [PASSED] out of min range
[04:33:57] [PASSED] zero dst
[04:33:57] [PASSED] negative src
[04:33:57] [PASSED] negative dst
[04:33:57] ============ [PASSED] drm_test_rect_calc_hscale ============
[04:33:57] ================ drm_test_rect_calc_vscale ================
[04:33:57] [PASSED] normal use
[04:33:57] [PASSED] out of max range
[04:33:57] [PASSED] out of min range
[04:33:57] [PASSED] zero dst
[04:33:57] [PASSED] negative src
[04:33:57] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[04:33:57] ============ [PASSED] drm_test_rect_calc_vscale ============
[04:33:57] ================== drm_test_rect_rotate ===================
[04:33:57] [PASSED] reflect-x
[04:33:57] [PASSED] reflect-y
[04:33:57] [PASSED] rotate-0
[04:33:57] [PASSED] rotate-90
[04:33:57] [PASSED] rotate-180
[04:33:57] [PASSED] rotate-270
[04:33:57] ============== [PASSED] drm_test_rect_rotate ===============
[04:33:57] ================ drm_test_rect_rotate_inv =================
[04:33:57] [PASSED] reflect-x
[04:33:57] [PASSED] reflect-y
[04:33:57] [PASSED] rotate-0
[04:33:57] [PASSED] rotate-90
[04:33:57] [PASSED] rotate-180
[04:33:57] [PASSED] rotate-270
[04:33:57] ============ [PASSED] drm_test_rect_rotate_inv =============
[04:33:57] ==================== [PASSED] drm_rect =====================
[04:33:57] ============ drm_sysfb_modeset_test (1 subtest) ============
[04:33:57] ============ drm_test_sysfb_build_fourcc_list =============
[04:33:57] [PASSED] no native formats
[04:33:57] [PASSED] XRGB8888 as native format
[04:33:57] [PASSED] remove duplicates
[04:33:57] [PASSED] convert alpha formats
[04:33:57] [PASSED] random formats
[04:33:57] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[04:33:57] ============= [PASSED] drm_sysfb_modeset_test ==============
[04:33:57] ================== drm_fixp (2 subtests) ===================
[04:33:57] [PASSED] drm_test_int2fixp
[04:33:57] [PASSED] drm_test_sm2fixp
[04:33:57] ==================== [PASSED] drm_fixp =====================
[04:33:57] ============================================================
[04:33:57] Testing complete. Ran 621 tests: passed: 621
[04:33:57] Elapsed time: 26.377s total, 1.659s configuring, 24.537s building, 0.179s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[04:33:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:33:59] 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
[04:34:09] Starting KUnit Kernel (1/1)...
[04:34:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:34:09] ================= ttm_device (5 subtests) ==================
[04:34:09] [PASSED] ttm_device_init_basic
[04:34:09] [PASSED] ttm_device_init_multiple
[04:34:09] [PASSED] ttm_device_fini_basic
[04:34:09] [PASSED] ttm_device_init_no_vma_man
[04:34:09] ================== ttm_device_init_pools ==================
[04:34:09] [PASSED] No DMA allocations, no DMA32 required
[04:34:09] [PASSED] DMA allocations, DMA32 required
[04:34:09] [PASSED] No DMA allocations, DMA32 required
[04:34:09] [PASSED] DMA allocations, no DMA32 required
[04:34:09] ============== [PASSED] ttm_device_init_pools ==============
[04:34:09] =================== [PASSED] ttm_device ====================
[04:34:09] ================== ttm_pool (8 subtests) ===================
[04:34:09] ================== ttm_pool_alloc_basic ===================
[04:34:09] [PASSED] One page
[04:34:09] [PASSED] More than one page
[04:34:09] [PASSED] Above the allocation limit
[04:34:09] [PASSED] One page, with coherent DMA mappings enabled
[04:34:09] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:34:09] ============== [PASSED] ttm_pool_alloc_basic ===============
[04:34:09] ============== ttm_pool_alloc_basic_dma_addr ==============
[04:34:09] [PASSED] One page
[04:34:09] [PASSED] More than one page
[04:34:09] [PASSED] Above the allocation limit
[04:34:09] [PASSED] One page, with coherent DMA mappings enabled
[04:34:09] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:34:09] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[04:34:09] [PASSED] ttm_pool_alloc_order_caching_match
[04:34:09] [PASSED] ttm_pool_alloc_caching_mismatch
[04:34:09] [PASSED] ttm_pool_alloc_order_mismatch
[04:34:09] [PASSED] ttm_pool_free_dma_alloc
[04:34:09] [PASSED] ttm_pool_free_no_dma_alloc
[04:34:09] [PASSED] ttm_pool_fini_basic
[04:34:09] ==================== [PASSED] ttm_pool =====================
[04:34:09] ================ ttm_resource (8 subtests) =================
[04:34:09] ================= ttm_resource_init_basic =================
[04:34:09] [PASSED] Init resource in TTM_PL_SYSTEM
[04:34:09] [PASSED] Init resource in TTM_PL_VRAM
[04:34:09] [PASSED] Init resource in a private placement
[04:34:09] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[04:34:09] ============= [PASSED] ttm_resource_init_basic =============
[04:34:09] [PASSED] ttm_resource_init_pinned
[04:34:09] [PASSED] ttm_resource_fini_basic
[04:34:09] [PASSED] ttm_resource_manager_init_basic
[04:34:09] [PASSED] ttm_resource_manager_usage_basic
[04:34:09] [PASSED] ttm_resource_manager_set_used_basic
[04:34:09] [PASSED] ttm_sys_man_alloc_basic
[04:34:09] [PASSED] ttm_sys_man_free_basic
[04:34:09] ================== [PASSED] ttm_resource ===================
[04:34:09] =================== ttm_tt (15 subtests) ===================
[04:34:09] ==================== ttm_tt_init_basic ====================
[04:34:09] [PASSED] Page-aligned size
[04:34:09] [PASSED] Extra pages requested
[04:34:09] ================ [PASSED] ttm_tt_init_basic ================
[04:34:09] [PASSED] ttm_tt_init_misaligned
[04:34:09] [PASSED] ttm_tt_fini_basic
[04:34:09] [PASSED] ttm_tt_fini_sg
[04:34:09] [PASSED] ttm_tt_fini_shmem
[04:34:09] [PASSED] ttm_tt_create_basic
[04:34:09] [PASSED] ttm_tt_create_invalid_bo_type
[04:34:09] [PASSED] ttm_tt_create_ttm_exists
[04:34:09] [PASSED] ttm_tt_create_failed
[04:34:09] [PASSED] ttm_tt_destroy_basic
[04:34:09] [PASSED] ttm_tt_populate_null_ttm
[04:34:09] [PASSED] ttm_tt_populate_populated_ttm
[04:34:09] [PASSED] ttm_tt_unpopulate_basic
[04:34:09] [PASSED] ttm_tt_unpopulate_empty_ttm
[04:34:09] [PASSED] ttm_tt_swapin_basic
[04:34:09] ===================== [PASSED] ttm_tt ======================
[04:34:09] =================== ttm_bo (14 subtests) ===================
[04:34:09] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[04:34:09] [PASSED] Cannot be interrupted and sleeps
[04:34:09] [PASSED] Cannot be interrupted, locks straight away
[04:34:09] [PASSED] Can be interrupted, sleeps
[04:34:09] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[04:34:09] [PASSED] ttm_bo_reserve_locked_no_sleep
[04:34:09] [PASSED] ttm_bo_reserve_no_wait_ticket
[04:34:09] [PASSED] ttm_bo_reserve_double_resv
[04:34:09] [PASSED] ttm_bo_reserve_interrupted
[04:34:09] [PASSED] ttm_bo_reserve_deadlock
[04:34:09] [PASSED] ttm_bo_unreserve_basic
[04:34:09] [PASSED] ttm_bo_unreserve_pinned
[04:34:09] [PASSED] ttm_bo_unreserve_bulk
[04:34:09] [PASSED] ttm_bo_fini_basic
[04:34:09] [PASSED] ttm_bo_fini_shared_resv
[04:34:09] [PASSED] ttm_bo_pin_basic
[04:34:09] [PASSED] ttm_bo_pin_unpin_resource
[04:34:09] [PASSED] ttm_bo_multiple_pin_one_unpin
[04:34:09] ===================== [PASSED] ttm_bo ======================
[04:34:09] ============== ttm_bo_validate (22 subtests) ===============
[04:34:09] ============== ttm_bo_init_reserved_sys_man ===============
[04:34:09] [PASSED] Buffer object for userspace
[04:34:09] [PASSED] Kernel buffer object
[04:34:09] [PASSED] Shared buffer object
[04:34:09] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[04:34:09] ============== ttm_bo_init_reserved_mock_man ==============
[04:34:09] [PASSED] Buffer object for userspace
[04:34:09] [PASSED] Kernel buffer object
[04:34:09] [PASSED] Shared buffer object
[04:34:09] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[04:34:09] [PASSED] ttm_bo_init_reserved_resv
[04:34:09] ================== ttm_bo_validate_basic ==================
[04:34:09] [PASSED] Buffer object for userspace
[04:34:09] [PASSED] Kernel buffer object
[04:34:09] [PASSED] Shared buffer object
[04:34:09] ============== [PASSED] ttm_bo_validate_basic ==============
[04:34:09] [PASSED] ttm_bo_validate_invalid_placement
[04:34:09] ============= ttm_bo_validate_same_placement ==============
[04:34:09] [PASSED] System manager
[04:34:09] [PASSED] VRAM manager
[04:34:09] ========= [PASSED] ttm_bo_validate_same_placement ==========
[04:34:09] [PASSED] ttm_bo_validate_failed_alloc
[04:34:09] [PASSED] ttm_bo_validate_pinned
[04:34:09] [PASSED] ttm_bo_validate_busy_placement
[04:34:09] ================ ttm_bo_validate_multihop =================
[04:34:09] [PASSED] Buffer object for userspace
[04:34:09] [PASSED] Kernel buffer object
[04:34:09] [PASSED] Shared buffer object
[04:34:09] ============ [PASSED] ttm_bo_validate_multihop =============
[04:34:09] ========== ttm_bo_validate_no_placement_signaled ==========
[04:34:09] [PASSED] Buffer object in system domain, no page vector
[04:34:09] [PASSED] Buffer object in system domain with an existing page vector
[04:34:09] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[04:34:09] ======== ttm_bo_validate_no_placement_not_signaled ========
[04:34:09] [PASSED] Buffer object for userspace
[04:34:09] [PASSED] Kernel buffer object
[04:34:09] [PASSED] Shared buffer object
[04:34:09] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[04:34:09] [PASSED] ttm_bo_validate_move_fence_signaled
[04:34:09] ========= ttm_bo_validate_move_fence_not_signaled =========
[04:34:09] [PASSED] Waits for GPU
[04:34:09] [PASSED] Tries to lock straight away
[04:34:09] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[04:34:09] [PASSED] ttm_bo_validate_swapout
[04:34:09] [PASSED] ttm_bo_validate_happy_evict
[04:34:09] [PASSED] ttm_bo_validate_all_pinned_evict
[04:34:09] [PASSED] ttm_bo_validate_allowed_only_evict
[04:34:09] [PASSED] ttm_bo_validate_deleted_evict
[04:34:09] [PASSED] ttm_bo_validate_busy_domain_evict
[04:34:09] [PASSED] ttm_bo_validate_evict_gutting
[04:34:09] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[04:34:09] ================= [PASSED] ttm_bo_validate =================
[04:34:09] ============================================================
[04:34:09] Testing complete. Ran 102 tests: passed: 102
[04:34:09] Elapsed time: 11.531s total, 1.745s configuring, 9.570s building, 0.178s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Xe.CI.BAT: success for Do not create drm device for PF only admin mode (rev11)
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
` (3 preceding siblings ...)
2026-04-10 4:34 ` ✓ CI.KUnit: success for Do not create drm device for PF only admin mode (rev11) Patchwork
@ 2026-04-10 5:29 ` Patchwork
2026-04-10 12:14 ` ✓ Xe.CI.FULL: " Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-10 5:29 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 883 bytes --]
== Series Details ==
Series: Do not create drm device for PF only admin mode (rev11)
URL : https://patchwork.freedesktop.org/series/160349/
State : success
== Summary ==
CI Bug Log - changes from xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37_BAT -> xe-pw-160349v11_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37 -> xe-pw-160349v11
IGT_8852: 8852
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
xe-pw-160349v11: 160349v11
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/index.html
[-- Attachment #2: Type: text/html, Size: 1432 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Xe.CI.FULL: success for Do not create drm device for PF only admin mode (rev11)
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
` (4 preceding siblings ...)
2026-04-10 5:29 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-10 12:14 ` Patchwork
2026-04-13 13:01 ` ✓ CI.KUnit: success for Do not create drm device for PF only admin mode (rev12) Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-10 12:14 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 15849 bytes --]
== Series Details ==
Series: Do not create drm device for PF only admin mode (rev11)
URL : https://patchwork.freedesktop.org/series/160349/
State : success
== Summary ==
CI Bug Log - changes from xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37_FULL -> xe-pw-160349v11_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-160349v11_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#1124]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#367] / [Intel XE#7354])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2887]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2252]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2390] / [Intel XE#6974])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2320])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2244])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2374] / [Intel XE#6127])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7178] / [Intel XE#7351])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2311]) +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#4141]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2352] / [Intel XE#7399])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2313]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#1503])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7283])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2393])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_plane_lowres@tiling-y.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2387] / [Intel XE#7429])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3904] / [Intel XE#7342])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6503])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#4459]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#2142]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug@connect-user:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7636]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@xe_eudebug@connect-user.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7136]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@many-queues-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6874]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@xe_exec_multi_queue@many-queues-dyn-priority-smem.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [PASS][30] -> [ABORT][31] ([Intel XE#7578])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2229])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6964])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7590])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
#### Possible fixes ####
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][35] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
- shard-bmg: [FAIL][37] ([Intel XE#3149]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][39] ([Intel XE#6361]) -> [PASS][40] +2 other tests pass
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][41] ([Intel XE#6321]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][43] ([Intel XE#3544]) -> [SKIP][44] ([Intel XE#3374] / [Intel XE#3544])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][45] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][46] ([Intel XE#1729] / [Intel XE#7424])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
Build changes
-------------
* Linux: xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37 -> xe-pw-160349v11
IGT_8852: 8852
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
xe-pw-160349v11: 160349v11
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v11/index.html
[-- Attachment #2: Type: text/html, Size: 17259 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ CI.KUnit: success for Do not create drm device for PF only admin mode (rev12)
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
` (5 preceding siblings ...)
2026-04-10 12:14 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-13 13:01 ` Patchwork
2026-04-13 14:26 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-13 15:34 ` ✗ Xe.CI.FULL: failure " Patchwork
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-13 13:01 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
== Series Details ==
Series: Do not create drm device for PF only admin mode (rev12)
URL : https://patchwork.freedesktop.org/series/160349/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:59:25] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:59:30] 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
[13:00:06] Starting KUnit Kernel (1/1)...
[13:00:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:00:06] ================== guc_buf (11 subtests) ===================
[13:00:06] [PASSED] test_smallest
[13:00:06] [PASSED] test_largest
[13:00:06] [PASSED] test_granular
[13:00:06] [PASSED] test_unique
[13:00:06] [PASSED] test_overlap
[13:00:06] [PASSED] test_reusable
[13:00:06] [PASSED] test_too_big
[13:00:06] [PASSED] test_flush
[13:00:06] [PASSED] test_lookup
[13:00:06] [PASSED] test_data
[13:00:06] [PASSED] test_class
[13:00:06] ===================== [PASSED] guc_buf =====================
[13:00:06] =================== guc_dbm (7 subtests) ===================
[13:00:06] [PASSED] test_empty
[13:00:06] [PASSED] test_default
[13:00:06] ======================== test_size ========================
[13:00:06] [PASSED] 4
[13:00:06] [PASSED] 8
[13:00:06] [PASSED] 32
[13:00:06] [PASSED] 256
[13:00:06] ==================== [PASSED] test_size ====================
[13:00:06] ======================= test_reuse ========================
[13:00:06] [PASSED] 4
[13:00:06] [PASSED] 8
[13:00:06] [PASSED] 32
[13:00:06] [PASSED] 256
[13:00:06] =================== [PASSED] test_reuse ====================
[13:00:06] =================== test_range_overlap ====================
[13:00:06] [PASSED] 4
[13:00:06] [PASSED] 8
[13:00:06] [PASSED] 32
[13:00:06] [PASSED] 256
[13:00:06] =============== [PASSED] test_range_overlap ================
[13:00:06] =================== test_range_compact ====================
[13:00:06] [PASSED] 4
[13:00:06] [PASSED] 8
[13:00:06] [PASSED] 32
[13:00:06] [PASSED] 256
[13:00:06] =============== [PASSED] test_range_compact ================
[13:00:06] ==================== test_range_spare =====================
[13:00:06] [PASSED] 4
[13:00:06] [PASSED] 8
[13:00:06] [PASSED] 32
[13:00:06] [PASSED] 256
[13:00:06] ================ [PASSED] test_range_spare =================
[13:00:06] ===================== [PASSED] guc_dbm =====================
[13:00:06] =================== guc_idm (6 subtests) ===================
[13:00:06] [PASSED] bad_init
[13:00:06] [PASSED] no_init
[13:00:06] [PASSED] init_fini
[13:00:06] [PASSED] check_used
[13:00:06] [PASSED] check_quota
[13:00:06] [PASSED] check_all
[13:00:06] ===================== [PASSED] guc_idm =====================
[13:00:06] ================== no_relay (3 subtests) ===================
[13:00:06] [PASSED] xe_drops_guc2pf_if_not_ready
[13:00:06] [PASSED] xe_drops_guc2vf_if_not_ready
[13:00:06] [PASSED] xe_rejects_send_if_not_ready
[13:00:06] ==================== [PASSED] no_relay =====================
[13:00:06] ================== pf_relay (14 subtests) ==================
[13:00:06] [PASSED] pf_rejects_guc2pf_too_short
[13:00:06] [PASSED] pf_rejects_guc2pf_too_long
[13:00:06] [PASSED] pf_rejects_guc2pf_no_payload
[13:00:06] [PASSED] pf_fails_no_payload
[13:00:06] [PASSED] pf_fails_bad_origin
[13:00:06] [PASSED] pf_fails_bad_type
[13:00:06] [PASSED] pf_txn_reports_error
[13:00:06] [PASSED] pf_txn_sends_pf2guc
[13:00:06] [PASSED] pf_sends_pf2guc
[13:00:06] [SKIPPED] pf_loopback_nop
[13:00:06] [SKIPPED] pf_loopback_echo
[13:00:06] [SKIPPED] pf_loopback_fail
[13:00:06] [SKIPPED] pf_loopback_busy
[13:00:06] [SKIPPED] pf_loopback_retry
[13:00:06] ==================== [PASSED] pf_relay =====================
[13:00:06] ================== vf_relay (3 subtests) ===================
[13:00:06] [PASSED] vf_rejects_guc2vf_too_short
[13:00:06] [PASSED] vf_rejects_guc2vf_too_long
[13:00:06] [PASSED] vf_rejects_guc2vf_no_payload
[13:00:06] ==================== [PASSED] vf_relay =====================
[13:00:06] ================ pf_gt_config (9 subtests) =================
[13:00:06] [PASSED] fair_contexts_1vf
[13:00:06] [PASSED] fair_doorbells_1vf
[13:00:06] [PASSED] fair_ggtt_1vf
[13:00:06] ====================== fair_vram_1vf ======================
[13:00:06] [PASSED] 3.50 GiB
[13:00:06] [PASSED] 11.5 GiB
[13:00:06] [PASSED] 15.5 GiB
[13:00:06] [PASSED] 31.5 GiB
[13:00:06] [PASSED] 63.5 GiB
[13:00:06] [PASSED] 1.91 GiB
[13:00:06] ================== [PASSED] fair_vram_1vf ==================
[13:00:06] ================ fair_vram_1vf_admin_only =================
[13:00:06] [PASSED] 3.50 GiB
[13:00:06] [PASSED] 11.5 GiB
[13:00:06] [PASSED] 15.5 GiB
[13:00:06] [PASSED] 31.5 GiB
[13:00:06] [PASSED] 63.5 GiB
[13:00:06] [PASSED] 1.91 GiB
[13:00:06] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:00:06] ====================== fair_contexts ======================
[13:00:06] [PASSED] 1 VF
[13:00:06] [PASSED] 2 VFs
[13:00:06] [PASSED] 3 VFs
[13:00:06] [PASSED] 4 VFs
[13:00:06] [PASSED] 5 VFs
[13:00:06] [PASSED] 6 VFs
[13:00:06] [PASSED] 7 VFs
[13:00:06] [PASSED] 8 VFs
[13:00:06] [PASSED] 9 VFs
[13:00:06] [PASSED] 10 VFs
[13:00:06] [PASSED] 11 VFs
[13:00:06] [PASSED] 12 VFs
[13:00:06] [PASSED] 13 VFs
[13:00:06] [PASSED] 14 VFs
[13:00:06] [PASSED] 15 VFs
[13:00:06] [PASSED] 16 VFs
[13:00:06] [PASSED] 17 VFs
[13:00:06] [PASSED] 18 VFs
[13:00:06] [PASSED] 19 VFs
[13:00:06] [PASSED] 20 VFs
[13:00:06] [PASSED] 21 VFs
[13:00:06] [PASSED] 22 VFs
[13:00:06] [PASSED] 23 VFs
[13:00:06] [PASSED] 24 VFs
[13:00:06] [PASSED] 25 VFs
[13:00:06] [PASSED] 26 VFs
[13:00:06] [PASSED] 27 VFs
[13:00:06] [PASSED] 28 VFs
[13:00:06] [PASSED] 29 VFs
[13:00:06] [PASSED] 30 VFs
[13:00:06] [PASSED] 31 VFs
[13:00:06] [PASSED] 32 VFs
[13:00:06] [PASSED] 33 VFs
[13:00:06] [PASSED] 34 VFs
[13:00:06] [PASSED] 35 VFs
[13:00:06] [PASSED] 36 VFs
[13:00:06] [PASSED] 37 VFs
[13:00:06] [PASSED] 38 VFs
[13:00:06] [PASSED] 39 VFs
[13:00:06] [PASSED] 40 VFs
[13:00:06] [PASSED] 41 VFs
[13:00:06] [PASSED] 42 VFs
[13:00:06] [PASSED] 43 VFs
[13:00:06] [PASSED] 44 VFs
[13:00:06] [PASSED] 45 VFs
[13:00:06] [PASSED] 46 VFs
[13:00:06] [PASSED] 47 VFs
[13:00:06] [PASSED] 48 VFs
[13:00:06] [PASSED] 49 VFs
[13:00:06] [PASSED] 50 VFs
[13:00:06] [PASSED] 51 VFs
[13:00:06] [PASSED] 52 VFs
[13:00:06] [PASSED] 53 VFs
[13:00:06] [PASSED] 54 VFs
[13:00:06] [PASSED] 55 VFs
[13:00:06] [PASSED] 56 VFs
[13:00:06] [PASSED] 57 VFs
[13:00:06] [PASSED] 58 VFs
[13:00:06] [PASSED] 59 VFs
[13:00:06] [PASSED] 60 VFs
[13:00:06] [PASSED] 61 VFs
[13:00:06] [PASSED] 62 VFs
[13:00:06] [PASSED] 63 VFs
[13:00:06] ================== [PASSED] fair_contexts ==================
[13:00:06] ===================== fair_doorbells ======================
[13:00:06] [PASSED] 1 VF
[13:00:06] [PASSED] 2 VFs
[13:00:06] [PASSED] 3 VFs
[13:00:06] [PASSED] 4 VFs
[13:00:06] [PASSED] 5 VFs
[13:00:06] [PASSED] 6 VFs
[13:00:06] [PASSED] 7 VFs
[13:00:06] [PASSED] 8 VFs
[13:00:06] [PASSED] 9 VFs
[13:00:06] [PASSED] 10 VFs
[13:00:06] [PASSED] 11 VFs
[13:00:06] [PASSED] 12 VFs
[13:00:06] [PASSED] 13 VFs
[13:00:06] [PASSED] 14 VFs
[13:00:06] [PASSED] 15 VFs
[13:00:06] [PASSED] 16 VFs
[13:00:06] [PASSED] 17 VFs
[13:00:06] [PASSED] 18 VFs
[13:00:06] [PASSED] 19 VFs
[13:00:06] [PASSED] 20 VFs
[13:00:06] [PASSED] 21 VFs
[13:00:06] [PASSED] 22 VFs
[13:00:06] [PASSED] 23 VFs
[13:00:06] [PASSED] 24 VFs
[13:00:06] [PASSED] 25 VFs
[13:00:06] [PASSED] 26 VFs
[13:00:06] [PASSED] 27 VFs
[13:00:06] [PASSED] 28 VFs
[13:00:06] [PASSED] 29 VFs
[13:00:06] [PASSED] 30 VFs
[13:00:06] [PASSED] 31 VFs
[13:00:06] [PASSED] 32 VFs
[13:00:06] [PASSED] 33 VFs
[13:00:06] [PASSED] 34 VFs
[13:00:06] [PASSED] 35 VFs
[13:00:06] [PASSED] 36 VFs
[13:00:06] [PASSED] 37 VFs
[13:00:06] [PASSED] 38 VFs
[13:00:06] [PASSED] 39 VFs
[13:00:06] [PASSED] 40 VFs
[13:00:06] [PASSED] 41 VFs
[13:00:06] [PASSED] 42 VFs
[13:00:06] [PASSED] 43 VFs
[13:00:06] [PASSED] 44 VFs
[13:00:06] [PASSED] 45 VFs
[13:00:06] [PASSED] 46 VFs
[13:00:06] [PASSED] 47 VFs
[13:00:06] [PASSED] 48 VFs
[13:00:06] [PASSED] 49 VFs
[13:00:06] [PASSED] 50 VFs
[13:00:06] [PASSED] 51 VFs
[13:00:06] [PASSED] 52 VFs
[13:00:06] [PASSED] 53 VFs
[13:00:06] [PASSED] 54 VFs
[13:00:06] [PASSED] 55 VFs
[13:00:06] [PASSED] 56 VFs
[13:00:06] [PASSED] 57 VFs
[13:00:06] [PASSED] 58 VFs
[13:00:06] [PASSED] 59 VFs
[13:00:06] [PASSED] 60 VFs
[13:00:06] [PASSED] 61 VFs
[13:00:06] [PASSED] 62 VFs
[13:00:06] [PASSED] 63 VFs
[13:00:06] ================= [PASSED] fair_doorbells ==================
[13:00:06] ======================== fair_ggtt ========================
[13:00:06] [PASSED] 1 VF
[13:00:06] [PASSED] 2 VFs
[13:00:06] [PASSED] 3 VFs
[13:00:06] [PASSED] 4 VFs
[13:00:06] [PASSED] 5 VFs
[13:00:06] [PASSED] 6 VFs
[13:00:07] [PASSED] 7 VFs
[13:00:07] [PASSED] 8 VFs
[13:00:07] [PASSED] 9 VFs
[13:00:07] [PASSED] 10 VFs
[13:00:07] [PASSED] 11 VFs
[13:00:07] [PASSED] 12 VFs
[13:00:07] [PASSED] 13 VFs
[13:00:07] [PASSED] 14 VFs
[13:00:07] [PASSED] 15 VFs
[13:00:07] [PASSED] 16 VFs
[13:00:07] [PASSED] 17 VFs
[13:00:07] [PASSED] 18 VFs
[13:00:07] [PASSED] 19 VFs
[13:00:07] [PASSED] 20 VFs
[13:00:07] [PASSED] 21 VFs
[13:00:07] [PASSED] 22 VFs
[13:00:07] [PASSED] 23 VFs
[13:00:07] [PASSED] 24 VFs
[13:00:07] [PASSED] 25 VFs
[13:00:07] [PASSED] 26 VFs
[13:00:07] [PASSED] 27 VFs
[13:00:07] [PASSED] 28 VFs
[13:00:07] [PASSED] 29 VFs
[13:00:07] [PASSED] 30 VFs
[13:00:07] [PASSED] 31 VFs
[13:00:07] [PASSED] 32 VFs
[13:00:07] [PASSED] 33 VFs
[13:00:07] [PASSED] 34 VFs
[13:00:07] [PASSED] 35 VFs
[13:00:07] [PASSED] 36 VFs
[13:00:07] [PASSED] 37 VFs
[13:00:07] [PASSED] 38 VFs
[13:00:07] [PASSED] 39 VFs
[13:00:07] [PASSED] 40 VFs
[13:00:07] [PASSED] 41 VFs
[13:00:07] [PASSED] 42 VFs
[13:00:07] [PASSED] 43 VFs
[13:00:07] [PASSED] 44 VFs
[13:00:07] [PASSED] 45 VFs
[13:00:07] [PASSED] 46 VFs
[13:00:07] [PASSED] 47 VFs
[13:00:07] [PASSED] 48 VFs
[13:00:07] [PASSED] 49 VFs
[13:00:07] [PASSED] 50 VFs
[13:00:07] [PASSED] 51 VFs
[13:00:07] [PASSED] 52 VFs
[13:00:07] [PASSED] 53 VFs
[13:00:07] [PASSED] 54 VFs
[13:00:07] [PASSED] 55 VFs
[13:00:07] [PASSED] 56 VFs
[13:00:07] [PASSED] 57 VFs
[13:00:07] [PASSED] 58 VFs
[13:00:07] [PASSED] 59 VFs
[13:00:07] [PASSED] 60 VFs
[13:00:07] [PASSED] 61 VFs
[13:00:07] [PASSED] 62 VFs
[13:00:07] [PASSED] 63 VFs
[13:00:07] ==================== [PASSED] fair_ggtt ====================
[13:00:07] ======================== fair_vram ========================
[13:00:07] [PASSED] 1 VF
[13:00:07] [PASSED] 2 VFs
[13:00:07] [PASSED] 3 VFs
[13:00:07] [PASSED] 4 VFs
[13:00:07] [PASSED] 5 VFs
[13:00:07] [PASSED] 6 VFs
[13:00:07] [PASSED] 7 VFs
[13:00:07] [PASSED] 8 VFs
[13:00:07] [PASSED] 9 VFs
[13:00:07] [PASSED] 10 VFs
[13:00:07] [PASSED] 11 VFs
[13:00:07] [PASSED] 12 VFs
[13:00:07] [PASSED] 13 VFs
[13:00:07] [PASSED] 14 VFs
[13:00:07] [PASSED] 15 VFs
[13:00:07] [PASSED] 16 VFs
[13:00:07] [PASSED] 17 VFs
[13:00:07] [PASSED] 18 VFs
[13:00:07] [PASSED] 19 VFs
[13:00:07] [PASSED] 20 VFs
[13:00:07] [PASSED] 21 VFs
[13:00:07] [PASSED] 22 VFs
[13:00:07] [PASSED] 23 VFs
[13:00:07] [PASSED] 24 VFs
[13:00:07] [PASSED] 25 VFs
[13:00:07] [PASSED] 26 VFs
[13:00:07] [PASSED] 27 VFs
[13:00:07] [PASSED] 28 VFs
[13:00:07] [PASSED] 29 VFs
[13:00:07] [PASSED] 30 VFs
[13:00:07] [PASSED] 31 VFs
[13:00:07] [PASSED] 32 VFs
[13:00:07] [PASSED] 33 VFs
[13:00:07] [PASSED] 34 VFs
[13:00:07] [PASSED] 35 VFs
[13:00:07] [PASSED] 36 VFs
[13:00:07] [PASSED] 37 VFs
[13:00:07] [PASSED] 38 VFs
[13:00:07] [PASSED] 39 VFs
[13:00:07] [PASSED] 40 VFs
[13:00:07] [PASSED] 41 VFs
[13:00:07] [PASSED] 42 VFs
[13:00:07] [PASSED] 43 VFs
[13:00:07] [PASSED] 44 VFs
[13:00:07] [PASSED] 45 VFs
[13:00:07] [PASSED] 46 VFs
[13:00:07] [PASSED] 47 VFs
[13:00:07] [PASSED] 48 VFs
[13:00:07] [PASSED] 49 VFs
[13:00:07] [PASSED] 50 VFs
[13:00:07] [PASSED] 51 VFs
[13:00:07] [PASSED] 52 VFs
[13:00:07] [PASSED] 53 VFs
[13:00:07] [PASSED] 54 VFs
[13:00:07] [PASSED] 55 VFs
[13:00:07] [PASSED] 56 VFs
[13:00:07] [PASSED] 57 VFs
[13:00:07] [PASSED] 58 VFs
[13:00:07] [PASSED] 59 VFs
[13:00:07] [PASSED] 60 VFs
[13:00:07] [PASSED] 61 VFs
[13:00:07] [PASSED] 62 VFs
[13:00:07] [PASSED] 63 VFs
[13:00:07] ==================== [PASSED] fair_vram ====================
[13:00:07] ================== [PASSED] pf_gt_config ===================
[13:00:07] ===================== lmtt (1 subtest) =====================
[13:00:07] ======================== test_ops =========================
[13:00:07] [PASSED] 2-level
[13:00:07] [PASSED] multi-level
[13:00:07] ==================== [PASSED] test_ops =====================
[13:00:07] ====================== [PASSED] lmtt =======================
[13:00:07] ================= pf_service (11 subtests) =================
[13:00:07] [PASSED] pf_negotiate_any
[13:00:07] [PASSED] pf_negotiate_base_match
[13:00:07] [PASSED] pf_negotiate_base_newer
[13:00:07] [PASSED] pf_negotiate_base_next
[13:00:07] [SKIPPED] pf_negotiate_base_older
[13:00:07] [PASSED] pf_negotiate_base_prev
[13:00:07] [PASSED] pf_negotiate_latest_match
[13:00:07] [PASSED] pf_negotiate_latest_newer
[13:00:07] [PASSED] pf_negotiate_latest_next
[13:00:07] [SKIPPED] pf_negotiate_latest_older
[13:00:07] [SKIPPED] pf_negotiate_latest_prev
[13:00:07] =================== [PASSED] pf_service ====================
[13:00:07] ================= xe_guc_g2g (2 subtests) ==================
[13:00:07] ============== xe_live_guc_g2g_kunit_default ==============
[13:00:07] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:00:07] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:00:07] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:00:07] =================== [SKIPPED] xe_guc_g2g ===================
[13:00:07] =================== xe_mocs (2 subtests) ===================
[13:00:07] ================ xe_live_mocs_kernel_kunit ================
[13:00:07] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:00:07] ================ xe_live_mocs_reset_kunit =================
[13:00:07] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:00:07] ==================== [SKIPPED] xe_mocs =====================
[13:00:07] ================= xe_migrate (2 subtests) ==================
[13:00:07] ================= xe_migrate_sanity_kunit =================
[13:00:07] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:00:07] ================== xe_validate_ccs_kunit ==================
[13:00:07] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:00:07] =================== [SKIPPED] xe_migrate ===================
[13:00:07] ================== xe_dma_buf (1 subtest) ==================
[13:00:07] ==================== xe_dma_buf_kunit =====================
[13:00:07] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:00:07] =================== [SKIPPED] xe_dma_buf ===================
[13:00:07] ================= xe_bo_shrink (1 subtest) =================
[13:00:07] =================== xe_bo_shrink_kunit ====================
[13:00:07] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:00:07] ================== [SKIPPED] xe_bo_shrink ==================
[13:00:07] ==================== xe_bo (2 subtests) ====================
[13:00:07] ================== xe_ccs_migrate_kunit ===================
[13:00:07] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:00:07] ==================== xe_bo_evict_kunit ====================
[13:00:07] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:00:07] ===================== [SKIPPED] xe_bo ======================
[13:00:07] ==================== args (13 subtests) ====================
[13:00:07] [PASSED] count_args_test
[13:00:07] [PASSED] call_args_example
[13:00:07] [PASSED] call_args_test
[13:00:07] [PASSED] drop_first_arg_example
[13:00:07] [PASSED] drop_first_arg_test
[13:00:07] [PASSED] first_arg_example
[13:00:07] [PASSED] first_arg_test
[13:00:07] [PASSED] last_arg_example
[13:00:07] [PASSED] last_arg_test
[13:00:07] [PASSED] pick_arg_example
[13:00:07] [PASSED] if_args_example
[13:00:07] [PASSED] if_args_test
[13:00:07] [PASSED] sep_comma_example
[13:00:07] ====================== [PASSED] args =======================
[13:00:07] =================== xe_pci (3 subtests) ====================
[13:00:07] ==================== check_graphics_ip ====================
[13:00:07] [PASSED] 12.00 Xe_LP
[13:00:07] [PASSED] 12.10 Xe_LP+
[13:00:07] [PASSED] 12.55 Xe_HPG
[13:00:07] [PASSED] 12.60 Xe_HPC
[13:00:07] [PASSED] 12.70 Xe_LPG
[13:00:07] [PASSED] 12.71 Xe_LPG
[13:00:07] [PASSED] 12.74 Xe_LPG+
[13:00:07] [PASSED] 20.01 Xe2_HPG
[13:00:07] [PASSED] 20.02 Xe2_HPG
[13:00:07] [PASSED] 20.04 Xe2_LPG
[13:00:07] [PASSED] 30.00 Xe3_LPG
[13:00:07] [PASSED] 30.01 Xe3_LPG
[13:00:07] [PASSED] 30.03 Xe3_LPG
[13:00:07] [PASSED] 30.04 Xe3_LPG
[13:00:07] [PASSED] 30.05 Xe3_LPG
[13:00:07] [PASSED] 35.10 Xe3p_LPG
[13:00:07] [PASSED] 35.11 Xe3p_XPC
[13:00:07] ================ [PASSED] check_graphics_ip ================
[13:00:07] ===================== check_media_ip ======================
[13:00:07] [PASSED] 12.00 Xe_M
[13:00:07] [PASSED] 12.55 Xe_HPM
[13:00:07] [PASSED] 13.00 Xe_LPM+
[13:00:07] [PASSED] 13.01 Xe2_HPM
[13:00:07] [PASSED] 20.00 Xe2_LPM
[13:00:07] [PASSED] 30.00 Xe3_LPM
[13:00:07] [PASSED] 30.02 Xe3_LPM
[13:00:07] [PASSED] 35.00 Xe3p_LPM
[13:00:07] [PASSED] 35.03 Xe3p_HPM
[13:00:07] ================= [PASSED] check_media_ip ==================
[13:00:07] =================== check_platform_desc ===================
[13:00:07] [PASSED] 0x9A60 (TIGERLAKE)
[13:00:07] [PASSED] 0x9A68 (TIGERLAKE)
[13:00:07] [PASSED] 0x9A70 (TIGERLAKE)
[13:00:07] [PASSED] 0x9A40 (TIGERLAKE)
[13:00:07] [PASSED] 0x9A49 (TIGERLAKE)
[13:00:07] [PASSED] 0x9A59 (TIGERLAKE)
[13:00:07] [PASSED] 0x9A78 (TIGERLAKE)
[13:00:07] [PASSED] 0x9AC0 (TIGERLAKE)
[13:00:07] [PASSED] 0x9AC9 (TIGERLAKE)
[13:00:07] [PASSED] 0x9AD9 (TIGERLAKE)
[13:00:07] [PASSED] 0x9AF8 (TIGERLAKE)
[13:00:07] [PASSED] 0x4C80 (ROCKETLAKE)
[13:00:07] [PASSED] 0x4C8A (ROCKETLAKE)
[13:00:07] [PASSED] 0x4C8B (ROCKETLAKE)
[13:00:07] [PASSED] 0x4C8C (ROCKETLAKE)
[13:00:07] [PASSED] 0x4C90 (ROCKETLAKE)
[13:00:07] [PASSED] 0x4C9A (ROCKETLAKE)
[13:00:07] [PASSED] 0x4680 (ALDERLAKE_S)
[13:00:07] [PASSED] 0x4682 (ALDERLAKE_S)
[13:00:07] [PASSED] 0x4688 (ALDERLAKE_S)
[13:00:07] [PASSED] 0x468A (ALDERLAKE_S)
[13:00:07] [PASSED] 0x468B (ALDERLAKE_S)
[13:00:07] [PASSED] 0x4690 (ALDERLAKE_S)
[13:00:07] [PASSED] 0x4692 (ALDERLAKE_S)
[13:00:07] [PASSED] 0x4693 (ALDERLAKE_S)
[13:00:07] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46AA (ALDERLAKE_P)
[13:00:07] [PASSED] 0x462A (ALDERLAKE_P)
[13:00:07] [PASSED] 0x4626 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x4628 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:00:07] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:00:07] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:00:07] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:00:07] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:00:07] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:00:07] [PASSED] 0xA721 (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA720 (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:00:07] [PASSED] 0xA780 (ALDERLAKE_S)
[13:00:07] [PASSED] 0xA781 (ALDERLAKE_S)
[13:00:07] [PASSED] 0xA782 (ALDERLAKE_S)
[13:00:07] [PASSED] 0xA783 (ALDERLAKE_S)
[13:00:07] [PASSED] 0xA788 (ALDERLAKE_S)
[13:00:07] [PASSED] 0xA789 (ALDERLAKE_S)
[13:00:07] [PASSED] 0xA78A (ALDERLAKE_S)
[13:00:07] [PASSED] 0xA78B (ALDERLAKE_S)
[13:00:07] [PASSED] 0x4905 (DG1)
[13:00:07] [PASSED] 0x4906 (DG1)
[13:00:07] [PASSED] 0x4907 (DG1)
[13:00:07] [PASSED] 0x4908 (DG1)
[13:00:07] [PASSED] 0x4909 (DG1)
[13:00:07] [PASSED] 0x56C0 (DG2)
[13:00:07] [PASSED] 0x56C2 (DG2)
[13:00:07] [PASSED] 0x56C1 (DG2)
[13:00:07] [PASSED] 0x7D51 (METEORLAKE)
[13:00:07] [PASSED] 0x7DD1 (METEORLAKE)
[13:00:07] [PASSED] 0x7D41 (METEORLAKE)
[13:00:07] [PASSED] 0x7D67 (METEORLAKE)
[13:00:07] [PASSED] 0xB640 (METEORLAKE)
[13:00:07] [PASSED] 0x56A0 (DG2)
[13:00:07] [PASSED] 0x56A1 (DG2)
[13:00:07] [PASSED] 0x56A2 (DG2)
[13:00:07] [PASSED] 0x56BE (DG2)
[13:00:07] [PASSED] 0x56BF (DG2)
[13:00:07] [PASSED] 0x5690 (DG2)
[13:00:07] [PASSED] 0x5691 (DG2)
[13:00:07] [PASSED] 0x5692 (DG2)
[13:00:07] [PASSED] 0x56A5 (DG2)
[13:00:07] [PASSED] 0x56A6 (DG2)
[13:00:07] [PASSED] 0x56B0 (DG2)
[13:00:07] [PASSED] 0x56B1 (DG2)
[13:00:07] [PASSED] 0x56BA (DG2)
[13:00:07] [PASSED] 0x56BB (DG2)
[13:00:07] [PASSED] 0x56BC (DG2)
[13:00:07] [PASSED] 0x56BD (DG2)
[13:00:07] [PASSED] 0x5693 (DG2)
[13:00:07] [PASSED] 0x5694 (DG2)
[13:00:07] [PASSED] 0x5695 (DG2)
[13:00:07] [PASSED] 0x56A3 (DG2)
[13:00:07] [PASSED] 0x56A4 (DG2)
[13:00:07] [PASSED] 0x56B2 (DG2)
[13:00:07] [PASSED] 0x56B3 (DG2)
[13:00:07] [PASSED] 0x5696 (DG2)
[13:00:07] [PASSED] 0x5697 (DG2)
[13:00:07] [PASSED] 0xB69 (PVC)
[13:00:07] [PASSED] 0xB6E (PVC)
[13:00:07] [PASSED] 0xBD4 (PVC)
[13:00:07] [PASSED] 0xBD5 (PVC)
[13:00:07] [PASSED] 0xBD6 (PVC)
[13:00:07] [PASSED] 0xBD7 (PVC)
[13:00:07] [PASSED] 0xBD8 (PVC)
[13:00:07] [PASSED] 0xBD9 (PVC)
[13:00:07] [PASSED] 0xBDA (PVC)
[13:00:07] [PASSED] 0xBDB (PVC)
[13:00:07] [PASSED] 0xBE0 (PVC)
[13:00:07] [PASSED] 0xBE1 (PVC)
[13:00:07] [PASSED] 0xBE5 (PVC)
[13:00:07] [PASSED] 0x7D40 (METEORLAKE)
[13:00:07] [PASSED] 0x7D45 (METEORLAKE)
[13:00:07] [PASSED] 0x7D55 (METEORLAKE)
[13:00:07] [PASSED] 0x7D60 (METEORLAKE)
[13:00:07] [PASSED] 0x7DD5 (METEORLAKE)
[13:00:07] [PASSED] 0x6420 (LUNARLAKE)
[13:00:07] [PASSED] 0x64A0 (LUNARLAKE)
[13:00:07] [PASSED] 0x64B0 (LUNARLAKE)
[13:00:07] [PASSED] 0xE202 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE209 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE20B (BATTLEMAGE)
[13:00:07] [PASSED] 0xE20C (BATTLEMAGE)
[13:00:07] [PASSED] 0xE20D (BATTLEMAGE)
[13:00:07] [PASSED] 0xE210 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE211 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE212 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE216 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE220 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE221 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE222 (BATTLEMAGE)
[13:00:07] [PASSED] 0xE223 (BATTLEMAGE)
[13:00:07] [PASSED] 0xB080 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB081 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB082 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB083 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB084 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB085 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB086 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB087 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB08F (PANTHERLAKE)
[13:00:07] [PASSED] 0xB090 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:00:07] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:00:07] [PASSED] 0xFD80 (PANTHERLAKE)
[13:00:07] [PASSED] 0xFD81 (PANTHERLAKE)
[13:00:07] [PASSED] 0xD740 (NOVALAKE_S)
[13:00:07] [PASSED] 0xD741 (NOVALAKE_S)
[13:00:07] [PASSED] 0xD742 (NOVALAKE_S)
[13:00:07] [PASSED] 0xD743 (NOVALAKE_S)
[13:00:07] [PASSED] 0xD744 (NOVALAKE_S)
[13:00:07] [PASSED] 0xD745 (NOVALAKE_S)
[13:00:07] [PASSED] 0x674C (CRESCENTISLAND)
[13:00:07] [PASSED] 0xD750 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD751 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD752 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD753 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD754 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD755 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD756 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD757 (NOVALAKE_P)
[13:00:07] [PASSED] 0xD75F (NOVALAKE_P)
[13:00:07] =============== [PASSED] check_platform_desc ===============
[13:00:07] ===================== [PASSED] xe_pci ======================
[13:00:07] =================== xe_rtp (2 subtests) ====================
[13:00:07] =============== xe_rtp_process_to_sr_tests ================
[13:00:07] [PASSED] coalesce-same-reg
[13:00:07] [PASSED] no-match-no-add
[13:00:07] [PASSED] match-or
[13:00:07] [PASSED] match-or-xfail
[13:00:07] [PASSED] no-match-no-add-multiple-rules
[13:00:07] [PASSED] two-regs-two-entries
[13:00:07] [PASSED] clr-one-set-other
[13:00:07] [PASSED] set-field
[13:00:07] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[13:00:07] [PASSED] conflict-not-disjoint
[13:00:07] [PASSED] conflict-reg-type
[13:00:07] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:00:07] ================== xe_rtp_process_tests ===================
[13:00:07] [PASSED] active1
[13:00:07] [PASSED] active2
[13:00:07] [PASSED] active-inactive
[13:00:07] [PASSED] inactive-active
[13:00:07] [PASSED] inactive-1st_or_active-inactive
[13:00:07] [PASSED] inactive-2nd_or_active-inactive
[13:00:07] [PASSED] inactive-last_or_active-inactive
[13:00:07] [PASSED] inactive-no_or_active-inactive
[13:00:07] ============== [PASSED] xe_rtp_process_tests ===============
[13:00:07] ===================== [PASSED] xe_rtp ======================
[13:00:07] ==================== xe_wa (1 subtest) =====================
[13:00:07] ======================== xe_wa_gt =========================
[13:00:07] [PASSED] TIGERLAKE B0
[13:00:07] [PASSED] DG1 A0
[13:00:07] [PASSED] DG1 B0
[13:00:07] [PASSED] ALDERLAKE_S A0
[13:00:07] [PASSED] ALDERLAKE_S B0
[13:00:07] [PASSED] ALDERLAKE_S C0
[13:00:07] [PASSED] ALDERLAKE_S D0
[13:00:07] [PASSED] ALDERLAKE_P A0
[13:00:07] [PASSED] ALDERLAKE_P B0
[13:00:07] [PASSED] ALDERLAKE_P C0
[13:00:07] [PASSED] ALDERLAKE_S RPLS D0
[13:00:07] [PASSED] ALDERLAKE_P RPLU E0
[13:00:07] [PASSED] DG2 G10 C0
[13:00:07] [PASSED] DG2 G11 B1
[13:00:07] [PASSED] DG2 G12 A1
[13:00:07] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:00:07] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:00:07] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:00:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:00:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:00:07] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:00:07] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:00:07] ==================== [PASSED] xe_wa_gt =====================
[13:00:07] ====================== [PASSED] xe_wa ======================
[13:00:07] ============================================================
[13:00:07] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[13:00:07] Elapsed time: 41.737s total, 4.516s configuring, 36.094s building, 1.083s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:00:07] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:00:10] 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
[13:00:58] Starting KUnit Kernel (1/1)...
[13:00:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:00:58] ============ drm_test_pick_cmdline (2 subtests) ============
[13:00:58] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:00:58] =============== drm_test_pick_cmdline_named ===============
[13:00:58] [PASSED] NTSC
[13:00:58] [PASSED] NTSC-J
[13:00:58] [PASSED] PAL
[13:00:58] [PASSED] PAL-M
[13:00:58] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:00:58] ============== [PASSED] drm_test_pick_cmdline ==============
[13:00:58] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:00:58] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:00:58] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:00:58] =========== drm_validate_clone_mode (2 subtests) ===========
[13:00:58] ============== drm_test_check_in_clone_mode ===============
[13:00:58] [PASSED] in_clone_mode
[13:00:58] [PASSED] not_in_clone_mode
[13:00:58] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:00:58] =============== drm_test_check_valid_clones ===============
[13:00:58] [PASSED] not_in_clone_mode
[13:00:58] [PASSED] valid_clone
[13:00:58] [PASSED] invalid_clone
[13:00:58] =========== [PASSED] drm_test_check_valid_clones ===========
[13:00:58] ============= [PASSED] drm_validate_clone_mode =============
[13:00:58] ============= drm_validate_modeset (1 subtest) =============
[13:00:58] [PASSED] drm_test_check_connector_changed_modeset
[13:00:58] ============== [PASSED] drm_validate_modeset ===============
[13:00:58] ====== drm_test_bridge_get_current_state (2 subtests) ======
[13:00:58] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:00:58] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[13:00:58] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:00:58] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:00:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:00:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:00:58] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[13:00:58] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:00:58] ============== drm_bridge_alloc (2 subtests) ===============
[13:00:58] [PASSED] drm_test_drm_bridge_alloc_basic
[13:00:58] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:00:58] ================ [PASSED] drm_bridge_alloc =================
[13:00:58] ============= drm_cmdline_parser (40 subtests) =============
[13:00:58] [PASSED] drm_test_cmdline_force_d_only
[13:00:58] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:00:58] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:00:58] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:00:58] [PASSED] drm_test_cmdline_force_e_only
[13:00:58] [PASSED] drm_test_cmdline_res
[13:00:58] [PASSED] drm_test_cmdline_res_vesa
[13:00:58] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:00:58] [PASSED] drm_test_cmdline_res_rblank
[13:00:58] [PASSED] drm_test_cmdline_res_bpp
[13:00:58] [PASSED] drm_test_cmdline_res_refresh
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:00:58] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:00:58] [PASSED] drm_test_cmdline_res_margins_force_on
[13:00:58] [PASSED] drm_test_cmdline_res_vesa_margins
[13:00:58] [PASSED] drm_test_cmdline_name
[13:00:58] [PASSED] drm_test_cmdline_name_bpp
[13:00:58] [PASSED] drm_test_cmdline_name_option
[13:00:58] [PASSED] drm_test_cmdline_name_bpp_option
[13:00:58] [PASSED] drm_test_cmdline_rotate_0
[13:00:58] [PASSED] drm_test_cmdline_rotate_90
[13:00:58] [PASSED] drm_test_cmdline_rotate_180
[13:00:58] [PASSED] drm_test_cmdline_rotate_270
[13:00:58] [PASSED] drm_test_cmdline_hmirror
[13:00:58] [PASSED] drm_test_cmdline_vmirror
[13:00:58] [PASSED] drm_test_cmdline_margin_options
[13:00:58] [PASSED] drm_test_cmdline_multiple_options
[13:00:58] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:00:58] [PASSED] drm_test_cmdline_extra_and_option
[13:00:58] [PASSED] drm_test_cmdline_freestanding_options
[13:00:58] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:00:58] [PASSED] drm_test_cmdline_panel_orientation
[13:00:58] ================ drm_test_cmdline_invalid =================
[13:00:58] [PASSED] margin_only
[13:00:58] [PASSED] interlace_only
[13:00:58] [PASSED] res_missing_x
[13:00:58] [PASSED] res_missing_y
[13:00:58] [PASSED] res_bad_y
[13:00:58] [PASSED] res_missing_y_bpp
[13:00:58] [PASSED] res_bad_bpp
[13:00:58] [PASSED] res_bad_refresh
[13:00:58] [PASSED] res_bpp_refresh_force_on_off
[13:00:58] [PASSED] res_invalid_mode
[13:00:58] [PASSED] res_bpp_wrong_place_mode
[13:00:58] [PASSED] name_bpp_refresh
[13:00:58] [PASSED] name_refresh
[13:00:58] [PASSED] name_refresh_wrong_mode
[13:00:58] [PASSED] name_refresh_invalid_mode
[13:00:58] [PASSED] rotate_multiple
[13:00:58] [PASSED] rotate_invalid_val
[13:00:58] [PASSED] rotate_truncated
[13:00:58] [PASSED] invalid_option
[13:00:58] [PASSED] invalid_tv_option
[13:00:58] [PASSED] truncated_tv_option
[13:00:58] ============ [PASSED] drm_test_cmdline_invalid =============
[13:00:58] =============== drm_test_cmdline_tv_options ===============
[13:00:58] [PASSED] NTSC
[13:00:58] [PASSED] NTSC_443
[13:00:58] [PASSED] NTSC_J
[13:00:58] [PASSED] PAL
[13:00:58] [PASSED] PAL_M
[13:00:58] [PASSED] PAL_N
[13:00:58] [PASSED] SECAM
[13:00:58] [PASSED] MONO_525
[13:00:58] [PASSED] MONO_625
[13:00:58] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:00:58] =============== [PASSED] drm_cmdline_parser ================
[13:00:58] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:00:58] [PASSED] drm_test_connector_hdmi_init_valid
[13:00:58] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:00:58] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:00:58] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:00:58] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:00:58] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:00:58] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:00:58] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:00:58] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:00:58] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:00:58] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:00:58] [PASSED] supported_formats=0x5 yuv420_allowed=1
[13:00:58] [PASSED] supported_formats=0x5 yuv420_allowed=0
[13:00:58] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:00:58] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:00:58] [PASSED] drm_test_connector_hdmi_init_null_product
[13:00:58] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:00:58] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:00:58] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:00:58] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:00:58] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:00:58] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:00:58] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:00:58] ========= drm_test_connector_hdmi_init_type_valid =========
[13:00:58] [PASSED] HDMI-A
[13:00:58] [PASSED] HDMI-B
[13:00:58] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:00:58] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:00:58] [PASSED] Unknown
[13:00:58] [PASSED] VGA
[13:00:58] [PASSED] DVI-I
[13:00:58] [PASSED] DVI-D
[13:00:58] [PASSED] DVI-A
[13:00:58] [PASSED] Composite
[13:00:58] [PASSED] SVIDEO
[13:00:58] [PASSED] LVDS
[13:00:58] [PASSED] Component
[13:00:58] [PASSED] DIN
[13:00:58] [PASSED] DP
[13:00:58] [PASSED] TV
[13:00:58] [PASSED] eDP
[13:00:58] [PASSED] Virtual
[13:00:58] [PASSED] DSI
[13:00:58] [PASSED] DPI
[13:00:58] [PASSED] Writeback
[13:00:58] [PASSED] SPI
[13:00:58] [PASSED] USB
[13:00:58] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:00:58] ============ [PASSED] drmm_connector_hdmi_init =============
[13:00:58] ============= drmm_connector_init (3 subtests) =============
[13:00:58] [PASSED] drm_test_drmm_connector_init
[13:00:58] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:00:58] ========= drm_test_drmm_connector_init_type_valid =========
[13:00:58] [PASSED] Unknown
[13:00:58] [PASSED] VGA
[13:00:58] [PASSED] DVI-I
[13:00:58] [PASSED] DVI-D
[13:00:58] [PASSED] DVI-A
[13:00:58] [PASSED] Composite
[13:00:58] [PASSED] SVIDEO
[13:00:58] [PASSED] LVDS
[13:00:58] [PASSED] Component
[13:00:58] [PASSED] DIN
[13:00:58] [PASSED] DP
[13:00:58] [PASSED] HDMI-A
[13:00:58] [PASSED] HDMI-B
[13:00:58] [PASSED] TV
[13:00:58] [PASSED] eDP
[13:00:58] [PASSED] Virtual
[13:00:58] [PASSED] DSI
[13:00:58] [PASSED] DPI
[13:00:58] [PASSED] Writeback
[13:00:58] [PASSED] SPI
[13:00:58] [PASSED] USB
[13:00:58] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:00:58] =============== [PASSED] drmm_connector_init ===============
[13:00:58] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_init
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:00:58] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:00:58] [PASSED] Unknown
[13:00:58] [PASSED] VGA
[13:00:58] [PASSED] DVI-I
[13:00:58] [PASSED] DVI-D
[13:00:58] [PASSED] DVI-A
[13:00:58] [PASSED] Composite
[13:00:58] [PASSED] SVIDEO
[13:00:58] [PASSED] LVDS
[13:00:58] [PASSED] Component
[13:00:58] [PASSED] DIN
[13:00:58] [PASSED] DP
[13:00:58] [PASSED] HDMI-A
[13:00:58] [PASSED] HDMI-B
[13:00:58] [PASSED] TV
[13:00:58] [PASSED] eDP
[13:00:58] [PASSED] Virtual
[13:00:58] [PASSED] DSI
[13:00:58] [PASSED] DPI
[13:00:58] [PASSED] Writeback
[13:00:58] [PASSED] SPI
[13:00:58] [PASSED] USB
[13:00:58] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:00:58] ======== drm_test_drm_connector_dynamic_init_name =========
[13:00:58] [PASSED] Unknown
[13:00:58] [PASSED] VGA
[13:00:58] [PASSED] DVI-I
[13:00:58] [PASSED] DVI-D
[13:00:58] [PASSED] DVI-A
[13:00:58] [PASSED] Composite
[13:00:58] [PASSED] SVIDEO
[13:00:58] [PASSED] LVDS
[13:00:58] [PASSED] Component
[13:00:58] [PASSED] DIN
[13:00:58] [PASSED] DP
[13:00:58] [PASSED] HDMI-A
[13:00:58] [PASSED] HDMI-B
[13:00:58] [PASSED] TV
[13:00:58] [PASSED] eDP
[13:00:58] [PASSED] Virtual
[13:00:58] [PASSED] DSI
[13:00:58] [PASSED] DPI
[13:00:58] [PASSED] Writeback
[13:00:58] [PASSED] SPI
[13:00:58] [PASSED] USB
[13:00:58] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:00:58] =========== [PASSED] drm_connector_dynamic_init ============
[13:00:58] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:00:58] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:00:58] ======= drm_connector_dynamic_register (7 subtests) ========
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:00:58] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:00:58] ========= [PASSED] drm_connector_dynamic_register ==========
[13:00:58] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:00:58] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:00:58] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:00:58] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:00:58] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:00:58] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:00:58] [PASSED] NTSC
[13:00:58] [PASSED] NTSC-443
[13:00:58] [PASSED] NTSC-J
[13:00:58] [PASSED] PAL
[13:00:58] [PASSED] PAL-M
[13:00:58] [PASSED] PAL-N
[13:00:58] [PASSED] SECAM
[13:00:58] [PASSED] Mono
[13:00:58] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:00:58] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:00:58] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:00:58] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:00:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:00:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:00:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:00:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:00:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:00:58] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:00:58] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:00:58] [PASSED] VIC 96
[13:00:58] [PASSED] VIC 97
[13:00:58] [PASSED] VIC 101
[13:00:58] [PASSED] VIC 102
[13:00:58] [PASSED] VIC 106
[13:00:58] [PASSED] VIC 107
[13:00:58] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:00:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:00:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:00:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:00:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:00:58] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:00:58] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:00:58] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:00:58] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:00:58] [PASSED] Automatic
[13:00:58] [PASSED] Full
[13:00:58] [PASSED] Limited 16:235
[13:00:58] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:00:58] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:00:58] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:00:58] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:00:58] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:00:58] [PASSED] RGB
[13:00:58] [PASSED] YUV 4:2:0
[13:00:58] [PASSED] YUV 4:2:2
[13:00:58] [PASSED] YUV 4:4:4
[13:00:58] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:00:58] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:00:58] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:00:58] ============= drm_damage_helper (21 subtests) ==============
[13:00:58] [PASSED] drm_test_damage_iter_no_damage
[13:00:58] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:00:58] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:00:58] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:00:58] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:00:58] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:00:58] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:00:58] [PASSED] drm_test_damage_iter_simple_damage
[13:00:58] [PASSED] drm_test_damage_iter_single_damage
[13:00:58] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:00:58] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:00:58] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:00:58] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:00:58] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:00:58] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:00:58] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:00:58] [PASSED] drm_test_damage_iter_damage
[13:00:58] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:00:58] [PASSED] drm_test_damage_iter_damage_one_outside
[13:00:58] [PASSED] drm_test_damage_iter_damage_src_moved
[13:00:58] [PASSED] drm_test_damage_iter_damage_not_visible
[13:00:58] ================ [PASSED] drm_damage_helper ================
[13:00:58] ============== drm_dp_mst_helper (3 subtests) ==============
[13:00:58] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:00:58] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:00:58] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:00:58] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:00:58] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:00:58] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:00:58] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:00:58] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:00:58] [PASSED] Link rate 2000000 lane count 4
[13:00:58] [PASSED] Link rate 2000000 lane count 2
[13:00:58] [PASSED] Link rate 2000000 lane count 1
[13:00:58] [PASSED] Link rate 1350000 lane count 4
[13:00:58] [PASSED] Link rate 1350000 lane count 2
[13:00:58] [PASSED] Link rate 1350000 lane count 1
[13:00:58] [PASSED] Link rate 1000000 lane count 4
[13:00:58] [PASSED] Link rate 1000000 lane count 2
[13:00:58] [PASSED] Link rate 1000000 lane count 1
[13:00:58] [PASSED] Link rate 810000 lane count 4
[13:00:58] [PASSED] Link rate 810000 lane count 2
[13:00:58] [PASSED] Link rate 810000 lane count 1
[13:00:58] [PASSED] Link rate 540000 lane count 4
[13:00:58] [PASSED] Link rate 540000 lane count 2
[13:00:58] [PASSED] Link rate 540000 lane count 1
[13:00:58] [PASSED] Link rate 270000 lane count 4
[13:00:58] [PASSED] Link rate 270000 lane count 2
[13:00:58] [PASSED] Link rate 270000 lane count 1
[13:00:58] [PASSED] Link rate 162000 lane count 4
[13:00:58] [PASSED] Link rate 162000 lane count 2
[13:00:58] [PASSED] Link rate 162000 lane count 1
[13:00:58] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:00:58] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:00:58] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:00:58] [PASSED] DP_POWER_UP_PHY with port number
[13:00:58] [PASSED] DP_POWER_DOWN_PHY with port number
[13:00:58] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:00:58] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:00:58] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:00:58] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:00:58] [PASSED] DP_QUERY_PAYLOAD with port number
[13:00:58] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:00:58] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:00:58] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:00:58] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:00:58] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:00:58] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:00:58] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:00:58] [PASSED] DP_REMOTE_I2C_READ with port number
[13:00:58] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:00:58] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:00:58] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:00:58] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:00:58] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:00:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:00:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:00:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:00:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:00:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:00:58] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:00:58] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:00:58] ================ [PASSED] drm_dp_mst_helper ================
[13:00:58] ================== drm_exec (7 subtests) ===================
[13:00:58] [PASSED] sanitycheck
[13:00:58] [PASSED] test_lock
[13:00:58] [PASSED] test_lock_unlock
[13:00:58] [PASSED] test_duplicates
[13:00:58] [PASSED] test_prepare
[13:00:58] [PASSED] test_prepare_array
[13:00:58] [PASSED] test_multiple_loops
[13:00:58] ==================== [PASSED] drm_exec =====================
[13:00:58] =========== drm_format_helper_test (17 subtests) ===========
[13:00:58] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:00:58] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:00:58] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:00:58] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:00:58] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:00:58] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:00:58] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:00:58] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:00:58] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:00:58] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:00:58] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:00:58] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:00:58] ==================== drm_test_fb_swab =====================
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ================ [PASSED] drm_test_fb_swab =================
[13:00:58] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:00:58] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:00:58] [PASSED] single_pixel_source_buffer
[13:00:58] [PASSED] single_pixel_clip_rectangle
[13:00:58] [PASSED] well_known_colors
[13:00:58] [PASSED] destination_pitch
[13:00:58] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:00:58] ================= drm_test_fb_clip_offset =================
[13:00:58] [PASSED] pass through
[13:00:58] [PASSED] horizontal offset
[13:00:58] [PASSED] vertical offset
[13:00:58] [PASSED] horizontal and vertical offset
[13:00:58] [PASSED] horizontal offset (custom pitch)
[13:00:58] [PASSED] vertical offset (custom pitch)
[13:00:58] [PASSED] horizontal and vertical offset (custom pitch)
[13:00:58] ============= [PASSED] drm_test_fb_clip_offset =============
[13:00:58] =================== drm_test_fb_memcpy ====================
[13:00:58] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:00:58] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:00:58] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:00:58] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:00:58] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:00:58] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:00:58] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:00:58] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:00:58] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:00:58] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:00:58] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:00:58] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:00:58] =============== [PASSED] drm_test_fb_memcpy ================
[13:00:58] ============= [PASSED] drm_format_helper_test ==============
[13:00:58] ================= drm_format (18 subtests) =================
[13:00:58] [PASSED] drm_test_format_block_width_invalid
[13:00:58] [PASSED] drm_test_format_block_width_one_plane
[13:00:58] [PASSED] drm_test_format_block_width_two_plane
[13:00:58] [PASSED] drm_test_format_block_width_three_plane
[13:00:58] [PASSED] drm_test_format_block_width_tiled
[13:00:58] [PASSED] drm_test_format_block_height_invalid
[13:00:58] [PASSED] drm_test_format_block_height_one_plane
[13:00:58] [PASSED] drm_test_format_block_height_two_plane
[13:00:58] [PASSED] drm_test_format_block_height_three_plane
[13:00:58] [PASSED] drm_test_format_block_height_tiled
[13:00:58] [PASSED] drm_test_format_min_pitch_invalid
[13:00:58] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:00:58] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:00:58] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:00:58] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:00:58] [PASSED] drm_test_format_min_pitch_two_plane
[13:00:58] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:00:58] [PASSED] drm_test_format_min_pitch_tiled
[13:00:58] =================== [PASSED] drm_format ====================
[13:00:58] ============== drm_framebuffer (10 subtests) ===============
[13:00:58] ========== drm_test_framebuffer_check_src_coords ==========
[13:00:58] [PASSED] Success: source fits into fb
[13:00:58] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:00:58] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:00:58] [PASSED] Fail: overflowing fb with source width
[13:00:58] [PASSED] Fail: overflowing fb with source height
[13:00:58] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:00:58] [PASSED] drm_test_framebuffer_cleanup
[13:00:58] =============== drm_test_framebuffer_create ===============
[13:00:58] [PASSED] ABGR8888 normal sizes
[13:00:58] [PASSED] ABGR8888 max sizes
[13:00:58] [PASSED] ABGR8888 pitch greater than min required
[13:00:58] [PASSED] ABGR8888 pitch less than min required
[13:00:58] [PASSED] ABGR8888 Invalid width
[13:00:58] [PASSED] ABGR8888 Invalid buffer handle
[13:00:58] [PASSED] No pixel format
[13:00:58] [PASSED] ABGR8888 Width 0
[13:00:58] [PASSED] ABGR8888 Height 0
[13:00:58] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:00:58] [PASSED] ABGR8888 Large buffer offset
[13:00:58] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:00:58] [PASSED] ABGR8888 Invalid flag
[13:00:58] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:00:58] [PASSED] ABGR8888 Valid buffer modifier
[13:00:58] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:00:58] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:00:58] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:00:58] [PASSED] NV12 Normal sizes
[13:00:58] [PASSED] NV12 Max sizes
[13:00:58] [PASSED] NV12 Invalid pitch
[13:00:58] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:00:58] [PASSED] NV12 different modifier per-plane
[13:00:58] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:00:58] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:00:58] [PASSED] NV12 Modifier for inexistent plane
[13:00:58] [PASSED] NV12 Handle for inexistent plane
[13:00:58] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:00:58] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:00:58] [PASSED] YVU420 Normal sizes
[13:00:58] [PASSED] YVU420 Max sizes
[13:00:58] [PASSED] YVU420 Invalid pitch
[13:00:58] [PASSED] YVU420 Different pitches
[13:00:58] [PASSED] YVU420 Different buffer offsets/pitches
[13:00:58] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:00:58] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:00:58] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:00:58] [PASSED] YVU420 Valid modifier
[13:00:58] [PASSED] YVU420 Different modifiers per plane
[13:00:58] [PASSED] YVU420 Modifier for inexistent plane
[13:00:58] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:00:58] [PASSED] X0L2 Normal sizes
[13:00:58] [PASSED] X0L2 Max sizes
[13:00:58] [PASSED] X0L2 Invalid pitch
[13:00:58] [PASSED] X0L2 Pitch greater than minimum required
[13:00:58] [PASSED] X0L2 Handle for inexistent plane
[13:00:58] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:00:58] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:00:58] [PASSED] X0L2 Valid modifier
[13:00:58] [PASSED] X0L2 Modifier for inexistent plane
[13:00:58] =========== [PASSED] drm_test_framebuffer_create ===========
[13:00:58] [PASSED] drm_test_framebuffer_free
[13:00:58] [PASSED] drm_test_framebuffer_init
[13:00:58] [PASSED] drm_test_framebuffer_init_bad_format
[13:00:58] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:00:58] [PASSED] drm_test_framebuffer_lookup
[13:00:58] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:00:58] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:00:58] ================= [PASSED] drm_framebuffer =================
[13:00:58] ================ drm_gem_shmem (8 subtests) ================
[13:00:58] [PASSED] drm_gem_shmem_test_obj_create
[13:00:58] [PASSED] drm_gem_shmem_test_obj_create_private
[13:00:58] [PASSED] drm_gem_shmem_test_pin_pages
[13:00:58] [PASSED] drm_gem_shmem_test_vmap
[13:00:58] [PASSED] drm_gem_shmem_test_get_sg_table
[13:00:58] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:00:58] [PASSED] drm_gem_shmem_test_madvise
[13:00:58] [PASSED] drm_gem_shmem_test_purge
[13:00:58] ================== [PASSED] drm_gem_shmem ==================
[13:00:58] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:00:58] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:00:58] [PASSED] Automatic
[13:00:58] [PASSED] Full
[13:00:58] [PASSED] Limited 16:235
[13:00:58] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:00:58] [PASSED] drm_test_check_disable_connector
[13:00:58] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:00:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:00:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:00:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:00:58] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:00:58] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:00:58] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:00:58] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:00:58] [PASSED] drm_test_check_output_bpc_dvi
[13:00:58] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:00:58] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:00:58] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:00:58] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:00:58] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:00:58] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:00:58] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:00:58] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:00:58] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:00:58] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:00:58] [PASSED] drm_test_check_broadcast_rgb_value
[13:00:58] [PASSED] drm_test_check_bpc_8_value
[13:00:58] [PASSED] drm_test_check_bpc_10_value
[13:00:58] [PASSED] drm_test_check_bpc_12_value
[13:00:58] [PASSED] drm_test_check_format_value
[13:00:58] [PASSED] drm_test_check_tmds_char_value
[13:00:58] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:00:58] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[13:00:58] [PASSED] drm_test_check_mode_valid
[13:00:58] [PASSED] drm_test_check_mode_valid_reject
[13:00:58] [PASSED] drm_test_check_mode_valid_reject_rate
[13:00:58] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:00:58] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:00:58] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:00:58] [PASSED] drm_test_check_infoframes
[13:00:58] [PASSED] drm_test_check_reject_avi_infoframe
[13:00:58] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:00:58] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:00:58] [PASSED] drm_test_check_reject_audio_infoframe
[13:00:58] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:00:58] ================= drm_managed (2 subtests) =================
[13:00:58] [PASSED] drm_test_managed_release_action
[13:00:58] [PASSED] drm_test_managed_run_action
[13:00:58] =================== [PASSED] drm_managed ===================
[13:00:58] =================== drm_mm (6 subtests) ====================
[13:00:58] [PASSED] drm_test_mm_init
[13:00:58] [PASSED] drm_test_mm_debug
[13:00:58] [PASSED] drm_test_mm_align32
[13:00:58] [PASSED] drm_test_mm_align64
[13:00:58] [PASSED] drm_test_mm_lowest
[13:00:58] [PASSED] drm_test_mm_highest
[13:00:58] ===================== [PASSED] drm_mm ======================
[13:00:58] ============= drm_modes_analog_tv (5 subtests) =============
[13:00:58] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:00:58] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:00:58] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:00:58] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:00:58] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:00:58] =============== [PASSED] drm_modes_analog_tv ===============
[13:00:58] ============== drm_plane_helper (2 subtests) ===============
[13:00:58] =============== drm_test_check_plane_state ================
[13:00:58] [PASSED] clipping_simple
[13:00:58] [PASSED] clipping_rotate_reflect
[13:00:58] [PASSED] positioning_simple
[13:00:58] [PASSED] upscaling
[13:00:58] [PASSED] downscaling
[13:00:58] [PASSED] rounding1
[13:00:58] [PASSED] rounding2
[13:00:58] [PASSED] rounding3
[13:00:58] [PASSED] rounding4
[13:00:58] =========== [PASSED] drm_test_check_plane_state ============
[13:00:58] =========== drm_test_check_invalid_plane_state ============
[13:00:58] [PASSED] positioning_invalid
[13:00:58] [PASSED] upscaling_invalid
[13:00:58] [PASSED] downscaling_invalid
[13:00:58] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:00:58] ================ [PASSED] drm_plane_helper =================
[13:00:58] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:00:58] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:00:58] [PASSED] None
[13:00:58] [PASSED] PAL
[13:00:58] [PASSED] NTSC
[13:00:58] [PASSED] Both, NTSC Default
[13:00:58] [PASSED] Both, PAL Default
[13:00:58] [PASSED] Both, NTSC Default, with PAL on command-line
[13:00:58] [PASSED] Both, PAL Default, with NTSC on command-line
[13:00:58] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:00:58] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:00:58] ================== drm_rect (9 subtests) ===================
[13:00:58] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:00:58] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:00:58] [PASSED] drm_test_rect_clip_scaled_clipped
[13:00:58] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:00:58] ================= drm_test_rect_intersect =================
[13:00:58] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:00:58] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:00:58] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:00:58] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:00:58] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:00:58] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:00:58] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:00:58] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:00:58] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:00:58] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:00:58] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:00:58] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:00:58] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:00:58] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:00:58] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:00:58] ============= [PASSED] drm_test_rect_intersect =============
[13:00:58] ================ drm_test_rect_calc_hscale ================
[13:00:58] [PASSED] normal use
[13:00:58] [PASSED] out of max range
[13:00:58] [PASSED] out of min range
[13:00:58] [PASSED] zero dst
[13:00:58] [PASSED] negative src
[13:00:58] [PASSED] negative dst
[13:00:58] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:00:58] ================ drm_test_rect_calc_vscale ================
[13:00:58] [PASSED] normal use
[13:00:58] [PASSED] out of max range
[13:00:58] [PASSED] out of min range
[13:00:58] [PASSED] zero dst
[13:00:58] [PASSED] negative src
[13:00:58] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[13:00:58] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:00:58] ================== drm_test_rect_rotate ===================
[13:00:58] [PASSED] reflect-x
[13:00:58] [PASSED] reflect-y
[13:00:58] [PASSED] rotate-0
[13:00:58] [PASSED] rotate-90
[13:00:58] [PASSED] rotate-180
[13:00:58] [PASSED] rotate-270
[13:00:58] ============== [PASSED] drm_test_rect_rotate ===============
[13:00:58] ================ drm_test_rect_rotate_inv =================
[13:00:58] [PASSED] reflect-x
[13:00:58] [PASSED] reflect-y
[13:00:58] [PASSED] rotate-0
[13:00:58] [PASSED] rotate-90
[13:00:58] [PASSED] rotate-180
[13:00:58] [PASSED] rotate-270
[13:00:58] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:00:58] ==================== [PASSED] drm_rect =====================
[13:00:58] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:00:58] ============ drm_test_sysfb_build_fourcc_list =============
[13:00:58] [PASSED] no native formats
[13:00:58] [PASSED] XRGB8888 as native format
[13:00:58] [PASSED] remove duplicates
[13:00:58] [PASSED] convert alpha formats
[13:00:58] [PASSED] random formats
[13:00:58] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:00:58] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:00:58] ================== drm_fixp (2 subtests) ===================
[13:00:58] [PASSED] drm_test_int2fixp
[13:00:58] [PASSED] drm_test_sm2fixp
[13:00:58] ==================== [PASSED] drm_fixp =====================
[13:00:58] ============================================================
[13:00:58] Testing complete. Ran 621 tests: passed: 621
[13:00:58] Elapsed time: 50.946s total, 2.612s configuring, 48.111s building, 0.209s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:00:58] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:01:01] 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
[13:01:17] Starting KUnit Kernel (1/1)...
[13:01:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:01:17] ================= ttm_device (5 subtests) ==================
[13:01:17] [PASSED] ttm_device_init_basic
[13:01:17] [PASSED] ttm_device_init_multiple
[13:01:17] [PASSED] ttm_device_fini_basic
[13:01:17] [PASSED] ttm_device_init_no_vma_man
[13:01:17] ================== ttm_device_init_pools ==================
[13:01:17] [PASSED] No DMA allocations, no DMA32 required
[13:01:17] [PASSED] DMA allocations, DMA32 required
[13:01:17] [PASSED] No DMA allocations, DMA32 required
[13:01:17] [PASSED] DMA allocations, no DMA32 required
[13:01:17] ============== [PASSED] ttm_device_init_pools ==============
[13:01:17] =================== [PASSED] ttm_device ====================
[13:01:17] ================== ttm_pool (8 subtests) ===================
[13:01:17] ================== ttm_pool_alloc_basic ===================
[13:01:17] [PASSED] One page
[13:01:17] [PASSED] More than one page
[13:01:17] [PASSED] Above the allocation limit
[13:01:17] [PASSED] One page, with coherent DMA mappings enabled
[13:01:17] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:01:17] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:01:17] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:01:17] [PASSED] One page
[13:01:17] [PASSED] More than one page
[13:01:17] [PASSED] Above the allocation limit
[13:01:17] [PASSED] One page, with coherent DMA mappings enabled
[13:01:17] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:01:17] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:01:17] [PASSED] ttm_pool_alloc_order_caching_match
[13:01:17] [PASSED] ttm_pool_alloc_caching_mismatch
[13:01:17] [PASSED] ttm_pool_alloc_order_mismatch
[13:01:17] [PASSED] ttm_pool_free_dma_alloc
[13:01:17] [PASSED] ttm_pool_free_no_dma_alloc
[13:01:17] [PASSED] ttm_pool_fini_basic
[13:01:17] ==================== [PASSED] ttm_pool =====================
[13:01:17] ================ ttm_resource (8 subtests) =================
[13:01:17] ================= ttm_resource_init_basic =================
[13:01:17] [PASSED] Init resource in TTM_PL_SYSTEM
[13:01:17] [PASSED] Init resource in TTM_PL_VRAM
[13:01:17] [PASSED] Init resource in a private placement
[13:01:17] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:01:17] ============= [PASSED] ttm_resource_init_basic =============
[13:01:17] [PASSED] ttm_resource_init_pinned
[13:01:17] [PASSED] ttm_resource_fini_basic
[13:01:17] [PASSED] ttm_resource_manager_init_basic
[13:01:17] [PASSED] ttm_resource_manager_usage_basic
[13:01:17] [PASSED] ttm_resource_manager_set_used_basic
[13:01:17] [PASSED] ttm_sys_man_alloc_basic
[13:01:17] [PASSED] ttm_sys_man_free_basic
[13:01:17] ================== [PASSED] ttm_resource ===================
[13:01:17] =================== ttm_tt (15 subtests) ===================
[13:01:17] ==================== ttm_tt_init_basic ====================
[13:01:17] [PASSED] Page-aligned size
[13:01:17] [PASSED] Extra pages requested
[13:01:17] ================ [PASSED] ttm_tt_init_basic ================
[13:01:17] [PASSED] ttm_tt_init_misaligned
[13:01:17] [PASSED] ttm_tt_fini_basic
[13:01:17] [PASSED] ttm_tt_fini_sg
[13:01:17] [PASSED] ttm_tt_fini_shmem
[13:01:17] [PASSED] ttm_tt_create_basic
[13:01:17] [PASSED] ttm_tt_create_invalid_bo_type
[13:01:17] [PASSED] ttm_tt_create_ttm_exists
[13:01:17] [PASSED] ttm_tt_create_failed
[13:01:17] [PASSED] ttm_tt_destroy_basic
[13:01:17] [PASSED] ttm_tt_populate_null_ttm
[13:01:17] [PASSED] ttm_tt_populate_populated_ttm
[13:01:17] [PASSED] ttm_tt_unpopulate_basic
[13:01:17] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:01:17] [PASSED] ttm_tt_swapin_basic
[13:01:17] ===================== [PASSED] ttm_tt ======================
[13:01:17] =================== ttm_bo (14 subtests) ===================
[13:01:17] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:01:17] [PASSED] Cannot be interrupted and sleeps
[13:01:17] [PASSED] Cannot be interrupted, locks straight away
[13:01:17] [PASSED] Can be interrupted, sleeps
[13:01:17] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:01:17] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:01:17] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:01:18] [PASSED] ttm_bo_reserve_double_resv
[13:01:18] [PASSED] ttm_bo_reserve_interrupted
[13:01:18] [PASSED] ttm_bo_reserve_deadlock
[13:01:18] [PASSED] ttm_bo_unreserve_basic
[13:01:18] [PASSED] ttm_bo_unreserve_pinned
[13:01:18] [PASSED] ttm_bo_unreserve_bulk
[13:01:18] [PASSED] ttm_bo_fini_basic
[13:01:18] [PASSED] ttm_bo_fini_shared_resv
[13:01:18] [PASSED] ttm_bo_pin_basic
[13:01:18] [PASSED] ttm_bo_pin_unpin_resource
[13:01:18] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:01:18] ===================== [PASSED] ttm_bo ======================
[13:01:18] ============== ttm_bo_validate (22 subtests) ===============
[13:01:18] ============== ttm_bo_init_reserved_sys_man ===============
[13:01:18] [PASSED] Buffer object for userspace
[13:01:18] [PASSED] Kernel buffer object
[13:01:18] [PASSED] Shared buffer object
[13:01:18] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:01:18] ============== ttm_bo_init_reserved_mock_man ==============
[13:01:18] [PASSED] Buffer object for userspace
[13:01:18] [PASSED] Kernel buffer object
[13:01:18] [PASSED] Shared buffer object
[13:01:18] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:01:18] [PASSED] ttm_bo_init_reserved_resv
[13:01:18] ================== ttm_bo_validate_basic ==================
[13:01:18] [PASSED] Buffer object for userspace
[13:01:18] [PASSED] Kernel buffer object
[13:01:18] [PASSED] Shared buffer object
[13:01:18] ============== [PASSED] ttm_bo_validate_basic ==============
[13:01:18] [PASSED] ttm_bo_validate_invalid_placement
[13:01:18] ============= ttm_bo_validate_same_placement ==============
[13:01:18] [PASSED] System manager
[13:01:18] [PASSED] VRAM manager
[13:01:18] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:01:18] [PASSED] ttm_bo_validate_failed_alloc
[13:01:18] [PASSED] ttm_bo_validate_pinned
[13:01:18] [PASSED] ttm_bo_validate_busy_placement
[13:01:18] ================ ttm_bo_validate_multihop =================
[13:01:18] [PASSED] Buffer object for userspace
[13:01:18] [PASSED] Kernel buffer object
[13:01:18] [PASSED] Shared buffer object
[13:01:18] ============ [PASSED] ttm_bo_validate_multihop =============
[13:01:18] ========== ttm_bo_validate_no_placement_signaled ==========
[13:01:18] [PASSED] Buffer object in system domain, no page vector
[13:01:18] [PASSED] Buffer object in system domain with an existing page vector
[13:01:18] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:01:18] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:01:18] [PASSED] Buffer object for userspace
[13:01:18] [PASSED] Kernel buffer object
[13:01:18] [PASSED] Shared buffer object
[13:01:18] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:01:18] [PASSED] ttm_bo_validate_move_fence_signaled
[13:01:18] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:01:18] [PASSED] Waits for GPU
[13:01:18] [PASSED] Tries to lock straight away
[13:01:18] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:01:18] [PASSED] ttm_bo_validate_swapout
[13:01:18] [PASSED] ttm_bo_validate_happy_evict
[13:01:18] [PASSED] ttm_bo_validate_all_pinned_evict
[13:01:18] [PASSED] ttm_bo_validate_allowed_only_evict
[13:01:18] [PASSED] ttm_bo_validate_deleted_evict
[13:01:18] [PASSED] ttm_bo_validate_busy_domain_evict
[13:01:18] [PASSED] ttm_bo_validate_evict_gutting
[13:01:18] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[13:01:18] ================= [PASSED] ttm_bo_validate =================
[13:01:18] ============================================================
[13:01:18] Testing complete. Ran 102 tests: passed: 102
[13:01:18] Elapsed time: 19.488s total, 2.879s configuring, 16.285s building, 0.264s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Xe.CI.BAT: success for Do not create drm device for PF only admin mode (rev12)
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
` (6 preceding siblings ...)
2026-04-13 13:01 ` ✓ CI.KUnit: success for Do not create drm device for PF only admin mode (rev12) Patchwork
@ 2026-04-13 14:26 ` Patchwork
2026-04-13 15:34 ` ✗ Xe.CI.FULL: failure " Patchwork
8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-13 14:26 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2020 bytes --]
== Series Details ==
Series: Do not create drm device for PF only admin mode (rev12)
URL : https://patchwork.freedesktop.org/series/160349/
State : success
== Summary ==
CI Bug Log - changes from xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e_BAT -> xe-pw-160349v12_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 12)
------------------------------
Missing (2): bat-dg2-oem2 bat-ptl-vm
Known issues
------------
Here are the changes found in xe-pw-160349v12_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* Linux: xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e -> xe-pw-160349v12
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e: 677cbe5bf50a5de31ce771528f249a7531a2ae9e
xe-pw-160349v12: 160349v12
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/index.html
[-- Attachment #2: Type: text/html, Size: 2684 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.FULL: failure for Do not create drm device for PF only admin mode (rev12)
2026-04-09 15:44 [PATCH v11 0/2] Do not create drm device for PF only admin mode Satyanarayana K V P
` (7 preceding siblings ...)
2026-04-13 14:26 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-13 15:34 ` Patchwork
2026-04-14 6:25 ` K V P, Satyanarayana
8 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2026-04-13 15:34 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 32995 bytes --]
== Series Details ==
Series: Do not create drm device for PF only admin mode (rev12)
URL : https://patchwork.freedesktop.org/series/160349/
State : failure
== Summary ==
CI Bug Log - changes from xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e_FULL -> xe-pw-160349v12_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-160349v12_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-160349v12_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-160349v12_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-bmg: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
Known issues
------------
Here are the changes found in xe-pw-160349v12_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#3658] / [Intel XE#7360])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#7675] / [Intel XE#7679])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#7676])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367] / [Intel XE#7354])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652]) +8 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3432]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#3432])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#306] / [Intel XE#7358])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#373])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2252]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2390] / [Intel XE#6974])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2321] / [Intel XE#7355])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1424]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#309] / [Intel XE#7343]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2286] / [Intel XE#6035])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1508])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#4302])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#703] / [Intel XE#7448])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1421]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-bmg: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#5208] / [Intel XE#7725])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-10/igt@kms_flip@2x-dpms-vs-vblank-race.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7179])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6312])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4141]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2311])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#656]) +10 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2313]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7061] / [Intel XE#7356])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6901])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#6900] / [Intel XE#7362]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7591])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7283]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7130]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#4596] / [Intel XE#5854])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: NOTRUN -> [FAIL][45] ([Intel XE#7340] / [Intel XE#7504])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1489])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/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][49] ([Intel XE#4608])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#4608] / [Intel XE#7304])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr@pr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1406])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2414])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1127] / [Intel XE#5813])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#3904] / [Intel XE#7342])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1447] / [Intel XE#7471])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7636]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#6540] / [Intel XE#688]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#7482]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2322] / [Intel XE#7372])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1392]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7136]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7136]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6874]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#6874]) +8 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7636]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#5625])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-hang-basic:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#7138])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-hang-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7138]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#584] / [Intel XE#7369])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7599])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4733] / [Intel XE#7417])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#944]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#944])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4130] / [Intel XE#7366])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-6/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-lnl-8/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][79] ([Intel XE#7621]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-9/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][81] ([Intel XE#7571]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@xe_evict@evict-beng-threads-small-multi-vm:
- shard-bmg: [DMESG-WARN][83] ([Intel XE#7725]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-6/igt@xe_evict@evict-beng-threads-small-multi-vm.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-3/igt@xe_evict@evict-beng-threads-small-multi-vm.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [ABORT][85] ([Intel XE#7578]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-9/igt@xe_module_load@reload-no-display.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-10/igt@xe_module_load@reload-no-display.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][87] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][88] ([Intel XE#3544])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][89] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][90] ([Intel XE#2426] / [Intel XE#5848])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7675
[Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e -> xe-pw-160349v12
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4890-677cbe5bf50a5de31ce771528f249a7531a2ae9e: 677cbe5bf50a5de31ce771528f249a7531a2ae9e
xe-pw-160349v12: 160349v12
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160349v12/index.html
[-- Attachment #2: Type: text/html, Size: 36530 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread