Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/4] drm/xe: i2c support
@ 2025-06-27 13:53 Heikki Krogerus
  2025-06-27 13:53 ` [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
                   ` (7 more replies)
  0 siblings, 8 replies; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-27 13:53 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 v4:
- Cleanups requested by Andy.
- Casting the PCI power modes to make sparse happy - Raag.
- Limiting the use of this thing to Battlemage again. But I'm not sure
  if this is the correct thing to do.

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                 | 329 ++++++++++++++++++++
 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, 464 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] 24+ messages in thread

* [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
@ 2025-06-27 13:53 ` Heikki Krogerus
  2025-06-27 14:13   ` Andy Shevchenko
  2025-06-30 18:28   ` Andi Shyti
  2025-06-27 13:53 ` [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
                   ` (6 subsequent siblings)
  7 siblings, 2 replies; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-27 13:53 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] 24+ messages in thread

* [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
  2025-06-27 13:53 ` [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
@ 2025-06-27 13:53 ` Heikki Krogerus
  2025-06-27 21:29   ` Rodrigo Vivi
  2025-06-30 18:58   ` Andi Shyti
  2025-06-27 13:53 ` [PATCH v5 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
                   ` (5 subsequent siblings)
  7 siblings, 2 replies; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-27 13:53 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           | 300 ++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_i2c.h           |  58 +++++
 drivers/gpu/drm/xe/xe_irq.c           |   2 +
 11 files changed, 390 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 553c29e1030b..eb361c202581 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 0b73cb72bad1..6db09cfc8eb8 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_mmio.h"
 #include "xe_module.h"
@@ -902,6 +903,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 7e4f6d846af6..ce0c4ed834b8 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..172271469ceb
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_i2c.c
@@ -0,0 +1,300 @@
+/* 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 = 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 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)
+		return;
+
+	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;
+	unsigned 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 device *drm_dev = xe->drm.dev;
+	struct xe_i2c_endpoint ep;
+	struct regmap *regmap;
+	struct xe_i2c *i2c;
+	int ret;
+
+	if (xe->info.platform != XE_BATTLEMAGE)
+		return 0;
+
+	xe_i2c_read_endpoint(xe_root_tile_mmio(xe), &ep);
+	if (ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
+		return 0;
+
+	i2c = devm_kzalloc(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 = drm_dev;
+	i2c->ep = ep;
+
+	regmap = devm_regmap_init(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(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] 24+ messages in thread

* [PATCH v5 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
  2025-06-27 13:53 ` [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
  2025-06-27 13:53 ` [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
@ 2025-06-27 13:53 ` Heikki Krogerus
  2025-06-30 18:59   ` Andi Shyti
  2025-06-27 13:53 ` [PATCH v5 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-27 13:53 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 172271469ceb..c22800256dcf 100644
--- a/drivers/gpu/drm/xe/xe_i2c.c
+++ b/drivers/gpu/drm/xe/xe_i2c.c
@@ -226,6 +226,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, (__force u32)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, (__force u32)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;
@@ -270,6 +295,10 @@ int xe_i2c_probe(struct xe_device *xe)
 	i2c->mmio = xe_root_tile_mmio(xe);
 	i2c->drm_dev = 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(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] 24+ messages in thread

* [PATCH v5 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (2 preceding siblings ...)
  2025-06-27 13:53 ` [PATCH v5 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
@ 2025-06-27 13:53 ` Heikki Krogerus
  2025-06-30 19:02   ` Andi Shyti
  2025-06-30 14:53 ` ✗ CI.checkpatch: warning for drm/xe: i2c support (rev5) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-27 13:53 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..76141eb2c853 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] 24+ messages in thread

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-27 13:53 ` [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
@ 2025-06-27 14:13   ` Andy Shevchenko
  2025-06-27 21:32     ` Rodrigo Vivi
  2025-06-30 18:28   ` Andi Shyti
  1 sibling, 1 reply; 24+ messages in thread
From: Andy Shevchenko @ 2025-06-27 14:13 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 04:53:11PM +0300, Heikki Krogerus wrote:
> The regmap is coming from the parent also in case of Xe
> GPUs. Reusing the Wangxun quirk for that.

...

>  static int dw_i2c_plat_probe(struct platform_device *pdev)
>  {
> +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);

> -	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;

Maybe I'm missing something, but why do we need these (above) changes?


-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs
  2025-06-27 13:53 ` [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
@ 2025-06-27 21:29   ` Rodrigo Vivi
  2025-06-30 18:58   ` Andi Shyti
  1 sibling, 0 replies; 24+ messages in thread
From: Rodrigo Vivi @ 2025-06-27 21:29 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Lucas De Marchi, Thomas Hellström, 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

On Fri, Jun 27, 2025 at 04:53:12PM +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).
> 

I hope all Andy's comments got addressed here..

Mine's were. Thank you.

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> 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           | 300 ++++++++++++++++++++++++++
>  drivers/gpu/drm/xe/xe_i2c.h           |  58 +++++
>  drivers/gpu/drm/xe/xe_irq.c           |   2 +
>  11 files changed, 390 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 553c29e1030b..eb361c202581 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 0b73cb72bad1..6db09cfc8eb8 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_mmio.h"
>  #include "xe_module.h"
> @@ -902,6 +903,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 7e4f6d846af6..ce0c4ed834b8 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..172271469ceb
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_i2c.c
> @@ -0,0 +1,300 @@
> +/* 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 = 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 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)
> +		return;
> +
> +	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;
> +	unsigned 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 device *drm_dev = xe->drm.dev;
> +	struct xe_i2c_endpoint ep;
> +	struct regmap *regmap;
> +	struct xe_i2c *i2c;
> +	int ret;
> +
> +	if (xe->info.platform != XE_BATTLEMAGE)
> +		return 0;
> +
> +	xe_i2c_read_endpoint(xe_root_tile_mmio(xe), &ep);
> +	if (ep.cookie != XE_I2C_EP_COOKIE_DEVICE)
> +		return 0;
> +
> +	i2c = devm_kzalloc(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 = drm_dev;
> +	i2c->ep = ep;
> +
> +	regmap = devm_regmap_init(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(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	[flat|nested] 24+ messages in thread

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-27 14:13   ` Andy Shevchenko
@ 2025-06-27 21:32     ` Rodrigo Vivi
  2025-06-30  7:30       ` Andy Shevchenko
  0 siblings, 1 reply; 24+ messages in thread
From: Rodrigo Vivi @ 2025-06-27 21:32 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Heikki Krogerus, Lucas De Marchi, Thomas Hellström,
	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 05:13:36PM +0300, Andy Shevchenko wrote:
> On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:
> > The regmap is coming from the parent also in case of Xe
> > GPUs. Reusing the Wangxun quirk for that.
> 
> ...
> 
> >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> >  {
> > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> 
> > -	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;
> 
> Maybe I'm missing something, but why do we need these (above) changes?


in between, it is introduced a new one:
flags |= ACCESS_POLLING;

So, the initialization moved up, before the ACCESS_POLLING, and
it let the assignment to the last, along with the group.

Looks good to me:

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> 
> 
> -- 
> With Best Regards,
> Andy Shevchenko
> 
> 

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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-27 21:32     ` Rodrigo Vivi
@ 2025-06-30  7:30       ` Andy Shevchenko
  2025-06-30  8:10         ` Heikki Krogerus
  0 siblings, 1 reply; 24+ messages in thread
From: Andy Shevchenko @ 2025-06-30  7:30 UTC (permalink / raw)
  To: Rodrigo Vivi
  Cc: Heikki Krogerus, Lucas De Marchi, Thomas Hellström,
	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 05:32:01PM -0400, Rodrigo Vivi wrote:
> On Fri, Jun 27, 2025 at 05:13:36PM +0300, Andy Shevchenko wrote:
> > On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:

...

> > >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> > >  {
> > > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> > 
> > > -	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;
> > 
> > Maybe I'm missing something, but why do we need these (above) changes?
> 
> in between, it is introduced a new one:
> flags |= ACCESS_POLLING;
> 
> So, the initialization moved up, before the ACCESS_POLLING, and
> it let the assignment to the last, along with the group.

I still don't get. The cited code is complete equivalent.

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-30  7:30       ` Andy Shevchenko
@ 2025-06-30  8:10         ` Heikki Krogerus
  2025-06-30 10:02           ` Andy Shevchenko
  0 siblings, 1 reply; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-30  8:10 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Rodrigo Vivi, Lucas De Marchi, Thomas Hellström,
	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 Mon, Jun 30, 2025 at 10:30:19AM +0300, Andy Shevchenko wrote:
> On Fri, Jun 27, 2025 at 05:32:01PM -0400, Rodrigo Vivi wrote:
> > On Fri, Jun 27, 2025 at 05:13:36PM +0300, Andy Shevchenko wrote:
> > > On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:
> 
> ...
> 
> > > >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> > > >  {
> > > > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> > > 
> > > > -	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;
> > > 
> > > Maybe I'm missing something, but why do we need these (above) changes?
> > 
> > in between, it is introduced a new one:
> > flags |= ACCESS_POLLING;
> > 
> > So, the initialization moved up, before the ACCESS_POLLING, and
> > it let the assignment to the last, along with the group.
> 
> I still don't get. The cited code is complete equivalent.

This was requested by Jarkko.

thanks,

-- 
heikki

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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-30  8:10         ` Heikki Krogerus
@ 2025-06-30 10:02           ` Andy Shevchenko
  2025-06-30 11:59             ` Heikki Krogerus
  0 siblings, 1 reply; 24+ messages in thread
From: Andy Shevchenko @ 2025-06-30 10:02 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Rodrigo Vivi, Lucas De Marchi, Thomas Hellström,
	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 Mon, Jun 30, 2025 at 11:10:00AM +0300, Heikki Krogerus wrote:
> On Mon, Jun 30, 2025 at 10:30:19AM +0300, Andy Shevchenko wrote:
> > On Fri, Jun 27, 2025 at 05:32:01PM -0400, Rodrigo Vivi wrote:
> > > On Fri, Jun 27, 2025 at 05:13:36PM +0300, Andy Shevchenko wrote:
> > > > On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:

...

> > > > >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> > > > >  {
> > > > > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> > > > 
> > > > > -	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;
> > > > 
> > > > Maybe I'm missing something, but why do we need these (above) changes?
> > > 
> > > in between, it is introduced a new one:
> > > flags |= ACCESS_POLLING;
> > > 
> > > So, the initialization moved up, before the ACCESS_POLLING, and
> > > it let the assignment to the last, along with the group.
> > 
> > I still don't get. The cited code is complete equivalent.
> 
> This was requested by Jarkko.

Okay, but why? Sounds to me like unneeded churn. Can't we do this later when
required?

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-30 10:02           ` Andy Shevchenko
@ 2025-06-30 11:59             ` Heikki Krogerus
  2025-06-30 13:16               ` Andy Shevchenko
  0 siblings, 1 reply; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-30 11:59 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Rodrigo Vivi, Lucas De Marchi, Thomas Hellström,
	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 Mon, Jun 30, 2025 at 01:02:56PM +0300, Andy Shevchenko wrote:
> On Mon, Jun 30, 2025 at 11:10:00AM +0300, Heikki Krogerus wrote:
> > On Mon, Jun 30, 2025 at 10:30:19AM +0300, Andy Shevchenko wrote:
> > > On Fri, Jun 27, 2025 at 05:32:01PM -0400, Rodrigo Vivi wrote:
> > > > On Fri, Jun 27, 2025 at 05:13:36PM +0300, Andy Shevchenko wrote:
> > > > > On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:
> 
> ...
> 
> > > > > >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> > > > > >  {
> > > > > > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> > > > > 
> > > > > > -	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;
> > > > > 
> > > > > Maybe I'm missing something, but why do we need these (above) changes?
> > > > 
> > > > in between, it is introduced a new one:
> > > > flags |= ACCESS_POLLING;
> > > > 
> > > > So, the initialization moved up, before the ACCESS_POLLING, and
> > > > it let the assignment to the last, along with the group.
> > > 
> > > I still don't get. The cited code is complete equivalent.
> > 
> > This was requested by Jarkko.
> 
> Okay, but why? Sounds to me like unneeded churn. Can't we do this later when
> required?

You need to ask why from Jarkko - I did not really question him on
this one. Unfortunately his on vacation at the moment. I can drop
this, but then I'll have to drop also Jarkko's ACK.

I think we already agreed that this function, and probable the entire
file, need to be refactored a bit, so would you mind much if we just
went ahead with this as it is?

I'm asking that also because I don't have means or time to test this
anymore before I start my vacation.

thanks,

-- 
heikki

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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-30 11:59             ` Heikki Krogerus
@ 2025-06-30 13:16               ` Andy Shevchenko
  2025-06-30 14:16                 ` Heikki Krogerus
  2025-06-30 18:21                 ` Andi Shyti
  0 siblings, 2 replies; 24+ messages in thread
From: Andy Shevchenko @ 2025-06-30 13:16 UTC (permalink / raw)
  To: Heikki Krogerus
  Cc: Rodrigo Vivi, Lucas De Marchi, Thomas Hellström,
	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 Mon, Jun 30, 2025 at 02:59:21PM +0300, Heikki Krogerus wrote:
> On Mon, Jun 30, 2025 at 01:02:56PM +0300, Andy Shevchenko wrote:
> > On Mon, Jun 30, 2025 at 11:10:00AM +0300, Heikki Krogerus wrote:
> > > On Mon, Jun 30, 2025 at 10:30:19AM +0300, Andy Shevchenko wrote:
> > > > On Fri, Jun 27, 2025 at 05:32:01PM -0400, Rodrigo Vivi wrote:
> > > > > On Fri, Jun 27, 2025 at 05:13:36PM +0300, Andy Shevchenko wrote:
> > > > > > On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:

...

> > > > > > >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> > > > > > >  {
> > > > > > > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> > > > > > 
> > > > > > > -	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;
> > > > > > 
> > > > > > Maybe I'm missing something, but why do we need these (above) changes?
> > > > > 
> > > > > in between, it is introduced a new one:
> > > > > flags |= ACCESS_POLLING;
> > > > > 
> > > > > So, the initialization moved up, before the ACCESS_POLLING, and
> > > > > it let the assignment to the last, along with the group.
> > > > 
> > > > I still don't get. The cited code is complete equivalent.
> > > 
> > > This was requested by Jarkko.
> > 
> > Okay, but why? Sounds to me like unneeded churn. Can't we do this later when
> > required?
> 
> You need to ask why from Jarkko - I did not really question him on
> this one. Unfortunately his on vacation at the moment.

Yeah :-(

> I can drop this, but then I'll have to drop also Jarkko's ACK.

I can give mine if it helps. The code as far as I can see is 100% equivalent.

> I think we already agreed that this function, and probable the entire
> file, need to be refactored a bit, so would you mind much if we just
> went ahead with this as it is?
> 
> I'm asking that also because I don't have means or time to test this
> anymore before I start my vacation.

I see, then we may ask Andi and Wolfram on this. I slightly prefer to have
no additional churn added without a good reason.

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-30 13:16               ` Andy Shevchenko
@ 2025-06-30 14:16                 ` Heikki Krogerus
  2025-06-30 18:21                 ` Andi Shyti
  1 sibling, 0 replies; 24+ messages in thread
From: Heikki Krogerus @ 2025-06-30 14:16 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Rodrigo Vivi, Lucas De Marchi, Thomas Hellström,
	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 Mon, Jun 30, 2025 at 04:16:56PM +0300, Andy Shevchenko wrote:
> On Mon, Jun 30, 2025 at 02:59:21PM +0300, Heikki Krogerus wrote:
> > On Mon, Jun 30, 2025 at 01:02:56PM +0300, Andy Shevchenko wrote:
> > > On Mon, Jun 30, 2025 at 11:10:00AM +0300, Heikki Krogerus wrote:
> > > > On Mon, Jun 30, 2025 at 10:30:19AM +0300, Andy Shevchenko wrote:
> > > > > On Fri, Jun 27, 2025 at 05:32:01PM -0400, Rodrigo Vivi wrote:
> > > > > > On Fri, Jun 27, 2025 at 05:13:36PM +0300, Andy Shevchenko wrote:
> > > > > > > On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:
> 
> ...
> 
> > > > > > > >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> > > > > > > >  {
> > > > > > > > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> > > > > > > 
> > > > > > > > -	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;
> > > > > > > 
> > > > > > > Maybe I'm missing something, but why do we need these (above) changes?
> > > > > > 
> > > > > > in between, it is introduced a new one:
> > > > > > flags |= ACCESS_POLLING;
> > > > > > 
> > > > > > So, the initialization moved up, before the ACCESS_POLLING, and
> > > > > > it let the assignment to the last, along with the group.
> > > > > 
> > > > > I still don't get. The cited code is complete equivalent.
> > > > 
> > > > This was requested by Jarkko.
> > > 
> > > Okay, but why? Sounds to me like unneeded churn. Can't we do this later when
> > > required?
> > 
> > You need to ask why from Jarkko - I did not really question him on
> > this one. Unfortunately his on vacation at the moment.
> 
> Yeah :-(
> 
> > I can drop this, but then I'll have to drop also Jarkko's ACK.
> 
> I can give mine if it helps. The code as far as I can see is 100% equivalent.
> 
> > I think we already agreed that this function, and probable the entire
> > file, need to be refactored a bit, so would you mind much if we just
> > went ahead with this as it is?
> > 
> > I'm asking that also because I don't have means or time to test this
> > anymore before I start my vacation.
> 
> I see, then we may ask Andi and Wolfram on this. I slightly prefer to have
> no additional churn added without a good reason.

OK. I'll fix this.

thanks,

-- 
heikki

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

* ✗ CI.checkpatch: warning for drm/xe: i2c support (rev5)
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (3 preceding siblings ...)
  2025-06-27 13:53 ` [PATCH v5 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
@ 2025-06-30 14:53 ` Patchwork
  2025-06-30 14:54 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-06-30 14:53 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

== Series Details ==

Series: drm/xe: i2c support (rev5)
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 ee28bd924445e52b139132363abca7326f7b107b
Author: Riana Tauro <riana.tauro@intel.com>
Date:   Fri Jun 27 16:53:14 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 ac0c6f9ab46132d8a40c616bd1e9210db4ffe600 drm-intel
3a1e5941fa28 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
2846b0559f40 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>

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

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

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

total: 0 errors, 4 warnings, 0 checks, 457 lines checked
0092c72b3097 drm/xe/pm: Wire up suspend/resume for I2C controller
ee28bd924445 drm/xe/xe_i2c: Add support for i2c in survivability mode



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

* ✓ CI.KUnit: success for drm/xe: i2c support (rev5)
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (4 preceding siblings ...)
  2025-06-30 14:53 ` ✗ CI.checkpatch: warning for drm/xe: i2c support (rev5) Patchwork
@ 2025-06-30 14:54 ` Patchwork
  2025-06-30 15:30 ` ✓ Xe.CI.BAT: " Patchwork
  2025-07-01 16:13 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-06-30 14:54 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

== Series Details ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: i2c support (rev5)
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (5 preceding siblings ...)
  2025-06-30 14:54 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-30 15:30 ` Patchwork
  2025-07-01 16:13 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-06-30 15:30 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd_BAT -> xe-pw-149699v5_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-adlp-vm 


Changes
-------

  No changes found


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

  * Linux: xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd -> xe-pw-149699v5

  IGT_8431: 8431
  xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd: 078be02b4585b9a9703401d89a3ac93e2d15a6bd
  xe-pw-149699v5: 149699v5

== Logs ==

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

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

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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-30 13:16               ` Andy Shevchenko
  2025-06-30 14:16                 ` Heikki Krogerus
@ 2025-06-30 18:21                 ` Andi Shyti
  1 sibling, 0 replies; 24+ messages in thread
From: Andi Shyti @ 2025-06-30 18:21 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Heikki Krogerus, Rodrigo Vivi, Lucas De Marchi,
	Thomas Hellström, Jarkko Nikula, David Airlie, Simona Vetter,
	Mika Westerberg, Jan Dabros, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

Hi Andy,

On Mon, Jun 30, 2025 at 04:16:56PM +0300, Andy Shevchenko wrote:
> On Mon, Jun 30, 2025 at 02:59:21PM +0300, Heikki Krogerus wrote:
> > On Mon, Jun 30, 2025 at 01:02:56PM +0300, Andy Shevchenko wrote:
> > > On Mon, Jun 30, 2025 at 11:10:00AM +0300, Heikki Krogerus wrote:
> > > > On Mon, Jun 30, 2025 at 10:30:19AM +0300, Andy Shevchenko wrote:
> > > > > On Fri, Jun 27, 2025 at 05:32:01PM -0400, Rodrigo Vivi wrote:
> > > > > > On Fri, Jun 27, 2025 at 05:13:36PM +0300, Andy Shevchenko wrote:
> > > > > > > On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:
> 
> ...
> 
> > > > > > > >  static int dw_i2c_plat_probe(struct platform_device *pdev)
> > > > > > > >  {
> > > > > > > > +	u32 flags = (uintptr_t)device_get_match_data(&pdev->dev);
> > > > > > > 
> > > > > > > > -	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;
> > > > > > > 
> > > > > > > Maybe I'm missing something, but why do we need these (above) changes?
> > > > > > 
> > > > > > in between, it is introduced a new one:
> > > > > > flags |= ACCESS_POLLING;
> > > > > > 
> > > > > > So, the initialization moved up, before the ACCESS_POLLING, and
> > > > > > it let the assignment to the last, along with the group.
> > > > > 
> > > > > I still don't get. The cited code is complete equivalent.
> > > > 
> > > > This was requested by Jarkko.
> > > 
> > > Okay, but why? Sounds to me like unneeded churn. Can't we do this later when
> > > required?

I don't think it makes sense to add the extra flag later as it
would be a non relevant change, so that I'm fine with having it
here.

> > You need to ask why from Jarkko - I did not really question him on
> > this one. Unfortunately his on vacation at the moment.
> 
> Yeah :-(
> 
> > I can drop this, but then I'll have to drop also Jarkko's ACK.

Just for reference, Ack is not Reviewed. If Jarkko Acks, I assume
he is OK with the general idea, not specifically with the code. I
think that if you change a bit the code without altering the
result you can keep the Ack. Up to you.

> I can give mine if it helps. The code as far as I can see is 100% equivalent.
> 
> > I think we already agreed that this function, and probable the entire
> > file, need to be refactored a bit, so would you mind much if we just
> > went ahead with this as it is?
> > 
> > I'm asking that also because I don't have means or time to test this
> > anymore before I start my vacation.
> 
> I see, then we may ask Andi and Wolfram on this. I slightly prefer to have
> no additional churn added without a good reason.

To be honest I don't really mind. I think that if we add the
extra "flag" or we don't, the amount of code is the same.

If we decide not to add the extra "flag", then we need to move
the initialization of dev->flag above or shuffle something else
around.

In the meantime:

Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>

Thanks,
Andi

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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-27 13:53 ` [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
  2025-06-27 14:13   ` Andy Shevchenko
@ 2025-06-30 18:28   ` Andi Shyti
  2025-07-01  7:45     ` Heikki Krogerus
  1 sibling, 1 reply; 24+ messages in thread
From: Andi Shyti @ 2025-06-30 18:28 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, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

Hi Heikki,

On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:
> The regmap is coming from the parent also in case of Xe
> GPUs. Reusing the Wangxun quirk for that.

What I don't like, though, is that there is no mention of the
change in the probe in the commit log.

Besides, are these changes related? Can we have them split in two
different patches? I guess this would also make Andy's point
about the extra churn.

Andi

> 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>

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

* Re: [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs
  2025-06-27 13:53 ` [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
  2025-06-27 21:29   ` Rodrigo Vivi
@ 2025-06-30 18:58   ` Andi Shyti
  1 sibling, 0 replies; 24+ messages in thread
From: Andi Shyti @ 2025-06-30 18:58 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, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

Hi,

On Fri, Jun 27, 2025 at 04:53:12PM +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).
> 
> Originally-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

Looks very good.

Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>

(sorry for coming this late, but I've been on and off in this
period. I would have definitely loved to help on this)

Thanks,
Andi

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

* Re: [PATCH v5 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller
  2025-06-27 13:53 ` [PATCH v5 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
@ 2025-06-30 18:59   ` Andi Shyti
  0 siblings, 0 replies; 24+ messages in thread
From: Andi Shyti @ 2025-06-30 18:59 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, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel, Karthik Poosa

Hi Heikki and Raag,

On Fri, Jun 27, 2025 at 04:53:13PM +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.
> 
> 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>

Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>

Thanks,
Andi

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

* Re: [PATCH v5 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode
  2025-06-27 13:53 ` [PATCH v5 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
@ 2025-06-30 19:02   ` Andi Shyti
  0 siblings, 0 replies; 24+ messages in thread
From: Andi Shyti @ 2025-06-30 19:02 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, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

Hi Heikki and Riana,

> +err:
> +	/*
> +	 * But if it fails, device can't enter survivability

nitpick: the "But" follows the "if". As we don't have the "if"
anymore, the "But" leaves the reader a bit flubbergasted :-)

If you are going to resend, please, remove it. Otherwise it can
be improved before submitting the patch.

In any case,

Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>

Andi

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

* Re: [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe
  2025-06-30 18:28   ` Andi Shyti
@ 2025-07-01  7:45     ` Heikki Krogerus
  0 siblings, 0 replies; 24+ messages in thread
From: Heikki Krogerus @ 2025-07-01  7:45 UTC (permalink / raw)
  To: Andi Shyti
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	Jarkko Nikula, David Airlie, Simona Vetter, Andy Shevchenko,
	Mika Westerberg, Jan Dabros, Raag Jadav, Tauro, Riana,
	Adatrao, Srinivasa, Michael J. Ruhl, intel-xe, linux-i2c,
	linux-kernel

On Mon, Jun 30, 2025 at 08:28:12PM +0200, Andi Shyti wrote:
> Hi Heikki,
> 
> On Fri, Jun 27, 2025 at 04:53:11PM +0300, Heikki Krogerus wrote:
> > The regmap is coming from the parent also in case of Xe
> > GPUs. Reusing the Wangxun quirk for that.
> 
> What I don't like, though, is that there is no mention of the
> change in the probe in the commit log.
> 
> Besides, are these changes related? Can we have them split in two
> different patches? I guess this would also make Andy's point
> about the extra churn.

I think you are right about splitting the patch. I'll do just that.
Thanks for the review Andi.

-- 
heikki

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

* ✗ Xe.CI.Full: failure for drm/xe: i2c support (rev5)
  2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
                   ` (6 preceding siblings ...)
  2025-06-30 15:30 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-01 16:13 ` Patchwork
  7 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-07-01 16:13 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: intel-xe

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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd_FULL -> xe-pw-149699v5_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-149699v5_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-149699v5_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-149699v5_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-466/igt@xe_pm@s4-d3hot-basic-exec.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         [PASS][2] -> [FAIL][3] ([Intel XE#3908]) +1 other test fail
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][4] ([Intel XE#316])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#1124]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][6] ([Intel XE#1124])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][7] ([Intel XE#610])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][8] -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

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

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

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#787]) +76 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2887])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][15] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][16] -> [INCOMPLETE][17] ([Intel XE#2705] / [Intel XE#4212])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#4417]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2325])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#306])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_chamelium_color@ctm-max.html

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

  * igt@kms_color@invalid-ctm-matrix-sizes:
    - shard-adlp:         [PASS][22] -> [DMESG-WARN][23] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-2/igt@kms_color@invalid-ctm-matrix-sizes.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-4/igt@kms_color@invalid-ctm-matrix-sizes.html

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

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2341])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@legacy@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][26] ([Intel XE#1178])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-432/igt@kms_content_protection@legacy@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][27] ([Intel XE#1188])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-7/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2291]) +3 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][30] -> [SKIP][31] ([Intel XE#3009])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-7/igt@kms_dp_aux_dev.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-6/igt@kms_dp_aux_dev.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#776])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][33] -> [SKIP][34] ([Intel XE#2316]) +9 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
    - shard-adlp:         [PASS][35] -> [FAIL][36] ([Intel XE#2882]) +1 other test fail
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-6/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-6/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
    - shard-adlp:         [PASS][37] -> [DMESG-FAIL][38] ([Intel XE#4543]) +1 other test dmesg-fail
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x:
    - shard-adlp:         [PASS][39] -> [FAIL][40] ([Intel XE#1874]) +1 other test fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2311]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#4141]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#651]) +4 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2312])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2313]) +2 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#653]) +2 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#2925])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2927])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [PASS][49] -> [SKIP][50] ([Intel XE#2571])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#870])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         [PASS][52] -> [FAIL][53] ([Intel XE#718])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-6/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#1489]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#3414])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#455]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_vrr@flip-dpms.html

  * igt@xe_eudebug@discovery-race-sigint:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#4837]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@xe_eudebug@discovery-race-sigint.html

  * igt@xe_eudebug_online@resume-one:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#4837])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@xe_eudebug_online@resume-one.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2322])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-dg2-set2:     [PASS][62] -> [SKIP][63] ([Intel XE#1392]) +4 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][64] ([Intel XE#2594])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html

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

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

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#4943])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-huge-nomemset.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     NOTRUN -> [SKIP][68] ([Intel XE#560])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@xe_media_fill@media-fill.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#2541] / [Intel XE#3573])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#4733])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#4273])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-464/igt@xe_sriov_flr@flr-twice.html

  
#### Possible fixes ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          [FAIL][72] ([Intel XE#827]) -> [PASS][73] +1 other test pass
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][74] ([Intel XE#4543]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-adlp:         [DMESG-WARN][76] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][77] +6 other tests pass
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][78] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][80] -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][82] ([Intel XE#2291]) -> [PASS][83] +1 other test pass
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][84] ([Intel XE#4633]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][86] ([Intel XE#4302]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [SKIP][88] ([Intel XE#4294]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [SKIP][90] ([Intel XE#2316]) -> [PASS][91] +5 other tests pass
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_flip@2x-plain-flip.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-7/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@blocking-wf_vblank:
    - shard-bmg:          [FAIL][92] ([Intel XE#2882] / [Intel XE#5338]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_flip@blocking-wf_vblank.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-6/igt@kms_flip@blocking-wf_vblank.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][94] ([Intel XE#4543]) -> [PASS][95] +2 other tests pass
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-adlp-9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][96] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][97] +3 other tests pass
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
    - shard-dg2-set2:     [INCOMPLETE][98] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_hdr@bpc-switch@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][100] ([Intel XE#4842]) -> [PASS][101] +1 other test pass
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
    - shard-dg2-set2:     [FAIL][102] ([Intel XE#616]) -> [PASS][103] +1 other test pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [SKIP][104] ([Intel XE#4596]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - shard-dg2-set2:     [FAIL][106] ([Intel XE#4741]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@kms_pm_rpm@basic-pci-d3-state.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][108] ([Intel XE#1435]) -> [PASS][109] +1 other test pass
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][110] ([Intel XE#1392]) -> [PASS][111] +1 other test pass
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][112] ([Intel XE#5018]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-lnl-4/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-large-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][114] ([Intel XE#4937] / [Intel XE#5018]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][116] ([Intel XE#4819]) -> [PASS][117] +1 other test pass
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_pmu@gt-frequency.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-466/igt@xe_pmu@gt-frequency.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][118] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][119] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) +1 other test incomplete
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [SKIP][120] ([Intel XE#2341]) -> [FAIL][121] ([Intel XE#1178])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_content_protection@atomic.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-8/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][122] ([Intel XE#1178]) -> [SKIP][123] ([Intel XE#2341]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-7/igt@kms_content_protection@srm.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-6/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [SKIP][124] ([Intel XE#2341]) -> [FAIL][125] ([Intel XE#1188])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_content_protection@uevent.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-7/igt@kms_content_protection@uevent.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][126] ([Intel XE#2312]) -> [SKIP][127] ([Intel XE#2311]) +16 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][128] ([Intel XE#4141]) -> [SKIP][129] ([Intel XE#2312]) +8 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][130] ([Intel XE#2312]) -> [SKIP][131] ([Intel XE#4141]) +6 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][132] ([Intel XE#2311]) -> [SKIP][133] ([Intel XE#2312]) +16 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][134] ([Intel XE#2312]) -> [SKIP][135] ([Intel XE#2313]) +15 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][136] ([Intel XE#2313]) -> [SKIP][137] ([Intel XE#2312]) +18 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][138] ([Intel XE#5021]) -> [SKIP][139] ([Intel XE#4596]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][140] ([Intel XE#2509]) -> [SKIP][141] ([Intel XE#2426])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149699v5/shard-bmg-6/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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#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#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
  [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [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#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929


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

  * Linux: xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd -> xe-pw-149699v5

  IGT_8431: 8431
  xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd: 078be02b4585b9a9703401d89a3ac93e2d15a6bd
  xe-pw-149699v5: 149699v5

== Logs ==

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

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

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

end of thread, other threads:[~2025-07-01 16:13 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-27 13:53 [PATCH v5 0/4] drm/xe: i2c support Heikki Krogerus
2025-06-27 13:53 ` [PATCH v5 1/4] i2c: designware: Add quirk for Intel Xe Heikki Krogerus
2025-06-27 14:13   ` Andy Shevchenko
2025-06-27 21:32     ` Rodrigo Vivi
2025-06-30  7:30       ` Andy Shevchenko
2025-06-30  8:10         ` Heikki Krogerus
2025-06-30 10:02           ` Andy Shevchenko
2025-06-30 11:59             ` Heikki Krogerus
2025-06-30 13:16               ` Andy Shevchenko
2025-06-30 14:16                 ` Heikki Krogerus
2025-06-30 18:21                 ` Andi Shyti
2025-06-30 18:28   ` Andi Shyti
2025-07-01  7:45     ` Heikki Krogerus
2025-06-27 13:53 ` [PATCH v5 2/4] drm/xe: Support for I2C attached MCUs Heikki Krogerus
2025-06-27 21:29   ` Rodrigo Vivi
2025-06-30 18:58   ` Andi Shyti
2025-06-27 13:53 ` [PATCH v5 3/4] drm/xe/pm: Wire up suspend/resume for I2C controller Heikki Krogerus
2025-06-30 18:59   ` Andi Shyti
2025-06-27 13:53 ` [PATCH v5 4/4] drm/xe/xe_i2c: Add support for i2c in survivability mode Heikki Krogerus
2025-06-30 19:02   ` Andi Shyti
2025-06-30 14:53 ` ✗ CI.checkpatch: warning for drm/xe: i2c support (rev5) Patchwork
2025-06-30 14:54 ` ✓ CI.KUnit: success " Patchwork
2025-06-30 15:30 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-01 16:13 ` ✗ Xe.CI.Full: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox