intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] drm: avoid poking at dev->vblank[] directly
@ 2025-11-07 11:04 Jani Nikula
  2025-11-07 11:04 ` [PATCH 1/6] drm/vblank: use drm_crtc_vblank_crtc() in workers Jani Nikula
                   ` (9 more replies)
  0 siblings, 10 replies; 20+ messages in thread
From: Jani Nikula @ 2025-11-07 11:04 UTC (permalink / raw)
  To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala

We have accessors for dev->vblank[], and poking at that directly should
be reserved for drm_vblank.c. This series along with [1] switches to use
the accessors.

I've got a whole another series brewing refactoring drm_vblank.c, but
wanted to split this out of the series to keep it manageable. None of
the patches here depend on each other, and the refactoring doesn't
depend on it, so the patches to drivers can be merged every which way,
just let me know.

BR,
Jani.



[1] https://lore.kernel.org/r/20251106200000.1455164-1-jani.nikula@intel.com


Jani Nikula (6):
  drm/vblank: use drm_crtc_vblank_crtc() in workers
  drm/atomic: use drm_crtc_vblank_waitqueue()
  drm/msm: use drm_crtc_vblank_waitqueue()
  drm/tidss: use drm_crtc_vblank_crtc()
  drm/vmwgfx: use drm_crtc_vblank_crtc()
  drm/gma500: use drm_crtc_vblank_crtc()

 drivers/gpu/drm/drm_atomic_helper.c       |  4 ++-
 drivers/gpu/drm/drm_vblank_work.c         |  2 +-
 drivers/gpu/drm/gma500/psb_irq.c          | 36 +++++++++++++++--------
 drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c |  3 +-
 drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c |  3 +-
 drivers/gpu/drm/tidss/tidss_crtc.c        |  3 +-
 drivers/gpu/drm/vmwgfx/vmwgfx_vkms.c      |  6 ++--
 7 files changed, 34 insertions(+), 23 deletions(-)

-- 
2.47.3


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

* [PATCH 1/6] drm/vblank: use drm_crtc_vblank_crtc() in workers
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
@ 2025-11-07 11:04 ` Jani Nikula
  2025-11-10  9:44   ` Thomas Zimmermann
  2025-11-07 11:04 ` [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue() Jani Nikula
                   ` (8 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Jani Nikula @ 2025-11-07 11:04 UTC (permalink / raw)
  To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala

We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
for a crtc. Use it instead of poking at dev->vblank[] directly.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/drm_vblank_work.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_vblank_work.c b/drivers/gpu/drm/drm_vblank_work.c
index e4e1873f0e1e..70f0199251ea 100644
--- a/drivers/gpu/drm/drm_vblank_work.c
+++ b/drivers/gpu/drm/drm_vblank_work.c
@@ -244,7 +244,7 @@ EXPORT_SYMBOL(drm_vblank_work_flush);
 void drm_vblank_work_flush_all(struct drm_crtc *crtc)
 {
 	struct drm_device *dev = crtc->dev;
-	struct drm_vblank_crtc *vblank = &dev->vblank[drm_crtc_index(crtc)];
+	struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
 
 	spin_lock_irq(&dev->event_lock);
 	wait_event_lock_irq(vblank->work_wait_queue,
-- 
2.47.3


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

* [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue()
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
  2025-11-07 11:04 ` [PATCH 1/6] drm/vblank: use drm_crtc_vblank_crtc() in workers Jani Nikula
@ 2025-11-07 11:04 ` Jani Nikula
  2025-11-10  9:57   ` Thomas Zimmermann
  2025-11-07 11:04 ` [PATCH 3/6] drm/msm: " Jani Nikula
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Jani Nikula @ 2025-11-07 11:04 UTC (permalink / raw)
  To: dri-devel; +Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala

We have drm_crtc_vblank_waitqueue() to get the wait_queue_head_t pointer
for a vblank. Use it instead of poking at dev->vblank[] directly.

Due to the macro maze of wait_event_timeout() that uses the address-of
operator on the argument, we have to pass it in with the indirection
operator.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/drm_atomic_helper.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
index 5a473a274ff0..e641fcf8c568 100644
--- a/drivers/gpu/drm/drm_atomic_helper.c
+++ b/drivers/gpu/drm/drm_atomic_helper.c
@@ -1831,10 +1831,12 @@ drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
 	}
 
 	for_each_old_crtc_in_state(state, crtc, old_crtc_state, i) {
+		wait_queue_head_t *queue = drm_crtc_vblank_waitqueue(crtc);
+
 		if (!(crtc_mask & drm_crtc_mask(crtc)))
 			continue;
 
-		ret = wait_event_timeout(dev->vblank[i].queue,
+		ret = wait_event_timeout(*queue,
 					 state->crtcs[i].last_vblank_count !=
 						drm_crtc_vblank_count(crtc),
 					 msecs_to_jiffies(100));
-- 
2.47.3


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

* [PATCH 3/6] drm/msm: use drm_crtc_vblank_waitqueue()
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
  2025-11-07 11:04 ` [PATCH 1/6] drm/vblank: use drm_crtc_vblank_crtc() in workers Jani Nikula
  2025-11-07 11:04 ` [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue() Jani Nikula
@ 2025-11-07 11:04 ` Jani Nikula
  2025-11-08 17:00   ` Dmitry Baryshkov
  2025-11-07 11:04 ` [PATCH 4/6] drm/tidss: use drm_crtc_vblank_crtc() Jani Nikula
                   ` (6 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Jani Nikula @ 2025-11-07 11:04 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala, Rob Clark,
	Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul,
	Marijn Suijten, linux-arm-msm, freedreno

We have drm_crtc_vblank_waitqueue() to get the wait_queue_head_t pointer
for a vblank. Use it instead of poking at dev->vblank[] directly.

Due to the macro maze of wait_event_timeout() that uses the address-of
operator on the argument, we have to pass it in with the indirection
operator.

Cc: Rob Clark <robin.clark@oss.qualcomm.com>
Cc: Dmitry Baryshkov <lumag@kernel.org>
Cc: Abhinav Kumar <abhinav.kumar@linux.dev>
Cc: Jessica Zhang <jesszhan0024@gmail.com>
Cc: Sean Paul <sean@poorly.run>
Cc: Marijn Suijten <marijn.suijten@somainline.org>
Cc: linux-arm-msm@vger.kernel.org
Cc: freedreno@lists.freedesktop.org
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c | 3 ++-
 drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c b/drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c
index da53ca88251e..e8066f9fd534 100644
--- a/drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c
+++ b/drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c
@@ -527,13 +527,14 @@ static void mdp4_crtc_wait_for_flush_done(struct drm_crtc *crtc)
 	struct drm_device *dev = crtc->dev;
 	struct mdp4_crtc *mdp4_crtc = to_mdp4_crtc(crtc);
 	struct mdp4_kms *mdp4_kms = get_kms(crtc);
+	wait_queue_head_t *queue = drm_crtc_vblank_waitqueue(crtc);
 	int ret;
 
 	ret = drm_crtc_vblank_get(crtc);
 	if (ret)
 		return;
 
-	ret = wait_event_timeout(dev->vblank[drm_crtc_index(crtc)].queue,
+	ret = wait_event_timeout(*queue,
 		!(mdp4_read(mdp4_kms, REG_MDP4_OVERLAY_FLUSH) &
 			mdp4_crtc->flushed_mask),
 		msecs_to_jiffies(50));
diff --git a/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c b/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c
index 4c4900a7beda..373ae7d9bf01 100644
--- a/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c
+++ b/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c
@@ -1234,6 +1234,7 @@ static void mdp5_crtc_wait_for_flush_done(struct drm_crtc *crtc)
 	struct mdp5_crtc *mdp5_crtc = to_mdp5_crtc(crtc);
 	struct mdp5_crtc_state *mdp5_cstate = to_mdp5_crtc_state(crtc->state);
 	struct mdp5_ctl *ctl = mdp5_cstate->ctl;
+	wait_queue_head_t *queue = drm_crtc_vblank_waitqueue(crtc);
 	int ret;
 
 	/* Should not call this function if crtc is disabled. */
@@ -1244,7 +1245,7 @@ static void mdp5_crtc_wait_for_flush_done(struct drm_crtc *crtc)
 	if (ret)
 		return;
 
-	ret = wait_event_timeout(dev->vblank[drm_crtc_index(crtc)].queue,
+	ret = wait_event_timeout(*queue,
 		((mdp5_ctl_get_commit_status(ctl) &
 		mdp5_crtc->flushed_mask) == 0),
 		msecs_to_jiffies(50));
-- 
2.47.3


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

* [PATCH 4/6] drm/tidss: use drm_crtc_vblank_crtc()
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
                   ` (2 preceding siblings ...)
  2025-11-07 11:04 ` [PATCH 3/6] drm/msm: " Jani Nikula
@ 2025-11-07 11:04 ` Jani Nikula
  2025-11-08 15:54   ` Jyri Sarha
  2025-11-07 11:04 ` [PATCH 5/6] drm/vmwgfx: " Jani Nikula
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Jani Nikula @ 2025-11-07 11:04 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala, Jyri Sarha,
	Tomi Valkeinen

We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
for a crtc. Use it instead of poking at dev->vblank[] directly.

Cc: Jyri Sarha <jyri.sarha@iki.fi>
Cc: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/tidss/tidss_crtc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/tidss/tidss_crtc.c b/drivers/gpu/drm/tidss/tidss_crtc.c
index 411b1a25e29c..8f81eb560b9e 100644
--- a/drivers/gpu/drm/tidss/tidss_crtc.c
+++ b/drivers/gpu/drm/tidss/tidss_crtc.c
@@ -248,8 +248,7 @@ static void tidss_crtc_atomic_enable(struct drm_crtc *crtc,
 	dispc_vp_enable(tidss->dispc, tcrtc->hw_videoport);
 
 	if (crtc->state->event) {
-		unsigned int pipe = drm_crtc_index(crtc);
-		struct drm_vblank_crtc *vblank = &ddev->vblank[pipe];
+		struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
 
 		vblank->time = ktime_get();
 
-- 
2.47.3


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

* [PATCH 5/6] drm/vmwgfx: use drm_crtc_vblank_crtc()
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
                   ` (3 preceding siblings ...)
  2025-11-07 11:04 ` [PATCH 4/6] drm/tidss: use drm_crtc_vblank_crtc() Jani Nikula
@ 2025-11-07 11:04 ` Jani Nikula
  2025-11-07 16:21   ` Ian Forbes
  2025-11-07 11:05 ` [PATCH 6/6] drm/gma500: " Jani Nikula
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Jani Nikula @ 2025-11-07 11:04 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala, Zack Rusin,
	Broadcom internal kernel review list

We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
for a crtc. Use it instead of poking at dev->vblank[] directly.

Cc: Zack Rusin <zack.rusin@broadcom.com>
Cc: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/vmwgfx/vmwgfx_vkms.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_vkms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_vkms.c
index aec774fa4d7b..5abd7f5ad2db 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_vkms.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_vkms.c
@@ -247,9 +247,8 @@ vmw_vkms_get_vblank_timestamp(struct drm_crtc *crtc,
 {
 	struct drm_device *dev = crtc->dev;
 	struct vmw_private *vmw = vmw_priv(dev);
-	unsigned int pipe = crtc->index;
 	struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
-	struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
+	struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
 
 	if (!vmw->vkms_enabled)
 		return false;
@@ -281,8 +280,7 @@ vmw_vkms_enable_vblank(struct drm_crtc *crtc)
 {
 	struct drm_device *dev = crtc->dev;
 	struct vmw_private *vmw = vmw_priv(dev);
-	unsigned int pipe = drm_crtc_index(crtc);
-	struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
+	struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
 	struct vmw_display_unit *du = vmw_crtc_to_du(crtc);
 
 	if (!vmw->vkms_enabled)
-- 
2.47.3


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

* [PATCH 6/6] drm/gma500: use drm_crtc_vblank_crtc()
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
                   ` (4 preceding siblings ...)
  2025-11-07 11:04 ` [PATCH 5/6] drm/vmwgfx: " Jani Nikula
@ 2025-11-07 11:05 ` Jani Nikula
  2025-11-07 13:11   ` Patrik Jakobsson
  2025-11-07 11:48 ` ✗ CI.checkpatch: warning for drm: avoid poking at dev->vblank[] directly Patchwork
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Jani Nikula @ 2025-11-07 11:05 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala, Patrik Jakobsson

We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
for a crtc. Use it instead of poking at dev->vblank[] directly.

However, we also need to get the crtc to start with. We could use
drm_crtc_from_index(), but refactor to use drm_for_each_crtc() instead.

This is all a bit tedious, and perhaps the driver shouldn't be poking at
vblank->enabled directly in the first place. But at least hide away the
dev->vblank[] access in drm_vblank.c where it belongs.

Cc: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/gma500/psb_irq.c | 36 ++++++++++++++++++++------------
 1 file changed, 23 insertions(+), 13 deletions(-)

diff --git a/drivers/gpu/drm/gma500/psb_irq.c b/drivers/gpu/drm/gma500/psb_irq.c
index c224c7ff353c..3a946b472064 100644
--- a/drivers/gpu/drm/gma500/psb_irq.c
+++ b/drivers/gpu/drm/gma500/psb_irq.c
@@ -250,6 +250,7 @@ static irqreturn_t gma_irq_handler(int irq, void *arg)
 void gma_irq_preinstall(struct drm_device *dev)
 {
 	struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
+	struct drm_crtc *crtc;
 	unsigned long irqflags;
 
 	spin_lock_irqsave(&dev_priv->irqmask_lock, irqflags);
@@ -260,10 +261,15 @@ void gma_irq_preinstall(struct drm_device *dev)
 	PSB_WSGX32(0x00000000, PSB_CR_EVENT_HOST_ENABLE);
 	PSB_RSGX32(PSB_CR_EVENT_HOST_ENABLE);
 
-	if (dev->vblank[0].enabled)
-		dev_priv->vdc_irq_mask |= _PSB_VSYNC_PIPEA_FLAG;
-	if (dev->vblank[1].enabled)
-		dev_priv->vdc_irq_mask |= _PSB_VSYNC_PIPEB_FLAG;
+	drm_for_each_crtc(crtc, dev) {
+		struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
+
+		if (vblank->enabled) {
+			u32 mask = drm_crtc_index(crtc) ? _PSB_VSYNC_PIPEB_FLAG :
+				_PSB_VSYNC_PIPEA_FLAG;
+			dev_priv->vdc_irq_mask |= mask;
+		}
+	}
 
 	/* Revisit this area - want per device masks ? */
 	if (dev_priv->ops->hotplug)
@@ -278,8 +284,8 @@ void gma_irq_preinstall(struct drm_device *dev)
 void gma_irq_postinstall(struct drm_device *dev)
 {
 	struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
+	struct drm_crtc *crtc;
 	unsigned long irqflags;
-	unsigned int i;
 
 	spin_lock_irqsave(&dev_priv->irqmask_lock, irqflags);
 
@@ -292,11 +298,13 @@ void gma_irq_postinstall(struct drm_device *dev)
 	PSB_WVDC32(dev_priv->vdc_irq_mask, PSB_INT_ENABLE_R);
 	PSB_WVDC32(0xFFFFFFFF, PSB_HWSTAM);
 
-	for (i = 0; i < dev->num_crtcs; ++i) {
-		if (dev->vblank[i].enabled)
-			gma_enable_pipestat(dev_priv, i, PIPE_VBLANK_INTERRUPT_ENABLE);
+	drm_for_each_crtc(crtc, dev) {
+		struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
+
+		if (vblank->enabled)
+			gma_enable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);
 		else
-			gma_disable_pipestat(dev_priv, i, PIPE_VBLANK_INTERRUPT_ENABLE);
+			gma_disable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);
 	}
 
 	if (dev_priv->ops->hotplug_enable)
@@ -337,8 +345,8 @@ void gma_irq_uninstall(struct drm_device *dev)
 {
 	struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
 	struct pci_dev *pdev = to_pci_dev(dev->dev);
+	struct drm_crtc *crtc;
 	unsigned long irqflags;
-	unsigned int i;
 
 	if (!dev_priv->irq_enabled)
 		return;
@@ -350,9 +358,11 @@ void gma_irq_uninstall(struct drm_device *dev)
 
 	PSB_WVDC32(0xFFFFFFFF, PSB_HWSTAM);
 
-	for (i = 0; i < dev->num_crtcs; ++i) {
-		if (dev->vblank[i].enabled)
-			gma_disable_pipestat(dev_priv, i, PIPE_VBLANK_INTERRUPT_ENABLE);
+	drm_for_each_crtc(crtc, dev) {
+		struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
+
+		if (vblank->enabled)
+			gma_disable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);
 	}
 
 	dev_priv->vdc_irq_mask &= _PSB_IRQ_SGX_FLAG |
-- 
2.47.3


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

* ✗ CI.checkpatch: warning for drm: avoid poking at dev->vblank[] directly
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
                   ` (5 preceding siblings ...)
  2025-11-07 11:05 ` [PATCH 6/6] drm/gma500: " Jani Nikula
@ 2025-11-07 11:48 ` Patchwork
  2025-11-07 11:50 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-11-07 11:48 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm: avoid poking at dev->vblank[] directly
URL   : https://patchwork.freedesktop.org/series/157215/
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
d9120d4d84745cf011b4b3efb338747e69179dfb
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 419fb4aa69b56c8d8add79415afafa4c9d97819c
Author: Jani Nikula <jani.nikula@intel.com>
Date:   Fri Nov 7 13:05:00 2025 +0200

    drm/gma500: use drm_crtc_vblank_crtc()
    
    We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
    for a crtc. Use it instead of poking at dev->vblank[] directly.
    
    However, we also need to get the crtc to start with. We could use
    drm_crtc_from_index(), but refactor to use drm_for_each_crtc() instead.
    
    This is all a bit tedious, and perhaps the driver shouldn't be poking at
    vblank->enabled directly in the first place. But at least hide away the
    dev->vblank[] access in drm_vblank.c where it belongs.
    
    Cc: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch 1f25afd37c14352cd24ada205fe16ff022784bd4 drm-intel
f45c4946acd4 drm/vblank: use drm_crtc_vblank_crtc() in workers
0124eff9d97e drm/atomic: use drm_crtc_vblank_waitqueue()
4c831eaba995 drm/msm: use drm_crtc_vblank_waitqueue()
-:40: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#40: FILE: drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c:538:
+	ret = wait_event_timeout(*queue,
 		!(mdp4_read(mdp4_kms, REG_MDP4_OVERLAY_FLUSH) &

-:61: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#61: FILE: drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c:1249:
+	ret = wait_event_timeout(*queue,
 		((mdp5_ctl_get_commit_status(ctl) &

total: 0 errors, 0 warnings, 2 checks, 30 lines checked
ee8f8c6e5a2c drm/tidss: use drm_crtc_vblank_crtc()
f5a070785cd2 drm/vmwgfx: use drm_crtc_vblank_crtc()
419fb4aa69b5 drm/gma500: use drm_crtc_vblank_crtc()
-:72: WARNING:LONG_LINE: line length of 106 exceeds 100 columns
#72: FILE: drivers/gpu/drm/gma500/psb_irq.c:305:
+			gma_enable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);

-:75: WARNING:LONG_LINE: line length of 107 exceeds 100 columns
#75: FILE: drivers/gpu/drm/gma500/psb_irq.c:307:
+			gma_disable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);

-:100: WARNING:LONG_LINE: line length of 107 exceeds 100 columns
#100: FILE: drivers/gpu/drm/gma500/psb_irq.c:365:
+			gma_disable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);

total: 0 errors, 3 warnings, 0 checks, 75 lines checked



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

* ✓ CI.KUnit: success for drm: avoid poking at dev->vblank[] directly
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
                   ` (6 preceding siblings ...)
  2025-11-07 11:48 ` ✗ CI.checkpatch: warning for drm: avoid poking at dev->vblank[] directly Patchwork
@ 2025-11-07 11:50 ` Patchwork
  2025-11-07 12:34 ` ✓ Xe.CI.BAT: " Patchwork
  2025-11-09  1:01 ` ✗ Xe.CI.Full: failure " Patchwork
  9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-11-07 11:50 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm: avoid poking at dev->vblank[] directly
URL   : https://patchwork.freedesktop.org/series/157215/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:48:52] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:48:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:49:27] Starting KUnit Kernel (1/1)...
[11:49:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:49:27] ================== guc_buf (11 subtests) ===================
[11:49:27] [PASSED] test_smallest
[11:49:27] [PASSED] test_largest
[11:49:27] [PASSED] test_granular
[11:49:27] [PASSED] test_unique
[11:49:27] [PASSED] test_overlap
[11:49:27] [PASSED] test_reusable
[11:49:27] [PASSED] test_too_big
[11:49:27] [PASSED] test_flush
[11:49:27] [PASSED] test_lookup
[11:49:27] [PASSED] test_data
[11:49:27] [PASSED] test_class
[11:49:27] ===================== [PASSED] guc_buf =====================
[11:49:27] =================== guc_dbm (7 subtests) ===================
[11:49:27] [PASSED] test_empty
[11:49:27] [PASSED] test_default
[11:49:27] ======================== test_size  ========================
[11:49:27] [PASSED] 4
[11:49:27] [PASSED] 8
[11:49:27] [PASSED] 32
[11:49:27] [PASSED] 256
[11:49:27] ==================== [PASSED] test_size ====================
[11:49:27] ======================= test_reuse  ========================
[11:49:27] [PASSED] 4
[11:49:27] [PASSED] 8
[11:49:27] [PASSED] 32
[11:49:27] [PASSED] 256
[11:49:27] =================== [PASSED] test_reuse ====================
[11:49:27] =================== test_range_overlap  ====================
[11:49:27] [PASSED] 4
[11:49:27] [PASSED] 8
[11:49:27] [PASSED] 32
[11:49:27] [PASSED] 256
[11:49:27] =============== [PASSED] test_range_overlap ================
[11:49:27] =================== test_range_compact  ====================
[11:49:27] [PASSED] 4
[11:49:27] [PASSED] 8
[11:49:27] [PASSED] 32
[11:49:27] [PASSED] 256
[11:49:27] =============== [PASSED] test_range_compact ================
[11:49:27] ==================== test_range_spare  =====================
[11:49:27] [PASSED] 4
[11:49:27] [PASSED] 8
[11:49:27] [PASSED] 32
[11:49:27] [PASSED] 256
[11:49:27] ================ [PASSED] test_range_spare =================
[11:49:27] ===================== [PASSED] guc_dbm =====================
[11:49:27] =================== guc_idm (6 subtests) ===================
[11:49:27] [PASSED] bad_init
[11:49:27] [PASSED] no_init
[11:49:27] [PASSED] init_fini
[11:49:27] [PASSED] check_used
[11:49:27] [PASSED] check_quota
[11:49:27] [PASSED] check_all
[11:49:27] ===================== [PASSED] guc_idm =====================
[11:49:27] ================== no_relay (3 subtests) ===================
[11:49:27] [PASSED] xe_drops_guc2pf_if_not_ready
[11:49:27] [PASSED] xe_drops_guc2vf_if_not_ready
[11:49:27] [PASSED] xe_rejects_send_if_not_ready
[11:49:27] ==================== [PASSED] no_relay =====================
[11:49:27] ================== pf_relay (14 subtests) ==================
[11:49:27] [PASSED] pf_rejects_guc2pf_too_short
[11:49:27] [PASSED] pf_rejects_guc2pf_too_long
[11:49:27] [PASSED] pf_rejects_guc2pf_no_payload
[11:49:27] [PASSED] pf_fails_no_payload
[11:49:27] [PASSED] pf_fails_bad_origin
[11:49:27] [PASSED] pf_fails_bad_type
[11:49:27] [PASSED] pf_txn_reports_error
[11:49:27] [PASSED] pf_txn_sends_pf2guc
[11:49:27] [PASSED] pf_sends_pf2guc
[11:49:27] [SKIPPED] pf_loopback_nop
[11:49:27] [SKIPPED] pf_loopback_echo
[11:49:27] [SKIPPED] pf_loopback_fail
[11:49:27] [SKIPPED] pf_loopback_busy
[11:49:27] [SKIPPED] pf_loopback_retry
[11:49:27] ==================== [PASSED] pf_relay =====================
[11:49:27] ================== vf_relay (3 subtests) ===================
[11:49:27] [PASSED] vf_rejects_guc2vf_too_short
[11:49:27] [PASSED] vf_rejects_guc2vf_too_long
[11:49:27] [PASSED] vf_rejects_guc2vf_no_payload
[11:49:27] ==================== [PASSED] vf_relay =====================
[11:49:27] ===================== lmtt (1 subtest) =====================
[11:49:27] ======================== test_ops  =========================
[11:49:27] [PASSED] 2-level
[11:49:27] [PASSED] multi-level
[11:49:27] ==================== [PASSED] test_ops =====================
[11:49:27] ====================== [PASSED] lmtt =======================
[11:49:27] ================= pf_service (11 subtests) =================
[11:49:27] [PASSED] pf_negotiate_any
[11:49:27] [PASSED] pf_negotiate_base_match
[11:49:27] [PASSED] pf_negotiate_base_newer
[11:49:27] [PASSED] pf_negotiate_base_next
[11:49:27] [SKIPPED] pf_negotiate_base_older
[11:49:27] [PASSED] pf_negotiate_base_prev
[11:49:27] [PASSED] pf_negotiate_latest_match
[11:49:27] [PASSED] pf_negotiate_latest_newer
[11:49:27] [PASSED] pf_negotiate_latest_next
[11:49:27] [SKIPPED] pf_negotiate_latest_older
[11:49:27] [SKIPPED] pf_negotiate_latest_prev
[11:49:27] =================== [PASSED] pf_service ====================
[11:49:27] ================= xe_guc_g2g (2 subtests) ==================
[11:49:27] ============== xe_live_guc_g2g_kunit_default  ==============
[11:49:27] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[11:49:27] ============== xe_live_guc_g2g_kunit_allmem  ===============
[11:49:27] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[11:49:27] =================== [SKIPPED] xe_guc_g2g ===================
[11:49:27] =================== xe_mocs (2 subtests) ===================
[11:49:27] ================ xe_live_mocs_kernel_kunit  ================
[11:49:27] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:49:27] ================ xe_live_mocs_reset_kunit  =================
[11:49:27] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:49:27] ==================== [SKIPPED] xe_mocs =====================
[11:49:27] ================= xe_migrate (2 subtests) ==================
[11:49:27] ================= xe_migrate_sanity_kunit  =================
[11:49:27] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:49:27] ================== xe_validate_ccs_kunit  ==================
[11:49:27] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:49:27] =================== [SKIPPED] xe_migrate ===================
[11:49:27] ================== xe_dma_buf (1 subtest) ==================
[11:49:27] ==================== xe_dma_buf_kunit  =====================
[11:49:27] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:49:27] =================== [SKIPPED] xe_dma_buf ===================
[11:49:27] ================= xe_bo_shrink (1 subtest) =================
[11:49:27] =================== xe_bo_shrink_kunit  ====================
[11:49:27] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:49:27] ================== [SKIPPED] xe_bo_shrink ==================
[11:49:27] ==================== xe_bo (2 subtests) ====================
[11:49:27] ================== xe_ccs_migrate_kunit  ===================
[11:49:27] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:49:27] ==================== xe_bo_evict_kunit  ====================
[11:49:27] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:49:27] ===================== [SKIPPED] xe_bo ======================
[11:49:27] ==================== args (11 subtests) ====================
[11:49:27] [PASSED] count_args_test
[11:49:27] [PASSED] call_args_example
[11:49:27] [PASSED] call_args_test
[11:49:27] [PASSED] drop_first_arg_example
[11:49:27] [PASSED] drop_first_arg_test
[11:49:27] [PASSED] first_arg_example
[11:49:27] [PASSED] first_arg_test
[11:49:27] [PASSED] last_arg_example
[11:49:27] [PASSED] last_arg_test
[11:49:27] [PASSED] pick_arg_example
[11:49:27] [PASSED] sep_comma_example
[11:49:27] ====================== [PASSED] args =======================
[11:49:27] =================== xe_pci (3 subtests) ====================
[11:49:27] ==================== check_graphics_ip  ====================
[11:49:27] [PASSED] 12.00 Xe_LP
[11:49:27] [PASSED] 12.10 Xe_LP+
[11:49:27] [PASSED] 12.55 Xe_HPG
[11:49:27] [PASSED] 12.60 Xe_HPC
[11:49:27] [PASSED] 12.70 Xe_LPG
[11:49:27] [PASSED] 12.71 Xe_LPG
[11:49:27] [PASSED] 12.74 Xe_LPG+
[11:49:27] [PASSED] 20.01 Xe2_HPG
[11:49:27] [PASSED] 20.02 Xe2_HPG
[11:49:27] [PASSED] 20.04 Xe2_LPG
[11:49:27] [PASSED] 30.00 Xe3_LPG
[11:49:27] [PASSED] 30.01 Xe3_LPG
[11:49:27] [PASSED] 30.03 Xe3_LPG
[11:49:27] [PASSED] 30.04 Xe3_LPG
[11:49:27] [PASSED] 30.05 Xe3_LPG
[11:49:27] [PASSED] 35.11 Xe3p_XPC
[11:49:27] ================ [PASSED] check_graphics_ip ================
[11:49:27] ===================== check_media_ip  ======================
[11:49:27] [PASSED] 12.00 Xe_M
[11:49:27] [PASSED] 12.55 Xe_HPM
[11:49:27] [PASSED] 13.00 Xe_LPM+
[11:49:27] [PASSED] 13.01 Xe2_HPM
[11:49:27] [PASSED] 20.00 Xe2_LPM
[11:49:27] [PASSED] 30.00 Xe3_LPM
[11:49:27] [PASSED] 30.02 Xe3_LPM
[11:49:27] [PASSED] 35.00 Xe3p_LPM
[11:49:27] [PASSED] 35.03 Xe3p_HPM
[11:49:27] ================= [PASSED] check_media_ip ==================
[11:49:27] =================== check_platform_desc  ===================
[11:49:27] [PASSED] 0x9A60 (TIGERLAKE)
[11:49:27] [PASSED] 0x9A68 (TIGERLAKE)
[11:49:27] [PASSED] 0x9A70 (TIGERLAKE)
[11:49:27] [PASSED] 0x9A40 (TIGERLAKE)
[11:49:27] [PASSED] 0x9A49 (TIGERLAKE)
[11:49:27] [PASSED] 0x9A59 (TIGERLAKE)
[11:49:27] [PASSED] 0x9A78 (TIGERLAKE)
[11:49:27] [PASSED] 0x9AC0 (TIGERLAKE)
[11:49:27] [PASSED] 0x9AC9 (TIGERLAKE)
[11:49:27] [PASSED] 0x9AD9 (TIGERLAKE)
[11:49:27] [PASSED] 0x9AF8 (TIGERLAKE)
[11:49:27] [PASSED] 0x4C80 (ROCKETLAKE)
[11:49:27] [PASSED] 0x4C8A (ROCKETLAKE)
[11:49:27] [PASSED] 0x4C8B (ROCKETLAKE)
[11:49:27] [PASSED] 0x4C8C (ROCKETLAKE)
[11:49:27] [PASSED] 0x4C90 (ROCKETLAKE)
[11:49:27] [PASSED] 0x4C9A (ROCKETLAKE)
[11:49:27] [PASSED] 0x4680 (ALDERLAKE_S)
[11:49:27] [PASSED] 0x4682 (ALDERLAKE_S)
[11:49:27] [PASSED] 0x4688 (ALDERLAKE_S)
[11:49:27] [PASSED] 0x468A (ALDERLAKE_S)
[11:49:27] [PASSED] 0x468B (ALDERLAKE_S)
[11:49:27] [PASSED] 0x4690 (ALDERLAKE_S)
[11:49:27] [PASSED] 0x4692 (ALDERLAKE_S)
[11:49:27] [PASSED] 0x4693 (ALDERLAKE_S)
[11:49:27] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46AA (ALDERLAKE_P)
[11:49:27] [PASSED] 0x462A (ALDERLAKE_P)
[11:49:27] [PASSED] 0x4626 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x4628 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46B0 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:49:27] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:49:27] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:49:27] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:49:27] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:49:27] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:49:27] [PASSED] 0xA721 (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA720 (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:49:27] [PASSED] 0xA780 (ALDERLAKE_S)
[11:49:27] [PASSED] 0xA781 (ALDERLAKE_S)
[11:49:27] [PASSED] 0xA782 (ALDERLAKE_S)
[11:49:27] [PASSED] 0xA783 (ALDERLAKE_S)
[11:49:27] [PASSED] 0xA788 (ALDERLAKE_S)
[11:49:27] [PASSED] 0xA789 (ALDERLAKE_S)
[11:49:27] [PASSED] 0xA78A (ALDERLAKE_S)
[11:49:27] [PASSED] 0xA78B (ALDERLAKE_S)
[11:49:27] [PASSED] 0x4905 (DG1)
[11:49:27] [PASSED] 0x4906 (DG1)
[11:49:27] [PASSED] 0x4907 (DG1)
[11:49:27] [PASSED] 0x4908 (DG1)
[11:49:27] [PASSED] 0x4909 (DG1)
[11:49:27] [PASSED] 0x56C0 (DG2)
[11:49:27] [PASSED] 0x56C2 (DG2)
[11:49:27] [PASSED] 0x56C1 (DG2)
[11:49:27] [PASSED] 0x7D51 (METEORLAKE)
[11:49:27] [PASSED] 0x7DD1 (METEORLAKE)
[11:49:27] [PASSED] 0x7D41 (METEORLAKE)
[11:49:27] [PASSED] 0x7D67 (METEORLAKE)
[11:49:27] [PASSED] 0xB640 (METEORLAKE)
[11:49:27] [PASSED] 0x56A0 (DG2)
[11:49:27] [PASSED] 0x56A1 (DG2)
[11:49:27] [PASSED] 0x56A2 (DG2)
[11:49:27] [PASSED] 0x56BE (DG2)
[11:49:27] [PASSED] 0x56BF (DG2)
[11:49:27] [PASSED] 0x5690 (DG2)
[11:49:27] [PASSED] 0x5691 (DG2)
[11:49:27] [PASSED] 0x5692 (DG2)
[11:49:27] [PASSED] 0x56A5 (DG2)
[11:49:27] [PASSED] 0x56A6 (DG2)
[11:49:27] [PASSED] 0x56B0 (DG2)
[11:49:27] [PASSED] 0x56B1 (DG2)
[11:49:27] [PASSED] 0x56BA (DG2)
[11:49:27] [PASSED] 0x56BB (DG2)
[11:49:27] [PASSED] 0x56BC (DG2)
[11:49:27] [PASSED] 0x56BD (DG2)
[11:49:27] [PASSED] 0x5693 (DG2)
[11:49:27] [PASSED] 0x5694 (DG2)
[11:49:27] [PASSED] 0x5695 (DG2)
[11:49:27] [PASSED] 0x56A3 (DG2)
[11:49:27] [PASSED] 0x56A4 (DG2)
[11:49:27] [PASSED] 0x56B2 (DG2)
[11:49:27] [PASSED] 0x56B3 (DG2)
[11:49:27] [PASSED] 0x5696 (DG2)
[11:49:27] [PASSED] 0x5697 (DG2)
[11:49:27] [PASSED] 0xB69 (PVC)
[11:49:27] [PASSED] 0xB6E (PVC)
[11:49:27] [PASSED] 0xBD4 (PVC)
[11:49:27] [PASSED] 0xBD5 (PVC)
[11:49:27] [PASSED] 0xBD6 (PVC)
[11:49:27] [PASSED] 0xBD7 (PVC)
[11:49:27] [PASSED] 0xBD8 (PVC)
[11:49:27] [PASSED] 0xBD9 (PVC)
[11:49:27] [PASSED] 0xBDA (PVC)
[11:49:27] [PASSED] 0xBDB (PVC)
[11:49:27] [PASSED] 0xBE0 (PVC)
[11:49:27] [PASSED] 0xBE1 (PVC)
[11:49:27] [PASSED] 0xBE5 (PVC)
[11:49:27] [PASSED] 0x7D40 (METEORLAKE)
[11:49:27] [PASSED] 0x7D45 (METEORLAKE)
[11:49:27] [PASSED] 0x7D55 (METEORLAKE)
[11:49:27] [PASSED] 0x7D60 (METEORLAKE)
[11:49:27] [PASSED] 0x7DD5 (METEORLAKE)
[11:49:27] [PASSED] 0x6420 (LUNARLAKE)
[11:49:27] [PASSED] 0x64A0 (LUNARLAKE)
[11:49:27] [PASSED] 0x64B0 (LUNARLAKE)
[11:49:27] [PASSED] 0xE202 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE209 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE20B (BATTLEMAGE)
[11:49:27] [PASSED] 0xE20C (BATTLEMAGE)
[11:49:27] [PASSED] 0xE20D (BATTLEMAGE)
[11:49:27] [PASSED] 0xE210 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE211 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE212 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE216 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE220 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE221 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE222 (BATTLEMAGE)
[11:49:27] [PASSED] 0xE223 (BATTLEMAGE)
[11:49:27] [PASSED] 0xB080 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB081 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB082 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB083 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB084 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB085 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB086 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB087 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB08F (PANTHERLAKE)
[11:49:27] [PASSED] 0xB090 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:49:27] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:49:27] [PASSED] 0xD740 (NOVALAKE_S)
[11:49:27] [PASSED] 0xD741 (NOVALAKE_S)
[11:49:27] [PASSED] 0xD742 (NOVALAKE_S)
[11:49:27] [PASSED] 0xD743 (NOVALAKE_S)
[11:49:27] [PASSED] 0xD744 (NOVALAKE_S)
[11:49:27] [PASSED] 0xD745 (NOVALAKE_S)
[11:49:27] [PASSED] 0x674C (CRESCENTISLAND)
[11:49:27] [PASSED] 0xFD80 (PANTHERLAKE)
[11:49:27] [PASSED] 0xFD81 (PANTHERLAKE)
[11:49:27] =============== [PASSED] check_platform_desc ===============
[11:49:27] ===================== [PASSED] xe_pci ======================
[11:49:27] =================== xe_rtp (2 subtests) ====================
[11:49:27] =============== xe_rtp_process_to_sr_tests  ================
[11:49:27] [PASSED] coalesce-same-reg
[11:49:27] [PASSED] no-match-no-add
[11:49:27] [PASSED] match-or
[11:49:27] [PASSED] match-or-xfail
[11:49:27] [PASSED] no-match-no-add-multiple-rules
[11:49:27] [PASSED] two-regs-two-entries
[11:49:27] [PASSED] clr-one-set-other
[11:49:27] [PASSED] set-field
[11:49:27] [PASSED] conflict-duplicate
[11:49:27] [PASSED] conflict-not-disjoint
[11:49:27] [PASSED] conflict-reg-type
[11:49:27] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:49:27] ================== xe_rtp_process_tests  ===================
[11:49:27] [PASSED] active1
[11:49:27] [PASSED] active2
[11:49:27] [PASSED] active-inactive
[11:49:27] [PASSED] inactive-active
[11:49:27] [PASSED] inactive-1st_or_active-inactive
[11:49:27] [PASSED] inactive-2nd_or_active-inactive
[11:49:27] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[11:49:27] [PASSED] inactive-no_or_active-inactive
[11:49:27] ============== [PASSED] xe_rtp_process_tests ===============
[11:49:27] ===================== [PASSED] xe_rtp ======================
[11:49:27] ==================== xe_wa (1 subtest) =====================
[11:49:27] ======================== xe_wa_gt  =========================
[11:49:27] [PASSED] TIGERLAKE B0
[11:49:27] [PASSED] DG1 A0
[11:49:27] [PASSED] DG1 B0
[11:49:27] [PASSED] ALDERLAKE_S A0
[11:49:27] [PASSED] ALDERLAKE_S B0
[11:49:27] [PASSED] ALDERLAKE_S C0
[11:49:27] [PASSED] ALDERLAKE_S D0
[11:49:27] [PASSED] ALDERLAKE_P A0
[11:49:27] [PASSED] ALDERLAKE_P B0
[11:49:27] [PASSED] ALDERLAKE_P C0
[11:49:27] [PASSED] ALDERLAKE_S RPLS D0
[11:49:27] [PASSED] ALDERLAKE_P RPLU E0
[11:49:27] [PASSED] DG2 G10 C0
[11:49:27] [PASSED] DG2 G11 B1
[11:49:27] [PASSED] DG2 G12 A1
[11:49:27] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:49:27] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:49:27] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[11:49:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[11:49:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[11:49:27] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[11:49:27] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[11:49:27] ==================== [PASSED] xe_wa_gt =====================
[11:49:27] ====================== [PASSED] xe_wa ======================
[11:49:27] ============================================================
[11:49:27] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[11:49:27] Elapsed time: 35.375s total, 4.233s configuring, 30.775s building, 0.329s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm: avoid poking at dev->vblank[] directly
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
                   ` (7 preceding siblings ...)
  2025-11-07 11:50 ` ✓ CI.KUnit: success " Patchwork
@ 2025-11-07 12:34 ` Patchwork
  2025-11-09  1:01 ` ✗ Xe.CI.Full: failure " Patchwork
  9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-11-07 12:34 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm: avoid poking at dev->vblank[] directly
URL   : https://patchwork.freedesktop.org/series/157215/
State : success

== Summary ==

CI Bug Log - changes from xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4_BAT -> xe-pw-157215v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-157215v1_BAT that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@xe_waitfence@abstime:
    - bat-dg2-oem2:       [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/bat-dg2-oem2/igt@xe_waitfence@abstime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/bat-dg2-oem2/igt@xe_waitfence@abstime.html

  
  [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506


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

  * Linux: xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4 -> xe-pw-157215v1

  IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4: 1f25afd37c14352cd24ada205fe16ff022784bd4
  xe-pw-157215v1: 157215v1

== Logs ==

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

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

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

* Re: [PATCH 6/6] drm/gma500: use drm_crtc_vblank_crtc()
  2025-11-07 11:05 ` [PATCH 6/6] drm/gma500: " Jani Nikula
@ 2025-11-07 13:11   ` Patrik Jakobsson
  0 siblings, 0 replies; 20+ messages in thread
From: Patrik Jakobsson @ 2025-11-07 13:11 UTC (permalink / raw)
  To: Jani Nikula; +Cc: dri-devel, intel-gfx, intel-xe, ville.syrjala

On Fri, Nov 7, 2025 at 12:05 PM Jani Nikula <jani.nikula@intel.com> wrote:
>
> We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
> for a crtc. Use it instead of poking at dev->vblank[] directly.
>
> However, we also need to get the crtc to start with. We could use
> drm_crtc_from_index(), but refactor to use drm_for_each_crtc() instead.
>
> This is all a bit tedious, and perhaps the driver shouldn't be poking at
> vblank->enabled directly in the first place. But at least hide away the
> dev->vblank[] access in drm_vblank.c where it belongs.
>
> Cc: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Hi Jani,
The gma500 part looks good. Feel free to merge this yourself.

Acked-by: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>

> ---
>  drivers/gpu/drm/gma500/psb_irq.c | 36 ++++++++++++++++++++------------
>  1 file changed, 23 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/gma500/psb_irq.c b/drivers/gpu/drm/gma500/psb_irq.c
> index c224c7ff353c..3a946b472064 100644
> --- a/drivers/gpu/drm/gma500/psb_irq.c
> +++ b/drivers/gpu/drm/gma500/psb_irq.c
> @@ -250,6 +250,7 @@ static irqreturn_t gma_irq_handler(int irq, void *arg)
>  void gma_irq_preinstall(struct drm_device *dev)
>  {
>         struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
> +       struct drm_crtc *crtc;
>         unsigned long irqflags;
>
>         spin_lock_irqsave(&dev_priv->irqmask_lock, irqflags);
> @@ -260,10 +261,15 @@ void gma_irq_preinstall(struct drm_device *dev)
>         PSB_WSGX32(0x00000000, PSB_CR_EVENT_HOST_ENABLE);
>         PSB_RSGX32(PSB_CR_EVENT_HOST_ENABLE);
>
> -       if (dev->vblank[0].enabled)
> -               dev_priv->vdc_irq_mask |= _PSB_VSYNC_PIPEA_FLAG;
> -       if (dev->vblank[1].enabled)
> -               dev_priv->vdc_irq_mask |= _PSB_VSYNC_PIPEB_FLAG;
> +       drm_for_each_crtc(crtc, dev) {
> +               struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
> +
> +               if (vblank->enabled) {
> +                       u32 mask = drm_crtc_index(crtc) ? _PSB_VSYNC_PIPEB_FLAG :
> +                               _PSB_VSYNC_PIPEA_FLAG;
> +                       dev_priv->vdc_irq_mask |= mask;
> +               }
> +       }
>
>         /* Revisit this area - want per device masks ? */
>         if (dev_priv->ops->hotplug)
> @@ -278,8 +284,8 @@ void gma_irq_preinstall(struct drm_device *dev)
>  void gma_irq_postinstall(struct drm_device *dev)
>  {
>         struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
> +       struct drm_crtc *crtc;
>         unsigned long irqflags;
> -       unsigned int i;
>
>         spin_lock_irqsave(&dev_priv->irqmask_lock, irqflags);
>
> @@ -292,11 +298,13 @@ void gma_irq_postinstall(struct drm_device *dev)
>         PSB_WVDC32(dev_priv->vdc_irq_mask, PSB_INT_ENABLE_R);
>         PSB_WVDC32(0xFFFFFFFF, PSB_HWSTAM);
>
> -       for (i = 0; i < dev->num_crtcs; ++i) {
> -               if (dev->vblank[i].enabled)
> -                       gma_enable_pipestat(dev_priv, i, PIPE_VBLANK_INTERRUPT_ENABLE);
> +       drm_for_each_crtc(crtc, dev) {
> +               struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
> +
> +               if (vblank->enabled)
> +                       gma_enable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);
>                 else
> -                       gma_disable_pipestat(dev_priv, i, PIPE_VBLANK_INTERRUPT_ENABLE);
> +                       gma_disable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);
>         }
>
>         if (dev_priv->ops->hotplug_enable)
> @@ -337,8 +345,8 @@ void gma_irq_uninstall(struct drm_device *dev)
>  {
>         struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
>         struct pci_dev *pdev = to_pci_dev(dev->dev);
> +       struct drm_crtc *crtc;
>         unsigned long irqflags;
> -       unsigned int i;
>
>         if (!dev_priv->irq_enabled)
>                 return;
> @@ -350,9 +358,11 @@ void gma_irq_uninstall(struct drm_device *dev)
>
>         PSB_WVDC32(0xFFFFFFFF, PSB_HWSTAM);
>
> -       for (i = 0; i < dev->num_crtcs; ++i) {
> -               if (dev->vblank[i].enabled)
> -                       gma_disable_pipestat(dev_priv, i, PIPE_VBLANK_INTERRUPT_ENABLE);
> +       drm_for_each_crtc(crtc, dev) {
> +               struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
> +
> +               if (vblank->enabled)
> +                       gma_disable_pipestat(dev_priv, drm_crtc_index(crtc), PIPE_VBLANK_INTERRUPT_ENABLE);
>         }
>
>         dev_priv->vdc_irq_mask &= _PSB_IRQ_SGX_FLAG |
> --
> 2.47.3
>

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

* Re: [PATCH 5/6] drm/vmwgfx: use drm_crtc_vblank_crtc()
  2025-11-07 11:04 ` [PATCH 5/6] drm/vmwgfx: " Jani Nikula
@ 2025-11-07 16:21   ` Ian Forbes
  0 siblings, 0 replies; 20+ messages in thread
From: Ian Forbes @ 2025-11-07 16:21 UTC (permalink / raw)
  To: Jani Nikula
  Cc: dri-devel, intel-gfx, intel-xe, ville.syrjala, Zack Rusin,
	Broadcom internal kernel review list

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

On Fri, Nov 7, 2025 at 5:05 AM Jani Nikula <jani.nikula@intel.com> wrote:
>
> We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
> for a crtc. Use it instead of poking at dev->vblank[] directly.
>
> Cc: Zack Rusin <zack.rusin@broadcom.com>
> Cc: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---

Reviewed-by: Ian Forbes <ian.forbes@broadcom.com>

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 5414 bytes --]

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

* Re: [PATCH 4/6] drm/tidss: use drm_crtc_vblank_crtc()
  2025-11-07 11:04 ` [PATCH 4/6] drm/tidss: use drm_crtc_vblank_crtc() Jani Nikula
@ 2025-11-08 15:54   ` Jyri Sarha
  0 siblings, 0 replies; 20+ messages in thread
From: Jyri Sarha @ 2025-11-08 15:54 UTC (permalink / raw)
  To: Jani Nikula, dri-devel
  Cc: intel-gfx, intel-xe, jani.nikula, ville.syrjala, Jyri Sarha,
	Tomi Valkeinen

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

November 7, 2025 at 1:04 PM, "Jani Nikula" <jani.nikula@intel.com mailto:jani.nikula@intel.com?to=%22Jani%20Nikula%22%20%3Cjani.nikula%40intel.com%3E > wrote:


> 
> We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
> for a crtc. Use it instead of poking at dev->vblank[] directly.
> 
> Cc: Jyri Sarha <jyri.sarha@iki.fi>
> Cc: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> 
Acked-by: Jyri Sarha <jyri.sarha@iki.fi mailto:jyri.sarha@iki.fi >

Thanks,.
Jyri
---
 drivers/gpu/drm/tidss/tidss_crtc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/tidss/tidss_crtc.c b/drivers/gpu/drm/tidss/tidss_crtc.c
index 411b1a25e29c..8f81eb560b9e 100644
--- a/drivers/gpu/drm/tidss/tidss_crtc.c
+++ b/drivers/gpu/drm/tidss/tidss_crtc.c
@@ -248,8 +248,7 @@ static void tidss_crtc_atomic_enable(struct drm_crtc *crtc,
 dispc_vp_enable(tidss->dispc, tcrtc->hw_videoport);
 
 if (crtc->state->event) {
- unsigned int pipe = drm_crtc_index(crtc);
- struct drm_vblank_crtc *vblank = &ddev->vblank[pipe];
+ struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
 
 vblank->time = ktime_get();
 
-- 
2.47.3

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

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

* Re: [PATCH 3/6] drm/msm: use drm_crtc_vblank_waitqueue()
  2025-11-07 11:04 ` [PATCH 3/6] drm/msm: " Jani Nikula
@ 2025-11-08 17:00   ` Dmitry Baryshkov
  0 siblings, 0 replies; 20+ messages in thread
From: Dmitry Baryshkov @ 2025-11-08 17:00 UTC (permalink / raw)
  To: Jani Nikula
  Cc: dri-devel, intel-gfx, intel-xe, ville.syrjala, Rob Clark,
	Dmitry Baryshkov, Abhinav Kumar, Jessica Zhang, Sean Paul,
	Marijn Suijten, linux-arm-msm, freedreno

On Fri, Nov 07, 2025 at 01:04:57PM +0200, Jani Nikula wrote:
> We have drm_crtc_vblank_waitqueue() to get the wait_queue_head_t pointer
> for a vblank. Use it instead of poking at dev->vblank[] directly.
> 
> Due to the macro maze of wait_event_timeout() that uses the address-of
> operator on the argument, we have to pass it in with the indirection
> operator.
> 
> Cc: Rob Clark <robin.clark@oss.qualcomm.com>
> Cc: Dmitry Baryshkov <lumag@kernel.org>
> Cc: Abhinav Kumar <abhinav.kumar@linux.dev>
> Cc: Jessica Zhang <jesszhan0024@gmail.com>
> Cc: Sean Paul <sean@poorly.run>
> Cc: Marijn Suijten <marijn.suijten@somainline.org>
> Cc: linux-arm-msm@vger.kernel.org
> Cc: freedreno@lists.freedesktop.org
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c | 3 ++-
>  drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)
> 

Acked-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>


-- 
With best wishes
Dmitry

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

* ✗ Xe.CI.Full: failure for drm: avoid poking at dev->vblank[] directly
  2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
                   ` (8 preceding siblings ...)
  2025-11-07 12:34 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-11-09  1:01 ` Patchwork
  9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-11-09  1:01 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm: avoid poking at dev->vblank[] directly
URL   : https://patchwork.freedesktop.org/series/157215/
State : failure

== Summary ==

CI Bug Log - changes from xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4_FULL -> xe-pw-157215v1_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@panthor/panthor_group@group_create:
    - shard-dg2-set2:     NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@panthor/panthor_group@group_create.html

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

  Here are the changes found in xe-pw-157215v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2233])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#2327]) +5 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-180:
    - shard-bmg:          [PASS][4] -> [INCOMPLETE][5] ([Intel XE#5643])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-180.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-180.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][6] ([Intel XE#316])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [PASS][7] -> [DMESG-FAIL][8] ([Intel XE#4543])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +6 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][10] ([Intel XE#610])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#610])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [PASS][13] -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#2191])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2887]) +9 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#787]) +6 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][21] -> [INCOMPLETE][22] ([Intel XE#3862]) +1 other test incomplete
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][23] -> [TIMEOUT][24] ([Intel XE#6422]) +1 other test timeout
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#3432])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#2907]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

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

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2724])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2325]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2252]) +5 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][32] ([Intel XE#1178]) +1 other test fail
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2390])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2321])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2320]) +4 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#323])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2286])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#3009])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-1/igt@kms_dp_aux_dev.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_dp_aux_dev.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2244])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_dsc@dsc-basic.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#4422])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#4422]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#776])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][46] -> [SKIP][47] ([Intel XE#2373])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@psr1:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2374])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [PASS][49] -> [SKIP][50] ([Intel XE#2316]) +2 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [PASS][51] -> [FAIL][52] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip@plain-flip-ts-check@d-hdmi-a1:
    - shard-adlp:         [PASS][53] -> [DMESG-WARN][54] ([Intel XE#4543])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-9/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-9/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#455]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2293]) +5 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#651]) +5 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2311]) +20 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#6313])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#5390]) +11 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2313]) +22 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#653]) +4 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2501])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#5624])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-adlp:         [PASS][66] -> [INCOMPLETE][67] ([Intel XE#1035] / [Intel XE#5545])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
    - shard-adlp:         [PASS][68] -> [DMESG-FAIL][69] ([Intel XE#5545])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
    - shard-adlp:         [PASS][70] -> [INCOMPLETE][71] ([Intel XE#1035])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#2393])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#5020])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2763]) +4 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#3309])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2392])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#2505])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2387])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@kms_psr@psr-basic.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#2330])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_sharpness_filter@filter-formats:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#6503]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@kms_sharpness_filter@filter-formats.html

  * igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#6530]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html

  * igt@xe_eudebug@basic-read-event:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#4837]) +9 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_eudebug@basic-read-event.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#5793])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#2322]) +6 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-userptr-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][89] ([Intel XE#288]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([Intel XE#2360])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#4837]) +2 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#5007]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html

  * igt@xe_exec_system_allocator@many-64k-new-busy-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][93] ([Intel XE#4915]) +43 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@xe_exec_system_allocator@many-64k-new-busy-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#4943]) +22 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [PASS][95] -> [DMESG-WARN][96] ([Intel XE#5893])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116]) -> ([PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [SKIP][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136]) ([Intel XE#2457])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-8/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-8/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@xe_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-2/igt@xe_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@xe_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-1/igt@xe_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-8/igt@xe_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-1/igt@xe_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-7/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-7/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-7/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@xe_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-2/igt@xe_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-4/igt@xe_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-4/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-1/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-2/igt@xe_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@xe_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-5/igt@xe_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-7/igt@xe_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-8/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-8/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-8/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-5/igt@xe_module_load@load.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          NOTRUN -> [SKIP][137] ([Intel XE#2245])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-4/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#2284])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-adlp:         [PASS][139] -> [INCOMPLETE][140] ([Intel XE#4504])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][141] ([Intel XE#2284] / [Intel XE#366])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#4733]) +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#4733])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#944]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-2/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_survivability@runtime-survivability:
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#6529])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-433/igt@xe_survivability@runtime-survivability.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         [FAIL][146] ([Intel XE#3908]) -> [PASS][147] +1 other test pass
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][148] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][149]
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][150] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][151] +1 other test pass
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-bmg:          [SKIP][152] ([Intel XE#2291]) -> [PASS][153] +3 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [SKIP][154] ([Intel XE#2316]) -> [PASS][155] +4 other tests pass
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-dp4:
    - shard-dg2-set2:     [FAIL][156] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     [FAIL][158] ([Intel XE#301]) -> [PASS][159]
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][160] ([Intel XE#4543]) -> [PASS][161] +6 other tests pass
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-6/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-8/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [SKIP][162] ([Intel XE#1503]) -> [PASS][163]
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_hdr@static-toggle.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-7/igt@kms_hdr@static-toggle.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-adlp:         [DMESG-WARN][164] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-1/igt@kms_pm_rpm@system-suspend-modeset.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-4/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][166] ([Intel XE#1435]) -> [PASS][167] +1 other test pass
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][168] ([Intel XE#6321]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
    - shard-lnl:          [FAIL][170] ([Intel XE#6251]) -> [PASS][171] +1 other test pass
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][172] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][173] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][174] ([Intel XE#1188]) -> [SKIP][175] ([Intel XE#2341])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@kms_content_protection@uevent.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_content_protection@uevent.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][176] ([Intel XE#2312]) -> [SKIP][177] ([Intel XE#2311]) +8 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][178] ([Intel XE#5390]) -> [SKIP][179] ([Intel XE#2312]) +5 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][180] ([Intel XE#2312]) -> [SKIP][181] ([Intel XE#5390]) +5 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][182] ([Intel XE#2311]) -> [SKIP][183] ([Intel XE#2312]) +16 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/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][184] ([Intel XE#2312]) -> [SKIP][185] ([Intel XE#2313]) +8 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][186] ([Intel XE#2313]) -> [SKIP][187] ([Intel XE#2312]) +14 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][188] ([Intel XE#5021]) -> [SKIP][189] ([Intel XE#4596])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-adlp:         [DMESG-WARN][190] ([Intel XE#3868]) -> [DMESG-FAIL][191] ([Intel XE#3868])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-4/igt@xe_exec_reset@cm-cat-error.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-8/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-adlp:         [DMESG-FAIL][192] ([Intel XE#3868] / [Intel XE#5213]) -> [DMESG-FAIL][193] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) +1 other test dmesg-fail
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157215v1/shard-adlp-4/igt@xe_sriov_scheduling@equal-throughput.html

  
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [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#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6313
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6422
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#6530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6530
  [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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4 -> xe-pw-157215v1

  IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4067-1f25afd37c14352cd24ada205fe16ff022784bd4: 1f25afd37c14352cd24ada205fe16ff022784bd4
  xe-pw-157215v1: 157215v1

== Logs ==

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

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

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

* Re: [PATCH 1/6] drm/vblank: use drm_crtc_vblank_crtc() in workers
  2025-11-07 11:04 ` [PATCH 1/6] drm/vblank: use drm_crtc_vblank_crtc() in workers Jani Nikula
@ 2025-11-10  9:44   ` Thomas Zimmermann
  0 siblings, 0 replies; 20+ messages in thread
From: Thomas Zimmermann @ 2025-11-10  9:44 UTC (permalink / raw)
  To: Jani Nikula, dri-devel; +Cc: intel-gfx, intel-xe, ville.syrjala



Am 07.11.25 um 12:04 schrieb Jani Nikula:
> We have drm_crtc_vblank_crtc() to get the struct drm_vblank_crtc pointer
> for a crtc. Use it instead of poking at dev->vblank[] directly.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>

> ---
>   drivers/gpu/drm/drm_vblank_work.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/drm_vblank_work.c b/drivers/gpu/drm/drm_vblank_work.c
> index e4e1873f0e1e..70f0199251ea 100644
> --- a/drivers/gpu/drm/drm_vblank_work.c
> +++ b/drivers/gpu/drm/drm_vblank_work.c
> @@ -244,7 +244,7 @@ EXPORT_SYMBOL(drm_vblank_work_flush);
>   void drm_vblank_work_flush_all(struct drm_crtc *crtc)
>   {
>   	struct drm_device *dev = crtc->dev;
> -	struct drm_vblank_crtc *vblank = &dev->vblank[drm_crtc_index(crtc)];
> +	struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(crtc);
>   
>   	spin_lock_irq(&dev->event_lock);
>   	wait_event_lock_irq(vblank->work_wait_queue,

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, Werner Knoblich, (HRB 36809, AG Nürnberg)



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

* Re: [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue()
  2025-11-07 11:04 ` [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue() Jani Nikula
@ 2025-11-10  9:57   ` Thomas Zimmermann
  2025-11-10 12:51     ` Jani Nikula
  0 siblings, 1 reply; 20+ messages in thread
From: Thomas Zimmermann @ 2025-11-10  9:57 UTC (permalink / raw)
  To: Jani Nikula, dri-devel; +Cc: intel-gfx, intel-xe, ville.syrjala

Hi

Am 07.11.25 um 12:04 schrieb Jani Nikula:
> We have drm_crtc_vblank_waitqueue() to get the wait_queue_head_t pointer
> for a vblank. Use it instead of poking at dev->vblank[] directly.
>
> Due to the macro maze of wait_event_timeout() that uses the address-of
> operator on the argument, we have to pass it in with the indirection
> operator.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by Thomas Zimmermann <tzimmermann@suse.de>

But... drm_crtc_vblank_waitqueue() is a terrible interface IMHO, as it 
exports internal details of the vblank implementation.

I wonder if the existing users at [1] and [2] couldn't be replaced with 
a common vblank helper.

And there's drm_wait_one_vblank() [3] and the waiting that's being fixed 
here [4]. The latter looks like [3] but with multiple CRTC waiting for 
their next vblank. I'd say this could be a single implementation within 
the vblank code.

[1] 
https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/i915/display/intel_display_rps.c#L73
[2] 
https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/i915/display/intel_vblank.c#L715
[3] 
https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/drm_vblank.c#L1304
[4] 
https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/drm_atomic_helper.c#L1837

Best regards
Thomas

> ---
>   drivers/gpu/drm/drm_atomic_helper.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
> index 5a473a274ff0..e641fcf8c568 100644
> --- a/drivers/gpu/drm/drm_atomic_helper.c
> +++ b/drivers/gpu/drm/drm_atomic_helper.c
> @@ -1831,10 +1831,12 @@ drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
>   	}
>   
>   	for_each_old_crtc_in_state(state, crtc, old_crtc_state, i) {
> +		wait_queue_head_t *queue = drm_crtc_vblank_waitqueue(crtc);
> +
>   		if (!(crtc_mask & drm_crtc_mask(crtc)))
>   			continue;
>   
> -		ret = wait_event_timeout(dev->vblank[i].queue,
> +		ret = wait_event_timeout(*queue,
>   					 state->crtcs[i].last_vblank_count !=
>   						drm_crtc_vblank_count(crtc),
>   					 msecs_to_jiffies(100));

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, Werner Knoblich, (HRB 36809, AG Nürnberg)



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

* Re: [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue()
  2025-11-10  9:57   ` Thomas Zimmermann
@ 2025-11-10 12:51     ` Jani Nikula
  2025-11-10 13:18       ` Thomas Zimmermann
  0 siblings, 1 reply; 20+ messages in thread
From: Jani Nikula @ 2025-11-10 12:51 UTC (permalink / raw)
  To: Thomas Zimmermann, dri-devel; +Cc: intel-gfx, intel-xe, ville.syrjala

On Mon, 10 Nov 2025, Thomas Zimmermann <tzimmermann@suse.de> wrote:
> Hi
>
> Am 07.11.25 um 12:04 schrieb Jani Nikula:
>> We have drm_crtc_vblank_waitqueue() to get the wait_queue_head_t pointer
>> for a vblank. Use it instead of poking at dev->vblank[] directly.
>>
>> Due to the macro maze of wait_event_timeout() that uses the address-of
>> operator on the argument, we have to pass it in with the indirection
>> operator.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> Reviewed-by Thomas Zimmermann <tzimmermann@suse.de>
>
> But... drm_crtc_vblank_waitqueue() is a terrible interface IMHO, as it 
> exports internal details of the vblank implementation.
>
> I wonder if the existing users at [1] and [2] couldn't be replaced with 
> a common vblank helper.
>
> And there's drm_wait_one_vblank() [3] and the waiting that's being fixed 
> here [4]. The latter looks like [3] but with multiple CRTC waiting for 
> their next vblank. I'd say this could be a single implementation within 
> the vblank code.

I don't disagree, but getting that done is a bit more involved than what
I have time for right now. Need to think.

In the mean time, pushed the drm_crtc_vblank_crtc() related patches in
the series, and left the drm_crtc_vblank_waitqueue() ones to simmer.

Thanks for the reviews.

BR,
Jani.


>
> [1] 
> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/i915/display/intel_display_rps.c#L73
> [2] 
> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/i915/display/intel_vblank.c#L715
> [3] 
> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/drm_vblank.c#L1304
> [4] 
> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/drm_atomic_helper.c#L1837
>
> Best regards
> Thomas
>
>> ---
>>   drivers/gpu/drm/drm_atomic_helper.c | 4 +++-
>>   1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
>> index 5a473a274ff0..e641fcf8c568 100644
>> --- a/drivers/gpu/drm/drm_atomic_helper.c
>> +++ b/drivers/gpu/drm/drm_atomic_helper.c
>> @@ -1831,10 +1831,12 @@ drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
>>   	}
>>   
>>   	for_each_old_crtc_in_state(state, crtc, old_crtc_state, i) {
>> +		wait_queue_head_t *queue = drm_crtc_vblank_waitqueue(crtc);
>> +
>>   		if (!(crtc_mask & drm_crtc_mask(crtc)))
>>   			continue;
>>   
>> -		ret = wait_event_timeout(dev->vblank[i].queue,
>> +		ret = wait_event_timeout(*queue,
>>   					 state->crtcs[i].last_vblank_count !=
>>   						drm_crtc_vblank_count(crtc),
>>   					 msecs_to_jiffies(100));

-- 
Jani Nikula, Intel

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

* Re: [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue()
  2025-11-10 12:51     ` Jani Nikula
@ 2025-11-10 13:18       ` Thomas Zimmermann
  2025-11-10 13:42         ` Jani Nikula
  0 siblings, 1 reply; 20+ messages in thread
From: Thomas Zimmermann @ 2025-11-10 13:18 UTC (permalink / raw)
  To: Jani Nikula, dri-devel; +Cc: intel-gfx, intel-xe, ville.syrjala

Hi

Am 10.11.25 um 13:51 schrieb Jani Nikula:
> On Mon, 10 Nov 2025, Thomas Zimmermann <tzimmermann@suse.de> wrote:
>> Hi
>>
>> Am 07.11.25 um 12:04 schrieb Jani Nikula:
>>> We have drm_crtc_vblank_waitqueue() to get the wait_queue_head_t pointer
>>> for a vblank. Use it instead of poking at dev->vblank[] directly.
>>>
>>> Due to the macro maze of wait_event_timeout() that uses the address-of
>>> operator on the argument, we have to pass it in with the indirection
>>> operator.
>>>
>>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> Reviewed-by Thomas Zimmermann <tzimmermann@suse.de>
>>
>> But... drm_crtc_vblank_waitqueue() is a terrible interface IMHO, as it
>> exports internal details of the vblank implementation.
>>
>> I wonder if the existing users at [1] and [2] couldn't be replaced with
>> a common vblank helper.
>>
>> And there's drm_wait_one_vblank() [3] and the waiting that's being fixed
>> here [4]. The latter looks like [3] but with multiple CRTC waiting for
>> their next vblank. I'd say this could be a single implementation within
>> the vblank code.
> I don't disagree, but getting that done is a bit more involved than what
> I have time for right now. Need to think.
>
> In the mean time, pushed the drm_crtc_vblank_crtc() related patches in
> the series, and left the drm_crtc_vblank_waitqueue() ones to simmer.

Please also merge the rest of the series. These patches are an 
improvement to open-coding the access to the fields.

Best regards
Thomas

>
> Thanks for the reviews.
>
> BR,
> Jani.
>
>
>> [1]
>> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/i915/display/intel_display_rps.c#L73
>> [2]
>> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/i915/display/intel_vblank.c#L715
>> [3]
>> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/drm_vblank.c#L1304
>> [4]
>> https://elixir.bootlin.com/linux/v6.18-rc4/source/drivers/gpu/drm/drm_atomic_helper.c#L1837
>>
>> Best regards
>> Thomas
>>
>>> ---
>>>    drivers/gpu/drm/drm_atomic_helper.c | 4 +++-
>>>    1 file changed, 3 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
>>> index 5a473a274ff0..e641fcf8c568 100644
>>> --- a/drivers/gpu/drm/drm_atomic_helper.c
>>> +++ b/drivers/gpu/drm/drm_atomic_helper.c
>>> @@ -1831,10 +1831,12 @@ drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
>>>    	}
>>>    
>>>    	for_each_old_crtc_in_state(state, crtc, old_crtc_state, i) {
>>> +		wait_queue_head_t *queue = drm_crtc_vblank_waitqueue(crtc);
>>> +
>>>    		if (!(crtc_mask & drm_crtc_mask(crtc)))
>>>    			continue;
>>>    
>>> -		ret = wait_event_timeout(dev->vblank[i].queue,
>>> +		ret = wait_event_timeout(*queue,
>>>    					 state->crtcs[i].last_vblank_count !=
>>>    						drm_crtc_vblank_count(crtc),
>>>    					 msecs_to_jiffies(100));

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, Werner Knoblich, (HRB 36809, AG Nürnberg)



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

* Re: [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue()
  2025-11-10 13:18       ` Thomas Zimmermann
@ 2025-11-10 13:42         ` Jani Nikula
  0 siblings, 0 replies; 20+ messages in thread
From: Jani Nikula @ 2025-11-10 13:42 UTC (permalink / raw)
  To: Thomas Zimmermann, dri-devel; +Cc: intel-gfx, intel-xe, ville.syrjala

On Mon, 10 Nov 2025, Thomas Zimmermann <tzimmermann@suse.de> wrote:
> Please also merge the rest of the series. These patches are an 
> improvement to open-coding the access to the fields.

Fair. Thanks, pushed now.

BR,
Jani.


-- 
Jani Nikula, Intel

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

end of thread, other threads:[~2025-11-10 13:42 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-07 11:04 [PATCH 0/6] drm: avoid poking at dev->vblank[] directly Jani Nikula
2025-11-07 11:04 ` [PATCH 1/6] drm/vblank: use drm_crtc_vblank_crtc() in workers Jani Nikula
2025-11-10  9:44   ` Thomas Zimmermann
2025-11-07 11:04 ` [PATCH 2/6] drm/atomic: use drm_crtc_vblank_waitqueue() Jani Nikula
2025-11-10  9:57   ` Thomas Zimmermann
2025-11-10 12:51     ` Jani Nikula
2025-11-10 13:18       ` Thomas Zimmermann
2025-11-10 13:42         ` Jani Nikula
2025-11-07 11:04 ` [PATCH 3/6] drm/msm: " Jani Nikula
2025-11-08 17:00   ` Dmitry Baryshkov
2025-11-07 11:04 ` [PATCH 4/6] drm/tidss: use drm_crtc_vblank_crtc() Jani Nikula
2025-11-08 15:54   ` Jyri Sarha
2025-11-07 11:04 ` [PATCH 5/6] drm/vmwgfx: " Jani Nikula
2025-11-07 16:21   ` Ian Forbes
2025-11-07 11:05 ` [PATCH 6/6] drm/gma500: " Jani Nikula
2025-11-07 13:11   ` Patrik Jakobsson
2025-11-07 11:48 ` ✗ CI.checkpatch: warning for drm: avoid poking at dev->vblank[] directly Patchwork
2025-11-07 11:50 ` ✓ CI.KUnit: success " Patchwork
2025-11-07 12:34 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-09  1:01 ` ✗ 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;
as well as URLs for NNTP newsgroup(s).