Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/4] drm/xe: i2c support
@ 2025-06-26 13:56 Heikki Krogerus
  2025-06-26 13:56 ` [PATCH v4 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
                   ` (7 more replies)
  0 siblings, 8 replies; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-26 13:56 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi
  Cc: Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

Hi,

Changed since v3:
- Cleanups as requested by Rodrigo.
- The licence is now changed, but still need confirmation for it!

Changed since v2:
- Added dependency on regmap when i2c is enabled.

Changed since v1:
- Now rebased on top of drm-tip.
- No longer ignoring errors from xe_i2c_probe().
- Cleanups pointed out by Lucas.

I've also included followup patches from Raag and Riana to this
series.

Original cover letter:

Some of the future GPUs will provide access to the on-board Synopsys
DesignWare I2C host adapter. The i2c is used to connect various
microcontrollers. The initially supported microcontroller unit is
called Add-In Management Controller (AMC).

Thanks,

Heikki Krogerus (2):
  i2c: designware: Add quirk for Intel Xe
  drm/xe: Support for I2C attached MCUs

Raag Jadav (1):
  drm/xe/pm: Wire up suspend/resume for I2C controller

Riana Tauro (1):
  drm/xe/xe_i2c: Add support for i2c in survivability mode

 drivers/gpu/drm/xe/Kconfig                  |   1 +
 drivers/gpu/drm/xe/Makefile                 |   1 +
 drivers/gpu/drm/xe/regs/xe_i2c_regs.h       |  20 ++
 drivers/gpu/drm/xe/regs/xe_irq_regs.h       |   1 +
 drivers/gpu/drm/xe/regs/xe_pmt.h            |   2 +-
 drivers/gpu/drm/xe/regs/xe_regs.h           |   2 +
 drivers/gpu/drm/xe/xe_device.c              |   5 +
 drivers/gpu/drm/xe/xe_device_types.h        |   4 +
 drivers/gpu/drm/xe/xe_i2c.c                 | 326 ++++++++++++++++++++
 drivers/gpu/drm/xe/xe_i2c.h                 |  62 ++++
 drivers/gpu/drm/xe/xe_irq.c                 |   2 +
 drivers/gpu/drm/xe/xe_pm.c                  |   9 +
 drivers/gpu/drm/xe/xe_survivability_mode.c  |  23 +-
 drivers/i2c/busses/i2c-designware-platdrv.c |  18 +-
 14 files changed, 461 insertions(+), 15 deletions(-)
 create mode 100644 drivers/gpu/drm/xe/regs/xe_i2c_regs.h
 create mode 100644 drivers/gpu/drm/xe/xe_i2c.c
 create mode 100644 drivers/gpu/drm/xe/xe_i2c.h

-- 
2.47.2


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [PATCH v4 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
@ 2025-06-26 13:56 ` Heikki Krogerus
  2025-06-26 13:56 ` [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-26 13:56 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi
  Cc: Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

The regmap is coming from the parent also in case of Xe
GPUs. Reusing the Wangxun quirk for that.

Originally-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Acked-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
---
 drivers/i2c/busses/i2c-designware-platdrv.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/drivers/i2c/busses/i2c-designware-platdrv.c b/drivers/i2c/busses/i2c-designware-platdrv.c
index 879719e91df2..a35e4c64a1d4 100644
--- a/drivers/i2c/busses/i2c-designware-platdrv.c
+++ b/drivers/i2c/busses/i2c-designware-platdrv.c
@@ -101,7 +101,7 @@ static int bt1_i2c_request_regs(struct dw_i2c_dev *dev)
 }
 #endif
 
-static int txgbe_i2c_request_regs(struct dw_i2c_dev *dev)
+static int dw_i2c_get_parent_regmap(struct dw_i2c_dev *dev)
 {
 	dev->map = dev_get_regmap(dev->dev->parent, NULL);
 	if (!dev->map)
@@ -123,12 +123,15 @@ static int dw_i2c_plat_request_regs(struct dw_i2c_dev *dev)
 	struct platform_device *pdev = to_platform_device(dev->dev);
 	int ret;
 
+	if (device_is_compatible(dev->dev, "intel,xe-i2c"))
+		return dw_i2c_get_parent_regmap(dev);
+
 	switch (dev->flags & MODEL_MASK) {
 	case MODEL_BAIKAL_BT1:
 		ret = bt1_i2c_request_regs(dev);
 		break;
 	case MODEL_WANGXUN_SP:
-		ret = txgbe_i2c_request_regs(dev);
+		ret = dw_i2c_get_parent_regmap(dev);
 		break;
 	default:
 		dev->base = devm_platform_ioremap_resource(pdev, 0);
@@ -205,25 +208,28 @@ static void i2c_dw_remove_lock_support(struct dw_i2c_dev *dev)
 
 static int dw_i2c_plat_probe(struct platform_device *pdev)
 {
+	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
 	struct device *device = &pdev->dev;
 	struct i2c_adapter *adap;
 	struct dw_i2c_dev *dev;
 	int irq, ret;
 
-	irq = platform_get_irq(pdev, 0);
-	if (irq < 0)
+	irq = platform_get_irq_optional(pdev, 0);
+	if (irq == -ENXIO)
+		flags |= ACCESS_POLLING;
+	else if (irq < 0)
 		return irq;
 
 	dev = devm_kzalloc(device, sizeof(*dev), GFP_KERNEL);
 	if (!dev)
 		return -ENOMEM;
 
-	dev->flags = (uintptr_t)device_get_match_data(device);
 	if (device_property_present(device, "wx,i2c-snps-model"))
-		dev->flags = MODEL_WANGXUN_SP | ACCESS_POLLING;
+		flags = MODEL_WANGXUN_SP | ACCESS_POLLING;
 
 	dev->dev = device;
 	dev->irq = irq;
+	dev->flags = flags;
 	platform_set_drvdata(pdev, dev);
 
 	ret = dw_i2c_plat_request_regs(dev);
-- 
2.47.2


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
  2025-06-26 13:56 ` [PATCH v4 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
@ 2025-06-26 13:56 ` Heikki Krogerus
  2025-06-26 14:21   ` Andy Shevchenko
  2025-06-26 13:56 ` [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-26 13:56 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi
  Cc: Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

Adding adaption/glue layer where the I2C host adapter
(Synopsys DesignWare I2C adapter) and the I2C clients (the
microcontroller units) are enumerated.

The microcontroller units (MCU) that are attached to the GPU
depend on the OEM. The initially supported MCU will be the
Add-In Management Controller (AMC).

Originally-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
---
 drivers/gpu/drm/xe/Kconfig            |   1 +
 drivers/gpu/drm/xe/Makefile           |   1 +
 drivers/gpu/drm/xe/regs/xe_i2c_regs.h |  15 ++
 drivers/gpu/drm/xe/regs/xe_irq_regs.h |   1 +
 drivers/gpu/drm/xe/regs/xe_pmt.h      |   2 +-
 drivers/gpu/drm/xe/regs/xe_regs.h     |   2 +
 drivers/gpu/drm/xe/xe_device.c        |   5 +
 drivers/gpu/drm/xe/xe_device_types.h  |   4 +
 drivers/gpu/drm/xe/xe_i2c.c           | 297 ++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_i2c.h           |  58 +++++
 drivers/gpu/drm/xe/xe_irq.c           |   2 +
 11 files changed, 387 insertions(+), 1 deletion(-)
 create mode 100644 drivers/gpu/drm/xe/regs/xe_i2c_regs.h
 create mode 100644 drivers/gpu/drm/xe/xe_i2c.c
 create mode 100644 drivers/gpu/drm/xe/xe_i2c.h

diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
index 30ed74ad29ab..257bbb69d6ca 100644
--- a/drivers/gpu/drm/xe/Kconfig
+++ b/drivers/gpu/drm/xe/Kconfig
@@ -44,6 +44,7 @@ config DRM_XE
 	select WANT_DEV_COREDUMP
 	select AUXILIARY_BUS
 	select HMM_MIRROR
+	select REGMAP if I2C
 	help
 	  Driver for Intel Xe2 series GPUs and later. Experimental support
 	  for Xe series is also available.
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index eee6bac01a00..4b8a8fcd3959 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -125,6 +125,7 @@ xe-y += xe_bb.o \
 	xe_wait_user_fence.o \
 	xe_wopcm.o
 
+xe-$(CONFIG_I2C)	+= xe_i2c.o
 xe-$(CONFIG_HMM_MIRROR) += xe_hmm.o
 xe-$(CONFIG_DRM_XE_GPUSVM) += xe_svm.o
 
diff --git a/drivers/gpu/drm/xe/regs/xe_i2c_regs.h b/drivers/gpu/drm/xe/regs/xe_i2c_regs.h
new file mode 100644
index 000000000000..92dae4487614
--- /dev/null
+++ b/drivers/gpu/drm/xe/regs/xe_i2c_regs.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: MIT */
+#ifndef _XE_I2C_REGS_H_
+#define _XE_I2C_REGS_H_
+
+#include "xe_reg_defs.h"
+#include "xe_regs.h"
+
+#define I2C_BRIDGE_OFFSET		(SOC_BASE + 0xd9000)
+#define I2C_CONFIG_SPACE_OFFSET		(SOC_BASE + 0xf6000)
+#define I2C_MEM_SPACE_OFFSET		(SOC_BASE + 0xf7400)
+
+#define REG_SG_REMAP_ADDR_PREFIX	XE_REG(SOC_BASE + 0x0164)
+#define REG_SG_REMAP_ADDR_POSTFIX	XE_REG(SOC_BASE + 0x0168)
+
+#endif /* _XE_I2C_REGS_H_ */
diff --git a/drivers/gpu/drm/xe/regs/xe_irq_regs.h b/drivers/gpu/drm/xe/regs/xe_irq_regs.h
index f0ecfcac4003..13635e4331d4 100644
--- a/drivers/gpu/drm/xe/regs/xe_irq_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_irq_regs.h
@@ -19,6 +19,7 @@
 #define   MASTER_IRQ				REG_BIT(31)
 #define   GU_MISC_IRQ				REG_BIT(29)
 #define   DISPLAY_IRQ				REG_BIT(16)
+#define   I2C_IRQ				REG_BIT(12)
 #define   GT_DW_IRQ(x)				REG_BIT(x)
 
 /*
diff --git a/drivers/gpu/drm/xe/regs/xe_pmt.h b/drivers/gpu/drm/xe/regs/xe_pmt.h
index b0efd9b48d1e..2995d72c3f78 100644
--- a/drivers/gpu/drm/xe/regs/xe_pmt.h
+++ b/drivers/gpu/drm/xe/regs/xe_pmt.h
@@ -5,7 +5,7 @@
 #ifndef _XE_PMT_H_
 #define _XE_PMT_H_
 
-#define SOC_BASE			0x280000
+#include "xe_regs.h"
 
 #define BMG_PMT_BASE_OFFSET		0xDB000
 #define BMG_DISCOVERY_OFFSET		(SOC_BASE + BMG_PMT_BASE_OFFSET)
diff --git a/drivers/gpu/drm/xe/regs/xe_regs.h b/drivers/gpu/drm/xe/regs/xe_regs.h
index 3abb17d2ca33..1926b4044314 100644
--- a/drivers/gpu/drm/xe/regs/xe_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_regs.h
@@ -7,6 +7,8 @@
 
 #include "regs/xe_reg_defs.h"
 
+#define SOC_BASE				0x280000
+
 #define GU_CNTL_PROTECTED			XE_REG(0x10100C)
 #define   DRIVERINT_FLR_DIS			REG_BIT(31)
 
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index cd17c1354ab3..71356ee31e9d 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -43,6 +43,7 @@
 #include "xe_guc_pc.h"
 #include "xe_hw_engine_group.h"
 #include "xe_hwmon.h"
+#include "xe_i2c.h"
 #include "xe_irq.h"
 #include "xe_memirq.h"
 #include "xe_mmio.h"
@@ -925,6 +926,10 @@ int xe_device_probe(struct xe_device *xe)
 	if (err)
 		goto err_unregister_display;
 
+	err = xe_i2c_probe(xe);
+	if (err)
+		goto err_unregister_display;
+
 	for_each_gt(gt, xe, id)
 		xe_gt_sanitize_freq(gt);
 
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 6aca4b1a2824..dffff2d80f18 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -34,6 +34,7 @@ struct dram_info;
 struct intel_display;
 struct intel_dg_nvm_dev;
 struct xe_ggtt;
+struct xe_i2c;
 struct xe_pat_ops;
 struct xe_pxp;
 
@@ -583,6 +584,9 @@ struct xe_device {
 	/** @pmu: performance monitoring unit */
 	struct xe_pmu pmu;
 
+	/** @i2c: I2C host controller */
+	struct xe_i2c *i2c;
+
 	/** @atomic_svm_timeslice_ms: Atomic SVM fault timeslice MS */
 	u32 atomic_svm_timeslice_ms;
 
diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
new file mode 100644
index 000000000000..bfbfe1de7f77
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_i2c.c
@@ -0,0 +1,297 @@
+/* SPDX-License-Identifier: GPL-2.0 OR MIT */
+/*
+ * Intel Xe I2C attached Microcontroller Units (MCU)
+ *
+ * Copyright (C) 2025 Intel Corporation.
+ */
+
+#include <linux/array_size.h>
+#include <linux/container_of.h>
+#include <linux/device.h>
+#include <linux/err.h>
+#include <linux/i2c.h>
+#include <linux/ioport.h>
+#include <linux/irq.h>
+#include <linux/irqdomain.h>
+#include <linux/notifier.h>
+#include <linux/pci.h>
+#include <linux/platform_device.h>
+#include <linux/property.h>
+#include <linux/regmap.h>
+#include <linux/sprintf.h>
+#include <linux/string.h>
+#include <linux/types.h>
+#include <linux/workqueue.h>
+
+#include "regs/xe_i2c_regs.h"
+#include "regs/xe_irq_regs.h"
+
+#include "xe_device.h"
+#include "xe_device_types.h"
+#include "xe_i2c.h"
+#include "xe_mmio.h"
+#include "xe_platform_types.h"
+
+/**
+ * DOC: Xe I2C devices
+ *
+ * Register platform device for the I2C host controller (Synpsys DesignWare I2C)
+ * if the registers of that controller are mapped to the MMIO, and also the I2C
+ * client device for the Add-In Management Controller (the MCU) attached to the
+ * host controller.
+ *
+ * See drivers/i2c/busses/i2c-designware-* for more information on the I2C host
+ * controller.
+ */
+
+static const char adapter_name[] = "i2c_designware";
+
+static const struct property_entry xe_i2c_adapter_properties[] = {
+	PROPERTY_ENTRY_STRING("compatible", "intel,xe-i2c"),
+	PROPERTY_ENTRY_U32("clock-frequency", I2C_MAX_FAST_MODE_PLUS_FREQ),
+	{ }
+};
+
+static inline void xe_i2c_read_endpoint(struct xe_mmio *mmio, void *ep)
+{
+	u32 *val = ep;
+
+	val[0] = xe_mmio_read32(mmio, REG_SG_REMAP_ADDR_PREFIX);
+	val[1] = xe_mmio_read32(mmio, REG_SG_REMAP_ADDR_POSTFIX);
+}
+
+static void xe_i2c_client_work(struct work_struct *work)
+{
+	struct xe_i2c *i2c = container_of(work, struct xe_i2c, work);
+	struct i2c_board_info info = {
+		.type	= "amc",
+		.flags	= I2C_CLIENT_HOST_NOTIFY,
+		.addr	= i2c->ep.addr[1],
+	};
+
+	i2c->client[0] = i2c_new_client_device(i2c->adapter, &info);
+}
+
+static int xe_i2c_notifier(struct notifier_block *nb, unsigned long action, void *data)
+{
+	struct xe_i2c *i2c = container_of(nb, struct xe_i2c, bus_notifier);
+	struct i2c_adapter *adapter = i2c_verify_adapter(data);
+	struct device *dev = data;
+
+	if (action == BUS_NOTIFY_ADD_DEVICE &&
+	    adapter && dev->parent == &i2c->pdev->dev) {
+		i2c->adapter = adapter;
+		schedule_work(&i2c->work);
+		return NOTIFY_OK;
+	}
+
+	return NOTIFY_DONE;
+}
+
+static int xe_i2c_register_adapter(struct xe_i2c *i2c)
+{
+	struct pci_dev *pci = to_pci_dev(i2c->drm_dev);
+	struct platform_device *pdev;
+	struct fwnode_handle *fwnode;
+	int ret;
+
+	fwnode = fwnode_create_software_node(xe_i2c_adapter_properties, NULL);
+	if (!fwnode)
+		return -ENOMEM;
+
+	/*
+	 * Not using platform_device_register_full() here because we don't have
+	 * a handle to the platform_device before it returns. xe_i2c_notifier()
+	 * uses that handle, but it may be called before
+	 * platform_device_register_full() is done.
+	 */
+	pdev = platform_device_alloc(adapter_name, pci_dev_id(pci));
+	if (!pdev) {
+		ret = -ENOMEM;
+		goto err_fwnode_remove;
+	}
+
+	if (i2c->adapter_irq) {
+		struct resource	res = { };
+
+		res.start = i2c->adapter_irq;
+		res.name = "xe_i2c";
+		res.flags = IORESOURCE_IRQ;
+
+		ret = platform_device_add_resources(pdev, &res, 1);
+		if (ret)
+			goto err_pdev_put;
+	}
+
+	pdev->dev.parent = i2c->drm_dev;
+	pdev->dev.fwnode = fwnode;
+	i2c->adapter_node = fwnode;
+	i2c->pdev = pdev;
+
+	ret = platform_device_add(pdev);
+	if (ret)
+		goto err_pdev_put;
+
+	return 0;
+
+err_pdev_put:
+	platform_device_put(pdev);
+err_fwnode_remove:
+	fwnode_remove_software_node(fwnode);
+
+	return ret;
+}
+
+static void xe_i2c_unregister_adapter(struct xe_i2c *i2c)
+{
+	platform_device_unregister(i2c->pdev);
+	fwnode_remove_software_node(i2c->adapter_node);
+}
+
+/**
+ * xe_i2c_irq_handler: Handler for I2C interrupts
+ * @xe: xe device instance
+ * @master_ctl: interrupt register
+ *
+ * Forward interrupts generated by the I2C host adapter to the I2C host adapter
+ * driver.
+ */
+void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl)
+{
+	if (!xe->i2c || !xe->i2c->adapter_irq)
+		return;
+
+	if (master_ctl & I2C_IRQ)
+		generic_handle_irq_safe(xe->i2c->adapter_irq);
+}
+
+static int xe_i2c_irq_map(struct irq_domain *h, unsigned int virq,
+			  irq_hw_number_t hw_irq_num)
+{
+	irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);
+	return 0;
+}
+
+static const struct irq_domain_ops xe_i2c_irq_ops = {
+	.map = xe_i2c_irq_map,
+};
+
+static int xe_i2c_create_irq(struct xe_i2c *i2c)
+{
+	struct irq_domain *domain;
+
+	if (!(i2c->ep.capabilities & XE_I2C_EP_CAP_IRQ))
+		return 0;
+
+	domain = irq_domain_create_linear(dev_fwnode(i2c->drm_dev), 1, &xe_i2c_irq_ops, NULL);
+	if (!domain)
+		return -ENOMEM;
+
+	i2c->adapter_irq = irq_create_mapping(domain, 0);
+	i2c->irqdomain = domain;
+
+	return 0;
+}
+
+static void xe_i2c_remove_irq(struct xe_i2c *i2c)
+{
+	if (i2c->irqdomain) {
+		irq_dispose_mapping(i2c->adapter_irq);
+		irq_domain_remove(i2c->irqdomain);
+	}
+}
+
+static int xe_i2c_read(void *context, unsigned int reg, unsigned int *val)
+{
+	struct xe_i2c *i2c = context;
+
+	*val = xe_mmio_read32(i2c->mmio, XE_REG(reg + I2C_MEM_SPACE_OFFSET));
+
+	return 0;
+}
+
+static int xe_i2c_write(void *context, unsigned int reg, unsigned int val)
+{
+	struct xe_i2c *i2c = context;
+
+	xe_mmio_write32(i2c->mmio, XE_REG(reg + I2C_MEM_SPACE_OFFSET), val);
+
+	return 0;
+}
+
+static const struct regmap_config i2c_regmap_config = {
+	.reg_bits = 32,
+	.val_bits = 32,
+	.reg_read = xe_i2c_read,
+	.reg_write = xe_i2c_write,
+	.fast_io = true,
+};
+
+static void xe_i2c_remove(void *data)
+{
+	struct xe_i2c *i2c = data;
+	int i;
+
+	for (i = 0; i < XE_I2C_MAX_CLIENTS; i++)
+		i2c_unregister_device(i2c->client[i]);
+
+	bus_unregister_notifier(&i2c_bus_type, &i2c->bus_notifier);
+	xe_i2c_unregister_adapter(i2c);
+	xe_i2c_remove_irq(i2c);
+}
+
+/**
+ * xe_i2c_probe: Probe the I2C host adapter and the I2C clients attached to it
+ * @xe: xe device instance
+ *
+ * Register all the I2C devices described in the I2C Endpoint data structure.
+ *
+ * Return: 0 on success, error code on failure
+ */
+int xe_i2c_probe(struct xe_device *xe)
+{
+	struct xe_i2c_endpoint ep;
+	struct regmap *regmap;
+	struct xe_i2c *i2c;
+	int ret;
+
+	xe_i2c_read_endpoint(xe_root_tile_mmio(xe), &ep);
+	if (ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
+		return 0;
+
+	i2c = devm_kzalloc(xe->drm.dev, sizeof(*i2c), GFP_KERNEL);
+	if (!i2c)
+		return -ENOMEM;
+
+	INIT_WORK(&i2c->work, xe_i2c_client_work);
+	i2c->mmio = xe_root_tile_mmio(xe);
+	i2c->drm_dev = xe->drm.dev;
+	i2c->ep = ep;
+
+	regmap = devm_regmap_init(i2c->drm_dev, NULL, i2c, &i2c_regmap_config);
+	if (IS_ERR(regmap))
+		return PTR_ERR(regmap);
+
+	i2c->bus_notifier.notifier_call = xe_i2c_notifier;
+	ret = bus_register_notifier(&i2c_bus_type, &i2c->bus_notifier);
+	if (ret)
+		return ret;
+
+	ret = xe_i2c_create_irq(i2c);
+	if (ret)
+		goto err_unregister_notifier;
+
+	ret = xe_i2c_register_adapter(i2c);
+	if (ret)
+		goto err_remove_irq;
+
+	return devm_add_action_or_reset(i2c->drm_dev, xe_i2c_remove, i2c);
+
+err_remove_irq:
+	xe_i2c_remove_irq(i2c);
+
+err_unregister_notifier:
+	bus_unregister_notifier(&i2c_bus_type, &i2c->bus_notifier);
+
+	return ret;
+}
diff --git a/drivers/gpu/drm/xe/xe_i2c.h b/drivers/gpu/drm/xe/xe_i2c.h
new file mode 100644
index 000000000000..7ea40f4e4aa4
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_i2c.h
@@ -0,0 +1,58 @@
+/* SPDX-License-Identifier: MIT */
+#ifndef _XE_I2C_H_
+#define _XE_I2C_H_
+
+#include <linux/bits.h>
+#include <linux/notifier.h>
+#include <linux/types.h>
+#include <linux/workqueue.h>
+
+struct device;
+struct fwnode_handle;
+struct i2c_adapter;
+struct i2c_client;
+struct irq_domain;
+struct platform_device;
+struct xe_device;
+struct xe_mmio;
+
+#define XE_I2C_MAX_CLIENTS		3
+
+#define XE_I2C_EP_COOKIE_DEVICE		0xde
+
+/* Endpoint Capabilities */
+#define XE_I2C_EP_CAP_IRQ		BIT(0)
+
+struct xe_i2c_endpoint {
+	u8 cookie;
+	u8 capabilities;
+	u16 addr[XE_I2C_MAX_CLIENTS];
+};
+
+struct xe_i2c {
+	struct fwnode_handle *adapter_node;
+	struct platform_device *pdev;
+	struct i2c_adapter *adapter;
+	struct i2c_client *client[XE_I2C_MAX_CLIENTS];
+
+	struct notifier_block bus_notifier;
+	struct work_struct work;
+
+	struct irq_domain *irqdomain;
+	int adapter_irq;
+
+	struct xe_i2c_endpoint ep;
+	struct device *drm_dev;
+
+	struct xe_mmio *mmio;
+};
+
+#if IS_ENABLED(CONFIG_I2C)
+int xe_i2c_probe(struct xe_device *xe);
+void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl);
+#else
+static inline int xe_i2c_probe(struct xe_device *xe) { return 0; }
+static inline void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl) { }
+#endif
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_irq.c b/drivers/gpu/drm/xe/xe_irq.c
index 5362d3174b06..c43e62dc692e 100644
--- a/drivers/gpu/drm/xe/xe_irq.c
+++ b/drivers/gpu/drm/xe/xe_irq.c
@@ -18,6 +18,7 @@
 #include "xe_gt.h"
 #include "xe_guc.h"
 #include "xe_hw_engine.h"
+#include "xe_i2c.h"
 #include "xe_memirq.h"
 #include "xe_mmio.h"
 #include "xe_pxp.h"
@@ -476,6 +477,7 @@ static irqreturn_t dg1_irq_handler(int irq, void *arg)
 			if (xe->info.has_heci_cscfi)
 				xe_heci_csc_irq_handler(xe, master_ctl);
 			xe_display_irq_handler(xe, master_ctl);
+			xe_i2c_irq_handler(xe, master_ctl);
 			gu_misc_iir = gu_misc_irq_ack(xe, master_ctl);
 		}
 	}
-- 
2.47.2


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
  2025-06-26 13:56 ` [PATCH v4 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
  2025-06-26 13:56 ` [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
@ 2025-06-26 13:56 ` Heikki Krogerus
  2025-06-27 12:45   ` Raag Jadav
  2025-06-26 13:56 ` [PATCH v4 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-26 13:56 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi
  Cc: Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel, Karthik Poosa

From: Raag Jadav <raag.jadav@intel.com>

Wire up suspend/resume handles for I2C controller to match its power
state with SGUnit.

Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Karthik Poosa <karthik.poosa@intel.com>
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
---
 drivers/gpu/drm/xe/regs/xe_i2c_regs.h |  5 +++++
 drivers/gpu/drm/xe/xe_i2c.c           | 29 +++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_i2c.h           |  4 ++++
 drivers/gpu/drm/xe/xe_pm.c            |  9 +++++++++
 4 files changed, 47 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_i2c_regs.h b/drivers/gpu/drm/xe/regs/xe_i2c_regs.h
index 92dae4487614..af781c8e4a80 100644
--- a/drivers/gpu/drm/xe/regs/xe_i2c_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_i2c_regs.h
@@ -2,6 +2,8 @@
 #ifndef _XE_I2C_REGS_H_
 #define _XE_I2C_REGS_H_
 
+#include <linux/pci_regs.h>
+
 #include "xe_reg_defs.h"
 #include "xe_regs.h"
 
@@ -12,4 +14,7 @@
 #define REG_SG_REMAP_ADDR_PREFIX	XE_REG(SOC_BASE + 0x0164)
 #define REG_SG_REMAP_ADDR_POSTFIX	XE_REG(SOC_BASE + 0x0168)
 
+#define I2C_CONFIG_CMD			XE_REG(I2C_CONFIG_SPACE_OFFSET + PCI_COMMAND)
+#define I2C_CONFIG_PMCSR		XE_REG(I2C_CONFIG_SPACE_OFFSET + 0x84)
+
 #endif /* _XE_I2C_REGS_H_ */
diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
index bfbfe1de7f77..0227fcba2168 100644
--- a/drivers/gpu/drm/xe/xe_i2c.c
+++ b/drivers/gpu/drm/xe/xe_i2c.c
@@ -227,6 +227,31 @@ static const struct regmap_config i2c_regmap_config = {
 	.fast_io = true,
 };
 
+void xe_i2c_pm_suspend(struct xe_device *xe)
+{
+	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
+
+	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
+		return;
+
+	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D3hot);
+	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));
+}
+
+void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold)
+{
+	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
+
+	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
+		return;
+
+	if (d3cold)
+		xe_mmio_rmw32(mmio, I2C_CONFIG_CMD, 0, PCI_COMMAND_MEMORY);
+
+	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D0);
+	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));
+}
+
 static void xe_i2c_remove(void *data)
 {
 	struct xe_i2c *i2c = data;
@@ -267,6 +292,10 @@ int xe_i2c_probe(struct xe_device *xe)
 	i2c->mmio = xe_root_tile_mmio(xe);
 	i2c->drm_dev = xe->drm.dev;
 	i2c->ep = ep;
+	xe->i2c = i2c;
+
+	/* PCI PM isn't aware of this device, bring it up and match it with SGUnit state. */
+	xe_i2c_pm_resume(xe, true);
 
 	regmap = devm_regmap_init(i2c->drm_dev, NULL, i2c, &i2c_regmap_config);
 	if (IS_ERR(regmap))
diff --git a/drivers/gpu/drm/xe/xe_i2c.h b/drivers/gpu/drm/xe/xe_i2c.h
index 7ea40f4e4aa4..b767ed8ce52b 100644
--- a/drivers/gpu/drm/xe/xe_i2c.h
+++ b/drivers/gpu/drm/xe/xe_i2c.h
@@ -50,9 +50,13 @@ struct xe_i2c {
 #if IS_ENABLED(CONFIG_I2C)
 int xe_i2c_probe(struct xe_device *xe);
 void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl);
+void xe_i2c_pm_suspend(struct xe_device *xe);
+void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold);
 #else
 static inline int xe_i2c_probe(struct xe_device *xe) { return 0; }
 static inline void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl) { }
+static inline void xe_i2c_pm_suspend(struct xe_device *xe) { }
+static inline void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold) { }
 #endif
 
 #endif
diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
index 26e95460af87..46471e166b96 100644
--- a/drivers/gpu/drm/xe/xe_pm.c
+++ b/drivers/gpu/drm/xe/xe_pm.c
@@ -19,6 +19,7 @@
 #include "xe_ggtt.h"
 #include "xe_gt.h"
 #include "xe_guc.h"
+#include "xe_i2c.h"
 #include "xe_irq.h"
 #include "xe_pcode.h"
 #include "xe_pxp.h"
@@ -146,6 +147,8 @@ int xe_pm_suspend(struct xe_device *xe)
 
 	xe_display_pm_suspend_late(xe);
 
+	xe_i2c_pm_suspend(xe);
+
 	drm_dbg(&xe->drm, "Device suspended\n");
 	return 0;
 
@@ -191,6 +194,8 @@ int xe_pm_resume(struct xe_device *xe)
 	if (err)
 		goto err;
 
+	xe_i2c_pm_resume(xe, xe->d3cold.allowed);
+
 	xe_irq_resume(xe);
 
 	for_each_gt(gt, xe, id)
@@ -484,6 +489,8 @@ int xe_pm_runtime_suspend(struct xe_device *xe)
 
 	xe_display_pm_runtime_suspend_late(xe);
 
+	xe_i2c_pm_suspend(xe);
+
 	xe_rpm_lockmap_release(xe);
 	xe_pm_write_callback_task(xe, NULL);
 	return 0;
@@ -531,6 +538,8 @@ int xe_pm_runtime_resume(struct xe_device *xe)
 			goto out;
 	}
 
+	xe_i2c_pm_resume(xe, xe->d3cold.allowed);
+
 	xe_irq_resume(xe);
 
 	for_each_gt(gt, xe, id)
-- 
2.47.2


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH v4 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (2 preceding siblings ...)
  2025-06-26 13:56 ` [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
@ 2025-06-26 13:56 ` Heikki Krogerus
  2025-06-26 14:24   ` Andy Shevchenko
  2025-06-26 15:46 ` ✗ CI.checkpatch: warning for drm/xe: i2c support (rev4) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-26 13:56 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi
  Cc: Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

From: Riana Tauro <riana.tauro@intel.com>

Initialize i2c in survivability mode to allow firmware
update of Add-In Management Controller (AMC) in survivability mode

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_survivability_mode.c | 23 ++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c
index 1f710b3fc599..3800cc855c22 100644
--- a/drivers/gpu/drm/xe/xe_survivability_mode.c
+++ b/drivers/gpu/drm/xe/xe_survivability_mode.c
@@ -14,6 +14,7 @@
 #include "xe_device.h"
 #include "xe_gt.h"
 #include "xe_heci_gsc.h"
+#include "xe_i2c.h"
 #include "xe_mmio.h"
 #include "xe_pcode_api.h"
 #include "xe_vsec.h"
@@ -173,20 +174,26 @@ static int enable_survivability_mode(struct pci_dev *pdev)
 	survivability->mode = true;
 
 	ret = xe_heci_gsc_init(xe);
-	if (ret) {
-		/*
-		 * But if it fails, device can't enter survivability
-		 * so move it back for correct error handling
-		 */
-		survivability->mode = false;
-		return ret;
-	}
+	if (ret)
+		goto err;
 
 	xe_vsec_init(xe);
 
+	ret = xe_i2c_probe(xe);
+	if (ret)
+		goto err;
+
 	dev_err(dev, "In Survivability Mode\n");
 
 	return 0;
+
+err:
+	/*
+	 * But if it fails, device can't enter survivability
+	 * so move it back for correct error handling
+	 */
+	survivability->mode = false;
+	return ret;
 }
 
 /**
-- 
2.47.2


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs
  2025-06-26 13:56 ` [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
@ 2025-06-26 14:21   ` Andy Shevchenko
  2025-06-27  8:56     ` Heikki Krogerus
  0 siblings, 1 reply; 17+ messages in thread
From: Andy Shevchenko @ 2025-06-26 14:21 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Mika Westerberg,
	Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

On Thu, Jun 26, 2025 at 04:56:07PM +0300, Heikki Krogerus wrote:
> Adding adaption/glue layer where the I2C host adapter
> (Synopsys DesignWare I2C adapter) and the I2C clients (the
> microcontroller units) are enumerated.
> 
> The microcontroller units (MCU) that are attached to the GPU
> depend on the OEM. The initially supported MCU will be the
> Add-In Management Controller (AMC).

...

> +static int xe_i2c_register_adapter(struct xe_i2c *i2c)
> +{
> +	struct pci_dev *pci = to_pci_dev(i2c->drm_dev);
> +	struct platform_device *pdev;
> +	struct fwnode_handle *fwnode;
> +	int ret;
> +
> +	fwnode = fwnode_create_software_node(xe_i2c_adapter_properties, NULL);
> +	if (!fwnode)
> +		return -ENOMEM;
> +
> +	/*
> +	 * Not using platform_device_register_full() here because we don't have
> +	 * a handle to the platform_device before it returns. xe_i2c_notifier()
> +	 * uses that handle, but it may be called before
> +	 * platform_device_register_full() is done.
> +	 */
> +	pdev = platform_device_alloc(adapter_name, pci_dev_id(pci));
> +	if (!pdev) {
> +		ret = -ENOMEM;
> +		goto err_fwnode_remove;
> +	}
> +
> +	if (i2c->adapter_irq) {

> +		struct resource	res = { };
> +
> +		res.start = i2c->adapter_irq;
> +		res.name = "xe_i2c";
> +		res.flags = IORESOURCE_IRQ;


		struct resource	res;

		res = DEFINE_RES_IRQ_NAMED(i2c->adapter_irq, "xe_i2c");

> +		ret = platform_device_add_resources(pdev, &res, 1);
> +		if (ret)
> +			goto err_pdev_put;
> +	}
> +
> +	pdev->dev.parent = i2c->drm_dev;
> +	pdev->dev.fwnode = fwnode;
> +	i2c->adapter_node = fwnode;
> +	i2c->pdev = pdev;
> +
> +	ret = platform_device_add(pdev);
> +	if (ret)
> +		goto err_pdev_put;
> +
> +	return 0;
> +
> +err_pdev_put:
> +	platform_device_put(pdev);
> +err_fwnode_remove:
> +	fwnode_remove_software_node(fwnode);
> +
> +	return ret;
> +}

...

> +static int xe_i2c_irq_map(struct irq_domain *h, unsigned int virq,
> +			  irq_hw_number_t hw_irq_num)
> +{
> +	irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);

Wondering if you need to setup a custom lockdep class here.

> +	return 0;
> +}

...

> +static void xe_i2c_remove_irq(struct xe_i2c *i2c)
> +{
> +	if (i2c->irqdomain) {

	if (!i2c->irqdomain)
		return;

> +		irq_dispose_mapping(i2c->adapter_irq);
> +		irq_domain_remove(i2c->irqdomain);
> +	}
> +}

...

> +static void xe_i2c_remove(void *data)
> +{
> +	struct xe_i2c *i2c = data;
> +	int i;

unsigned?

> +	for (i = 0; i < XE_I2C_MAX_CLIENTS; i++)
> +		i2c_unregister_device(i2c->client[i]);
> +
> +	bus_unregister_notifier(&i2c_bus_type, &i2c->bus_notifier);
> +	xe_i2c_unregister_adapter(i2c);
> +	xe_i2c_remove_irq(i2c);
> +}

...

> +int xe_i2c_probe(struct xe_device *xe)
> +{
> +	struct xe_i2c_endpoint ep;
> +	struct regmap *regmap;
> +	struct xe_i2c *i2c;
> +	int ret;
> +
> +	xe_i2c_read_endpoint(xe_root_tile_mmio(xe), &ep);
> +	if (ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> +		return 0;
> +
> +	i2c = devm_kzalloc(xe->drm.dev, sizeof(*i2c), GFP_KERNEL);
> +	if (!i2c)
> +		return -ENOMEM;
> +
> +	INIT_WORK(&i2c->work, xe_i2c_client_work);
> +	i2c->mmio = xe_root_tile_mmio(xe);
> +	i2c->drm_dev = xe->drm.dev;
> +	i2c->ep = ep;

> +	regmap = devm_regmap_init(i2c->drm_dev, NULL, i2c, &i2c_regmap_config);

Use of i2c->drm_dev makes harder to maintain and understand the code.
Managed resources should be carefully attached to the correct device,
otherwise it's inevitable object lifetime related issues.

With

	struct device *dev = xe->drm.dev;

and using local dev, it becomes easier to get and avoid such subtle mistakes.

> +	if (IS_ERR(regmap))
> +		return PTR_ERR(regmap);
> +
> +	i2c->bus_notifier.notifier_call = xe_i2c_notifier;
> +	ret = bus_register_notifier(&i2c_bus_type, &i2c->bus_notifier);
> +	if (ret)
> +		return ret;
> +
> +	ret = xe_i2c_create_irq(i2c);
> +	if (ret)
> +		goto err_unregister_notifier;
> +
> +	ret = xe_i2c_register_adapter(i2c);
> +	if (ret)
> +		goto err_remove_irq;
> +
> +	return devm_add_action_or_reset(i2c->drm_dev, xe_i2c_remove, i2c);
> +
> +err_remove_irq:
> +	xe_i2c_remove_irq(i2c);
> +
> +err_unregister_notifier:
> +	bus_unregister_notifier(&i2c_bus_type, &i2c->bus_notifier);
> +
> +	return ret;
> +}

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode
  2025-06-26 13:56 ` [PATCH v4 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
@ 2025-06-26 14:24   ` Andy Shevchenko
  2025-06-27 10:36     ` Heikki Krogerus
  0 siblings, 1 reply; 17+ messages in thread
From: Andy Shevchenko @ 2025-06-26 14:24 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Mika Westerberg,
	Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

On Thu, Jun 26, 2025 at 04:56:09PM +0300, Heikki Krogerus wrote:
> 
> Initialize i2c in survivability mode to allow firmware
> update of Add-In Management Controller (AMC) in survivability mode

...

> +err:
> +	/*
> +	 * But if it fails, device can't enter survivability
> +	 * so move it back for correct error handling

While at it, add a period at the end.

> +	 */
> +	survivability->mode = false;
> +	return ret;

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 17+ messages in thread

* ✗ CI.checkpatch: warning for drm/xe: i2c support (rev4)
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (3 preceding siblings ...)
  2025-06-26 13:56 ` [PATCH v4 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
@ 2025-06-26 15:46 ` Patchwork
  2025-06-26 15:48 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-06-26 15:46 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

== Series Details ==

Series: drm/xe: i2c support (rev4)
URL   : https://patchwork.freedesktop.org/series/149699/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 25a304abadb52b03fb4587dd65241c7938d575bb
Author: Riana Tauro <riana.tauro@intel.com>
Date:   Thu Jun 26 16:56:09 2025 +0300

    drm/xe/xe_i2c: Add support for i2c in survivability mode
    
    Initialize i2c in survivability mode to allow firmware
    update of Add-In Management Controller (AMC) in survivability mode
    
    Signed-off-by: Riana Tauro <riana.tauro@intel.com>
    Reviewed-by: Raag Jadav <raag.jadav@intel.com>
    Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
+ /mt/dim checkpatch 4c63c5cc0891f9b19c79881a90569ae93e476cd5 drm-intel
91308e02f7bd i2c: designware: Add quirk for Intel Xe
-:9: WARNING:BAD_SIGN_OFF: Non-standard signature: Originally-by:
#9: 
Originally-by: Michael J. Ruhl <michael.j.ruhl@intel.com>

total: 0 errors, 1 warnings, 0 checks, 56 lines checked
f5003ff7cf9d drm/xe: Support for I2C attached MCUs
-:14: WARNING:BAD_SIGN_OFF: Non-standard signature: Originally-by:
#14: 
Originally-by: Michael J. Ruhl <michael.j.ruhl@intel.com>

-:42: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#42: 
new file mode 100644

-:151: WARNING:SPDX_LICENSE_TAG: Improper SPDX comment style for 'drivers/gpu/drm/xe/xe_i2c.c', please use '//' instead
#151: FILE: drivers/gpu/drm/xe/xe_i2c.c:1:
+/* SPDX-License-Identifier: GPL-2.0 OR MIT */

-:151: WARNING:SPDX_LICENSE_TAG: Missing or malformed SPDX-License-Identifier tag in line 1
#151: FILE: drivers/gpu/drm/xe/xe_i2c.c:1:
+/* SPDX-License-Identifier: GPL-2.0 OR MIT */

total: 0 errors, 4 warnings, 0 checks, 454 lines checked
5948d7d601ac drm/xe/pm: Wire up suspend/resume for I2C controller
25a304abadb5 drm/xe/xe_i2c: Add support for i2c in survivability mode



^ permalink raw reply	[flat|nested] 17+ messages in thread

* ✓ CI.KUnit: success for drm/xe: i2c support (rev4)
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (4 preceding siblings ...)
  2025-06-26 15:46 ` ✗ CI.checkpatch: warning for drm/xe: i2c support (rev4) Patchwork
@ 2025-06-26 15:48 ` Patchwork
  2025-06-26 16:38 ` ✗ Xe.CI.BAT: failure " Patchwork
  2025-06-30 17:55 ` ✗ Xe.CI.Full: " Patchwork
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-06-26 15:48 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

== Series Details ==

Series: drm/xe: i2c support (rev4)
URL   : https://patchwork.freedesktop.org/series/149699/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:46:40] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:46:44] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[15:47:17] Starting KUnit Kernel (1/1)...
[15:47:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:47:17] ================== guc_buf (11 subtests) ===================
[15:47:17] [PASSED] test_smallest
[15:47:17] [PASSED] test_largest
[15:47:17] [PASSED] test_granular
[15:47:17] [PASSED] test_unique
[15:47:17] [PASSED] test_overlap
[15:47:17] [PASSED] test_reusable
[15:47:17] [PASSED] test_too_big
[15:47:17] [PASSED] test_flush
[15:47:17] [PASSED] test_lookup
[15:47:17] [PASSED] test_data
[15:47:17] [PASSED] test_class
[15:47:17] ===================== [PASSED] guc_buf =====================
[15:47:17] =================== guc_dbm (7 subtests) ===================
[15:47:17] [PASSED] test_empty
[15:47:17] [PASSED] test_default
[15:47:17] ======================== test_size  ========================
[15:47:17] [PASSED] 4
[15:47:17] [PASSED] 8
[15:47:17] [PASSED] 32
[15:47:17] [PASSED] 256
[15:47:17] ==================== [PASSED] test_size ====================
[15:47:17] ======================= test_reuse  ========================
[15:47:17] [PASSED] 4
[15:47:17] [PASSED] 8
[15:47:17] [PASSED] 32
[15:47:17] [PASSED] 256
[15:47:17] =================== [PASSED] test_reuse ====================
[15:47:17] =================== test_range_overlap  ====================
[15:47:17] [PASSED] 4
[15:47:17] [PASSED] 8
[15:47:17] [PASSED] 32
[15:47:17] [PASSED] 256
[15:47:17] =============== [PASSED] test_range_overlap ================
[15:47:17] =================== test_range_compact  ====================
[15:47:17] [PASSED] 4
[15:47:17] [PASSED] 8
[15:47:17] [PASSED] 32
[15:47:17] [PASSED] 256
[15:47:17] =============== [PASSED] test_range_compact ================
[15:47:17] ==================== test_range_spare  =====================
[15:47:17] [PASSED] 4
[15:47:17] [PASSED] 8
[15:47:17] [PASSED] 32
[15:47:17] [PASSED] 256
[15:47:17] ================ [PASSED] test_range_spare =================
[15:47:17] ===================== [PASSED] guc_dbm =====================
[15:47:17] =================== guc_idm (6 subtests) ===================
[15:47:17] [PASSED] bad_init
[15:47:17] [PASSED] no_init
[15:47:17] [PASSED] init_fini
[15:47:17] [PASSED] check_used
[15:47:17] [PASSED] check_quota
[15:47:17] [PASSED] check_all
[15:47:17] ===================== [PASSED] guc_idm =====================
[15:47:17] ================== no_relay (3 subtests) ===================
[15:47:17] [PASSED] xe_drops_guc2pf_if_not_ready
[15:47:17] [PASSED] xe_drops_guc2vf_if_not_ready
[15:47:17] [PASSED] xe_rejects_send_if_not_ready
[15:47:17] ==================== [PASSED] no_relay =====================
[15:47:17] ================== pf_relay (14 subtests) ==================
[15:47:17] [PASSED] pf_rejects_guc2pf_too_short
[15:47:17] [PASSED] pf_rejects_guc2pf_too_long
[15:47:17] [PASSED] pf_rejects_guc2pf_no_payload
[15:47:17] [PASSED] pf_fails_no_payload
[15:47:17] [PASSED] pf_fails_bad_origin
[15:47:17] [PASSED] pf_fails_bad_type
[15:47:17] [PASSED] pf_txn_reports_error
[15:47:17] [PASSED] pf_txn_sends_pf2guc
[15:47:17] [PASSED] pf_sends_pf2guc
[15:47:17] [SKIPPED] pf_loopback_nop
[15:47:17] [SKIPPED] pf_loopback_echo
[15:47:17] [SKIPPED] pf_loopback_fail
[15:47:17] [SKIPPED] pf_loopback_busy
[15:47:17] [SKIPPED] pf_loopback_retry
[15:47:17] ==================== [PASSED] pf_relay =====================
[15:47:17] ================== vf_relay (3 subtests) ===================
[15:47:17] [PASSED] vf_rejects_guc2vf_too_short
[15:47:17] [PASSED] vf_rejects_guc2vf_too_long
[15:47:17] [PASSED] vf_rejects_guc2vf_no_payload
[15:47:17] ==================== [PASSED] vf_relay =====================
[15:47:17] ================= pf_service (11 subtests) =================
[15:47:17] [PASSED] pf_negotiate_any
[15:47:17] [PASSED] pf_negotiate_base_match
[15:47:17] [PASSED] pf_negotiate_base_newer
[15:47:17] [PASSED] pf_negotiate_base_next
[15:47:17] [SKIPPED] pf_negotiate_base_older
[15:47:17] [PASSED] pf_negotiate_base_prev
[15:47:17] [PASSED] pf_negotiate_latest_match
[15:47:17] [PASSED] pf_negotiate_latest_newer
[15:47:17] [PASSED] pf_negotiate_latest_next
[15:47:17] [SKIPPED] pf_negotiate_latest_older
[15:47:17] [SKIPPED] pf_negotiate_latest_prev
[15:47:17] =================== [PASSED] pf_service ====================
[15:47:17] ===================== lmtt (1 subtest) =====================
[15:47:17] ======================== test_ops  =========================
[15:47:17] [PASSED] 2-level
[15:47:17] [PASSED] multi-level
[15:47:17] ==================== [PASSED] test_ops =====================
[15:47:17] ====================== [PASSED] lmtt =======================
[15:47:17] =================== xe_mocs (2 subtests) ===================
[15:47:17] ================ xe_live_mocs_kernel_kunit  ================
[15:47:17] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:47:17] ================ xe_live_mocs_reset_kunit  =================
[15:47:17] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:47:17] ==================== [SKIPPED] xe_mocs =====================
[15:47:17] ================= xe_migrate (2 subtests) ==================
[15:47:17] ================= xe_migrate_sanity_kunit  =================
[15:47:17] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:47:17] ================== xe_validate_ccs_kunit  ==================
[15:47:17] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:47:17] =================== [SKIPPED] xe_migrate ===================
[15:47:17] ================== xe_dma_buf (1 subtest) ==================
[15:47:17] ==================== xe_dma_buf_kunit  =====================
[15:47:17] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:47:17] =================== [SKIPPED] xe_dma_buf ===================
[15:47:17] ================= xe_bo_shrink (1 subtest) =================
[15:47:17] =================== xe_bo_shrink_kunit  ====================
[15:47:17] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:47:17] ================== [SKIPPED] xe_bo_shrink ==================
[15:47:17] ==================== xe_bo (2 subtests) ====================
[15:47:17] ================== xe_ccs_migrate_kunit  ===================
[15:47:17] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:47:17] ==================== xe_bo_evict_kunit  ====================
[15:47:17] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:47:17] ===================== [SKIPPED] xe_bo ======================
[15:47:17] ==================== args (11 subtests) ====================
[15:47:17] [PASSED] count_args_test
[15:47:17] [PASSED] call_args_example
[15:47:17] [PASSED] call_args_test
[15:47:17] [PASSED] drop_first_arg_example
[15:47:17] [PASSED] drop_first_arg_test
[15:47:17] [PASSED] first_arg_example
[15:47:17] [PASSED] first_arg_test
[15:47:17] [PASSED] last_arg_example
[15:47:17] [PASSED] last_arg_test
[15:47:17] [PASSED] pick_arg_example
[15:47:17] [PASSED] sep_comma_example
[15:47:17] ====================== [PASSED] args =======================
[15:47:17] =================== xe_pci (2 subtests) ====================
[15:47:17] ==================== check_graphics_ip  ====================
[15:47:17] [PASSED] 12.70 Xe_LPG
[15:47:17] [PASSED] 12.71 Xe_LPG
[15:47:17] [PASSED] 12.74 Xe_LPG+
[15:47:17] [PASSED] 20.01 Xe2_HPG
[15:47:17] [PASSED] 20.02 Xe2_HPG
[15:47:17] [PASSED] 20.04 Xe2_LPG
[15:47:17] [PASSED] 30.00 Xe3_LPG
[15:47:17] [PASSED] 30.01 Xe3_LPG
[15:47:17] [PASSED] 30.03 Xe3_LPG
[15:47:17] ================ [PASSED] check_graphics_ip ================
[15:47:17] ===================== check_media_ip  ======================
[15:47:17] [PASSED] 13.00 Xe_LPM+
[15:47:17] [PASSED] 13.01 Xe2_HPM
[15:47:17] [PASSED] 20.00 Xe2_LPM
[15:47:17] [PASSED] 30.00 Xe3_LPM
[15:47:17] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[15:47:17] ================= [PASSED] check_media_ip ==================
[15:47:17] ===================== [PASSED] xe_pci ======================
[15:47:17] =================== xe_rtp (2 subtests) ====================
[15:47:17] =============== xe_rtp_process_to_sr_tests  ================
[15:47:17] [PASSED] coalesce-same-reg
[15:47:17] [PASSED] no-match-no-add
[15:47:17] [PASSED] match-or
[15:47:17] [PASSED] match-or-xfail
[15:47:17] [PASSED] no-match-no-add-multiple-rules
[15:47:17] [PASSED] two-regs-two-entries
[15:47:17] [PASSED] clr-one-set-other
[15:47:17] [PASSED] set-field
[15:47:17] [PASSED] conflict-duplicate
[15:47:17] [PASSED] conflict-not-disjoint
[15:47:17] [PASSED] conflict-reg-type
[15:47:17] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:47:17] ================== xe_rtp_process_tests  ===================
[15:47:17] [PASSED] active1
[15:47:17] [PASSED] active2
[15:47:17] [PASSED] active-inactive
[15:47:17] [PASSED] inactive-active
[15:47:17] [PASSED] inactive-1st_or_active-inactive
[15:47:17] [PASSED] inactive-2nd_or_active-inactive
[15:47:17] [PASSED] inactive-last_or_active-inactive
[15:47:17] [PASSED] inactive-no_or_active-inactive
[15:47:17] ============== [PASSED] xe_rtp_process_tests ===============
[15:47:17] ===================== [PASSED] xe_rtp ======================
[15:47:17] ==================== xe_wa (1 subtest) =====================
[15:47:17] ======================== xe_wa_gt  =========================
[15:47:17] [PASSED] TIGERLAKE (B0)
[15:47:17] [PASSED] DG1 (A0)
[15:47:17] [PASSED] DG1 (B0)
[15:47:17] [PASSED] ALDERLAKE_S (A0)
[15:47:17] [PASSED] ALDERLAKE_S (B0)
[15:47:17] [PASSED] ALDERLAKE_S (C0)
[15:47:17] [PASSED] ALDERLAKE_S (D0)
[15:47:17] [PASSED] ALDERLAKE_P (A0)
[15:47:17] [PASSED] ALDERLAKE_P (B0)
[15:47:17] [PASSED] ALDERLAKE_P (C0)
[15:47:17] [PASSED] ALDERLAKE_S_RPLS (D0)
[15:47:17] [PASSED] ALDERLAKE_P_RPLU (E0)
[15:47:17] [PASSED] DG2_G10 (C0)
[15:47:17] [PASSED] DG2_G11 (B1)
[15:47:17] [PASSED] DG2_G12 (A1)
[15:47:17] [PASSED] METEORLAKE (g:A0, m:A0)
[15:47:17] [PASSED] METEORLAKE (g:A0, m:A0)
[15:47:17] [PASSED] METEORLAKE (g:A0, m:A0)
[15:47:17] [PASSED] LUNARLAKE (g:A0, m:A0)
[15:47:17] [PASSED] LUNARLAKE (g:B0, m:A0)
[15:47:17] [PASSED] BATTLEMAGE (g:A0, m:A1)
[15:47:17] ==================== [PASSED] xe_wa_gt =====================
[15:47:17] ====================== [PASSED] xe_wa ======================
[15:47:17] ============================================================
[15:47:17] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[15:47:17] Elapsed time: 37.832s total, 4.226s configuring, 33.290s building, 0.302s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:47:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:47:19] 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=25
[15:47:45] Starting KUnit Kernel (1/1)...
[15:47:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:47:45] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:47:45] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:47:45] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:47:45] =========== drm_validate_clone_mode (2 subtests) ===========
[15:47:45] ============== drm_test_check_in_clone_mode  ===============
[15:47:45] [PASSED] in_clone_mode
[15:47:45] [PASSED] not_in_clone_mode
[15:47:45] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:47:45] =============== drm_test_check_valid_clones  ===============
[15:47:45] [PASSED] not_in_clone_mode
[15:47:45] [PASSED] valid_clone
[15:47:45] [PASSED] invalid_clone
[15:47:45] =========== [PASSED] drm_test_check_valid_clones ===========
[15:47:45] ============= [PASSED] drm_validate_clone_mode =============
[15:47:45] ============= drm_validate_modeset (1 subtest) =============
[15:47:45] [PASSED] drm_test_check_connector_changed_modeset
[15:47:45] ============== [PASSED] drm_validate_modeset ===============
[15:47:45] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:47:45] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:47:45] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:47:45] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:47:45] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:47:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:47:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:47:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:47:45] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:47:45] ============== drm_bridge_alloc (2 subtests) ===============
[15:47:45] [PASSED] drm_test_drm_bridge_alloc_basic
[15:47:45] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:47:45] ================ [PASSED] drm_bridge_alloc =================
[15:47:45] ================== drm_buddy (7 subtests) ==================
[15:47:45] [PASSED] drm_test_buddy_alloc_limit
[15:47:45] [PASSED] drm_test_buddy_alloc_optimistic
[15:47:45] [PASSED] drm_test_buddy_alloc_pessimistic
[15:47:45] [PASSED] drm_test_buddy_alloc_pathological
[15:47:45] [PASSED] drm_test_buddy_alloc_contiguous
[15:47:45] [PASSED] drm_test_buddy_alloc_clear
[15:47:45] [PASSED] drm_test_buddy_alloc_range_bias
[15:47:45] ==================== [PASSED] drm_buddy ====================
[15:47:45] ============= drm_cmdline_parser (40 subtests) =============
[15:47:45] [PASSED] drm_test_cmdline_force_d_only
[15:47:45] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:47:45] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:47:45] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:47:45] [PASSED] drm_test_cmdline_force_e_only
[15:47:45] [PASSED] drm_test_cmdline_res
[15:47:45] [PASSED] drm_test_cmdline_res_vesa
[15:47:45] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:47:45] [PASSED] drm_test_cmdline_res_rblank
[15:47:45] [PASSED] drm_test_cmdline_res_bpp
[15:47:45] [PASSED] drm_test_cmdline_res_refresh
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:47:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:47:45] [PASSED] drm_test_cmdline_res_margins_force_on
[15:47:45] [PASSED] drm_test_cmdline_res_vesa_margins
[15:47:45] [PASSED] drm_test_cmdline_name
[15:47:45] [PASSED] drm_test_cmdline_name_bpp
[15:47:45] [PASSED] drm_test_cmdline_name_option
[15:47:45] [PASSED] drm_test_cmdline_name_bpp_option
[15:47:45] [PASSED] drm_test_cmdline_rotate_0
[15:47:45] [PASSED] drm_test_cmdline_rotate_90
[15:47:45] [PASSED] drm_test_cmdline_rotate_180
[15:47:45] [PASSED] drm_test_cmdline_rotate_270
[15:47:45] [PASSED] drm_test_cmdline_hmirror
[15:47:45] [PASSED] drm_test_cmdline_vmirror
[15:47:45] [PASSED] drm_test_cmdline_margin_options
[15:47:45] [PASSED] drm_test_cmdline_multiple_options
[15:47:45] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:47:45] [PASSED] drm_test_cmdline_extra_and_option
[15:47:45] [PASSED] drm_test_cmdline_freestanding_options
[15:47:45] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:47:45] [PASSED] drm_test_cmdline_panel_orientation
[15:47:45] ================ drm_test_cmdline_invalid  =================
[15:47:45] [PASSED] margin_only
[15:47:45] [PASSED] interlace_only
[15:47:45] [PASSED] res_missing_x
[15:47:45] [PASSED] res_missing_y
[15:47:45] [PASSED] res_bad_y
[15:47:45] [PASSED] res_missing_y_bpp
[15:47:45] [PASSED] res_bad_bpp
[15:47:45] [PASSED] res_bad_refresh
[15:47:45] [PASSED] res_bpp_refresh_force_on_off
[15:47:45] [PASSED] res_invalid_mode
[15:47:45] [PASSED] res_bpp_wrong_place_mode
[15:47:45] [PASSED] name_bpp_refresh
[15:47:45] [PASSED] name_refresh
[15:47:45] [PASSED] name_refresh_wrong_mode
[15:47:45] [PASSED] name_refresh_invalid_mode
[15:47:45] [PASSED] rotate_multiple
[15:47:45] [PASSED] rotate_invalid_val
[15:47:45] [PASSED] rotate_truncated
[15:47:45] [PASSED] invalid_option
[15:47:45] [PASSED] invalid_tv_option
[15:47:45] [PASSED] truncated_tv_option
[15:47:45] ============ [PASSED] drm_test_cmdline_invalid =============
[15:47:45] =============== drm_test_cmdline_tv_options  ===============
[15:47:45] [PASSED] NTSC
[15:47:45] [PASSED] NTSC_443
[15:47:45] [PASSED] NTSC_J
[15:47:45] [PASSED] PAL
[15:47:45] [PASSED] PAL_M
[15:47:45] [PASSED] PAL_N
[15:47:45] [PASSED] SECAM
[15:47:45] [PASSED] MONO_525
[15:47:45] [PASSED] MONO_625
[15:47:45] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:47:45] =============== [PASSED] drm_cmdline_parser ================
[15:47:45] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:47:45] [PASSED] drm_test_connector_hdmi_init_valid
[15:47:45] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:47:45] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:47:45] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:47:45] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:47:45] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:47:45] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:47:45] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:47:45] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[15:47:45] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:47:45] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:47:45] [PASSED] supported_formats=0x3 yuv420_allowed=1
[15:47:45] [PASSED] supported_formats=0x3 yuv420_allowed=0
[15:47:45] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:47:45] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:47:45] [PASSED] drm_test_connector_hdmi_init_null_product
[15:47:45] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:47:45] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:47:45] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:47:45] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:47:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:47:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:47:45] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:47:45] ========= drm_test_connector_hdmi_init_type_valid  =========
[15:47:45] [PASSED] HDMI-A
[15:47:45] [PASSED] HDMI-B
[15:47:45] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:47:45] ======== drm_test_connector_hdmi_init_type_invalid  ========
[15:47:45] [PASSED] Unknown
[15:47:45] [PASSED] VGA
[15:47:45] [PASSED] DVI-I
[15:47:45] [PASSED] DVI-D
[15:47:45] [PASSED] DVI-A
[15:47:45] [PASSED] Composite
[15:47:45] [PASSED] SVIDEO
[15:47:45] [PASSED] LVDS
[15:47:45] [PASSED] Component
[15:47:45] [PASSED] DIN
[15:47:45] [PASSED] DP
[15:47:45] [PASSED] TV
[15:47:45] [PASSED] eDP
[15:47:45] [PASSED] Virtual
[15:47:45] [PASSED] DSI
[15:47:45] [PASSED] DPI
[15:47:45] [PASSED] Writeback
[15:47:45] [PASSED] SPI
[15:47:45] [PASSED] USB
[15:47:45] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:47:45] ============ [PASSED] drmm_connector_hdmi_init =============
[15:47:45] ============= drmm_connector_init (3 subtests) =============
[15:47:45] [PASSED] drm_test_drmm_connector_init
[15:47:45] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:47:45] ========= drm_test_drmm_connector_init_type_valid  =========
[15:47:45] [PASSED] Unknown
[15:47:45] [PASSED] VGA
[15:47:45] [PASSED] DVI-I
[15:47:45] [PASSED] DVI-D
[15:47:45] [PASSED] DVI-A
[15:47:45] [PASSED] Composite
[15:47:45] [PASSED] SVIDEO
[15:47:45] [PASSED] LVDS
[15:47:45] [PASSED] Component
[15:47:45] [PASSED] DIN
[15:47:45] [PASSED] DP
[15:47:45] [PASSED] HDMI-A
[15:47:45] [PASSED] HDMI-B
[15:47:45] [PASSED] TV
[15:47:45] [PASSED] eDP
[15:47:45] [PASSED] Virtual
[15:47:45] [PASSED] DSI
[15:47:45] [PASSED] DPI
[15:47:45] [PASSED] Writeback
[15:47:45] [PASSED] SPI
[15:47:45] [PASSED] USB
[15:47:45] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:47:45] =============== [PASSED] drmm_connector_init ===============
[15:47:45] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_init
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:47:45] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[15:47:45] [PASSED] Unknown
[15:47:45] [PASSED] VGA
[15:47:45] [PASSED] DVI-I
[15:47:45] [PASSED] DVI-D
[15:47:45] [PASSED] DVI-A
[15:47:45] [PASSED] Composite
[15:47:45] [PASSED] SVIDEO
[15:47:45] [PASSED] LVDS
[15:47:45] [PASSED] Component
[15:47:45] [PASSED] DIN
[15:47:45] [PASSED] DP
[15:47:45] [PASSED] HDMI-A
[15:47:45] [PASSED] HDMI-B
[15:47:45] [PASSED] TV
[15:47:45] [PASSED] eDP
[15:47:45] [PASSED] Virtual
[15:47:45] [PASSED] DSI
[15:47:45] [PASSED] DPI
[15:47:45] [PASSED] Writeback
[15:47:45] [PASSED] SPI
[15:47:45] [PASSED] USB
[15:47:45] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:47:45] ======== drm_test_drm_connector_dynamic_init_name  =========
[15:47:45] [PASSED] Unknown
[15:47:45] [PASSED] VGA
[15:47:45] [PASSED] DVI-I
[15:47:45] [PASSED] DVI-D
[15:47:45] [PASSED] DVI-A
[15:47:45] [PASSED] Composite
[15:47:45] [PASSED] SVIDEO
[15:47:45] [PASSED] LVDS
[15:47:45] [PASSED] Component
[15:47:45] [PASSED] DIN
[15:47:45] [PASSED] DP
[15:47:45] [PASSED] HDMI-A
[15:47:45] [PASSED] HDMI-B
[15:47:45] [PASSED] TV
[15:47:45] [PASSED] eDP
[15:47:45] [PASSED] Virtual
[15:47:45] [PASSED] DSI
[15:47:45] [PASSED] DPI
[15:47:45] [PASSED] Writeback
[15:47:45] [PASSED] SPI
[15:47:45] [PASSED] USB
[15:47:45] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:47:45] =========== [PASSED] drm_connector_dynamic_init ============
[15:47:45] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:47:45] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:47:45] ======= drm_connector_dynamic_register (7 subtests) ========
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:47:45] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:47:45] ========= [PASSED] drm_connector_dynamic_register ==========
[15:47:45] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:47:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:47:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:47:45] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:47:45] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:47:45] ========== drm_test_get_tv_mode_from_name_valid  ===========
[15:47:45] [PASSED] NTSC
[15:47:45] [PASSED] NTSC-443
[15:47:45] [PASSED] NTSC-J
[15:47:45] [PASSED] PAL
[15:47:45] [PASSED] PAL-M
[15:47:45] [PASSED] PAL-N
[15:47:45] [PASSED] SECAM
[15:47:45] [PASSED] Mono
[15:47:45] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:47:45] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:47:45] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:47:45] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:47:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:47:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:47:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:47:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:47:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:47:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:47:45] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[15:47:45] [PASSED] VIC 96
[15:47:45] [PASSED] VIC 97
[15:47:45] [PASSED] VIC 101
[15:47:45] [PASSED] VIC 102
[15:47:45] [PASSED] VIC 106
[15:47:45] [PASSED] VIC 107
[15:47:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:47:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:47:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:47:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:47:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:47:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:47:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:47:45] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:47:45] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[15:47:45] [PASSED] Automatic
[15:47:45] [PASSED] Full
[15:47:45] [PASSED] Limited 16:235
[15:47:45] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:47:45] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:47:45] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:47:45] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:47:45] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[15:47:45] [PASSED] RGB
[15:47:45] [PASSED] YUV 4:2:0
[15:47:45] [PASSED] YUV 4:2:2
[15:47:45] [PASSED] YUV 4:4:4
[15:47:45] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:47:45] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:47:45] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:47:45] ============= drm_damage_helper (21 subtests) ==============
[15:47:45] [PASSED] drm_test_damage_iter_no_damage
[15:47:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:47:45] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:47:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:47:45] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:47:45] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:47:45] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:47:45] [PASSED] drm_test_damage_iter_simple_damage
[15:47:45] [PASSED] drm_test_damage_iter_single_damage
[15:47:45] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:47:45] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:47:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:47:45] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:47:45] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:47:45] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:47:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:47:45] [PASSED] drm_test_damage_iter_damage
[15:47:45] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:47:45] [PASSED] drm_test_damage_iter_damage_one_outside
[15:47:45] [PASSED] drm_test_damage_iter_damage_src_moved
[15:47:45] [PASSED] drm_test_damage_iter_damage_not_visible
[15:47:45] ================ [PASSED] drm_damage_helper ================
[15:47:45] ============== drm_dp_mst_helper (3 subtests) ==============
[15:47:45] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[15:47:45] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:47:45] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:47:45] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:47:45] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:47:45] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:47:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:47:45] ============== drm_test_dp_mst_calc_pbn_div  ===============
[15:47:45] [PASSED] Link rate 2000000 lane count 4
[15:47:45] [PASSED] Link rate 2000000 lane count 2
[15:47:45] [PASSED] Link rate 2000000 lane count 1
[15:47:45] [PASSED] Link rate 1350000 lane count 4
[15:47:45] [PASSED] Link rate 1350000 lane count 2
[15:47:45] [PASSED] Link rate 1350000 lane count 1
[15:47:45] [PASSED] Link rate 1000000 lane count 4
[15:47:45] [PASSED] Link rate 1000000 lane count 2
[15:47:45] [PASSED] Link rate 1000000 lane count 1
[15:47:45] [PASSED] Link rate 810000 lane count 4
[15:47:45] [PASSED] Link rate 810000 lane count 2
[15:47:45] [PASSED] Link rate 810000 lane count 1
[15:47:45] [PASSED] Link rate 540000 lane count 4
[15:47:45] [PASSED] Link rate 540000 lane count 2
[15:47:45] [PASSED] Link rate 540000 lane count 1
[15:47:45] [PASSED] Link rate 270000 lane count 4
[15:47:45] [PASSED] Link rate 270000 lane count 2
[15:47:45] [PASSED] Link rate 270000 lane count 1
[15:47:45] [PASSED] Link rate 162000 lane count 4
[15:47:45] [PASSED] Link rate 162000 lane count 2
[15:47:45] [PASSED] Link rate 162000 lane count 1
[15:47:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:47:45] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[15:47:45] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:47:45] [PASSED] DP_POWER_UP_PHY with port number
[15:47:45] [PASSED] DP_POWER_DOWN_PHY with port number
[15:47:45] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:47:45] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:47:45] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:47:45] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:47:45] [PASSED] DP_QUERY_PAYLOAD with port number
[15:47:45] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:47:45] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:47:45] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:47:45] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:47:45] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:47:45] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:47:45] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:47:45] [PASSED] DP_REMOTE_I2C_READ with port number
[15:47:45] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:47:45] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:47:45] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:47:45] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:47:45] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:47:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:47:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:47:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:47:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:47:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:47:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:47:45] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:47:45] ================ [PASSED] drm_dp_mst_helper ================
[15:47:45] ================== drm_exec (7 subtests) ===================
[15:47:45] [PASSED] sanitycheck
[15:47:45] [PASSED] test_lock
[15:47:45] [PASSED] test_lock_unlock
[15:47:45] [PASSED] test_duplicates
[15:47:45] [PASSED] test_prepare
[15:47:45] [PASSED] test_prepare_array
[15:47:45] [PASSED] test_multiple_loops
[15:47:45] ==================== [PASSED] drm_exec =====================
[15:47:45] =========== drm_format_helper_test (17 subtests) ===========
[15:47:45] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:47:45] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:47:45] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:47:45] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:47:45] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:47:45] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:47:45] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:47:45] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:47:45] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:47:45] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:47:45] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:47:45] ============== drm_test_fb_xrgb8888_to_mono  ===============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:47:45] ==================== drm_test_fb_swab  =====================
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ================ [PASSED] drm_test_fb_swab =================
[15:47:45] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:47:45] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[15:47:45] [PASSED] single_pixel_source_buffer
[15:47:45] [PASSED] single_pixel_clip_rectangle
[15:47:45] [PASSED] well_known_colors
[15:47:45] [PASSED] destination_pitch
[15:47:45] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:47:45] ================= drm_test_fb_clip_offset  =================
[15:47:45] [PASSED] pass through
[15:47:45] [PASSED] horizontal offset
[15:47:45] [PASSED] vertical offset
[15:47:45] [PASSED] horizontal and vertical offset
[15:47:45] [PASSED] horizontal offset (custom pitch)
[15:47:45] [PASSED] vertical offset (custom pitch)
[15:47:45] [PASSED] horizontal and vertical offset (custom pitch)
[15:47:45] ============= [PASSED] drm_test_fb_clip_offset =============
[15:47:45] =================== drm_test_fb_memcpy  ====================
[15:47:45] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:47:45] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:47:45] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:47:45] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:47:45] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:47:45] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:47:45] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:47:45] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:47:45] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:47:45] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:47:45] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:47:45] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:47:45] =============== [PASSED] drm_test_fb_memcpy ================
[15:47:45] ============= [PASSED] drm_format_helper_test ==============
[15:47:45] ================= drm_format (18 subtests) =================
[15:47:45] [PASSED] drm_test_format_block_width_invalid
[15:47:45] [PASSED] drm_test_format_block_width_one_plane
[15:47:45] [PASSED] drm_test_format_block_width_two_plane
[15:47:45] [PASSED] drm_test_format_block_width_three_plane
[15:47:45] [PASSED] drm_test_format_block_width_tiled
[15:47:45] [PASSED] drm_test_format_block_height_invalid
[15:47:45] [PASSED] drm_test_format_block_height_one_plane
[15:47:45] [PASSED] drm_test_format_block_height_two_plane
[15:47:45] [PASSED] drm_test_format_block_height_three_plane
[15:47:45] [PASSED] drm_test_format_block_height_tiled
[15:47:45] [PASSED] drm_test_format_min_pitch_invalid
[15:47:45] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:47:45] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:47:45] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:47:45] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:47:45] [PASSED] drm_test_format_min_pitch_two_plane
[15:47:45] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:47:45] [PASSED] drm_test_format_min_pitch_tiled
[15:47:45] =================== [PASSED] drm_format ====================
[15:47:45] ============== drm_framebuffer (10 subtests) ===============
[15:47:45] ========== drm_test_framebuffer_check_src_coords  ==========
[15:47:45] [PASSED] Success: source fits into fb
[15:47:45] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:47:45] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:47:45] [PASSED] Fail: overflowing fb with source width
[15:47:45] [PASSED] Fail: overflowing fb with source height
[15:47:45] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:47:45] [PASSED] drm_test_framebuffer_cleanup
[15:47:45] =============== drm_test_framebuffer_create  ===============
[15:47:45] [PASSED] ABGR8888 normal sizes
[15:47:45] [PASSED] ABGR8888 max sizes
[15:47:45] [PASSED] ABGR8888 pitch greater than min required
[15:47:45] [PASSED] ABGR8888 pitch less than min required
[15:47:45] [PASSED] ABGR8888 Invalid width
[15:47:45] [PASSED] ABGR8888 Invalid buffer handle
[15:47:45] [PASSED] No pixel format
[15:47:45] [PASSED] ABGR8888 Width 0
[15:47:45] [PASSED] ABGR8888 Height 0
[15:47:45] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:47:45] [PASSED] ABGR8888 Large buffer offset
[15:47:45] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:47:45] [PASSED] ABGR8888 Invalid flag
[15:47:45] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:47:45] [PASSED] ABGR8888 Valid buffer modifier
[15:47:45] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:47:45] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:47:45] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:47:45] [PASSED] NV12 Normal sizes
[15:47:45] [PASSED] NV12 Max sizes
[15:47:45] [PASSED] NV12 Invalid pitch
[15:47:45] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:47:45] [PASSED] NV12 different  modifier per-plane
[15:47:45] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:47:45] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:47:45] [PASSED] NV12 Modifier for inexistent plane
[15:47:45] [PASSED] NV12 Handle for inexistent plane
[15:47:45] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:47:45] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:47:45] [PASSED] YVU420 Normal sizes
[15:47:45] [PASSED] YVU420 Max sizes
[15:47:45] [PASSED] YVU420 Invalid pitch
[15:47:45] [PASSED] YVU420 Different pitches
[15:47:45] [PASSED] YVU420 Different buffer offsets/pitches
[15:47:45] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:47:45] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:47:45] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:47:45] [PASSED] YVU420 Valid modifier
[15:47:45] [PASSED] YVU420 Different modifiers per plane
[15:47:45] [PASSED] YVU420 Modifier for inexistent plane
[15:47:45] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:47:45] [PASSED] X0L2 Normal sizes
[15:47:45] [PASSED] X0L2 Max sizes
[15:47:45] [PASSED] X0L2 Invalid pitch
[15:47:45] [PASSED] X0L2 Pitch greater than minimum required
[15:47:45] [PASSED] X0L2 Handle for inexistent plane
[15:47:45] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:47:45] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:47:45] [PASSED] X0L2 Valid modifier
[15:47:45] [PASSED] X0L2 Modifier for inexistent plane
[15:47:45] =========== [PASSED] drm_test_framebuffer_create ===========
[15:47:45] [PASSED] drm_test_framebuffer_free
[15:47:45] [PASSED] drm_test_framebuffer_init
[15:47:45] [PASSED] drm_test_framebuffer_init_bad_format
[15:47:45] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:47:45] [PASSED] drm_test_framebuffer_lookup
[15:47:45] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:47:45] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:47:45] ================= [PASSED] drm_framebuffer =================
[15:47:45] ================ drm_gem_shmem (8 subtests) ================
[15:47:45] [PASSED] drm_gem_shmem_test_obj_create
[15:47:45] [PASSED] drm_gem_shmem_test_obj_create_private
[15:47:45] [PASSED] drm_gem_shmem_test_pin_pages
[15:47:45] [PASSED] drm_gem_shmem_test_vmap
[15:47:45] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:47:45] [PASSED] drm_gem_shmem_test_get_sg_table
[15:47:45] [PASSED] drm_gem_shmem_test_madvise
[15:47:45] [PASSED] drm_gem_shmem_test_purge
[15:47:45] ================== [PASSED] drm_gem_shmem ==================
[15:47:45] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:47:45] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[15:47:45] [PASSED] Automatic
[15:47:45] [PASSED] Full
[15:47:45] [PASSED] Limited 16:235
[15:47:45] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:47:45] [PASSED] drm_test_check_disable_connector
[15:47:45] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:47:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:47:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:47:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:47:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:47:45] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:47:45] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:47:45] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:47:45] [PASSED] drm_test_check_output_bpc_dvi
[15:47:45] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:47:45] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:47:45] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:47:45] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:47:45] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:47:45] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:47:45] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:47:45] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:47:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:47:45] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:47:45] [PASSED] drm_test_check_broadcast_rgb_value
[15:47:45] [PASSED] drm_test_check_bpc_8_value
[15:47:45] [PASSED] drm_test_check_bpc_10_value
[15:47:45] [PASSED] drm_test_check_bpc_12_value
[15:47:45] [PASSED] drm_test_check_format_value
[15:47:45] [PASSED] drm_test_check_tmds_char_value
[15:47:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:47:45] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:47:45] [PASSED] drm_test_check_mode_valid
[15:47:45] [PASSED] drm_test_check_mode_valid_reject
[15:47:45] [PASSED] drm_test_check_mode_valid_reject_rate
[15:47:45] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:47:45] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:47:45] ================= drm_managed (2 subtests) =================
[15:47:45] [PASSED] drm_test_managed_release_action
[15:47:45] [PASSED] drm_test_managed_run_action
[15:47:45] =================== [PASSED] drm_managed ===================
[15:47:45] =================== drm_mm (6 subtests) ====================
[15:47:45] [PASSED] drm_test_mm_init
[15:47:45] [PASSED] drm_test_mm_debug
[15:47:45] [PASSED] drm_test_mm_align32
[15:47:45] [PASSED] drm_test_mm_align64
[15:47:45] [PASSED] drm_test_mm_lowest
[15:47:45] [PASSED] drm_test_mm_highest
[15:47:45] ===================== [PASSED] drm_mm ======================
[15:47:45] ============= drm_modes_analog_tv (5 subtests) =============
[15:47:45] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:47:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:47:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:47:45] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:47:45] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:47:45] =============== [PASSED] drm_modes_analog_tv ===============
[15:47:45] ============== drm_plane_helper (2 subtests) ===============
[15:47:45] =============== drm_test_check_plane_state  ================
[15:47:45] [PASSED] clipping_simple
[15:47:45] [PASSED] clipping_rotate_reflect
[15:47:45] [PASSED] positioning_simple
[15:47:45] [PASSED] upscaling
[15:47:45] [PASSED] downscaling
[15:47:45] [PASSED] rounding1
[15:47:45] [PASSED] rounding2
[15:47:45] [PASSED] rounding3
[15:47:45] [PASSED] rounding4
[15:47:45] =========== [PASSED] drm_test_check_plane_state ============
[15:47:45] =========== drm_test_check_invalid_plane_state  ============
[15:47:45] [PASSED] positioning_invalid
[15:47:45] [PASSED] upscaling_invalid
[15:47:45] [PASSED] downscaling_invalid
[15:47:45] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:47:45] ================ [PASSED] drm_plane_helper =================
[15:47:45] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:47:45] ====== drm_test_connector_helper_tv_get_modes_check  =======
[15:47:45] [PASSED] None
[15:47:45] [PASSED] PAL
[15:47:45] [PASSED] NTSC
[15:47:45] [PASSED] Both, NTSC Default
[15:47:45] [PASSED] Both, PAL Default
[15:47:45] [PASSED] Both, NTSC Default, with PAL on command-line
[15:47:45] [PASSED] Both, PAL Default, with NTSC on command-line
[15:47:45] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:47:45] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:47:45] ================== drm_rect (9 subtests) ===================
[15:47:45] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:47:45] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:47:45] [PASSED] drm_test_rect_clip_scaled_clipped
[15:47:45] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:47:45] ================= drm_test_rect_intersect  =================
[15:47:45] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:47:45] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:47:45] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:47:45] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:47:45] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:47:45] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:47:45] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:47:45] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:47:45] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:47:45] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:47:45] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:47:45] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:47:45] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:47:45] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:47:45] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:47:45] ============= [PASSED] drm_test_rect_intersect =============
[15:47:45] ================ drm_test_rect_calc_hscale  ================
[15:47:45] [PASSED] normal use
[15:47:45] [PASSED] out of max range
[15:47:45] [PASSED] out of min range
[15:47:45] [PASSED] zero dst
[15:47:45] [PASSED] negative src
[15:47:45] [PASSED] negative dst
[15:47:45] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:47:45] ================ drm_test_rect_calc_vscale  ================
[15:47:45] [PASSED] normal use
[15:47:45] [PASSED] out of max range
[15:47:45] [PASSED] out of min range
[15:47:45] [PASSED] zero dst
[15:47:45] [PASSED] negative src
[15:47:45] [PASSED] negative dst
[15:47:45] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:47:45] ================== drm_test_rect_rotate  ===================
[15:47:45] [PASSED] reflect-x
[15:47:45] [PASSED] reflect-y
[15:47:45] [PASSED] rotate-0
[15:47:45] [PASSED] rotate-90
[15:47:45] [PASSED] rotate-180
[15:47:45] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[15:47:45] ============== [PASSED] drm_test_rect_rotate ===============
[15:47:45] ================ drm_test_rect_rotate_inv  =================
[15:47:45] [PASSED] reflect-x
[15:47:45] [PASSED] reflect-y
[15:47:45] [PASSED] rotate-0
[15:47:45] [PASSED] rotate-90
[15:47:45] [PASSED] rotate-180
[15:47:45] [PASSED] rotate-270
[15:47:45] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:47:45] ==================== [PASSED] drm_rect =====================
[15:47:45] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:47:45] ============ drm_test_sysfb_build_fourcc_list  =============
[15:47:45] [PASSED] no native formats
[15:47:45] [PASSED] XRGB8888 as native format
[15:47:45] [PASSED] remove duplicates
[15:47:45] [PASSED] convert alpha formats
[15:47:45] [PASSED] random formats
[15:47:45] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:47:45] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:47:45] ============================================================
[15:47:45] Testing complete. Ran 616 tests: passed: 616
[15:47:45] Elapsed time: 27.743s total, 1.597s configuring, 25.930s building, 0.179s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:47:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:47:47] 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=25
[15:47:55] Starting KUnit Kernel (1/1)...
[15:47:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:47:55] ================= ttm_device (5 subtests) ==================
[15:47:55] [PASSED] ttm_device_init_basic
[15:47:55] [PASSED] ttm_device_init_multiple
[15:47:55] [PASSED] ttm_device_fini_basic
[15:47:55] [PASSED] ttm_device_init_no_vma_man
[15:47:55] ================== ttm_device_init_pools  ==================
[15:47:55] [PASSED] No DMA allocations, no DMA32 required
[15:47:55] [PASSED] DMA allocations, DMA32 required
[15:47:55] [PASSED] No DMA allocations, DMA32 required
[15:47:55] [PASSED] DMA allocations, no DMA32 required
[15:47:55] ============== [PASSED] ttm_device_init_pools ==============
[15:47:55] =================== [PASSED] ttm_device ====================
[15:47:55] ================== ttm_pool (8 subtests) ===================
[15:47:55] ================== ttm_pool_alloc_basic  ===================
[15:47:55] [PASSED] One page
[15:47:55] [PASSED] More than one page
[15:47:55] [PASSED] Above the allocation limit
[15:47:55] [PASSED] One page, with coherent DMA mappings enabled
[15:47:55] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:47:55] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:47:55] ============== ttm_pool_alloc_basic_dma_addr  ==============
[15:47:55] [PASSED] One page
[15:47:55] [PASSED] More than one page
[15:47:55] [PASSED] Above the allocation limit
[15:47:55] [PASSED] One page, with coherent DMA mappings enabled
[15:47:55] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:47:55] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:47:55] [PASSED] ttm_pool_alloc_order_caching_match
[15:47:55] [PASSED] ttm_pool_alloc_caching_mismatch
[15:47:55] [PASSED] ttm_pool_alloc_order_mismatch
[15:47:55] [PASSED] ttm_pool_free_dma_alloc
[15:47:55] [PASSED] ttm_pool_free_no_dma_alloc
[15:47:55] [PASSED] ttm_pool_fini_basic
[15:47:55] ==================== [PASSED] ttm_pool =====================
[15:47:55] ================ ttm_resource (8 subtests) =================
[15:47:55] ================= ttm_resource_init_basic  =================
[15:47:55] [PASSED] Init resource in TTM_PL_SYSTEM
[15:47:55] [PASSED] Init resource in TTM_PL_VRAM
[15:47:55] [PASSED] Init resource in a private placement
[15:47:55] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:47:55] ============= [PASSED] ttm_resource_init_basic =============
[15:47:55] [PASSED] ttm_resource_init_pinned
[15:47:55] [PASSED] ttm_resource_fini_basic
[15:47:55] [PASSED] ttm_resource_manager_init_basic
[15:47:55] [PASSED] ttm_resource_manager_usage_basic
[15:47:55] [PASSED] ttm_resource_manager_set_used_basic
[15:47:55] [PASSED] ttm_sys_man_alloc_basic
[15:47:55] [PASSED] ttm_sys_man_free_basic
[15:47:55] ================== [PASSED] ttm_resource ===================
[15:47:55] =================== ttm_tt (15 subtests) ===================
[15:47:55] ==================== ttm_tt_init_basic  ====================
[15:47:55] [PASSED] Page-aligned size
[15:47:55] [PASSED] Extra pages requested
[15:47:55] ================ [PASSED] ttm_tt_init_basic ================
[15:47:55] [PASSED] ttm_tt_init_misaligned
[15:47:55] [PASSED] ttm_tt_fini_basic
[15:47:55] [PASSED] ttm_tt_fini_sg
[15:47:55] [PASSED] ttm_tt_fini_shmem
[15:47:55] [PASSED] ttm_tt_create_basic
[15:47:55] [PASSED] ttm_tt_create_invalid_bo_type
[15:47:55] [PASSED] ttm_tt_create_ttm_exists
[15:47:55] [PASSED] ttm_tt_create_failed
[15:47:55] [PASSED] ttm_tt_destroy_basic
[15:47:55] [PASSED] ttm_tt_populate_null_ttm
[15:47:55] [PASSED] ttm_tt_populate_populated_ttm
[15:47:55] [PASSED] ttm_tt_unpopulate_basic
[15:47:55] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:47:55] [PASSED] ttm_tt_swapin_basic
[15:47:55] ===================== [PASSED] ttm_tt ======================
[15:47:55] =================== ttm_bo (14 subtests) ===================
[15:47:55] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[15:47:55] [PASSED] Cannot be interrupted and sleeps
[15:47:55] [PASSED] Cannot be interrupted, locks straight away
[15:47:55] [PASSED] Can be interrupted, sleeps
[15:47:55] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:47:55] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:47:55] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:47:55] [PASSED] ttm_bo_reserve_double_resv
[15:47:55] [PASSED] ttm_bo_reserve_interrupted
[15:47:55] [PASSED] ttm_bo_reserve_deadlock
[15:47:55] [PASSED] ttm_bo_unreserve_basic
[15:47:55] [PASSED] ttm_bo_unreserve_pinned
[15:47:55] [PASSED] ttm_bo_unreserve_bulk
[15:47:55] [PASSED] ttm_bo_put_basic
[15:47:55] [PASSED] ttm_bo_put_shared_resv
[15:47:55] [PASSED] ttm_bo_pin_basic
[15:47:55] [PASSED] ttm_bo_pin_unpin_resource
[15:47:55] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:47:55] ===================== [PASSED] ttm_bo ======================
[15:47:55] ============== ttm_bo_validate (22 subtests) ===============
[15:47:55] ============== ttm_bo_init_reserved_sys_man  ===============
[15:47:55] [PASSED] Buffer object for userspace
[15:47:55] [PASSED] Kernel buffer object
[15:47:55] [PASSED] Shared buffer object
[15:47:55] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:47:55] ============== ttm_bo_init_reserved_mock_man  ==============
[15:47:55] [PASSED] Buffer object for userspace
[15:47:55] [PASSED] Kernel buffer object
[15:47:55] [PASSED] Shared buffer object
[15:47:55] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:47:55] [PASSED] ttm_bo_init_reserved_resv
[15:47:55] ================== ttm_bo_validate_basic  ==================
[15:47:55] [PASSED] Buffer object for userspace
[15:47:55] [PASSED] Kernel buffer object
[15:47:55] [PASSED] Shared buffer object
[15:47:55] ============== [PASSED] ttm_bo_validate_basic ==============
[15:47:55] [PASSED] ttm_bo_validate_invalid_placement
[15:47:55] ============= ttm_bo_validate_same_placement  ==============
[15:47:55] [PASSED] System manager
[15:47:55] [PASSED] VRAM manager
[15:47:55] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:47:55] [PASSED] ttm_bo_validate_failed_alloc
[15:47:55] [PASSED] ttm_bo_validate_pinned
[15:47:55] [PASSED] ttm_bo_validate_busy_placement
[15:47:55] ================ ttm_bo_validate_multihop  =================
[15:47:55] [PASSED] Buffer object for userspace
[15:47:55] [PASSED] Kernel buffer object
[15:47:55] [PASSED] Shared buffer object
[15:47:55] ============ [PASSED] ttm_bo_validate_multihop =============
[15:47:55] ========== ttm_bo_validate_no_placement_signaled  ==========
[15:47:55] [PASSED] Buffer object in system domain, no page vector
[15:47:55] [PASSED] Buffer object in system domain with an existing page vector
[15:47:55] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:47:55] ======== ttm_bo_validate_no_placement_not_signaled  ========
[15:47:55] [PASSED] Buffer object for userspace
[15:47:55] [PASSED] Kernel buffer object
[15:47:55] [PASSED] Shared buffer object
[15:47:55] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:47:55] [PASSED] ttm_bo_validate_move_fence_signaled
[15:47:55] ========= ttm_bo_validate_move_fence_not_signaled  =========
[15:47:55] [PASSED] Waits for GPU
[15:47:55] [PASSED] Tries to lock straight away
[15:47:55] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:47:55] [PASSED] ttm_bo_validate_swapout
[15:47:55] [PASSED] ttm_bo_validate_happy_evict
[15:47:55] [PASSED] ttm_bo_validate_all_pinned_evict
[15:47:55] [PASSED] ttm_bo_validate_allowed_only_evict
[15:47:55] [PASSED] ttm_bo_validate_deleted_evict
[15:47:55] [PASSED] ttm_bo_validate_busy_domain_evict
[15:47:55] [PASSED] ttm_bo_validate_evict_gutting
[15:47:55] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[15:47:55] ================= [PASSED] ttm_bo_validate =================
[15:47:55] ============================================================
[15:47:55] Testing complete. Ran 102 tests: passed: 102
[15:47:55] Elapsed time: 10.018s total, 1.598s configuring, 7.752s building, 0.588s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 17+ messages in thread

* ✗ Xe.CI.BAT: failure for drm/xe: i2c support (rev4)
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (5 preceding siblings ...)
  2025-06-26 15:48 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-26 16:38 ` Patchwork
  2025-06-30 17:55 ` ✗ Xe.CI.Full: " Patchwork
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-06-26 16:38 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 2143 bytes --]

== Series Details ==

Series: drm/xe: i2c support (rev4)
URL   : https://patchwork.freedesktop.org/series/149699/
State : failure

== Summary ==

CI Bug Log - changes from xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0_BAT -> xe-pw-149699v4_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-149699v4_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-149699v4_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (9 -> 8)
------------------------------

  Missing    (1): bat-adlp-vm 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-149699v4_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - bat-adlp-7:         [PASS][1] -> [ABORT][2] +1 other test abort
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
    - bat-atsm-2:         [PASS][3] -> [ABORT][4] +1 other test abort
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html

  


Build changes
-------------

  * Linux: xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0 -> xe-pw-149699v4

  IGT_8429: 8429
  xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0: f6b8af31b91ad0672ddd31165d4917c255886bd0
  xe-pw-149699v4: 149699v4

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/index.html

[-- Attachment #2: Type: text/html, Size: 2769 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs
  2025-06-26 14:21   ` Andy Shevchenko
@ 2025-06-27  8:56     ` Heikki Krogerus
  2025-06-27 11:16       ` Andy Shevchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-27  8:56 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Mika Westerberg,
	Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

Thanks for the review Andy.

On Thu, Jun 26, 2025 at 05:21:02PM +0300, Andy Shevchenko wrote:
> On Thu, Jun 26, 2025 at 04:56:07PM +0300, Heikki Krogerus wrote:
> > Adding adaption/glue layer where the I2C host adapter
> > (Synopsys DesignWare I2C adapter) and the I2C clients (the
> > microcontroller units) are enumerated.
> > 
> > The microcontroller units (MCU) that are attached to the GPU
> > depend on the OEM. The initially supported MCU will be the
> > Add-In Management Controller (AMC).
> 
> ...
> 
> > +static int xe_i2c_register_adapter(struct xe_i2c *i2c)
> > +{
> > +	struct pci_dev *pci = to_pci_dev(i2c->drm_dev);
> > +	struct platform_device *pdev;
> > +	struct fwnode_handle *fwnode;
> > +	int ret;
> > +
> > +	fwnode = fwnode_create_software_node(xe_i2c_adapter_properties, NULL);
> > +	if (!fwnode)
> > +		return -ENOMEM;
> > +
> > +	/*
> > +	 * Not using platform_device_register_full() here because we don't have
> > +	 * a handle to the platform_device before it returns. xe_i2c_notifier()
> > +	 * uses that handle, but it may be called before
> > +	 * platform_device_register_full() is done.
> > +	 */
> > +	pdev = platform_device_alloc(adapter_name, pci_dev_id(pci));
> > +	if (!pdev) {
> > +		ret = -ENOMEM;
> > +		goto err_fwnode_remove;
> > +	}
> > +
> > +	if (i2c->adapter_irq) {
> 
> > +		struct resource	res = { };
> > +
> > +		res.start = i2c->adapter_irq;
> > +		res.name = "xe_i2c";
> > +		res.flags = IORESOURCE_IRQ;
> 
> 
> 		struct resource	res;
> 
> 		res = DEFINE_RES_IRQ_NAMED(i2c->adapter_irq, "xe_i2c");

I have to check what happened during the internal review round,
because I used that originally. But If there's no real reason not to
continue with it, then yes, I'll use it of course.

> > +		ret = platform_device_add_resources(pdev, &res, 1);
> > +		if (ret)
> > +			goto err_pdev_put;
> > +	}
> > +
> > +	pdev->dev.parent = i2c->drm_dev;
> > +	pdev->dev.fwnode = fwnode;
> > +	i2c->adapter_node = fwnode;
> > +	i2c->pdev = pdev;
> > +
> > +	ret = platform_device_add(pdev);
> > +	if (ret)
> > +		goto err_pdev_put;
> > +
> > +	return 0;
> > +
> > +err_pdev_put:
> > +	platform_device_put(pdev);
> > +err_fwnode_remove:
> > +	fwnode_remove_software_node(fwnode);
> > +
> > +	return ret;
> > +}
> 
> ...
> 
> > +static int xe_i2c_irq_map(struct irq_domain *h, unsigned int virq,
> > +			  irq_hw_number_t hw_irq_num)
> > +{
> > +	irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);
> 
> Wondering if you need to setup a custom lockdep class here.
> 
> > +	return 0;
> > +}
> 
> ...
> 
> > +static void xe_i2c_remove_irq(struct xe_i2c *i2c)
> > +{
> > +	if (i2c->irqdomain) {
> 
> 	if (!i2c->irqdomain)
> 		return;
> 
> > +		irq_dispose_mapping(i2c->adapter_irq);
> > +		irq_domain_remove(i2c->irqdomain);
> > +	}
> > +}
> 
> ...
> 
> > +static void xe_i2c_remove(void *data)
> > +{
> > +	struct xe_i2c *i2c = data;
> > +	int i;
> 
> unsigned?
> 
> > +	for (i = 0; i < XE_I2C_MAX_CLIENTS; i++)
> > +		i2c_unregister_device(i2c->client[i]);
> > +
> > +	bus_unregister_notifier(&i2c_bus_type, &i2c->bus_notifier);
> > +	xe_i2c_unregister_adapter(i2c);
> > +	xe_i2c_remove_irq(i2c);
> > +}
> 
> ...
> 
> > +int xe_i2c_probe(struct xe_device *xe)
> > +{
> > +	struct xe_i2c_endpoint ep;
> > +	struct regmap *regmap;
> > +	struct xe_i2c *i2c;
> > +	int ret;
> > +
> > +	xe_i2c_read_endpoint(xe_root_tile_mmio(xe), &ep);
> > +	if (ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> > +		return 0;
> > +
> > +	i2c = devm_kzalloc(xe->drm.dev, sizeof(*i2c), GFP_KERNEL);
> > +	if (!i2c)
> > +		return -ENOMEM;
> > +
> > +	INIT_WORK(&i2c->work, xe_i2c_client_work);
> > +	i2c->mmio = xe_root_tile_mmio(xe);
> > +	i2c->drm_dev = xe->drm.dev;
> > +	i2c->ep = ep;
> 
> > +	regmap = devm_regmap_init(i2c->drm_dev, NULL, i2c, &i2c_regmap_config);
> 
> Use of i2c->drm_dev makes harder to maintain and understand the code.
> Managed resources should be carefully attached to the correct device,
> otherwise it's inevitable object lifetime related issues.
> 
> With
> 
> 	struct device *dev = xe->drm.dev;
> 
> and using local dev, it becomes easier to get and avoid such subtle mistakes.

I have to disagree with you on this one. Local dev pointers create
problems because of the assumption that there is only a single device
in the function to deal with (especially if they are named "dev"),
which is almost never the case - this function is no exception.

But I'll add the local variable as you requested - I'll just name it
carefully.

This kinda related but off topic. IMO in cases like this the regmap
should be assigned to the child device that is being created instead
of the parent device. That is currently prevented by the current
regmap API - the device has to be fully registered before the regmap
can be assigned (and I'm not referring to the resource managed devm_*
API), but I'm not convinced that it has to be like that. The problem
is that the parent device may have multiple child devices that each
need a dedicated regmag. So just as a note to self: check if we can
improve the regmap API.

cheers,

-- 
heikki

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode
  2025-06-26 14:24   ` Andy Shevchenko
@ 2025-06-27 10:36     ` Heikki Krogerus
  0 siblings, 0 replies; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-27 10:36 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Mika Westerberg,
	Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

On Thu, Jun 26, 2025 at 05:24:26PM +0300, Andy Shevchenko wrote:
> On Thu, Jun 26, 2025 at 04:56:09PM +0300, Heikki Krogerus wrote:
> > 
> > Initialize i2c in survivability mode to allow firmware
> > update of Add-In Management Controller (AMC) in survivability mode
> 
> ...
> 
> > +err:
> > +	/*
> > +	 * But if it fails, device can't enter survivability
> > +	 * so move it back for correct error handling
> 
> While at it, add a period at the end.

OK.

Because of the vacations I'll send v5 already today. There is still a
failure report from the CI system that I'm not able to interpret, but
I think it's happening because the I2C endpoint is not accessible on
every GPU. I'll try to solve that by limiting this to BMG for now like
it was originally.

thanks,

-- 
heikki

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs
  2025-06-27  8:56     ` Heikki Krogerus
@ 2025-06-27 11:16       ` Andy Shevchenko
  0 siblings, 0 replies; 17+ messages in thread
From: Andy Shevchenko @ 2025-06-27 11:16 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Mika Westerberg,
	Jan Dabros, Andi Shyti, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

On Fri, Jun 27, 2025 at 11:56:51AM +0300, Heikki Krogerus wrote:
> On Thu, Jun 26, 2025 at 05:21:02PM +0300, Andy Shevchenko wrote:
> > On Thu, Jun 26, 2025 at 04:56:07PM +0300, Heikki Krogerus wrote:

...

> > > +	regmap = devm_regmap_init(i2c->drm_dev, NULL, i2c, &i2c_regmap_config);
> > 
> > Use of i2c->drm_dev makes harder to maintain and understand the code.
> > Managed resources should be carefully attached to the correct device,
> > otherwise it's inevitable object lifetime related issues.
> > 
> > With
> > 
> > 	struct device *dev = xe->drm.dev;
> > 
> > and using local dev, it becomes easier to get and avoid such subtle mistakes.
> 
> I have to disagree with you on this one. Local dev pointers create
> problems because of the assumption that there is only a single device
> in the function to deal with (especially if they are named "dev"),
> which is almost never the case - this function is no exception.

Hmm... In my experience more than 70% of the drivers are okay with this
approach as they do *not* use multiple device pointers. Usually, if we
take IIO for the example, they have a physical device, which is depicted
by the local variable named 'dev' and a Linux IIO device, which is container
that has struct device inside, but it's not used explicitly, IIO APIs use
the pointer to the container (and of course its name differs).

That said, it seems we have different experience (you are most likely talking
about USB cases, where that is indeed quite complicated already).

> But I'll add the local variable as you requested - I'll just name it
> carefully.

Sure.

...

> This kinda related but off topic. IMO in cases like this the regmap
> should be assigned to the child device that is being created instead
> of the parent device. That is currently prevented by the current
> regmap API - the device has to be fully registered before the regmap
> can be assigned (and I'm not referring to the resource managed devm_*
> API), but I'm not convinced that it has to be like that. The problem
> is that the parent device may have multiple child devices that each
> need a dedicated regmag. So just as a note to self: check if we can
> improve the regmap API.

I'm not sure I follow. The (some of) MFD drivers, for instance, work
with many children and one regmapi that is split over the devices.
I don't see any issue with that. The problem is when one tries to mix
regmap and non-regmap approaches in the same (big) driver. That's
a road to mine field.

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller
  2025-06-26 13:56 ` [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
@ 2025-06-27 12:45   ` Raag Jadav
  2025-06-27 12:58     ` Heikki Krogerus
  0 siblings, 1 reply; 17+ messages in thread
From: Raag Jadav @ 2025-06-27 12:45 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel, Karthik Poosa

Hi Heikki,

Thanks for picking this up.

On Thu, Jun 26, 2025 at 04:56:08PM +0300, Heikki Krogerus wrote:
> From: Raag Jadav <raag.jadav@intel.com>
> 
> Wire up suspend/resume handles for I2C controller to match its power
> state with SGUnit.

...

> diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
> index bfbfe1de7f77..0227fcba2168 100644
> --- a/drivers/gpu/drm/xe/xe_i2c.c
> +++ b/drivers/gpu/drm/xe/xe_i2c.c
> @@ -227,6 +227,31 @@ static const struct regmap_config i2c_regmap_config = {
>  	.fast_io = true,
>  };
>  
> +void xe_i2c_pm_suspend(struct xe_device *xe)
> +{
> +	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
> +
> +	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> +		return;
> +
> +	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D3hot);

I just realized the power modes will need (__force u32) casting to make
sparse happy. If you're planning another version, can you please include
it? If not, we can have a quick fix later on.

> +	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));
> +}
> +
> +void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold)
> +{
> +	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
> +
> +	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> +		return;
> +
> +	if (d3cold)
> +		xe_mmio_rmw32(mmio, I2C_CONFIG_CMD, 0, PCI_COMMAND_MEMORY);
> +
> +	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D0);

Ditto.

> +	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));
> +}

Raag

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller
  2025-06-27 12:45   ` Raag Jadav
@ 2025-06-27 12:58     ` Heikki Krogerus
  2025-06-27 13:15       ` Raag Jadav
  0 siblings, 1 reply; 17+ messages in thread
From: Heikki Krogerus @ 2025-06-27 12:58 UTC (permalink / raw)
  To: Raag Jadav
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel, Karthik Poosa

On Fri, Jun 27, 2025 at 03:45:28PM +0300, Raag Jadav wrote:
> Hi Heikki,
> 
> Thanks for picking this up.
> 
> On Thu, Jun 26, 2025 at 04:56:08PM +0300, Heikki Krogerus wrote:
> > From: Raag Jadav <raag.jadav@intel.com>
> > 
> > Wire up suspend/resume handles for I2C controller to match its power
> > state with SGUnit.
> 
> ...
> 
> > diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
> > index bfbfe1de7f77..0227fcba2168 100644
> > --- a/drivers/gpu/drm/xe/xe_i2c.c
> > +++ b/drivers/gpu/drm/xe/xe_i2c.c
> > @@ -227,6 +227,31 @@ static const struct regmap_config i2c_regmap_config = {
> >  	.fast_io = true,
> >  };
> >  
> > +void xe_i2c_pm_suspend(struct xe_device *xe)
> > +{
> > +	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
> > +
> > +	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> > +		return;
> > +
> > +	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D3hot);
> 
> I just realized the power modes will need (__force u32) casting to make
> sparse happy. If you're planning another version, can you please include
> it? If not, we can have a quick fix later on.

I can include the casting, np. Is it enough to cast PCI_D3hot?

thanks,

> > +	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));
> > +}
> > +
> > +void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold)
> > +{
> > +	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
> > +
> > +	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> > +		return;
> > +
> > +	if (d3cold)
> > +		xe_mmio_rmw32(mmio, I2C_CONFIG_CMD, 0, PCI_COMMAND_MEMORY);
> > +
> > +	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D0);
> 
> Ditto.
> 
> > +	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));
> > +}
> 
> Raag

-- 
heikki

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller
  2025-06-27 12:58     ` Heikki Krogerus
@ 2025-06-27 13:15       ` Raag Jadav
  0 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2025-06-27 13:15 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Andi Shyti, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel, Karthik Poosa

On Fri, Jun 27, 2025 at 03:58:00PM +0300, Heikki Krogerus wrote:
> On Fri, Jun 27, 2025 at 03:45:28PM +0300, Raag Jadav wrote:
> > Hi Heikki,
> > 
> > Thanks for picking this up.
> > 
> > On Thu, Jun 26, 2025 at 04:56:08PM +0300, Heikki Krogerus wrote:
> > > From: Raag Jadav <raag.jadav@intel.com>
> > > 
> > > Wire up suspend/resume handles for I2C controller to match its power
> > > state with SGUnit.
> > 
> > ...
> > 
> > > diff --git a/drivers/gpu/drm/xe/xe_i2c.c b/drivers/gpu/drm/xe/xe_i2c.c
> > > index bfbfe1de7f77..0227fcba2168 100644
> > > --- a/drivers/gpu/drm/xe/xe_i2c.c
> > > +++ b/drivers/gpu/drm/xe/xe_i2c.c
> > > @@ -227,6 +227,31 @@ static const struct regmap_config i2c_regmap_config = {
> > >  	.fast_io = true,
> > >  };
> > >  
> > > +void xe_i2c_pm_suspend(struct xe_device *xe)
> > > +{
> > > +	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
> > > +
> > > +	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> > > +		return;
> > > +
> > > +	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D3hot);
> > 
> > I just realized the power modes will need (__force u32) casting to make
> > sparse happy. If you're planning another version, can you please include
> > it? If not, we can have a quick fix later on.
> 
> I can include the casting, np. Is it enough to cast PCI_D3hot?

Looking at some of the existing code, it seems should be good enough.

Raag

> > > +	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));
> > > +}
> > > +
> > > +void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold)
> > > +{
> > > +	struct xe_mmio *mmio = xe_root_tile_mmio(xe);
> > > +
> > > +	if (!xe->i2c || xe->i2c->ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> > > +		return;
> > > +
> > > +	if (d3cold)
> > > +		xe_mmio_rmw32(mmio, I2C_CONFIG_CMD, 0, PCI_COMMAND_MEMORY);
> > > +
> > > +	xe_mmio_rmw32(mmio, I2C_CONFIG_PMCSR, PCI_PM_CTRL_STATE_MASK, PCI_D0);
> > 
> > Ditto.
> > 
> > > +	drm_dbg(&xe->drm, "pmcsr: 0x%08x\n", xe_mmio_read32(mmio, I2C_CONFIG_PMCSR));

^ permalink raw reply	[flat|nested] 17+ messages in thread

* ✗ Xe.CI.Full: failure for drm/xe: i2c support (rev4)
  2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (6 preceding siblings ...)
  2025-06-26 16:38 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-06-30 17:55 ` Patchwork
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-06-30 17:55 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 46971 bytes --]

== Series Details ==

Series: drm/xe: i2c support (rev4)
URL   : https://patchwork.freedesktop.org/series/149699/
State : failure

== Summary ==

CI Bug Log - changes from xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0_FULL -> xe-pw-149699v4_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-149699v4_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-149699v4_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-149699v4_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_module_load@many-reload:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@xe_module_load@many-reload.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-adlp:         [PASS][2] -> [ABORT][3] +29 other tests abort
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-9/igt@xe_sriov_scheduling@equal-throughput.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-8/igt@xe_sriov_scheduling@equal-throughput.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@xe_pmu@engine-activity-render-node-idle}:
    - shard-adlp:         [PASS][4] -> [ABORT][5] +10 other tests abort
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-8/igt@xe_pmu@engine-activity-render-node-idle.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-3/igt@xe_pmu@engine-activity-render-node-idle.html

  
Known issues
------------

  Here are the changes found in xe-pw-149699v4_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [PASS][6] -> [FAIL][7] ([Intel XE#3718] / [Intel XE#827])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-4/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:          [PASS][8] -> [FAIL][9] ([Intel XE#827])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][10] ([Intel XE#4543]) +5 other tests dmesg-warn
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#3767]) +15 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-bmg:          [PASS][12] -> [FAIL][13] ([Intel XE#3908])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][14] ([Intel XE#3908])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#316])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][16] ([Intel XE#1124])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#1124]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#1124]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][19] -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#2191])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2887]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][23] ([Intel XE#787]) +5 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#2907]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#787]) +76 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][28] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][29] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][31] ([Intel XE#4418])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#373])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_chamelium_frames@hdmi-frame-dump.html
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2252])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#373]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@atomic@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][35] ([Intel XE#1178])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_content_protection@atomic@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#4294])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#4422])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#2373])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-2/igt@kms_feature_discovery@display-2x.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2316])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
    - shard-adlp:         NOTRUN -> [SKIP][43] ([Intel XE#310])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [PASS][44] -> [SKIP][45] ([Intel XE#2316]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][46] -> [FAIL][47] ([Intel XE#301])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [PASS][48] -> [DMESG-WARN][49] ([Intel XE#4543]) +2 other tests dmesg-warn
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible:
    - shard-bmg:          [PASS][50] -> [FAIL][51] ([Intel XE#2882] / [Intel XE#5338])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][52] ([Intel XE#2882] / [Intel XE#5338])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][53] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#455]) +7 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#651]) +8 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2312])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2311]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
    - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#651]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#653]) +7 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_hdr@static-swap:
    - shard-adlp:         NOTRUN -> [SKIP][60] ([Intel XE#455])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][61] -> [SKIP][62] ([Intel XE#3012])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#4359])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          [PASS][64] -> [SKIP][65] ([Intel XE#4596]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#5021])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         [PASS][67] -> [FAIL][68] ([Intel XE#718])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-3/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1489]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#1122])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2-sprite-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@kms_psr@psr2-sprite-plane-move.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-adlp:         [PASS][72] -> [DMESG-WARN][73] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-1/igt@kms_vblank@ts-continuation-suspend.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-6/igt@kms_vblank@ts-continuation-suspend.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][75] ([Intel XE#1126])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_eu_stall@blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#5308])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@xe_eu_stall@blocking-re-enable.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#5308])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@xe_eu_stall@blocking-re-enable.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#4837]) +4 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#1392])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2322])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
    - shard-dg2-set2:     [PASS][81] -> [SKIP][82] ([Intel XE#1392]) +3 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#288]) +8 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [PASS][84] -> [DMESG-WARN][85] ([Intel XE#3876])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy:
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#4837]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy.html
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#4837]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#4943]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [PASS][89] -> [FAIL][90] ([Intel XE#5018])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#4915]) +90 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html

  * igt@xe_exec_system_allocator@twice-large-malloc:
    - shard-adlp:         NOTRUN -> [SKIP][92] ([Intel XE#4915]) +13 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@xe_exec_system_allocator@twice-large-malloc.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][93] ([Intel XE#4917])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          NOTRUN -> [ABORT][94] ([Intel XE#4917])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][95] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@xe_oa@polling-small-buf.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#1948])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_render_copy@render-stress-4-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][97] ([Intel XE#4814])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-464/igt@xe_render_copy@render-stress-4-copies.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#4273])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@xe_sriov_flr@flr-vfs-parallel.html

  
#### Possible fixes ####

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][99] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][101] ([Intel XE#3862]) -> [PASS][102] +1 other test pass
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][103] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][105] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][107] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_color@ctm-green-to-red@pipe-b-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][109] -> [PASS][110] +1 other test pass
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-464/igt@kms_color@ctm-green-to-red@pipe-b-dp-4.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@kms_color@ctm-green-to-red@pipe-b-dp-4.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][111] ([Intel XE#2291]) -> [PASS][112] +5 other tests pass
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [SKIP][113] ([Intel XE#4354]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][115] ([Intel XE#2316]) -> [PASS][116] +8 other tests pass
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4:
    - shard-dg2-set2:     [INCOMPLETE][117] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][118] +1 other test pass
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-hdmi-a6-dp4.html

  * igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][119] ([Intel XE#4543]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-6/igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-6/igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][121] ([Intel XE#301]) -> [PASS][122] +2 other tests pass
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][123] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][124] +1 other test pass
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
    - shard-adlp:         [FAIL][125] ([Intel XE#2882]) -> [PASS][126] +1 other test pass
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling:
    - shard-adlp:         [DMESG-FAIL][127] ([Intel XE#4543]) -> [PASS][128] +1 other test pass
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
    - shard-adlp:         [FAIL][129] ([Intel XE#1874]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html

  * igt@kms_lease@lease-revoke:
    - shard-adlp:         [ABORT][131] ([Intel XE#2953]) -> [PASS][132] +1 other test pass
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-2/igt@kms_lease@lease-revoke.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_lease@lease-revoke.html

  * igt@kms_lease@lease-revoke@pipe-b-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][133] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][134] +2 other tests pass
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-adlp-2/igt@kms_lease@lease-revoke@pipe-b-hdmi-a-1.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-adlp-2/igt@kms_lease@lease-revoke@pipe-b-hdmi-a-1.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][135] ([Intel XE#1435]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
    - shard-dg2-set2:     [SKIP][137] ([Intel XE#1392]) -> [PASS][138]
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][139] ([Intel XE#1727] / [Intel XE#3113]) -> [INCOMPLETE][140] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][141] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][142] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [SKIP][143] ([Intel XE#2341]) -> [FAIL][144] ([Intel XE#1178])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_content_protection@atomic.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][145] ([Intel XE#1178]) -> [SKIP][146] ([Intel XE#2341])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-1/igt@kms_content_protection@legacy.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][147] ([Intel XE#2312]) -> [SKIP][148] ([Intel XE#2311]) +25 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][149] ([Intel XE#4141]) -> [SKIP][150] ([Intel XE#2312]) +7 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][151] ([Intel XE#2312]) -> [SKIP][152] ([Intel XE#4141]) +4 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][153] ([Intel XE#2311]) -> [SKIP][154] ([Intel XE#2312]) +15 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][155] ([Intel XE#2313]) -> [SKIP][156] ([Intel XE#2312]) +13 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][157] ([Intel XE#2312]) -> [SKIP][158] ([Intel XE#2313]) +26 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][159] ([Intel XE#4596]) -> [SKIP][160] ([Intel XE#5021]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][161] ([Intel XE#2426]) -> [SKIP][162] ([Intel XE#2509])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
  [Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929


Build changes
-------------

  * Linux: xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0 -> xe-pw-149699v4

  IGT_8429: 8429
  xe-3311-f6b8af31b91ad0672ddd31165d4917c255886bd0: f6b8af31b91ad0672ddd31165d4917c255886bd0
  xe-pw-149699v4: 149699v4

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v4/index.html

[-- Attachment #2: Type: text/html, Size: 56487 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-06-30 17:55 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-26 13:56 [PATCH v4 0/4] drm/xe: i2c support Heikki Krogerus
2025-06-26 13:56 ` [PATCH v4 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
2025-06-26 13:56 ` [PATCH v4 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
2025-06-26 14:21   ` Andy Shevchenko
2025-06-27  8:56     ` Heikki Krogerus
2025-06-27 11:16       ` Andy Shevchenko
2025-06-26 13:56 ` [PATCH v4 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
2025-06-27 12:45   ` Raag Jadav
2025-06-27 12:58     ` Heikki Krogerus
2025-06-27 13:15       ` Raag Jadav
2025-06-26 13:56 ` [PATCH v4 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
2025-06-26 14:24   ` Andy Shevchenko
2025-06-27 10:36     ` Heikki Krogerus
2025-06-26 15:46 ` ✗ CI.checkpatch: warning for drm/xe: i2c support (rev4) Patchwork
2025-06-26 15:48 ` ✓ CI.KUnit: success " Patchwork
2025-06-26 16:38 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-06-30 17:55 ` ✗ 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