* [PATCH v13 1/4] drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
@ 2026-08-05 7:11 ` Mallesh Koujalagi
2026-08-05 7:11 ` [PATCH v13 2/4] drm/doc: Document " Mallesh Koujalagi
` (8 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Mallesh Koujalagi @ 2026-08-05 7:11 UTC (permalink / raw)
To: intel-xe, dri-devel, rodrigo.vivi
Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard,
maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar,
riana.tauro, karthik.poosa, sk.anirban, raag.jadav,
Mallesh Koujalagi
Introduce DRM_WEDGE_RECOVERY_COLD_RESET (BIT(4)) recovery method to handle
scenarios requiring device power cycle.
This method addresses cases where other recovery mechanisms
(driver reload, PCIe reset, etc.) are insufficient to restore device
functionality. When set, it indicates to userspace that only device power
cycle can recover the device from its current error state.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
---
v3:
- Update any scenario that requires cold-reset. (Riana)
v4:
- Rename cold reset to power cycle. (Raag)
v5:
- Make it consistent with consumer expectations. (Raag)
v6:
- Drop "last resort" wording. (Riana)
---
drivers/gpu/drm/drm_drv.c | 2 ++
include/drm/drm_device.h | 1 +
2 files changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index e51ed959da89..8519e97ef5d3 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -545,6 +545,8 @@ static const char *drm_get_wedge_recovery(unsigned int opt)
return "bus-reset";
case DRM_WEDGE_RECOVERY_VENDOR:
return "vendor-specific";
+ case DRM_WEDGE_RECOVERY_COLD_RESET:
+ return "cold-reset";
default:
return NULL;
}
diff --git a/include/drm/drm_device.h b/include/drm/drm_device.h
index 768a8dae83c5..75f030d027ee 100644
--- a/include/drm/drm_device.h
+++ b/include/drm/drm_device.h
@@ -37,6 +37,7 @@ struct pci_controller;
#define DRM_WEDGE_RECOVERY_REBIND BIT(1) /* unbind + bind driver */
#define DRM_WEDGE_RECOVERY_BUS_RESET BIT(2) /* unbind + reset bus device + bind */
#define DRM_WEDGE_RECOVERY_VENDOR BIT(3) /* vendor specific recovery method */
+#define DRM_WEDGE_RECOVERY_COLD_RESET BIT(4) /* remove device + slot power cycle + rescan */
/**
* struct drm_wedge_task_info - information about the guilty task of a wedge dev
--
2.48.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* [PATCH v13 2/4] drm/doc: Document DRM_WEDGE_RECOVERY_COLD_RESET recovery method
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
2026-08-05 7:11 ` [PATCH v13 1/4] drm: Add DRM_WEDGE_RECOVERY_COLD_RESET " Mallesh Koujalagi
@ 2026-08-05 7:11 ` Mallesh Koujalagi
2026-08-05 7:11 ` [PATCH v13 3/4] drm/xe: Handle PUNIT errors by requesting cold-reset recovery Mallesh Koujalagi
` (7 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Mallesh Koujalagi @ 2026-08-05 7:11 UTC (permalink / raw)
To: intel-xe, dri-devel, rodrigo.vivi
Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard,
maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar,
riana.tauro, karthik.poosa, sk.anirban, raag.jadav,
Mallesh Koujalagi
When ``WEDGED=cold-reset`` is sent, it indicates that the device has
encountered an error condition that cannot be resolved through other
recovery methods such as driver rebind or bus reset, and requires a
complete device power cycle to restore functionality.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
---
v2:
- Add several instead of number to avoid update. (Jani)
v3:
- Update document with generic scenario. (Riana)
- Consistent with terminology. (Raag)
- Remove already covered information.
v4:
- Update doc. (Raag/Riana)
- Change commit message.
v5:
- Update commit message. (Raag)
- Remove unbind.
- Simplify cold-reset script.
v6:
- Look up the hotplug slot in DEVPATH instead of scanning
every PCI slot on the system. (Raag)
- Drop arbitrary sleep values from the example script.
v7:
- Update recovery script. (Raag)
v8:
- Add rescan instead of reset. (Raag)
v10:
- Fix column width. (Sashiko)
v11:
- Make udev rules in single line. (Sashiko)
---
Documentation/gpu/drm-uapi.rst | 93 ++++++++++++++++++++++++++++++++--
1 file changed, 88 insertions(+), 5 deletions(-)
diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
index 93df92c4ac8c..52255247a6db 100644
--- a/Documentation/gpu/drm-uapi.rst
+++ b/Documentation/gpu/drm-uapi.rst
@@ -424,7 +424,7 @@ needed.
Recovery
--------
-Current implementation defines four recovery methods, out of which, drivers
+Current implementation defines several recovery methods, out of which, drivers
can use any one, multiple or none. Method(s) of choice will be sent in the
uevent environment as ``WEDGED=<method1>[,..,<methodN>]`` in order of less to
more side-effects. See the section `Vendor Specific Recovery`_
@@ -434,15 +434,16 @@ method is unknown, ``WEDGED=unknown`` will be sent instead.
Userspace consumers can parse this event and attempt recovery as per the
following expectations.
- =============== ========================================
+ =============== =========================================
Recovery method Consumer expectations
- =============== ========================================
+ =============== =========================================
none optional telemetry collection
rebind unbind + bind driver
bus-reset unbind + bus reset/re-enumeration + bind
vendor-specific vendor specific recovery method
+ cold-reset remove device + slot power cycle + rescan
unknown consumer policy
- =============== ========================================
+ =============== =========================================
No Recovery
-----------
@@ -453,6 +454,17 @@ debug purpose in order to root cause the hang. This is useful because the first
hang is usually the most critical one which can result in consequential hangs
or complete wedging.
+Cold Reset Recovery
+-------------------
+
+When ``WEDGED=cold-reset`` is sent, it indicates that the device has
+encountered an error condition that cannot be resolved through other
+recovery methods such as driver rebind or bus reset, and requires a complete
+device power cycle to restore functionality.
+
+This method is used by devices that are plugged directly into the PCIe slot
+which supports removing the power.
+
Vendor Specific Recovery
------------------------
@@ -516,7 +528,7 @@ Example - rebind
Udev rule::
- SUBSYSTEM=="drm", ENV{WEDGED}=="rebind", DEVPATH=="*/drm/card[0-9]",
+ SUBSYSTEM=="drm", ENV{WEDGED}=="rebind", DEVPATH=="*/drm/card[0-9]", \
RUN+="/path/to/rebind.sh $env{DEVPATH}"
Recovery script::
@@ -530,6 +542,77 @@ Recovery script::
echo -n $DEVICE > $DRIVER/unbind
echo -n $DEVICE > $DRIVER/bind
+Example - cold-reset
+--------------------
+
+Udev rule::
+
+ SUBSYSTEM=="drm", ENV{WEDGED}=="cold-reset", DEVPATH=="*/drm/card[0-9]", \
+ RUN+="/path/to/cold-reset.sh $env{DEVPATH}"
+
+Recovery script::
+
+ #!/bin/sh
+ die() { echo "ERROR: $*" >&2; exit 1; }
+
+ [ -n "$1" ] || die "Usage: $0 <device-path>"
+
+ PCI_DEVS=/sys/bus/pci/devices
+ PCI_SLOTS=/sys/bus/pci/slots
+
+ syspath=$(readlink -f "/sys/$1/device" 2>/dev/null || readlink -f "/sys/$1" 2>/dev/null)
+ [ -n "$syspath" ] || die "cannot resolve sysfs path for: $1"
+
+ dev=$(basename "$syspath")
+ [ -e "$PCI_DEVS/$dev" ] || die "not a PCI device: $dev"
+ echo "device : $dev"
+
+ slot=""
+ walk=$(dirname "$(readlink -f "$PCI_DEVS/$dev")")
+
+ while true; do
+ ancestor=$(basename "$walk")
+ case "$ancestor" in pci*) break ;; esac # reached the virtual bus root
+
+ ancestor_nofn=${ancestor%.*} # strip function: 0000:03:01.0 -> 0000:03:01
+
+ for f in "$PCI_SLOTS"/*/address; do
+ [ -f "$f" ] || continue
+ addr=$(cat "$f")
+ case "$ancestor_nofn" in
+ *"$addr") slot=$(basename "$(dirname "$f")"); break ;;
+ esac
+ done
+
+ if [ -n "$slot" ] && [ -e "$PCI_SLOTS/$slot/power" ]; then
+ echo "slot : $slot (port $ancestor)"
+ break
+ fi
+ slot=""
+ walk=$(dirname "$walk")
+ done
+
+ [ -n "$slot" ] || die "no hotplug slot with power control found in PCIe topology"
+
+ # Cold reset: remove the device, cut slot power, restore power, rescan.
+ echo "Removing $dev..."
+ [ -e "$PCI_DEVS/$dev" ] && echo 1 > "$PCI_DEVS/$dev/remove"
+
+ echo "Powering off slot $slot..."
+ echo 0 > "$PCI_SLOTS/$slot/power"
+
+ echo "Powering on slot $slot..."
+ echo 1 > "$PCI_SLOTS/$slot/power"
+
+ echo "Rescanning PCI bus..."
+ echo 1 > /sys/bus/pci/rescan
+
+ if [ -e "$PCI_DEVS/$dev" ]; then
+ echo "Done: $dev is back online."
+ else
+ echo "WARNING: $dev did not re-appear after rescan."
+ fi
+
Customization
-------------
--
2.48.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* [PATCH v13 3/4] drm/xe: Handle PUNIT errors by requesting cold-reset recovery
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
2026-08-05 7:11 ` [PATCH v13 1/4] drm: Add DRM_WEDGE_RECOVERY_COLD_RESET " Mallesh Koujalagi
2026-08-05 7:11 ` [PATCH v13 2/4] drm/doc: Document " Mallesh Koujalagi
@ 2026-08-05 7:11 ` Mallesh Koujalagi
2026-08-05 7:11 ` [PATCH v13 4/4] drm/xe/ras: Use fault-inject to trigger cold-reset wedge Mallesh Koujalagi
` (6 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Mallesh Koujalagi @ 2026-08-05 7:11 UTC (permalink / raw)
To: intel-xe, dri-devel, rodrigo.vivi
Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard,
maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar,
riana.tauro, karthik.poosa, sk.anirban, raag.jadav,
Mallesh Koujalagi
When PUNIT (power management unit) errors are detected that persist across
warm resets, mark the device as wedged with DRM_WEDGE_RECOVERY_COLD_RESET
and notify userspace that a complete device power cycle is required to
restore normal operation.
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
---
v3:
- Use PUNIT instead of PMU. (Riana)
- Use consistent wording.
- Remove log. (Raag)
v4:
- Make function static. (Raag)
v5:
- Remove kdoc for static function. (Raag)
- Remove xe_ prefix for static function.
v9:
- Remove unwanted header. (Sashiko)
---
drivers/gpu/drm/xe/xe_ras.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c
index 352f056fd9ef..3033a377bace 100644
--- a/drivers/gpu/drm/xe/xe_ras.c
+++ b/drivers/gpu/drm/xe/xe_ras.c
@@ -254,6 +254,12 @@ static u8 handle_core_compute_errors(struct xe_ras_error_array *arr)
return XE_RAS_RECOVERY_ACTION_RECOVERED;
}
+static void punit_error_handler(struct xe_device *xe)
+{
+ xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_COLD_RESET);
+ xe_device_declare_wedged(xe);
+}
+
static u8 handle_soc_internal_errors(struct xe_device *xe, struct xe_ras_error_array *arr)
{
struct xe_ras_soc_error *info = (void *)arr->details;
@@ -285,7 +291,7 @@ static u8 handle_soc_internal_errors(struct xe_device *xe, struct xe_ras_error_a
xe_err(xe, "[RAS]: PUNIT %s detected: 0x%x\n",
sev_to_str(counter->common.severity),
ieh_error->global_error_status);
- /* TODO: Add PUNIT error handling */
+ punit_error_handler(xe);
return XE_RAS_RECOVERY_ACTION_DISCONNECT;
}
}
--
2.48.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* [PATCH v13 4/4] drm/xe/ras: Use fault-inject to trigger cold-reset wedge
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
` (2 preceding siblings ...)
2026-08-05 7:11 ` [PATCH v13 3/4] drm/xe: Handle PUNIT errors by requesting cold-reset recovery Mallesh Koujalagi
@ 2026-08-05 7:11 ` Mallesh Koujalagi
2026-08-05 9:13 ` Raag Jadav
2026-08-05 11:50 ` ✓ CI.KUnit: success for Introduce cold reset recovery method (rev13) Patchwork
` (5 subsequent siblings)
9 siblings, 1 reply; 13+ messages in thread
From: Mallesh Koujalagi @ 2026-08-05 7:11 UTC (permalink / raw)
To: intel-xe, dri-devel, rodrigo.vivi
Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard,
maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar,
riana.tauro, karthik.poosa, sk.anirban, raag.jadav,
Mallesh Koujalagi
Use the fault-inject framework to trigger the cold-reset
wedge path (punit_error_handler()) for testing the
wedge/recovery flow.
Usage:
echo 100 > .../wedge_cold_reset/probability
echo 1 > .../wedge_cold_reset/times
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
---
v13:
- Rename inject_punit_error to wedge_cold_reset. (Riana)
- Sashiko corner case issue addressed with
commit 20bc4883c7c0 ("drm/xe/ras: Fix boot-time ras error processing").
---
drivers/gpu/drm/xe/xe_debugfs.c | 4 ++++
drivers/gpu/drm/xe/xe_debugfs.h | 2 ++
drivers/gpu/drm/xe/xe_ras.c | 7 +++++++
3 files changed, 13 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c
index 8de78cd0aa03..acd34cc5dcbd 100644
--- a/drivers/gpu/drm/xe/xe_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_debugfs.c
@@ -42,6 +42,7 @@
DECLARE_FAULT_ATTR(gt_reset_failure);
DECLARE_FAULT_ATTR(inject_csc_hw_error);
+DECLARE_FAULT_ATTR(wedge_cold_reset);
static bool csc_hw_error_available(struct xe_device *xe)
{
@@ -62,6 +63,8 @@ static struct {
{ .name = "inject_csc_hw_error",
.attr = &inject_csc_hw_error,
.is_visible = csc_hw_error_available },
+ { .name = "wedge_cold_reset",
+ .attr = &wedge_cold_reset },
};
/*
@@ -76,6 +79,7 @@ bool xe_fault_##name(void) \
FAULT_ACTION(gt_reset, gt_reset_failure)
FAULT_ACTION(csc_hw_error, inject_csc_hw_error)
+FAULT_ACTION(wedge_cold_reset, wedge_cold_reset)
static void xe_fault_inject_debugfs_register(struct xe_device *xe,
struct dentry *root)
diff --git a/drivers/gpu/drm/xe/xe_debugfs.h b/drivers/gpu/drm/xe/xe_debugfs.h
index cd56f7442b99..0dcd28fd7dc0 100644
--- a/drivers/gpu/drm/xe/xe_debugfs.h
+++ b/drivers/gpu/drm/xe/xe_debugfs.h
@@ -13,10 +13,12 @@ struct xe_device;
#ifdef CONFIG_DEBUG_FS
bool xe_fault_gt_reset(void);
bool xe_fault_csc_hw_error(void);
+bool xe_fault_wedge_cold_reset(void);
void xe_debugfs_register(struct xe_device *xe);
#else
static inline bool xe_fault_gt_reset(void) { return false; }
static inline bool xe_fault_csc_hw_error(void) { return false; }
+static inline bool xe_fault_wedge_cold_reset(void) { return false; }
static inline void xe_debugfs_register(struct xe_device *xe) { }
#endif
diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c
index 3033a377bace..7cd17f4b444a 100644
--- a/drivers/gpu/drm/xe/xe_ras.c
+++ b/drivers/gpu/drm/xe/xe_ras.c
@@ -3,6 +3,7 @@
* Copyright © 2026 Intel Corporation
*/
+#include "xe_debugfs.h"
#include "xe_device.h"
#include "xe_drm_ras.h"
#include "xe_pm.h"
@@ -415,6 +416,12 @@ enum xe_ras_recovery_action xe_ras_process_errors(struct xe_device *xe)
size_t rlen;
int ret;
+ if (xe_fault_wedge_cold_reset()) {
+ xe_err(xe, "[RAS]: cold-reset wedge injected\n");
+ punit_error_handler(xe);
+ return XE_RAS_RECOVERY_ACTION_DISCONNECT;
+ }
+
if (!xe->info.has_sysctrl)
return XE_RAS_RECOVERY_ACTION_RESET;
--
2.48.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [PATCH v13 4/4] drm/xe/ras: Use fault-inject to trigger cold-reset wedge
2026-08-05 7:11 ` [PATCH v13 4/4] drm/xe/ras: Use fault-inject to trigger cold-reset wedge Mallesh Koujalagi
@ 2026-08-05 9:13 ` Raag Jadav
2026-08-05 10:01 ` Mallesh, Koujalagi
0 siblings, 1 reply; 13+ messages in thread
From: Raag Jadav @ 2026-08-05 9:13 UTC (permalink / raw)
To: Mallesh Koujalagi
Cc: intel-xe, dri-devel, rodrigo.vivi, andrealmeid, christian.koenig,
airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann,
anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
sk.anirban
On Wed, Aug 05, 2026 at 12:41:57PM +0530, Mallesh Koujalagi wrote:
> Use the fault-inject framework to trigger the cold-reset
> wedge path (punit_error_handler()) for testing the
> wedge/recovery flow.
>
> Usage:
> echo 100 > .../wedge_cold_reset/probability
> echo 1 > .../wedge_cold_reset/times
>
> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
> ---
> v13:
> - Rename inject_punit_error to wedge_cold_reset. (Riana)
> - Sashiko corner case issue addressed with
> commit 20bc4883c7c0 ("drm/xe/ras: Fix boot-time ras error processing").
If the issue is already fixed, I don't see why this patch is still needed.
But if it helps in any case,
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH v13 4/4] drm/xe/ras: Use fault-inject to trigger cold-reset wedge
2026-08-05 9:13 ` Raag Jadav
@ 2026-08-05 10:01 ` Mallesh, Koujalagi
0 siblings, 0 replies; 13+ messages in thread
From: Mallesh, Koujalagi @ 2026-08-05 10:01 UTC (permalink / raw)
To: Raag Jadav
Cc: intel-xe, dri-devel, rodrigo.vivi, andrealmeid, christian.koenig,
airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann,
anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
sk.anirban
On 05-08-2026 02:43 pm, Raag Jadav wrote:
> On Wed, Aug 05, 2026 at 12:41:57PM +0530, Mallesh Koujalagi wrote:
>> Use the fault-inject framework to trigger the cold-reset
>> wedge path (punit_error_handler()) for testing the
>> wedge/recovery flow.
>>
>> Usage:
>> echo 100 > .../wedge_cold_reset/probability
>> echo 1 > .../wedge_cold_reset/times
>>
>> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
>> ---
>> v13:
>> - Rename inject_punit_error to wedge_cold_reset. (Riana)
>> - Sashiko corner case issue addressed with
>> commit 20bc4883c7c0 ("drm/xe/ras: Fix boot-time ras error processing").
> If the issue is already fixed, I don't see why this patch is still needed.
> But if it helps in any case,
Thanks Raag! This patch help to exercise the cold-reset wedge path
(punit_error_handler())
without real punit error.
Thanks,
-/Mallesh
>
> Reviewed-by: Raag Jadav <raag.jadav@intel.com>
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for Introduce cold reset recovery method (rev13)
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
` (3 preceding siblings ...)
2026-08-05 7:11 ` [PATCH v13 4/4] drm/xe/ras: Use fault-inject to trigger cold-reset wedge Mallesh Koujalagi
@ 2026-08-05 11:50 ` Patchwork
2026-08-05 12:31 ` ✗ Xe.CI.BAT: failure " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-08-05 11:50 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
== Series Details ==
Series: Introduce cold reset recovery method (rev13)
URL : https://patchwork.freedesktop.org/series/163428/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:49:30] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:49:35] 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
[11:50:06] Starting KUnit Kernel (1/1)...
[11:50:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:50:06] ================== guc_buf (11 subtests) ===================
[11:50:06] [PASSED] test_smallest
[11:50:06] [PASSED] test_largest
[11:50:06] [PASSED] test_granular
[11:50:06] [PASSED] test_unique
[11:50:06] [PASSED] test_overlap
[11:50:06] [PASSED] test_reusable
[11:50:06] [PASSED] test_too_big
[11:50:06] [PASSED] test_flush
[11:50:06] [PASSED] test_lookup
[11:50:06] [PASSED] test_data
[11:50:06] [PASSED] test_class
[11:50:06] ===================== [PASSED] guc_buf =====================
[11:50:06] =================== guc_dbm (7 subtests) ===================
[11:50:06] [PASSED] test_empty
[11:50:06] [PASSED] test_default
[11:50:06] ======================== test_size ========================
[11:50:06] [PASSED] 4
[11:50:06] [PASSED] 8
[11:50:06] [PASSED] 32
[11:50:06] [PASSED] 256
[11:50:06] ==================== [PASSED] test_size ====================
[11:50:06] ======================= test_reuse ========================
[11:50:06] [PASSED] 4
[11:50:06] [PASSED] 8
[11:50:06] [PASSED] 32
[11:50:06] [PASSED] 256
[11:50:06] =================== [PASSED] test_reuse ====================
[11:50:06] =================== test_range_overlap ====================
[11:50:06] [PASSED] 4
[11:50:06] [PASSED] 8
[11:50:06] [PASSED] 32
[11:50:06] [PASSED] 256
[11:50:06] =============== [PASSED] test_range_overlap ================
[11:50:07] =================== test_range_compact ====================
[11:50:07] [PASSED] 4
[11:50:07] [PASSED] 8
[11:50:07] [PASSED] 32
[11:50:07] [PASSED] 256
[11:50:07] =============== [PASSED] test_range_compact ================
[11:50:07] ==================== test_range_spare =====================
[11:50:07] [PASSED] 4
[11:50:07] [PASSED] 8
[11:50:07] [PASSED] 32
[11:50:07] [PASSED] 256
[11:50:07] ================ [PASSED] test_range_spare =================
[11:50:07] ===================== [PASSED] guc_dbm =====================
[11:50:07] =================== guc_idm (6 subtests) ===================
[11:50:07] [PASSED] bad_init
[11:50:07] [PASSED] no_init
[11:50:07] [PASSED] init_fini
[11:50:07] [PASSED] check_used
[11:50:07] [PASSED] check_quota
[11:50:07] [PASSED] check_all
[11:50:07] ===================== [PASSED] guc_idm =====================
[11:50:07] =============== guc_klv_helpers (9 subtests) ===============
[11:50:07] [PASSED] test_count
[11:50:07] [PASSED] test_encode_u32
[11:50:07] [PASSED] test_encode_u64
[11:50:07] [PASSED] test_encode_string
[11:50:07] [PASSED] test_encode_object_raw
[11:50:07] [PASSED] test_encode_object_klv
[11:50:07] [PASSED] test_encode_object_nested
[11:50:07] [PASSED] test_encode_object_basic
[11:50:07] [PASSED] test_print
[11:50:07] ================= [PASSED] guc_klv_helpers =================
[11:50:07] ================== no_relay (3 subtests) ===================
[11:50:07] [PASSED] xe_drops_guc2pf_if_not_ready
[11:50:07] [PASSED] xe_drops_guc2vf_if_not_ready
[11:50:07] [PASSED] xe_rejects_send_if_not_ready
[11:50:07] ==================== [PASSED] no_relay =====================
[11:50:07] ================== pf_relay (14 subtests) ==================
[11:50:07] [PASSED] pf_rejects_guc2pf_too_short
[11:50:07] [PASSED] pf_rejects_guc2pf_too_long
[11:50:07] [PASSED] pf_rejects_guc2pf_no_payload
[11:50:07] [PASSED] pf_fails_no_payload
[11:50:07] [PASSED] pf_fails_bad_origin
[11:50:07] [PASSED] pf_fails_bad_type
[11:50:07] [PASSED] pf_txn_reports_error
[11:50:07] [PASSED] pf_txn_sends_pf2guc
[11:50:07] [PASSED] pf_sends_pf2guc
[11:50:07] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:50:07] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:50:07] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:50:07] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:50:07] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:50:07] ==================== [PASSED] pf_relay =====================
[11:50:07] ================== vf_relay (3 subtests) ===================
[11:50:07] [PASSED] vf_rejects_guc2vf_too_short
[11:50:07] [PASSED] vf_rejects_guc2vf_too_long
[11:50:07] [PASSED] vf_rejects_guc2vf_no_payload
[11:50:07] ==================== [PASSED] vf_relay =====================
[11:50:07] ================ pf_gt_config (9 subtests) =================
[11:50:07] [PASSED] fair_contexts_1vf
[11:50:07] [PASSED] fair_doorbells_1vf
[11:50:07] [PASSED] fair_ggtt_1vf
[11:50:07] ====================== fair_vram_1vf ======================
[11:50:07] [PASSED] 3.50 GiB
[11:50:07] [PASSED] 11.5 GiB
[11:50:07] [PASSED] 15.5 GiB
[11:50:07] [PASSED] 31.5 GiB
[11:50:07] [PASSED] 63.5 GiB
[11:50:07] [PASSED] 1.91 GiB
[11:50:07] ================== [PASSED] fair_vram_1vf ==================
[11:50:07] ================ fair_vram_1vf_admin_only =================
[11:50:07] [PASSED] 3.50 GiB
[11:50:07] [PASSED] 11.5 GiB
[11:50:07] [PASSED] 15.5 GiB
[11:50:07] [PASSED] 31.5 GiB
[11:50:07] [PASSED] 63.5 GiB
[11:50:07] [PASSED] 1.91 GiB
[11:50:07] ============ [PASSED] fair_vram_1vf_admin_only =============
[11:50:07] ====================== fair_contexts ======================
[11:50:07] [PASSED] 1 VF
[11:50:07] [PASSED] 2 VFs
[11:50:07] [PASSED] 3 VFs
[11:50:07] [PASSED] 4 VFs
[11:50:07] [PASSED] 5 VFs
[11:50:07] [PASSED] 6 VFs
[11:50:07] [PASSED] 7 VFs
[11:50:07] [PASSED] 8 VFs
[11:50:07] [PASSED] 9 VFs
[11:50:07] [PASSED] 10 VFs
[11:50:07] [PASSED] 11 VFs
[11:50:07] [PASSED] 12 VFs
[11:50:07] [PASSED] 13 VFs
[11:50:07] [PASSED] 14 VFs
[11:50:07] [PASSED] 15 VFs
[11:50:07] [PASSED] 16 VFs
[11:50:07] [PASSED] 17 VFs
[11:50:07] [PASSED] 18 VFs
[11:50:07] [PASSED] 19 VFs
[11:50:07] [PASSED] 20 VFs
[11:50:07] [PASSED] 21 VFs
[11:50:07] [PASSED] 22 VFs
[11:50:07] [PASSED] 23 VFs
[11:50:07] [PASSED] 24 VFs
[11:50:07] [PASSED] 25 VFs
[11:50:07] [PASSED] 26 VFs
[11:50:07] [PASSED] 27 VFs
[11:50:07] [PASSED] 28 VFs
[11:50:07] [PASSED] 29 VFs
[11:50:07] [PASSED] 30 VFs
[11:50:07] [PASSED] 31 VFs
[11:50:07] [PASSED] 32 VFs
[11:50:07] [PASSED] 33 VFs
[11:50:07] [PASSED] 34 VFs
[11:50:07] [PASSED] 35 VFs
[11:50:07] [PASSED] 36 VFs
[11:50:07] [PASSED] 37 VFs
[11:50:07] [PASSED] 38 VFs
[11:50:07] [PASSED] 39 VFs
[11:50:07] [PASSED] 40 VFs
[11:50:07] [PASSED] 41 VFs
[11:50:07] [PASSED] 42 VFs
[11:50:07] [PASSED] 43 VFs
[11:50:07] [PASSED] 44 VFs
[11:50:07] [PASSED] 45 VFs
[11:50:07] [PASSED] 46 VFs
[11:50:07] [PASSED] 47 VFs
[11:50:07] [PASSED] 48 VFs
[11:50:07] [PASSED] 49 VFs
[11:50:07] [PASSED] 50 VFs
[11:50:07] [PASSED] 51 VFs
[11:50:07] [PASSED] 52 VFs
[11:50:07] [PASSED] 53 VFs
[11:50:07] [PASSED] 54 VFs
[11:50:07] [PASSED] 55 VFs
[11:50:07] [PASSED] 56 VFs
[11:50:07] [PASSED] 57 VFs
[11:50:07] [PASSED] 58 VFs
[11:50:07] [PASSED] 59 VFs
[11:50:07] [PASSED] 60 VFs
[11:50:07] [PASSED] 61 VFs
[11:50:07] [PASSED] 62 VFs
[11:50:07] [PASSED] 63 VFs
[11:50:07] ================== [PASSED] fair_contexts ==================
[11:50:07] ===================== fair_doorbells ======================
[11:50:07] [PASSED] 1 VF
[11:50:07] [PASSED] 2 VFs
[11:50:07] [PASSED] 3 VFs
[11:50:07] [PASSED] 4 VFs
[11:50:07] [PASSED] 5 VFs
[11:50:07] [PASSED] 6 VFs
[11:50:07] [PASSED] 7 VFs
[11:50:07] [PASSED] 8 VFs
[11:50:07] [PASSED] 9 VFs
[11:50:07] [PASSED] 10 VFs
[11:50:07] [PASSED] 11 VFs
[11:50:07] [PASSED] 12 VFs
[11:50:07] [PASSED] 13 VFs
[11:50:07] [PASSED] 14 VFs
[11:50:07] [PASSED] 15 VFs
[11:50:07] [PASSED] 16 VFs
[11:50:07] [PASSED] 17 VFs
[11:50:07] [PASSED] 18 VFs
[11:50:07] [PASSED] 19 VFs
[11:50:07] [PASSED] 20 VFs
[11:50:07] [PASSED] 21 VFs
[11:50:07] [PASSED] 22 VFs
[11:50:07] [PASSED] 23 VFs
[11:50:07] [PASSED] 24 VFs
[11:50:07] [PASSED] 25 VFs
[11:50:07] [PASSED] 26 VFs
[11:50:07] [PASSED] 27 VFs
[11:50:07] [PASSED] 28 VFs
[11:50:07] [PASSED] 29 VFs
[11:50:07] [PASSED] 30 VFs
[11:50:07] [PASSED] 31 VFs
[11:50:07] [PASSED] 32 VFs
[11:50:07] [PASSED] 33 VFs
[11:50:07] [PASSED] 34 VFs
[11:50:07] [PASSED] 35 VFs
[11:50:07] [PASSED] 36 VFs
[11:50:07] [PASSED] 37 VFs
[11:50:07] [PASSED] 38 VFs
[11:50:07] [PASSED] 39 VFs
[11:50:07] [PASSED] 40 VFs
[11:50:07] [PASSED] 41 VFs
[11:50:07] [PASSED] 42 VFs
[11:50:07] [PASSED] 43 VFs
[11:50:07] [PASSED] 44 VFs
[11:50:07] [PASSED] 45 VFs
[11:50:07] [PASSED] 46 VFs
[11:50:07] [PASSED] 47 VFs
[11:50:07] [PASSED] 48 VFs
[11:50:07] [PASSED] 49 VFs
[11:50:07] [PASSED] 50 VFs
[11:50:07] [PASSED] 51 VFs
[11:50:07] [PASSED] 52 VFs
[11:50:07] [PASSED] 53 VFs
[11:50:07] [PASSED] 54 VFs
[11:50:07] [PASSED] 55 VFs
[11:50:07] [PASSED] 56 VFs
[11:50:07] [PASSED] 57 VFs
[11:50:07] [PASSED] 58 VFs
[11:50:07] [PASSED] 59 VFs
[11:50:07] [PASSED] 60 VFs
[11:50:07] [PASSED] 61 VFs
[11:50:07] [PASSED] 62 VFs
[11:50:07] [PASSED] 63 VFs
[11:50:07] ================= [PASSED] fair_doorbells ==================
[11:50:07] ======================== fair_ggtt ========================
[11:50:07] [PASSED] 1 VF
[11:50:07] [PASSED] 2 VFs
[11:50:07] [PASSED] 3 VFs
[11:50:07] [PASSED] 4 VFs
[11:50:07] [PASSED] 5 VFs
[11:50:07] [PASSED] 6 VFs
[11:50:07] [PASSED] 7 VFs
[11:50:07] [PASSED] 8 VFs
[11:50:07] [PASSED] 9 VFs
[11:50:07] [PASSED] 10 VFs
[11:50:07] [PASSED] 11 VFs
[11:50:07] [PASSED] 12 VFs
[11:50:07] [PASSED] 13 VFs
[11:50:07] [PASSED] 14 VFs
[11:50:07] [PASSED] 15 VFs
[11:50:07] [PASSED] 16 VFs
[11:50:07] [PASSED] 17 VFs
[11:50:07] [PASSED] 18 VFs
[11:50:07] [PASSED] 19 VFs
[11:50:07] [PASSED] 20 VFs
[11:50:07] [PASSED] 21 VFs
[11:50:07] [PASSED] 22 VFs
[11:50:07] [PASSED] 23 VFs
[11:50:07] [PASSED] 24 VFs
[11:50:07] [PASSED] 25 VFs
[11:50:07] [PASSED] 26 VFs
[11:50:07] [PASSED] 27 VFs
[11:50:07] [PASSED] 28 VFs
[11:50:07] [PASSED] 29 VFs
[11:50:07] [PASSED] 30 VFs
[11:50:07] [PASSED] 31 VFs
[11:50:07] [PASSED] 32 VFs
[11:50:07] [PASSED] 33 VFs
[11:50:07] [PASSED] 34 VFs
[11:50:07] [PASSED] 35 VFs
[11:50:07] [PASSED] 36 VFs
[11:50:07] [PASSED] 37 VFs
[11:50:07] [PASSED] 38 VFs
[11:50:07] [PASSED] 39 VFs
[11:50:07] [PASSED] 40 VFs
[11:50:07] [PASSED] 41 VFs
[11:50:07] [PASSED] 42 VFs
[11:50:07] [PASSED] 43 VFs
[11:50:07] [PASSED] 44 VFs
[11:50:07] [PASSED] 45 VFs
[11:50:07] [PASSED] 46 VFs
[11:50:07] [PASSED] 47 VFs
[11:50:07] [PASSED] 48 VFs
[11:50:07] [PASSED] 49 VFs
[11:50:07] [PASSED] 50 VFs
[11:50:07] [PASSED] 51 VFs
[11:50:07] [PASSED] 52 VFs
[11:50:07] [PASSED] 53 VFs
[11:50:07] [PASSED] 54 VFs
[11:50:07] [PASSED] 55 VFs
[11:50:07] [PASSED] 56 VFs
[11:50:07] [PASSED] 57 VFs
[11:50:07] [PASSED] 58 VFs
[11:50:07] [PASSED] 59 VFs
[11:50:07] [PASSED] 60 VFs
[11:50:07] [PASSED] 61 VFs
[11:50:07] [PASSED] 62 VFs
[11:50:07] [PASSED] 63 VFs
[11:50:07] ==================== [PASSED] fair_ggtt ====================
[11:50:07] ======================== fair_vram ========================
[11:50:07] [PASSED] 1 VF
[11:50:07] [PASSED] 2 VFs
[11:50:07] [PASSED] 3 VFs
[11:50:07] [PASSED] 4 VFs
[11:50:07] [PASSED] 5 VFs
[11:50:07] [PASSED] 6 VFs
[11:50:07] [PASSED] 7 VFs
[11:50:07] [PASSED] 8 VFs
[11:50:07] [PASSED] 9 VFs
[11:50:07] [PASSED] 10 VFs
[11:50:07] [PASSED] 11 VFs
[11:50:07] [PASSED] 12 VFs
[11:50:07] [PASSED] 13 VFs
[11:50:07] [PASSED] 14 VFs
[11:50:07] [PASSED] 15 VFs
[11:50:07] [PASSED] 16 VFs
[11:50:07] [PASSED] 17 VFs
[11:50:07] [PASSED] 18 VFs
[11:50:07] [PASSED] 19 VFs
[11:50:07] [PASSED] 20 VFs
[11:50:07] [PASSED] 21 VFs
[11:50:07] [PASSED] 22 VFs
[11:50:07] [PASSED] 23 VFs
[11:50:07] [PASSED] 24 VFs
[11:50:07] [PASSED] 25 VFs
[11:50:07] [PASSED] 26 VFs
[11:50:07] [PASSED] 27 VFs
[11:50:07] [PASSED] 28 VFs
[11:50:07] [PASSED] 29 VFs
[11:50:07] [PASSED] 30 VFs
[11:50:07] [PASSED] 31 VFs
[11:50:07] [PASSED] 32 VFs
[11:50:07] [PASSED] 33 VFs
[11:50:07] [PASSED] 34 VFs
[11:50:07] [PASSED] 35 VFs
[11:50:07] [PASSED] 36 VFs
[11:50:07] [PASSED] 37 VFs
[11:50:07] [PASSED] 38 VFs
[11:50:07] [PASSED] 39 VFs
[11:50:07] [PASSED] 40 VFs
[11:50:07] [PASSED] 41 VFs
[11:50:07] [PASSED] 42 VFs
[11:50:07] [PASSED] 43 VFs
[11:50:07] [PASSED] 44 VFs
[11:50:07] [PASSED] 45 VFs
[11:50:07] [PASSED] 46 VFs
[11:50:07] [PASSED] 47 VFs
[11:50:07] [PASSED] 48 VFs
[11:50:07] [PASSED] 49 VFs
[11:50:07] [PASSED] 50 VFs
[11:50:07] [PASSED] 51 VFs
[11:50:07] [PASSED] 52 VFs
[11:50:07] [PASSED] 53 VFs
[11:50:07] [PASSED] 54 VFs
[11:50:07] [PASSED] 55 VFs
[11:50:07] [PASSED] 56 VFs
[11:50:07] [PASSED] 57 VFs
[11:50:07] [PASSED] 58 VFs
[11:50:07] [PASSED] 59 VFs
[11:50:07] [PASSED] 60 VFs
[11:50:07] [PASSED] 61 VFs
[11:50:07] [PASSED] 62 VFs
[11:50:07] [PASSED] 63 VFs
[11:50:07] ==================== [PASSED] fair_vram ====================
[11:50:07] ================== [PASSED] pf_gt_config ===================
[11:50:07] ===================== lmtt (1 subtest) =====================
[11:50:07] ======================== test_ops =========================
[11:50:07] [PASSED] 2-level
[11:50:07] [PASSED] multi-level
[11:50:07] ==================== [PASSED] test_ops =====================
[11:50:07] ====================== [PASSED] lmtt =======================
[11:50:07] ================= sriov_packet (1 subtest) =================
[11:50:07] [PASSED] test_descriptor_init
[11:50:07] ================== [PASSED] sriov_packet ===================
[11:50:07] ================= pf_service (11 subtests) =================
[11:50:07] [PASSED] pf_negotiate_any
[11:50:07] [PASSED] pf_negotiate_base_match
[11:50:07] [PASSED] pf_negotiate_base_newer
[11:50:07] [PASSED] pf_negotiate_base_next
[11:50:07] [SKIPPED] pf_negotiate_base_older (no older minor)
[11:50:07] [PASSED] pf_negotiate_base_prev
[11:50:07] [PASSED] pf_negotiate_latest_match
[11:50:07] [PASSED] pf_negotiate_latest_newer
[11:50:07] [PASSED] pf_negotiate_latest_next
[11:50:07] [SKIPPED] pf_negotiate_latest_older (no older minor)
[11:50:07] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[11:50:07] =================== [PASSED] pf_service ====================
[11:50:07] ================= xe_guc_g2g (2 subtests) ==================
[11:50:07] ============== xe_live_guc_g2g_kunit_default ==============
[11:50:07] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[11:50:07] ============== xe_live_guc_g2g_kunit_allmem ===============
[11:50:07] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[11:50:07] =================== [SKIPPED] xe_guc_g2g ===================
[11:50:07] =================== xe_mocs (2 subtests) ===================
[11:50:07] ================ xe_live_mocs_kernel_kunit ================
[11:50:07] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:50:07] ================ xe_live_mocs_reset_kunit =================
[11:50:07] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:50:07] ==================== [SKIPPED] xe_mocs =====================
[11:50:07] ================= xe_migrate (2 subtests) ==================
[11:50:07] ================= xe_migrate_sanity_kunit =================
[11:50:07] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:50:07] ================== xe_validate_ccs_kunit ==================
[11:50:07] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:50:07] =================== [SKIPPED] xe_migrate ===================
[11:50:07] ================== xe_dma_buf (1 subtest) ==================
[11:50:07] ==================== xe_dma_buf_kunit =====================
[11:50:07] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:50:07] =================== [SKIPPED] xe_dma_buf ===================
[11:50:07] ================= xe_bo_shrink (1 subtest) =================
[11:50:07] =================== xe_bo_shrink_kunit ====================
[11:50:07] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:50:07] ================== [SKIPPED] xe_bo_shrink ==================
[11:50:07] ==================== xe_bo (2 subtests) ====================
[11:50:07] ================== xe_ccs_migrate_kunit ===================
[11:50:07] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:50:07] ==================== xe_bo_evict_kunit ====================
[11:50:07] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:50:07] ===================== [SKIPPED] xe_bo ======================
[11:50:07] ==================== args (13 subtests) ====================
[11:50:07] [PASSED] count_args_test
[11:50:07] [PASSED] call_args_example
[11:50:07] [PASSED] call_args_test
[11:50:07] [PASSED] drop_first_arg_example
[11:50:07] [PASSED] drop_first_arg_test
[11:50:07] [PASSED] first_arg_example
[11:50:07] [PASSED] first_arg_test
[11:50:07] [PASSED] last_arg_example
[11:50:07] [PASSED] last_arg_test
[11:50:07] [PASSED] pick_arg_example
[11:50:07] [PASSED] if_args_example
[11:50:07] [PASSED] if_args_test
[11:50:07] [PASSED] sep_comma_example
[11:50:07] ====================== [PASSED] args =======================
[11:50:07] =================== xe_pci (3 subtests) ====================
[11:50:07] ==================== check_graphics_ip ====================
[11:50:07] [PASSED] 12.00 Xe_LP
[11:50:07] [PASSED] 12.10 Xe_LP+
[11:50:07] [PASSED] 12.55 Xe_HPG
[11:50:07] [PASSED] 12.60 Xe_HPC
[11:50:07] [PASSED] 12.70 Xe_LPG
[11:50:07] [PASSED] 12.71 Xe_LPG
[11:50:07] [PASSED] 12.74 Xe_LPG+
[11:50:07] [PASSED] 20.01 Xe2_HPG
[11:50:07] [PASSED] 20.02 Xe2_HPG
[11:50:07] [PASSED] 20.04 Xe2_LPG
[11:50:07] [PASSED] 30.00 Xe3_LPG
[11:50:07] [PASSED] 30.01 Xe3_LPG
[11:50:07] [PASSED] 30.03 Xe3_LPG
[11:50:07] [PASSED] 30.04 Xe3_LPG
[11:50:07] [PASSED] 30.05 Xe3_LPG
[11:50:07] [PASSED] 35.10 Xe3p_LPG
[11:50:07] [PASSED] 35.11 Xe3p_XPC
[11:50:07] ================ [PASSED] check_graphics_ip ================
[11:50:07] ===================== check_media_ip ======================
[11:50:07] [PASSED] 12.00 Xe_M
[11:50:07] [PASSED] 12.55 Xe_HPM
[11:50:07] [PASSED] 13.00 Xe_LPM+
[11:50:07] [PASSED] 13.01 Xe2_HPM
[11:50:07] [PASSED] 20.00 Xe2_LPM
[11:50:07] [PASSED] 30.00 Xe3_LPM
[11:50:07] [PASSED] 30.02 Xe3_LPM
[11:50:07] [PASSED] 35.00 Xe3p_LPM
[11:50:07] [PASSED] 35.03 Xe3p_HPM
[11:50:07] ================= [PASSED] check_media_ip ==================
[11:50:07] =================== check_platform_desc ===================
[11:50:07] [PASSED] 0x9A60 (TIGERLAKE)
[11:50:07] [PASSED] 0x9A68 (TIGERLAKE)
[11:50:07] [PASSED] 0x9A70 (TIGERLAKE)
[11:50:07] [PASSED] 0x9A40 (TIGERLAKE)
[11:50:07] [PASSED] 0x9A49 (TIGERLAKE)
[11:50:07] [PASSED] 0x9A59 (TIGERLAKE)
[11:50:07] [PASSED] 0x9A78 (TIGERLAKE)
[11:50:07] [PASSED] 0x9AC0 (TIGERLAKE)
[11:50:07] [PASSED] 0x9AC9 (TIGERLAKE)
[11:50:07] [PASSED] 0x9AD9 (TIGERLAKE)
[11:50:07] [PASSED] 0x9AF8 (TIGERLAKE)
[11:50:07] [PASSED] 0x4C80 (ROCKETLAKE)
[11:50:07] [PASSED] 0x4C8A (ROCKETLAKE)
[11:50:07] [PASSED] 0x4C8B (ROCKETLAKE)
[11:50:07] [PASSED] 0x4C8C (ROCKETLAKE)
[11:50:07] [PASSED] 0x4C90 (ROCKETLAKE)
[11:50:07] [PASSED] 0x4C9A (ROCKETLAKE)
[11:50:07] [PASSED] 0x4680 (ALDERLAKE_S)
[11:50:07] [PASSED] 0x4682 (ALDERLAKE_S)
[11:50:07] [PASSED] 0x4688 (ALDERLAKE_S)
[11:50:07] [PASSED] 0x468A (ALDERLAKE_S)
[11:50:07] [PASSED] 0x468B (ALDERLAKE_S)
[11:50:07] [PASSED] 0x4690 (ALDERLAKE_S)
[11:50:07] [PASSED] 0x4692 (ALDERLAKE_S)
[11:50:07] [PASSED] 0x4693 (ALDERLAKE_S)
[11:50:07] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46AA (ALDERLAKE_P)
[11:50:07] [PASSED] 0x462A (ALDERLAKE_P)
[11:50:07] [PASSED] 0x4626 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x4628 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46B0 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:50:07] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:50:07] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:50:07] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:50:07] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:50:07] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:50:07] [PASSED] 0xA721 (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA720 (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:50:07] [PASSED] 0xA780 (ALDERLAKE_S)
[11:50:07] [PASSED] 0xA781 (ALDERLAKE_S)
[11:50:07] [PASSED] 0xA782 (ALDERLAKE_S)
[11:50:07] [PASSED] 0xA783 (ALDERLAKE_S)
[11:50:07] [PASSED] 0xA788 (ALDERLAKE_S)
[11:50:07] [PASSED] 0xA789 (ALDERLAKE_S)
[11:50:07] [PASSED] 0xA78A (ALDERLAKE_S)
[11:50:07] [PASSED] 0xA78B (ALDERLAKE_S)
[11:50:07] [PASSED] 0x4905 (DG1)
[11:50:07] [PASSED] 0x4906 (DG1)
[11:50:07] [PASSED] 0x4907 (DG1)
[11:50:07] [PASSED] 0x4908 (DG1)
[11:50:07] [PASSED] 0x4909 (DG1)
[11:50:07] [PASSED] 0x56C0 (DG2)
[11:50:07] [PASSED] 0x56C2 (DG2)
[11:50:07] [PASSED] 0x56C1 (DG2)
[11:50:07] [PASSED] 0x7D51 (METEORLAKE)
[11:50:07] [PASSED] 0x7DD1 (METEORLAKE)
[11:50:07] [PASSED] 0x7D41 (METEORLAKE)
[11:50:07] [PASSED] 0x7D67 (METEORLAKE)
[11:50:07] [PASSED] 0xB640 (METEORLAKE)
[11:50:07] [PASSED] 0x56A0 (DG2)
[11:50:07] [PASSED] 0x56A1 (DG2)
[11:50:07] [PASSED] 0x56A2 (DG2)
[11:50:07] [PASSED] 0x56BE (DG2)
[11:50:07] [PASSED] 0x56BF (DG2)
[11:50:07] [PASSED] 0x5690 (DG2)
[11:50:07] [PASSED] 0x5691 (DG2)
[11:50:07] [PASSED] 0x5692 (DG2)
[11:50:07] [PASSED] 0x56A5 (DG2)
[11:50:07] [PASSED] 0x56A6 (DG2)
[11:50:07] [PASSED] 0x56B0 (DG2)
[11:50:07] [PASSED] 0x56B1 (DG2)
[11:50:07] [PASSED] 0x56BA (DG2)
[11:50:07] [PASSED] 0x56BB (DG2)
[11:50:07] [PASSED] 0x56BC (DG2)
[11:50:07] [PASSED] 0x56BD (DG2)
[11:50:07] [PASSED] 0x5693 (DG2)
[11:50:07] [PASSED] 0x5694 (DG2)
[11:50:07] [PASSED] 0x5695 (DG2)
[11:50:07] [PASSED] 0x56A3 (DG2)
[11:50:07] [PASSED] 0x56A4 (DG2)
[11:50:07] [PASSED] 0x56B2 (DG2)
[11:50:07] [PASSED] 0x56B3 (DG2)
[11:50:07] [PASSED] 0x5696 (DG2)
[11:50:07] [PASSED] 0x5697 (DG2)
[11:50:07] [PASSED] 0xB69 (PVC)
[11:50:07] [PASSED] 0xB6E (PVC)
[11:50:07] [PASSED] 0xBD4 (PVC)
[11:50:07] [PASSED] 0xBD5 (PVC)
[11:50:07] [PASSED] 0xBD6 (PVC)
[11:50:07] [PASSED] 0xBD7 (PVC)
[11:50:07] [PASSED] 0xBD8 (PVC)
[11:50:07] [PASSED] 0xBD9 (PVC)
[11:50:07] [PASSED] 0xBDA (PVC)
[11:50:07] [PASSED] 0xBDB (PVC)
[11:50:07] [PASSED] 0xBE0 (PVC)
[11:50:07] [PASSED] 0xBE1 (PVC)
[11:50:07] [PASSED] 0xBE5 (PVC)
[11:50:07] [PASSED] 0x7D40 (METEORLAKE)
[11:50:07] [PASSED] 0x7D45 (METEORLAKE)
[11:50:07] [PASSED] 0x7D55 (METEORLAKE)
[11:50:07] [PASSED] 0x7D60 (METEORLAKE)
[11:50:07] [PASSED] 0x7DD5 (METEORLAKE)
[11:50:07] [PASSED] 0x6420 (LUNARLAKE)
[11:50:07] [PASSED] 0x64A0 (LUNARLAKE)
[11:50:07] [PASSED] 0x64B0 (LUNARLAKE)
[11:50:07] [PASSED] 0xE202 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE209 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE20B (BATTLEMAGE)
[11:50:07] [PASSED] 0xE20C (BATTLEMAGE)
[11:50:07] [PASSED] 0xE20D (BATTLEMAGE)
[11:50:07] [PASSED] 0xE210 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE211 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE212 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE216 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE220 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE221 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE222 (BATTLEMAGE)
[11:50:07] [PASSED] 0xE223 (BATTLEMAGE)
[11:50:07] [PASSED] 0xB080 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB081 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB082 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB083 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB084 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB085 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB086 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB087 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB08F (PANTHERLAKE)
[11:50:07] [PASSED] 0xB090 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:50:07] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:50:07] [PASSED] 0xFD80 (PANTHERLAKE)
[11:50:07] [PASSED] 0xFD81 (PANTHERLAKE)
[11:50:07] [PASSED] 0xD740 (NOVALAKE_S)
[11:50:07] [PASSED] 0xD741 (NOVALAKE_S)
[11:50:07] [PASSED] 0xD742 (NOVALAKE_S)
[11:50:07] [PASSED] 0xD743 (NOVALAKE_S)
[11:50:07] [PASSED] 0xD745 (NOVALAKE_S)
[11:50:07] [PASSED] 0xD74A (NOVALAKE_S)
[11:50:07] [PASSED] 0xD74B (NOVALAKE_S)
[11:50:07] [PASSED] 0x674C (CRESCENTISLAND)
[11:50:07] [PASSED] 0x674D (CRESCENTISLAND)
[11:50:07] [PASSED] 0x674E (CRESCENTISLAND)
[11:50:07] [PASSED] 0x674F (CRESCENTISLAND)
[11:50:07] [PASSED] 0x6750 (CRESCENTISLAND)
[11:50:07] [PASSED] 0xD750 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD751 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD752 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD753 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD754 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD755 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD756 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD757 (NOVALAKE_P)
[11:50:07] [PASSED] 0xD75F (NOVALAKE_P)
[11:50:07] =============== [PASSED] check_platform_desc ===============
[11:50:07] ===================== [PASSED] xe_pci ======================
[11:50:07] ============= xe_rtp_tables_test (5 subtests) ==============
[11:50:07] ================== xe_rtp_table_gt_test ===================
[11:50:07] [PASSED] gt_was/14011060649
[11:50:07] [PASSED] gt_was/14011059788
[11:50:07] [PASSED] gt_was/14015795083
[11:50:07] [PASSED] gt_was/16021867713
[11:50:07] [PASSED] gt_was/14019449301
[11:50:07] [PASSED] gt_was/16028005424
[11:50:07] [PASSED] gt_was/14026578760
[11:50:07] [PASSED] gt_was/1409420604
[11:50:07] [PASSED] gt_was/1408615072
[11:50:07] [PASSED] gt_was/22010523718
[11:50:07] [PASSED] gt_was/14011006942
[11:50:07] [PASSED] gt_was/14014830051
[11:50:07] [PASSED] gt_was/18018781329
[11:50:07] [PASSED] gt_was/1509235366
[11:50:07] [PASSED] gt_was/18018781329
[11:50:07] [PASSED] gt_was/16016694945
[11:50:07] [PASSED] gt_was/14018575942
[11:50:07] [PASSED] gt_was/22016670082
[11:50:07] [PASSED] gt_was/22016670082
[11:50:07] [PASSED] gt_was/14017421178
[11:50:07] [PASSED] gt_was/16025250150
[11:50:07] [PASSED] gt_was/14021871409
[11:50:07] [PASSED] gt_was/16021865536
[11:50:07] [PASSED] gt_was/14021486841
[11:50:07] [PASSED] gt_was/14025160223
[11:50:07] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[11:50:07] [PASSED] gt_was/14025635424
[11:50:07] [PASSED] gt_was/16028005424
[11:50:07] ============== [PASSED] xe_rtp_table_gt_test ===============
[11:50:07] ================== xe_rtp_table_gt_test ===================
[11:50:07] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[11:50:07] [PASSED] gt_tunings/Tuning: 32B Access Enable
[11:50:07] [PASSED] gt_tunings/Tuning: L3 cache
[11:50:07] [PASSED] gt_tunings/Tuning: L3 cache - media
[11:50:07] [PASSED] gt_tunings/Tuning: Compression Overfetch
[11:50:07] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[11:50:07] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[11:50:07] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[11:50:07] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[11:50:07] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[11:50:07] [PASSED] gt_tunings/Tuning: Stateless compression control
[11:50:07] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[11:50:07] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[11:50:07] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[11:50:07] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[11:50:07] ============== [PASSED] xe_rtp_table_gt_test ===============
[11:50:07] ================== xe_rtp_table_oob_test ==================
[11:50:07] [PASSED] oob_was/1607983814
[11:50:07] [PASSED] oob_was/16010904313
[11:50:07] [PASSED] oob_was/18022495364
[11:50:07] [PASSED] oob_was/22012773006
[11:50:07] [PASSED] oob_was/14014475959
[11:50:07] [PASSED] oob_was/22011391025
[11:50:07] [PASSED] oob_was/22012727170
[11:50:07] [PASSED] oob_was/22012727685
[11:50:07] [PASSED] oob_was/22016596838
[11:50:07] [PASSED] oob_was/18020744125
[11:50:07] [PASSED] oob_was/1409600907
[11:50:07] [PASSED] oob_was/22014953428
[11:50:07] [PASSED] oob_was/16017236439
[11:50:07] [PASSED] oob_was/14019821291
[11:50:07] [PASSED] oob_was/14015076503
[11:50:07] [PASSED] oob_was/14018913170
[11:50:07] [PASSED] oob_was/14018094691
[11:50:07] [PASSED] oob_was/18024947630
[11:50:07] [PASSED] oob_was/16022287689
[11:50:07] [PASSED] oob_was/13011645652
[11:50:07] [PASSED] oob_was/14022293748
[11:50:07] [PASSED] oob_was/22019794406
[11:50:07] [PASSED] oob_was/22019338487
[11:50:07] [PASSED] oob_was/16023588340
[11:50:07] [PASSED] oob_was/14019789679
[11:50:07] [PASSED] oob_was/14022866841
[11:50:07] [PASSED] oob_was/16021333562
[11:50:07] [PASSED] oob_was/14016712196
[11:50:07] [PASSED] oob_was/14015568240
[11:50:07] [PASSED] oob_was/18013179988
[11:50:07] [PASSED] oob_was/1508761755
[11:50:07] [PASSED] oob_was/16023105232
[11:50:07] [PASSED] oob_was/16026508708
[11:50:07] [PASSED] oob_was/14020001231
[11:50:07] [PASSED] oob_was/16023683509
[11:50:07] [PASSED] oob_was/14025515070
[11:50:07] [PASSED] oob_was/15015404425_disable
[11:50:07] [PASSED] oob_was/16026007364
[11:50:07] [PASSED] oob_was/14020316580
[11:50:07] [PASSED] oob_was/14025883347
[11:50:07] [PASSED] oob_was/16029380221
[11:50:07] [PASSED] oob_was/22022079272
[11:50:07] [PASSED] oob_was/16029897822
[11:50:07] [PASSED] oob_was/14027054324
[11:50:07] ============== [PASSED] xe_rtp_table_oob_test ==============
[11:50:07] ================ xe_rtp_table_dev_oob_test ================
[11:50:07] [PASSED] device_oob_was/22010954014
[11:50:07] [PASSED] device_oob_was/15015404425
[11:50:07] [PASSED] device_oob_was/22019338487_display
[11:50:07] [PASSED] device_oob_was/14022085890
[11:50:07] [PASSED] device_oob_was/14026539277
[11:50:07] [PASSED] device_oob_was/14026633728
[11:50:07] [PASSED] device_oob_was/14026746987
[11:50:07] [PASSED] device_oob_was/14026779378
[11:50:07] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[11:50:07] ========== xe_rtp_table_missing_upper_bound_test ==========
[11:50:07] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[11:50:07] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[11:50:07] [PASSED] register_whitelist/1806527549
[11:50:07] [PASSED] register_whitelist/allow_read_ctx_timestamp
[11:50:07] [PASSED] register_whitelist/allow_read_queue_timestamp
[11:50:07] [PASSED] register_whitelist/16014440446
[11:50:07] [PASSED] register_whitelist/16017236439
[11:50:07] [PASSED] register_whitelist/16020183090
[11:50:07] [PASSED] register_whitelist/14024997852
[11:50:07] [PASSED] register_whitelist/14024997852
[11:50:07] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[11:50:07] =============== [PASSED] xe_rtp_tables_test ================
[11:50:07] =================== xe_rtp (3 subtests) ====================
[11:50:07] =================== xe_rtp_rules_tests ====================
[11:50:07] [PASSED] no
[11:50:07] [PASSED] yes
[11:50:07] [PASSED] no-and-no
[11:50:07] [PASSED] no-and-yes
[11:50:07] [PASSED] yes-and-no
[11:50:07] [PASSED] yes-and-yes
[11:50:07] [PASSED] no-or-no
[11:50:07] [PASSED] no-or-yes
[11:50:07] [PASSED] yes-or-no
[11:50:07] [PASSED] yes-or-yes
[11:50:07] [PASSED] no-yes-or-yes-no
[11:50:07] [PASSED] no-yes-or-yes-yes
[11:50:07] [PASSED] yes-yes-or-no-yes
[11:50:07] [PASSED] yes-yes-or-yes-yes
[11:50:07] [PASSED] no-no-or-yes-or-no
[11:50:07] [PASSED] or
[11:50:07] [PASSED] or-yes
[11:50:07] [PASSED] or-no
[11:50:07] [PASSED] yes-or
[11:50:07] [PASSED] no-or
[11:50:07] [PASSED] no-or-or-yes
[11:50:07] [PASSED] yes-or-or-no
[11:50:07] [PASSED] no-or-or-no
[11:50:07] [PASSED] missing-context-engine-class
[11:50:07] [PASSED] missing-context-engine-class-or-yes
[11:50:07] [PASSED] missing-context-engine-class-or-or-yes
[11:50:07] =============== [PASSED] xe_rtp_rules_tests ================
[11:50:07] =============== xe_rtp_process_to_sr_tests ================
[11:50:07] [PASSED] coalesce-same-reg
[11:50:07] [PASSED] coalesce-same-reg-literal-and-func
[11:50:07] [PASSED] no-match-no-add
[11:50:07] [PASSED] two-regs-two-entries
[11:50:07] [PASSED] clr-one-set-other
[11:50:07] [PASSED] set-field
[11:50:07] [PASSED] conflict-duplicate
[11:50:07] [PASSED] conflict-not-disjoint
[11:50:07] [PASSED] conflict-not-disjoint-literal-and-func
[11:50:07] [PASSED] conflict-reg-type
[11:50:07] [PASSED] bad-mcr-reg-forced-to-regular
[11:50:07] [PASSED] bad-regular-reg-forced-to-mcr
[11:50:07] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:50:07] ================== xe_rtp_process_tests ===================
[11:50:07] [PASSED] active1
[11:50:07] [PASSED] active2
[11:50:07] [PASSED] active-inactive
[11:50:07] [PASSED] inactive-active
[11:50:07] [PASSED] inactive-active-inactive
[11:50:07] [PASSED] inactive-inactive-inactive
[11:50:07] ============== [PASSED] xe_rtp_process_tests ===============
[11:50:07] ===================== [PASSED] xe_rtp ======================
[11:50:07] ==================== xe_wa (1 subtest) =====================
[11:50:07] ======================== xe_wa_gt =========================
[11:50:07] [PASSED] TIGERLAKE B0
[11:50:07] [PASSED] DG1 A0
[11:50:07] [PASSED] DG1 B0
[11:50:07] [PASSED] ALDERLAKE_S A0
[11:50:07] [PASSED] ALDERLAKE_S B0
[11:50:07] [PASSED] ALDERLAKE_S C0
[11:50:07] [PASSED] ALDERLAKE_S D0
[11:50:07] [PASSED] ALDERLAKE_P A0
[11:50:07] [PASSED] ALDERLAKE_P B0
[11:50:07] [PASSED] ALDERLAKE_P C0
[11:50:07] [PASSED] ALDERLAKE_S RPLS D0
[11:50:07] [PASSED] ALDERLAKE_P RPLU E0
[11:50:07] [PASSED] DG2 G10 C0
[11:50:07] [PASSED] DG2 G11 B1
[11:50:07] [PASSED] DG2 G12 A1
[11:50:07] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:50:07] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:50:07] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[11:50:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[11:50:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[11:50:07] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[11:50:07] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[11:50:07] ==================== [PASSED] xe_wa_gt =====================
[11:50:07] ====================== [PASSED] xe_wa ======================
[11:50:07] ============================================================
[11:50:07] Testing complete. Ran 742 tests: passed: 724, skipped: 18
[11:50:07] Elapsed time: 36.669s total, 4.378s configuring, 31.625s building, 0.631s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[11:50:07] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:50:09] 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
[11:50:33] Starting KUnit Kernel (1/1)...
[11:50:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:50:34] ============ drm_test_pick_cmdline (2 subtests) ============
[11:50:34] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[11:50:34] =============== drm_test_pick_cmdline_named ===============
[11:50:34] [PASSED] NTSC
[11:50:34] [PASSED] NTSC-J
[11:50:34] [PASSED] PAL
[11:50:34] [PASSED] PAL-M
[11:50:34] =========== [PASSED] drm_test_pick_cmdline_named ===========
[11:50:34] ============== [PASSED] drm_test_pick_cmdline ==============
[11:50:34] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[11:50:34] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[11:50:34] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[11:50:34] =========== drm_validate_clone_mode (2 subtests) ===========
[11:50:34] ============== drm_test_check_in_clone_mode ===============
[11:50:34] [PASSED] in_clone_mode
[11:50:34] [PASSED] not_in_clone_mode
[11:50:34] ========== [PASSED] drm_test_check_in_clone_mode ===========
[11:50:34] =============== drm_test_check_valid_clones ===============
[11:50:34] [PASSED] not_in_clone_mode
[11:50:34] [PASSED] valid_clone
[11:50:34] [PASSED] invalid_clone
[11:50:34] =========== [PASSED] drm_test_check_valid_clones ===========
[11:50:34] ============= [PASSED] drm_validate_clone_mode =============
[11:50:34] ============= drm_validate_modeset (1 subtest) =============
[11:50:34] [PASSED] drm_test_check_connector_changed_modeset
[11:50:34] ============== [PASSED] drm_validate_modeset ===============
[11:50:34] ====== drm_test_bridge_get_current_state (1 subtest) =======
[11:50:34] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[11:50:34] ======== [PASSED] drm_test_bridge_get_current_state ========
[11:50:34] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[11:50:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[11:50:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[11:50:34] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[11:50:34] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[11:50:34] ============== drm_bridge_alloc (2 subtests) ===============
[11:50:34] [PASSED] drm_test_drm_bridge_alloc_basic
[11:50:34] [PASSED] drm_test_drm_bridge_alloc_get_put
[11:50:34] ================ [PASSED] drm_bridge_alloc =================
[11:50:34] ============= drm_bridge_bus_fmt (5 subtests) ==============
[11:50:34] [PASSED] drm_test_bridge_rgb_yuv_rgb
[11:50:34] [PASSED] drm_test_bridge_must_convert_to_yuv444
[11:50:34] [PASSED] drm_test_bridge_hdmi_auto_rgb
[11:50:34] [PASSED] drm_test_bridge_auto_first
[11:50:34] [PASSED] drm_test_bridge_rgb_yuv_no_path
[11:50:34] =============== [PASSED] drm_bridge_bus_fmt ================
[11:50:34] ============= drm_cmdline_parser (40 subtests) =============
[11:50:34] [PASSED] drm_test_cmdline_force_d_only
[11:50:34] [PASSED] drm_test_cmdline_force_D_only_dvi
[11:50:34] [PASSED] drm_test_cmdline_force_D_only_hdmi
[11:50:34] [PASSED] drm_test_cmdline_force_D_only_not_digital
[11:50:34] [PASSED] drm_test_cmdline_force_e_only
[11:50:34] [PASSED] drm_test_cmdline_res
[11:50:34] [PASSED] drm_test_cmdline_res_vesa
[11:50:34] [PASSED] drm_test_cmdline_res_vesa_rblank
[11:50:34] [PASSED] drm_test_cmdline_res_rblank
[11:50:34] [PASSED] drm_test_cmdline_res_bpp
[11:50:34] [PASSED] drm_test_cmdline_res_refresh
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[11:50:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[11:50:34] [PASSED] drm_test_cmdline_res_margins_force_on
[11:50:34] [PASSED] drm_test_cmdline_res_vesa_margins
[11:50:34] [PASSED] drm_test_cmdline_name
[11:50:34] [PASSED] drm_test_cmdline_name_bpp
[11:50:34] [PASSED] drm_test_cmdline_name_option
[11:50:34] [PASSED] drm_test_cmdline_name_bpp_option
[11:50:34] [PASSED] drm_test_cmdline_rotate_0
[11:50:34] [PASSED] drm_test_cmdline_rotate_90
[11:50:34] [PASSED] drm_test_cmdline_rotate_180
[11:50:34] [PASSED] drm_test_cmdline_rotate_270
[11:50:34] [PASSED] drm_test_cmdline_hmirror
[11:50:34] [PASSED] drm_test_cmdline_vmirror
[11:50:34] [PASSED] drm_test_cmdline_margin_options
[11:50:34] [PASSED] drm_test_cmdline_multiple_options
[11:50:34] [PASSED] drm_test_cmdline_bpp_extra_and_option
[11:50:34] [PASSED] drm_test_cmdline_extra_and_option
[11:50:34] [PASSED] drm_test_cmdline_freestanding_options
[11:50:34] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[11:50:34] [PASSED] drm_test_cmdline_panel_orientation
[11:50:34] ================ drm_test_cmdline_invalid =================
[11:50:34] [PASSED] margin_only
[11:50:34] [PASSED] interlace_only
[11:50:34] [PASSED] res_missing_x
[11:50:34] [PASSED] res_missing_y
[11:50:34] [PASSED] res_bad_y
[11:50:34] [PASSED] res_missing_y_bpp
[11:50:34] [PASSED] res_bad_bpp
[11:50:34] [PASSED] res_bad_refresh
[11:50:34] [PASSED] res_bpp_refresh_force_on_off
[11:50:34] [PASSED] res_invalid_mode
[11:50:34] [PASSED] res_bpp_wrong_place_mode
[11:50:34] [PASSED] name_bpp_refresh
[11:50:34] [PASSED] name_refresh
[11:50:34] [PASSED] name_refresh_wrong_mode
[11:50:34] [PASSED] name_refresh_invalid_mode
[11:50:34] [PASSED] rotate_multiple
[11:50:34] [PASSED] rotate_invalid_val
[11:50:34] [PASSED] rotate_truncated
[11:50:34] [PASSED] invalid_option
[11:50:34] [PASSED] invalid_tv_option
[11:50:34] [PASSED] truncated_tv_option
[11:50:34] ============ [PASSED] drm_test_cmdline_invalid =============
[11:50:34] =============== drm_test_cmdline_tv_options ===============
[11:50:34] [PASSED] NTSC
[11:50:34] [PASSED] NTSC_443
[11:50:34] [PASSED] NTSC_J
[11:50:34] [PASSED] PAL
[11:50:34] [PASSED] PAL_M
[11:50:34] [PASSED] PAL_N
[11:50:34] [PASSED] SECAM
[11:50:34] [PASSED] MONO_525
[11:50:34] [PASSED] MONO_625
[11:50:34] =========== [PASSED] drm_test_cmdline_tv_options ===========
[11:50:34] =============== [PASSED] drm_cmdline_parser ================
[11:50:34] ========== drmm_connector_hdmi_init (20 subtests) ==========
[11:50:34] [PASSED] drm_test_connector_hdmi_init_valid
[11:50:34] [PASSED] drm_test_connector_hdmi_init_bpc_8
[11:50:34] [PASSED] drm_test_connector_hdmi_init_bpc_10
[11:50:34] [PASSED] drm_test_connector_hdmi_init_bpc_12
[11:50:34] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[11:50:34] [PASSED] drm_test_connector_hdmi_init_bpc_null
[11:50:34] [PASSED] drm_test_connector_hdmi_init_formats_empty
[11:50:34] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[11:50:34] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:50:34] [PASSED] supported_formats=0x9 yuv420_allowed=1
[11:50:34] [PASSED] supported_formats=0x9 yuv420_allowed=0
[11:50:34] [PASSED] supported_formats=0x5 yuv420_allowed=1
[11:50:34] [PASSED] supported_formats=0x5 yuv420_allowed=0
[11:50:34] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:50:34] [PASSED] drm_test_connector_hdmi_init_null_ddc
[11:50:34] [PASSED] drm_test_connector_hdmi_init_null_product
[11:50:34] [PASSED] drm_test_connector_hdmi_init_null_vendor
[11:50:34] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[11:50:34] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[11:50:34] [PASSED] drm_test_connector_hdmi_init_product_valid
[11:50:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[11:50:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[11:50:34] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[11:50:34] ========= drm_test_connector_hdmi_init_type_valid =========
[11:50:34] [PASSED] HDMI-A
[11:50:34] [PASSED] HDMI-B
[11:50:34] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[11:50:34] ======== drm_test_connector_hdmi_init_type_invalid ========
[11:50:34] [PASSED] Unknown
[11:50:34] [PASSED] VGA
[11:50:34] [PASSED] DVI-I
[11:50:34] [PASSED] DVI-D
[11:50:34] [PASSED] DVI-A
[11:50:34] [PASSED] Composite
[11:50:34] [PASSED] SVIDEO
[11:50:34] [PASSED] LVDS
[11:50:34] [PASSED] Component
[11:50:34] [PASSED] DIN
[11:50:34] [PASSED] DP
[11:50:34] [PASSED] TV
[11:50:34] [PASSED] eDP
[11:50:34] [PASSED] Virtual
[11:50:34] [PASSED] DSI
[11:50:34] [PASSED] DPI
[11:50:34] [PASSED] Writeback
[11:50:34] [PASSED] SPI
[11:50:34] [PASSED] USB
[11:50:34] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[11:50:34] ============ [PASSED] drmm_connector_hdmi_init =============
[11:50:34] ============= drmm_connector_init (3 subtests) =============
[11:50:34] [PASSED] drm_test_drmm_connector_init
[11:50:34] [PASSED] drm_test_drmm_connector_init_null_ddc
[11:50:34] ========= drm_test_drmm_connector_init_type_valid =========
[11:50:34] [PASSED] Unknown
[11:50:34] [PASSED] VGA
[11:50:34] [PASSED] DVI-I
[11:50:34] [PASSED] DVI-D
[11:50:34] [PASSED] DVI-A
[11:50:34] [PASSED] Composite
[11:50:34] [PASSED] SVIDEO
[11:50:34] [PASSED] LVDS
[11:50:34] [PASSED] Component
[11:50:34] [PASSED] DIN
[11:50:34] [PASSED] DP
[11:50:34] [PASSED] HDMI-A
[11:50:34] [PASSED] HDMI-B
[11:50:34] [PASSED] TV
[11:50:34] [PASSED] eDP
[11:50:34] [PASSED] Virtual
[11:50:34] [PASSED] DSI
[11:50:34] [PASSED] DPI
[11:50:34] [PASSED] Writeback
[11:50:34] [PASSED] SPI
[11:50:34] [PASSED] USB
[11:50:34] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[11:50:34] =============== [PASSED] drmm_connector_init ===============
[11:50:34] ========= drm_connector_dynamic_init (6 subtests) ==========
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_init
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_init_properties
[11:50:34] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[11:50:34] [PASSED] Unknown
[11:50:34] [PASSED] VGA
[11:50:34] [PASSED] DVI-I
[11:50:34] [PASSED] DVI-D
[11:50:34] [PASSED] DVI-A
[11:50:34] [PASSED] Composite
[11:50:34] [PASSED] SVIDEO
[11:50:34] [PASSED] LVDS
[11:50:34] [PASSED] Component
[11:50:34] [PASSED] DIN
[11:50:34] [PASSED] DP
[11:50:34] [PASSED] HDMI-A
[11:50:34] [PASSED] HDMI-B
[11:50:34] [PASSED] TV
[11:50:34] [PASSED] eDP
[11:50:34] [PASSED] Virtual
[11:50:34] [PASSED] DSI
[11:50:34] [PASSED] DPI
[11:50:34] [PASSED] Writeback
[11:50:34] [PASSED] SPI
[11:50:34] [PASSED] USB
[11:50:34] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[11:50:34] ======== drm_test_drm_connector_dynamic_init_name =========
[11:50:34] [PASSED] Unknown
[11:50:34] [PASSED] VGA
[11:50:34] [PASSED] DVI-I
[11:50:34] [PASSED] DVI-D
[11:50:34] [PASSED] DVI-A
[11:50:34] [PASSED] Composite
[11:50:34] [PASSED] SVIDEO
[11:50:34] [PASSED] LVDS
[11:50:34] [PASSED] Component
[11:50:34] [PASSED] DIN
[11:50:34] [PASSED] DP
[11:50:34] [PASSED] HDMI-A
[11:50:34] [PASSED] HDMI-B
[11:50:34] [PASSED] TV
[11:50:34] [PASSED] eDP
[11:50:34] [PASSED] Virtual
[11:50:34] [PASSED] DSI
[11:50:34] [PASSED] DPI
[11:50:34] [PASSED] Writeback
[11:50:34] [PASSED] SPI
[11:50:34] [PASSED] USB
[11:50:34] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[11:50:34] =========== [PASSED] drm_connector_dynamic_init ============
[11:50:34] ==== drm_connector_dynamic_register_early (4 subtests) =====
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[11:50:34] ====== [PASSED] drm_connector_dynamic_register_early =======
[11:50:34] ======= drm_connector_dynamic_register (7 subtests) ========
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[11:50:34] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[11:50:34] ========= [PASSED] drm_connector_dynamic_register ==========
[11:50:34] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[11:50:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[11:50:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[11:50:34] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[11:50:34] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[11:50:34] ========== drm_test_get_tv_mode_from_name_valid ===========
[11:50:34] [PASSED] NTSC
[11:50:34] [PASSED] NTSC-443
[11:50:34] [PASSED] NTSC-J
[11:50:34] [PASSED] PAL
[11:50:34] [PASSED] PAL-M
[11:50:34] [PASSED] PAL-N
[11:50:34] [PASSED] SECAM
[11:50:34] [PASSED] Mono
[11:50:34] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[11:50:34] [PASSED] drm_test_get_tv_mode_from_name_truncated
[11:50:34] ============ [PASSED] drm_get_tv_mode_from_name ============
[11:50:34] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[11:50:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[11:50:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[11:50:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[11:50:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[11:50:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[11:50:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[11:50:34] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[11:50:34] [PASSED] VIC 96
[11:50:34] [PASSED] VIC 97
[11:50:34] [PASSED] VIC 101
[11:50:34] [PASSED] VIC 102
[11:50:34] [PASSED] VIC 106
[11:50:34] [PASSED] VIC 107
[11:50:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[11:50:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[11:50:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[11:50:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[11:50:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[11:50:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[11:50:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[11:50:34] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[11:50:34] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[11:50:34] [PASSED] Automatic
[11:50:34] [PASSED] Full
[11:50:34] [PASSED] Limited 16:235
[11:50:34] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[11:50:34] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[11:50:34] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[11:50:34] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[11:50:34] === drm_test_drm_hdmi_connector_get_output_format_name ====
[11:50:34] [PASSED] RGB
[11:50:34] [PASSED] YUV 4:2:0
[11:50:34] [PASSED] YUV 4:2:2
[11:50:34] [PASSED] YUV 4:4:4
[11:50:34] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[11:50:34] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[11:50:34] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[11:50:34] ============= drm_damage_helper (21 subtests) ==============
[11:50:34] [PASSED] drm_test_damage_iter_no_damage
[11:50:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[11:50:34] [PASSED] drm_test_damage_iter_no_damage_src_moved
[11:50:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[11:50:34] [PASSED] drm_test_damage_iter_no_damage_not_visible
[11:50:34] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[11:50:34] [PASSED] drm_test_damage_iter_no_damage_no_fb
[11:50:34] [PASSED] drm_test_damage_iter_simple_damage
[11:50:34] [PASSED] drm_test_damage_iter_single_damage
[11:50:34] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[11:50:34] [PASSED] drm_test_damage_iter_single_damage_outside_src
[11:50:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[11:50:34] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[11:50:34] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[11:50:34] [PASSED] drm_test_damage_iter_single_damage_src_moved
[11:50:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[11:50:34] [PASSED] drm_test_damage_iter_damage
[11:50:34] [PASSED] drm_test_damage_iter_damage_one_intersect
[11:50:34] [PASSED] drm_test_damage_iter_damage_one_outside
[11:50:34] [PASSED] drm_test_damage_iter_damage_src_moved
[11:50:34] [PASSED] drm_test_damage_iter_damage_not_visible
[11:50:34] ================ [PASSED] drm_damage_helper ================
[11:50:34] ============== drm_dp_mst_helper (3 subtests) ==============
[11:50:34] ============== drm_test_dp_mst_calc_pbn_mode ==============
[11:50:34] [PASSED] Clock 154000 BPP 30 DSC disabled
[11:50:34] [PASSED] Clock 234000 BPP 30 DSC disabled
[11:50:34] [PASSED] Clock 297000 BPP 24 DSC disabled
[11:50:34] [PASSED] Clock 332880 BPP 24 DSC enabled
[11:50:34] [PASSED] Clock 324540 BPP 24 DSC enabled
[11:50:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[11:50:34] ============== drm_test_dp_mst_calc_pbn_div ===============
[11:50:34] [PASSED] Link rate 2000000 lane count 4
[11:50:34] [PASSED] Link rate 2000000 lane count 2
[11:50:34] [PASSED] Link rate 2000000 lane count 1
[11:50:34] [PASSED] Link rate 1350000 lane count 4
[11:50:34] [PASSED] Link rate 1350000 lane count 2
[11:50:34] [PASSED] Link rate 1350000 lane count 1
[11:50:34] [PASSED] Link rate 1000000 lane count 4
[11:50:34] [PASSED] Link rate 1000000 lane count 2
[11:50:34] [PASSED] Link rate 1000000 lane count 1
[11:50:34] [PASSED] Link rate 810000 lane count 4
[11:50:34] [PASSED] Link rate 810000 lane count 2
[11:50:34] [PASSED] Link rate 810000 lane count 1
[11:50:34] [PASSED] Link rate 540000 lane count 4
[11:50:34] [PASSED] Link rate 540000 lane count 2
[11:50:34] [PASSED] Link rate 540000 lane count 1
[11:50:34] [PASSED] Link rate 270000 lane count 4
[11:50:34] [PASSED] Link rate 270000 lane count 2
[11:50:34] [PASSED] Link rate 270000 lane count 1
[11:50:34] [PASSED] Link rate 162000 lane count 4
[11:50:34] [PASSED] Link rate 162000 lane count 2
[11:50:34] [PASSED] Link rate 162000 lane count 1
[11:50:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[11:50:34] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[11:50:34] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[11:50:34] [PASSED] DP_POWER_UP_PHY with port number
[11:50:34] [PASSED] DP_POWER_DOWN_PHY with port number
[11:50:34] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[11:50:34] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[11:50:34] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[11:50:34] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[11:50:34] [PASSED] DP_QUERY_PAYLOAD with port number
[11:50:34] [PASSED] DP_QUERY_PAYLOAD with VCPI
[11:50:34] [PASSED] DP_REMOTE_DPCD_READ with port number
[11:50:34] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[11:50:34] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[11:50:34] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[11:50:34] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[11:50:34] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[11:50:34] [PASSED] DP_REMOTE_I2C_READ with port number
[11:50:34] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[11:50:34] [PASSED] DP_REMOTE_I2C_READ with transactions array
[11:50:34] [PASSED] DP_REMOTE_I2C_WRITE with port number
[11:50:34] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[11:50:34] [PASSED] DP_REMOTE_I2C_WRITE with data array
[11:50:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[11:50:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[11:50:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[11:50:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[11:50:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[11:50:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[11:50:34] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[11:50:34] ================ [PASSED] drm_dp_mst_helper ================
[11:50:34] ================== drm_exec (7 subtests) ===================
[11:50:34] [PASSED] sanitycheck
[11:50:34] [PASSED] test_lock
[11:50:34] [PASSED] test_lock_unlock
[11:50:34] [PASSED] test_duplicates
[11:50:34] [PASSED] test_prepare
[11:50:34] [PASSED] test_prepare_array
[11:50:34] [PASSED] test_multiple_loops
[11:50:34] ==================== [PASSED] drm_exec =====================
[11:50:34] =========== drm_format_helper_test (17 subtests) ===========
[11:50:34] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[11:50:34] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[11:50:34] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[11:50:34] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[11:50:34] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[11:50:34] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[11:50:34] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[11:50:34] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[11:50:34] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[11:50:34] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[11:50:34] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[11:50:34] ============== drm_test_fb_xrgb8888_to_mono ===============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[11:50:34] ==================== drm_test_fb_swab =====================
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ================ [PASSED] drm_test_fb_swab =================
[11:50:34] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[11:50:34] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[11:50:34] [PASSED] single_pixel_source_buffer
[11:50:34] [PASSED] single_pixel_clip_rectangle
[11:50:34] [PASSED] well_known_colors
[11:50:34] [PASSED] destination_pitch
[11:50:34] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[11:50:34] ================= drm_test_fb_clip_offset =================
[11:50:34] [PASSED] pass through
[11:50:34] [PASSED] horizontal offset
[11:50:34] [PASSED] vertical offset
[11:50:34] [PASSED] horizontal and vertical offset
[11:50:34] [PASSED] horizontal offset (custom pitch)
[11:50:34] [PASSED] vertical offset (custom pitch)
[11:50:34] [PASSED] horizontal and vertical offset (custom pitch)
[11:50:34] ============= [PASSED] drm_test_fb_clip_offset =============
[11:50:34] =================== drm_test_fb_memcpy ====================
[11:50:34] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[11:50:34] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[11:50:34] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[11:50:34] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[11:50:34] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[11:50:34] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[11:50:34] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[11:50:34] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[11:50:34] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[11:50:34] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[11:50:34] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[11:50:34] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[11:50:34] =============== [PASSED] drm_test_fb_memcpy ================
[11:50:34] ============= [PASSED] drm_format_helper_test ==============
[11:50:34] ================= drm_format (18 subtests) =================
[11:50:34] [PASSED] drm_test_format_block_width_invalid
[11:50:34] [PASSED] drm_test_format_block_width_one_plane
[11:50:34] [PASSED] drm_test_format_block_width_two_plane
[11:50:34] [PASSED] drm_test_format_block_width_three_plane
[11:50:34] [PASSED] drm_test_format_block_width_tiled
[11:50:34] [PASSED] drm_test_format_block_height_invalid
[11:50:34] [PASSED] drm_test_format_block_height_one_plane
[11:50:34] [PASSED] drm_test_format_block_height_two_plane
[11:50:34] [PASSED] drm_test_format_block_height_three_plane
[11:50:34] [PASSED] drm_test_format_block_height_tiled
[11:50:34] [PASSED] drm_test_format_min_pitch_invalid
[11:50:34] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[11:50:34] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[11:50:34] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[11:50:34] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[11:50:34] [PASSED] drm_test_format_min_pitch_two_plane
[11:50:34] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[11:50:34] [PASSED] drm_test_format_min_pitch_tiled
[11:50:34] =================== [PASSED] drm_format ====================
[11:50:34] ============== drm_framebuffer (10 subtests) ===============
[11:50:34] ========== drm_test_framebuffer_check_src_coords ==========
[11:50:34] [PASSED] Success: source fits into fb
[11:50:34] [PASSED] Fail: overflowing fb with x-axis coordinate
[11:50:34] [PASSED] Fail: overflowing fb with y-axis coordinate
[11:50:34] [PASSED] Fail: overflowing fb with source width
[11:50:34] [PASSED] Fail: overflowing fb with source height
[11:50:34] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[11:50:34] [PASSED] drm_test_framebuffer_cleanup
[11:50:34] =============== drm_test_framebuffer_create ===============
[11:50:34] [PASSED] ABGR8888 normal sizes
[11:50:34] [PASSED] ABGR8888 max sizes
[11:50:34] [PASSED] ABGR8888 pitch greater than min required
[11:50:34] [PASSED] ABGR8888 pitch less than min required
[11:50:34] [PASSED] ABGR8888 Invalid width
[11:50:34] [PASSED] ABGR8888 Invalid buffer handle
[11:50:34] [PASSED] No pixel format
[11:50:34] [PASSED] ABGR8888 Width 0
[11:50:34] [PASSED] ABGR8888 Height 0
[11:50:34] [PASSED] ABGR8888 Out of bound height * pitch combination
[11:50:34] [PASSED] ABGR8888 Large buffer offset
[11:50:34] [PASSED] ABGR8888 Buffer offset for inexistent plane
[11:50:34] [PASSED] ABGR8888 Invalid flag
[11:50:34] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[11:50:34] [PASSED] ABGR8888 Valid buffer modifier
[11:50:34] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[11:50:34] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[11:50:34] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[11:50:34] [PASSED] NV12 Normal sizes
[11:50:34] [PASSED] NV12 Max sizes
[11:50:34] [PASSED] NV12 Invalid pitch
[11:50:34] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[11:50:34] [PASSED] NV12 different modifier per-plane
[11:50:34] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[11:50:34] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[11:50:34] [PASSED] NV12 Modifier for inexistent plane
[11:50:34] [PASSED] NV12 Handle for inexistent plane
[11:50:34] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[11:50:34] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[11:50:34] [PASSED] YVU420 Normal sizes
[11:50:34] [PASSED] YVU420 Max sizes
[11:50:34] [PASSED] YVU420 Invalid pitch
[11:50:34] [PASSED] YVU420 Different pitches
[11:50:34] [PASSED] YVU420 Different buffer offsets/pitches
[11:50:34] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[11:50:34] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[11:50:34] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[11:50:34] [PASSED] YVU420 Valid modifier
[11:50:34] [PASSED] YVU420 Different modifiers per plane
[11:50:34] [PASSED] YVU420 Modifier for inexistent plane
[11:50:34] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[11:50:34] [PASSED] X0L2 Normal sizes
[11:50:34] [PASSED] X0L2 Max sizes
[11:50:34] [PASSED] X0L2 Invalid pitch
[11:50:34] [PASSED] X0L2 Pitch greater than minimum required
[11:50:34] [PASSED] X0L2 Handle for inexistent plane
[11:50:34] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[11:50:34] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[11:50:34] [PASSED] X0L2 Valid modifier
[11:50:34] [PASSED] X0L2 Modifier for inexistent plane
[11:50:34] =========== [PASSED] drm_test_framebuffer_create ===========
[11:50:34] [PASSED] drm_test_framebuffer_free
[11:50:34] [PASSED] drm_test_framebuffer_init
[11:50:34] [PASSED] drm_test_framebuffer_init_bad_format
[11:50:34] [PASSED] drm_test_framebuffer_init_dev_mismatch
[11:50:34] [PASSED] drm_test_framebuffer_lookup
[11:50:34] [PASSED] drm_test_framebuffer_lookup_inexistent
[11:50:34] [PASSED] drm_test_framebuffer_modifiers_not_supported
[11:50:34] ================= [PASSED] drm_framebuffer =================
[11:50:34] ================ drm_gem_shmem (8 subtests) ================
[11:50:34] [PASSED] drm_gem_shmem_test_obj_create
[11:50:34] [PASSED] drm_gem_shmem_test_obj_create_private
[11:50:34] [PASSED] drm_gem_shmem_test_pin_pages
[11:50:34] [PASSED] drm_gem_shmem_test_vmap
[11:50:34] [PASSED] drm_gem_shmem_test_get_sg_table
[11:50:34] [PASSED] drm_gem_shmem_test_get_pages_sgt
[11:50:34] [PASSED] drm_gem_shmem_test_madvise
[11:50:34] [PASSED] drm_gem_shmem_test_purge
[11:50:34] ================== [PASSED] drm_gem_shmem ==================
[11:50:34] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[11:50:34] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[11:50:34] [PASSED] Automatic
[11:50:34] [PASSED] Full
[11:50:34] [PASSED] Limited 16:235
[11:50:34] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[11:50:34] [PASSED] drm_test_check_disable_connector
[11:50:34] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[11:50:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[11:50:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[11:50:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[11:50:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[11:50:34] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[11:50:34] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[11:50:34] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[11:50:34] [PASSED] drm_test_check_output_bpc_dvi
[11:50:34] [PASSED] drm_test_check_output_bpc_format_vic_1
[11:50:34] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[11:50:34] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[11:50:34] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[11:50:34] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[11:50:34] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[11:50:34] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[11:50:34] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[11:50:34] ============ drm_test_check_hdmi_color_format =============
[11:50:34] [PASSED] AUTO -> RGB
[11:50:34] [PASSED] YCBCR422 -> YUV422
[11:50:34] [PASSED] YCBCR420 -> YUV420
[11:50:34] [PASSED] YCBCR444 -> YUV444
[11:50:34] [PASSED] RGB -> RGB
[11:50:34] ======== [PASSED] drm_test_check_hdmi_color_format =========
[11:50:34] ======== drm_test_check_hdmi_color_format_420_only ========
[11:50:34] [PASSED] RGB should fail
[11:50:34] [PASSED] YUV444 should fail
[11:50:34] [PASSED] YUV422 should fail
[11:50:34] [PASSED] YUV420 should work
[11:50:34] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[11:50:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[11:50:34] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[11:50:34] [PASSED] drm_test_check_broadcast_rgb_value
[11:50:34] [PASSED] drm_test_check_bpc_8_value
[11:50:34] [PASSED] drm_test_check_bpc_10_value
[11:50:34] [PASSED] drm_test_check_bpc_12_value
[11:50:34] [PASSED] drm_test_check_format_value
[11:50:34] [PASSED] drm_test_check_tmds_char_value
[11:50:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[11:50:34] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[11:50:34] [PASSED] drm_test_check_mode_valid
[11:50:34] [PASSED] drm_test_check_mode_valid_reject
[11:50:34] [PASSED] drm_test_check_mode_valid_reject_rate
[11:50:34] [PASSED] drm_test_check_mode_valid_reject_max_clock
[11:50:34] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[11:50:34] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[11:50:34] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[11:50:34] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[11:50:34] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[11:50:34] [PASSED] drm_test_check_infoframes
[11:50:34] [PASSED] drm_test_check_reject_avi_infoframe
[11:50:34] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[11:50:34] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[11:50:34] [PASSED] drm_test_check_reject_audio_infoframe
[11:50:34] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[11:50:34] ================= drm_managed (2 subtests) =================
[11:50:34] [PASSED] drm_test_managed_release_action
[11:50:34] [PASSED] drm_test_managed_run_action
[11:50:34] =================== [PASSED] drm_managed ===================
[11:50:34] =================== drm_mm (6 subtests) ====================
[11:50:34] [PASSED] drm_test_mm_init
[11:50:34] [PASSED] drm_test_mm_debug
[11:50:34] [PASSED] drm_test_mm_align32
[11:50:34] [PASSED] drm_test_mm_align64
[11:50:34] [PASSED] drm_test_mm_lowest
[11:50:34] [PASSED] drm_test_mm_highest
[11:50:34] ===================== [PASSED] drm_mm ======================
[11:50:34] ============= drm_modes_analog_tv (5 subtests) =============
[11:50:34] [PASSED] drm_test_modes_analog_tv_mono_576i
[11:50:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[11:50:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[11:50:34] [PASSED] drm_test_modes_analog_tv_pal_576i
[11:50:34] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[11:50:34] =============== [PASSED] drm_modes_analog_tv ===============
[11:50:34] ============== drm_plane_helper (2 subtests) ===============
[11:50:34] =============== drm_test_check_plane_state ================
[11:50:34] [PASSED] clipping_simple
[11:50:34] [PASSED] clipping_rotate_reflect
[11:50:34] [PASSED] positioning_simple
[11:50:34] [PASSED] upscaling
[11:50:34] [PASSED] downscaling
[11:50:34] [PASSED] rounding1
[11:50:34] [PASSED] rounding2
[11:50:34] [PASSED] rounding3
[11:50:34] [PASSED] rounding4
[11:50:34] =========== [PASSED] drm_test_check_plane_state ============
[11:50:34] =========== drm_test_check_invalid_plane_state ============
[11:50:34] [PASSED] positioning_invalid
[11:50:34] [PASSED] upscaling_invalid
[11:50:34] [PASSED] downscaling_invalid
[11:50:34] ======= [PASSED] drm_test_check_invalid_plane_state ========
[11:50:34] ================ [PASSED] drm_plane_helper =================
[11:50:34] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[11:50:34] ====== drm_test_connector_helper_tv_get_modes_check =======
[11:50:34] [PASSED] None
[11:50:34] [PASSED] PAL
[11:50:34] [PASSED] NTSC
[11:50:34] [PASSED] Both, NTSC Default
[11:50:34] [PASSED] Both, PAL Default
[11:50:34] [PASSED] Both, NTSC Default, with PAL on command-line
[11:50:34] [PASSED] Both, PAL Default, with NTSC on command-line
[11:50:34] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[11:50:34] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[11:50:34] ================== drm_rect (9 subtests) ===================
[11:50:34] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[11:50:34] [PASSED] drm_test_rect_clip_scaled_not_clipped
[11:50:34] [PASSED] drm_test_rect_clip_scaled_clipped
[11:50:34] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[11:50:34] ================= drm_test_rect_intersect =================
[11:50:34] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[11:50:34] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[11:50:34] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[11:50:34] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[11:50:34] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[11:50:34] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[11:50:34] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[11:50:34] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[11:50:34] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[11:50:34] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[11:50:34] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[11:50:34] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[11:50:34] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[11:50:34] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[11:50:34] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[11:50:34] ============= [PASSED] drm_test_rect_intersect =============
[11:50:34] ================ drm_test_rect_calc_hscale ================
[11:50:34] [PASSED] normal use
[11:50:34] [PASSED] out of max range
[11:50:34] [PASSED] out of min range
[11:50:34] [PASSED] zero dst
[11:50:34] [PASSED] negative src
[11:50:34] [PASSED] negative dst
[11:50:34] ============ [PASSED] drm_test_rect_calc_hscale ============
[11:50:34] ================ drm_test_rect_calc_vscale ================
[11:50:34] [PASSED] normal use
[11:50:34] [PASSED] out of max range
[11:50:34] [PASSED] out of min range
[11:50:34] [PASSED] zero dst
[11:50:34] [PASSED] negative src
[11:50:34] [PASSED] negative dst
[11:50:34] ============ [PASSED] drm_test_rect_calc_vscale ============
[11:50:34] ================== drm_test_rect_rotate ===================
[11:50:34] [PASSED] reflect-x
[11:50:34] [PASSED] reflect-y
[11:50:34] [PASSED] rotate-0
[11:50:34] [PASSED] rotate-90
[11:50:34] [PASSED] rotate-180
[11:50:34] [PASSED] rotate-270
[11:50:34] ============== [PASSED] drm_test_rect_rotate ===============
[11:50:34] ================ drm_test_rect_rotate_inv =================
[11:50:34] [PASSED] reflect-x
[11:50:34] [PASSED] reflect-y
[11:50:34] [PASSED] rotate-0
[11:50:34] [PASSED] rotate-90
[11:50:34] [PASSED] rotate-180
[11:50:34] [PASSED] rotate-270
[11:50:34] ============ [PASSED] drm_test_rect_rotate_inv =============
[11:50:34] ==================== [PASSED] drm_rect =====================
[11:50:34] ============ drm_sysfb_modeset_test (1 subtest) ============
[11:50:34] ============ drm_test_sysfb_build_fourcc_list =============
[11:50:34] [PASSED] no native formats
[11:50:34] [PASSED] XRGB8888 as native format
[11:50:34] [PASSED] remove duplicates
[11:50:34] [PASSED] convert alpha formats
[11:50:34] [PASSED] random formats
[11:50:34] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[11:50:34] ============= [PASSED] drm_sysfb_modeset_test ==============
[11:50:34] ================== drm_fixp (2 subtests) ===================
[11:50:34] [PASSED] drm_test_int2fixp
[11:50:34] [PASSED] drm_test_sm2fixp
[11:50:34] ==================== [PASSED] drm_fixp =====================
[11:50:34] ============================================================
[11:50:34] Testing complete. Ran 637 tests: passed: 637
[11:50:34] Elapsed time: 26.589s total, 1.815s configuring, 24.606s building, 0.149s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:50:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:50:36] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:50:45] Starting KUnit Kernel (1/1)...
[11:50:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:50:46] ================= ttm_device (5 subtests) ==================
[11:50:46] [PASSED] ttm_device_init_basic
[11:50:46] [PASSED] ttm_device_init_multiple
[11:50:46] [PASSED] ttm_device_fini_basic
[11:50:46] [PASSED] ttm_device_init_no_vma_man
[11:50:46] ================== ttm_device_init_pools ==================
[11:50:46] [PASSED] No DMA allocations, no DMA32 required
[11:50:46] [PASSED] DMA allocations, DMA32 required
[11:50:46] [PASSED] No DMA allocations, DMA32 required
[11:50:46] [PASSED] DMA allocations, no DMA32 required
[11:50:46] ============== [PASSED] ttm_device_init_pools ==============
[11:50:46] =================== [PASSED] ttm_device ====================
[11:50:46] ================== ttm_pool (8 subtests) ===================
[11:50:46] ================== ttm_pool_alloc_basic ===================
[11:50:46] [PASSED] One page
[11:50:46] [PASSED] More than one page
[11:50:46] [PASSED] Above the allocation limit
[11:50:46] [PASSED] One page, with coherent DMA mappings enabled
[11:50:46] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:50:46] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:50:46] ============== ttm_pool_alloc_basic_dma_addr ==============
[11:50:46] [PASSED] One page
[11:50:46] [PASSED] More than one page
[11:50:46] [PASSED] Above the allocation limit
[11:50:46] [PASSED] One page, with coherent DMA mappings enabled
[11:50:46] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:50:46] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:50:46] [PASSED] ttm_pool_alloc_order_caching_match
[11:50:46] [PASSED] ttm_pool_alloc_caching_mismatch
[11:50:46] [PASSED] ttm_pool_alloc_order_mismatch
[11:50:46] [PASSED] ttm_pool_free_dma_alloc
[11:50:46] [PASSED] ttm_pool_free_no_dma_alloc
[11:50:46] [PASSED] ttm_pool_fini_basic
[11:50:46] ==================== [PASSED] ttm_pool =====================
[11:50:46] ================ ttm_resource (8 subtests) =================
[11:50:46] ================= ttm_resource_init_basic =================
[11:50:46] [PASSED] Init resource in TTM_PL_SYSTEM
[11:50:46] [PASSED] Init resource in TTM_PL_VRAM
[11:50:46] [PASSED] Init resource in a private placement
[11:50:46] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:50:46] ============= [PASSED] ttm_resource_init_basic =============
[11:50:46] [PASSED] ttm_resource_init_pinned
[11:50:46] [PASSED] ttm_resource_fini_basic
[11:50:46] [PASSED] ttm_resource_manager_init_basic
[11:50:46] [PASSED] ttm_resource_manager_usage_basic
[11:50:46] [PASSED] ttm_resource_manager_set_used_basic
[11:50:46] [PASSED] ttm_sys_man_alloc_basic
[11:50:46] [PASSED] ttm_sys_man_free_basic
[11:50:46] ================== [PASSED] ttm_resource ===================
[11:50:46] =================== ttm_tt (15 subtests) ===================
[11:50:46] ==================== ttm_tt_init_basic ====================
[11:50:46] [PASSED] Page-aligned size
[11:50:46] [PASSED] Extra pages requested
[11:50:46] ================ [PASSED] ttm_tt_init_basic ================
[11:50:46] [PASSED] ttm_tt_init_misaligned
[11:50:46] [PASSED] ttm_tt_fini_basic
[11:50:46] [PASSED] ttm_tt_fini_sg
[11:50:46] [PASSED] ttm_tt_fini_shmem
[11:50:46] [PASSED] ttm_tt_create_basic
[11:50:46] [PASSED] ttm_tt_create_invalid_bo_type
[11:50:46] [PASSED] ttm_tt_create_ttm_exists
[11:50:46] [PASSED] ttm_tt_create_failed
[11:50:46] [PASSED] ttm_tt_destroy_basic
[11:50:46] [PASSED] ttm_tt_populate_null_ttm
[11:50:46] [PASSED] ttm_tt_populate_populated_ttm
[11:50:46] [PASSED] ttm_tt_unpopulate_basic
[11:50:46] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:50:46] [PASSED] ttm_tt_swapin_basic
[11:50:46] ===================== [PASSED] ttm_tt ======================
[11:50:46] =================== ttm_bo (14 subtests) ===================
[11:50:46] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[11:50:46] [PASSED] Cannot be interrupted and sleeps
[11:50:46] [PASSED] Cannot be interrupted, locks straight away
[11:50:46] [PASSED] Can be interrupted, sleeps
[11:50:46] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:50:46] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:50:46] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:50:46] [PASSED] ttm_bo_reserve_double_resv
[11:50:46] [PASSED] ttm_bo_reserve_interrupted
[11:50:46] [PASSED] ttm_bo_reserve_deadlock
[11:50:46] [PASSED] ttm_bo_unreserve_basic
[11:50:46] [PASSED] ttm_bo_unreserve_pinned
[11:50:46] [PASSED] ttm_bo_unreserve_bulk
[11:50:46] [PASSED] ttm_bo_fini_basic
[11:50:46] [PASSED] ttm_bo_fini_shared_resv
[11:50:46] [PASSED] ttm_bo_pin_basic
[11:50:46] [PASSED] ttm_bo_pin_unpin_resource
[11:50:46] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:50:46] ===================== [PASSED] ttm_bo ======================
[11:50:46] ============== ttm_bo_validate (22 subtests) ===============
[11:50:46] ============== ttm_bo_init_reserved_sys_man ===============
[11:50:46] [PASSED] Buffer object for userspace
[11:50:46] [PASSED] Kernel buffer object
[11:50:46] [PASSED] Shared buffer object
[11:50:46] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:50:46] ============== ttm_bo_init_reserved_mock_man ==============
[11:50:46] [PASSED] Buffer object for userspace
[11:50:46] [PASSED] Kernel buffer object
[11:50:46] [PASSED] Shared buffer object
[11:50:46] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:50:46] [PASSED] ttm_bo_init_reserved_resv
[11:50:46] ================== ttm_bo_validate_basic ==================
[11:50:46] [PASSED] Buffer object for userspace
[11:50:46] [PASSED] Kernel buffer object
[11:50:46] [PASSED] Shared buffer object
[11:50:46] ============== [PASSED] ttm_bo_validate_basic ==============
[11:50:46] [PASSED] ttm_bo_validate_invalid_placement
[11:50:46] ============= ttm_bo_validate_same_placement ==============
[11:50:46] [PASSED] System manager
[11:50:46] [PASSED] VRAM manager
[11:50:46] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:50:46] [PASSED] ttm_bo_validate_failed_alloc
[11:50:46] [PASSED] ttm_bo_validate_pinned
[11:50:46] [PASSED] ttm_bo_validate_busy_placement
[11:50:46] ================ ttm_bo_validate_multihop =================
[11:50:46] [PASSED] Buffer object for userspace
[11:50:46] [PASSED] Kernel buffer object
[11:50:46] [PASSED] Shared buffer object
[11:50:46] ============ [PASSED] ttm_bo_validate_multihop =============
[11:50:46] ========== ttm_bo_validate_no_placement_signaled ==========
[11:50:46] [PASSED] Buffer object in system domain, no page vector
[11:50:46] [PASSED] Buffer object in system domain with an existing page vector
[11:50:46] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:50:46] ======== ttm_bo_validate_no_placement_not_signaled ========
[11:50:46] [PASSED] Buffer object for userspace
[11:50:46] [PASSED] Kernel buffer object
[11:50:46] [PASSED] Shared buffer object
[11:50:46] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:50:46] [PASSED] ttm_bo_validate_move_fence_signaled
[11:50:46] ========= ttm_bo_validate_move_fence_not_signaled =========
[11:50:46] [PASSED] Waits for GPU
[11:50:46] [PASSED] Tries to lock straight away
[11:50:46] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:50:46] [PASSED] ttm_bo_validate_swapout
[11:50:46] [PASSED] ttm_bo_validate_happy_evict
[11:50:46] [PASSED] ttm_bo_validate_all_pinned_evict
[11:50:46] [PASSED] ttm_bo_validate_allowed_only_evict
[11:50:46] [PASSED] ttm_bo_validate_deleted_evict
[11:50:46] [PASSED] ttm_bo_validate_busy_domain_evict
[11:50:46] [PASSED] ttm_bo_validate_evict_gutting
[11:50:46] [PASSED] ttm_bo_validate_recrusive_evict
[11:50:46] ================= [PASSED] ttm_bo_validate =================
[11:50:46] ============================================================
[11:50:46] Testing complete. Ran 102 tests: passed: 102
[11:50:46] Elapsed time: 11.926s total, 1.753s configuring, 9.908s building, 0.216s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ Xe.CI.BAT: failure for Introduce cold reset recovery method (rev13)
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
` (4 preceding siblings ...)
2026-08-05 11:50 ` ✓ CI.KUnit: success for Introduce cold reset recovery method (rev13) Patchwork
@ 2026-08-05 12:31 ` Patchwork
2026-08-05 22:59 ` ✗ Xe.CI.FULL: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-08-05 12:31 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2196 bytes --]
== Series Details ==
Series: Introduce cold reset recovery method (rev13)
URL : https://patchwork.freedesktop.org/series/163428/
State : failure
== Summary ==
CI Bug Log - changes from xe-5545-4c13a67db118ee0019231dbc1362bcb8115ac660_BAT -> xe-pw-163428v13_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-163428v13_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-163428v13_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-163428v13_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- bat-nvls-1: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5545-4c13a67db118ee0019231dbc1362bcb8115ac660/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v13/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-nvls-2: [SKIP][3] ([Intel XE#7779]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5545-4c13a67db118ee0019231dbc1362bcb8115ac660/bat-nvls-2/igt@kms_frontbuffer_tracking@basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v13/bat-nvls-2/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
Build changes
-------------
* Linux: xe-5545-4c13a67db118ee0019231dbc1362bcb8115ac660 -> xe-pw-163428v13
IGT_9038: 9038
xe-5545-4c13a67db118ee0019231dbc1362bcb8115ac660: 4c13a67db118ee0019231dbc1362bcb8115ac660
xe-pw-163428v13: 163428v13
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v13/index.html
[-- Attachment #2: Type: text/html, Size: 2804 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ Xe.CI.FULL: failure for Introduce cold reset recovery method (rev13)
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
` (5 preceding siblings ...)
2026-08-05 12:31 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-08-05 22:59 ` Patchwork
2026-08-06 16:41 ` ✓ CI.KUnit: success for Introduce cold reset recovery method (rev14) Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-08-05 22:59 UTC (permalink / raw)
To: Mallesh, Koujalagi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 376 bytes --]
== Series Details ==
Series: Introduce cold reset recovery method (rev13)
URL : https://patchwork.freedesktop.org/series/163428/
State : failure
== Summary ==
ERROR: The runconfig 'xe-5545-4c13a67db118ee0019231dbc1362bcb8115ac660_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v13/index.html
[-- Attachment #2: Type: text/html, Size: 942 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ CI.KUnit: success for Introduce cold reset recovery method (rev14)
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
` (6 preceding siblings ...)
2026-08-05 22:59 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-08-06 16:41 ` Patchwork
2026-08-06 17:22 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-07 5:53 ` ✗ Xe.CI.FULL: failure " Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-08-06 16:41 UTC (permalink / raw)
To: Mallesh Koujalagi; +Cc: intel-xe
== Series Details ==
Series: Introduce cold reset recovery method (rev14)
URL : https://patchwork.freedesktop.org/series/163428/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:40:05] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:40:09] 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
[16:40:41] Starting KUnit Kernel (1/1)...
[16:40:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:40:41] ================== guc_buf (11 subtests) ===================
[16:40:41] [PASSED] test_smallest
[16:40:41] [PASSED] test_largest
[16:40:41] [PASSED] test_granular
[16:40:41] [PASSED] test_unique
[16:40:41] [PASSED] test_overlap
[16:40:41] [PASSED] test_reusable
[16:40:41] [PASSED] test_too_big
[16:40:41] [PASSED] test_flush
[16:40:41] [PASSED] test_lookup
[16:40:41] [PASSED] test_data
[16:40:41] [PASSED] test_class
[16:40:41] ===================== [PASSED] guc_buf =====================
[16:40:41] =================== guc_dbm (7 subtests) ===================
[16:40:41] [PASSED] test_empty
[16:40:41] [PASSED] test_default
[16:40:41] ======================== test_size ========================
[16:40:41] [PASSED] 4
[16:40:41] [PASSED] 8
[16:40:41] [PASSED] 32
[16:40:41] [PASSED] 256
[16:40:41] ==================== [PASSED] test_size ====================
[16:40:41] ======================= test_reuse ========================
[16:40:41] [PASSED] 4
[16:40:41] [PASSED] 8
[16:40:41] [PASSED] 32
[16:40:41] [PASSED] 256
[16:40:41] =================== [PASSED] test_reuse ====================
[16:40:41] =================== test_range_overlap ====================
[16:40:41] [PASSED] 4
[16:40:41] [PASSED] 8
[16:40:41] [PASSED] 32
[16:40:41] [PASSED] 256
[16:40:41] =============== [PASSED] test_range_overlap ================
[16:40:41] =================== test_range_compact ====================
[16:40:41] [PASSED] 4
[16:40:41] [PASSED] 8
[16:40:41] [PASSED] 32
[16:40:41] [PASSED] 256
[16:40:41] =============== [PASSED] test_range_compact ================
[16:40:41] ==================== test_range_spare =====================
[16:40:41] [PASSED] 4
[16:40:41] [PASSED] 8
[16:40:41] [PASSED] 32
[16:40:41] [PASSED] 256
[16:40:41] ================ [PASSED] test_range_spare =================
[16:40:41] ===================== [PASSED] guc_dbm =====================
[16:40:41] =================== guc_idm (6 subtests) ===================
[16:40:41] [PASSED] bad_init
[16:40:41] [PASSED] no_init
[16:40:41] [PASSED] init_fini
[16:40:41] [PASSED] check_used
[16:40:42] [PASSED] check_quota
[16:40:42] [PASSED] check_all
[16:40:42] ===================== [PASSED] guc_idm =====================
[16:40:42] =============== guc_klv_helpers (9 subtests) ===============
[16:40:42] [PASSED] test_count
[16:40:42] [PASSED] test_encode_u32
[16:40:42] [PASSED] test_encode_u64
[16:40:42] [PASSED] test_encode_string
[16:40:42] [PASSED] test_encode_object_raw
[16:40:42] [PASSED] test_encode_object_klv
[16:40:42] [PASSED] test_encode_object_nested
[16:40:42] [PASSED] test_encode_object_basic
[16:40:42] [PASSED] test_print
[16:40:42] ================= [PASSED] guc_klv_helpers =================
[16:40:42] ================== no_relay (3 subtests) ===================
[16:40:42] [PASSED] xe_drops_guc2pf_if_not_ready
[16:40:42] [PASSED] xe_drops_guc2vf_if_not_ready
[16:40:42] [PASSED] xe_rejects_send_if_not_ready
[16:40:42] ==================== [PASSED] no_relay =====================
[16:40:42] ================== pf_relay (14 subtests) ==================
[16:40:42] [PASSED] pf_rejects_guc2pf_too_short
[16:40:42] [PASSED] pf_rejects_guc2pf_too_long
[16:40:42] [PASSED] pf_rejects_guc2pf_no_payload
[16:40:42] [PASSED] pf_fails_no_payload
[16:40:42] [PASSED] pf_fails_bad_origin
[16:40:42] [PASSED] pf_fails_bad_type
[16:40:42] [PASSED] pf_txn_reports_error
[16:40:42] [PASSED] pf_txn_sends_pf2guc
[16:40:42] [PASSED] pf_sends_pf2guc
[16:40:42] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[16:40:42] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[16:40:42] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[16:40:42] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[16:40:42] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[16:40:42] ==================== [PASSED] pf_relay =====================
[16:40:42] ================== vf_relay (3 subtests) ===================
[16:40:42] [PASSED] vf_rejects_guc2vf_too_short
[16:40:42] [PASSED] vf_rejects_guc2vf_too_long
[16:40:42] [PASSED] vf_rejects_guc2vf_no_payload
[16:40:42] ==================== [PASSED] vf_relay =====================
[16:40:42] ================ pf_gt_config (9 subtests) =================
[16:40:42] [PASSED] fair_contexts_1vf
[16:40:42] [PASSED] fair_doorbells_1vf
[16:40:42] [PASSED] fair_ggtt_1vf
[16:40:42] ====================== fair_vram_1vf ======================
[16:40:42] [PASSED] 3.50 GiB
[16:40:42] [PASSED] 11.5 GiB
[16:40:42] [PASSED] 15.5 GiB
[16:40:42] [PASSED] 31.5 GiB
[16:40:42] [PASSED] 63.5 GiB
[16:40:42] [PASSED] 1.91 GiB
[16:40:42] ================== [PASSED] fair_vram_1vf ==================
[16:40:42] ================ fair_vram_1vf_admin_only =================
[16:40:42] [PASSED] 3.50 GiB
[16:40:42] [PASSED] 11.5 GiB
[16:40:42] [PASSED] 15.5 GiB
[16:40:42] [PASSED] 31.5 GiB
[16:40:42] [PASSED] 63.5 GiB
[16:40:42] [PASSED] 1.91 GiB
[16:40:42] ============ [PASSED] fair_vram_1vf_admin_only =============
[16:40:42] ====================== fair_contexts ======================
[16:40:42] [PASSED] 1 VF
[16:40:42] [PASSED] 2 VFs
[16:40:42] [PASSED] 3 VFs
[16:40:42] [PASSED] 4 VFs
[16:40:42] [PASSED] 5 VFs
[16:40:42] [PASSED] 6 VFs
[16:40:42] [PASSED] 7 VFs
[16:40:42] [PASSED] 8 VFs
[16:40:42] [PASSED] 9 VFs
[16:40:42] [PASSED] 10 VFs
[16:40:42] [PASSED] 11 VFs
[16:40:42] [PASSED] 12 VFs
[16:40:42] [PASSED] 13 VFs
[16:40:42] [PASSED] 14 VFs
[16:40:42] [PASSED] 15 VFs
[16:40:42] [PASSED] 16 VFs
[16:40:42] [PASSED] 17 VFs
[16:40:42] [PASSED] 18 VFs
[16:40:42] [PASSED] 19 VFs
[16:40:42] [PASSED] 20 VFs
[16:40:42] [PASSED] 21 VFs
[16:40:42] [PASSED] 22 VFs
[16:40:42] [PASSED] 23 VFs
[16:40:42] [PASSED] 24 VFs
[16:40:42] [PASSED] 25 VFs
[16:40:42] [PASSED] 26 VFs
[16:40:42] [PASSED] 27 VFs
[16:40:42] [PASSED] 28 VFs
[16:40:42] [PASSED] 29 VFs
[16:40:42] [PASSED] 30 VFs
[16:40:42] [PASSED] 31 VFs
[16:40:42] [PASSED] 32 VFs
[16:40:42] [PASSED] 33 VFs
[16:40:42] [PASSED] 34 VFs
[16:40:42] [PASSED] 35 VFs
[16:40:42] [PASSED] 36 VFs
[16:40:42] [PASSED] 37 VFs
[16:40:42] [PASSED] 38 VFs
[16:40:42] [PASSED] 39 VFs
[16:40:42] [PASSED] 40 VFs
[16:40:42] [PASSED] 41 VFs
[16:40:42] [PASSED] 42 VFs
[16:40:42] [PASSED] 43 VFs
[16:40:42] [PASSED] 44 VFs
[16:40:42] [PASSED] 45 VFs
[16:40:42] [PASSED] 46 VFs
[16:40:42] [PASSED] 47 VFs
[16:40:42] [PASSED] 48 VFs
[16:40:42] [PASSED] 49 VFs
[16:40:42] [PASSED] 50 VFs
[16:40:42] [PASSED] 51 VFs
[16:40:42] [PASSED] 52 VFs
[16:40:42] [PASSED] 53 VFs
[16:40:42] [PASSED] 54 VFs
[16:40:42] [PASSED] 55 VFs
[16:40:42] [PASSED] 56 VFs
[16:40:42] [PASSED] 57 VFs
[16:40:42] [PASSED] 58 VFs
[16:40:42] [PASSED] 59 VFs
[16:40:42] [PASSED] 60 VFs
[16:40:42] [PASSED] 61 VFs
[16:40:42] [PASSED] 62 VFs
[16:40:42] [PASSED] 63 VFs
[16:40:42] ================== [PASSED] fair_contexts ==================
[16:40:42] ===================== fair_doorbells ======================
[16:40:42] [PASSED] 1 VF
[16:40:42] [PASSED] 2 VFs
[16:40:42] [PASSED] 3 VFs
[16:40:42] [PASSED] 4 VFs
[16:40:42] [PASSED] 5 VFs
[16:40:42] [PASSED] 6 VFs
[16:40:42] [PASSED] 7 VFs
[16:40:42] [PASSED] 8 VFs
[16:40:42] [PASSED] 9 VFs
[16:40:42] [PASSED] 10 VFs
[16:40:42] [PASSED] 11 VFs
[16:40:42] [PASSED] 12 VFs
[16:40:42] [PASSED] 13 VFs
[16:40:42] [PASSED] 14 VFs
[16:40:42] [PASSED] 15 VFs
[16:40:42] [PASSED] 16 VFs
[16:40:42] [PASSED] 17 VFs
[16:40:42] [PASSED] 18 VFs
[16:40:42] [PASSED] 19 VFs
[16:40:42] [PASSED] 20 VFs
[16:40:42] [PASSED] 21 VFs
[16:40:42] [PASSED] 22 VFs
[16:40:42] [PASSED] 23 VFs
[16:40:42] [PASSED] 24 VFs
[16:40:42] [PASSED] 25 VFs
[16:40:42] [PASSED] 26 VFs
[16:40:42] [PASSED] 27 VFs
[16:40:42] [PASSED] 28 VFs
[16:40:42] [PASSED] 29 VFs
[16:40:42] [PASSED] 30 VFs
[16:40:42] [PASSED] 31 VFs
[16:40:42] [PASSED] 32 VFs
[16:40:42] [PASSED] 33 VFs
[16:40:42] [PASSED] 34 VFs
[16:40:42] [PASSED] 35 VFs
[16:40:42] [PASSED] 36 VFs
[16:40:42] [PASSED] 37 VFs
[16:40:42] [PASSED] 38 VFs
[16:40:42] [PASSED] 39 VFs
[16:40:42] [PASSED] 40 VFs
[16:40:42] [PASSED] 41 VFs
[16:40:42] [PASSED] 42 VFs
[16:40:42] [PASSED] 43 VFs
[16:40:42] [PASSED] 44 VFs
[16:40:42] [PASSED] 45 VFs
[16:40:42] [PASSED] 46 VFs
[16:40:42] [PASSED] 47 VFs
[16:40:42] [PASSED] 48 VFs
[16:40:42] [PASSED] 49 VFs
[16:40:42] [PASSED] 50 VFs
[16:40:42] [PASSED] 51 VFs
[16:40:42] [PASSED] 52 VFs
[16:40:42] [PASSED] 53 VFs
[16:40:42] [PASSED] 54 VFs
[16:40:42] [PASSED] 55 VFs
[16:40:42] [PASSED] 56 VFs
[16:40:42] [PASSED] 57 VFs
[16:40:42] [PASSED] 58 VFs
[16:40:42] [PASSED] 59 VFs
[16:40:42] [PASSED] 60 VFs
[16:40:42] [PASSED] 61 VFs
[16:40:42] [PASSED] 62 VFs
[16:40:42] [PASSED] 63 VFs
[16:40:42] ================= [PASSED] fair_doorbells ==================
[16:40:42] ======================== fair_ggtt ========================
[16:40:42] [PASSED] 1 VF
[16:40:42] [PASSED] 2 VFs
[16:40:42] [PASSED] 3 VFs
[16:40:42] [PASSED] 4 VFs
[16:40:42] [PASSED] 5 VFs
[16:40:42] [PASSED] 6 VFs
[16:40:42] [PASSED] 7 VFs
[16:40:42] [PASSED] 8 VFs
[16:40:42] [PASSED] 9 VFs
[16:40:42] [PASSED] 10 VFs
[16:40:42] [PASSED] 11 VFs
[16:40:42] [PASSED] 12 VFs
[16:40:42] [PASSED] 13 VFs
[16:40:42] [PASSED] 14 VFs
[16:40:42] [PASSED] 15 VFs
[16:40:42] [PASSED] 16 VFs
[16:40:42] [PASSED] 17 VFs
[16:40:42] [PASSED] 18 VFs
[16:40:42] [PASSED] 19 VFs
[16:40:42] [PASSED] 20 VFs
[16:40:42] [PASSED] 21 VFs
[16:40:42] [PASSED] 22 VFs
[16:40:42] [PASSED] 23 VFs
[16:40:42] [PASSED] 24 VFs
[16:40:42] [PASSED] 25 VFs
[16:40:42] [PASSED] 26 VFs
[16:40:42] [PASSED] 27 VFs
[16:40:42] [PASSED] 28 VFs
[16:40:42] [PASSED] 29 VFs
[16:40:42] [PASSED] 30 VFs
[16:40:42] [PASSED] 31 VFs
[16:40:42] [PASSED] 32 VFs
[16:40:42] [PASSED] 33 VFs
[16:40:42] [PASSED] 34 VFs
[16:40:42] [PASSED] 35 VFs
[16:40:42] [PASSED] 36 VFs
[16:40:42] [PASSED] 37 VFs
[16:40:42] [PASSED] 38 VFs
[16:40:42] [PASSED] 39 VFs
[16:40:42] [PASSED] 40 VFs
[16:40:42] [PASSED] 41 VFs
[16:40:42] [PASSED] 42 VFs
[16:40:42] [PASSED] 43 VFs
[16:40:42] [PASSED] 44 VFs
[16:40:42] [PASSED] 45 VFs
[16:40:42] [PASSED] 46 VFs
[16:40:42] [PASSED] 47 VFs
[16:40:42] [PASSED] 48 VFs
[16:40:42] [PASSED] 49 VFs
[16:40:42] [PASSED] 50 VFs
[16:40:42] [PASSED] 51 VFs
[16:40:42] [PASSED] 52 VFs
[16:40:42] [PASSED] 53 VFs
[16:40:42] [PASSED] 54 VFs
[16:40:42] [PASSED] 55 VFs
[16:40:42] [PASSED] 56 VFs
[16:40:42] [PASSED] 57 VFs
[16:40:42] [PASSED] 58 VFs
[16:40:42] [PASSED] 59 VFs
[16:40:42] [PASSED] 60 VFs
[16:40:42] [PASSED] 61 VFs
[16:40:42] [PASSED] 62 VFs
[16:40:42] [PASSED] 63 VFs
[16:40:42] ==================== [PASSED] fair_ggtt ====================
[16:40:42] ======================== fair_vram ========================
[16:40:42] [PASSED] 1 VF
[16:40:42] [PASSED] 2 VFs
[16:40:42] [PASSED] 3 VFs
[16:40:42] [PASSED] 4 VFs
[16:40:42] [PASSED] 5 VFs
[16:40:42] [PASSED] 6 VFs
[16:40:42] [PASSED] 7 VFs
[16:40:42] [PASSED] 8 VFs
[16:40:42] [PASSED] 9 VFs
[16:40:42] [PASSED] 10 VFs
[16:40:42] [PASSED] 11 VFs
[16:40:42] [PASSED] 12 VFs
[16:40:42] [PASSED] 13 VFs
[16:40:42] [PASSED] 14 VFs
[16:40:42] [PASSED] 15 VFs
[16:40:42] [PASSED] 16 VFs
[16:40:42] [PASSED] 17 VFs
[16:40:42] [PASSED] 18 VFs
[16:40:42] [PASSED] 19 VFs
[16:40:42] [PASSED] 20 VFs
[16:40:42] [PASSED] 21 VFs
[16:40:42] [PASSED] 22 VFs
[16:40:42] [PASSED] 23 VFs
[16:40:42] [PASSED] 24 VFs
[16:40:42] [PASSED] 25 VFs
[16:40:42] [PASSED] 26 VFs
[16:40:42] [PASSED] 27 VFs
[16:40:42] [PASSED] 28 VFs
[16:40:42] [PASSED] 29 VFs
[16:40:42] [PASSED] 30 VFs
[16:40:42] [PASSED] 31 VFs
[16:40:42] [PASSED] 32 VFs
[16:40:42] [PASSED] 33 VFs
[16:40:42] [PASSED] 34 VFs
[16:40:42] [PASSED] 35 VFs
[16:40:42] [PASSED] 36 VFs
[16:40:42] [PASSED] 37 VFs
[16:40:42] [PASSED] 38 VFs
[16:40:42] [PASSED] 39 VFs
[16:40:42] [PASSED] 40 VFs
[16:40:42] [PASSED] 41 VFs
[16:40:42] [PASSED] 42 VFs
[16:40:42] [PASSED] 43 VFs
[16:40:42] [PASSED] 44 VFs
[16:40:42] [PASSED] 45 VFs
[16:40:42] [PASSED] 46 VFs
[16:40:42] [PASSED] 47 VFs
[16:40:42] [PASSED] 48 VFs
[16:40:42] [PASSED] 49 VFs
[16:40:42] [PASSED] 50 VFs
[16:40:42] [PASSED] 51 VFs
[16:40:42] [PASSED] 52 VFs
[16:40:42] [PASSED] 53 VFs
[16:40:42] [PASSED] 54 VFs
[16:40:42] [PASSED] 55 VFs
[16:40:42] [PASSED] 56 VFs
[16:40:42] [PASSED] 57 VFs
[16:40:42] [PASSED] 58 VFs
[16:40:42] [PASSED] 59 VFs
[16:40:42] [PASSED] 60 VFs
[16:40:42] [PASSED] 61 VFs
[16:40:42] [PASSED] 62 VFs
[16:40:42] [PASSED] 63 VFs
[16:40:42] ==================== [PASSED] fair_vram ====================
[16:40:42] ================== [PASSED] pf_gt_config ===================
[16:40:42] ===================== lmtt (1 subtest) =====================
[16:40:42] ======================== test_ops =========================
[16:40:42] [PASSED] 2-level
[16:40:42] [PASSED] multi-level
[16:40:42] ==================== [PASSED] test_ops =====================
[16:40:42] ====================== [PASSED] lmtt =======================
[16:40:42] ================= sriov_packet (1 subtest) =================
[16:40:42] [PASSED] test_descriptor_init
[16:40:42] ================== [PASSED] sriov_packet ===================
[16:40:42] ================= pf_service (11 subtests) =================
[16:40:42] [PASSED] pf_negotiate_any
[16:40:42] [PASSED] pf_negotiate_base_match
[16:40:42] [PASSED] pf_negotiate_base_newer
[16:40:42] [PASSED] pf_negotiate_base_next
[16:40:42] [SKIPPED] pf_negotiate_base_older (no older minor)
[16:40:42] [PASSED] pf_negotiate_base_prev
[16:40:42] [PASSED] pf_negotiate_latest_match
[16:40:42] [PASSED] pf_negotiate_latest_newer
[16:40:42] [PASSED] pf_negotiate_latest_next
[16:40:42] [SKIPPED] pf_negotiate_latest_older (no older minor)
[16:40:42] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[16:40:42] =================== [PASSED] pf_service ====================
[16:40:42] ================= xe_guc_g2g (2 subtests) ==================
[16:40:42] ============== xe_live_guc_g2g_kunit_default ==============
[16:40:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[16:40:42] ============== xe_live_guc_g2g_kunit_allmem ===============
[16:40:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[16:40:42] =================== [SKIPPED] xe_guc_g2g ===================
[16:40:42] =================== xe_mocs (2 subtests) ===================
[16:40:42] ================ xe_live_mocs_kernel_kunit ================
[16:40:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:40:42] ================ xe_live_mocs_reset_kunit =================
[16:40:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:40:42] ==================== [SKIPPED] xe_mocs =====================
[16:40:42] ================= xe_migrate (2 subtests) ==================
[16:40:42] ================= xe_migrate_sanity_kunit =================
[16:40:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:40:42] ================== xe_validate_ccs_kunit ==================
[16:40:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:40:42] =================== [SKIPPED] xe_migrate ===================
[16:40:42] ================== xe_dma_buf (1 subtest) ==================
[16:40:42] ==================== xe_dma_buf_kunit =====================
[16:40:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:40:42] =================== [SKIPPED] xe_dma_buf ===================
[16:40:42] ================= xe_bo_shrink (1 subtest) =================
[16:40:42] =================== xe_bo_shrink_kunit ====================
[16:40:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:40:42] ================== [SKIPPED] xe_bo_shrink ==================
[16:40:42] ==================== xe_bo (2 subtests) ====================
[16:40:42] ================== xe_ccs_migrate_kunit ===================
[16:40:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:40:42] ==================== xe_bo_evict_kunit ====================
[16:40:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:40:42] ===================== [SKIPPED] xe_bo ======================
[16:40:42] ==================== args (13 subtests) ====================
[16:40:42] [PASSED] count_args_test
[16:40:42] [PASSED] call_args_example
[16:40:42] [PASSED] call_args_test
[16:40:42] [PASSED] drop_first_arg_example
[16:40:42] [PASSED] drop_first_arg_test
[16:40:42] [PASSED] first_arg_example
[16:40:42] [PASSED] first_arg_test
[16:40:42] [PASSED] last_arg_example
[16:40:42] [PASSED] last_arg_test
[16:40:42] [PASSED] pick_arg_example
[16:40:42] [PASSED] if_args_example
[16:40:42] [PASSED] if_args_test
[16:40:42] [PASSED] sep_comma_example
[16:40:42] ====================== [PASSED] args =======================
[16:40:42] =================== xe_pci (3 subtests) ====================
[16:40:42] ==================== check_graphics_ip ====================
[16:40:42] [PASSED] 12.00 Xe_LP
[16:40:42] [PASSED] 12.10 Xe_LP+
[16:40:42] [PASSED] 12.55 Xe_HPG
[16:40:42] [PASSED] 12.60 Xe_HPC
[16:40:42] [PASSED] 12.70 Xe_LPG
[16:40:42] [PASSED] 12.71 Xe_LPG
[16:40:42] [PASSED] 12.74 Xe_LPG+
[16:40:42] [PASSED] 20.01 Xe2_HPG
[16:40:42] [PASSED] 20.02 Xe2_HPG
[16:40:42] [PASSED] 20.04 Xe2_LPG
[16:40:42] [PASSED] 30.00 Xe3_LPG
[16:40:42] [PASSED] 30.01 Xe3_LPG
[16:40:42] [PASSED] 30.03 Xe3_LPG
[16:40:42] [PASSED] 30.04 Xe3_LPG
[16:40:42] [PASSED] 30.05 Xe3_LPG
[16:40:42] [PASSED] 35.10 Xe3p_LPG
[16:40:42] [PASSED] 35.11 Xe3p_XPC
[16:40:42] ================ [PASSED] check_graphics_ip ================
[16:40:42] ===================== check_media_ip ======================
[16:40:42] [PASSED] 12.00 Xe_M
[16:40:42] [PASSED] 12.55 Xe_HPM
[16:40:42] [PASSED] 13.00 Xe_LPM+
[16:40:42] [PASSED] 13.01 Xe2_HPM
[16:40:42] [PASSED] 20.00 Xe2_LPM
[16:40:42] [PASSED] 30.00 Xe3_LPM
[16:40:42] [PASSED] 30.02 Xe3_LPM
[16:40:42] [PASSED] 35.00 Xe3p_LPM
[16:40:42] [PASSED] 35.03 Xe3p_HPM
[16:40:42] ================= [PASSED] check_media_ip ==================
[16:40:42] =================== check_platform_desc ===================
[16:40:42] [PASSED] 0x9A60 (TIGERLAKE)
[16:40:42] [PASSED] 0x9A68 (TIGERLAKE)
[16:40:42] [PASSED] 0x9A70 (TIGERLAKE)
[16:40:42] [PASSED] 0x9A40 (TIGERLAKE)
[16:40:42] [PASSED] 0x9A49 (TIGERLAKE)
[16:40:42] [PASSED] 0x9A59 (TIGERLAKE)
[16:40:42] [PASSED] 0x9A78 (TIGERLAKE)
[16:40:42] [PASSED] 0x9AC0 (TIGERLAKE)
[16:40:42] [PASSED] 0x9AC9 (TIGERLAKE)
[16:40:42] [PASSED] 0x9AD9 (TIGERLAKE)
[16:40:42] [PASSED] 0x9AF8 (TIGERLAKE)
[16:40:42] [PASSED] 0x4C80 (ROCKETLAKE)
[16:40:42] [PASSED] 0x4C8A (ROCKETLAKE)
[16:40:42] [PASSED] 0x4C8B (ROCKETLAKE)
[16:40:42] [PASSED] 0x4C8C (ROCKETLAKE)
[16:40:42] [PASSED] 0x4C90 (ROCKETLAKE)
[16:40:42] [PASSED] 0x4C9A (ROCKETLAKE)
[16:40:42] [PASSED] 0x4680 (ALDERLAKE_S)
[16:40:42] [PASSED] 0x4682 (ALDERLAKE_S)
[16:40:42] [PASSED] 0x4688 (ALDERLAKE_S)
[16:40:42] [PASSED] 0x468A (ALDERLAKE_S)
[16:40:42] [PASSED] 0x468B (ALDERLAKE_S)
[16:40:42] [PASSED] 0x4690 (ALDERLAKE_S)
[16:40:42] [PASSED] 0x4692 (ALDERLAKE_S)
[16:40:42] [PASSED] 0x4693 (ALDERLAKE_S)
[16:40:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46AA (ALDERLAKE_P)
[16:40:42] [PASSED] 0x462A (ALDERLAKE_P)
[16:40:42] [PASSED] 0x4626 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x4628 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:40:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:40:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:40:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:40:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:40:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:40:42] [PASSED] 0xA721 (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA720 (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:40:42] [PASSED] 0xA780 (ALDERLAKE_S)
[16:40:42] [PASSED] 0xA781 (ALDERLAKE_S)
[16:40:42] [PASSED] 0xA782 (ALDERLAKE_S)
[16:40:42] [PASSED] 0xA783 (ALDERLAKE_S)
[16:40:42] [PASSED] 0xA788 (ALDERLAKE_S)
[16:40:42] [PASSED] 0xA789 (ALDERLAKE_S)
[16:40:42] [PASSED] 0xA78A (ALDERLAKE_S)
[16:40:42] [PASSED] 0xA78B (ALDERLAKE_S)
[16:40:42] [PASSED] 0x4905 (DG1)
[16:40:42] [PASSED] 0x4906 (DG1)
[16:40:42] [PASSED] 0x4907 (DG1)
[16:40:42] [PASSED] 0x4908 (DG1)
[16:40:42] [PASSED] 0x4909 (DG1)
[16:40:42] [PASSED] 0x56C0 (DG2)
[16:40:42] [PASSED] 0x56C2 (DG2)
[16:40:42] [PASSED] 0x56C1 (DG2)
[16:40:42] [PASSED] 0x7D51 (METEORLAKE)
[16:40:42] [PASSED] 0x7DD1 (METEORLAKE)
[16:40:42] [PASSED] 0x7D41 (METEORLAKE)
[16:40:42] [PASSED] 0x7D67 (METEORLAKE)
[16:40:42] [PASSED] 0xB640 (METEORLAKE)
[16:40:42] [PASSED] 0x56A0 (DG2)
[16:40:42] [PASSED] 0x56A1 (DG2)
[16:40:42] [PASSED] 0x56A2 (DG2)
[16:40:42] [PASSED] 0x56BE (DG2)
[16:40:42] [PASSED] 0x56BF (DG2)
[16:40:42] [PASSED] 0x5690 (DG2)
[16:40:42] [PASSED] 0x5691 (DG2)
[16:40:42] [PASSED] 0x5692 (DG2)
[16:40:42] [PASSED] 0x56A5 (DG2)
[16:40:42] [PASSED] 0x56A6 (DG2)
[16:40:42] [PASSED] 0x56B0 (DG2)
[16:40:42] [PASSED] 0x56B1 (DG2)
[16:40:42] [PASSED] 0x56BA (DG2)
[16:40:42] [PASSED] 0x56BB (DG2)
[16:40:42] [PASSED] 0x56BC (DG2)
[16:40:42] [PASSED] 0x56BD (DG2)
[16:40:42] [PASSED] 0x5693 (DG2)
[16:40:42] [PASSED] 0x5694 (DG2)
[16:40:42] [PASSED] 0x5695 (DG2)
[16:40:42] [PASSED] 0x56A3 (DG2)
[16:40:42] [PASSED] 0x56A4 (DG2)
[16:40:42] [PASSED] 0x56B2 (DG2)
[16:40:42] [PASSED] 0x56B3 (DG2)
[16:40:42] [PASSED] 0x5696 (DG2)
[16:40:42] [PASSED] 0x5697 (DG2)
[16:40:42] [PASSED] 0xB69 (PVC)
[16:40:42] [PASSED] 0xB6E (PVC)
[16:40:42] [PASSED] 0xBD4 (PVC)
[16:40:42] [PASSED] 0xBD5 (PVC)
[16:40:42] [PASSED] 0xBD6 (PVC)
[16:40:42] [PASSED] 0xBD7 (PVC)
[16:40:42] [PASSED] 0xBD8 (PVC)
[16:40:42] [PASSED] 0xBD9 (PVC)
[16:40:42] [PASSED] 0xBDA (PVC)
[16:40:42] [PASSED] 0xBDB (PVC)
[16:40:42] [PASSED] 0xBE0 (PVC)
[16:40:42] [PASSED] 0xBE1 (PVC)
[16:40:42] [PASSED] 0xBE5 (PVC)
[16:40:42] [PASSED] 0x7D40 (METEORLAKE)
[16:40:42] [PASSED] 0x7D45 (METEORLAKE)
[16:40:42] [PASSED] 0x7D55 (METEORLAKE)
[16:40:42] [PASSED] 0x7D60 (METEORLAKE)
[16:40:42] [PASSED] 0x7DD5 (METEORLAKE)
[16:40:42] [PASSED] 0x6420 (LUNARLAKE)
[16:40:42] [PASSED] 0x64A0 (LUNARLAKE)
[16:40:42] [PASSED] 0x64B0 (LUNARLAKE)
[16:40:42] [PASSED] 0xE202 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE209 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE20B (BATTLEMAGE)
[16:40:42] [PASSED] 0xE20C (BATTLEMAGE)
[16:40:42] [PASSED] 0xE20D (BATTLEMAGE)
[16:40:42] [PASSED] 0xE210 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE211 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE212 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE216 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE220 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE221 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE222 (BATTLEMAGE)
[16:40:42] [PASSED] 0xE223 (BATTLEMAGE)
[16:40:42] [PASSED] 0xB080 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB081 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB082 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB083 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB084 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB085 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB086 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB087 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB08F (PANTHERLAKE)
[16:40:42] [PASSED] 0xB090 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:40:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:40:42] [PASSED] 0xFD80 (PANTHERLAKE)
[16:40:42] [PASSED] 0xFD81 (PANTHERLAKE)
[16:40:42] [PASSED] 0xD740 (NOVALAKE_S)
[16:40:42] [PASSED] 0xD741 (NOVALAKE_S)
[16:40:42] [PASSED] 0xD742 (NOVALAKE_S)
[16:40:42] [PASSED] 0xD743 (NOVALAKE_S)
[16:40:42] [PASSED] 0xD745 (NOVALAKE_S)
[16:40:42] [PASSED] 0xD74A (NOVALAKE_S)
[16:40:42] [PASSED] 0xD74B (NOVALAKE_S)
[16:40:42] [PASSED] 0x674C (CRESCENTISLAND)
[16:40:42] [PASSED] 0x674D (CRESCENTISLAND)
[16:40:42] [PASSED] 0x674E (CRESCENTISLAND)
[16:40:42] [PASSED] 0x674F (CRESCENTISLAND)
[16:40:42] [PASSED] 0x6750 (CRESCENTISLAND)
[16:40:42] [PASSED] 0xD750 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD751 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD752 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD753 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD754 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD755 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD756 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD757 (NOVALAKE_P)
[16:40:42] [PASSED] 0xD75F (NOVALAKE_P)
[16:40:42] =============== [PASSED] check_platform_desc ===============
[16:40:42] ===================== [PASSED] xe_pci ======================
[16:40:42] ============= xe_rtp_tables_test (5 subtests) ==============
[16:40:42] ================== xe_rtp_table_gt_test ===================
[16:40:42] [PASSED] gt_was/14011060649
[16:40:42] [PASSED] gt_was/14011059788
[16:40:42] [PASSED] gt_was/14015795083
[16:40:42] [PASSED] gt_was/16021867713
[16:40:42] [PASSED] gt_was/14019449301
[16:40:42] [PASSED] gt_was/16028005424
[16:40:42] [PASSED] gt_was/14026578760
[16:40:42] [PASSED] gt_was/1409420604
[16:40:42] [PASSED] gt_was/1408615072
[16:40:42] [PASSED] gt_was/22010523718
[16:40:42] [PASSED] gt_was/14011006942
[16:40:42] [PASSED] gt_was/14014830051
[16:40:42] [PASSED] gt_was/18018781329
[16:40:42] [PASSED] gt_was/1509235366
[16:40:42] [PASSED] gt_was/18018781329
[16:40:42] [PASSED] gt_was/16016694945
[16:40:42] [PASSED] gt_was/14018575942
[16:40:42] [PASSED] gt_was/22016670082
[16:40:42] [PASSED] gt_was/22016670082
[16:40:42] [PASSED] gt_was/14017421178
[16:40:42] [PASSED] gt_was/16025250150
[16:40:42] [PASSED] gt_was/14021871409
[16:40:42] [PASSED] gt_was/16021865536
[16:40:42] [PASSED] gt_was/14021486841
[16:40:42] [PASSED] gt_was/14025160223
[16:40:42] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[16:40:42] [PASSED] gt_was/14025635424
[16:40:42] [PASSED] gt_was/16028005424
[16:40:42] ============== [PASSED] xe_rtp_table_gt_test ===============
[16:40:42] ================== xe_rtp_table_gt_test ===================
[16:40:42] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[16:40:42] [PASSED] gt_tunings/Tuning: 32B Access Enable
[16:40:42] [PASSED] gt_tunings/Tuning: L3 cache
[16:40:42] [PASSED] gt_tunings/Tuning: L3 cache - media
[16:40:42] [PASSED] gt_tunings/Tuning: Compression Overfetch
[16:40:42] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[16:40:42] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[16:40:42] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[16:40:42] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[16:40:42] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[16:40:42] [PASSED] gt_tunings/Tuning: Stateless compression control
[16:40:42] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[16:40:42] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[16:40:42] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[16:40:42] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[16:40:42] ============== [PASSED] xe_rtp_table_gt_test ===============
[16:40:42] ================== xe_rtp_table_oob_test ==================
[16:40:42] [PASSED] oob_was/1607983814
[16:40:42] [PASSED] oob_was/16010904313
[16:40:42] [PASSED] oob_was/18022495364
[16:40:42] [PASSED] oob_was/22012773006
[16:40:42] [PASSED] oob_was/14014475959
[16:40:42] [PASSED] oob_was/22011391025
[16:40:42] [PASSED] oob_was/22012727170
[16:40:42] [PASSED] oob_was/22012727685
[16:40:42] [PASSED] oob_was/22016596838
[16:40:42] [PASSED] oob_was/18020744125
[16:40:42] [PASSED] oob_was/1409600907
[16:40:42] [PASSED] oob_was/22014953428
[16:40:42] [PASSED] oob_was/16017236439
[16:40:42] [PASSED] oob_was/14019821291
[16:40:42] [PASSED] oob_was/14015076503
[16:40:42] [PASSED] oob_was/14018913170
[16:40:42] [PASSED] oob_was/14018094691
[16:40:42] [PASSED] oob_was/18024947630
[16:40:42] [PASSED] oob_was/16022287689
[16:40:42] [PASSED] oob_was/13011645652
[16:40:42] [PASSED] oob_was/14022293748
[16:40:42] [PASSED] oob_was/22019794406
[16:40:42] [PASSED] oob_was/22019338487
[16:40:42] [PASSED] oob_was/16023588340
[16:40:42] [PASSED] oob_was/14019789679
[16:40:42] [PASSED] oob_was/14022866841
[16:40:42] [PASSED] oob_was/16021333562
[16:40:42] [PASSED] oob_was/14016712196
[16:40:42] [PASSED] oob_was/14015568240
[16:40:42] [PASSED] oob_was/18013179988
[16:40:42] [PASSED] oob_was/1508761755
[16:40:42] [PASSED] oob_was/16023105232
[16:40:42] [PASSED] oob_was/16026508708
[16:40:42] [PASSED] oob_was/14020001231
[16:40:42] [PASSED] oob_was/16023683509
[16:40:42] [PASSED] oob_was/14025515070
[16:40:42] [PASSED] oob_was/15015404425_disable
[16:40:42] [PASSED] oob_was/16026007364
[16:40:42] [PASSED] oob_was/14020316580
[16:40:42] [PASSED] oob_was/14025883347
[16:40:42] [PASSED] oob_was/16029380221
[16:40:42] [PASSED] oob_was/22022079272
[16:40:42] [PASSED] oob_was/16029897822
[16:40:42] [PASSED] oob_was/14027054324
[16:40:42] ============== [PASSED] xe_rtp_table_oob_test ==============
[16:40:42] ================ xe_rtp_table_dev_oob_test ================
[16:40:42] [PASSED] device_oob_was/22010954014
[16:40:42] [PASSED] device_oob_was/15015404425
[16:40:42] [PASSED] device_oob_was/22019338487_display
[16:40:42] [PASSED] device_oob_was/14022085890
[16:40:42] [PASSED] device_oob_was/14026539277
[16:40:42] [PASSED] device_oob_was/14026633728
[16:40:42] [PASSED] device_oob_was/14026746987
[16:40:42] [PASSED] device_oob_was/14026779378
[16:40:42] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[16:40:42] ========== xe_rtp_table_missing_upper_bound_test ==========
[16:40:42] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[16:40:42] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[16:40:42] [PASSED] register_whitelist/1806527549
[16:40:42] [PASSED] register_whitelist/allow_read_ctx_timestamp
[16:40:42] [PASSED] register_whitelist/allow_read_queue_timestamp
[16:40:42] [PASSED] register_whitelist/16014440446
[16:40:42] [PASSED] register_whitelist/16017236439
[16:40:42] [PASSED] register_whitelist/16020183090
[16:40:42] [PASSED] register_whitelist/14024997852
[16:40:42] [PASSED] register_whitelist/14024997852
[16:40:42] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[16:40:42] =============== [PASSED] xe_rtp_tables_test ================
[16:40:42] =================== xe_rtp (3 subtests) ====================
[16:40:42] =================== xe_rtp_rules_tests ====================
[16:40:42] [PASSED] no
[16:40:42] [PASSED] yes
[16:40:42] [PASSED] no-and-no
[16:40:42] [PASSED] no-and-yes
[16:40:42] [PASSED] yes-and-no
[16:40:42] [PASSED] yes-and-yes
[16:40:42] [PASSED] no-or-no
[16:40:42] [PASSED] no-or-yes
[16:40:42] [PASSED] yes-or-no
[16:40:42] [PASSED] yes-or-yes
[16:40:42] [PASSED] no-yes-or-yes-no
[16:40:42] [PASSED] no-yes-or-yes-yes
[16:40:42] [PASSED] yes-yes-or-no-yes
[16:40:42] [PASSED] yes-yes-or-yes-yes
[16:40:42] [PASSED] no-no-or-yes-or-no
[16:40:42] [PASSED] or
[16:40:42] [PASSED] or-yes
[16:40:42] [PASSED] or-no
[16:40:42] [PASSED] yes-or
[16:40:42] [PASSED] no-or
[16:40:42] [PASSED] no-or-or-yes
[16:40:42] [PASSED] yes-or-or-no
[16:40:42] [PASSED] no-or-or-no
[16:40:42] [PASSED] missing-context-engine-class
[16:40:42] [PASSED] missing-context-engine-class-or-yes
[16:40:42] [PASSED] missing-context-engine-class-or-or-yes
[16:40:42] =============== [PASSED] xe_rtp_rules_tests ================
[16:40:42] =============== xe_rtp_process_to_sr_tests ================
[16:40:42] [PASSED] coalesce-same-reg
[16:40:42] [PASSED] coalesce-same-reg-literal-and-func
[16:40:42] [PASSED] no-match-no-add
[16:40:42] [PASSED] two-regs-two-entries
[16:40:42] [PASSED] clr-one-set-other
[16:40:42] [PASSED] set-field
[16:40:42] [PASSED] conflict-duplicate
[16:40:42] [PASSED] conflict-not-disjoint
[16:40:42] [PASSED] conflict-not-disjoint-literal-and-func
[16:40:42] [PASSED] conflict-reg-type
[16:40:42] [PASSED] bad-mcr-reg-forced-to-regular
[16:40:42] [PASSED] bad-regular-reg-forced-to-mcr
[16:40:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:40:42] ================== xe_rtp_process_tests ===================
[16:40:42] [PASSED] active1
[16:40:42] [PASSED] active2
[16:40:42] [PASSED] active-inactive
[16:40:42] [PASSED] inactive-active
[16:40:42] [PASSED] inactive-active-inactive
[16:40:42] [PASSED] inactive-inactive-inactive
[16:40:42] ============== [PASSED] xe_rtp_process_tests ===============
[16:40:42] ===================== [PASSED] xe_rtp ======================
[16:40:42] ==================== xe_wa (1 subtest) =====================
[16:40:42] ======================== xe_wa_gt =========================
[16:40:42] [PASSED] TIGERLAKE B0
[16:40:42] [PASSED] DG1 A0
[16:40:42] [PASSED] DG1 B0
[16:40:42] [PASSED] ALDERLAKE_S A0
[16:40:42] [PASSED] ALDERLAKE_S B0
[16:40:42] [PASSED] ALDERLAKE_S C0
[16:40:42] [PASSED] ALDERLAKE_S D0
[16:40:42] [PASSED] ALDERLAKE_P A0
[16:40:42] [PASSED] ALDERLAKE_P B0
[16:40:42] [PASSED] ALDERLAKE_P C0
[16:40:42] [PASSED] ALDERLAKE_S RPLS D0
[16:40:42] [PASSED] ALDERLAKE_P RPLU E0
[16:40:42] [PASSED] DG2 G10 C0
[16:40:42] [PASSED] DG2 G11 B1
[16:40:42] [PASSED] DG2 G12 A1
[16:40:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:40:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:40:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[16:40:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[16:40:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[16:40:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[16:40:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[16:40:42] ==================== [PASSED] xe_wa_gt =====================
[16:40:42] ====================== [PASSED] xe_wa ======================
[16:40:42] ============================================================
[16:40:42] Testing complete. Ran 742 tests: passed: 724, skipped: 18
[16:40:42] Elapsed time: 36.711s total, 4.310s configuring, 31.734s building, 0.636s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:40:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:40:44] 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
[16:41:09] Starting KUnit Kernel (1/1)...
[16:41:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:41:09] ============ drm_test_pick_cmdline (2 subtests) ============
[16:41:09] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:41:09] =============== drm_test_pick_cmdline_named ===============
[16:41:09] [PASSED] NTSC
[16:41:09] [PASSED] NTSC-J
[16:41:09] [PASSED] PAL
[16:41:09] [PASSED] PAL-M
[16:41:09] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:41:09] ============== [PASSED] drm_test_pick_cmdline ==============
[16:41:09] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:41:09] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:41:09] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:41:09] =========== drm_validate_clone_mode (2 subtests) ===========
[16:41:09] ============== drm_test_check_in_clone_mode ===============
[16:41:09] [PASSED] in_clone_mode
[16:41:09] [PASSED] not_in_clone_mode
[16:41:09] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:41:09] =============== drm_test_check_valid_clones ===============
[16:41:09] [PASSED] not_in_clone_mode
[16:41:09] [PASSED] valid_clone
[16:41:09] [PASSED] invalid_clone
[16:41:09] =========== [PASSED] drm_test_check_valid_clones ===========
[16:41:09] ============= [PASSED] drm_validate_clone_mode =============
[16:41:09] ============= drm_validate_modeset (1 subtest) =============
[16:41:09] [PASSED] drm_test_check_connector_changed_modeset
[16:41:09] ============== [PASSED] drm_validate_modeset ===============
[16:41:09] ====== drm_test_bridge_get_current_state (1 subtest) =======
[16:41:09] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:41:09] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:41:09] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:41:09] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:41:09] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:41:09] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[16:41:09] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:41:09] ============== drm_bridge_alloc (2 subtests) ===============
[16:41:09] [PASSED] drm_test_drm_bridge_alloc_basic
[16:41:09] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:41:09] ================ [PASSED] drm_bridge_alloc =================
[16:41:09] ============= drm_bridge_bus_fmt (5 subtests) ==============
[16:41:09] [PASSED] drm_test_bridge_rgb_yuv_rgb
[16:41:09] [PASSED] drm_test_bridge_must_convert_to_yuv444
[16:41:09] [PASSED] drm_test_bridge_hdmi_auto_rgb
[16:41:09] [PASSED] drm_test_bridge_auto_first
[16:41:09] [PASSED] drm_test_bridge_rgb_yuv_no_path
[16:41:09] =============== [PASSED] drm_bridge_bus_fmt ================
[16:41:09] ============= drm_cmdline_parser (40 subtests) =============
[16:41:09] [PASSED] drm_test_cmdline_force_d_only
[16:41:09] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:41:09] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:41:09] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:41:09] [PASSED] drm_test_cmdline_force_e_only
[16:41:09] [PASSED] drm_test_cmdline_res
[16:41:09] [PASSED] drm_test_cmdline_res_vesa
[16:41:09] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:41:09] [PASSED] drm_test_cmdline_res_rblank
[16:41:09] [PASSED] drm_test_cmdline_res_bpp
[16:41:09] [PASSED] drm_test_cmdline_res_refresh
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:41:09] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:41:09] [PASSED] drm_test_cmdline_res_margins_force_on
[16:41:09] [PASSED] drm_test_cmdline_res_vesa_margins
[16:41:09] [PASSED] drm_test_cmdline_name
[16:41:09] [PASSED] drm_test_cmdline_name_bpp
[16:41:09] [PASSED] drm_test_cmdline_name_option
[16:41:09] [PASSED] drm_test_cmdline_name_bpp_option
[16:41:09] [PASSED] drm_test_cmdline_rotate_0
[16:41:09] [PASSED] drm_test_cmdline_rotate_90
[16:41:09] [PASSED] drm_test_cmdline_rotate_180
[16:41:09] [PASSED] drm_test_cmdline_rotate_270
[16:41:09] [PASSED] drm_test_cmdline_hmirror
[16:41:09] [PASSED] drm_test_cmdline_vmirror
[16:41:09] [PASSED] drm_test_cmdline_margin_options
[16:41:09] [PASSED] drm_test_cmdline_multiple_options
[16:41:09] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:41:09] [PASSED] drm_test_cmdline_extra_and_option
[16:41:09] [PASSED] drm_test_cmdline_freestanding_options
[16:41:09] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:41:09] [PASSED] drm_test_cmdline_panel_orientation
[16:41:09] ================ drm_test_cmdline_invalid =================
[16:41:09] [PASSED] margin_only
[16:41:09] [PASSED] interlace_only
[16:41:09] [PASSED] res_missing_x
[16:41:09] [PASSED] res_missing_y
[16:41:09] [PASSED] res_bad_y
[16:41:09] [PASSED] res_missing_y_bpp
[16:41:09] [PASSED] res_bad_bpp
[16:41:09] [PASSED] res_bad_refresh
[16:41:09] [PASSED] res_bpp_refresh_force_on_off
[16:41:09] [PASSED] res_invalid_mode
[16:41:09] [PASSED] res_bpp_wrong_place_mode
[16:41:09] [PASSED] name_bpp_refresh
[16:41:09] [PASSED] name_refresh
[16:41:09] [PASSED] name_refresh_wrong_mode
[16:41:09] [PASSED] name_refresh_invalid_mode
[16:41:09] [PASSED] rotate_multiple
[16:41:09] [PASSED] rotate_invalid_val
[16:41:09] [PASSED] rotate_truncated
[16:41:09] [PASSED] invalid_option
[16:41:09] [PASSED] invalid_tv_option
[16:41:09] [PASSED] truncated_tv_option
[16:41:09] ============ [PASSED] drm_test_cmdline_invalid =============
[16:41:09] =============== drm_test_cmdline_tv_options ===============
[16:41:09] [PASSED] NTSC
[16:41:09] [PASSED] NTSC_443
[16:41:09] [PASSED] NTSC_J
[16:41:09] [PASSED] PAL
[16:41:09] [PASSED] PAL_M
[16:41:09] [PASSED] PAL_N
[16:41:09] [PASSED] SECAM
[16:41:09] [PASSED] MONO_525
[16:41:09] [PASSED] MONO_625
[16:41:09] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:41:09] =============== [PASSED] drm_cmdline_parser ================
[16:41:09] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:41:09] [PASSED] drm_test_connector_hdmi_init_valid
[16:41:09] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:41:09] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:41:09] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:41:09] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:41:09] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:41:09] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:41:09] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:41:09] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:41:09] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:41:09] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:41:09] [PASSED] supported_formats=0x5 yuv420_allowed=1
[16:41:09] [PASSED] supported_formats=0x5 yuv420_allowed=0
[16:41:09] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:41:09] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:41:09] [PASSED] drm_test_connector_hdmi_init_null_product
[16:41:09] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:41:09] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:41:09] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:41:09] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:41:09] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:41:09] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:41:09] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:41:09] ========= drm_test_connector_hdmi_init_type_valid =========
[16:41:09] [PASSED] HDMI-A
[16:41:09] [PASSED] HDMI-B
[16:41:09] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:41:09] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:41:09] [PASSED] Unknown
[16:41:09] [PASSED] VGA
[16:41:09] [PASSED] DVI-I
[16:41:09] [PASSED] DVI-D
[16:41:09] [PASSED] DVI-A
[16:41:09] [PASSED] Composite
[16:41:09] [PASSED] SVIDEO
[16:41:09] [PASSED] LVDS
[16:41:09] [PASSED] Component
[16:41:09] [PASSED] DIN
[16:41:09] [PASSED] DP
[16:41:09] [PASSED] TV
[16:41:09] [PASSED] eDP
[16:41:09] [PASSED] Virtual
[16:41:09] [PASSED] DSI
[16:41:09] [PASSED] DPI
[16:41:09] [PASSED] Writeback
[16:41:09] [PASSED] SPI
[16:41:09] [PASSED] USB
[16:41:09] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:41:09] ============ [PASSED] drmm_connector_hdmi_init =============
[16:41:09] ============= drmm_connector_init (3 subtests) =============
[16:41:09] [PASSED] drm_test_drmm_connector_init
[16:41:09] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:41:09] ========= drm_test_drmm_connector_init_type_valid =========
[16:41:09] [PASSED] Unknown
[16:41:09] [PASSED] VGA
[16:41:09] [PASSED] DVI-I
[16:41:09] [PASSED] DVI-D
[16:41:09] [PASSED] DVI-A
[16:41:09] [PASSED] Composite
[16:41:09] [PASSED] SVIDEO
[16:41:09] [PASSED] LVDS
[16:41:09] [PASSED] Component
[16:41:09] [PASSED] DIN
[16:41:09] [PASSED] DP
[16:41:09] [PASSED] HDMI-A
[16:41:09] [PASSED] HDMI-B
[16:41:09] [PASSED] TV
[16:41:09] [PASSED] eDP
[16:41:09] [PASSED] Virtual
[16:41:09] [PASSED] DSI
[16:41:09] [PASSED] DPI
[16:41:09] [PASSED] Writeback
[16:41:09] [PASSED] SPI
[16:41:09] [PASSED] USB
[16:41:09] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:41:09] =============== [PASSED] drmm_connector_init ===============
[16:41:09] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_init
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:41:09] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:41:09] [PASSED] Unknown
[16:41:09] [PASSED] VGA
[16:41:09] [PASSED] DVI-I
[16:41:09] [PASSED] DVI-D
[16:41:09] [PASSED] DVI-A
[16:41:09] [PASSED] Composite
[16:41:09] [PASSED] SVIDEO
[16:41:09] [PASSED] LVDS
[16:41:09] [PASSED] Component
[16:41:09] [PASSED] DIN
[16:41:09] [PASSED] DP
[16:41:09] [PASSED] HDMI-A
[16:41:09] [PASSED] HDMI-B
[16:41:09] [PASSED] TV
[16:41:09] [PASSED] eDP
[16:41:09] [PASSED] Virtual
[16:41:09] [PASSED] DSI
[16:41:09] [PASSED] DPI
[16:41:09] [PASSED] Writeback
[16:41:09] [PASSED] SPI
[16:41:09] [PASSED] USB
[16:41:09] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:41:09] ======== drm_test_drm_connector_dynamic_init_name =========
[16:41:09] [PASSED] Unknown
[16:41:09] [PASSED] VGA
[16:41:09] [PASSED] DVI-I
[16:41:09] [PASSED] DVI-D
[16:41:09] [PASSED] DVI-A
[16:41:09] [PASSED] Composite
[16:41:09] [PASSED] SVIDEO
[16:41:09] [PASSED] LVDS
[16:41:09] [PASSED] Component
[16:41:09] [PASSED] DIN
[16:41:09] [PASSED] DP
[16:41:09] [PASSED] HDMI-A
[16:41:09] [PASSED] HDMI-B
[16:41:09] [PASSED] TV
[16:41:09] [PASSED] eDP
[16:41:09] [PASSED] Virtual
[16:41:09] [PASSED] DSI
[16:41:09] [PASSED] DPI
[16:41:09] [PASSED] Writeback
[16:41:09] [PASSED] SPI
[16:41:09] [PASSED] USB
[16:41:09] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:41:09] =========== [PASSED] drm_connector_dynamic_init ============
[16:41:09] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:41:09] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:41:09] ======= drm_connector_dynamic_register (7 subtests) ========
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:41:09] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:41:09] ========= [PASSED] drm_connector_dynamic_register ==========
[16:41:09] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:41:09] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:41:09] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:41:09] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:41:09] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:41:09] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:41:09] [PASSED] NTSC
[16:41:09] [PASSED] NTSC-443
[16:41:09] [PASSED] NTSC-J
[16:41:09] [PASSED] PAL
[16:41:09] [PASSED] PAL-M
[16:41:09] [PASSED] PAL-N
[16:41:09] [PASSED] SECAM
[16:41:09] [PASSED] Mono
[16:41:09] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:41:09] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:41:09] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:41:09] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:41:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:41:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:41:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:41:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:41:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:41:09] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:41:09] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:41:09] [PASSED] VIC 96
[16:41:09] [PASSED] VIC 97
[16:41:09] [PASSED] VIC 101
[16:41:09] [PASSED] VIC 102
[16:41:09] [PASSED] VIC 106
[16:41:09] [PASSED] VIC 107
[16:41:09] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:41:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:41:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:41:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:41:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:41:09] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:41:09] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:41:09] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:41:09] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:41:09] [PASSED] Automatic
[16:41:09] [PASSED] Full
[16:41:09] [PASSED] Limited 16:235
[16:41:09] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:41:09] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:41:09] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:41:09] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:41:09] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:41:09] [PASSED] RGB
[16:41:09] [PASSED] YUV 4:2:0
[16:41:09] [PASSED] YUV 4:2:2
[16:41:09] [PASSED] YUV 4:4:4
[16:41:09] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:41:09] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:41:09] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:41:09] ============= drm_damage_helper (21 subtests) ==============
[16:41:09] [PASSED] drm_test_damage_iter_no_damage
[16:41:09] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:41:09] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:41:09] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:41:09] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:41:09] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:41:09] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:41:09] [PASSED] drm_test_damage_iter_simple_damage
[16:41:09] [PASSED] drm_test_damage_iter_single_damage
[16:41:09] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:41:09] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:41:09] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:41:09] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:41:09] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:41:09] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:41:09] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:41:09] [PASSED] drm_test_damage_iter_damage
[16:41:09] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:41:09] [PASSED] drm_test_damage_iter_damage_one_outside
[16:41:09] [PASSED] drm_test_damage_iter_damage_src_moved
[16:41:09] [PASSED] drm_test_damage_iter_damage_not_visible
[16:41:09] ================ [PASSED] drm_damage_helper ================
[16:41:09] ============== drm_dp_mst_helper (3 subtests) ==============
[16:41:09] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:41:09] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:41:09] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:41:09] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:41:09] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:41:09] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:41:09] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:41:09] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:41:09] [PASSED] Link rate 2000000 lane count 4
[16:41:09] [PASSED] Link rate 2000000 lane count 2
[16:41:09] [PASSED] Link rate 2000000 lane count 1
[16:41:09] [PASSED] Link rate 1350000 lane count 4
[16:41:09] [PASSED] Link rate 1350000 lane count 2
[16:41:09] [PASSED] Link rate 1350000 lane count 1
[16:41:09] [PASSED] Link rate 1000000 lane count 4
[16:41:09] [PASSED] Link rate 1000000 lane count 2
[16:41:09] [PASSED] Link rate 1000000 lane count 1
[16:41:09] [PASSED] Link rate 810000 lane count 4
[16:41:09] [PASSED] Link rate 810000 lane count 2
[16:41:09] [PASSED] Link rate 810000 lane count 1
[16:41:09] [PASSED] Link rate 540000 lane count 4
[16:41:09] [PASSED] Link rate 540000 lane count 2
[16:41:09] [PASSED] Link rate 540000 lane count 1
[16:41:09] [PASSED] Link rate 270000 lane count 4
[16:41:09] [PASSED] Link rate 270000 lane count 2
[16:41:09] [PASSED] Link rate 270000 lane count 1
[16:41:09] [PASSED] Link rate 162000 lane count 4
[16:41:09] [PASSED] Link rate 162000 lane count 2
[16:41:09] [PASSED] Link rate 162000 lane count 1
[16:41:09] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:41:09] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:41:09] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:41:09] [PASSED] DP_POWER_UP_PHY with port number
[16:41:09] [PASSED] DP_POWER_DOWN_PHY with port number
[16:41:09] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:41:09] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:41:09] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:41:09] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:41:09] [PASSED] DP_QUERY_PAYLOAD with port number
[16:41:09] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:41:09] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:41:09] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:41:09] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:41:09] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:41:09] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:41:09] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:41:09] [PASSED] DP_REMOTE_I2C_READ with port number
[16:41:09] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:41:09] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:41:09] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:41:09] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:41:09] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:41:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:41:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:41:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:41:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:41:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:41:09] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:41:09] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:41:09] ================ [PASSED] drm_dp_mst_helper ================
[16:41:09] ================== drm_exec (7 subtests) ===================
[16:41:09] [PASSED] sanitycheck
[16:41:09] [PASSED] test_lock
[16:41:09] [PASSED] test_lock_unlock
[16:41:09] [PASSED] test_duplicates
[16:41:09] [PASSED] test_prepare
[16:41:09] [PASSED] test_prepare_array
[16:41:09] [PASSED] test_multiple_loops
[16:41:09] ==================== [PASSED] drm_exec =====================
[16:41:09] =========== drm_format_helper_test (17 subtests) ===========
[16:41:09] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:41:09] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:41:09] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:41:09] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:41:09] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:41:09] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:41:09] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:41:09] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:41:09] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:41:09] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:41:09] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:41:09] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:41:09] ==================== drm_test_fb_swab =====================
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ================ [PASSED] drm_test_fb_swab =================
[16:41:09] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:41:09] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:41:09] [PASSED] single_pixel_source_buffer
[16:41:09] [PASSED] single_pixel_clip_rectangle
[16:41:09] [PASSED] well_known_colors
[16:41:09] [PASSED] destination_pitch
[16:41:09] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:41:09] ================= drm_test_fb_clip_offset =================
[16:41:09] [PASSED] pass through
[16:41:09] [PASSED] horizontal offset
[16:41:09] [PASSED] vertical offset
[16:41:09] [PASSED] horizontal and vertical offset
[16:41:09] [PASSED] horizontal offset (custom pitch)
[16:41:09] [PASSED] vertical offset (custom pitch)
[16:41:09] [PASSED] horizontal and vertical offset (custom pitch)
[16:41:09] ============= [PASSED] drm_test_fb_clip_offset =============
[16:41:09] =================== drm_test_fb_memcpy ====================
[16:41:09] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:41:09] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:41:09] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:41:09] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:41:09] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:41:09] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:41:09] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:41:09] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:41:09] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:41:09] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:41:09] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:41:09] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:41:09] =============== [PASSED] drm_test_fb_memcpy ================
[16:41:09] ============= [PASSED] drm_format_helper_test ==============
[16:41:09] ================= drm_format (18 subtests) =================
[16:41:09] [PASSED] drm_test_format_block_width_invalid
[16:41:09] [PASSED] drm_test_format_block_width_one_plane
[16:41:09] [PASSED] drm_test_format_block_width_two_plane
[16:41:09] [PASSED] drm_test_format_block_width_three_plane
[16:41:09] [PASSED] drm_test_format_block_width_tiled
[16:41:09] [PASSED] drm_test_format_block_height_invalid
[16:41:09] [PASSED] drm_test_format_block_height_one_plane
[16:41:09] [PASSED] drm_test_format_block_height_two_plane
[16:41:09] [PASSED] drm_test_format_block_height_three_plane
[16:41:09] [PASSED] drm_test_format_block_height_tiled
[16:41:09] [PASSED] drm_test_format_min_pitch_invalid
[16:41:09] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:41:09] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:41:09] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:41:09] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:41:09] [PASSED] drm_test_format_min_pitch_two_plane
[16:41:09] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:41:09] [PASSED] drm_test_format_min_pitch_tiled
[16:41:09] =================== [PASSED] drm_format ====================
[16:41:09] ============== drm_framebuffer (10 subtests) ===============
[16:41:09] ========== drm_test_framebuffer_check_src_coords ==========
[16:41:09] [PASSED] Success: source fits into fb
[16:41:09] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:41:09] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:41:09] [PASSED] Fail: overflowing fb with source width
[16:41:09] [PASSED] Fail: overflowing fb with source height
[16:41:09] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:41:09] [PASSED] drm_test_framebuffer_cleanup
[16:41:09] =============== drm_test_framebuffer_create ===============
[16:41:09] [PASSED] ABGR8888 normal sizes
[16:41:09] [PASSED] ABGR8888 max sizes
[16:41:09] [PASSED] ABGR8888 pitch greater than min required
[16:41:09] [PASSED] ABGR8888 pitch less than min required
[16:41:09] [PASSED] ABGR8888 Invalid width
[16:41:09] [PASSED] ABGR8888 Invalid buffer handle
[16:41:09] [PASSED] No pixel format
[16:41:09] [PASSED] ABGR8888 Width 0
[16:41:09] [PASSED] ABGR8888 Height 0
[16:41:09] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:41:09] [PASSED] ABGR8888 Large buffer offset
[16:41:09] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:41:09] [PASSED] ABGR8888 Invalid flag
[16:41:09] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:41:09] [PASSED] ABGR8888 Valid buffer modifier
[16:41:09] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:41:09] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:41:09] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:41:09] [PASSED] NV12 Normal sizes
[16:41:09] [PASSED] NV12 Max sizes
[16:41:09] [PASSED] NV12 Invalid pitch
[16:41:09] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:41:09] [PASSED] NV12 different modifier per-plane
[16:41:09] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:41:09] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:41:09] [PASSED] NV12 Modifier for inexistent plane
[16:41:09] [PASSED] NV12 Handle for inexistent plane
[16:41:09] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:41:09] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:41:09] [PASSED] YVU420 Normal sizes
[16:41:09] [PASSED] YVU420 Max sizes
[16:41:09] [PASSED] YVU420 Invalid pitch
[16:41:09] [PASSED] YVU420 Different pitches
[16:41:09] [PASSED] YVU420 Different buffer offsets/pitches
[16:41:09] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:41:09] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:41:09] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:41:09] [PASSED] YVU420 Valid modifier
[16:41:09] [PASSED] YVU420 Different modifiers per plane
[16:41:09] [PASSED] YVU420 Modifier for inexistent plane
[16:41:09] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:41:09] [PASSED] X0L2 Normal sizes
[16:41:09] [PASSED] X0L2 Max sizes
[16:41:09] [PASSED] X0L2 Invalid pitch
[16:41:09] [PASSED] X0L2 Pitch greater than minimum required
[16:41:09] [PASSED] X0L2 Handle for inexistent plane
[16:41:09] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:41:09] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:41:09] [PASSED] X0L2 Valid modifier
[16:41:09] [PASSED] X0L2 Modifier for inexistent plane
[16:41:09] =========== [PASSED] drm_test_framebuffer_create ===========
[16:41:09] [PASSED] drm_test_framebuffer_free
[16:41:09] [PASSED] drm_test_framebuffer_init
[16:41:09] [PASSED] drm_test_framebuffer_init_bad_format
[16:41:09] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:41:09] [PASSED] drm_test_framebuffer_lookup
[16:41:09] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:41:09] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:41:09] ================= [PASSED] drm_framebuffer =================
[16:41:09] ================ drm_gem_shmem (8 subtests) ================
[16:41:09] [PASSED] drm_gem_shmem_test_obj_create
[16:41:09] [PASSED] drm_gem_shmem_test_obj_create_private
[16:41:09] [PASSED] drm_gem_shmem_test_pin_pages
[16:41:09] [PASSED] drm_gem_shmem_test_vmap
[16:41:09] [PASSED] drm_gem_shmem_test_get_sg_table
[16:41:09] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:41:09] [PASSED] drm_gem_shmem_test_madvise
[16:41:09] [PASSED] drm_gem_shmem_test_purge
[16:41:09] ================== [PASSED] drm_gem_shmem ==================
[16:41:09] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:41:09] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:41:09] [PASSED] Automatic
[16:41:09] [PASSED] Full
[16:41:09] [PASSED] Limited 16:235
[16:41:09] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:41:09] [PASSED] drm_test_check_disable_connector
[16:41:09] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:41:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:41:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:41:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:41:09] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:41:09] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:41:09] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:41:09] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:41:09] [PASSED] drm_test_check_output_bpc_dvi
[16:41:09] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:41:09] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:41:09] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:41:09] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:41:09] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:41:09] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:41:09] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:41:09] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:41:09] ============ drm_test_check_hdmi_color_format =============
[16:41:09] [PASSED] AUTO -> RGB
[16:41:09] [PASSED] YCBCR422 -> YUV422
[16:41:09] [PASSED] YCBCR420 -> YUV420
[16:41:09] [PASSED] YCBCR444 -> YUV444
[16:41:09] [PASSED] RGB -> RGB
[16:41:09] ======== [PASSED] drm_test_check_hdmi_color_format =========
[16:41:09] ======== drm_test_check_hdmi_color_format_420_only ========
[16:41:09] [PASSED] RGB should fail
[16:41:09] [PASSED] YUV444 should fail
[16:41:09] [PASSED] YUV422 should fail
[16:41:09] [PASSED] YUV420 should work
[16:41:09] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[16:41:09] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:41:09] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:41:09] [PASSED] drm_test_check_broadcast_rgb_value
[16:41:09] [PASSED] drm_test_check_bpc_8_value
[16:41:09] [PASSED] drm_test_check_bpc_10_value
[16:41:09] [PASSED] drm_test_check_bpc_12_value
[16:41:09] [PASSED] drm_test_check_format_value
[16:41:09] [PASSED] drm_test_check_tmds_char_value
[16:41:09] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:41:09] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[16:41:09] [PASSED] drm_test_check_mode_valid
[16:41:09] [PASSED] drm_test_check_mode_valid_reject
[16:41:09] [PASSED] drm_test_check_mode_valid_reject_rate
[16:41:09] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:41:09] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[16:41:09] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[16:41:09] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[16:41:09] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:41:09] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[16:41:09] [PASSED] drm_test_check_infoframes
[16:41:09] [PASSED] drm_test_check_reject_avi_infoframe
[16:41:09] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[16:41:09] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[16:41:09] [PASSED] drm_test_check_reject_audio_infoframe
[16:41:09] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[16:41:09] ================= drm_managed (2 subtests) =================
[16:41:09] [PASSED] drm_test_managed_release_action
[16:41:09] [PASSED] drm_test_managed_run_action
[16:41:09] =================== [PASSED] drm_managed ===================
[16:41:09] =================== drm_mm (6 subtests) ====================
[16:41:09] [PASSED] drm_test_mm_init
[16:41:09] [PASSED] drm_test_mm_debug
[16:41:09] [PASSED] drm_test_mm_align32
[16:41:09] [PASSED] drm_test_mm_align64
[16:41:09] [PASSED] drm_test_mm_lowest
[16:41:09] [PASSED] drm_test_mm_highest
[16:41:09] ===================== [PASSED] drm_mm ======================
[16:41:09] ============= drm_modes_analog_tv (5 subtests) =============
[16:41:09] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:41:09] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:41:09] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:41:09] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:41:09] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:41:09] =============== [PASSED] drm_modes_analog_tv ===============
[16:41:09] ============== drm_plane_helper (2 subtests) ===============
[16:41:09] =============== drm_test_check_plane_state ================
[16:41:09] [PASSED] clipping_simple
[16:41:09] [PASSED] clipping_rotate_reflect
[16:41:09] [PASSED] positioning_simple
[16:41:09] [PASSED] upscaling
[16:41:09] [PASSED] downscaling
[16:41:09] [PASSED] rounding1
[16:41:09] [PASSED] rounding2
[16:41:09] [PASSED] rounding3
[16:41:09] [PASSED] rounding4
[16:41:09] =========== [PASSED] drm_test_check_plane_state ============
[16:41:09] =========== drm_test_check_invalid_plane_state ============
[16:41:09] [PASSED] positioning_invalid
[16:41:09] [PASSED] upscaling_invalid
[16:41:09] [PASSED] downscaling_invalid
[16:41:09] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:41:09] ================ [PASSED] drm_plane_helper =================
[16:41:09] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:41:09] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:41:09] [PASSED] None
[16:41:09] [PASSED] PAL
[16:41:09] [PASSED] NTSC
[16:41:09] [PASSED] Both, NTSC Default
[16:41:09] [PASSED] Both, PAL Default
[16:41:09] [PASSED] Both, NTSC Default, with PAL on command-line
[16:41:09] [PASSED] Both, PAL Default, with NTSC on command-line
[16:41:09] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:41:09] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:41:09] ================== drm_rect (9 subtests) ===================
[16:41:09] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:41:09] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:41:09] [PASSED] drm_test_rect_clip_scaled_clipped
[16:41:09] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:41:09] ================= drm_test_rect_intersect =================
[16:41:09] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:41:09] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:41:09] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:41:09] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:41:09] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:41:09] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:41:09] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:41:09] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:41:09] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:41:09] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:41:09] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:41:09] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:41:09] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:41:09] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:41:09] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:41:09] ============= [PASSED] drm_test_rect_intersect =============
[16:41:09] ================ drm_test_rect_calc_hscale ================
[16:41:09] [PASSED] normal use
[16:41:09] [PASSED] out of max range
[16:41:09] [PASSED] out of min range
[16:41:09] [PASSED] zero dst
[16:41:09] [PASSED] negative src
[16:41:09] [PASSED] negative dst
[16:41:09] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:41:09] ================ drm_test_rect_calc_vscale ================
[16:41:09] [PASSED] normal use
[16:41:09] [PASSED] out of max range
[16:41:09] [PASSED] out of min range
[16:41:09] [PASSED] zero dst
[16:41:09] [PASSED] negative src
[16:41:09] [PASSED] negative dst
[16:41:09] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:41:09] ================== drm_test_rect_rotate ===================
[16:41:09] [PASSED] reflect-x
[16:41:09] [PASSED] reflect-y
[16:41:09] [PASSED] rotate-0
[16:41:09] [PASSED] rotate-90
[16:41:09] [PASSED] rotate-180
[16:41:09] [PASSED] rotate-270
[16:41:09] ============== [PASSED] drm_test_rect_rotate ===============
[16:41:09] ================ drm_test_rect_rotate_inv =================
[16:41:09] [PASSED] reflect-x
[16:41:09] [PASSED] reflect-y
[16:41:09] [PASSED] rotate-0
[16:41:09] [PASSED] rotate-90
[16:41:09] [PASSED] rotate-180
[16:41:09] [PASSED] rotate-270
[16:41:09] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:41:09] ==================== [PASSED] drm_rect =====================
[16:41:09] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:41:09] ============ drm_test_sysfb_build_fourcc_list =============
[16:41:09] [PASSED] no native formats
[16:41:09] [PASSED] XRGB8888 as native format
[16:41:09] [PASSED] remove duplicates
[16:41:09] [PASSED] convert alpha formats
[16:41:09] [PASSED] random formats
[16:41:09] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:41:09] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:41:09] ================== drm_fixp (2 subtests) ===================
[16:41:09] [PASSED] drm_test_int2fixp
[16:41:09] [PASSED] drm_test_sm2fixp
[16:41:09] ==================== [PASSED] drm_fixp =====================
[16:41:09] ============================================================
[16:41:09] Testing complete. Ran 637 tests: passed: 637
[16:41:09] Elapsed time: 26.713s total, 1.820s configuring, 24.728s building, 0.140s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:41:09] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:41:11] 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
[16:41:21] Starting KUnit Kernel (1/1)...
[16:41:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:41:21] ================= ttm_device (5 subtests) ==================
[16:41:21] [PASSED] ttm_device_init_basic
[16:41:21] [PASSED] ttm_device_init_multiple
[16:41:21] [PASSED] ttm_device_fini_basic
[16:41:21] [PASSED] ttm_device_init_no_vma_man
[16:41:21] ================== ttm_device_init_pools ==================
[16:41:21] [PASSED] No DMA allocations, no DMA32 required
[16:41:21] [PASSED] DMA allocations, DMA32 required
[16:41:21] [PASSED] No DMA allocations, DMA32 required
[16:41:21] [PASSED] DMA allocations, no DMA32 required
[16:41:21] ============== [PASSED] ttm_device_init_pools ==============
[16:41:21] =================== [PASSED] ttm_device ====================
[16:41:21] ================== ttm_pool (8 subtests) ===================
[16:41:21] ================== ttm_pool_alloc_basic ===================
[16:41:21] [PASSED] One page
[16:41:21] [PASSED] More than one page
[16:41:21] [PASSED] Above the allocation limit
[16:41:21] [PASSED] One page, with coherent DMA mappings enabled
[16:41:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:41:21] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:41:21] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:41:21] [PASSED] One page
[16:41:21] [PASSED] More than one page
[16:41:21] [PASSED] Above the allocation limit
[16:41:21] [PASSED] One page, with coherent DMA mappings enabled
[16:41:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:41:21] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:41:21] [PASSED] ttm_pool_alloc_order_caching_match
[16:41:21] [PASSED] ttm_pool_alloc_caching_mismatch
[16:41:21] [PASSED] ttm_pool_alloc_order_mismatch
[16:41:21] [PASSED] ttm_pool_free_dma_alloc
[16:41:21] [PASSED] ttm_pool_free_no_dma_alloc
[16:41:21] [PASSED] ttm_pool_fini_basic
[16:41:21] ==================== [PASSED] ttm_pool =====================
[16:41:21] ================ ttm_resource (8 subtests) =================
[16:41:21] ================= ttm_resource_init_basic =================
[16:41:21] [PASSED] Init resource in TTM_PL_SYSTEM
[16:41:21] [PASSED] Init resource in TTM_PL_VRAM
[16:41:21] [PASSED] Init resource in a private placement
[16:41:21] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:41:21] ============= [PASSED] ttm_resource_init_basic =============
[16:41:21] [PASSED] ttm_resource_init_pinned
[16:41:21] [PASSED] ttm_resource_fini_basic
[16:41:21] [PASSED] ttm_resource_manager_init_basic
[16:41:21] [PASSED] ttm_resource_manager_usage_basic
[16:41:21] [PASSED] ttm_resource_manager_set_used_basic
[16:41:21] [PASSED] ttm_sys_man_alloc_basic
[16:41:21] [PASSED] ttm_sys_man_free_basic
[16:41:21] ================== [PASSED] ttm_resource ===================
[16:41:21] =================== ttm_tt (15 subtests) ===================
[16:41:21] ==================== ttm_tt_init_basic ====================
[16:41:21] [PASSED] Page-aligned size
[16:41:21] [PASSED] Extra pages requested
[16:41:21] ================ [PASSED] ttm_tt_init_basic ================
[16:41:21] [PASSED] ttm_tt_init_misaligned
[16:41:21] [PASSED] ttm_tt_fini_basic
[16:41:21] [PASSED] ttm_tt_fini_sg
[16:41:21] [PASSED] ttm_tt_fini_shmem
[16:41:21] [PASSED] ttm_tt_create_basic
[16:41:21] [PASSED] ttm_tt_create_invalid_bo_type
[16:41:21] [PASSED] ttm_tt_create_ttm_exists
[16:41:21] [PASSED] ttm_tt_create_failed
[16:41:21] [PASSED] ttm_tt_destroy_basic
[16:41:21] [PASSED] ttm_tt_populate_null_ttm
[16:41:21] [PASSED] ttm_tt_populate_populated_ttm
[16:41:21] [PASSED] ttm_tt_unpopulate_basic
[16:41:21] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:41:21] [PASSED] ttm_tt_swapin_basic
[16:41:21] ===================== [PASSED] ttm_tt ======================
[16:41:21] =================== ttm_bo (14 subtests) ===================
[16:41:21] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:41:21] [PASSED] Cannot be interrupted and sleeps
[16:41:21] [PASSED] Cannot be interrupted, locks straight away
[16:41:21] [PASSED] Can be interrupted, sleeps
[16:41:21] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:41:21] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:41:21] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:41:21] [PASSED] ttm_bo_reserve_double_resv
[16:41:21] [PASSED] ttm_bo_reserve_interrupted
[16:41:21] [PASSED] ttm_bo_reserve_deadlock
[16:41:21] [PASSED] ttm_bo_unreserve_basic
[16:41:21] [PASSED] ttm_bo_unreserve_pinned
[16:41:21] [PASSED] ttm_bo_unreserve_bulk
[16:41:21] [PASSED] ttm_bo_fini_basic
[16:41:21] [PASSED] ttm_bo_fini_shared_resv
[16:41:21] [PASSED] ttm_bo_pin_basic
[16:41:21] [PASSED] ttm_bo_pin_unpin_resource
[16:41:21] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:41:21] ===================== [PASSED] ttm_bo ======================
[16:41:21] ============== ttm_bo_validate (22 subtests) ===============
[16:41:21] ============== ttm_bo_init_reserved_sys_man ===============
[16:41:21] [PASSED] Buffer object for userspace
[16:41:21] [PASSED] Kernel buffer object
[16:41:21] [PASSED] Shared buffer object
[16:41:21] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:41:21] ============== ttm_bo_init_reserved_mock_man ==============
[16:41:21] [PASSED] Buffer object for userspace
[16:41:21] [PASSED] Kernel buffer object
[16:41:21] [PASSED] Shared buffer object
[16:41:21] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:41:21] [PASSED] ttm_bo_init_reserved_resv
[16:41:21] ================== ttm_bo_validate_basic ==================
[16:41:21] [PASSED] Buffer object for userspace
[16:41:21] [PASSED] Kernel buffer object
[16:41:21] [PASSED] Shared buffer object
[16:41:21] ============== [PASSED] ttm_bo_validate_basic ==============
[16:41:21] [PASSED] ttm_bo_validate_invalid_placement
[16:41:21] ============= ttm_bo_validate_same_placement ==============
[16:41:21] [PASSED] System manager
[16:41:21] [PASSED] VRAM manager
[16:41:21] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:41:21] [PASSED] ttm_bo_validate_failed_alloc
[16:41:21] [PASSED] ttm_bo_validate_pinned
[16:41:21] [PASSED] ttm_bo_validate_busy_placement
[16:41:21] ================ ttm_bo_validate_multihop =================
[16:41:21] [PASSED] Buffer object for userspace
[16:41:21] [PASSED] Kernel buffer object
[16:41:21] [PASSED] Shared buffer object
[16:41:21] ============ [PASSED] ttm_bo_validate_multihop =============
[16:41:21] ========== ttm_bo_validate_no_placement_signaled ==========
[16:41:21] [PASSED] Buffer object in system domain, no page vector
[16:41:21] [PASSED] Buffer object in system domain with an existing page vector
[16:41:21] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:41:21] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:41:21] [PASSED] Buffer object for userspace
[16:41:21] [PASSED] Kernel buffer object
[16:41:21] [PASSED] Shared buffer object
[16:41:21] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:41:21] [PASSED] ttm_bo_validate_move_fence_signaled
[16:41:21] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:41:21] [PASSED] Waits for GPU
[16:41:21] [PASSED] Tries to lock straight away
[16:41:21] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:41:21] [PASSED] ttm_bo_validate_swapout
[16:41:21] [PASSED] ttm_bo_validate_happy_evict
[16:41:21] [PASSED] ttm_bo_validate_all_pinned_evict
[16:41:21] [PASSED] ttm_bo_validate_allowed_only_evict
[16:41:21] [PASSED] ttm_bo_validate_deleted_evict
[16:41:21] [PASSED] ttm_bo_validate_busy_domain_evict
[16:41:21] [PASSED] ttm_bo_validate_evict_gutting
[16:41:21] [PASSED] ttm_bo_validate_recrusive_evict
[16:41:21] ================= [PASSED] ttm_bo_validate =================
[16:41:21] ============================================================
[16:41:21] Testing complete. Ran 102 tests: passed: 102
[16:41:21] Elapsed time: 11.875s total, 1.763s configuring, 9.897s building, 0.177s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ Xe.CI.BAT: success for Introduce cold reset recovery method (rev14)
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
` (7 preceding siblings ...)
2026-08-06 16:41 ` ✓ CI.KUnit: success for Introduce cold reset recovery method (rev14) Patchwork
@ 2026-08-06 17:22 ` Patchwork
2026-08-07 5:53 ` ✗ Xe.CI.FULL: failure " Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-08-06 17:22 UTC (permalink / raw)
To: Mallesh Koujalagi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1898 bytes --]
== Series Details ==
Series: Introduce cold reset recovery method (rev14)
URL : https://patchwork.freedesktop.org/series/163428/
State : success
== Summary ==
CI Bug Log - changes from xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448_BAT -> xe-pw-163428v14_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
Additional (1): bat-nvls-1
Missing (1): bat-bmg-2
Known issues
------------
Here are the changes found in xe-pw-163428v14_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#8377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8377
[Intel XE#8741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8741
[Intel XE#8743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8743
[Intel XE#8744]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8744
[Intel XE#8745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8745
[Intel XE#8746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8746
[Intel XE#8747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8747
[Intel XE#8748]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8748
[Intel XE#8757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8757
[Intel XE#8759]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8759
Build changes
-------------
* Linux: xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448 -> xe-pw-163428v14
IGT_9043: 9043
xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448: 66c6b22c4f075c8c0e0d5f0fce4e198201f9c448
xe-pw-163428v14: 163428v14
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/index.html
[-- Attachment #2: Type: text/html, Size: 1698 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ Xe.CI.FULL: failure for Introduce cold reset recovery method (rev14)
2026-08-05 7:11 [PATCH v13 0/4] Introduce cold reset recovery method Mallesh Koujalagi
` (8 preceding siblings ...)
2026-08-06 17:22 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-08-07 5:53 ` Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-08-07 5:53 UTC (permalink / raw)
To: Mallesh Koujalagi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 59123 bytes --]
== Series Details ==
Series: Introduce cold reset recovery method (rev14)
URL : https://patchwork.freedesktop.org/series/163428/
State : failure
== Summary ==
CI Bug Log - changes from xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448_FULL -> xe-pw-163428v14_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-163428v14_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-163428v14_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-163428v14_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
- shard-bmg: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-bmg: [PASS][3] -> [FAIL][4] +3 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
#### Warnings ####
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [FAIL][5] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [ABORT][6] +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-7/igt@kms_content_protection@atomic-hdcp14.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-4/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: [SKIP][7] ([Intel XE#6814] / [Intel XE#7428]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_pm_rpm@package-g7.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_pm_rpm@package-g7.html
Known issues
------------
Here are the changes found in xe-pw-163428v14_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#7774])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-hdmi-a-3.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-hdmi-a-3.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +5 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7679])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +9 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2724] / [Intel XE#7449])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7358])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#6969]) +10 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7642])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2320]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][26] -> [FAIL][27] ([Intel XE#7571])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1508])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#8265]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#301]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7179]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@basic:
- shard-bmg: [PASS][34] -> [DMESG-FAIL][35] ([Intel XE#7774]) +1 other test dmesg-fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_frontbuffer_tracking@basic.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2311]) +42 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4141]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7399])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7061]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2313]) +39 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6901])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4090] / [Intel XE#7443])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7283]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2393])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#5020] / [Intel XE#7348])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#8396]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#1489]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2234])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#3904] / [Intel XE#7342])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2413])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6503])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@lobf-dc3co:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#8397])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@kms_vrr@lobf-dc3co.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1499])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@kms_vrr@max-min.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6599])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_cw_post_sync@walker-post-sync:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#8608])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_cw_post_sync@walker-post-sync.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][62] -> [INCOMPLETE][63] ([Intel XE#6321] / [Intel XE#8355])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#8370]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#8374]) +9 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#8364]) +20 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
* igt@xe_exec_reset@multi-queue-long-spin-reuse-many-queue-switch:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#8369])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_exec_reset@multi-queue-long-spin-reuse-many-queue-switch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset:
- shard-bmg: [PASS][69] -> [ABORT][70] ([Intel XE#5545] / [Intel XE#7774])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-race-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-rebind-err:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#8378]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-rebind-err.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#6964]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_page_reclaim@random:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7793])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_page_reclaim@random.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2284] / [Intel XE#7370])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-bmg: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#8175])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_pm@s4-vm-bind-prefetch.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-10/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#944])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#7992]) +2 other tests fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer:
- shard-bmg: [PASS][81] -> [SKIP][82] ([Intel XE#8589]) +298 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-lnl: [FAIL][83] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-lnl-6/igt@kms_async_flips@alternate-sync-async-flip.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [FAIL][85] ([Intel XE#7949]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][87] ([Intel XE#301]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][89] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][90] +1 other test pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt-threads:
- shard-bmg: [FAIL][91] ([Intel XE#7850]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [ABORT][93] ([Intel XE#8007]) -> [PASS][94] +2 other tests pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [SKIP][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-5/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-8/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-8/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-3/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-2/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-3/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-2/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-2/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-4/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-4/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-5/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-5/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-1/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-1/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-8/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-6/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-6/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-6/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-7/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-7/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-4/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-9/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-2/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-2/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-9/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-4/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-7/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-7/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-7/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-6/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-6/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-8/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-10/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-10/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-1/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][146] ([Intel XE#2327]) -> [SKIP][147] ([Intel XE#8589])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][148] ([Intel XE#1124]) -> [SKIP][149] ([Intel XE#8589]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][150] ([Intel XE#7679]) -> [SKIP][151] ([Intel XE#8589])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: [SKIP][152] ([Intel XE#367]) -> [SKIP][153] ([Intel XE#8589])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][154] ([Intel XE#2887]) -> [SKIP][155] ([Intel XE#8589]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: [SKIP][156] ([Intel XE#3432]) -> [SKIP][157] ([Intel XE#8589]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: [SKIP][158] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][159] ([Intel XE#8589])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_chamelium_color@ctm-green-to-red.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-bmg: [SKIP][160] ([Intel XE#7358]) -> [SKIP][161] ([Intel XE#8589])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: [SKIP][162] ([Intel XE#2252]) -> [SKIP][163] ([Intel XE#8589]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-bmg: [SKIP][164] ([Intel XE#6974]) -> [SKIP][165] ([Intel XE#8589])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][166] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][167] ([Intel XE#8589])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_content_protection@lic-type-0.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: [SKIP][168] ([Intel XE#2320]) -> [SKIP][169] ([Intel XE#8589]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: [SKIP][170] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][171] ([Intel XE#8589])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: [SKIP][172] ([Intel XE#8265]) -> [SKIP][173] ([Intel XE#8589]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][174] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][175] ([Intel XE#8589])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: [SKIP][176] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][177] ([Intel XE#8589]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][178] ([Intel XE#2311]) -> [SKIP][179] ([Intel XE#8589]) +29 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: [SKIP][180] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][181] ([Intel XE#8589])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: [SKIP][182] ([Intel XE#4141]) -> [SKIP][183] ([Intel XE#8589]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt:
- shard-bmg: [SKIP][184] ([Intel XE#7061]) -> [SKIP][185] ([Intel XE#8589]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: [SKIP][186] ([Intel XE#2313]) -> [SKIP][187] ([Intel XE#8589]) +26 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][188] ([Intel XE#7308]) -> [SKIP][189] ([Intel XE#8589])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][190] ([Intel XE#7283]) -> [SKIP][191] ([Intel XE#8589]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-bmg: [SKIP][192] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][193] ([Intel XE#8589])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][194] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) -> [SKIP][195] ([Intel XE#8589])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_pm_backlight@basic-brightness.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][196] ([Intel XE#1489]) -> [SKIP][197] ([Intel XE#8589]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: [SKIP][198] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][199] ([Intel XE#8589]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_psr@psr-cursor-plane-onoff.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: [SKIP][200] ([Intel XE#7795]) -> [SKIP][201] ([Intel XE#8589])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: [SKIP][202] ([Intel XE#2413]) -> [SKIP][203] ([Intel XE#8589])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: [SKIP][204] ([Intel XE#6503]) -> [SKIP][205] ([Intel XE#8589])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@kms_sharpness_filter@filter-suspend.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][206] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][207] ([Intel XE#1729] / [Intel XE#7424])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: [SKIP][208] ([Intel XE#8370]) -> [SKIP][209] ([Intel XE#8589])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_evict@evict-threads-small-multi-queue.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: [SKIP][210] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][211] ([Intel XE#8589]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-9/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
- shard-bmg: [SKIP][212] ([Intel XE#8374]) -> [SKIP][213] ([Intel XE#8589]) +5 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
- shard-bmg: [SKIP][214] ([Intel XE#8364]) -> [SKIP][215] ([Intel XE#8589]) +12 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-basic:
- shard-bmg: [SKIP][216] ([Intel XE#8378]) -> [SKIP][217] ([Intel XE#8589]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html
* igt@xe_page_reclaim@many-vma-same-bo:
- shard-bmg: [SKIP][218] ([Intel XE#7793]) -> [SKIP][219] ([Intel XE#8589]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_page_reclaim@many-vma-same-bo.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_page_reclaim@many-vma-same-bo.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][220] ([Intel XE#2236] / [Intel XE#7590]) -> [SKIP][221] ([Intel XE#8589])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_pat@pat-index-xelpg.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: [SKIP][222] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][223] ([Intel XE#8589]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: [SKIP][224] ([Intel XE#944]) -> [SKIP][225] ([Intel XE#8589])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448/shard-bmg-10/igt@xe_query@multigpu-query-engines.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/shard-bmg-5/igt@xe_query@multigpu-query-engines.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7949]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7949
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8175]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8175
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
[Intel XE#8589]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8589
[Intel XE#8608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8608
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448 -> xe-pw-163428v14
IGT_9043: 9043
xe-5556-66c6b22c4f075c8c0e0d5f0fce4e198201f9c448: 66c6b22c4f075c8c0e0d5f0fce4e198201f9c448
xe-pw-163428v14: 163428v14
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v14/index.html
[-- Attachment #2: Type: text/html, Size: 69107 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread