* Re: [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs
2026-09-10 12:41 ` [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs Badal Nilawar
@ 2026-09-10 12:33 ` sashiko-bot
2026-09-10 14:48 ` Michal Wajdeczko
1 sibling, 0 replies; 11+ messages in thread
From: sashiko-bot @ 2026-09-10 12:33 UTC (permalink / raw)
To: Badal Nilawar; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] Exposing a globally unique GPU hardware identifier to unprivileged users creates a persistent privacy vulnerability. Unprivileged applications, sandboxes, and containers can read this 64-bit SOC ID to consistently fingerprint and track the machine, circumventing privacy boundaries.
--
commit bf81f8535df00cbd8d5f430123de0394ef920efc
Author: Badal Nilawar <badal.nilawar@intel.com>
drm/xe/cri: Expose device UID through sysfs
This commit introduces a sysfs attribute to expose the unique 64-bit hardware
identifier (SOC UID) of the GPU on supported Intel Xe platforms.
> diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu b/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
> new file mode 100644
> index 0000000000000..36182bbb1b54d
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
> @@ -0,0 +1,10 @@
> +What: /sys/bus/pci/drivers/xe/.../device_uid
> +Date: September 2026
> +KernelVersion: 7.4
> +Contact: intel-xe@lists.freedesktop.org
> +Description:
> + RO. Unique 64-bit identifier of the GPU device, exposed as
> + hexadecimal value.
> +
> + This sysfs file is present only on Intel Xe platforms that
> + provide a device UID. It is available to all users.
[Severity: Medium]
Is it intentional to expose this globally unique hardware identifier to
unprivileged users? Typically, unique identifiers like DMI product UUIDs
or system serials are restricted to root access to prevent unauthorized
fingerprinting and tracking across unprivileged applications or containers.
[ ... ]
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index a73e0e957cb0b..657742c22d90b 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
[ ... ]
> +static ssize_t
> +device_uid_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> + struct pci_dev *pdev = to_pci_dev(dev);
> + struct xe_device *xe = pdev_to_xe_device(pdev);
> +
> + return sysfs_emit(buf, "%016llx\n", xe->device_uid);
> +}
> +static DEVICE_ATTR_RO(device_uid);
[Severity: Medium]
Could this use DEVICE_ATTR_ADMIN_RO instead of DEVICE_ATTR_RO? By using
DEVICE_ATTR_RO, the sysfs attribute is granted 0444 world-readable
permissions. This allows any unprivileged user to persistently fingerprint
the machine by reading the device_uid sysfs file via device_uid_show().
Restricting this to 0400 would align with standard kernel practices for
hardware serials.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260910124151.3135801-4-badal.nilawar@intel.com?part=2
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs
2026-09-10 12:41 ` [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs Badal Nilawar
@ 2026-09-10 12:41 ` sashiko-bot
2026-09-10 14:41 ` Michal Wajdeczko
1 sibling, 0 replies; 11+ messages in thread
From: sashiko-bot @ 2026-09-10 12:41 UTC (permalink / raw)
To: Badal Nilawar; +Cc: intel-xe
Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider:
New issues:
- [Medium] The ABI documentation incorrectly states that the sysfs attribute is created when an alert is handled.
- [Medium] Lockless data race on `amc->alert_reason` between the workqueue writer and sysfs reader.
Pre-existing issues:
- [High] Use-after-free vulnerability during module teardown in `xe_amc_exit()` due to destroying `i2c->amc` while the I2C interrupt remains active.
- [High] Missing cancellation of `i2c->work` in `xe_i2c_remove()` leads to a Use-After-Free on driver unbind or error paths.
--
commit ae79b3f2589a0953606cef0104f63d635c6345fa
Author: Badal Nilawar <badal.nilawar@intel.com>
drm/xe/i2c: Expose AMC Alert reason sysfs
This commit exposes a read-only xe_amc_alert_reason sysfs attribute to
help users identify the required recovery action. It adds ABI documentation
and wires up the sysfs creation and AMC worker updates.
> diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-amc b/Documentation/ABI/testing/sysfs-driver-intel-xe-amc
> new file mode 100644
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-amc
> @@ -0,0 +1,25 @@
[ ... ]
> + An AMC alert is delivered via an SMBUS interrupt and causes the
> + device to be wedged, requiring vendor-specific recovery. This
> + attribute is created when such an alert is handled and is
> + available to all users as read-only.
[Severity: Medium]
The documentation states the attribute is created when an alert is handled,
but looking at xe_amc_init(), it appears to be created unconditionally
during driver probe. Could this confuse userspace tools waiting for the
file to appear as a signal that an alert occurred?
> diff --git a/drivers/gpu/drm/xe/xe_amc.c b/drivers/gpu/drm/xe/xe_amc.c
> index edd50bf8261ec..bb9d260f800ff 100644
> --- a/drivers/gpu/drm/xe/xe_amc.c
> +++ b/drivers/gpu/drm/xe/xe_amc.c
[ ... ]
> @@ -104,6 +109,42 @@ static const struct amc_request amc_get_alert_reason = {
[ ... ]
> +static ssize_t xe_amc_alert_reason_show(struct device *dev,
> + struct device_attribute *attr, char *buf)
> +{
> + struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> + struct xe_amc *amc = xe->i2c->amc;
> +
> + return sysfs_emit(buf, "%s\n", amc_alert[amc->alert_reason]);
> +}
[Severity: Medium]
Is there a potential lockless data race here?
The worker thread in xe_amc_work() updates amc->alert_reason via normal
assignment, while a concurrent userspace read of the sysfs file can access
it here without synchronization or memory barriers (like READ_ONCE and
WRITE_ONCE).
[ ... ]
> @@ -176,6 +224,7 @@ void xe_amc_handle_alert(struct xe_i2c *i2c)
[ ... ]
> void xe_amc_exit(struct xe_i2c *i2c)
> {
> if (i2c->amc) {
> + xe_amc_remove_alert_sysfs(i2c);
> cancel_work_sync(&i2c->amc->work);
> kfree(i2c->amc);
> + i2c->amc = NULL;
> }
> }
[Severity: High]
This isn't a bug introduced by this patch, but does freeing i2c->amc here
while the I2C hardware interrupt is still active leave us vulnerable to a
Use-After-Free?
The devm cleanup framework uninstalls the IRQ after removing the I2C
client. Concurrently, if a hardware alert fires exactly when the struct
is freed, could the interrupt handler read the dangling, non-NULL pointer
right before it is set to NULL?
drivers/gpu/drm/xe/xe_i2c.c:xe_i2c_handle_smbus_alert() {
if (stat & DW_IC_SMBUS_INTR_ALERT && i2c->amc)
xe_amc_handle_alert(i2c);
}
This could end up queuing work on the freed i2c->amc->work.
[Severity: High]
This is also a pre-existing issue, but I noticed another potential
Use-After-Free during teardown in xe_i2c_remove()
(drivers/gpu/drm/xe/xe_i2c.c):
static void xe_i2c_remove(void *data)
{
struct xe_i2c *i2c = data;
unsigned int i;
xe_amc_exit(i2c);
...
}
Since xe_i2c_notifier() schedules i2c->work, if xe_i2c_remove() completes
and devres frees the struct xe_i2c without first calling
cancel_work_sync(&i2c->work), what happens if the uncancelled work executes
afterwards?
xe_i2c_client_work() {
struct xe_i2c *i2c = container_of(work, struct xe_i2c, work);
...
i2c->client[XE_I2C_CLIENT_AMC] = i2c_new_client_device(i2c->adapter, &info);
}
Would this dereference the freed i2c structure?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260910124151.3135801-4-badal.nilawar@intel.com?part=1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID
@ 2026-09-10 12:41 Badal Nilawar
2026-09-10 12:41 ` [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs Badal Nilawar
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Badal Nilawar @ 2026-09-10 12:41 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, rodrigo.vivi, raag.jadav, riana.tauro,
mallesh.koujalagi, aravind.iddamsetty, heikki.krogerus,
himal.prasad.ghimiray
Expose device sysfs entries for AMC SMBUS alert reason and GPU UID
v2:
- Fixed sashiko warning in AMC sysfs patch
- Dropped references of UUID in uid sysfs patch
Badal Nilawar (2):
drm/xe/i2c: Expose AMC Alert reason sysfs
drm/xe/cri: Expose device UID through sysfs
.../ABI/testing/sysfs-driver-intel-xe-amc | 25 ++++++
.../ABI/testing/sysfs-driver-intel-xe-gpu | 10 +++
drivers/gpu/drm/xe/regs/xe_regs.h | 2 +
drivers/gpu/drm/xe/xe_amc.c | 78 ++++++++++++++++---
drivers/gpu/drm/xe/xe_device.c | 4 +
drivers/gpu/drm/xe/xe_device_sysfs.c | 36 +++++++++
drivers/gpu/drm/xe/xe_device_types.h | 5 ++
drivers/gpu/drm/xe/xe_pci.c | 2 +
drivers/gpu/drm/xe/xe_pci_types.h | 1 +
9 files changed, 153 insertions(+), 10 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-xe-amc
create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
--
2.54.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs
2026-09-10 12:41 [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID Badal Nilawar
@ 2026-09-10 12:41 ` Badal Nilawar
2026-09-10 12:41 ` sashiko-bot
2026-09-10 14:41 ` Michal Wajdeczko
2026-09-10 12:41 ` [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs Badal Nilawar
` (4 subsequent siblings)
5 siblings, 2 replies; 11+ messages in thread
From: Badal Nilawar @ 2026-09-10 12:41 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, rodrigo.vivi, raag.jadav, riana.tauro,
mallesh.koujalagi, aravind.iddamsetty, heikki.krogerus,
himal.prasad.ghimiray
AMC raises an SMBUS alert before performing a power removal or
power-cycle operation. The xe driver then places the device into
vendor-specific wedge mode until the recovery is performed.
Expose a read-only xe_amc_alert_reason sysfs attribute to help users
identify the required recovery action.
Assisted-by: Claude:claude-opus-4.8
Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
---
v2:
- Created sysfs during i2c probe time
- Fix Documentation (Rodrigo)
v3:
- Keep limited information in "DOC:" section (Michal)
- Handle AMC alert none and unknown cases, document
in ABI
- Clear i2c->amc on sysfs creation failure (Sashiko)
---
.../ABI/testing/sysfs-driver-intel-xe-amc | 25 ++++++
drivers/gpu/drm/xe/xe_amc.c | 78 ++++++++++++++++---
2 files changed, 93 insertions(+), 10 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-xe-amc
diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-amc b/Documentation/ABI/testing/sysfs-driver-intel-xe-amc
new file mode 100644
index 000000000000..3bae78d1e0d9
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-amc
@@ -0,0 +1,25 @@
+What: /sys/bus/pci/drivers/xe/.../xe_amc_alert_reason
+Date: September 2026
+KernelVersion: 7.4
+Contact: intel-xe@lists.freedesktop.org
+Description:
+ This file exposes the reason for the most recent Add-In
+ Management Controller (AMC) alert on Intel Xe platforms.
+
+ An AMC alert is delivered via an SMBUS interrupt and causes the
+ device to be wedged, requiring vendor-specific recovery. This
+ attribute is created when such an alert is handled and is
+ available to all users as read-only.
+
+ Read returns a single line containing one of the following
+ alert reasons:
+
+ none
+ No AMC alert has been received
+ unknown
+ AMC alert received but with invalid reason code
+ firmware_download
+ thermal_trip
+ oob_request
+ oob_reset
+ catastrophic
diff --git a/drivers/gpu/drm/xe/xe_amc.c b/drivers/gpu/drm/xe/xe_amc.c
index edd50bf8261e..bb9d260f800f 100644
--- a/drivers/gpu/drm/xe/xe_amc.c
+++ b/drivers/gpu/drm/xe/xe_amc.c
@@ -18,6 +18,7 @@
#include "xe_device.h"
#include "xe_i2c.h"
#include "xe_mmio.h"
+#include "xe_printk.h"
/**
* DOC: Add-In Management Controller (AMC)
@@ -43,19 +44,23 @@ enum xe_amc_alert {
AMC_ALERT_OOB_REQUEST,
AMC_ALERT_OOB_RESET,
AMC_ALERT_CATERR,
+ AMC_ALERT_NONE = U8_MAX,
};
static const char * const amc_alert[] = {
- [AMC_ALERT_FW_DOWNLOAD] = "Firmware Download",
- [AMC_ALERT_THERMAL_TRIP] = "Thermal Trip",
- [AMC_ALERT_OOB_REQUEST] = "OOB Request",
- [AMC_ALERT_OOB_RESET] = "OOB Reset",
- [AMC_ALERT_CATERR] = "Catastrophic",
+ [AMC_ALERT_UNKNOWN] = "unknown",
+ [AMC_ALERT_FW_DOWNLOAD] = "firmware_download",
+ [AMC_ALERT_THERMAL_TRIP] = "thermal_trip",
+ [AMC_ALERT_OOB_REQUEST] = "oob_request",
+ [AMC_ALERT_OOB_RESET] = "oob_reset",
+ [AMC_ALERT_CATERR] = "catastrophic",
+ [AMC_ALERT_NONE] = "none",
};
struct xe_amc {
struct xe_i2c *i2c;
struct work_struct work;
+ u8 alert_reason;
};
struct amc_header {
@@ -104,6 +109,42 @@ static const struct amc_request amc_get_alert_reason = {
},
};
+/**
+ * DOC: AMC Alert Reason
+ *
+ * On Intel Xe platforms, AMC sends an alert notification via an SMBUS interrupt
+ * to notify events such as firmware download, thermal trip or a
+ * catastrophic error. See enum xe_amc_alert for the full list of reasons.
+ * Upon an AMC alert the device is wedged and requires vendor-specific recovery.
+ *
+ * See Documentation/ABI/testing/sysfs-driver-intel-xe-amc for the ABI
+ * specification.
+ */
+
+static ssize_t xe_amc_alert_reason_show(struct device *dev,
+ struct device_attribute *attr, char *buf)
+{
+ struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
+ struct xe_amc *amc = xe->i2c->amc;
+
+ return sysfs_emit(buf, "%s\n", amc_alert[amc->alert_reason]);
+}
+static DEVICE_ATTR_RO(xe_amc_alert_reason);
+
+static void xe_amc_remove_alert_sysfs(struct xe_i2c *i2c)
+{
+ struct device *dev = i2c->drm_dev;
+
+ device_remove_file(dev, &dev_attr_xe_amc_alert_reason);
+}
+
+static int xe_amc_create_alert_sysfs(struct xe_i2c *i2c)
+{
+ struct device *dev = i2c->drm_dev;
+
+ return device_create_file(dev, &dev_attr_xe_amc_alert_reason);
+}
+
static void xe_amc_work(struct work_struct *work)
{
const struct amc_request *request = &amc_get_alert_reason;
@@ -158,12 +199,19 @@ static void xe_amc_work(struct work_struct *work)
case AMC_ALERT_THERMAL_TRIP:
case AMC_ALERT_OOB_REQUEST:
case AMC_ALERT_OOB_RESET:
- case AMC_ALERT_CATERR:
- dev_warn(amc->i2c->drm_dev, "AMC Alert: %s\n", amc_alert[alert_reason]);
- xe_device_declare_wedged(i2c_client_to_xe_device(client));
+ case AMC_ALERT_CATERR: {
+ struct xe_device *xe = i2c_client_to_xe_device(client);
+
+ dev_warn(amc->i2c->drm_dev,
+ "AMC Alert: %s (%u)\n", amc_alert[alert_reason], alert_reason);
+ amc->alert_reason = alert_reason;
+ xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_VENDOR);
+ xe_device_declare_wedged(xe);
break;
+ }
default:
- dev_warn(amc->i2c->drm_dev, "unknown AMC alert: %d\n", alert_reason);
+ amc->alert_reason = AMC_ALERT_UNKNOWN;
+ dev_warn(amc->i2c->drm_dev, "AMC Alert: unknown (%u)\n", alert_reason);
break;
}
}
@@ -176,6 +224,7 @@ void xe_amc_handle_alert(struct xe_i2c *i2c)
int xe_amc_init(struct xe_i2c *i2c)
{
struct xe_amc *amc;
+ int ret;
amc = kzalloc_obj(*amc);
if (!amc)
@@ -185,13 +234,22 @@ int xe_amc_init(struct xe_i2c *i2c)
i2c->amc = amc;
amc->i2c = i2c;
- return 0;
+ amc->alert_reason = AMC_ALERT_NONE;
+ ret = xe_amc_create_alert_sysfs(i2c);
+ if (ret) {
+ kfree(i2c->amc);
+ i2c->amc = NULL;
+ }
+
+ return ret;
}
void xe_amc_exit(struct xe_i2c *i2c)
{
if (i2c->amc) {
+ xe_amc_remove_alert_sysfs(i2c);
cancel_work_sync(&i2c->amc->work);
kfree(i2c->amc);
+ i2c->amc = NULL;
}
}
--
2.54.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs
2026-09-10 12:41 [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID Badal Nilawar
2026-09-10 12:41 ` [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs Badal Nilawar
@ 2026-09-10 12:41 ` Badal Nilawar
2026-09-10 12:33 ` sashiko-bot
2026-09-10 14:48 ` Michal Wajdeczko
2026-09-10 13:20 ` ✗ CI.checkpatch: warning for Expose device sysfs for AMC and GPU UUID (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 2 replies; 11+ messages in thread
From: Badal Nilawar @ 2026-09-10 12:41 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, rodrigo.vivi, raag.jadav, riana.tauro,
mallesh.koujalagi, aravind.iddamsetty, heikki.krogerus,
himal.prasad.ghimiray
Expose a read-only sysfs attribute, device_uid, that reports the
GPU's unique hardware identifier.
Assisted-by: Claude:claude-opus-4.8
Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
---
v2:
- add has flag instead of platform check to determin uid support (Anshuman)
- Fix the DOC: section (Michal)
- %s/_uuid/uid (Joonas)
---
.../ABI/testing/sysfs-driver-intel-xe-gpu | 10 ++++++
drivers/gpu/drm/xe/regs/xe_regs.h | 2 ++
drivers/gpu/drm/xe/xe_device.c | 4 +++
drivers/gpu/drm/xe/xe_device_sysfs.c | 36 +++++++++++++++++++
drivers/gpu/drm/xe/xe_device_types.h | 5 +++
drivers/gpu/drm/xe/xe_pci.c | 2 ++
drivers/gpu/drm/xe/xe_pci_types.h | 1 +
7 files changed, 60 insertions(+)
create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu b/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
new file mode 100644
index 000000000000..36182bbb1b54
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
@@ -0,0 +1,10 @@
+What: /sys/bus/pci/drivers/xe/.../device_uid
+Date: September 2026
+KernelVersion: 7.4
+Contact: intel-xe@lists.freedesktop.org
+Description:
+ RO. Unique 64-bit identifier of the GPU device, exposed as
+ hexadecimal value.
+
+ This sysfs file is present only on Intel Xe platforms that
+ provide a device UID. It is available to all users.
diff --git a/drivers/gpu/drm/xe/regs/xe_regs.h b/drivers/gpu/drm/xe/regs/xe_regs.h
index ef4746b7b5d3..437485b5a0af 100644
--- a/drivers/gpu/drm/xe/regs/xe_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_regs.h
@@ -30,6 +30,8 @@
#define XEHP_MTCFG_ADDR XE_REG(0x101800)
#define TILE_COUNT REG_GENMASK(15, 8)
+#define CRI_DEVICE_UID XE_REG(0x102008)
+
#define GGC XE_REG(0x108040)
#define GMS_MASK REG_GENMASK(15, 8)
#define GGMS_MASK REG_GENMASK(7, 6)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 205cb4e7f9e8..99f6d4184b79 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -671,6 +671,7 @@ static void vf_update_device_info(struct xe_device *xe)
xe->info.skip_guc_pc = 1;
xe->info.skip_pcode = 1;
xe->info.has_drm_ras = false;
+ xe->info.has_device_uid = false;
}
static int xe_device_vram_alloc(struct xe_device *xe)
@@ -878,6 +879,9 @@ int xe_device_probe(struct xe_device *xe)
int err;
u8 id;
+ if (xe->info.has_device_uid)
+ xe->device_uid = xe_mmio_read64_2x32(xe_root_tile_mmio(xe), CRI_DEVICE_UID);
+
xe_pat_init_early(xe);
err = xe_sriov_init(xe);
diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
index a73e0e957cb0..657742c22d90 100644
--- a/drivers/gpu/drm/xe/xe_device_sysfs.c
+++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
@@ -8,6 +8,7 @@
#include <linux/pci.h>
#include <linux/sysfs.h>
+#include "regs/xe_regs.h"
#include "xe_device.h"
#include "xe_device_sysfs.h"
#include "xe_mmio.h"
@@ -264,6 +265,35 @@ static const struct attribute_group auto_link_downgrade_attr_group = {
.attrs = auto_link_downgrade_attrs,
};
+/**
+ * DOC: device_uid
+ *
+ * On supported platforms, Xe devices expose a unique 64-bit GPU SOC
+ * identifier through the 'device_uid' sysfs entry.
+ *
+ * See Documentation/ABI/testing/sysfs-driver-intel-xe-gpu for the ABI
+ * specification.
+ */
+
+static ssize_t
+device_uid_show(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ struct pci_dev *pdev = to_pci_dev(dev);
+ struct xe_device *xe = pdev_to_xe_device(pdev);
+
+ return sysfs_emit(buf, "%016llx\n", xe->device_uid);
+}
+static DEVICE_ATTR_RO(device_uid);
+
+static struct attribute *device_uid_attrs[] = {
+ &dev_attr_device_uid.attr,
+ NULL
+};
+
+static const struct attribute_group device_uid_attr_group = {
+ .attrs = device_uid_attrs,
+};
+
int xe_device_sysfs_init(struct xe_device *xe)
{
struct device *dev = xe->drm.dev;
@@ -285,5 +315,11 @@ int xe_device_sysfs_init(struct xe_device *xe)
return ret;
}
+ if (xe->info.has_device_uid) {
+ ret = devm_device_add_group(dev, &device_uid_attr_group);
+ if (ret)
+ return ret;
+ }
+
return 0;
}
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index f88bacf63c83..65366e8173c9 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -174,6 +174,8 @@ struct xe_device {
u8 has_cached_pt:1;
/** @info.has_device_atomics_on_smem: Supports device atomics on SMEM */
u8 has_device_atomics_on_smem:1;
+ /** @info.has_device_uid: Device supports unique 64-bit GPU SOC ID */
+ u8 has_device_uid:1;
/** @info.has_drm_ras: Device supports drm_ras (Reliability, Availability, Serviceability) */
u8 has_drm_ras:1;
/** @info.has_fan_control: Device supports fan control */
@@ -258,6 +260,9 @@ struct xe_device {
bool oob_initialized;
} wa_active;
+ /** @device_uid: unique 64-bit GPU SOC identifier */
+ u64 device_uid;
+
/** @survivability: survivability information for device */
struct xe_survivability survivability;
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index ab4da1d9a9f1..2900f18c7b4c 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -471,6 +471,7 @@ static const struct xe_device_desc cri_desc = {
PLATFORM(CRESCENTISLAND),
.dma_mask_size = 52,
.has_display = false,
+ .has_device_uid = true,
.has_drm_ras = true,
.has_flat_ccs = false,
.has_gsc_nvm = 1,
@@ -793,6 +794,7 @@ static int xe_info_init_early(struct xe_device *xe,
xe->info.is_dgfx = desc->is_dgfx;
xe->info.has_cached_pt = desc->has_cached_pt;
+ xe->info.has_device_uid = desc->has_device_uid;
xe->info.has_drm_ras = desc->has_drm_ras;
xe->info.has_fan_control = desc->has_fan_control;
/* runtime fusing may force flat_ccs to disabled later */
diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
index fed509ff601e..fe327323a0be 100644
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@ -40,6 +40,7 @@ struct xe_device_desc {
u8 has_cached_pt:1;
u8 has_display:1;
+ u8 has_device_uid:1;
u8 has_drm_ras:1;
u8 has_fan_control:1;
u8 has_flat_ccs:1;
--
2.54.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ CI.checkpatch: warning for Expose device sysfs for AMC and GPU UUID (rev2)
2026-09-10 12:41 [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID Badal Nilawar
2026-09-10 12:41 ` [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs Badal Nilawar
2026-09-10 12:41 ` [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs Badal Nilawar
@ 2026-09-10 13:20 ` Patchwork
2026-09-10 13:22 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-09-10 13:20 UTC (permalink / raw)
To: Nilawar, Badal; +Cc: intel-xe
== Series Details ==
Series: Expose device sysfs for AMC and GPU UUID (rev2)
URL : https://patchwork.freedesktop.org/series/173403/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
d875049d2b299159a272bd5151994970cdcd1e31
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit cb04a109d2057d2f6c898d0e29ba59353f43a138
Author: Badal Nilawar <badal.nilawar@intel.com>
Date: Thu Sep 10 18:11:53 2026 +0530
drm/xe/cri: Expose device UID through sysfs
Expose a read-only sysfs attribute, device_uid, that reports the
GPU's unique hardware identifier.
Assisted-by: Claude:claude-opus-4.8
Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
+ /mt/dim checkpatch 926dada6864ecdce77fbf2fc9c23d0c58d2f55d8 drm-intel
f2719082409e drm/xe/i2c: Expose AMC Alert reason sysfs
-:17: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#17:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 155 lines checked
cb04a109d205 drm/xe/cri: Expose device UID through sysfs
-:13: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#13:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 125 lines checked
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for Expose device sysfs for AMC and GPU UUID (rev2)
2026-09-10 12:41 [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID Badal Nilawar
` (2 preceding siblings ...)
2026-09-10 13:20 ` ✗ CI.checkpatch: warning for Expose device sysfs for AMC and GPU UUID (rev2) Patchwork
@ 2026-09-10 13:22 ` Patchwork
2026-09-10 14:29 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-10 20:22 ` ✓ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-09-10 13:22 UTC (permalink / raw)
To: Nilawar, Badal; +Cc: intel-xe
== Series Details ==
Series: Expose device sysfs for AMC and GPU UUID (rev2)
URL : https://patchwork.freedesktop.org/series/173403/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[13:20:49] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:20:54] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:21:14] Starting KUnit Kernel (1/1)...
[13:21:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:21:14] ============= refcount_interrupt (4 subtests) ==============
[13:21:14] [PASSED] test_single_irq_change
[13:21:14] [PASSED] test_nested_irq_change
[13:21:14] [PASSED] test_multiple_irq_change
[13:21:14] [PASSED] test_irq_save
[13:21:14] =============== [PASSED] refcount_interrupt ================
[13:21:14] ================= gpu_buddy (14 subtests) ==================
[13:21:14] [PASSED] gpu_test_buddy_alloc_limit
[13:21:14] [PASSED] gpu_test_buddy_alloc_optimistic
[13:21:14] [PASSED] gpu_test_buddy_alloc_pessimistic
[13:21:14] [PASSED] gpu_test_buddy_alloc_pathological
[13:21:14] [PASSED] gpu_test_buddy_alloc_contiguous
[13:21:14] [PASSED] gpu_test_buddy_alloc_clear
[13:21:14] [PASSED] gpu_test_buddy_alloc_range
[13:21:14] [PASSED] gpu_test_buddy_alloc_range_bias
[13:21:15] [PASSED] gpu_test_buddy_fragmentation_performance
[13:21:16] [PASSED] gpu_test_buddy_dirty_tracker_performance
[13:21:16] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[13:21:16] [PASSED] gpu_test_buddy_offset_aligned_allocation
[13:21:16] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[13:21:16] [PASSED] gpu_test_buddy_addr_to_block
[13:21:16] ==================== [PASSED] gpu_buddy ====================
[13:21:16] ============================================================
[13:21:16] Testing complete. Ran 18 tests: passed: 18
[13:21:16] Elapsed time: 26.483s total, 4.423s configuring, 20.091s building, 1.925s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:21:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:21:18] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:21:51] Starting KUnit Kernel (1/1)...
[13:21:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:21:52] ============= refcount_interrupt (4 subtests) ==============
[13:21:52] [PASSED] test_single_irq_change
[13:21:52] [PASSED] test_nested_irq_change
[13:21:52] [PASSED] test_multiple_irq_change
[13:21:52] [PASSED] test_irq_save
[13:21:52] =============== [PASSED] refcount_interrupt ================
[13:21:52] ================== guc_buf (11 subtests) ===================
[13:21:52] [PASSED] test_smallest
[13:21:52] [PASSED] test_largest
[13:21:52] [PASSED] test_granular
[13:21:52] [PASSED] test_unique
[13:21:52] [PASSED] test_overlap
[13:21:52] [PASSED] test_reusable
[13:21:52] [PASSED] test_too_big
[13:21:52] [PASSED] test_flush
[13:21:52] [PASSED] test_lookup
[13:21:52] [PASSED] test_data
[13:21:52] [PASSED] test_class
[13:21:52] ===================== [PASSED] guc_buf =====================
[13:21:52] =================== guc_dbm (7 subtests) ===================
[13:21:52] [PASSED] test_empty
[13:21:52] [PASSED] test_default
[13:21:52] ======================== test_size ========================
[13:21:52] [PASSED] 4
[13:21:52] [PASSED] 8
[13:21:52] [PASSED] 32
[13:21:52] [PASSED] 256
[13:21:52] ==================== [PASSED] test_size ====================
[13:21:52] ======================= test_reuse ========================
[13:21:52] [PASSED] 4
[13:21:52] [PASSED] 8
[13:21:52] [PASSED] 32
[13:21:52] [PASSED] 256
[13:21:52] =================== [PASSED] test_reuse ====================
[13:21:52] =================== test_range_overlap ====================
[13:21:52] [PASSED] 4
[13:21:52] [PASSED] 8
[13:21:52] [PASSED] 32
[13:21:52] [PASSED] 256
[13:21:52] =============== [PASSED] test_range_overlap ================
[13:21:52] =================== test_range_compact ====================
[13:21:52] [PASSED] 4
[13:21:52] [PASSED] 8
[13:21:52] [PASSED] 32
[13:21:52] [PASSED] 256
[13:21:52] =============== [PASSED] test_range_compact ================
[13:21:52] ==================== test_range_spare =====================
[13:21:52] [PASSED] 4
[13:21:52] [PASSED] 8
[13:21:52] [PASSED] 32
[13:21:52] [PASSED] 256
[13:21:52] ================ [PASSED] test_range_spare =================
[13:21:52] ===================== [PASSED] guc_dbm =====================
[13:21:52] =================== guc_idm (6 subtests) ===================
[13:21:52] [PASSED] bad_init
[13:21:52] [PASSED] no_init
[13:21:52] [PASSED] init_fini
[13:21:52] [PASSED] check_used
[13:21:52] [PASSED] check_quota
[13:21:52] [PASSED] check_all
[13:21:52] ===================== [PASSED] guc_idm =====================
[13:21:52] =============== guc_klv_helpers (9 subtests) ===============
[13:21:52] [PASSED] test_count
[13:21:52] [PASSED] test_encode_u32
[13:21:52] [PASSED] test_encode_u64
[13:21:52] [PASSED] test_encode_string
[13:21:52] [PASSED] test_encode_object_raw
[13:21:52] [PASSED] test_encode_object_klv
[13:21:52] [PASSED] test_encode_object_nested
[13:21:52] [PASSED] test_encode_object_basic
[13:21:52] [PASSED] test_print
[13:21:52] ================= [PASSED] guc_klv_helpers =================
[13:21:52] =================== xe_log (4 subtests) ====================
[13:21:52] [PASSED] demo_cper
[13:21:52] [PASSED] demo_dmesg
[13:21:52] ======================= test_dmesg ========================
[13:21:52] [PASSED] test_fatal
[13:21:52] [PASSED] test_fatal_tile
[13:21:52] [PASSED] test_fatal_gt
[13:21:52] [PASSED] test_fatal_comp
[13:21:52] [PASSED] test_fatal_comp_tile
[13:21:52] [PASSED] test_fatal_comp_gt
[13:21:52] [PASSED] test_fatal_all
[13:21:52] [PASSED] test_recoverable
[13:21:52] [PASSED] test_recoverable_tile
[13:21:52] [PASSED] test_recoverable_gt
[13:21:52] [PASSED] test_recoverable_comp
[13:21:52] [PASSED] test_recoverable_comp_tile
[13:21:52] [PASSED] test_recoverable_comp_gt
[13:21:52] [PASSED] test_recoverable_all
[13:21:52] [PASSED] test_info
[13:21:52] [PASSED] test_info_tile
[13:21:52] [PASSED] test_info_gt
[13:21:52] [PASSED] test_info_err
[13:21:52] [PASSED] test_info_comp
[13:21:52] [PASSED] test_info_comp_tile
[13:21:52] [PASSED] test_info_comp_gt
[13:21:52] [PASSED] test_info_all
[13:21:52] [PASSED] test_hw_fatal
[13:21:52] [PASSED] test_hw_recoverable
[13:21:52] [PASSED] test_hw_corrected
[13:21:52] [PASSED] test_hw_informational
[13:21:52] =================== [PASSED] test_dmesg ====================
[13:21:52] ====================== test_invalid =======================
[13:21:52] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[13:21:52] ================== [SKIPPED] test_invalid ==================
[13:21:52] ===================== [PASSED] xe_log ======================
[13:21:52] ================== no_relay (3 subtests) ===================
[13:21:52] [PASSED] xe_drops_guc2pf_if_not_ready
[13:21:52] [PASSED] xe_drops_guc2vf_if_not_ready
[13:21:52] [PASSED] xe_rejects_send_if_not_ready
[13:21:52] ==================== [PASSED] no_relay =====================
[13:21:52] ================== pf_relay (14 subtests) ==================
[13:21:52] [PASSED] pf_rejects_guc2pf_too_short
[13:21:52] [PASSED] pf_rejects_guc2pf_too_long
[13:21:52] [PASSED] pf_rejects_guc2pf_no_payload
[13:21:52] [PASSED] pf_fails_no_payload
[13:21:52] [PASSED] pf_fails_bad_origin
[13:21:52] [PASSED] pf_fails_bad_type
[13:21:52] [PASSED] pf_txn_reports_error
[13:21:52] [PASSED] pf_txn_sends_pf2guc
[13:21:52] [PASSED] pf_sends_pf2guc
[13:21:52] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:21:52] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:21:52] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:21:52] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:21:52] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:21:52] ==================== [PASSED] pf_relay =====================
[13:21:52] ================== vf_relay (3 subtests) ===================
[13:21:52] [PASSED] vf_rejects_guc2vf_too_short
[13:21:52] [PASSED] vf_rejects_guc2vf_too_long
[13:21:52] [PASSED] vf_rejects_guc2vf_no_payload
[13:21:52] ==================== [PASSED] vf_relay =====================
[13:21:52] ================ pf_gt_config (9 subtests) =================
[13:21:52] [PASSED] fair_contexts_1vf
[13:21:52] [PASSED] fair_doorbells_1vf
[13:21:52] [PASSED] fair_ggtt_1vf
[13:21:52] ====================== fair_vram_1vf ======================
[13:21:52] [PASSED] 3.50 GiB
[13:21:52] [PASSED] 11.5 GiB
[13:21:52] [PASSED] 15.5 GiB
[13:21:52] [PASSED] 31.5 GiB
[13:21:52] [PASSED] 63.5 GiB
[13:21:52] [PASSED] 1.91 GiB
[13:21:52] ================== [PASSED] fair_vram_1vf ==================
[13:21:52] ================ fair_vram_1vf_admin_only =================
[13:21:52] [PASSED] 3.50 GiB
[13:21:52] [PASSED] 11.5 GiB
[13:21:52] [PASSED] 15.5 GiB
[13:21:52] [PASSED] 31.5 GiB
[13:21:52] [PASSED] 63.5 GiB
[13:21:52] [PASSED] 1.91 GiB
[13:21:52] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:21:52] ====================== fair_contexts ======================
[13:21:52] [PASSED] 1 VF
[13:21:52] [PASSED] 2 VFs
[13:21:52] [PASSED] 3 VFs
[13:21:52] [PASSED] 4 VFs
[13:21:52] [PASSED] 5 VFs
[13:21:52] [PASSED] 6 VFs
[13:21:52] [PASSED] 7 VFs
[13:21:52] [PASSED] 8 VFs
[13:21:52] [PASSED] 9 VFs
[13:21:52] [PASSED] 10 VFs
[13:21:52] [PASSED] 11 VFs
[13:21:52] [PASSED] 12 VFs
[13:21:52] [PASSED] 13 VFs
[13:21:52] [PASSED] 14 VFs
[13:21:52] [PASSED] 15 VFs
[13:21:52] [PASSED] 16 VFs
[13:21:52] [PASSED] 17 VFs
[13:21:52] [PASSED] 18 VFs
[13:21:52] [PASSED] 19 VFs
[13:21:52] [PASSED] 20 VFs
[13:21:52] [PASSED] 21 VFs
[13:21:52] [PASSED] 22 VFs
[13:21:52] [PASSED] 23 VFs
[13:21:52] [PASSED] 24 VFs
[13:21:52] [PASSED] 25 VFs
[13:21:52] [PASSED] 26 VFs
[13:21:52] [PASSED] 27 VFs
[13:21:52] [PASSED] 28 VFs
[13:21:52] [PASSED] 29 VFs
[13:21:52] [PASSED] 30 VFs
[13:21:52] [PASSED] 31 VFs
[13:21:52] [PASSED] 32 VFs
[13:21:52] [PASSED] 33 VFs
[13:21:52] [PASSED] 34 VFs
[13:21:52] [PASSED] 35 VFs
[13:21:52] [PASSED] 36 VFs
[13:21:52] [PASSED] 37 VFs
[13:21:52] [PASSED] 38 VFs
[13:21:52] [PASSED] 39 VFs
[13:21:52] [PASSED] 40 VFs
[13:21:52] [PASSED] 41 VFs
[13:21:52] [PASSED] 42 VFs
[13:21:52] [PASSED] 43 VFs
[13:21:52] [PASSED] 44 VFs
[13:21:52] [PASSED] 45 VFs
[13:21:52] [PASSED] 46 VFs
[13:21:52] [PASSED] 47 VFs
[13:21:52] [PASSED] 48 VFs
[13:21:52] [PASSED] 49 VFs
[13:21:52] [PASSED] 50 VFs
[13:21:52] [PASSED] 51 VFs
[13:21:52] [PASSED] 52 VFs
[13:21:52] [PASSED] 53 VFs
[13:21:52] [PASSED] 54 VFs
[13:21:52] [PASSED] 55 VFs
[13:21:52] [PASSED] 56 VFs
[13:21:52] [PASSED] 57 VFs
[13:21:52] [PASSED] 58 VFs
[13:21:52] [PASSED] 59 VFs
[13:21:52] [PASSED] 60 VFs
[13:21:52] [PASSED] 61 VFs
[13:21:52] [PASSED] 62 VFs
[13:21:52] [PASSED] 63 VFs
[13:21:52] ================== [PASSED] fair_contexts ==================
[13:21:52] ===================== fair_doorbells ======================
[13:21:52] [PASSED] 1 VF
[13:21:52] [PASSED] 2 VFs
[13:21:52] [PASSED] 3 VFs
[13:21:52] [PASSED] 4 VFs
[13:21:52] [PASSED] 5 VFs
[13:21:52] [PASSED] 6 VFs
[13:21:52] [PASSED] 7 VFs
[13:21:52] [PASSED] 8 VFs
[13:21:52] [PASSED] 9 VFs
[13:21:52] [PASSED] 10 VFs
[13:21:52] [PASSED] 11 VFs
[13:21:52] [PASSED] 12 VFs
[13:21:52] [PASSED] 13 VFs
[13:21:52] [PASSED] 14 VFs
[13:21:52] [PASSED] 15 VFs
[13:21:52] [PASSED] 16 VFs
[13:21:52] [PASSED] 17 VFs
[13:21:52] [PASSED] 18 VFs
[13:21:52] [PASSED] 19 VFs
[13:21:52] [PASSED] 20 VFs
[13:21:52] [PASSED] 21 VFs
[13:21:52] [PASSED] 22 VFs
[13:21:52] [PASSED] 23 VFs
[13:21:52] [PASSED] 24 VFs
[13:21:52] [PASSED] 25 VFs
[13:21:52] [PASSED] 26 VFs
[13:21:52] [PASSED] 27 VFs
[13:21:52] [PASSED] 28 VFs
[13:21:52] [PASSED] 29 VFs
[13:21:52] [PASSED] 30 VFs
[13:21:52] [PASSED] 31 VFs
[13:21:52] [PASSED] 32 VFs
[13:21:52] [PASSED] 33 VFs
[13:21:52] [PASSED] 34 VFs
[13:21:52] [PASSED] 35 VFs
[13:21:52] [PASSED] 36 VFs
[13:21:52] [PASSED] 37 VFs
[13:21:52] [PASSED] 38 VFs
[13:21:52] [PASSED] 39 VFs
[13:21:52] [PASSED] 40 VFs
[13:21:52] [PASSED] 41 VFs
[13:21:52] [PASSED] 42 VFs
[13:21:52] [PASSED] 43 VFs
[13:21:52] [PASSED] 44 VFs
[13:21:52] [PASSED] 45 VFs
[13:21:52] [PASSED] 46 VFs
[13:21:52] [PASSED] 47 VFs
[13:21:52] [PASSED] 48 VFs
[13:21:52] [PASSED] 49 VFs
[13:21:52] [PASSED] 50 VFs
[13:21:52] [PASSED] 51 VFs
[13:21:52] [PASSED] 52 VFs
[13:21:52] [PASSED] 53 VFs
[13:21:52] [PASSED] 54 VFs
[13:21:52] [PASSED] 55 VFs
[13:21:52] [PASSED] 56 VFs
[13:21:52] [PASSED] 57 VFs
[13:21:52] [PASSED] 58 VFs
[13:21:52] [PASSED] 59 VFs
[13:21:52] [PASSED] 60 VFs
[13:21:52] [PASSED] 61 VFs
[13:21:52] [PASSED] 62 VFs
[13:21:52] [PASSED] 63 VFs
[13:21:52] ================= [PASSED] fair_doorbells ==================
[13:21:52] ======================== fair_ggtt ========================
[13:21:52] [PASSED] 1 VF
[13:21:52] [PASSED] 2 VFs
[13:21:52] [PASSED] 3 VFs
[13:21:52] [PASSED] 4 VFs
[13:21:52] [PASSED] 5 VFs
[13:21:52] [PASSED] 6 VFs
[13:21:52] [PASSED] 7 VFs
[13:21:52] [PASSED] 8 VFs
[13:21:52] [PASSED] 9 VFs
[13:21:52] [PASSED] 10 VFs
[13:21:52] [PASSED] 11 VFs
[13:21:52] [PASSED] 12 VFs
[13:21:52] [PASSED] 13 VFs
[13:21:52] [PASSED] 14 VFs
[13:21:52] [PASSED] 15 VFs
[13:21:52] [PASSED] 16 VFs
[13:21:52] [PASSED] 17 VFs
[13:21:52] [PASSED] 18 VFs
[13:21:52] [PASSED] 19 VFs
[13:21:52] [PASSED] 20 VFs
[13:21:52] [PASSED] 21 VFs
[13:21:52] [PASSED] 22 VFs
[13:21:52] [PASSED] 23 VFs
[13:21:52] [PASSED] 24 VFs
[13:21:52] [PASSED] 25 VFs
[13:21:52] [PASSED] 26 VFs
[13:21:52] [PASSED] 27 VFs
[13:21:52] [PASSED] 28 VFs
[13:21:52] [PASSED] 29 VFs
[13:21:52] [PASSED] 30 VFs
[13:21:52] [PASSED] 31 VFs
[13:21:52] [PASSED] 32 VFs
[13:21:52] [PASSED] 33 VFs
[13:21:52] [PASSED] 34 VFs
[13:21:52] [PASSED] 35 VFs
[13:21:52] [PASSED] 36 VFs
[13:21:52] [PASSED] 37 VFs
[13:21:52] [PASSED] 38 VFs
[13:21:52] [PASSED] 39 VFs
[13:21:52] [PASSED] 40 VFs
[13:21:52] [PASSED] 41 VFs
[13:21:52] [PASSED] 42 VFs
[13:21:52] [PASSED] 43 VFs
[13:21:52] [PASSED] 44 VFs
[13:21:52] [PASSED] 45 VFs
[13:21:52] [PASSED] 46 VFs
[13:21:52] [PASSED] 47 VFs
[13:21:52] [PASSED] 48 VFs
[13:21:52] [PASSED] 49 VFs
[13:21:52] [PASSED] 50 VFs
[13:21:52] [PASSED] 51 VFs
[13:21:52] [PASSED] 52 VFs
[13:21:52] [PASSED] 53 VFs
[13:21:52] [PASSED] 54 VFs
[13:21:52] [PASSED] 55 VFs
[13:21:52] [PASSED] 56 VFs
[13:21:52] [PASSED] 57 VFs
[13:21:52] [PASSED] 58 VFs
[13:21:52] [PASSED] 59 VFs
[13:21:52] [PASSED] 60 VFs
[13:21:52] [PASSED] 61 VFs
[13:21:52] [PASSED] 62 VFs
[13:21:52] [PASSED] 63 VFs
[13:21:52] ==================== [PASSED] fair_ggtt ====================
[13:21:52] ======================== fair_vram ========================
[13:21:52] [PASSED] 1 VF
[13:21:52] [PASSED] 2 VFs
[13:21:52] [PASSED] 3 VFs
[13:21:52] [PASSED] 4 VFs
[13:21:52] [PASSED] 5 VFs
[13:21:52] [PASSED] 6 VFs
[13:21:52] [PASSED] 7 VFs
[13:21:52] [PASSED] 8 VFs
[13:21:52] [PASSED] 9 VFs
[13:21:52] [PASSED] 10 VFs
[13:21:52] [PASSED] 11 VFs
[13:21:52] [PASSED] 12 VFs
[13:21:52] [PASSED] 13 VFs
[13:21:52] [PASSED] 14 VFs
[13:21:52] [PASSED] 15 VFs
[13:21:52] [PASSED] 16 VFs
[13:21:52] [PASSED] 17 VFs
[13:21:52] [PASSED] 18 VFs
[13:21:52] [PASSED] 19 VFs
[13:21:52] [PASSED] 20 VFs
[13:21:52] [PASSED] 21 VFs
[13:21:52] [PASSED] 22 VFs
[13:21:52] [PASSED] 23 VFs
[13:21:52] [PASSED] 24 VFs
[13:21:52] [PASSED] 25 VFs
[13:21:52] [PASSED] 26 VFs
[13:21:52] [PASSED] 27 VFs
[13:21:52] [PASSED] 28 VFs
[13:21:52] [PASSED] 29 VFs
[13:21:52] [PASSED] 30 VFs
[13:21:52] [PASSED] 31 VFs
[13:21:52] [PASSED] 32 VFs
[13:21:52] [PASSED] 33 VFs
[13:21:52] [PASSED] 34 VFs
[13:21:52] [PASSED] 35 VFs
[13:21:52] [PASSED] 36 VFs
[13:21:52] [PASSED] 37 VFs
[13:21:52] [PASSED] 38 VFs
[13:21:52] [PASSED] 39 VFs
[13:21:52] [PASSED] 40 VFs
[13:21:52] [PASSED] 41 VFs
[13:21:52] [PASSED] 42 VFs
[13:21:52] [PASSED] 43 VFs
[13:21:52] [PASSED] 44 VFs
[13:21:52] [PASSED] 45 VFs
[13:21:52] [PASSED] 46 VFs
[13:21:52] [PASSED] 47 VFs
[13:21:52] [PASSED] 48 VFs
[13:21:52] [PASSED] 49 VFs
[13:21:52] [PASSED] 50 VFs
[13:21:52] [PASSED] 51 VFs
[13:21:52] [PASSED] 52 VFs
[13:21:52] [PASSED] 53 VFs
[13:21:52] [PASSED] 54 VFs
[13:21:52] [PASSED] 55 VFs
[13:21:52] [PASSED] 56 VFs
[13:21:52] [PASSED] 57 VFs
[13:21:52] [PASSED] 58 VFs
[13:21:52] [PASSED] 59 VFs
[13:21:52] [PASSED] 60 VFs
[13:21:52] [PASSED] 61 VFs
[13:21:52] [PASSED] 62 VFs
[13:21:52] [PASSED] 63 VFs
[13:21:52] ==================== [PASSED] fair_vram ====================
[13:21:52] ================== [PASSED] pf_gt_config ===================
[13:21:52] ===================== lmtt (1 subtest) =====================
[13:21:52] ======================== test_ops =========================
[13:21:52] [PASSED] 2-level
[13:21:52] [PASSED] multi-level
[13:21:52] ==================== [PASSED] test_ops =====================
[13:21:52] ====================== [PASSED] lmtt =======================
[13:21:52] ================= sriov_packet (1 subtest) =================
[13:21:52] [PASSED] test_descriptor_init
[13:21:52] ================== [PASSED] sriov_packet ===================
[13:21:52] ================= pf_service (11 subtests) =================
[13:21:52] [PASSED] pf_negotiate_any
[13:21:52] [PASSED] pf_negotiate_base_match
[13:21:52] [PASSED] pf_negotiate_base_newer
[13:21:52] [PASSED] pf_negotiate_base_next
[13:21:52] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:21:52] [PASSED] pf_negotiate_base_prev
[13:21:52] [PASSED] pf_negotiate_latest_match
[13:21:52] [PASSED] pf_negotiate_latest_newer
[13:21:52] [PASSED] pf_negotiate_latest_next
[13:21:52] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:21:52] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:21:52] =================== [PASSED] pf_service ====================
[13:21:52] ================= xe_guc_g2g (2 subtests) ==================
[13:21:52] ============== xe_live_guc_g2g_kunit_default ==============
[13:21:52] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:21:52] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:21:52] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:21:52] =================== [SKIPPED] xe_guc_g2g ===================
[13:21:52] =================== xe_mocs (2 subtests) ===================
[13:21:52] ================ xe_live_mocs_kernel_kunit ================
[13:21:52] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:21:52] ================ xe_live_mocs_reset_kunit =================
[13:21:52] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:21:52] ==================== [SKIPPED] xe_mocs =====================
[13:21:52] ================= xe_migrate (2 subtests) ==================
[13:21:52] ================= xe_migrate_sanity_kunit =================
[13:21:52] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:21:52] ================== xe_validate_ccs_kunit ==================
[13:21:52] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:21:52] =================== [SKIPPED] xe_migrate ===================
[13:21:52] ================== xe_dma_buf (1 subtest) ==================
[13:21:52] ==================== xe_dma_buf_kunit =====================
[13:21:52] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:21:52] =================== [SKIPPED] xe_dma_buf ===================
[13:21:52] ================= xe_bo_shrink (1 subtest) =================
[13:21:52] =================== xe_bo_shrink_kunit ====================
[13:21:52] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:21:52] ================== [SKIPPED] xe_bo_shrink ==================
[13:21:52] ==================== xe_bo (2 subtests) ====================
[13:21:52] ================== xe_ccs_migrate_kunit ===================
[13:21:52] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:21:52] ==================== xe_bo_evict_kunit ====================
[13:21:52] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:21:52] ===================== [SKIPPED] xe_bo ======================
[13:21:52] =================== xe_any (9 subtests) ====================
[13:21:52] [PASSED] test_to_xe
[13:21:52] [PASSED] test_to_dev
[13:21:52] [PASSED] test_to_pdev
[13:21:52] [PASSED] test_to_drm
[13:21:52] [PASSED] test_if_pdev
[13:21:52] [PASSED] test_if_xe
[13:21:52] [PASSED] test_if_tile
[13:21:52] [PASSED] test_if_gt
[13:21:52] [PASSED] test_to_id
[13:21:52] ===================== [PASSED] xe_any ======================
[13:21:52] ==================== args (13 subtests) ====================
[13:21:52] [PASSED] count_args_test
[13:21:52] [PASSED] call_args_example
[13:21:52] [PASSED] call_args_test
[13:21:52] [PASSED] drop_first_arg_example
[13:21:52] [PASSED] drop_first_arg_test
[13:21:52] [PASSED] first_arg_example
[13:21:52] [PASSED] first_arg_test
[13:21:52] [PASSED] last_arg_example
[13:21:52] [PASSED] last_arg_test
[13:21:52] [PASSED] pick_arg_example
[13:21:52] [PASSED] if_args_example
[13:21:52] [PASSED] if_args_test
[13:21:52] [PASSED] sep_comma_example
[13:21:52] ====================== [PASSED] args =======================
[13:21:52] =================== xe_pci (3 subtests) ====================
[13:21:52] ==================== check_graphics_ip ====================
[13:21:52] [PASSED] 12.00 Xe_LP
[13:21:52] [PASSED] 12.10 Xe_LP+
[13:21:52] [PASSED] 12.55 Xe_HPG
[13:21:52] [PASSED] 12.60 Xe_HPC
[13:21:52] [PASSED] 12.70 Xe_LPG
[13:21:52] [PASSED] 12.71 Xe_LPG
[13:21:52] [PASSED] 12.74 Xe_LPG+
[13:21:52] [PASSED] 20.01 Xe2_HPG
[13:21:52] [PASSED] 20.02 Xe2_HPG
[13:21:52] [PASSED] 20.04 Xe2_LPG
[13:21:52] [PASSED] 30.00 Xe3_LPG
[13:21:52] [PASSED] 30.01 Xe3_LPG
[13:21:52] [PASSED] 30.03 Xe3_LPG
[13:21:52] [PASSED] 30.04 Xe3_LPG
[13:21:52] [PASSED] 30.05 Xe3_LPG
[13:21:52] [PASSED] 35.10 Xe3p_LPG
[13:21:52] [PASSED] 35.11 Xe3p_XPC
[13:21:52] ================ [PASSED] check_graphics_ip ================
[13:21:52] ===================== check_media_ip ======================
[13:21:52] [PASSED] 12.00 Xe_M
[13:21:52] [PASSED] 12.55 Xe_HPM
[13:21:52] [PASSED] 13.00 Xe_LPM+
[13:21:52] [PASSED] 13.01 Xe2_HPM
[13:21:52] [PASSED] 20.00 Xe2_LPM
[13:21:52] [PASSED] 30.00 Xe3_LPM
[13:21:52] [PASSED] 30.02 Xe3_LPM
[13:21:52] [PASSED] 35.00 Xe3p_LPM
[13:21:52] [PASSED] 35.03 Xe3p_HPM
[13:21:52] ================= [PASSED] check_media_ip ==================
[13:21:52] =================== check_platform_desc ===================
[13:21:52] [PASSED] 0x9A60 (TIGERLAKE)
[13:21:52] [PASSED] 0x9A68 (TIGERLAKE)
[13:21:52] [PASSED] 0x9A70 (TIGERLAKE)
[13:21:52] [PASSED] 0x9A40 (TIGERLAKE)
[13:21:52] [PASSED] 0x9A49 (TIGERLAKE)
[13:21:52] [PASSED] 0x9A59 (TIGERLAKE)
[13:21:52] [PASSED] 0x9A78 (TIGERLAKE)
[13:21:52] [PASSED] 0x9AC0 (TIGERLAKE)
[13:21:52] [PASSED] 0x9AC9 (TIGERLAKE)
[13:21:52] [PASSED] 0x9AD9 (TIGERLAKE)
[13:21:52] [PASSED] 0x9AF8 (TIGERLAKE)
[13:21:52] [PASSED] 0x4C80 (ROCKETLAKE)
[13:21:52] [PASSED] 0x4C8A (ROCKETLAKE)
[13:21:52] [PASSED] 0x4C8B (ROCKETLAKE)
[13:21:52] [PASSED] 0x4C8C (ROCKETLAKE)
[13:21:52] [PASSED] 0x4C90 (ROCKETLAKE)
[13:21:52] [PASSED] 0x4C9A (ROCKETLAKE)
[13:21:52] [PASSED] 0x4680 (ALDERLAKE_S)
[13:21:52] [PASSED] 0x4682 (ALDERLAKE_S)
[13:21:52] [PASSED] 0x4688 (ALDERLAKE_S)
[13:21:52] [PASSED] 0x468A (ALDERLAKE_S)
[13:21:52] [PASSED] 0x468B (ALDERLAKE_S)
[13:21:52] [PASSED] 0x4690 (ALDERLAKE_S)
[13:21:52] [PASSED] 0x4692 (ALDERLAKE_S)
[13:21:52] [PASSED] 0x4693 (ALDERLAKE_S)
[13:21:52] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46AA (ALDERLAKE_P)
[13:21:52] [PASSED] 0x462A (ALDERLAKE_P)
[13:21:52] [PASSED] 0x4626 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x4628 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:21:52] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:21:52] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:21:52] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:21:52] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:21:52] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:21:52] [PASSED] 0xA721 (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA720 (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:21:52] [PASSED] 0xA780 (ALDERLAKE_S)
[13:21:52] [PASSED] 0xA781 (ALDERLAKE_S)
[13:21:52] [PASSED] 0xA782 (ALDERLAKE_S)
[13:21:52] [PASSED] 0xA783 (ALDERLAKE_S)
[13:21:52] [PASSED] 0xA788 (ALDERLAKE_S)
[13:21:52] [PASSED] 0xA789 (ALDERLAKE_S)
[13:21:52] [PASSED] 0xA78A (ALDERLAKE_S)
[13:21:52] [PASSED] 0xA78B (ALDERLAKE_S)
[13:21:52] [PASSED] 0x4905 (DG1)
[13:21:52] [PASSED] 0x4906 (DG1)
[13:21:52] [PASSED] 0x4907 (DG1)
[13:21:52] [PASSED] 0x4908 (DG1)
[13:21:52] [PASSED] 0x4909 (DG1)
[13:21:52] [PASSED] 0x56C0 (DG2)
[13:21:52] [PASSED] 0x56C2 (DG2)
[13:21:52] [PASSED] 0x56C1 (DG2)
[13:21:52] [PASSED] 0x7D51 (METEORLAKE)
[13:21:52] [PASSED] 0x7DD1 (METEORLAKE)
[13:21:52] [PASSED] 0x7D41 (METEORLAKE)
[13:21:52] [PASSED] 0x7D67 (METEORLAKE)
[13:21:52] [PASSED] 0xB640 (METEORLAKE)
[13:21:52] [PASSED] 0x56A0 (DG2)
[13:21:52] [PASSED] 0x56A1 (DG2)
[13:21:52] [PASSED] 0x56A2 (DG2)
[13:21:52] [PASSED] 0x56BE (DG2)
[13:21:52] [PASSED] 0x56BF (DG2)
[13:21:52] [PASSED] 0x5690 (DG2)
[13:21:52] [PASSED] 0x5691 (DG2)
[13:21:52] [PASSED] 0x5692 (DG2)
[13:21:52] [PASSED] 0x56A5 (DG2)
[13:21:52] [PASSED] 0x56A6 (DG2)
[13:21:52] [PASSED] 0x56B0 (DG2)
[13:21:52] [PASSED] 0x56B1 (DG2)
[13:21:52] [PASSED] 0x56BA (DG2)
[13:21:52] [PASSED] 0x56BB (DG2)
[13:21:52] [PASSED] 0x56BC (DG2)
[13:21:52] [PASSED] 0x56BD (DG2)
[13:21:52] [PASSED] 0x5693 (DG2)
[13:21:52] [PASSED] 0x5694 (DG2)
[13:21:52] [PASSED] 0x5695 (DG2)
[13:21:52] [PASSED] 0x56A3 (DG2)
[13:21:52] [PASSED] 0x56A4 (DG2)
[13:21:52] [PASSED] 0x56B2 (DG2)
[13:21:52] [PASSED] 0x56B3 (DG2)
[13:21:52] [PASSED] 0x5696 (DG2)
[13:21:52] [PASSED] 0x5697 (DG2)
[13:21:52] [PASSED] 0xB69 (PVC)
[13:21:52] [PASSED] 0xB6E (PVC)
[13:21:52] [PASSED] 0xBD4 (PVC)
[13:21:52] [PASSED] 0xBD5 (PVC)
[13:21:52] [PASSED] 0xBD6 (PVC)
[13:21:52] [PASSED] 0xBD7 (PVC)
[13:21:52] [PASSED] 0xBD8 (PVC)
[13:21:52] [PASSED] 0xBD9 (PVC)
[13:21:52] [PASSED] 0xBDA (PVC)
[13:21:52] [PASSED] 0xBDB (PVC)
[13:21:52] [PASSED] 0xBE0 (PVC)
[13:21:52] [PASSED] 0xBE1 (PVC)
[13:21:52] [PASSED] 0xBE5 (PVC)
[13:21:52] [PASSED] 0x7D40 (METEORLAKE)
[13:21:52] [PASSED] 0x7D45 (METEORLAKE)
[13:21:52] [PASSED] 0x7D55 (METEORLAKE)
[13:21:52] [PASSED] 0x7D60 (METEORLAKE)
[13:21:52] [PASSED] 0x7DD5 (METEORLAKE)
[13:21:52] [PASSED] 0x6420 (LUNARLAKE)
[13:21:52] [PASSED] 0x64A0 (LUNARLAKE)
[13:21:52] [PASSED] 0x64B0 (LUNARLAKE)
[13:21:52] [PASSED] 0xE202 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE209 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE20B (BATTLEMAGE)
[13:21:52] [PASSED] 0xE20C (BATTLEMAGE)
[13:21:52] [PASSED] 0xE20D (BATTLEMAGE)
[13:21:52] [PASSED] 0xE210 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE211 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE212 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE216 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE220 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE221 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE222 (BATTLEMAGE)
[13:21:52] [PASSED] 0xE223 (BATTLEMAGE)
[13:21:52] [PASSED] 0xB080 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB081 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB082 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB083 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB084 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB085 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB086 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB087 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB08F (PANTHERLAKE)
[13:21:52] [PASSED] 0xB090 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:21:52] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:21:52] [PASSED] 0xFD80 (PANTHERLAKE)
[13:21:52] [PASSED] 0xFD81 (PANTHERLAKE)
[13:21:52] [PASSED] 0xD740 (NOVALAKE_S)
[13:21:52] [PASSED] 0xD741 (NOVALAKE_S)
[13:21:52] [PASSED] 0xD742 (NOVALAKE_S)
[13:21:52] [PASSED] 0xD743 (NOVALAKE_S)
[13:21:52] [PASSED] 0xD745 (NOVALAKE_S)
[13:21:52] [PASSED] 0xD74A (NOVALAKE_S)
[13:21:52] [PASSED] 0xD74B (NOVALAKE_S)
[13:21:52] [PASSED] 0x674C (CRESCENTISLAND)
[13:21:52] [PASSED] 0x674D (CRESCENTISLAND)
[13:21:52] [PASSED] 0x674E (CRESCENTISLAND)
[13:21:52] [PASSED] 0x674F (CRESCENTISLAND)
[13:21:52] [PASSED] 0x6750 (CRESCENTISLAND)
[13:21:52] [PASSED] 0xD750 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD751 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD752 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD753 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD754 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD755 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD756 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD757 (NOVALAKE_P)
[13:21:52] [PASSED] 0xD75F (NOVALAKE_P)
[13:21:52] =============== [PASSED] check_platform_desc ===============
[13:21:52] ===================== [PASSED] xe_pci ======================
[13:21:52] ============= xe_rtp_tables_test (5 subtests) ==============
[13:21:52] ================== xe_rtp_table_gt_test ===================
[13:21:52] [PASSED] gt_was/14011060649
[13:21:52] [PASSED] gt_was/14011059788
[13:21:52] [PASSED] gt_was/14015795083
[13:21:52] [PASSED] gt_was/16021867713
[13:21:52] [PASSED] gt_was/14019449301
[13:21:52] [PASSED] gt_was/16028005424
[13:21:52] [PASSED] gt_was/14026578760
[13:21:52] [PASSED] gt_was/1409420604
[13:21:52] [PASSED] gt_was/1408615072
[13:21:52] [PASSED] gt_was/22010523718
[13:21:52] [PASSED] gt_was/14011006942
[13:21:52] [PASSED] gt_was/14014830051
[13:21:52] [PASSED] gt_was/18018781329
[13:21:52] [PASSED] gt_was/1509235366
[13:21:52] [PASSED] gt_was/18018781329
[13:21:52] [PASSED] gt_was/16016694945
[13:21:52] [PASSED] gt_was/14018575942
[13:21:52] [PASSED] gt_was/22016670082
[13:21:52] [PASSED] gt_was/22016670082
[13:21:52] [PASSED] gt_was/14017421178
[13:21:52] [PASSED] gt_was/16025250150
[13:21:52] [PASSED] gt_was/14021871409
[13:21:52] [PASSED] gt_was/16021865536
[13:21:52] [PASSED] gt_was/14021486841
[13:21:52] [PASSED] gt_was/14025160223
[13:21:52] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:21:52] [PASSED] gt_was/14025635424
[13:21:52] [PASSED] gt_was/16028005424
[13:21:52] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:21:52] ================== xe_rtp_table_gt_test ===================
[13:21:52] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:21:52] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:21:52] [PASSED] gt_tunings/Tuning: L3 cache
[13:21:52] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:21:52] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:21:52] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:21:52] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:21:52] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:21:52] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:21:52] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:21:52] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:21:52] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:21:52] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:21:52] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:21:52] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:21:52] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:21:52] ================== xe_rtp_table_oob_test ==================
[13:21:52] [PASSED] oob_was/1607983814
[13:21:52] [PASSED] oob_was/16010904313
[13:21:52] [PASSED] oob_was/18022495364
[13:21:52] [PASSED] oob_was/22012773006
[13:21:52] [PASSED] oob_was/14014475959
[13:21:52] [PASSED] oob_was/22011391025
[13:21:52] [PASSED] oob_was/22012727170
[13:21:52] [PASSED] oob_was/22012727685
[13:21:52] [PASSED] oob_was/22016596838
[13:21:52] [PASSED] oob_was/18020744125
[13:21:52] [PASSED] oob_was/1409600907
[13:21:52] [PASSED] oob_was/22014953428
[13:21:52] [PASSED] oob_was/16017236439
[13:21:52] [PASSED] oob_was/14019821291
[13:21:52] [PASSED] oob_was/14015076503
[13:21:52] [PASSED] oob_was/14018913170
[13:21:52] [PASSED] oob_was/14018094691
[13:21:52] [PASSED] oob_was/18024947630
[13:21:52] [PASSED] oob_was/16022287689
[13:21:52] [PASSED] oob_was/13011645652
[13:21:52] [PASSED] oob_was/14022293748
[13:21:52] [PASSED] oob_was/22019794406
[13:21:52] [PASSED] oob_was/22019338487
[13:21:52] [PASSED] oob_was/16023588340
[13:21:52] [PASSED] oob_was/14019789679
[13:21:52] [PASSED] oob_was/14022866841
[13:21:52] [PASSED] oob_was/16021333562
[13:21:52] [PASSED] oob_was/14016712196
[13:21:52] [PASSED] oob_was/14015568240
[13:21:52] [PASSED] oob_was/18013179988
[13:21:52] [PASSED] oob_was/1508761755
[13:21:52] [PASSED] oob_was/16023105232
[13:21:52] [PASSED] oob_was/16026508708
[13:21:52] [PASSED] oob_was/14020001231
[13:21:52] [PASSED] oob_was/16023683509
[13:21:52] [PASSED] oob_was/14025515070
[13:21:52] [PASSED] oob_was/15015404425_disable
[13:21:52] [PASSED] oob_was/16026007364
[13:21:52] [PASSED] oob_was/14020316580
[13:21:52] [PASSED] oob_was/14025883347
[13:21:52] [PASSED] oob_was/16029380221
[13:21:52] [PASSED] oob_was/22022079272
[13:21:52] [PASSED] oob_was/16029897822
[13:21:52] [PASSED] oob_was/14027054324
[13:21:52] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:21:52] ================ xe_rtp_table_dev_oob_test ================
[13:21:52] [PASSED] device_oob_was/22010954014
[13:21:52] [PASSED] device_oob_was/15015404425
[13:21:52] [PASSED] device_oob_was/22019338487_display
[13:21:52] [PASSED] device_oob_was/14022085890
[13:21:52] [PASSED] device_oob_was/14026539277
[13:21:52] [PASSED] device_oob_was/14026633728
[13:21:52] [PASSED] device_oob_was/14026746987
[13:21:52] [PASSED] device_oob_was/14026779378
[13:21:52] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:21:52] ========== xe_rtp_table_missing_upper_bound_test ==========
[13:21:52] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[13:21:52] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[13:21:52] [PASSED] register_whitelist/1806527549
[13:21:52] [PASSED] register_whitelist/allow_read_ctx_timestamp
[13:21:52] [PASSED] register_whitelist/allow_read_queue_timestamp
[13:21:52] [PASSED] register_whitelist/16014440446
[13:21:52] [PASSED] register_whitelist/16017236439
[13:21:52] [PASSED] register_whitelist/16020183090
[13:21:52] [PASSED] register_whitelist/14024997852
[13:21:52] [PASSED] register_whitelist/14024997852
[13:21:52] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[13:21:52] =============== [PASSED] xe_rtp_tables_test ================
[13:21:52] =================== xe_rtp (3 subtests) ====================
[13:21:52] =================== xe_rtp_rules_tests ====================
[13:21:52] [PASSED] no
[13:21:52] [PASSED] yes
[13:21:52] [PASSED] no-and-no
[13:21:52] [PASSED] no-and-yes
[13:21:52] [PASSED] yes-and-no
[13:21:52] [PASSED] yes-and-yes
[13:21:52] [PASSED] no-or-no
[13:21:52] [PASSED] no-or-yes
[13:21:52] [PASSED] yes-or-no
[13:21:52] [PASSED] yes-or-yes
[13:21:52] [PASSED] no-yes-or-yes-no
[13:21:52] [PASSED] no-yes-or-yes-yes
[13:21:52] [PASSED] yes-yes-or-no-yes
[13:21:52] [PASSED] yes-yes-or-yes-yes
[13:21:52] [PASSED] no-no-or-yes-or-no
[13:21:52] [PASSED] or
[13:21:52] [PASSED] or-yes
[13:21:52] [PASSED] or-no
[13:21:52] [PASSED] yes-or
[13:21:52] [PASSED] no-or
[13:21:52] [PASSED] no-or-or-yes
[13:21:52] [PASSED] yes-or-or-no
[13:21:52] [PASSED] no-or-or-no
[13:21:52] [PASSED] missing-context-engine-class
[13:21:52] [PASSED] missing-context-engine-class-or-yes
[13:21:52] [PASSED] missing-context-engine-class-or-or-yes
[13:21:52] =============== [PASSED] xe_rtp_rules_tests ================
[13:21:52] =============== xe_rtp_process_to_sr_tests ================
[13:21:52] [PASSED] coalesce-same-reg
[13:21:52] [PASSED] coalesce-same-reg-literal-and-func
[13:21:52] [PASSED] no-match-no-add
[13:21:52] [PASSED] two-regs-two-entries
[13:21:52] [PASSED] clr-one-set-other
[13:21:52] [PASSED] set-field
[13:21:52] [PASSED] conflict-duplicate
[13:21:52] [PASSED] conflict-not-disjoint
[13:21:52] [PASSED] conflict-not-disjoint-literal-and-func
[13:21:52] [PASSED] conflict-reg-type
[13:21:52] [PASSED] bad-mcr-reg-forced-to-regular
[13:21:52] [PASSED] bad-regular-reg-forced-to-mcr
[13:21:52] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:21:52] ================== xe_rtp_process_tests ===================
[13:21:52] [PASSED] active1
[13:21:52] [PASSED] active2
[13:21:52] [PASSED] active-inactive
[13:21:52] [PASSED] inactive-active
[13:21:52] [PASSED] inactive-active-inactive
[13:21:52] [PASSED] inactive-inactive-inactive
[13:21:52] ============== [PASSED] xe_rtp_process_tests ===============
[13:21:52] ===================== [PASSED] xe_rtp ======================
[13:21:52] ==================== xe_wa (1 subtest) =====================
[13:21:52] ======================== xe_wa_gt =========================
[13:21:52] [PASSED] TIGERLAKE B0
[13:21:52] [PASSED] DG1 A0
[13:21:52] [PASSED] DG1 B0
[13:21:52] [PASSED] ALDERLAKE_S A0
[13:21:52] [PASSED] ALDERLAKE_S B0
[13:21:52] [PASSED] ALDERLAKE_S C0
[13:21:52] [PASSED] ALDERLAKE_S D0
[13:21:52] [PASSED] ALDERLAKE_P A0
[13:21:52] [PASSED] ALDERLAKE_P B0
[13:21:52] [PASSED] ALDERLAKE_P C0
[13:21:52] [PASSED] ALDERLAKE_S RPLS D0
[13:21:52] [PASSED] ALDERLAKE_P RPLU E0
[13:21:52] [PASSED] DG2 G10 C0
[13:21:52] [PASSED] DG2 G11 B1
[13:21:52] [PASSED] DG2 G12 A1
[13:21:52] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:21:52] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:21:52] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:21:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:21:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:21:52] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:21:52] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:21:52] ==================== [PASSED] xe_wa_gt =====================
[13:21:52] ====================== [PASSED] xe_wa ======================
[13:21:52] ============================================================
[13:21:52] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[13:21:52] Elapsed time: 36.291s total, 1.816s configuring, 33.758s building, 0.698s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:21:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:21:54] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:22:19] Starting KUnit Kernel (1/1)...
[13:22:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:22:19] ============= refcount_interrupt (4 subtests) ==============
[13:22:19] [PASSED] test_single_irq_change
[13:22:19] [PASSED] test_nested_irq_change
[13:22:19] [PASSED] test_multiple_irq_change
[13:22:19] [PASSED] test_irq_save
[13:22:19] =============== [PASSED] refcount_interrupt ================
[13:22:19] ============ drm_test_pick_cmdline (2 subtests) ============
[13:22:19] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:22:19] =============== drm_test_pick_cmdline_named ===============
[13:22:19] [PASSED] NTSC
[13:22:19] [PASSED] NTSC-J
[13:22:19] [PASSED] PAL
[13:22:19] [PASSED] PAL-M
[13:22:19] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:22:19] ============== [PASSED] drm_test_pick_cmdline ==============
[13:22:19] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:22:19] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:22:19] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:22:19] =========== drm_validate_clone_mode (2 subtests) ===========
[13:22:19] ============== drm_test_check_in_clone_mode ===============
[13:22:19] [PASSED] in_clone_mode
[13:22:19] [PASSED] not_in_clone_mode
[13:22:19] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:22:19] =============== drm_test_check_valid_clones ===============
[13:22:19] [PASSED] not_in_clone_mode
[13:22:19] [PASSED] valid_clone
[13:22:19] [PASSED] invalid_clone
[13:22:19] =========== [PASSED] drm_test_check_valid_clones ===========
[13:22:19] ============= [PASSED] drm_validate_clone_mode =============
[13:22:19] ============= drm_validate_modeset (1 subtest) =============
[13:22:19] [PASSED] drm_test_check_connector_changed_modeset
[13:22:19] ============== [PASSED] drm_validate_modeset ===============
[13:22:19] ====== drm_test_bridge_get_current_state (1 subtest) =======
[13:22:19] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:22:19] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:22:19] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:22:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:22:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:22:19] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[13:22:19] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:22:19] ============== drm_bridge_alloc (2 subtests) ===============
[13:22:19] [PASSED] drm_test_drm_bridge_alloc_basic
[13:22:19] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:22:19] ================ [PASSED] drm_bridge_alloc =================
[13:22:19] ============= drm_bridge_bus_fmt (5 subtests) ==============
[13:22:19] [PASSED] drm_test_bridge_rgb_yuv_rgb
[13:22:19] [PASSED] drm_test_bridge_must_convert_to_yuv444
[13:22:19] [PASSED] drm_test_bridge_hdmi_auto_rgb
[13:22:19] [PASSED] drm_test_bridge_auto_first
[13:22:19] [PASSED] drm_test_bridge_rgb_yuv_no_path
[13:22:19] =============== [PASSED] drm_bridge_bus_fmt ================
[13:22:19] ============= drm_cmdline_parser (40 subtests) =============
[13:22:19] [PASSED] drm_test_cmdline_force_d_only
[13:22:19] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:22:19] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:22:19] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:22:19] [PASSED] drm_test_cmdline_force_e_only
[13:22:19] [PASSED] drm_test_cmdline_res
[13:22:19] [PASSED] drm_test_cmdline_res_vesa
[13:22:19] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:22:19] [PASSED] drm_test_cmdline_res_rblank
[13:22:19] [PASSED] drm_test_cmdline_res_bpp
[13:22:19] [PASSED] drm_test_cmdline_res_refresh
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:22:19] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:22:19] [PASSED] drm_test_cmdline_res_margins_force_on
[13:22:19] [PASSED] drm_test_cmdline_res_vesa_margins
[13:22:19] [PASSED] drm_test_cmdline_name
[13:22:19] [PASSED] drm_test_cmdline_name_bpp
[13:22:19] [PASSED] drm_test_cmdline_name_option
[13:22:19] [PASSED] drm_test_cmdline_name_bpp_option
[13:22:19] [PASSED] drm_test_cmdline_rotate_0
[13:22:19] [PASSED] drm_test_cmdline_rotate_90
[13:22:19] [PASSED] drm_test_cmdline_rotate_180
[13:22:19] [PASSED] drm_test_cmdline_rotate_270
[13:22:19] [PASSED] drm_test_cmdline_hmirror
[13:22:19] [PASSED] drm_test_cmdline_vmirror
[13:22:19] [PASSED] drm_test_cmdline_margin_options
[13:22:19] [PASSED] drm_test_cmdline_multiple_options
[13:22:19] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:22:19] [PASSED] drm_test_cmdline_extra_and_option
[13:22:19] [PASSED] drm_test_cmdline_freestanding_options
[13:22:19] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:22:19] [PASSED] drm_test_cmdline_panel_orientation
[13:22:19] ================ drm_test_cmdline_invalid =================
[13:22:19] [PASSED] margin_only
[13:22:19] [PASSED] interlace_only
[13:22:19] [PASSED] res_missing_x
[13:22:19] [PASSED] res_missing_y
[13:22:19] [PASSED] res_bad_y
[13:22:19] [PASSED] res_missing_y_bpp
[13:22:19] [PASSED] res_bad_bpp
[13:22:19] [PASSED] res_bad_refresh
[13:22:19] [PASSED] res_bpp_refresh_force_on_off
[13:22:19] [PASSED] res_invalid_mode
[13:22:19] [PASSED] res_bpp_wrong_place_mode
[13:22:19] [PASSED] name_bpp_refresh
[13:22:19] [PASSED] name_refresh
[13:22:19] [PASSED] name_refresh_wrong_mode
[13:22:19] [PASSED] name_refresh_invalid_mode
[13:22:19] [PASSED] rotate_multiple
[13:22:19] [PASSED] rotate_invalid_val
[13:22:19] [PASSED] rotate_truncated
[13:22:19] [PASSED] invalid_option
[13:22:19] [PASSED] invalid_tv_option
[13:22:19] [PASSED] truncated_tv_option
[13:22:19] ============ [PASSED] drm_test_cmdline_invalid =============
[13:22:19] =============== drm_test_cmdline_tv_options ===============
[13:22:19] [PASSED] NTSC
[13:22:19] [PASSED] NTSC_443
[13:22:19] [PASSED] NTSC_J
[13:22:19] [PASSED] PAL
[13:22:19] [PASSED] PAL_M
[13:22:19] [PASSED] PAL_N
[13:22:19] [PASSED] SECAM
[13:22:19] [PASSED] MONO_525
[13:22:19] [PASSED] MONO_625
[13:22:19] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:22:19] =============== [PASSED] drm_cmdline_parser ================
[13:22:19] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:22:19] [PASSED] drm_test_connector_hdmi_init_valid
[13:22:19] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:22:19] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:22:19] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:22:19] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:22:19] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:22:19] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:22:19] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:22:19] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:22:19] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:22:19] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:22:19] [PASSED] supported_formats=0x5 yuv420_allowed=1
[13:22:19] [PASSED] supported_formats=0x5 yuv420_allowed=0
[13:22:19] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:22:19] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:22:19] [PASSED] drm_test_connector_hdmi_init_null_product
[13:22:19] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:22:19] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:22:19] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:22:19] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:22:19] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:22:19] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:22:19] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:22:19] ========= drm_test_connector_hdmi_init_type_valid =========
[13:22:19] [PASSED] HDMI-A
[13:22:19] [PASSED] HDMI-B
[13:22:19] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:22:19] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:22:19] [PASSED] Unknown
[13:22:19] [PASSED] VGA
[13:22:19] [PASSED] DVI-I
[13:22:19] [PASSED] DVI-D
[13:22:19] [PASSED] DVI-A
[13:22:19] [PASSED] Composite
[13:22:19] [PASSED] SVIDEO
[13:22:19] [PASSED] LVDS
[13:22:19] [PASSED] Component
[13:22:19] [PASSED] DIN
[13:22:19] [PASSED] DP
[13:22:19] [PASSED] TV
[13:22:19] [PASSED] eDP
[13:22:19] [PASSED] Virtual
[13:22:19] [PASSED] DSI
[13:22:19] [PASSED] DPI
[13:22:19] [PASSED] Writeback
[13:22:19] [PASSED] SPI
[13:22:19] [PASSED] USB
[13:22:19] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:22:19] ============ [PASSED] drmm_connector_hdmi_init =============
[13:22:19] ============= drmm_connector_init (3 subtests) =============
[13:22:19] [PASSED] drm_test_drmm_connector_init
[13:22:19] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:22:19] ========= drm_test_drmm_connector_init_type_valid =========
[13:22:19] [PASSED] Unknown
[13:22:19] [PASSED] VGA
[13:22:19] [PASSED] DVI-I
[13:22:19] [PASSED] DVI-D
[13:22:19] [PASSED] DVI-A
[13:22:19] [PASSED] Composite
[13:22:19] [PASSED] SVIDEO
[13:22:19] [PASSED] LVDS
[13:22:19] [PASSED] Component
[13:22:19] [PASSED] DIN
[13:22:19] [PASSED] DP
[13:22:19] [PASSED] HDMI-A
[13:22:19] [PASSED] HDMI-B
[13:22:19] [PASSED] TV
[13:22:19] [PASSED] eDP
[13:22:19] [PASSED] Virtual
[13:22:19] [PASSED] DSI
[13:22:19] [PASSED] DPI
[13:22:19] [PASSED] Writeback
[13:22:19] [PASSED] SPI
[13:22:19] [PASSED] USB
[13:22:19] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:22:19] =============== [PASSED] drmm_connector_init ===============
[13:22:19] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_init
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:22:19] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:22:19] [PASSED] Unknown
[13:22:19] [PASSED] VGA
[13:22:19] [PASSED] DVI-I
[13:22:19] [PASSED] DVI-D
[13:22:19] [PASSED] DVI-A
[13:22:19] [PASSED] Composite
[13:22:19] [PASSED] SVIDEO
[13:22:19] [PASSED] LVDS
[13:22:19] [PASSED] Component
[13:22:19] [PASSED] DIN
[13:22:19] [PASSED] DP
[13:22:19] [PASSED] HDMI-A
[13:22:19] [PASSED] HDMI-B
[13:22:19] [PASSED] TV
[13:22:19] [PASSED] eDP
[13:22:19] [PASSED] Virtual
[13:22:19] [PASSED] DSI
[13:22:19] [PASSED] DPI
[13:22:19] [PASSED] Writeback
[13:22:19] [PASSED] SPI
[13:22:19] [PASSED] USB
[13:22:19] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:22:19] ======== drm_test_drm_connector_dynamic_init_name =========
[13:22:19] [PASSED] Unknown
[13:22:19] [PASSED] VGA
[13:22:19] [PASSED] DVI-I
[13:22:19] [PASSED] DVI-D
[13:22:19] [PASSED] DVI-A
[13:22:19] [PASSED] Composite
[13:22:19] [PASSED] SVIDEO
[13:22:19] [PASSED] LVDS
[13:22:19] [PASSED] Component
[13:22:19] [PASSED] DIN
[13:22:19] [PASSED] DP
[13:22:19] [PASSED] HDMI-A
[13:22:19] [PASSED] HDMI-B
[13:22:19] [PASSED] TV
[13:22:19] [PASSED] eDP
[13:22:19] [PASSED] Virtual
[13:22:19] [PASSED] DSI
[13:22:19] [PASSED] DPI
[13:22:19] [PASSED] Writeback
[13:22:19] [PASSED] SPI
[13:22:19] [PASSED] USB
[13:22:19] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:22:19] =========== [PASSED] drm_connector_dynamic_init ============
[13:22:19] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:22:19] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:22:19] ======= drm_connector_dynamic_register (7 subtests) ========
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:22:19] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:22:19] ========= [PASSED] drm_connector_dynamic_register ==========
[13:22:19] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:22:19] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:22:19] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:22:19] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:22:19] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:22:19] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:22:19] [PASSED] NTSC
[13:22:19] [PASSED] NTSC-443
[13:22:19] [PASSED] NTSC-J
[13:22:19] [PASSED] PAL
[13:22:19] [PASSED] PAL-M
[13:22:19] [PASSED] PAL-N
[13:22:19] [PASSED] SECAM
[13:22:19] [PASSED] Mono
[13:22:19] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:22:19] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:22:19] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:22:19] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:22:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:22:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:22:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:22:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:22:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:22:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:22:19] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:22:19] [PASSED] VIC 96
[13:22:19] [PASSED] VIC 97
[13:22:19] [PASSED] VIC 101
[13:22:19] [PASSED] VIC 102
[13:22:19] [PASSED] VIC 106
[13:22:19] [PASSED] VIC 107
[13:22:19] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:22:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:22:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:22:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:22:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:22:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:22:19] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:22:19] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:22:19] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:22:19] [PASSED] Automatic
[13:22:19] [PASSED] Full
[13:22:19] [PASSED] Limited 16:235
[13:22:19] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:22:19] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:22:19] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:22:19] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:22:19] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:22:19] [PASSED] RGB
[13:22:19] [PASSED] YUV 4:2:0
[13:22:19] [PASSED] YUV 4:2:2
[13:22:19] [PASSED] YUV 4:4:4
[13:22:19] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:22:19] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:22:19] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:22:19] ============= drm_damage_helper (21 subtests) ==============
[13:22:19] [PASSED] drm_test_damage_iter_no_damage
[13:22:19] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:22:19] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:22:19] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:22:19] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:22:19] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:22:19] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:22:19] [PASSED] drm_test_damage_iter_simple_damage
[13:22:19] [PASSED] drm_test_damage_iter_single_damage
[13:22:19] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:22:19] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:22:19] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:22:19] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:22:19] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:22:19] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:22:19] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:22:19] [PASSED] drm_test_damage_iter_damage
[13:22:19] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:22:19] [PASSED] drm_test_damage_iter_damage_one_outside
[13:22:19] [PASSED] drm_test_damage_iter_damage_src_moved
[13:22:19] [PASSED] drm_test_damage_iter_damage_not_visible
[13:22:19] ================ [PASSED] drm_damage_helper ================
[13:22:19] ============== drm_dp_mst_helper (3 subtests) ==============
[13:22:19] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:22:19] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:22:19] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:22:19] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:22:19] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:22:19] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:22:19] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:22:19] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:22:19] [PASSED] Link rate 2000000 lane count 4
[13:22:19] [PASSED] Link rate 2000000 lane count 2
[13:22:19] [PASSED] Link rate 2000000 lane count 1
[13:22:19] [PASSED] Link rate 1350000 lane count 4
[13:22:19] [PASSED] Link rate 1350000 lane count 2
[13:22:19] [PASSED] Link rate 1350000 lane count 1
[13:22:19] [PASSED] Link rate 1000000 lane count 4
[13:22:19] [PASSED] Link rate 1000000 lane count 2
[13:22:19] [PASSED] Link rate 1000000 lane count 1
[13:22:19] [PASSED] Link rate 810000 lane count 4
[13:22:19] [PASSED] Link rate 810000 lane count 2
[13:22:19] [PASSED] Link rate 810000 lane count 1
[13:22:19] [PASSED] Link rate 540000 lane count 4
[13:22:19] [PASSED] Link rate 540000 lane count 2
[13:22:19] [PASSED] Link rate 540000 lane count 1
[13:22:19] [PASSED] Link rate 270000 lane count 4
[13:22:19] [PASSED] Link rate 270000 lane count 2
[13:22:19] [PASSED] Link rate 270000 lane count 1
[13:22:19] [PASSED] Link rate 162000 lane count 4
[13:22:19] [PASSED] Link rate 162000 lane count 2
[13:22:19] [PASSED] Link rate 162000 lane count 1
[13:22:19] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:22:19] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:22:19] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:22:19] [PASSED] DP_POWER_UP_PHY with port number
[13:22:19] [PASSED] DP_POWER_DOWN_PHY with port number
[13:22:19] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:22:19] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:22:19] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:22:19] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:22:19] [PASSED] DP_QUERY_PAYLOAD with port number
[13:22:19] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:22:19] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:22:19] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:22:19] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:22:19] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:22:19] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:22:19] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:22:19] [PASSED] DP_REMOTE_I2C_READ with port number
[13:22:19] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:22:19] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:22:19] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:22:19] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:22:19] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:22:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:22:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:22:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:22:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:22:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:22:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:22:19] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:22:19] ================ [PASSED] drm_dp_mst_helper ================
[13:22:19] ================== drm_exec (7 subtests) ===================
[13:22:19] [PASSED] sanitycheck
[13:22:19] [PASSED] test_lock
[13:22:19] [PASSED] test_lock_unlock
[13:22:19] [PASSED] test_duplicates
[13:22:19] [PASSED] test_prepare
[13:22:19] [PASSED] test_prepare_array
[13:22:19] [PASSED] test_multiple_loops
[13:22:19] ==================== [PASSED] drm_exec =====================
[13:22:19] =========== drm_format_helper_test (17 subtests) ===========
[13:22:19] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:22:19] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:22:19] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:22:19] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:22:19] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:22:19] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:22:19] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:22:19] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:22:19] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:22:19] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:22:19] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:22:19] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:22:19] ==================== drm_test_fb_swab =====================
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ================ [PASSED] drm_test_fb_swab =================
[13:22:19] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:22:19] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:22:19] [PASSED] single_pixel_source_buffer
[13:22:19] [PASSED] single_pixel_clip_rectangle
[13:22:19] [PASSED] well_known_colors
[13:22:19] [PASSED] destination_pitch
[13:22:19] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:22:19] ================= drm_test_fb_clip_offset =================
[13:22:19] [PASSED] pass through
[13:22:19] [PASSED] horizontal offset
[13:22:19] [PASSED] vertical offset
[13:22:19] [PASSED] horizontal and vertical offset
[13:22:19] [PASSED] horizontal offset (custom pitch)
[13:22:19] [PASSED] vertical offset (custom pitch)
[13:22:19] [PASSED] horizontal and vertical offset (custom pitch)
[13:22:19] ============= [PASSED] drm_test_fb_clip_offset =============
[13:22:19] =================== drm_test_fb_memcpy ====================
[13:22:19] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:22:19] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:22:19] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:22:19] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:22:19] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:22:19] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:22:19] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:22:19] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:22:19] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:22:19] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:22:19] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:22:19] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:22:19] =============== [PASSED] drm_test_fb_memcpy ================
[13:22:19] ============= [PASSED] drm_format_helper_test ==============
[13:22:19] ================= drm_format (18 subtests) =================
[13:22:19] [PASSED] drm_test_format_block_width_invalid
[13:22:19] [PASSED] drm_test_format_block_width_one_plane
[13:22:19] [PASSED] drm_test_format_block_width_two_plane
[13:22:19] [PASSED] drm_test_format_block_width_three_plane
[13:22:19] [PASSED] drm_test_format_block_width_tiled
[13:22:19] [PASSED] drm_test_format_block_height_invalid
[13:22:19] [PASSED] drm_test_format_block_height_one_plane
[13:22:19] [PASSED] drm_test_format_block_height_two_plane
[13:22:19] [PASSED] drm_test_format_block_height_three_plane
[13:22:19] [PASSED] drm_test_format_block_height_tiled
[13:22:19] [PASSED] drm_test_format_min_pitch_invalid
[13:22:19] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:22:19] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:22:19] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:22:19] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:22:19] [PASSED] drm_test_format_min_pitch_two_plane
[13:22:19] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:22:19] [PASSED] drm_test_format_min_pitch_tiled
[13:22:19] =================== [PASSED] drm_format ====================
[13:22:19] ============== drm_framebuffer (10 subtests) ===============
[13:22:19] ========== drm_test_framebuffer_check_src_coords ==========
[13:22:19] [PASSED] Success: source fits into fb
[13:22:19] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:22:19] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:22:19] [PASSED] Fail: overflowing fb with source width
[13:22:19] [PASSED] Fail: overflowing fb with source height
[13:22:19] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:22:19] [PASSED] drm_test_framebuffer_cleanup
[13:22:19] =============== drm_test_framebuffer_create ===============
[13:22:19] [PASSED] ABGR8888 normal sizes
[13:22:19] [PASSED] ABGR8888 max sizes
[13:22:19] [PASSED] ABGR8888 pitch greater than min required
[13:22:19] [PASSED] ABGR8888 pitch less than min required
[13:22:19] [PASSED] ABGR8888 Invalid width
[13:22:19] [PASSED] ABGR8888 Invalid buffer handle
[13:22:19] [PASSED] No pixel format
[13:22:19] [PASSED] ABGR8888 Width 0
[13:22:19] [PASSED] ABGR8888 Height 0
[13:22:19] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:22:19] [PASSED] ABGR8888 Large buffer offset
[13:22:19] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:22:19] [PASSED] ABGR8888 Invalid flag
[13:22:19] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:22:19] [PASSED] ABGR8888 Valid buffer modifier
[13:22:19] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:22:19] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:22:19] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:22:19] [PASSED] NV12 Normal sizes
[13:22:19] [PASSED] NV12 Max sizes
[13:22:19] [PASSED] NV12 Invalid pitch
[13:22:19] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:22:19] [PASSED] NV12 different modifier per-plane
[13:22:19] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:22:19] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:22:19] [PASSED] NV12 Modifier for inexistent plane
[13:22:19] [PASSED] NV12 Handle for inexistent plane
[13:22:19] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:22:19] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:22:19] [PASSED] YVU420 Normal sizes
[13:22:19] [PASSED] YVU420 Max sizes
[13:22:19] [PASSED] YVU420 Invalid pitch
[13:22:19] [PASSED] YVU420 Different pitches
[13:22:19] [PASSED] YVU420 Different buffer offsets/pitches
[13:22:19] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:22:19] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:22:19] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:22:19] [PASSED] YVU420 Valid modifier
[13:22:19] [PASSED] YVU420 Different modifiers per plane
[13:22:19] [PASSED] YVU420 Modifier for inexistent plane
[13:22:19] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:22:19] [PASSED] X0L2 Normal sizes
[13:22:19] [PASSED] X0L2 Max sizes
[13:22:19] [PASSED] X0L2 Invalid pitch
[13:22:19] [PASSED] X0L2 Pitch greater than minimum required
[13:22:19] [PASSED] X0L2 Handle for inexistent plane
[13:22:19] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:22:19] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:22:19] [PASSED] X0L2 Valid modifier
[13:22:19] [PASSED] X0L2 Modifier for inexistent plane
[13:22:19] =========== [PASSED] drm_test_framebuffer_create ===========
[13:22:19] [PASSED] drm_test_framebuffer_free
[13:22:19] [PASSED] drm_test_framebuffer_init
[13:22:19] [PASSED] drm_test_framebuffer_init_bad_format
[13:22:19] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:22:19] [PASSED] drm_test_framebuffer_lookup
[13:22:19] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:22:19] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:22:19] ================= [PASSED] drm_framebuffer =================
[13:22:19] ================ drm_gem_shmem (8 subtests) ================
[13:22:19] [PASSED] drm_gem_shmem_test_obj_create
[13:22:19] [PASSED] drm_gem_shmem_test_obj_create_private
[13:22:19] [PASSED] drm_gem_shmem_test_pin_pages
[13:22:19] [PASSED] drm_gem_shmem_test_vmap
[13:22:19] [PASSED] drm_gem_shmem_test_get_sg_table
[13:22:19] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:22:19] [PASSED] drm_gem_shmem_test_madvise
[13:22:19] [PASSED] drm_gem_shmem_test_purge
[13:22:19] ================== [PASSED] drm_gem_shmem ==================
[13:22:19] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:22:19] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:22:19] [PASSED] Automatic
[13:22:19] [PASSED] Full
[13:22:19] [PASSED] Limited 16:235
[13:22:19] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:22:19] [PASSED] drm_test_check_disable_connector
[13:22:19] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:22:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:22:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:22:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:22:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:22:19] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:22:19] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:22:19] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:22:19] [PASSED] drm_test_check_output_bpc_dvi
[13:22:19] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:22:19] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:22:19] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:22:19] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:22:19] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:22:19] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:22:19] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:22:19] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:22:19] ============ drm_test_check_hdmi_color_format =============
[13:22:19] [PASSED] AUTO -> RGB
[13:22:19] [PASSED] YCBCR422 -> YUV422
[13:22:19] [PASSED] YCBCR420 -> YUV420
[13:22:19] [PASSED] YCBCR444 -> YUV444
[13:22:19] [PASSED] RGB -> RGB
[13:22:19] ======== [PASSED] drm_test_check_hdmi_color_format =========
[13:22:19] ======== drm_test_check_hdmi_color_format_420_only ========
[13:22:19] [PASSED] RGB should fail
[13:22:19] [PASSED] YUV444 should fail
[13:22:19] [PASSED] YUV422 should fail
[13:22:19] [PASSED] YUV420 should work
[13:22:19] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[13:22:19] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:22:19] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:22:19] [PASSED] drm_test_check_broadcast_rgb_value
[13:22:19] [PASSED] drm_test_check_bpc_8_value
[13:22:19] [PASSED] drm_test_check_bpc_10_value
[13:22:19] [PASSED] drm_test_check_bpc_12_value
[13:22:19] [PASSED] drm_test_check_format_value
[13:22:19] [PASSED] drm_test_check_tmds_char_value
[13:22:19] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:22:19] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[13:22:19] [PASSED] drm_test_check_mode_valid
[13:22:19] [PASSED] drm_test_check_mode_valid_reject
[13:22:19] [PASSED] drm_test_check_mode_valid_reject_rate
[13:22:19] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:22:19] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[13:22:19] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[13:22:19] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[13:22:19] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:22:19] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:22:19] [PASSED] drm_test_check_infoframes
[13:22:19] [PASSED] drm_test_check_reject_avi_infoframe
[13:22:19] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:22:19] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:22:19] [PASSED] drm_test_check_reject_audio_infoframe
[13:22:19] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:22:19] ================= drm_managed (2 subtests) =================
[13:22:19] [PASSED] drm_test_managed_release_action
[13:22:19] [PASSED] drm_test_managed_run_action
[13:22:19] =================== [PASSED] drm_managed ===================
[13:22:19] =================== drm_mm (6 subtests) ====================
[13:22:19] [PASSED] drm_test_mm_init
[13:22:19] [PASSED] drm_test_mm_debug
[13:22:19] [PASSED] drm_test_mm_align32
[13:22:19] [PASSED] drm_test_mm_align64
[13:22:19] [PASSED] drm_test_mm_lowest
[13:22:19] [PASSED] drm_test_mm_highest
[13:22:19] ===================== [PASSED] drm_mm ======================
[13:22:19] ============= drm_modes_analog_tv (5 subtests) =============
[13:22:19] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:22:19] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:22:19] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:22:19] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:22:19] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:22:19] =============== [PASSED] drm_modes_analog_tv ===============
[13:22:19] ============== drm_plane_helper (2 subtests) ===============
[13:22:19] =============== drm_test_check_plane_state ================
[13:22:19] [PASSED] clipping_simple
[13:22:19] [PASSED] clipping_rotate_reflect
[13:22:19] [PASSED] positioning_simple
[13:22:19] [PASSED] upscaling
[13:22:19] [PASSED] downscaling
[13:22:19] [PASSED] rounding1
[13:22:19] [PASSED] rounding2
[13:22:19] [PASSED] rounding3
[13:22:19] [PASSED] rounding4
[13:22:19] =========== [PASSED] drm_test_check_plane_state ============
[13:22:19] =========== drm_test_check_invalid_plane_state ============
[13:22:19] [PASSED] positioning_invalid
[13:22:19] [PASSED] upscaling_invalid
[13:22:19] [PASSED] downscaling_invalid
[13:22:19] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:22:19] ================ [PASSED] drm_plane_helper =================
[13:22:19] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:22:19] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:22:19] [PASSED] None
[13:22:19] [PASSED] PAL
[13:22:19] [PASSED] NTSC
[13:22:19] [PASSED] Both, NTSC Default
[13:22:19] [PASSED] Both, PAL Default
[13:22:19] [PASSED] Both, NTSC Default, with PAL on command-line
[13:22:19] [PASSED] Both, PAL Default, with NTSC on command-line
[13:22:19] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:22:19] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:22:19] ================== drm_rect (9 subtests) ===================
[13:22:19] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:22:19] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:22:19] [PASSED] drm_test_rect_clip_scaled_clipped
[13:22:19] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:22:19] ================= drm_test_rect_intersect =================
[13:22:19] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:22:19] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:22:19] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:22:19] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:22:19] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:22:19] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:22:19] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:22:19] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:22:19] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:22:19] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:22:19] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:22:19] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:22:19] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:22:19] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:22:19] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:22:19] ============= [PASSED] drm_test_rect_intersect =============
[13:22:19] ================ drm_test_rect_calc_hscale ================
[13:22:19] [PASSED] normal use
[13:22:19] [PASSED] out of max range
[13:22:19] [PASSED] out of min range
[13:22:19] [PASSED] zero dst
[13:22:19] [PASSED] negative src
[13:22:19] [PASSED] negative dst
[13:22:19] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:22:19] ================ drm_test_rect_calc_vscale ================
[13:22:19] [PASSED] normal use
[13:22:19] [PASSED] out of max range
[13:22:19] [PASSED] out of min range
[13:22:19] [PASSED] zero dst
[13:22:19] [PASSED] negative src
[13:22:19] [PASSED] negative dst
[13:22:19] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:22:19] ================== drm_test_rect_rotate ===================
[13:22:19] [PASSED] reflect-x
[13:22:19] [PASSED] reflect-y
[13:22:19] [PASSED] rotate-0
[13:22:19] [PASSED] rotate-90
[13:22:19] [PASSED] rotate-180
[13:22:19] [PASSED] rotate-270
[13:22:19] ============== [PASSED] drm_test_rect_rotate ===============
[13:22:19] ================ drm_test_rect_rotate_inv =================
[13:22:19] [PASSED] reflect-x
[13:22:19] [PASSED] reflect-y
[13:22:19] [PASSED] rotate-0
[13:22:19] [PASSED] rotate-90
[13:22:19] [PASSED] rotate-180
[13:22:19] [PASSED] rotate-270
[13:22:19] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:22:19] ==================== [PASSED] drm_rect =====================
[13:22:19] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:22:19] ============ drm_test_sysfb_build_fourcc_list =============
[13:22:19] [PASSED] no native formats
[13:22:19] [PASSED] XRGB8888 as native format
[13:22:19] [PASSED] remove duplicates
[13:22:19] [PASSED] convert alpha formats
[13:22:19] [PASSED] random formats
[13:22:19] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:22:19] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:22:19] ================== drm_fixp (2 subtests) ===================
[13:22:19] [PASSED] drm_test_int2fixp
[13:22:19] [PASSED] drm_test_sm2fixp
[13:22:19] ==================== [PASSED] drm_fixp =====================
[13:22:19] ============================================================
[13:22:19] Testing complete. Ran 641 tests: passed: 641
[13:22:19] Elapsed time: 27.077s total, 1.828s configuring, 25.079s building, 0.151s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:22:19] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:22:21] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:22:31] Starting KUnit Kernel (1/1)...
[13:22:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:22:31] ============= refcount_interrupt (4 subtests) ==============
[13:22:31] [PASSED] test_single_irq_change
[13:22:31] [PASSED] test_nested_irq_change
[13:22:31] [PASSED] test_multiple_irq_change
[13:22:31] [PASSED] test_irq_save
[13:22:31] =============== [PASSED] refcount_interrupt ================
[13:22:31] ================= ttm_device (5 subtests) ==================
[13:22:31] [PASSED] ttm_device_init_basic
[13:22:31] [PASSED] ttm_device_init_multiple
[13:22:31] [PASSED] ttm_device_fini_basic
[13:22:31] [PASSED] ttm_device_init_no_vma_man
[13:22:31] ================== ttm_device_init_pools ==================
[13:22:31] [PASSED] No DMA allocations, no DMA32 required
[13:22:31] [PASSED] DMA allocations, DMA32 required
[13:22:31] [PASSED] No DMA allocations, DMA32 required
[13:22:31] [PASSED] DMA allocations, no DMA32 required
[13:22:31] ============== [PASSED] ttm_device_init_pools ==============
[13:22:31] =================== [PASSED] ttm_device ====================
[13:22:31] ================== ttm_pool (8 subtests) ===================
[13:22:31] ================== ttm_pool_alloc_basic ===================
[13:22:31] [PASSED] One page
[13:22:31] [PASSED] More than one page
[13:22:31] [PASSED] Above the allocation limit
[13:22:31] [PASSED] One page, with coherent DMA mappings enabled
[13:22:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:22:31] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:22:31] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:22:31] [PASSED] One page
[13:22:31] [PASSED] More than one page
[13:22:31] [PASSED] Above the allocation limit
[13:22:31] [PASSED] One page, with coherent DMA mappings enabled
[13:22:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:22:31] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:22:31] [PASSED] ttm_pool_alloc_order_caching_match
[13:22:31] [PASSED] ttm_pool_alloc_caching_mismatch
[13:22:31] [PASSED] ttm_pool_alloc_order_mismatch
[13:22:31] [PASSED] ttm_pool_free_dma_alloc
[13:22:31] [PASSED] ttm_pool_free_no_dma_alloc
[13:22:31] [PASSED] ttm_pool_fini_basic
[13:22:31] ==================== [PASSED] ttm_pool =====================
[13:22:31] ================ ttm_resource (8 subtests) =================
[13:22:31] ================= ttm_resource_init_basic =================
[13:22:31] [PASSED] Init resource in TTM_PL_SYSTEM
[13:22:31] [PASSED] Init resource in TTM_PL_VRAM
[13:22:31] [PASSED] Init resource in a private placement
[13:22:31] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:22:31] ============= [PASSED] ttm_resource_init_basic =============
[13:22:31] [PASSED] ttm_resource_init_pinned
[13:22:31] [PASSED] ttm_resource_fini_basic
[13:22:31] [PASSED] ttm_resource_manager_init_basic
[13:22:31] [PASSED] ttm_resource_manager_usage_basic
[13:22:31] [PASSED] ttm_resource_manager_set_used_basic
[13:22:31] [PASSED] ttm_sys_man_alloc_basic
[13:22:31] [PASSED] ttm_sys_man_free_basic
[13:22:31] ================== [PASSED] ttm_resource ===================
[13:22:31] =================== ttm_tt (15 subtests) ===================
[13:22:31] ==================== ttm_tt_init_basic ====================
[13:22:31] [PASSED] Page-aligned size
[13:22:31] [PASSED] Extra pages requested
[13:22:31] ================ [PASSED] ttm_tt_init_basic ================
[13:22:31] [PASSED] ttm_tt_init_misaligned
[13:22:31] [PASSED] ttm_tt_fini_basic
[13:22:31] [PASSED] ttm_tt_fini_sg
[13:22:31] [PASSED] ttm_tt_fini_shmem
[13:22:31] [PASSED] ttm_tt_create_basic
[13:22:31] [PASSED] ttm_tt_create_invalid_bo_type
[13:22:31] [PASSED] ttm_tt_create_ttm_exists
[13:22:31] [PASSED] ttm_tt_create_failed
[13:22:31] [PASSED] ttm_tt_destroy_basic
[13:22:31] [PASSED] ttm_tt_populate_null_ttm
[13:22:31] [PASSED] ttm_tt_populate_populated_ttm
[13:22:31] [PASSED] ttm_tt_unpopulate_basic
[13:22:31] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:22:31] [PASSED] ttm_tt_swapin_basic
[13:22:31] ===================== [PASSED] ttm_tt ======================
[13:22:31] =================== ttm_bo (14 subtests) ===================
[13:22:31] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:22:31] [PASSED] Cannot be interrupted and sleeps
[13:22:31] [PASSED] Cannot be interrupted, locks straight away
[13:22:31] [PASSED] Can be interrupted, sleeps
[13:22:31] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:22:31] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:22:31] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:22:31] [PASSED] ttm_bo_reserve_double_resv
[13:22:31] [PASSED] ttm_bo_reserve_interrupted
[13:22:31] [PASSED] ttm_bo_reserve_deadlock
[13:22:31] [PASSED] ttm_bo_unreserve_basic
[13:22:31] [PASSED] ttm_bo_unreserve_pinned
[13:22:31] [PASSED] ttm_bo_unreserve_bulk
[13:22:31] [PASSED] ttm_bo_fini_basic
[13:22:31] [PASSED] ttm_bo_fini_shared_resv
[13:22:31] [PASSED] ttm_bo_pin_basic
[13:22:31] [PASSED] ttm_bo_pin_unpin_resource
[13:22:31] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:22:31] ===================== [PASSED] ttm_bo ======================
[13:22:31] ============== ttm_bo_validate (22 subtests) ===============
[13:22:31] ============== ttm_bo_init_reserved_sys_man ===============
[13:22:31] [PASSED] Buffer object for userspace
[13:22:31] [PASSED] Kernel buffer object
[13:22:31] [PASSED] Shared buffer object
[13:22:31] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:22:31] ============== ttm_bo_init_reserved_mock_man ==============
[13:22:31] [PASSED] Buffer object for userspace
[13:22:31] [PASSED] Kernel buffer object
[13:22:31] [PASSED] Shared buffer object
[13:22:31] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:22:31] [PASSED] ttm_bo_init_reserved_resv
[13:22:31] ================== ttm_bo_validate_basic ==================
[13:22:31] [PASSED] Buffer object for userspace
[13:22:31] [PASSED] Kernel buffer object
[13:22:31] [PASSED] Shared buffer object
[13:22:31] ============== [PASSED] ttm_bo_validate_basic ==============
[13:22:31] [PASSED] ttm_bo_validate_invalid_placement
[13:22:31] ============= ttm_bo_validate_same_placement ==============
[13:22:31] [PASSED] System manager
[13:22:31] [PASSED] VRAM manager
[13:22:31] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:22:31] [PASSED] ttm_bo_validate_failed_alloc
[13:22:31] [PASSED] ttm_bo_validate_pinned
[13:22:31] [PASSED] ttm_bo_validate_busy_placement
[13:22:31] ================ ttm_bo_validate_multihop =================
[13:22:31] [PASSED] Buffer object for userspace
[13:22:31] [PASSED] Kernel buffer object
[13:22:31] [PASSED] Shared buffer object
[13:22:31] ============ [PASSED] ttm_bo_validate_multihop =============
[13:22:31] ========== ttm_bo_validate_no_placement_signaled ==========
[13:22:31] [PASSED] Buffer object in system domain, no page vector
[13:22:31] [PASSED] Buffer object in system domain with an existing page vector
[13:22:31] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:22:31] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:22:31] [PASSED] Buffer object for userspace
[13:22:31] [PASSED] Kernel buffer object
[13:22:31] [PASSED] Shared buffer object
[13:22:31] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:22:31] [PASSED] ttm_bo_validate_move_fence_signaled
[13:22:31] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:22:31] [PASSED] Waits for GPU
[13:22:31] [PASSED] Tries to lock straight away
[13:22:31] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:22:31] [PASSED] ttm_bo_validate_swapout
[13:22:31] [PASSED] ttm_bo_validate_happy_evict
[13:22:31] [PASSED] ttm_bo_validate_all_pinned_evict
[13:22:31] [PASSED] ttm_bo_validate_allowed_only_evict
[13:22:31] [PASSED] ttm_bo_validate_deleted_evict
[13:22:31] [PASSED] ttm_bo_validate_busy_domain_evict
[13:22:31] [PASSED] ttm_bo_validate_evict_gutting
[13:22:31] [PASSED] ttm_bo_validate_recrusive_evict
[13:22:31] ================= [PASSED] ttm_bo_validate =================
[13:22:31] ============================================================
[13:22:31] Testing complete. Ran 106 tests: passed: 106
[13:22:31] Elapsed time: 12.042s total, 1.825s configuring, 10.002s building, 0.178s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[13:22:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:22:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:22:42] Starting KUnit Kernel (1/1)...
[13:22:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:22:42] ============= refcount_interrupt (4 subtests) ==============
[13:22:42] [PASSED] test_single_irq_change
[13:22:42] [PASSED] test_nested_irq_change
[13:22:42] [PASSED] test_multiple_irq_change
[13:22:42] [PASSED] test_irq_save
[13:22:42] =============== [PASSED] refcount_interrupt ================
[13:22:42] =============== dma-buf-fence (12 subtests) ================
[13:22:42] [PASSED] test_sanitycheck
[13:22:42] [PASSED] test_signaling
[13:22:42] [PASSED] test_add_callback
[13:22:42] [PASSED] test_late_add_callback
[13:22:42] [PASSED] test_rm_callback
[13:22:42] [PASSED] test_late_rm_callback
[13:22:42] [PASSED] test_status
[13:22:42] [PASSED] test_error
[13:22:42] [PASSED] test_wait
[13:22:42] [PASSED] test_wait_timeout
[13:22:42] [PASSED] test_stub
[13:22:42] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[13:22:42] ================== [PASSED] dma-buf-fence ==================
[13:22:42] ============ dma-buf-fence-chain (11 subtests) =============
[13:22:42] [PASSED] test_sanitycheck
[13:22:42] [PASSED] test_find_seqno
[13:22:42] [PASSED] test_find_signaled
[13:22:42] [PASSED] test_find_out_of_order
[13:22:47] [PASSED] test_find_gap
[13:22:47] [PASSED] test_find_race
[13:22:47] [PASSED] test_signal_forward
[13:22:47] [PASSED] test_signal_backward
[13:22:47] [PASSED] test_wait_forward
[13:22:47] [PASSED] test_wait_backward
[13:22:47] [PASSED] test_wait_random
[13:22:47] =============== [PASSED] dma-buf-fence-chain ===============
[13:22:47] ============ dma-buf-fence-unwrap (10 subtests) ============
[13:22:47] [PASSED] test_sanitycheck
[13:22:47] [PASSED] test_unwrap_array
[13:22:47] [PASSED] test_unwrap_chain
[13:22:47] [PASSED] test_unwrap_chain_array
[13:22:47] [PASSED] test_unwrap_merge
[13:22:47] [PASSED] test_unwrap_merge_duplicate
[13:22:47] [PASSED] test_unwrap_merge_seqno
[13:22:47] [PASSED] test_unwrap_merge_order
[13:22:47] [PASSED] test_unwrap_merge_complex
[13:22:47] [PASSED] test_unwrap_merge_complex_seqno
[13:22:47] ============== [PASSED] dma-buf-fence-unwrap ===============
[13:22:47] ================ dma-buf-resv (5 subtests) =================
[13:22:47] [PASSED] test_sanitycheck
[13:22:47] ===================== test_signaling ======================
[13:22:47] [PASSED] kernel
[13:22:47] [PASSED] write
[13:22:47] [PASSED] read
[13:22:47] [PASSED] bookkeep
[13:22:47] ================= [PASSED] test_signaling ==================
[13:22:47] ====================== test_for_each ======================
[13:22:47] [PASSED] kernel
[13:22:47] [PASSED] write
[13:22:47] [PASSED] read
[13:22:47] [PASSED] bookkeep
[13:22:47] ================== [PASSED] test_for_each ==================
[13:22:47] ================= test_for_each_unlocked ==================
[13:22:47] [PASSED] kernel
[13:22:47] [PASSED] write
[13:22:47] [PASSED] read
[13:22:47] [PASSED] bookkeep
[13:22:47] ============= [PASSED] test_for_each_unlocked ==============
[13:22:47] ===================== test_get_fences =====================
[13:22:47] [PASSED] kernel
[13:22:47] [PASSED] write
[13:22:47] [PASSED] read
[13:22:47] [PASSED] bookkeep
[13:22:47] ================= [PASSED] test_get_fences =================
[13:22:47] ================== [PASSED] dma-buf-resv ===================
[13:22:47] ============================================================
[13:22:47] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[13:22:47] Elapsed time: 15.775s total, 1.801s configuring, 8.652s building, 5.284s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Expose device sysfs for AMC and GPU UUID (rev2)
2026-09-10 12:41 [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID Badal Nilawar
` (3 preceding siblings ...)
2026-09-10 13:22 ` ✓ CI.KUnit: success " Patchwork
@ 2026-09-10 14:29 ` Patchwork
2026-09-10 20:22 ` ✓ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-09-10 14:29 UTC (permalink / raw)
To: Nilawar, Badal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1936 bytes --]
== Series Details ==
Series: Expose device sysfs for AMC and GPU UUID (rev2)
URL : https://patchwork.freedesktop.org/series/173403/
State : success
== Summary ==
CI Bug Log - changes from xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8_BAT -> xe-pw-173403v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (15 -> 15)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-173403v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-2: [PASS][1] -> [ABORT][2] ([Intel XE#8007])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
* igt@xe_waitfence@engine:
- bat-wcl-2: [PASS][3] -> [FAIL][4] ([Intel XE#9103])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/bat-wcl-2/igt@xe_waitfence@engine.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/bat-wcl-2/igt@xe_waitfence@engine.html
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#9103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9103
Build changes
-------------
* Linux: xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8 -> xe-pw-173403v2
IGT_9089: ed3e5859856eb6e92a898163015ae0d0aaa13c5c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8: 926dada6864ecdce77fbf2fc9c23d0c58d2f55d8
xe-pw-173403v2: 173403v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/index.html
[-- Attachment #2: Type: text/html, Size: 2535 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs
2026-09-10 12:41 ` [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs Badal Nilawar
2026-09-10 12:41 ` sashiko-bot
@ 2026-09-10 14:41 ` Michal Wajdeczko
1 sibling, 0 replies; 11+ messages in thread
From: Michal Wajdeczko @ 2026-09-10 14:41 UTC (permalink / raw)
To: Badal Nilawar, intel-xe, rodrigo.vivi
Cc: anshuman.gupta, raag.jadav, riana.tauro, mallesh.koujalagi,
aravind.iddamsetty, heikki.krogerus, himal.prasad.ghimiray
On 9/10/2026 2:41 PM, Badal Nilawar wrote:
> AMC raises an SMBUS alert before performing a power removal or
> power-cycle operation. The xe driver then places the device into
> vendor-specific wedge mode until the recovery is performed.
>
> Expose a read-only xe_amc_alert_reason sysfs attribute to help users
> identify the required recovery action.
>
> Assisted-by: Claude:claude-opus-4.8
> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
> ---
> v2:
> - Created sysfs during i2c probe time
> - Fix Documentation (Rodrigo)
> v3:
> - Keep limited information in "DOC:" section (Michal)
> - Handle AMC alert none and unknown cases, document
> in ABI
> - Clear i2c->amc on sysfs creation failure (Sashiko)
> ---
> .../ABI/testing/sysfs-driver-intel-xe-amc | 25 ++++++
> drivers/gpu/drm/xe/xe_amc.c | 78 ++++++++++++++++---
> 2 files changed, 93 insertions(+), 10 deletions(-)
> create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-xe-amc
>
> diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-amc b/Documentation/ABI/testing/sysfs-driver-intel-xe-amc
> new file mode 100644
> index 000000000000..3bae78d1e0d9
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-amc
> @@ -0,0 +1,25 @@
> +What: /sys/bus/pci/drivers/xe/.../xe_amc_alert_reason
do we need this 'xe' prefix?
it is already listed as available on xe drivers only
> +Date: September 2026
> +KernelVersion: 7.4
> +Contact: intel-xe@lists.freedesktop.org
> +Description:
> + This file exposes the reason for the most recent Add-In
> + Management Controller (AMC) alert on Intel Xe platforms.
I guess we should add "... on selected Xe platforms."
> +
> + An AMC alert is delivered via an SMBUS interrupt and causes the
> + device to be wedged, requiring vendor-specific recovery. This
> + attribute is created when such an alert is handled and is
> + available to all users as read-only.
> +
> + Read returns a single line containing one of the following
> + alert reasons:
> +
> + none
other ABI documentations are quoting possible names:
"none"
> + No AMC alert has been received
> + unknown
"unknown"
...
> + AMC alert received but with invalid reason code
maybe either change above tag to "invalid" or description: "... with unknown reason ..."
> + firmware_download
> + thermal_trip
> + oob_request
> + oob_reset
> + catastrophic
> diff --git a/drivers/gpu/drm/xe/xe_amc.c b/drivers/gpu/drm/xe/xe_amc.c
> index edd50bf8261e..bb9d260f800f 100644
> --- a/drivers/gpu/drm/xe/xe_amc.c
> +++ b/drivers/gpu/drm/xe/xe_amc.c
> @@ -18,6 +18,7 @@
> #include "xe_device.h"
> #include "xe_i2c.h"
> #include "xe_mmio.h"
> +#include "xe_printk.h"
>
> /**
> * DOC: Add-In Management Controller (AMC)
> @@ -43,19 +44,23 @@ enum xe_amc_alert {
> AMC_ALERT_OOB_REQUEST,
> AMC_ALERT_OOB_RESET,
> AMC_ALERT_CATERR,
> + AMC_ALERT_NONE = U8_MAX,
is this defined by AMC (as part of the AMC ABI?
if not, then maybe you need private field:
bool alert_valid;
> };
>
> static const char * const amc_alert[] = {
> - [AMC_ALERT_FW_DOWNLOAD] = "Firmware Download",
> - [AMC_ALERT_THERMAL_TRIP] = "Thermal Trip",
> - [AMC_ALERT_OOB_REQUEST] = "OOB Request",
> - [AMC_ALERT_OOB_RESET] = "OOB Reset",
> - [AMC_ALERT_CATERR] = "Catastrophic",
> + [AMC_ALERT_UNKNOWN] = "unknown",
> + [AMC_ALERT_FW_DOWNLOAD] = "firmware_download",
> + [AMC_ALERT_THERMAL_TRIP] = "thermal_trip",
> + [AMC_ALERT_OOB_REQUEST] = "oob_request",
> + [AMC_ALERT_OOB_RESET] = "oob_reset",
> + [AMC_ALERT_CATERR] = "catastrophic",
> + [AMC_ALERT_NONE] = "none",
is there any strict requirement that we need to use lowercase/underscores only?
for sysfs we are printing text line, IMO we should be good with old names
> };
>
> struct xe_amc {
> struct xe_i2c *i2c;
> struct work_struct work;
> + u8 alert_reason;
> };
>
> struct amc_header {
> @@ -104,6 +109,42 @@ static const struct amc_request amc_get_alert_reason = {
> },
> };
>
> +/**
> + * DOC: AMC Alert Reason
> + *
> + * On Intel Xe platforms, AMC sends an alert notification via an SMBUS interrupt
> + * to notify events such as firmware download, thermal trip or a
> + * catastrophic error. See enum xe_amc_alert for the full list of reasons.
> + * Upon an AMC alert the device is wedged and requires vendor-specific recovery.
> + *
> + * See Documentation/ABI/testing/sysfs-driver-intel-xe-amc for the ABI
> + * specification.
> + */
> +
> +static ssize_t xe_amc_alert_reason_show(struct device *dev,
> + struct device_attribute *attr, char *buf)
> +{
> + struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> + struct xe_amc *amc = xe->i2c->amc;
> +
> + return sysfs_emit(buf, "%s\n", amc_alert[amc->alert_reason]);
> +}
> +static DEVICE_ATTR_RO(xe_amc_alert_reason);
> +
> +static void xe_amc_remove_alert_sysfs(struct xe_i2c *i2c)
> +{
> + struct device *dev = i2c->drm_dev;
> +
> + device_remove_file(dev, &dev_attr_xe_amc_alert_reason);
> +}
> +
> +static int xe_amc_create_alert_sysfs(struct xe_i2c *i2c)
> +{
> + struct device *dev = i2c->drm_dev;
> +
> + return device_create_file(dev, &dev_attr_xe_amc_alert_reason);
can't we use managed variant of sysfs initialization?
> +}
> +
> static void xe_amc_work(struct work_struct *work)
> {
> const struct amc_request *request = &amc_get_alert_reason;
> @@ -158,12 +199,19 @@ static void xe_amc_work(struct work_struct *work)
> case AMC_ALERT_THERMAL_TRIP:
> case AMC_ALERT_OOB_REQUEST:
> case AMC_ALERT_OOB_RESET:
> - case AMC_ALERT_CATERR:
> - dev_warn(amc->i2c->drm_dev, "AMC Alert: %s\n", amc_alert[alert_reason]);
> - xe_device_declare_wedged(i2c_client_to_xe_device(client));
> + case AMC_ALERT_CATERR: {
> + struct xe_device *xe = i2c_client_to_xe_device(client);
> +
> + dev_warn(amc->i2c->drm_dev,
> + "AMC Alert: %s (%u)\n", amc_alert[alert_reason], alert_reason);
maybe we should use xe_log(AMC) ?
> + amc->alert_reason = alert_reason;
> + xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_VENDOR);
> + xe_device_declare_wedged(xe);
> break;
> + }
> default:
> - dev_warn(amc->i2c->drm_dev, "unknown AMC alert: %d\n", alert_reason);
> + amc->alert_reason = AMC_ALERT_UNKNOWN;
hmm, is AMC_ALERT_UNKNOWN(0) actual AMC ABI definition or it is just a driver define?
shouldn't we still store alert_reason code?
then in sysfs you will be able to emit:
"Unknown alert %#x"
> + dev_warn(amc->i2c->drm_dev, "AMC Alert: unknown (%u)\n", alert_reason);
> break;
> }
> }
> @@ -176,6 +224,7 @@ void xe_amc_handle_alert(struct xe_i2c *i2c)
> int xe_amc_init(struct xe_i2c *i2c)
> {
> struct xe_amc *amc;
> + int ret;
>
> amc = kzalloc_obj(*amc);
> if (!amc)
> @@ -185,13 +234,22 @@ int xe_amc_init(struct xe_i2c *i2c)
> i2c->amc = amc;
> amc->i2c = i2c;
>
> - return 0;
> + amc->alert_reason = AMC_ALERT_NONE;
> + ret = xe_amc_create_alert_sysfs(i2c);
> + if (ret) {
> + kfree(i2c->amc);
> + i2c->amc = NULL;
> + }
> +
> + return ret;
> }
>
> void xe_amc_exit(struct xe_i2c *i2c)
> {
> if (i2c->amc) {
> + xe_amc_remove_alert_sysfs(i2c);
> cancel_work_sync(&i2c->amc->work);
> kfree(i2c->amc);
> + i2c->amc = NULL;
> }
> }
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs
2026-09-10 12:41 ` [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs Badal Nilawar
2026-09-10 12:33 ` sashiko-bot
@ 2026-09-10 14:48 ` Michal Wajdeczko
1 sibling, 0 replies; 11+ messages in thread
From: Michal Wajdeczko @ 2026-09-10 14:48 UTC (permalink / raw)
To: Badal Nilawar, intel-xe, rodrigo.vivi
Cc: anshuman.gupta, raag.jadav, riana.tauro, mallesh.koujalagi,
aravind.iddamsetty, heikki.krogerus, himal.prasad.ghimiray
On 9/10/2026 2:41 PM, Badal Nilawar wrote:
> Expose a read-only sysfs attribute, device_uid, that reports the
> GPU's unique hardware identifier.
>
still no Bspec references
> Assisted-by: Claude:claude-opus-4.8
> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
> ---
> v2:
> - add has flag instead of platform check to determin uid support (Anshuman)
> - Fix the DOC: section (Michal)
> - %s/_uuid/uid (Joonas)
> ---
> .../ABI/testing/sysfs-driver-intel-xe-gpu | 10 ++++++
> drivers/gpu/drm/xe/regs/xe_regs.h | 2 ++
> drivers/gpu/drm/xe/xe_device.c | 4 +++
> drivers/gpu/drm/xe/xe_device_sysfs.c | 36 +++++++++++++++++++
> drivers/gpu/drm/xe/xe_device_types.h | 5 +++
> drivers/gpu/drm/xe/xe_pci.c | 2 ++
> drivers/gpu/drm/xe/xe_pci_types.h | 1 +
> 7 files changed, 60 insertions(+)
> create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
>
> diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu b/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
> new file mode 100644
> index 000000000000..36182bbb1b54
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-gpu
> @@ -0,0 +1,10 @@
> +What: /sys/bus/pci/drivers/xe/.../device_uid
> +Date: September 2026
> +KernelVersion: 7.4
> +Contact: intel-xe@lists.freedesktop.org
> +Description:
> + RO. Unique 64-bit identifier of the GPU device, exposed as
> + hexadecimal value.
> +
> + This sysfs file is present only on Intel Xe platforms that
> + provide a device UID. It is available to all users.
> diff --git a/drivers/gpu/drm/xe/regs/xe_regs.h b/drivers/gpu/drm/xe/regs/xe_regs.h
> index ef4746b7b5d3..437485b5a0af 100644
> --- a/drivers/gpu/drm/xe/regs/xe_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_regs.h
> @@ -30,6 +30,8 @@
> #define XEHP_MTCFG_ADDR XE_REG(0x101800)
> #define TILE_COUNT REG_GENMASK(15, 8)
>
> +#define CRI_DEVICE_UID XE_REG(0x102008)
> +
> #define GGC XE_REG(0x108040)
> #define GMS_MASK REG_GENMASK(15, 8)
> #define GGMS_MASK REG_GENMASK(7, 6)
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index 205cb4e7f9e8..99f6d4184b79 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -671,6 +671,7 @@ static void vf_update_device_info(struct xe_device *xe)
> xe->info.skip_guc_pc = 1;
> xe->info.skip_pcode = 1;
> xe->info.has_drm_ras = false;
> + xe->info.has_device_uid = false;
> }
>
> static int xe_device_vram_alloc(struct xe_device *xe)
> @@ -878,6 +879,9 @@ int xe_device_probe(struct xe_device *xe)
> int err;
> u8 id;
>
> + if (xe->info.has_device_uid)
> + xe->device_uid = xe_mmio_read64_2x32(xe_root_tile_mmio(xe), CRI_DEVICE_UID);
avoid low-level code in top level function, use some helper for this:
xe_probe_uid(xe);
> +
> xe_pat_init_early(xe);
>
> err = xe_sriov_init(xe);
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index a73e0e957cb0..657742c22d90 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
> @@ -8,6 +8,7 @@
> #include <linux/pci.h>
> #include <linux/sysfs.h>
>
> +#include "regs/xe_regs.h"
> #include "xe_device.h"
> #include "xe_device_sysfs.h"
> #include "xe_mmio.h"
> @@ -264,6 +265,35 @@ static const struct attribute_group auto_link_downgrade_attr_group = {
> .attrs = auto_link_downgrade_attrs,
> };
>
> +/**
> + * DOC: device_uid
DOC: Device Unique ID
> + *
> + * On supported platforms, Xe devices expose a unique 64-bit GPU SOC
> + * identifier through the 'device_uid' sysfs entry.
> + *
> + * See Documentation/ABI/testing/sysfs-driver-intel-xe-gpu for the ABI
> + * specification.
> + */
> +
> +static ssize_t
> +device_uid_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> + struct pci_dev *pdev = to_pci_dev(dev);
> + struct xe_device *xe = pdev_to_xe_device(pdev);
> +
> + return sysfs_emit(buf, "%016llx\n", xe->device_uid);
no 0x prefix?
> +}
> +static DEVICE_ATTR_RO(device_uid);
> +
> +static struct attribute *device_uid_attrs[] = {
> + &dev_attr_device_uid.attr,
> + NULL
> +};
> +
> +static const struct attribute_group device_uid_attr_group = {
> + .attrs = device_uid_attrs,
> +};
> +
> int xe_device_sysfs_init(struct xe_device *xe)
> {
> struct device *dev = xe->drm.dev;
> @@ -285,5 +315,11 @@ int xe_device_sysfs_init(struct xe_device *xe)
> return ret;
> }
>
> + if (xe->info.has_device_uid) {
> + ret = devm_device_add_group(dev, &device_uid_attr_group);
> + if (ret)
> + return ret;
> + }
> +
> return 0;
> }
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index f88bacf63c83..65366e8173c9 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -174,6 +174,8 @@ struct xe_device {
> u8 has_cached_pt:1;
> /** @info.has_device_atomics_on_smem: Supports device atomics on SMEM */
> u8 has_device_atomics_on_smem:1;
> + /** @info.has_device_uid: Device supports unique 64-bit GPU SOC ID */
> + u8 has_device_uid:1;
> /** @info.has_drm_ras: Device supports drm_ras (Reliability, Availability, Serviceability) */
> u8 has_drm_ras:1;
> /** @info.has_fan_control: Device supports fan control */
> @@ -258,6 +260,9 @@ struct xe_device {
> bool oob_initialized;
> } wa_active;
>
> + /** @device_uid: unique 64-bit GPU SOC identifier */
> + u64 device_uid;
> +
> /** @survivability: survivability information for device */
> struct xe_survivability survivability;
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index ab4da1d9a9f1..2900f18c7b4c 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -471,6 +471,7 @@ static const struct xe_device_desc cri_desc = {
> PLATFORM(CRESCENTISLAND),
> .dma_mask_size = 52,
> .has_display = false,
> + .has_device_uid = true,
> .has_drm_ras = true,
> .has_flat_ccs = false,
> .has_gsc_nvm = 1,
> @@ -793,6 +794,7 @@ static int xe_info_init_early(struct xe_device *xe,
>
> xe->info.is_dgfx = desc->is_dgfx;
> xe->info.has_cached_pt = desc->has_cached_pt;
> + xe->info.has_device_uid = desc->has_device_uid;
> xe->info.has_drm_ras = desc->has_drm_ras;
> xe->info.has_fan_control = desc->has_fan_control;
> /* runtime fusing may force flat_ccs to disabled later */
> diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
> index fed509ff601e..fe327323a0be 100644
> --- a/drivers/gpu/drm/xe/xe_pci_types.h
> +++ b/drivers/gpu/drm/xe/xe_pci_types.h
> @@ -40,6 +40,7 @@ struct xe_device_desc {
>
> u8 has_cached_pt:1;
> u8 has_display:1;
> + u8 has_device_uid:1;
> u8 has_drm_ras:1;
> u8 has_fan_control:1;
> u8 has_flat_ccs:1;
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.FULL: success for Expose device sysfs for AMC and GPU UUID (rev2)
2026-09-10 12:41 [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID Badal Nilawar
` (4 preceding siblings ...)
2026-09-10 14:29 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-10 20:22 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-09-10 20:22 UTC (permalink / raw)
To: Nilawar, Badal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 49272 bytes --]
== Series Details ==
Series: Expose device sysfs for AMC and GPU UUID (rev2)
URL : https://patchwork.freedesktop.org/series/173403/
State : success
== Summary ==
CI Bug Log - changes from xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8_FULL -> xe-pw-173403v2_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-173403v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#3718] / [Intel XE#6078])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3658] / [Intel XE#7360])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#7059] / [Intel XE#7085])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +7 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#8365]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +9 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +7 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#9204] / [Intel XE#9205]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#9205]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#7358]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373]) +6 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#6974]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#6974])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#7642]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2320]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2321] / [Intel XE#7355]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2321] / [Intel XE#7355])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1424]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#309] / [Intel XE#7343]) +6 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][31] -> [FAIL][32] ([Intel XE#7809])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2286] / [Intel XE#6035])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#4302])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#4354] / [Intel XE#7450])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#8265]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_dsc@dsc-with-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#8265]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#4422] / [Intel XE#7442])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@dsc:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#8586])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_feature_discovery@dsc.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2374] / [Intel XE#6128])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1421]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1397] / [Intel XE#7385] / [Intel XE#9144]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7349])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#352])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6312] / [Intel XE#651]) +8 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#656] / [Intel XE#7905]) +25 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4141]) +14 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7061] / [Intel XE#7356]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +42 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1469] / [Intel XE#7399])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#6312]) +11 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7905]) +32 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7061]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7865]) +19 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2313]) +45 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7061]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#4298] / [Intel XE#5873])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#6901])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#8348])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7591])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7283]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#8303]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7283]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#599]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2393])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c.html
* igt@kms_pm_dc@dc3co-framedrop-check:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#8395] / [Intel XE#8396]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_pm_dc@dc3co-framedrop-check.html
* igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888.html
* igt@kms_pm_dc@dc3co-framedrop-check@psr2-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#8396]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_pm_dc@dc3co-framedrop-check@psr2-xrgb8888.html
* igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#8396]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420.html
* igt@kms_pm_dc@dc5-psr-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#8854])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_pm_dc@dc5-psr-suspend-resume.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#6813])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2893] / [Intel XE#7304]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1489]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#7345]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1406]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1435] / [Intel XE#9142]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#6503])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#1729] / [Intel XE#7424])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1499])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@kms_vrr@negative-basic.html
* igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all:
- shard-bmg: NOTRUN -> [ABORT][89] ([Intel XE#8868])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1447] / [Intel XE#7471])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_compute@ccs-mode-basic.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#8370])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#6540] / [Intel XE#688]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#7482]) +13 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1392]) +6 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@xe_exec_basic@multigpu-once-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#8374]) +9 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#8374]) +8 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html
* igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#9003])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr.html
* igt@xe_exec_multi_queue@many-execs-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#8364]) +24 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-basic-smem.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#8364]) +20 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_reset@cm-multi-queue-gt-reset:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#8369]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
* igt@xe_exec_reset@multi-queue-cancel:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#8369])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@xe_exec_reset@multi-queue-cancel.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
- shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#9096])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-lnl-4/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-cm-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#8378]) +6 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-cm-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#8378]) +10 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2833])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_mempage_offline@inject-single-page:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#9203])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@xe_mempage_offline@inject-single-page.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#6964]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html
* igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#6964]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html
* igt@xe_page_reclaim@pat-index-xd:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#7793]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_page_reclaim@pat-index-xd.html
* igt@xe_pat@pat-sw-hw-compare:
- shard-lnl: NOTRUN -> [FAIL][112] ([Intel XE#7695])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_pat@pat-sw-hw-compare.html
* igt@xe_pat@pat-sw-hw-reset-compare:
- shard-bmg: NOTRUN -> [FAIL][113] ([Intel XE#7695])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@xe_pat@pat-sw-hw-reset-compare.html
* igt@xe_peer2peer@read:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_peer2peer@read.html
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2284] / [Intel XE#7370]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#584] / [Intel XE#7369])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#4650] / [Intel XE#7347])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#944])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#944]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#7174]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3342])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_vfio@bind-unbind-vfs:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#7724])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-8/igt@xe_sriov_vfio@bind-unbind-vfs.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-4/igt@xe_sriov_vram@vf-access-beyond.html
* igt@xe_vm@overcommit-fault-vram-lr:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#7892])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_vm@overcommit-fault-vram-lr.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: NOTRUN -> [DMESG-WARN][128] ([Intel XE#8963])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html
- shard-bmg: NOTRUN -> [DMESG-WARN][129] ([Intel XE#8963])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-9/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- shard-bmg: [ABORT][130] ([Intel XE#8007]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-9/igt@device_reset@unbind-reset-rebind.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-10/igt@device_reset@unbind-reset-rebind.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][132] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [FAIL][134] ([Intel XE#6078]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][136] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_module_load@many-reload:
- shard-bmg: [INCOMPLETE][138] -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-6/igt@xe_module_load@many-reload.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-1/igt@xe_module_load@many-reload.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [ABORT][140] ([Intel XE#9093]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-4/igt@xe_pm@s2idle-d3hot-basic-exec.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@xe_pm@s2idle-d3hot-basic-exec.html
#### Warnings ####
* igt@xe_wedged@basic-wedged:
- shard-bmg: [ABORT][142] ([Intel XE#8591] / [Intel XE#8963]) -> [DMESG-WARN][143] ([Intel XE#8963])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8/shard-bmg-10/igt@xe_wedged@basic-wedged.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/shard-bmg-7/igt@xe_wedged@basic-wedged.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[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#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[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#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
[Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[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#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
[Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591
[Intel XE#8854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8854
[Intel XE#8868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8868
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#9003]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9003
[Intel XE#9093]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9093
[Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096
[Intel XE#9142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9142
[Intel XE#9144]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9144
[Intel XE#9203]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9203
[Intel XE#9204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9204
[Intel XE#9205]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9205
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8 -> xe-pw-173403v2
IGT_9089: ed3e5859856eb6e92a898163015ae0d0aaa13c5c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5720-926dada6864ecdce77fbf2fc9c23d0c58d2f55d8: 926dada6864ecdce77fbf2fc9c23d0c58d2f55d8
xe-pw-173403v2: 173403v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173403v2/index.html
[-- Attachment #2: Type: text/html, Size: 55775 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-09-10 20:22 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-10 12:41 [PATCH v2 0/2] Expose device sysfs for AMC and GPU UUID Badal Nilawar
2026-09-10 12:41 ` [PATCH v2 1/2] drm/xe/i2c: Expose AMC Alert reason sysfs Badal Nilawar
2026-09-10 12:41 ` sashiko-bot
2026-09-10 14:41 ` Michal Wajdeczko
2026-09-10 12:41 ` [PATCH v2 2/2] drm/xe/cri: Expose device UID through sysfs Badal Nilawar
2026-09-10 12:33 ` sashiko-bot
2026-09-10 14:48 ` Michal Wajdeczko
2026-09-10 13:20 ` ✗ CI.checkpatch: warning for Expose device sysfs for AMC and GPU UUID (rev2) Patchwork
2026-09-10 13:22 ` ✓ CI.KUnit: success " Patchwork
2026-09-10 14:29 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-10 20:22 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox